From 228a37a2f620730d860bdb441906d944513922e0 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Fri, 12 Jul 2024 14:14:24 +0100 Subject: [PATCH] feat(*): Add tsv parser to enable easily loading pokedex data --- tsv-parser/index.js | 37 + tsv-parser/package-lock.json | 47 + tsv-parser/package.json | 16 + tsv-parser/pokedex.json | 27151 +++++++++++++++++++++++++++++++++ tsv-parser/seed-data.tsv | 1391 ++ 5 files changed, 28642 insertions(+) create mode 100644 tsv-parser/index.js create mode 100644 tsv-parser/package-lock.json create mode 100644 tsv-parser/package.json create mode 100644 tsv-parser/pokedex.json create mode 100644 tsv-parser/seed-data.tsv diff --git a/tsv-parser/index.js b/tsv-parser/index.js new file mode 100644 index 0000000..1aa3b47 --- /dev/null +++ b/tsv-parser/index.js @@ -0,0 +1,37 @@ +const fs = require('fs'); +const csv = require('csv-parser'); + +const inputFilePath = 'seed-data.tsv'; // Replace with the path to your TSV file +const outputFilePath = 'pokedex.json'; + +const results = []; + +fs.createReadStream(inputFilePath) + .pipe(csv({ separator: '\t' })) + .on('data', (data) => { + const entry = { + pokedexNumber: parseInt(data['Dex #']), + boxPlacement: { + box: parseInt(data['Home Box']), + row: parseInt(data['Home Row']), + column: parseInt(data['Home Column']) + }, + pokemon: data['Pokemon'], + form: data['Form'], + canGigantamax: data['Can Gigantamax'].toLowerCase(), + regionToCatchIn: data['Region'], + gamesToCatchIn: data['Catch In These Games'].split(',').map((game) => game.trim()), + regionToEvolveIn: data['Evolve In Region'], + notes: data['Notes to obtain'] + }; + results.push(entry); + }) + .on('end', () => { + fs.writeFile(outputFilePath, JSON.stringify(results, null, 2), (err) => { + if (err) { + console.error('Error writing to JSON file', err); + } else { + console.log('JSON file has been successfully created'); + } + }); + }); diff --git a/tsv-parser/package-lock.json b/tsv-parser/package-lock.json new file mode 100644 index 0000000..c4951e2 --- /dev/null +++ b/tsv-parser/package-lock.json @@ -0,0 +1,47 @@ +{ + "name": "tsv-parser", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tsv-parser", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "csv-parser": "^3.0.0", + "fs": "^0.0.1-security" + } + }, + "node_modules/csv-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/csv-parser/-/csv-parser-3.0.0.tgz", + "integrity": "sha512-s6OYSXAK3IdKqYO33y09jhypG/bSDHPuyCme/IdEHfWpLf/jKcpitVFyOC6UemgGk8v7Q5u2XE0vvwmanxhGlQ==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "csv-parser": "bin/csv-parser" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/fs": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==", + "license": "ISC" + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + } + } +} diff --git a/tsv-parser/package.json b/tsv-parser/package.json new file mode 100644 index 0000000..6fcc47e --- /dev/null +++ b/tsv-parser/package.json @@ -0,0 +1,16 @@ +{ + "name": "tsv-parser", + "version": "1.0.0", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "description": "", + "dependencies": { + "csv-parser": "^3.0.0", + "fs": "^0.0.1-security" + } +} diff --git a/tsv-parser/pokedex.json b/tsv-parser/pokedex.json new file mode 100644 index 0000000..5e22a32 --- /dev/null +++ b/tsv-parser/pokedex.json @@ -0,0 +1,27151 @@ +[ + { + "pokedexNumber": 1, + "boxPlacement": { + "box": 1, + "row": 1, + "column": 1 + }, + "pokemon": "Bulbasaur", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 2, + "boxPlacement": { + "box": 1, + "row": 1, + "column": 2 + }, + "pokemon": "Ivysaur", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 3, + "boxPlacement": { + "box": 1, + "row": 1, + "column": 3 + }, + "pokemon": "Venusaur", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "All pokemon that can gigantamax should be represented by that pokemon." + }, + { + "pokedexNumber": 3, + "boxPlacement": { + "box": 1, + "row": 1, + "column": 4 + }, + "pokemon": "Venusaur", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 4, + "boxPlacement": { + "box": 1, + "row": 1, + "column": 5 + }, + "pokemon": "Charmander", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 5, + "boxPlacement": { + "box": 1, + "row": 1, + "column": 6 + }, + "pokemon": "Charmeleon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 6, + "boxPlacement": { + "box": 1, + "row": 2, + "column": 1 + }, + "pokemon": "Charizard", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 7, + "boxPlacement": { + "box": 1, + "row": 2, + "column": 2 + }, + "pokemon": "Squirtle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 8, + "boxPlacement": { + "box": 1, + "row": 2, + "column": 3 + }, + "pokemon": "Wartortle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 9, + "boxPlacement": { + "box": 1, + "row": 2, + "column": 4 + }, + "pokemon": "Blastoise", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 10, + "boxPlacement": { + "box": 1, + "row": 2, + "column": 5 + }, + "pokemon": "Caterpie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 11, + "boxPlacement": { + "box": 1, + "row": 2, + "column": 6 + }, + "pokemon": "Metapod", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 12, + "boxPlacement": { + "box": 1, + "row": 3, + "column": 1 + }, + "pokemon": "Butterfree", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 12, + "boxPlacement": { + "box": 1, + "row": 3, + "column": 2 + }, + "pokemon": "Butterfree", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 13, + "boxPlacement": { + "box": 1, + "row": 3, + "column": 3 + }, + "pokemon": "Weedle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 14, + "boxPlacement": { + "box": 1, + "row": 3, + "column": 4 + }, + "pokemon": "Kakuna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 15, + "boxPlacement": { + "box": 1, + "row": 3, + "column": 5 + }, + "pokemon": "Beedrill", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 16, + "boxPlacement": { + "box": 1, + "row": 3, + "column": 6 + }, + "pokemon": "Pidgey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 17, + "boxPlacement": { + "box": 1, + "row": 4, + "column": 1 + }, + "pokemon": "Pidgeotto", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 18, + "boxPlacement": { + "box": 1, + "row": 4, + "column": 2 + }, + "pokemon": "Pidgeot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 19, + "boxPlacement": { + "box": 1, + "row": 4, + "column": 3 + }, + "pokemon": "Rattata", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 19, + "boxPlacement": { + "box": 1, + "row": 4, + "column": 4 + }, + "pokemon": "Rattata", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 19, + "boxPlacement": { + "box": 1, + "row": 4, + "column": 5 + }, + "pokemon": "Rattata", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 20, + "boxPlacement": { + "box": 1, + "row": 4, + "column": 6 + }, + "pokemon": "Raticate", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 20, + "boxPlacement": { + "box": 1, + "row": 5, + "column": 1 + }, + "pokemon": "Raticate", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 20, + "boxPlacement": { + "box": 1, + "row": 5, + "column": 2 + }, + "pokemon": "Raticate", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Memorial Hill, Akala Outskirts, Route 10, Tapu Village, Route 14, Route 15, Route 16, Route 17, Mount Lanakila, Poni Plains" + }, + { + "pokedexNumber": 21, + "boxPlacement": { + "box": 1, + "row": 5, + "column": 3 + }, + "pokemon": "Spearow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 22, + "boxPlacement": { + "box": 1, + "row": 5, + "column": 4 + }, + "pokemon": "Fearow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 23, + "boxPlacement": { + "box": 1, + "row": 5, + "column": 5 + }, + "pokemon": "Ekans", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 24, + "boxPlacement": { + "box": 1, + "row": 5, + "column": 6 + }, + "pokemon": "Arbok", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 1, + "column": 1 + }, + "pokemon": "Pikachu", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 1, + "column": 2 + }, + "pokemon": "Pikachu", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 1, + "column": 3 + }, + "pokemon": "Pikachu", + "form": "Original Cap", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 1, + "column": 4 + }, + "pokemon": "Pikachu", + "form": "Hoenn Cap", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 1, + "column": 5 + }, + "pokemon": "Pikachu", + "form": "Sinnoh Cap", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 1, + "column": 6 + }, + "pokemon": "Pikachu", + "form": "Unova Cap", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 2, + "column": 1 + }, + "pokemon": "Pikachu", + "form": "Kalos Cap", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 2, + "column": 2 + }, + "pokemon": "Pikachu", + "form": "Alola Cap", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 2, + "column": 3 + }, + "pokemon": "Pikachu", + "form": "Partner Cap", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Event (pkhex)" + }, + { + "pokedexNumber": 25, + "boxPlacement": { + "box": 2, + "row": 2, + "column": 4 + }, + "pokemon": "Pikachu", + "form": "World Cap", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Event (pkhex)" + }, + { + "pokedexNumber": 26, + "boxPlacement": { + "box": 2, + "row": 2, + "column": 5 + }, + "pokemon": "Raichu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 26, + "boxPlacement": { + "box": 2, + "row": 2, + "column": 6 + }, + "pokemon": "Raichu", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 26, + "boxPlacement": { + "box": 2, + "row": 3, + "column": 1 + }, + "pokemon": "Raichu", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Alola", + "notes": "" + }, + { + "pokedexNumber": 27, + "boxPlacement": { + "box": 2, + "row": 3, + "column": 2 + }, + "pokemon": "Sandshrew", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 27, + "boxPlacement": { + "box": 2, + "row": 3, + "column": 3 + }, + "pokemon": "Sandshrew", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Tapu Village, Route 14, Mount Lanakila Ultra Moon only. Evolves via Ice Stone." + }, + { + "pokedexNumber": 28, + "boxPlacement": { + "box": 2, + "row": 3, + "column": 4 + }, + "pokemon": "Sandslash", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 28, + "boxPlacement": { + "box": 2, + "row": 3, + "column": 5 + }, + "pokemon": "Sandslash", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Sandshrew with an ice stone" + }, + { + "pokedexNumber": 29, + "boxPlacement": { + "box": 2, + "row": 3, + "column": 6 + }, + "pokemon": "Nidoran♀", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 30, + "boxPlacement": { + "box": 2, + "row": 4, + "column": 1 + }, + "pokemon": "Nidorina", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 31, + "boxPlacement": { + "box": 2, + "row": 4, + "column": 2 + }, + "pokemon": "Nidoqueen", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 32, + "boxPlacement": { + "box": 2, + "row": 4, + "column": 3 + }, + "pokemon": "Nidoran♂", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 33, + "boxPlacement": { + "box": 2, + "row": 4, + "column": 4 + }, + "pokemon": "Nidorino", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 34, + "boxPlacement": { + "box": 2, + "row": 4, + "column": 5 + }, + "pokemon": "Nidoking", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 35, + "boxPlacement": { + "box": 2, + "row": 4, + "column": 6 + }, + "pokemon": "Clefairy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 36, + "boxPlacement": { + "box": 2, + "row": 5, + "column": 1 + }, + "pokemon": "Clefable", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 37, + "boxPlacement": { + "box": 2, + "row": 5, + "column": 2 + }, + "pokemon": "Vulpix", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 37, + "boxPlacement": { + "box": 2, + "row": 5, + "column": 3 + }, + "pokemon": "Vulpix", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Tapu Village, Route 14, Mount Lanakila Ultra Sun only. Evolves via Ice Stone." + }, + { + "pokedexNumber": 38, + "boxPlacement": { + "box": 2, + "row": 5, + "column": 4 + }, + "pokemon": "Ninetales", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 38, + "boxPlacement": { + "box": 2, + "row": 5, + "column": 5 + }, + "pokemon": "Ninetales", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Vulpix with an ice stone" + }, + { + "pokedexNumber": 39, + "boxPlacement": { + "box": 2, + "row": 5, + "column": 6 + }, + "pokemon": "Jigglypuff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 40, + "boxPlacement": { + "box": 3, + "row": 1, + "column": 1 + }, + "pokemon": "Wigglytuff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 41, + "boxPlacement": { + "box": 3, + "row": 1, + "column": 2 + }, + "pokemon": "Zubat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 41, + "boxPlacement": { + "box": 3, + "row": 1, + "column": 3 + }, + "pokemon": "Zubat", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 42, + "boxPlacement": { + "box": 3, + "row": 1, + "column": 4 + }, + "pokemon": "Golbat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 42, + "boxPlacement": { + "box": 3, + "row": 1, + "column": 5 + }, + "pokemon": "Golbat", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 43, + "boxPlacement": { + "box": 3, + "row": 1, + "column": 6 + }, + "pokemon": "Oddish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 44, + "boxPlacement": { + "box": 3, + "row": 2, + "column": 1 + }, + "pokemon": "Gloom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 44, + "boxPlacement": { + "box": 3, + "row": 2, + "column": 2 + }, + "pokemon": "Gloom", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 45, + "boxPlacement": { + "box": 3, + "row": 2, + "column": 3 + }, + "pokemon": "Vileplume", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 45, + "boxPlacement": { + "box": 3, + "row": 2, + "column": 4 + }, + "pokemon": "Vileplume", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 46, + "boxPlacement": { + "box": 3, + "row": 2, + "column": 5 + }, + "pokemon": "Paras", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 47, + "boxPlacement": { + "box": 3, + "row": 2, + "column": 6 + }, + "pokemon": "Parasect", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 48, + "boxPlacement": { + "box": 3, + "row": 3, + "column": 1 + }, + "pokemon": "Venonat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 49, + "boxPlacement": { + "box": 3, + "row": 3, + "column": 2 + }, + "pokemon": "Venomoth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 50, + "boxPlacement": { + "box": 3, + "row": 3, + "column": 3 + }, + "pokemon": "Diglett", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 50, + "boxPlacement": { + "box": 3, + "row": 3, + "column": 4 + }, + "pokemon": "Diglett", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 51, + "boxPlacement": { + "box": 3, + "row": 3, + "column": 5 + }, + "pokemon": "Dugtrio", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 51, + "boxPlacement": { + "box": 3, + "row": 3, + "column": 6 + }, + "pokemon": "Dugtrio", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 52, + "boxPlacement": { + "box": 3, + "row": 4, + "column": 1 + }, + "pokemon": "Meowth", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 52, + "boxPlacement": { + "box": 3, + "row": 4, + "column": 2 + }, + "pokemon": "Meowth", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 52, + "boxPlacement": { + "box": 3, + "row": 4, + "column": 3 + }, + "pokemon": "Meowth", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 53, + "boxPlacement": { + "box": 3, + "row": 4, + "column": 4 + }, + "pokemon": "Persian", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 53, + "boxPlacement": { + "box": 3, + "row": 4, + "column": 5 + }, + "pokemon": "Persian", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Malie Garden, or Meowth: Route 2, Hau’oli City (Shopping District), Hau’oli City (Marina), Route 1 (Trainers’ School), Malie Garden Evolves via level-up with high happiness." + }, + { + "pokedexNumber": 54, + "boxPlacement": { + "box": 3, + "row": 4, + "column": 6 + }, + "pokemon": "Psyduck", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 55, + "boxPlacement": { + "box": 3, + "row": 5, + "column": 1 + }, + "pokemon": "Golduck", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 56, + "boxPlacement": { + "box": 3, + "row": 5, + "column": 2 + }, + "pokemon": "Mankey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 57, + "boxPlacement": { + "box": 3, + "row": 5, + "column": 3 + }, + "pokemon": "Primeape", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 58, + "boxPlacement": { + "box": 3, + "row": 5, + "column": 4 + }, + "pokemon": "Growlithe", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 58, + "boxPlacement": { + "box": 3, + "row": 5, + "column": 5 + }, + "pokemon": "Growlithe", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Cobalt Coastlands: Windbreak Stand, Veilstone Cape, massive mass outbreaks (Hisuian Form)" + }, + { + "pokedexNumber": 59, + "boxPlacement": { + "box": 3, + "row": 5, + "column": 6 + }, + "pokemon": "Arcanine", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 59, + "boxPlacement": { + "box": 4, + "row": 1, + "column": 1 + }, + "pokemon": "Arcanine", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Growlithe with a fire stone" + }, + { + "pokedexNumber": 60, + "boxPlacement": { + "box": 4, + "row": 1, + "column": 2 + }, + "pokemon": "Poliwag", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 61, + "boxPlacement": { + "box": 4, + "row": 1, + "column": 3 + }, + "pokemon": "Poliwhirl", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 62, + "boxPlacement": { + "box": 4, + "row": 1, + "column": 4 + }, + "pokemon": "Poliwrath", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 63, + "boxPlacement": { + "box": 4, + "row": 1, + "column": 5 + }, + "pokemon": "Abra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 64, + "boxPlacement": { + "box": 4, + "row": 1, + "column": 6 + }, + "pokemon": "Kadabra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 64, + "boxPlacement": { + "box": 4, + "row": 2, + "column": 1 + }, + "pokemon": "Kadabra", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 65, + "boxPlacement": { + "box": 4, + "row": 2, + "column": 2 + }, + "pokemon": "Alakazam", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 65, + "boxPlacement": { + "box": 4, + "row": 2, + "column": 3 + }, + "pokemon": "Alakazam", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 66, + "boxPlacement": { + "box": 4, + "row": 2, + "column": 4 + }, + "pokemon": "Machop", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 67, + "boxPlacement": { + "box": 4, + "row": 2, + "column": 5 + }, + "pokemon": "Machoke", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 68, + "boxPlacement": { + "box": 4, + "row": 2, + "column": 6 + }, + "pokemon": "Machamp", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 69, + "boxPlacement": { + "box": 4, + "row": 3, + "column": 1 + }, + "pokemon": "Bellsprout", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 70, + "boxPlacement": { + "box": 4, + "row": 3, + "column": 2 + }, + "pokemon": "Weepinbell", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 71, + "boxPlacement": { + "box": 4, + "row": 3, + "column": 3 + }, + "pokemon": "Victreebel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 72, + "boxPlacement": { + "box": 4, + "row": 3, + "column": 4 + }, + "pokemon": "Tentacool", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 73, + "boxPlacement": { + "box": 4, + "row": 3, + "column": 5 + }, + "pokemon": "Tentacruel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 74, + "boxPlacement": { + "box": 4, + "row": 3, + "column": 6 + }, + "pokemon": "Geodude", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 74, + "boxPlacement": { + "box": 4, + "row": 4, + "column": 1 + }, + "pokemon": "Geodude", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 12 and Blush Mountain, evolves at level 25" + }, + { + "pokedexNumber": 75, + "boxPlacement": { + "box": 4, + "row": 4, + "column": 2 + }, + "pokemon": "Graveler", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 75, + "boxPlacement": { + "box": 4, + "row": 4, + "column": 3 + }, + "pokemon": "Graveler", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Geodude at level 25" + }, + { + "pokedexNumber": 76, + "boxPlacement": { + "box": 4, + "row": 4, + "column": 4 + }, + "pokemon": "Golem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 76, + "boxPlacement": { + "box": 4, + "row": 4, + "column": 5 + }, + "pokemon": "Golem", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Graveler by trading" + }, + { + "pokedexNumber": 77, + "boxPlacement": { + "box": 4, + "row": 4, + "column": 6 + }, + "pokemon": "Ponyta", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 77, + "boxPlacement": { + "box": 4, + "row": 5, + "column": 1 + }, + "pokemon": "Ponyta", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 78, + "boxPlacement": { + "box": 4, + "row": 5, + "column": 2 + }, + "pokemon": "Rapidash", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 78, + "boxPlacement": { + "box": 4, + "row": 5, + "column": 3 + }, + "pokemon": "Rapidash", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 79, + "boxPlacement": { + "box": 4, + "row": 5, + "column": 4 + }, + "pokemon": "Slowpoke", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 79, + "boxPlacement": { + "box": 4, + "row": 5, + "column": 5 + }, + "pokemon": "Slowpoke", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 80, + "boxPlacement": { + "box": 4, + "row": 5, + "column": 6 + }, + "pokemon": "Slowbro", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 80, + "boxPlacement": { + "box": 5, + "row": 1, + "column": 1 + }, + "pokemon": "Slowbro", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 81, + "boxPlacement": { + "box": 5, + "row": 1, + "column": 2 + }, + "pokemon": "Magnemite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 82, + "boxPlacement": { + "box": 5, + "row": 1, + "column": 3 + }, + "pokemon": "Magneton", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 83, + "boxPlacement": { + "box": 5, + "row": 1, + "column": 4 + }, + "pokemon": "Farfetch’d", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 83, + "boxPlacement": { + "box": 5, + "row": 1, + "column": 5 + }, + "pokemon": "Farfetch’d", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Route 5, Giant's Mirror (Galarian Form) Dusty Bowl, North Lake Miloch, Stony Wilderness (Max Raid Battle) (Galarian Form)" + }, + { + "pokedexNumber": 84, + "boxPlacement": { + "box": 5, + "row": 1, + "column": 6 + }, + "pokemon": "Doduo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 84, + "boxPlacement": { + "box": 5, + "row": 2, + "column": 1 + }, + "pokemon": "Doduo", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 85, + "boxPlacement": { + "box": 5, + "row": 2, + "column": 2 + }, + "pokemon": "Dodrio", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 85, + "boxPlacement": { + "box": 5, + "row": 2, + "column": 3 + }, + "pokemon": "Dodrio", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 86, + "boxPlacement": { + "box": 5, + "row": 2, + "column": 4 + }, + "pokemon": "Seel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 87, + "boxPlacement": { + "box": 5, + "row": 2, + "column": 5 + }, + "pokemon": "Dewgong", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 88, + "boxPlacement": { + "box": 5, + "row": 2, + "column": 6 + }, + "pokemon": "Grimer", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 88, + "boxPlacement": { + "box": 5, + "row": 3, + "column": 1 + }, + "pokemon": "Grimer", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "US" + ], + "regionToEvolveIn": "", + "notes": "Hau’oli City (Shopping District), Hau’oli City (Marina), Route 1 (Trainers’ School), Malie City, Malie City (Outer Cape) Evolves at level 38." + }, + { + "pokedexNumber": 89, + "boxPlacement": { + "box": 5, + "row": 3, + "column": 2 + }, + "pokemon": "Muk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 89, + "boxPlacement": { + "box": 5, + "row": 3, + "column": 3 + }, + "pokemon": "Muk", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "US" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Grimer at level 38" + }, + { + "pokedexNumber": 90, + "boxPlacement": { + "box": 5, + "row": 3, + "column": 4 + }, + "pokemon": "Shellder", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 91, + "boxPlacement": { + "box": 5, + "row": 3, + "column": 5 + }, + "pokemon": "Cloyster", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 92, + "boxPlacement": { + "box": 5, + "row": 3, + "column": 6 + }, + "pokemon": "Gastly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 93, + "boxPlacement": { + "box": 5, + "row": 4, + "column": 1 + }, + "pokemon": "Haunter", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 94, + "boxPlacement": { + "box": 5, + "row": 4, + "column": 2 + }, + "pokemon": "Gengar", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 95, + "boxPlacement": { + "box": 5, + "row": 4, + "column": 3 + }, + "pokemon": "Onix", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 96, + "boxPlacement": { + "box": 5, + "row": 4, + "column": 4 + }, + "pokemon": "Drowzee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 97, + "boxPlacement": { + "box": 5, + "row": 4, + "column": 5 + }, + "pokemon": "Hypno", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 97, + "boxPlacement": { + "box": 5, + "row": 4, + "column": 6 + }, + "pokemon": "Hypno", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 98, + "boxPlacement": { + "box": 5, + "row": 5, + "column": 1 + }, + "pokemon": "Krabby", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 99, + "boxPlacement": { + "box": 5, + "row": 5, + "column": 2 + }, + "pokemon": "Kingler", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 100, + "boxPlacement": { + "box": 5, + "row": 5, + "column": 3 + }, + "pokemon": "Voltorb", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 100, + "boxPlacement": { + "box": 5, + "row": 5, + "column": 4 + }, + "pokemon": "Voltorb", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Coronet Highlands: Celestica Ruins (in boxes), Sacred Plaza (also in boxes), massive mass outbreaks (Hisuian Form)" + }, + { + "pokedexNumber": 101, + "boxPlacement": { + "box": 5, + "row": 5, + "column": 5 + }, + "pokemon": "Electrode", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 101, + "boxPlacement": { + "box": 5, + "row": 5, + "column": 6 + }, + "pokemon": "Electrode", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Voltorb with a leaf stone" + }, + { + "pokedexNumber": 102, + "boxPlacement": { + "box": 6, + "row": 1, + "column": 1 + }, + "pokemon": "Exeggcute", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 103, + "boxPlacement": { + "box": 6, + "row": 1, + "column": 2 + }, + "pokemon": "Exeggutor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 103, + "boxPlacement": { + "box": 6, + "row": 1, + "column": 3 + }, + "pokemon": "Exeggutor", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Alola", + "notes": "" + }, + { + "pokedexNumber": 104, + "boxPlacement": { + "box": 6, + "row": 1, + "column": 4 + }, + "pokemon": "Cubone", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 105, + "boxPlacement": { + "box": 6, + "row": 1, + "column": 5 + }, + "pokemon": "Marowak", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 105, + "boxPlacement": { + "box": 6, + "row": 1, + "column": 6 + }, + "pokemon": "Marowak", + "form": "Alolan", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Alola", + "notes": "" + }, + { + "pokedexNumber": 106, + "boxPlacement": { + "box": 6, + "row": 2, + "column": 1 + }, + "pokemon": "Hitmonlee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 107, + "boxPlacement": { + "box": 6, + "row": 2, + "column": 2 + }, + "pokemon": "Hitmonchan", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 108, + "boxPlacement": { + "box": 6, + "row": 2, + "column": 3 + }, + "pokemon": "Lickitung", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 109, + "boxPlacement": { + "box": 6, + "row": 2, + "column": 4 + }, + "pokemon": "Koffing", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 110, + "boxPlacement": { + "box": 6, + "row": 2, + "column": 5 + }, + "pokemon": "Weezing", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 110, + "boxPlacement": { + "box": 6, + "row": 2, + "column": 6 + }, + "pokemon": "Weezing", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Eevee" + ], + "regionToEvolveIn": "Galar", + "notes": "" + }, + { + "pokedexNumber": 111, + "boxPlacement": { + "box": 6, + "row": 3, + "column": 1 + }, + "pokemon": "Rhyhorn", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 111, + "boxPlacement": { + "box": 6, + "row": 3, + "column": 2 + }, + "pokemon": "Rhyhorn", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 112, + "boxPlacement": { + "box": 6, + "row": 3, + "column": 3 + }, + "pokemon": "Rhydon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 112, + "boxPlacement": { + "box": 6, + "row": 3, + "column": 4 + }, + "pokemon": "Rhydon", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 113, + "boxPlacement": { + "box": 6, + "row": 3, + "column": 5 + }, + "pokemon": "Chansey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 114, + "boxPlacement": { + "box": 6, + "row": 3, + "column": 6 + }, + "pokemon": "Tangela", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 115, + "boxPlacement": { + "box": 6, + "row": 4, + "column": 1 + }, + "pokemon": "Kangaskhan", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 116, + "boxPlacement": { + "box": 6, + "row": 4, + "column": 2 + }, + "pokemon": "Horsea", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 117, + "boxPlacement": { + "box": 6, + "row": 4, + "column": 3 + }, + "pokemon": "Seadra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 118, + "boxPlacement": { + "box": 6, + "row": 4, + "column": 4 + }, + "pokemon": "Goldeen", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 118, + "boxPlacement": { + "box": 6, + "row": 4, + "column": 5 + }, + "pokemon": "Goldeen", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 119, + "boxPlacement": { + "box": 6, + "row": 4, + "column": 6 + }, + "pokemon": "Seaking", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 119, + "boxPlacement": { + "box": 6, + "row": 5, + "column": 1 + }, + "pokemon": "Seaking", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 120, + "boxPlacement": { + "box": 6, + "row": 5, + "column": 2 + }, + "pokemon": "Staryu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 121, + "boxPlacement": { + "box": 6, + "row": 5, + "column": 3 + }, + "pokemon": "Starmie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 122, + "boxPlacement": { + "box": 6, + "row": 5, + "column": 4 + }, + "pokemon": "Mr. Mime", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 122, + "boxPlacement": { + "box": 6, + "row": 5, + "column": 5 + }, + "pokemon": "Mr. Mime", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 123, + "boxPlacement": { + "box": 6, + "row": 5, + "column": 6 + }, + "pokemon": "Scyther", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 123, + "boxPlacement": { + "box": 7, + "row": 1, + "column": 1 + }, + "pokemon": "Scyther", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 124, + "boxPlacement": { + "box": 7, + "row": 1, + "column": 2 + }, + "pokemon": "Jynx", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 125, + "boxPlacement": { + "box": 7, + "row": 1, + "column": 3 + }, + "pokemon": "Electabuzz", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 126, + "boxPlacement": { + "box": 7, + "row": 1, + "column": 4 + }, + "pokemon": "Magmar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 127, + "boxPlacement": { + "box": 7, + "row": 1, + "column": 5 + }, + "pokemon": "Pinsir", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "Yellow", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 128, + "boxPlacement": { + "box": 7, + "row": 1, + "column": 6 + }, + "pokemon": "Tauros", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 128, + "boxPlacement": { + "box": 7, + "row": 2, + "column": 1 + }, + "pokemon": "Tauros", + "form": "Paldean", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 128, + "boxPlacement": { + "box": 7, + "row": 2, + "column": 2 + }, + "pokemon": "Tauros", + "form": "Paldean-Fire", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 128, + "boxPlacement": { + "box": 7, + "row": 2, + "column": 3 + }, + "pokemon": "Tauros", + "form": "Paldean-Water", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 129, + "boxPlacement": { + "box": 7, + "row": 2, + "column": 4 + }, + "pokemon": "Magikarp", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 129, + "boxPlacement": { + "box": 7, + "row": 2, + "column": 5 + }, + "pokemon": "Magikarp", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 130, + "boxPlacement": { + "box": 7, + "row": 2, + "column": 6 + }, + "pokemon": "Gyarados", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 130, + "boxPlacement": { + "box": 7, + "row": 3, + "column": 1 + }, + "pokemon": "Gyarados", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 131, + "boxPlacement": { + "box": 7, + "row": 3, + "column": 2 + }, + "pokemon": "Lapras", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 132, + "boxPlacement": { + "box": 7, + "row": 3, + "column": 3 + }, + "pokemon": "Ditto", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 133, + "boxPlacement": { + "box": 7, + "row": 3, + "column": 4 + }, + "pokemon": "Eevee", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 133, + "boxPlacement": { + "box": 7, + "row": 3, + "column": 5 + }, + "pokemon": "Eevee", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 134, + "boxPlacement": { + "box": 7, + "row": 3, + "column": 6 + }, + "pokemon": "Vaporeon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Kanto", + "notes": "evolves from Eevee when exposed to a Water Stone." + }, + { + "pokedexNumber": 135, + "boxPlacement": { + "box": 7, + "row": 4, + "column": 1 + }, + "pokemon": "Jolteon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Kanto", + "notes": "evolves from Eevee when exposed to a Thunder Stone." + }, + { + "pokedexNumber": 136, + "boxPlacement": { + "box": 7, + "row": 4, + "column": 2 + }, + "pokemon": "Flareon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Kanto", + "notes": "evolves from Eevee when exposed to a Fire Stone." + }, + { + "pokedexNumber": 137, + "boxPlacement": { + "box": 7, + "row": 4, + "column": 3 + }, + "pokemon": "Porygon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 138, + "boxPlacement": { + "box": 7, + "row": 4, + "column": 4 + }, + "pokemon": "Omanyte", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 139, + "boxPlacement": { + "box": 7, + "row": 4, + "column": 5 + }, + "pokemon": "Omastar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 140, + "boxPlacement": { + "box": 7, + "row": 4, + "column": 6 + }, + "pokemon": "Kabuto", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 141, + "boxPlacement": { + "box": 7, + "row": 5, + "column": 1 + }, + "pokemon": "Kabutops", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 142, + "boxPlacement": { + "box": 7, + "row": 5, + "column": 2 + }, + "pokemon": "Aerodactyl", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 143, + "boxPlacement": { + "box": 7, + "row": 5, + "column": 3 + }, + "pokemon": "Snorlax", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 144, + "boxPlacement": { + "box": 7, + "row": 5, + "column": 4 + }, + "pokemon": "Articuno", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 144, + "boxPlacement": { + "box": 7, + "row": 5, + "column": 5 + }, + "pokemon": "Articuno", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 145, + "boxPlacement": { + "box": 7, + "row": 5, + "column": 6 + }, + "pokemon": "Zapdos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 145, + "boxPlacement": { + "box": 8, + "row": 1, + "column": 1 + }, + "pokemon": "Zapdos", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 146, + "boxPlacement": { + "box": 8, + "row": 1, + "column": 2 + }, + "pokemon": "Moltres", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 146, + "boxPlacement": { + "box": 8, + "row": 1, + "column": 3 + }, + "pokemon": "Moltres", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 147, + "boxPlacement": { + "box": 8, + "row": 1, + "column": 4 + }, + "pokemon": "Dratini", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 148, + "boxPlacement": { + "box": 8, + "row": 1, + "column": 5 + }, + "pokemon": "Dragonair", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 149, + "boxPlacement": { + "box": 8, + "row": 1, + "column": 6 + }, + "pokemon": "Dragonite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 150, + "boxPlacement": { + "box": 8, + "row": 2, + "column": 1 + }, + "pokemon": "Mewtwo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 151, + "boxPlacement": { + "box": 8, + "row": 2, + "column": 2 + }, + "pokemon": "Mew", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "R/B: https://www.youtube.com/watch?v=rvhuJsS4EhE&t=473s Yellow: https://www.reddit.com/r/pokemon/comments/7c5fpc" + }, + { + "pokedexNumber": 152, + "boxPlacement": { + "box": 9, + "row": 1, + "column": 1 + }, + "pokemon": "Chikorita", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 153, + "boxPlacement": { + "box": 9, + "row": 1, + "column": 2 + }, + "pokemon": "Bayleef", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 154, + "boxPlacement": { + "box": 9, + "row": 1, + "column": 3 + }, + "pokemon": "Meganium", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 154, + "boxPlacement": { + "box": 9, + "row": 1, + "column": 4 + }, + "pokemon": "Meganium", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 155, + "boxPlacement": { + "box": 9, + "row": 1, + "column": 5 + }, + "pokemon": "Cyndaquil", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 156, + "boxPlacement": { + "box": 9, + "row": 1, + "column": 6 + }, + "pokemon": "Quilava", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 157, + "boxPlacement": { + "box": 9, + "row": 2, + "column": 1 + }, + "pokemon": "Typhlosion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 157, + "boxPlacement": { + "box": 9, + "row": 2, + "column": 2 + }, + "pokemon": "Typhlosion", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Quilava at level 36" + }, + { + "pokedexNumber": 158, + "boxPlacement": { + "box": 9, + "row": 2, + "column": 3 + }, + "pokemon": "Totodile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 159, + "boxPlacement": { + "box": 9, + "row": 2, + "column": 4 + }, + "pokemon": "Croconaw", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 160, + "boxPlacement": { + "box": 9, + "row": 2, + "column": 5 + }, + "pokemon": "Feraligatr", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 161, + "boxPlacement": { + "box": 9, + "row": 2, + "column": 6 + }, + "pokemon": "Sentret", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 29, 4am-6pm" + }, + { + "pokedexNumber": 162, + "boxPlacement": { + "box": 9, + "row": 3, + "column": 1 + }, + "pokemon": "Furret", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 163, + "boxPlacement": { + "box": 9, + "row": 3, + "column": 2 + }, + "pokemon": "Hoothoot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 164, + "boxPlacement": { + "box": 9, + "row": 3, + "column": 3 + }, + "pokemon": "Noctowl", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 165, + "boxPlacement": { + "box": 9, + "row": 3, + "column": 4 + }, + "pokemon": "Ledyba", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 30, 4am-10am" + }, + { + "pokedexNumber": 165, + "boxPlacement": { + "box": 9, + "row": 3, + "column": 5 + }, + "pokemon": "Ledyba", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 166, + "boxPlacement": { + "box": 9, + "row": 3, + "column": 6 + }, + "pokemon": "Ledian", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 166, + "boxPlacement": { + "box": 9, + "row": 4, + "column": 1 + }, + "pokemon": "Ledian", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 167, + "boxPlacement": { + "box": 9, + "row": 4, + "column": 2 + }, + "pokemon": "Spinarak", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 168, + "boxPlacement": { + "box": 9, + "row": 4, + "column": 3 + }, + "pokemon": "Ariados", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "Route 37, 6pm-4am" + }, + { + "pokedexNumber": 169, + "boxPlacement": { + "box": 9, + "row": 4, + "column": 4 + }, + "pokemon": "Crobat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "" + }, + { + "pokedexNumber": 170, + "boxPlacement": { + "box": 9, + "row": 4, + "column": 5 + }, + "pokemon": "Chinchou", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 171, + "boxPlacement": { + "box": 9, + "row": 4, + "column": 6 + }, + "pokemon": "Lanturn", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 172, + "boxPlacement": { + "box": 9, + "row": 5, + "column": 1 + }, + "pokemon": "Pichu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Gift egg (two pikachu in daycare)" + }, + { + "pokedexNumber": 173, + "boxPlacement": { + "box": 9, + "row": 5, + "column": 2 + }, + "pokemon": "Cleffa", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Gift egg" + }, + { + "pokedexNumber": 174, + "boxPlacement": { + "box": 9, + "row": 5, + "column": 3 + }, + "pokemon": "Igglybuff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Gift egg" + }, + { + "pokedexNumber": 175, + "boxPlacement": { + "box": 9, + "row": 5, + "column": 4 + }, + "pokemon": "Togepi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 176, + "boxPlacement": { + "box": 9, + "row": 5, + "column": 5 + }, + "pokemon": "Togetic", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 177, + "boxPlacement": { + "box": 9, + "row": 5, + "column": 6 + }, + "pokemon": "Natu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 178, + "boxPlacement": { + "box": 10, + "row": 1, + "column": 1 + }, + "pokemon": "Xatu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 178, + "boxPlacement": { + "box": 10, + "row": 1, + "column": 2 + }, + "pokemon": "Xatu", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 179, + "boxPlacement": { + "box": 10, + "row": 1, + "column": 3 + }, + "pokemon": "Mareep", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 32, Route 42, Route 43" + }, + { + "pokedexNumber": 180, + "boxPlacement": { + "box": 10, + "row": 1, + "column": 4 + }, + "pokemon": "Flaaffy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Mareep" + }, + { + "pokedexNumber": 181, + "boxPlacement": { + "box": 10, + "row": 1, + "column": 5 + }, + "pokemon": "Ampharos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Flaaffy" + }, + { + "pokedexNumber": 182, + "boxPlacement": { + "box": 10, + "row": 1, + "column": 6 + }, + "pokemon": "Bellossom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "Johto", + "notes": "" + }, + { + "pokedexNumber": 183, + "boxPlacement": { + "box": 10, + "row": 2, + "column": 1 + }, + "pokemon": "Marill", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 184, + "boxPlacement": { + "box": 10, + "row": 2, + "column": 2 + }, + "pokemon": "Azumarill", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 185, + "boxPlacement": { + "box": 10, + "row": 2, + "column": 3 + }, + "pokemon": "Sudowoodo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 185, + "boxPlacement": { + "box": 10, + "row": 2, + "column": 4 + }, + "pokemon": "Sudowoodo", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 186, + "boxPlacement": { + "box": 10, + "row": 2, + "column": 5 + }, + "pokemon": "Politoed", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Poliwhirl when traded while holding a King's Rock" + }, + { + "pokedexNumber": 186, + "boxPlacement": { + "box": 10, + "row": 2, + "column": 6 + }, + "pokemon": "Politoed", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Poliwhirl when traded while holding a King's Rock" + }, + { + "pokedexNumber": 187, + "boxPlacement": { + "box": 10, + "row": 3, + "column": 1 + }, + "pokemon": "Hoppip", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 29 4am-6pm" + }, + { + "pokedexNumber": 188, + "boxPlacement": { + "box": 10, + "row": 3, + "column": 2 + }, + "pokemon": "Skiploom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 189, + "boxPlacement": { + "box": 10, + "row": 3, + "column": 3 + }, + "pokemon": "Jumpluff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 190, + "boxPlacement": { + "box": 10, + "row": 3, + "column": 4 + }, + "pokemon": "Aipom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 190, + "boxPlacement": { + "box": 10, + "row": 3, + "column": 5 + }, + "pokemon": "Aipom", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 191, + "boxPlacement": { + "box": 10, + "row": 3, + "column": 6 + }, + "pokemon": "Sunkern", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 192, + "boxPlacement": { + "box": 10, + "row": 4, + "column": 1 + }, + "pokemon": "Sunflora", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 193, + "boxPlacement": { + "box": 10, + "row": 4, + "column": 2 + }, + "pokemon": "Yanma", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 35 (4am-10am?)" + }, + { + "pokedexNumber": 194, + "boxPlacement": { + "box": 10, + "row": 4, + "column": 3 + }, + "pokemon": "Wooper", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 194, + "boxPlacement": { + "box": 10, + "row": 4, + "column": 4 + }, + "pokemon": "Wooper", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 194, + "boxPlacement": { + "box": 10, + "row": 4, + "column": 5 + }, + "pokemon": "Wooper", + "form": "Paldean", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 195, + "boxPlacement": { + "box": 10, + "row": 4, + "column": 6 + }, + "pokemon": "Quagsire", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 195, + "boxPlacement": { + "box": 10, + "row": 5, + "column": 1 + }, + "pokemon": "Quagsire", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 196, + "boxPlacement": { + "box": 10, + "row": 5, + "column": 2 + }, + "pokemon": "Espeon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "evolves from Eevee when leveled up with high friendship (220 before Generation VIII or 160 since) during the day, except in areas with a Moss Rock or Ice Rock, or if the evolutionary conditions for it to evolve into Sylveon have also been met." + }, + { + "pokedexNumber": 197, + "boxPlacement": { + "box": 10, + "row": 5, + "column": 3 + }, + "pokemon": "Umbreon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "evolves from Eevee when leveled up with high friendship (220 before Generation VIII or 160 since) during the night, except in areas with a Moss Rock or Ice Rock, or if the evolutionary conditions for it to evolve into Sylveon have also been met." + }, + { + "pokedexNumber": 198, + "boxPlacement": { + "box": 10, + "row": 5, + "column": 4 + }, + "pokemon": "Murkrow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 7, 6pm-4am" + }, + { + "pokedexNumber": 198, + "boxPlacement": { + "box": 10, + "row": 5, + "column": 5 + }, + "pokemon": "Murkrow", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 7, 6pm-4am" + }, + { + "pokedexNumber": 199, + "boxPlacement": { + "box": 10, + "row": 5, + "column": 6 + }, + "pokemon": "Slowking", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Slowpoke when traded while holding a King's Rock" + }, + { + "pokedexNumber": 199, + "boxPlacement": { + "box": 11, + "row": 1, + "column": 1 + }, + "pokemon": "Slowking", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 200, + "boxPlacement": { + "box": 11, + "row": 1, + "column": 2 + }, + "pokemon": "Misdreavus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Mt. Silver, 2f, 6pm-4am" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 1, + "column": 3 + }, + "pokemon": "Unown", + "form": "A", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 1, + "column": 4 + }, + "pokemon": "Unown", + "form": "B", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 1, + "column": 5 + }, + "pokemon": "Unown", + "form": "C", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 1, + "column": 6 + }, + "pokemon": "Unown", + "form": "D", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 2, + "column": 1 + }, + "pokemon": "Unown", + "form": "E", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 2, + "column": 2 + }, + "pokemon": "Unown", + "form": "F", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 2, + "column": 3 + }, + "pokemon": "Unown", + "form": "G", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 2, + "column": 4 + }, + "pokemon": "Unown", + "form": "H", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 2, + "column": 5 + }, + "pokemon": "Unown", + "form": "I", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 2, + "column": 6 + }, + "pokemon": "Unown", + "form": "J", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 3, + "column": 1 + }, + "pokemon": "Unown", + "form": "K", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 3, + "column": 2 + }, + "pokemon": "Unown", + "form": "L", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 3, + "column": 3 + }, + "pokemon": "Unown", + "form": "M", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 3, + "column": 4 + }, + "pokemon": "Unown", + "form": "N", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 3, + "column": 5 + }, + "pokemon": "Unown", + "form": "O", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 3, + "column": 6 + }, + "pokemon": "Unown", + "form": "P", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 4, + "column": 1 + }, + "pokemon": "Unown", + "form": "Q", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 4, + "column": 2 + }, + "pokemon": "Unown", + "form": "R", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 4, + "column": 3 + }, + "pokemon": "Unown", + "form": "S", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 4, + "column": 4 + }, + "pokemon": "Unown", + "form": "T", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 4, + "column": 5 + }, + "pokemon": "Unown", + "form": "U", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 4, + "column": 6 + }, + "pokemon": "Unown", + "form": "V", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 5, + "column": 1 + }, + "pokemon": "Unown", + "form": "W", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 5, + "column": 2 + }, + "pokemon": "Unown", + "form": "X", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 5, + "column": 3 + }, + "pokemon": "Unown", + "form": "Y", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 5, + "column": 4 + }, + "pokemon": "Unown", + "form": "Z", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 5, + "column": 5 + }, + "pokemon": "Unown", + "form": "!", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 201, + "boxPlacement": { + "box": 11, + "row": 5, + "column": 6 + }, + "pokemon": "Unown", + "form": "?", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 202, + "boxPlacement": { + "box": 12, + "row": 1, + "column": 1 + }, + "pokemon": "Wobbuffet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Dark Cave, Blackthorn City Entrance, 6pm-4am" + }, + { + "pokedexNumber": 202, + "boxPlacement": { + "box": 12, + "row": 1, + "column": 2 + }, + "pokemon": "Wobbuffet", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Dark Cave, Blackthorn City Entrance, 6pm-4am" + }, + { + "pokedexNumber": 203, + "boxPlacement": { + "box": 12, + "row": 1, + "column": 3 + }, + "pokemon": "Girafarig", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 43" + }, + { + "pokedexNumber": 203, + "boxPlacement": { + "box": 12, + "row": 1, + "column": 4 + }, + "pokemon": "Girafarig", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 43" + }, + { + "pokedexNumber": 204, + "boxPlacement": { + "box": 12, + "row": 1, + "column": 5 + }, + "pokemon": "Pineco", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 205, + "boxPlacement": { + "box": 12, + "row": 1, + "column": 6 + }, + "pokemon": "Forretress", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 206, + "boxPlacement": { + "box": 12, + "row": 2, + "column": 1 + }, + "pokemon": "Dunsparce", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Dark Cave, Violet City Entrance - catch as many as you can for Dudunsparce 2 and 3 segment" + }, + { + "pokedexNumber": 207, + "boxPlacement": { + "box": 12, + "row": 2, + "column": 2 + }, + "pokemon": "Gligar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "Route 45" + }, + { + "pokedexNumber": 207, + "boxPlacement": { + "box": 12, + "row": 2, + "column": 3 + }, + "pokemon": "Gligar", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "Route 45" + }, + { + "pokedexNumber": 208, + "boxPlacement": { + "box": 12, + "row": 2, + "column": 4 + }, + "pokemon": "Steelix", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Onix when traded while holding a Metal Coat." + }, + { + "pokedexNumber": 208, + "boxPlacement": { + "box": 12, + "row": 2, + "column": 5 + }, + "pokemon": "Steelix", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Onix when traded while holding a Metal Coat." + }, + { + "pokedexNumber": 209, + "boxPlacement": { + "box": 12, + "row": 2, + "column": 6 + }, + "pokemon": "Snubbull", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 210, + "boxPlacement": { + "box": 12, + "row": 3, + "column": 1 + }, + "pokemon": "Granbull", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 211, + "boxPlacement": { + "box": 12, + "row": 3, + "column": 2 + }, + "pokemon": "Qwilfish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 32, Super Rod" + }, + { + "pokedexNumber": 211, + "boxPlacement": { + "box": 12, + "row": 3, + "column": 3 + }, + "pokemon": "Qwilfish", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Obsidian Fieldlands: near Ramanas Island (Hisuian Form)\r Cobalt Coastlands: near Bathers' Lagoon, near Hideaway Bay, near Tombolo Walk, near Sand's Reach, Tranquility Cove, Islespy Shore and nearby (additional Alpha icon.png), Lunker's Lair, near Seagrass Haven, near Firespit Island, massive mass outbreaks (Hisuian Form)" + }, + { + "pokedexNumber": 212, + "boxPlacement": { + "box": 12, + "row": 3, + "column": 4 + }, + "pokemon": "Scizor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Scyther when traded while holding a Metal Coat." + }, + { + "pokedexNumber": 212, + "boxPlacement": { + "box": 12, + "row": 3, + "column": 5 + }, + "pokemon": "Scizor", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Scyther when traded while holding a Metal Coat." + }, + { + "pokedexNumber": 213, + "boxPlacement": { + "box": 12, + "row": 3, + "column": 6 + }, + "pokemon": "Shuckle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 214, + "boxPlacement": { + "box": 12, + "row": 4, + "column": 1 + }, + "pokemon": "Heracross", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 214, + "boxPlacement": { + "box": 12, + "row": 4, + "column": 2 + }, + "pokemon": "Heracross", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 215, + "boxPlacement": { + "box": 12, + "row": 4, + "column": 3 + }, + "pokemon": "Sneasel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Ice Path, b3f, 6pm-4am" + }, + { + "pokedexNumber": 215, + "boxPlacement": { + "box": 12, + "row": 4, + "column": 4 + }, + "pokemon": "Sneasel", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Ice Path, b3f, 6pm-4am" + }, + { + "pokedexNumber": 215, + "boxPlacement": { + "box": 12, + "row": 4, + "column": 5 + }, + "pokemon": "Sneasel", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Coronet Highlands: near Celestica Trail, near Primeval Grotto, massive mass outbreaks (Hisuian Form)\r Alabaster Icelands: near Avalugg's Legacy (additional Alpha icon.png), Glacier Terrace, near Pearl Settlement (Hisuian Form)" + }, + { + "pokedexNumber": 215, + "boxPlacement": { + "box": 12, + "row": 4, + "column": 6 + }, + "pokemon": "Sneasel", + "form": "Female-Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Coronet Highlands: near Celestica Trail, near Primeval Grotto, massive mass outbreaks (Hisuian Form)\r Alabaster Icelands: near Avalugg's Legacy (additional Alpha icon.png), Glacier Terrace, near Pearl Settlement (Hisuian Form)" + }, + { + "pokedexNumber": 216, + "boxPlacement": { + "box": 12, + "row": 5, + "column": 1 + }, + "pokemon": "Teddiursa", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Dark Cave, Blackthorn City Entrance, 4am-10am" + }, + { + "pokedexNumber": 217, + "boxPlacement": { + "box": 12, + "row": 5, + "column": 2 + }, + "pokemon": "Ursaring", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 217, + "boxPlacement": { + "box": 12, + "row": 5, + "column": 3 + }, + "pokemon": "Ursaring", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 218, + "boxPlacement": { + "box": 12, + "row": 5, + "column": 4 + }, + "pokemon": "Slugma", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 17, 10am-6pm" + }, + { + "pokedexNumber": 219, + "boxPlacement": { + "box": 12, + "row": 5, + "column": 5 + }, + "pokemon": "Magcargo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 220, + "boxPlacement": { + "box": 12, + "row": 5, + "column": 6 + }, + "pokemon": "Swinub", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 221, + "boxPlacement": { + "box": 13, + "row": 1, + "column": 1 + }, + "pokemon": "Piloswine", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 221, + "boxPlacement": { + "box": 13, + "row": 1, + "column": 2 + }, + "pokemon": "Piloswine", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 222, + "boxPlacement": { + "box": 13, + "row": 1, + "column": 3 + }, + "pokemon": "Corsola", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 34, Super Rod, 4am-6pm" + }, + { + "pokedexNumber": 222, + "boxPlacement": { + "box": 13, + "row": 1, + "column": 4 + }, + "pokemon": "Corsola", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 223, + "boxPlacement": { + "box": 13, + "row": 1, + "column": 5 + }, + "pokemon": "Remoraid", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 44" + }, + { + "pokedexNumber": 224, + "boxPlacement": { + "box": 13, + "row": 1, + "column": 6 + }, + "pokemon": "Octillery", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from remoraid" + }, + { + "pokedexNumber": 224, + "boxPlacement": { + "box": 13, + "row": 2, + "column": 1 + }, + "pokemon": "Octillery", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from remoraid" + }, + { + "pokedexNumber": 225, + "boxPlacement": { + "box": 13, + "row": 2, + "column": 2 + }, + "pokemon": "Delibird", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Ice Path, 6pm-4am" + }, + { + "pokedexNumber": 226, + "boxPlacement": { + "box": 13, + "row": 2, + "column": 3 + }, + "pokemon": "Mantine", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 227, + "boxPlacement": { + "box": 13, + "row": 2, + "column": 4 + }, + "pokemon": "Skarmory", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 45, 4am-6pm" + }, + { + "pokedexNumber": 228, + "boxPlacement": { + "box": 13, + "row": 2, + "column": 5 + }, + "pokemon": "Houndour", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 7, 6pm-4am" + }, + { + "pokedexNumber": 229, + "boxPlacement": { + "box": 13, + "row": 2, + "column": 6 + }, + "pokemon": "Houndoom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 229, + "boxPlacement": { + "box": 13, + "row": 3, + "column": 1 + }, + "pokemon": "Houndoom", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 230, + "boxPlacement": { + "box": 13, + "row": 3, + "column": 2 + }, + "pokemon": "Kingdra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Seadra when traded while holding a Dragon Scale. " + }, + { + "pokedexNumber": 231, + "boxPlacement": { + "box": 13, + "row": 3, + "column": 3 + }, + "pokemon": "Phanpy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "Route 45, 4am-10am" + }, + { + "pokedexNumber": 232, + "boxPlacement": { + "box": 13, + "row": 3, + "column": 4 + }, + "pokemon": "Donphan", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 232, + "boxPlacement": { + "box": 13, + "row": 3, + "column": 5 + }, + "pokemon": "Donphan", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Silver", + "Crystal", + "HG" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 233, + "boxPlacement": { + "box": 13, + "row": 3, + "column": 6 + }, + "pokemon": "Porygon2", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 234, + "boxPlacement": { + "box": 13, + "row": 4, + "column": 1 + }, + "pokemon": "Stantler", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 37, 6pm-4am" + }, + { + "pokedexNumber": 235, + "boxPlacement": { + "box": 13, + "row": 4, + "column": 2 + }, + "pokemon": "Smeargle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Ruins Of Alph, Outside, 10am-6pm" + }, + { + "pokedexNumber": 236, + "boxPlacement": { + "box": 13, + "row": 4, + "column": 3 + }, + "pokemon": "Tyrogue", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Breed with Ditto" + }, + { + "pokedexNumber": 237, + "boxPlacement": { + "box": 13, + "row": 4, + "column": 4 + }, + "pokemon": "Hitmontop", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolve tyrogue at level 20 with equal attack and defence (box 2)" + }, + { + "pokedexNumber": 238, + "boxPlacement": { + "box": 13, + "row": 4, + "column": 5 + }, + "pokemon": "Smoochum", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Have to remove 'dizzy punch' move as transfer wrongly thinks it's an illegal move" + }, + { + "pokedexNumber": 239, + "boxPlacement": { + "box": 13, + "row": 4, + "column": 6 + }, + "pokemon": "Elekid", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Gift egg" + }, + { + "pokedexNumber": 240, + "boxPlacement": { + "box": 13, + "row": 5, + "column": 1 + }, + "pokemon": "Magby", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Gift egg" + }, + { + "pokedexNumber": 241, + "boxPlacement": { + "box": 13, + "row": 5, + "column": 2 + }, + "pokemon": "Miltank", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Route 38, 4am-6pm" + }, + { + "pokedexNumber": 242, + "boxPlacement": { + "box": 13, + "row": 5, + "column": 3 + }, + "pokemon": "Blissey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Johto", + "notes": "It evolves from Chansey when leveled up with high friendship." + }, + { + "pokedexNumber": 243, + "boxPlacement": { + "box": 13, + "row": 5, + "column": 4 + }, + "pokemon": "Raikou", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 244, + "boxPlacement": { + "box": 13, + "row": 5, + "column": 5 + }, + "pokemon": "Entei", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 245, + "boxPlacement": { + "box": 13, + "row": 5, + "column": 6 + }, + "pokemon": "Suicune", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 246, + "boxPlacement": { + "box": 14, + "row": 1, + "column": 1 + }, + "pokemon": "Larvitar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Mt Silver, Top, 4am-6pm" + }, + { + "pokedexNumber": 247, + "boxPlacement": { + "box": 14, + "row": 1, + "column": 2 + }, + "pokemon": "Pupitar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from larvitar" + }, + { + "pokedexNumber": 248, + "boxPlacement": { + "box": 14, + "row": 1, + "column": 3 + }, + "pokemon": "Tyranitar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from pupitar" + }, + { + "pokedexNumber": 249, + "boxPlacement": { + "box": 14, + "row": 1, + "column": 4 + }, + "pokemon": "Lugia", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "https://strategywiki.org/wiki/Pok%C3%A9mon_Gold_and_Silver/Whirl_Islands" + }, + { + "pokedexNumber": 250, + "boxPlacement": { + "box": 14, + "row": 1, + "column": 5 + }, + "pokemon": "Ho-Oh", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "", + "notes": "https://strategywiki.org/wiki/Pok%C3%A9mon_Gold_and_Silver/Tin_Tower" + }, + { + "pokedexNumber": 251, + "boxPlacement": { + "box": 14, + "row": 1, + "column": 6 + }, + "pokemon": "Celebi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Crystal" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 252, + "boxPlacement": { + "box": 15, + "row": 1, + "column": 1 + }, + "pokemon": "Treecko", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 253, + "boxPlacement": { + "box": 15, + "row": 1, + "column": 2 + }, + "pokemon": "Grovyle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 254, + "boxPlacement": { + "box": 15, + "row": 1, + "column": 3 + }, + "pokemon": "Sceptile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 255, + "boxPlacement": { + "box": 15, + "row": 1, + "column": 4 + }, + "pokemon": "Torchic", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 255, + "boxPlacement": { + "box": 15, + "row": 1, + "column": 5 + }, + "pokemon": "Torchic", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 256, + "boxPlacement": { + "box": 15, + "row": 1, + "column": 6 + }, + "pokemon": "Combusken", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 256, + "boxPlacement": { + "box": 15, + "row": 2, + "column": 1 + }, + "pokemon": "Combusken", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 257, + "boxPlacement": { + "box": 15, + "row": 2, + "column": 2 + }, + "pokemon": "Blaziken", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 257, + "boxPlacement": { + "box": 15, + "row": 2, + "column": 3 + }, + "pokemon": "Blaziken", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 258, + "boxPlacement": { + "box": 15, + "row": 2, + "column": 4 + }, + "pokemon": "Mudkip", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 259, + "boxPlacement": { + "box": 15, + "row": 2, + "column": 5 + }, + "pokemon": "Marshtomp", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 260, + "boxPlacement": { + "box": 15, + "row": 2, + "column": 6 + }, + "pokemon": "Swampert", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 261, + "boxPlacement": { + "box": 15, + "row": 3, + "column": 1 + }, + "pokemon": "Poochyena", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 262, + "boxPlacement": { + "box": 15, + "row": 3, + "column": 2 + }, + "pokemon": "Mightyena", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 263, + "boxPlacement": { + "box": 15, + "row": 3, + "column": 3 + }, + "pokemon": "Zigzagoon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "X/ R2" + }, + { + "pokedexNumber": 263, + "boxPlacement": { + "box": 15, + "row": 3, + "column": 4 + }, + "pokemon": "Zigzagoon", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 264, + "boxPlacement": { + "box": 15, + "row": 3, + "column": 5 + }, + "pokemon": "Linoone", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 264, + "boxPlacement": { + "box": 15, + "row": 3, + "column": 6 + }, + "pokemon": "Linoone", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves at level 20" + }, + { + "pokedexNumber": 265, + "boxPlacement": { + "box": 15, + "row": 4, + "column": 1 + }, + "pokemon": "Wurmple", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 266, + "boxPlacement": { + "box": 15, + "row": 4, + "column": 2 + }, + "pokemon": "Silcoon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 267, + "boxPlacement": { + "box": 15, + "row": 4, + "column": 3 + }, + "pokemon": "Beautifly", + "form": "male", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 267, + "boxPlacement": { + "box": 15, + "row": 4, + "column": 4 + }, + "pokemon": "Beautifly", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 268, + "boxPlacement": { + "box": 15, + "row": 4, + "column": 5 + }, + "pokemon": "Cascoon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 269, + "boxPlacement": { + "box": 15, + "row": 4, + "column": 6 + }, + "pokemon": "Dustox", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 269, + "boxPlacement": { + "box": 15, + "row": 5, + "column": 1 + }, + "pokemon": "Dustox", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 270, + "boxPlacement": { + "box": 15, + "row": 5, + "column": 2 + }, + "pokemon": "Lotad", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 271, + "boxPlacement": { + "box": 15, + "row": 5, + "column": 3 + }, + "pokemon": "Lombre", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 272, + "boxPlacement": { + "box": 15, + "row": 5, + "column": 4 + }, + "pokemon": "Ludicolo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 272, + "boxPlacement": { + "box": 15, + "row": 5, + "column": 5 + }, + "pokemon": "Ludicolo", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 273, + "boxPlacement": { + "box": 15, + "row": 5, + "column": 6 + }, + "pokemon": "Seedot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 274, + "boxPlacement": { + "box": 16, + "row": 1, + "column": 1 + }, + "pokemon": "Nuzleaf", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 274, + "boxPlacement": { + "box": 16, + "row": 1, + "column": 2 + }, + "pokemon": "Nuzleaf", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 275, + "boxPlacement": { + "box": 16, + "row": 1, + "column": 3 + }, + "pokemon": "Shiftry", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 275, + "boxPlacement": { + "box": 16, + "row": 1, + "column": 4 + }, + "pokemon": "Shiftry", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 276, + "boxPlacement": { + "box": 16, + "row": 1, + "column": 5 + }, + "pokemon": "Taillow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 277, + "boxPlacement": { + "box": 16, + "row": 1, + "column": 6 + }, + "pokemon": "Swellow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 278, + "boxPlacement": { + "box": 16, + "row": 2, + "column": 1 + }, + "pokemon": "Wingull", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 279, + "boxPlacement": { + "box": 16, + "row": 2, + "column": 2 + }, + "pokemon": "Pelipper", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 280, + "boxPlacement": { + "box": 16, + "row": 2, + "column": 3 + }, + "pokemon": "Ralts", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 281, + "boxPlacement": { + "box": 16, + "row": 2, + "column": 4 + }, + "pokemon": "Kirlia", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 282, + "boxPlacement": { + "box": 16, + "row": 2, + "column": 5 + }, + "pokemon": "Gardevoir", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 283, + "boxPlacement": { + "box": 16, + "row": 2, + "column": 6 + }, + "pokemon": "Surskit", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 284, + "boxPlacement": { + "box": 16, + "row": 3, + "column": 1 + }, + "pokemon": "Masquerain", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 285, + "boxPlacement": { + "box": 16, + "row": 3, + "column": 2 + }, + "pokemon": "Shroomish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 286, + "boxPlacement": { + "box": 16, + "row": 3, + "column": 3 + }, + "pokemon": "Breloom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 287, + "boxPlacement": { + "box": 16, + "row": 3, + "column": 4 + }, + "pokemon": "Slakoth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 288, + "boxPlacement": { + "box": 16, + "row": 3, + "column": 5 + }, + "pokemon": "Vigoroth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 289, + "boxPlacement": { + "box": 16, + "row": 3, + "column": 6 + }, + "pokemon": "Slaking", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 290, + "boxPlacement": { + "box": 16, + "row": 4, + "column": 1 + }, + "pokemon": "Nincada", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 291, + "boxPlacement": { + "box": 16, + "row": 4, + "column": 2 + }, + "pokemon": "Ninjask", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 292, + "boxPlacement": { + "box": 16, + "row": 4, + "column": 3 + }, + "pokemon": "Shedinja", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 293, + "boxPlacement": { + "box": 16, + "row": 4, + "column": 4 + }, + "pokemon": "Whismur", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 294, + "boxPlacement": { + "box": 16, + "row": 4, + "column": 5 + }, + "pokemon": "Loudred", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 295, + "boxPlacement": { + "box": 16, + "row": 4, + "column": 6 + }, + "pokemon": "Exploud", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 296, + "boxPlacement": { + "box": 16, + "row": 5, + "column": 1 + }, + "pokemon": "Makuhita", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 297, + "boxPlacement": { + "box": 16, + "row": 5, + "column": 2 + }, + "pokemon": "Hariyama", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 298, + "boxPlacement": { + "box": 16, + "row": 5, + "column": 3 + }, + "pokemon": "Azurill", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 299, + "boxPlacement": { + "box": 16, + "row": 5, + "column": 4 + }, + "pokemon": "Nosepass", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Granite cave, rocks, rock smash (mach bike)" + }, + { + "pokedexNumber": 300, + "boxPlacement": { + "box": 16, + "row": 5, + "column": 5 + }, + "pokemon": "Skitty", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 301, + "boxPlacement": { + "box": 16, + "row": 5, + "column": 6 + }, + "pokemon": "Delcatty", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 302, + "boxPlacement": { + "box": 17, + "row": 1, + "column": 1 + }, + "pokemon": "Sableye", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 303, + "boxPlacement": { + "box": 17, + "row": 1, + "column": 2 + }, + "pokemon": "Mawile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 304, + "boxPlacement": { + "box": 17, + "row": 1, + "column": 3 + }, + "pokemon": "Aron", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Granite cave or victory road" + }, + { + "pokedexNumber": 305, + "boxPlacement": { + "box": 17, + "row": 1, + "column": 4 + }, + "pokemon": "Lairon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 306, + "boxPlacement": { + "box": 17, + "row": 1, + "column": 5 + }, + "pokemon": "Aggron", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 307, + "boxPlacement": { + "box": 17, + "row": 1, + "column": 6 + }, + "pokemon": "Meditite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 307, + "boxPlacement": { + "box": 17, + "row": 2, + "column": 1 + }, + "pokemon": "Meditite", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 308, + "boxPlacement": { + "box": 17, + "row": 2, + "column": 2 + }, + "pokemon": "Medicham", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 308, + "boxPlacement": { + "box": 17, + "row": 2, + "column": 3 + }, + "pokemon": "Medicham", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 309, + "boxPlacement": { + "box": 17, + "row": 2, + "column": 4 + }, + "pokemon": "Electrike", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 310, + "boxPlacement": { + "box": 17, + "row": 2, + "column": 5 + }, + "pokemon": "Manectric", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 311, + "boxPlacement": { + "box": 17, + "row": 2, + "column": 6 + }, + "pokemon": "Plusle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 312, + "boxPlacement": { + "box": 17, + "row": 3, + "column": 1 + }, + "pokemon": "Minun", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 313, + "boxPlacement": { + "box": 17, + "row": 3, + "column": 2 + }, + "pokemon": "Volbeat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 314, + "boxPlacement": { + "box": 17, + "row": 3, + "column": 3 + }, + "pokemon": "Illumise", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 315, + "boxPlacement": { + "box": 17, + "row": 3, + "column": 4 + }, + "pokemon": "Roselia", + "form": " ", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 315, + "boxPlacement": { + "box": 17, + "row": 3, + "column": 5 + }, + "pokemon": "Roselia", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 316, + "boxPlacement": { + "box": 17, + "row": 3, + "column": 6 + }, + "pokemon": "Gulpin", + "form": "male", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 316, + "boxPlacement": { + "box": 17, + "row": 4, + "column": 1 + }, + "pokemon": "Gulpin", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 317, + "boxPlacement": { + "box": 17, + "row": 4, + "column": 2 + }, + "pokemon": "Swalot", + "form": "male", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 317, + "boxPlacement": { + "box": 17, + "row": 4, + "column": 3 + }, + "pokemon": "Swalot", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 318, + "boxPlacement": { + "box": 17, + "row": 4, + "column": 4 + }, + "pokemon": "Carvanha", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 319, + "boxPlacement": { + "box": 17, + "row": 4, + "column": 5 + }, + "pokemon": "Sharpedo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 320, + "boxPlacement": { + "box": 17, + "row": 4, + "column": 6 + }, + "pokemon": "Wailmer", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Good rod or super rod in most water" + }, + { + "pokedexNumber": 321, + "boxPlacement": { + "box": 17, + "row": 5, + "column": 1 + }, + "pokemon": "Wailord", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "level 40" + }, + { + "pokedexNumber": 322, + "boxPlacement": { + "box": 17, + "row": 5, + "column": 2 + }, + "pokemon": "Numel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 322, + "boxPlacement": { + "box": 17, + "row": 5, + "column": 3 + }, + "pokemon": "Numel", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 323, + "boxPlacement": { + "box": 17, + "row": 5, + "column": 4 + }, + "pokemon": "Camerupt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 323, + "boxPlacement": { + "box": 17, + "row": 5, + "column": 5 + }, + "pokemon": "Camerupt", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 324, + "boxPlacement": { + "box": 17, + "row": 5, + "column": 6 + }, + "pokemon": "Torkoal", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 325, + "boxPlacement": { + "box": 18, + "row": 1, + "column": 1 + }, + "pokemon": "Spoink", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 326, + "boxPlacement": { + "box": 18, + "row": 1, + "column": 2 + }, + "pokemon": "Grumpig", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 327, + "boxPlacement": { + "box": 18, + "row": 1, + "column": 3 + }, + "pokemon": "Spinda", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 328, + "boxPlacement": { + "box": 18, + "row": 1, + "column": 4 + }, + "pokemon": "Trapinch", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 329, + "boxPlacement": { + "box": 18, + "row": 1, + "column": 5 + }, + "pokemon": "Vibrava", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from trapinch" + }, + { + "pokedexNumber": 330, + "boxPlacement": { + "box": 18, + "row": 1, + "column": 6 + }, + "pokemon": "Flygon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from vibrava" + }, + { + "pokedexNumber": 331, + "boxPlacement": { + "box": 18, + "row": 2, + "column": 1 + }, + "pokemon": "Cacnea", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 332, + "boxPlacement": { + "box": 18, + "row": 2, + "column": 2 + }, + "pokemon": "Cacturne", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 332, + "boxPlacement": { + "box": 18, + "row": 2, + "column": 3 + }, + "pokemon": "Cacturne", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 333, + "boxPlacement": { + "box": 18, + "row": 2, + "column": 4 + }, + "pokemon": "Swablu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 334, + "boxPlacement": { + "box": 18, + "row": 2, + "column": 5 + }, + "pokemon": "Altaria", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 335, + "boxPlacement": { + "box": 18, + "row": 2, + "column": 6 + }, + "pokemon": "Zangoose", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 336, + "boxPlacement": { + "box": 18, + "row": 3, + "column": 1 + }, + "pokemon": "Seviper", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 337, + "boxPlacement": { + "box": 18, + "row": 3, + "column": 2 + }, + "pokemon": "Lunatone", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 338, + "boxPlacement": { + "box": 18, + "row": 3, + "column": 3 + }, + "pokemon": "Solrock", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 339, + "boxPlacement": { + "box": 18, + "row": 3, + "column": 4 + }, + "pokemon": "Barboach", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 111, Route 114, Route 120, Meteor Falls, Scorched Slab and Victory Road by either fishing with the Good Rod or Super Rod." + }, + { + "pokedexNumber": 340, + "boxPlacement": { + "box": 18, + "row": 3, + "column": 5 + }, + "pokemon": "Whiscash", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 341, + "boxPlacement": { + "box": 18, + "row": 3, + "column": 6 + }, + "pokemon": "Corphish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 102, Route 117, Route 123, and Petalburg City with good rod" + }, + { + "pokedexNumber": 342, + "boxPlacement": { + "box": 18, + "row": 4, + "column": 1 + }, + "pokemon": "Crawdaunt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 343, + "boxPlacement": { + "box": 18, + "row": 4, + "column": 2 + }, + "pokemon": "Baltoy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 344, + "boxPlacement": { + "box": 18, + "row": 4, + "column": 3 + }, + "pokemon": "Claydol", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 345, + "boxPlacement": { + "box": 18, + "row": 4, + "column": 4 + }, + "pokemon": "Lileep", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 346, + "boxPlacement": { + "box": 18, + "row": 4, + "column": 5 + }, + "pokemon": "Cradily", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 347, + "boxPlacement": { + "box": 18, + "row": 4, + "column": 6 + }, + "pokemon": "Anorith", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 348, + "boxPlacement": { + "box": 18, + "row": 5, + "column": 1 + }, + "pokemon": "Armaldo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 349, + "boxPlacement": { + "box": 18, + "row": 5, + "column": 2 + }, + "pokemon": "Feebas", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 350, + "boxPlacement": { + "box": 18, + "row": 5, + "column": 3 + }, + "pokemon": "Milotic", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 350, + "boxPlacement": { + "box": 18, + "row": 5, + "column": 4 + }, + "pokemon": "Milotic", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Need to catch a female Feebas for this one attach a Prism Scale, which in Generation VI is only available in X & Y, to Feebas and trade it, it will evolve into Milotic." + }, + { + "pokedexNumber": 351, + "boxPlacement": { + "box": 18, + "row": 5, + "column": 5 + }, + "pokemon": "Castform", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 352, + "boxPlacement": { + "box": 18, + "row": 5, + "column": 6 + }, + "pokemon": "Kecleon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 353, + "boxPlacement": { + "box": 19, + "row": 1, + "column": 1 + }, + "pokemon": "Shuppet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 354, + "boxPlacement": { + "box": 19, + "row": 1, + "column": 2 + }, + "pokemon": "Banette", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 355, + "boxPlacement": { + "box": 19, + "row": 1, + "column": 3 + }, + "pokemon": "Duskull", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 356, + "boxPlacement": { + "box": 19, + "row": 1, + "column": 4 + }, + "pokemon": "Dusclops", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Evolves from duskull" + }, + { + "pokedexNumber": 357, + "boxPlacement": { + "box": 19, + "row": 1, + "column": 5 + }, + "pokemon": "Tropius", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 358, + "boxPlacement": { + "box": 19, + "row": 1, + "column": 6 + }, + "pokemon": "Chimecho", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 359, + "boxPlacement": { + "box": 19, + "row": 2, + "column": 1 + }, + "pokemon": "Absol", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 120, Tall Grass" + }, + { + "pokedexNumber": 360, + "boxPlacement": { + "box": 19, + "row": 2, + "column": 2 + }, + "pokemon": "Wynaut", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 361, + "boxPlacement": { + "box": 19, + "row": 2, + "column": 3 + }, + "pokemon": "Snorunt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Shoal Cave, Cave - Low Tide (3am-9am, 3pm-9pm)" + }, + { + "pokedexNumber": 362, + "boxPlacement": { + "box": 19, + "row": 2, + "column": 4 + }, + "pokemon": "Glalie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from snorunt" + }, + { + "pokedexNumber": 363, + "boxPlacement": { + "box": 19, + "row": 2, + "column": 5 + }, + "pokemon": "Spheal", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Shoal Cave Cave" + }, + { + "pokedexNumber": 364, + "boxPlacement": { + "box": 19, + "row": 2, + "column": 6 + }, + "pokemon": "Sealeo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from spheal" + }, + { + "pokedexNumber": 365, + "boxPlacement": { + "box": 19, + "row": 3, + "column": 1 + }, + "pokemon": "Walrein", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from sealeo" + }, + { + "pokedexNumber": 366, + "boxPlacement": { + "box": 19, + "row": 3, + "column": 2 + }, + "pokemon": "Clamperl", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 107 Seaweed Diving Route 124 Seaweed Diving Route 126 Seaweed Diving Route 128 Seaweed Diving Route 129 Seaweed Diving Route 130 Seaweed Diving " + }, + { + "pokedexNumber": 367, + "boxPlacement": { + "box": 19, + "row": 3, + "column": 3 + }, + "pokemon": "Huntail", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Trade clamperl w/ Deep Sea Tooth" + }, + { + "pokedexNumber": 368, + "boxPlacement": { + "box": 19, + "row": 3, + "column": 4 + }, + "pokemon": "Gorebyss", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Trade clamperl w/ Deep Sea Scale" + }, + { + "pokedexNumber": 369, + "boxPlacement": { + "box": 19, + "row": 3, + "column": 5 + }, + "pokemon": "Relicanth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 107 Seaweed Diving Route 124 Seaweed Diving Route 126 Seaweed Diving Route 128 Seaweed Diving Route 129 Seaweed Diving Route 130 Seaweed Diving" + }, + { + "pokedexNumber": 369, + "boxPlacement": { + "box": 19, + "row": 3, + "column": 6 + }, + "pokemon": "Relicanth", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 107 Seaweed Diving Route 124 Seaweed Diving Route 126 Seaweed Diving Route 128 Seaweed Diving Route 129 Seaweed Diving Route 130 Seaweed Diving" + }, + { + "pokedexNumber": 370, + "boxPlacement": { + "box": 19, + "row": 4, + "column": 1 + }, + "pokemon": "Luvdisc", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Route 128, Ever Grande City, Victory Road (Good Rod or Super Rod)" + }, + { + "pokedexNumber": 371, + "boxPlacement": { + "box": 19, + "row": 4, + "column": 2 + }, + "pokemon": "Bagon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Meteor Falls, Basement - Small Room" + }, + { + "pokedexNumber": 372, + "boxPlacement": { + "box": 19, + "row": 4, + "column": 3 + }, + "pokemon": "Shelgon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from bagon" + }, + { + "pokedexNumber": 373, + "boxPlacement": { + "box": 19, + "row": 4, + "column": 4 + }, + "pokemon": "Salamence", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from shelgon" + }, + { + "pokedexNumber": 374, + "boxPlacement": { + "box": 19, + "row": 4, + "column": 5 + }, + "pokemon": "Beldum", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Receive as a gift from Steven's house in Mossdeep City after becoming the Pokemon League Champion." + }, + { + "pokedexNumber": 375, + "boxPlacement": { + "box": 19, + "row": 4, + "column": 6 + }, + "pokemon": "Metang", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from beldum" + }, + { + "pokedexNumber": 376, + "boxPlacement": { + "box": 19, + "row": 5, + "column": 1 + }, + "pokemon": "Metagross", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "evolves from metang" + }, + { + "pokedexNumber": 377, + "boxPlacement": { + "box": 19, + "row": 5, + "column": 2 + }, + "pokemon": "Regirock", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 378, + "boxPlacement": { + "box": 19, + "row": 5, + "column": 3 + }, + "pokemon": "Regice", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 379, + "boxPlacement": { + "box": 19, + "row": 5, + "column": 4 + }, + "pokemon": "Registeel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 380, + "boxPlacement": { + "box": 19, + "row": 5, + "column": 5 + }, + "pokemon": "Latias", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 381, + "boxPlacement": { + "box": 19, + "row": 5, + "column": 6 + }, + "pokemon": "Latios", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 382, + "boxPlacement": { + "box": 20, + "row": 1, + "column": 1 + }, + "pokemon": "Kyogre", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Sapphire", + "Emerald", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 383, + "boxPlacement": { + "box": 20, + "row": 1, + "column": 2 + }, + "pokemon": "Groudon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Emerald", + "OR" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 384, + "boxPlacement": { + "box": 20, + "row": 1, + "column": 3 + }, + "pokemon": "Rayquaza", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 385, + "boxPlacement": { + "box": 20, + "row": 1, + "column": 4 + }, + "pokemon": "Jirachi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "Gen the event via Powersaves, alt BDSP w/ SwSh Save Data" + }, + { + "pokedexNumber": 386, + "boxPlacement": { + "box": 20, + "row": 1, + "column": 5 + }, + "pokemon": "Deoxys", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 386, + "boxPlacement": { + "box": 20, + "row": 1, + "column": 6 + }, + "pokemon": "Deoxys", + "form": "Attack Form", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 386, + "boxPlacement": { + "box": 20, + "row": 2, + "column": 1 + }, + "pokemon": "Deoxys", + "form": "Defense Form", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 386, + "boxPlacement": { + "box": 20, + "row": 2, + "column": 2 + }, + "pokemon": "Deoxys", + "form": "Speed Form", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 387, + "boxPlacement": { + "box": 21, + "row": 1, + "column": 1 + }, + "pokemon": "Turtwig", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 388, + "boxPlacement": { + "box": 21, + "row": 1, + "column": 2 + }, + "pokemon": "Grotle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 389, + "boxPlacement": { + "box": 21, + "row": 1, + "column": 3 + }, + "pokemon": "Torterra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 390, + "boxPlacement": { + "box": 21, + "row": 1, + "column": 4 + }, + "pokemon": "Chimchar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 391, + "boxPlacement": { + "box": 21, + "row": 1, + "column": 5 + }, + "pokemon": "Monferno", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 392, + "boxPlacement": { + "box": 21, + "row": 1, + "column": 6 + }, + "pokemon": "Infernape", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 393, + "boxPlacement": { + "box": 21, + "row": 2, + "column": 1 + }, + "pokemon": "Piplup", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 394, + "boxPlacement": { + "box": 21, + "row": 2, + "column": 2 + }, + "pokemon": "Prinplup", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 395, + "boxPlacement": { + "box": 21, + "row": 2, + "column": 3 + }, + "pokemon": "Empoleon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 396, + "boxPlacement": { + "box": 21, + "row": 2, + "column": 4 + }, + "pokemon": "Starly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 396, + "boxPlacement": { + "box": 21, + "row": 2, + "column": 5 + }, + "pokemon": "Starly", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 397, + "boxPlacement": { + "box": 21, + "row": 2, + "column": 6 + }, + "pokemon": "Staravia", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 397, + "boxPlacement": { + "box": 21, + "row": 3, + "column": 1 + }, + "pokemon": "Staravia", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 398, + "boxPlacement": { + "box": 21, + "row": 3, + "column": 2 + }, + "pokemon": "Staraptor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 398, + "boxPlacement": { + "box": 21, + "row": 3, + "column": 3 + }, + "pokemon": "Staraptor", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 399, + "boxPlacement": { + "box": 21, + "row": 3, + "column": 4 + }, + "pokemon": "Bidoof", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 399, + "boxPlacement": { + "box": 21, + "row": 3, + "column": 5 + }, + "pokemon": "Bidoof", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 400, + "boxPlacement": { + "box": 21, + "row": 3, + "column": 6 + }, + "pokemon": "Bibarel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 400, + "boxPlacement": { + "box": 21, + "row": 4, + "column": 1 + }, + "pokemon": "Bibarel", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 401, + "boxPlacement": { + "box": 21, + "row": 4, + "column": 2 + }, + "pokemon": "Kricketot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 401, + "boxPlacement": { + "box": 21, + "row": 4, + "column": 3 + }, + "pokemon": "Kricketot", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 402, + "boxPlacement": { + "box": 21, + "row": 4, + "column": 4 + }, + "pokemon": "Kricketune", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 402, + "boxPlacement": { + "box": 21, + "row": 4, + "column": 5 + }, + "pokemon": "Kricketune", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 403, + "boxPlacement": { + "box": 21, + "row": 4, + "column": 6 + }, + "pokemon": "Shinx", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 403, + "boxPlacement": { + "box": 21, + "row": 5, + "column": 1 + }, + "pokemon": "Shinx", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 404, + "boxPlacement": { + "box": 21, + "row": 5, + "column": 2 + }, + "pokemon": "Luxio", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 404, + "boxPlacement": { + "box": 21, + "row": 5, + "column": 3 + }, + "pokemon": "Luxio", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 405, + "boxPlacement": { + "box": 21, + "row": 5, + "column": 4 + }, + "pokemon": "Luxray", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 405, + "boxPlacement": { + "box": 21, + "row": 5, + "column": 5 + }, + "pokemon": "Luxray", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 406, + "boxPlacement": { + "box": 21, + "row": 5, + "column": 6 + }, + "pokemon": "Budew", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 407, + "boxPlacement": { + "box": 22, + "row": 1, + "column": 1 + }, + "pokemon": "Roserade", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Roselia when exposed to a Shiny Stone." + }, + { + "pokedexNumber": 407, + "boxPlacement": { + "box": 22, + "row": 1, + "column": 2 + }, + "pokemon": "Roserade", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "OR", + "AS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Roselia when exposed to a Shiny Stone." + }, + { + "pokedexNumber": 408, + "boxPlacement": { + "box": 22, + "row": 1, + "column": 3 + }, + "pokemon": "Cranidos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Platinum", + "BD" + ], + "regionToEvolveIn": "", + "notes": "It is resurrected from a Skull Fossil " + }, + { + "pokedexNumber": 409, + "boxPlacement": { + "box": 22, + "row": 1, + "column": 4 + }, + "pokemon": "Rampardos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Platinum", + "BD" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Cranidos starting at level 30." + }, + { + "pokedexNumber": 410, + "boxPlacement": { + "box": 22, + "row": 1, + "column": 5 + }, + "pokemon": "Shieldon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Pearl", + "Platinum", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 411, + "boxPlacement": { + "box": 22, + "row": 1, + "column": 6 + }, + "pokemon": "Bastiodon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Pearl", + "Platinum", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 412, + "boxPlacement": { + "box": 22, + "row": 2, + "column": 1 + }, + "pokemon": "Burmy", + "form": "Leaf Cloak", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 412, + "boxPlacement": { + "box": 22, + "row": 2, + "column": 2 + }, + "pokemon": "Burmy", + "form": "Sand Cloak", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 412, + "boxPlacement": { + "box": 22, + "row": 2, + "column": 3 + }, + "pokemon": "Burmy", + "form": "Trash Cloak", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 413, + "boxPlacement": { + "box": 22, + "row": 2, + "column": 4 + }, + "pokemon": "Wormadam", + "form": "Leaf Cloak", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 413, + "boxPlacement": { + "box": 22, + "row": 2, + "column": 5 + }, + "pokemon": "Wormadam", + "form": "Sand Cloak", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 413, + "boxPlacement": { + "box": 22, + "row": 2, + "column": 6 + }, + "pokemon": "Wormadam", + "form": "Trash Cloak", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 414, + "boxPlacement": { + "box": 22, + "row": 3, + "column": 1 + }, + "pokemon": "Mothim", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 415, + "boxPlacement": { + "box": 22, + "row": 3, + "column": 2 + }, + "pokemon": "Combee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 415, + "boxPlacement": { + "box": 22, + "row": 3, + "column": 3 + }, + "pokemon": "Combee", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 416, + "boxPlacement": { + "box": 22, + "row": 3, + "column": 4 + }, + "pokemon": "Vespiquen", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 417, + "boxPlacement": { + "box": 22, + "row": 3, + "column": 5 + }, + "pokemon": "Pachirisu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 417, + "boxPlacement": { + "box": 22, + "row": 3, + "column": 6 + }, + "pokemon": "Pachirisu", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 418, + "boxPlacement": { + "box": 22, + "row": 4, + "column": 1 + }, + "pokemon": "Buizel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 418, + "boxPlacement": { + "box": 22, + "row": 4, + "column": 2 + }, + "pokemon": "Buizel", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 419, + "boxPlacement": { + "box": 22, + "row": 4, + "column": 3 + }, + "pokemon": "Floatzel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 419, + "boxPlacement": { + "box": 22, + "row": 4, + "column": 4 + }, + "pokemon": "Floatzel", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 420, + "boxPlacement": { + "box": 22, + "row": 4, + "column": 5 + }, + "pokemon": "Cherubi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 421, + "boxPlacement": { + "box": 22, + "row": 4, + "column": 6 + }, + "pokemon": "Cherrim", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 422, + "boxPlacement": { + "box": 22, + "row": 5, + "column": 1 + }, + "pokemon": "Shellos", + "form": "East Sea", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 422, + "boxPlacement": { + "box": 22, + "row": 5, + "column": 2 + }, + "pokemon": "Shellos", + "form": "West Sea", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 423, + "boxPlacement": { + "box": 22, + "row": 5, + "column": 3 + }, + "pokemon": "Gastrodon", + "form": "East Sea", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 423, + "boxPlacement": { + "box": 22, + "row": 5, + "column": 4 + }, + "pokemon": "Gastrodon", + "form": "West Sea", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 424, + "boxPlacement": { + "box": 22, + "row": 5, + "column": 5 + }, + "pokemon": "Ambipom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Aipom when leveled up while knowing Double Hit." + }, + { + "pokedexNumber": 424, + "boxPlacement": { + "box": 22, + "row": 5, + "column": 6 + }, + "pokemon": "Ambipom", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Aipom when leveled up while knowing Double Hit." + }, + { + "pokedexNumber": 425, + "boxPlacement": { + "box": 23, + "row": 1, + "column": 1 + }, + "pokemon": "Drifloon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 426, + "boxPlacement": { + "box": 23, + "row": 1, + "column": 2 + }, + "pokemon": "Drifblim", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 427, + "boxPlacement": { + "box": 23, + "row": 1, + "column": 3 + }, + "pokemon": "Buneary", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 428, + "boxPlacement": { + "box": 23, + "row": 1, + "column": 4 + }, + "pokemon": "Lopunny", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 429, + "boxPlacement": { + "box": 23, + "row": 1, + "column": 5 + }, + "pokemon": "Mismagius", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Misdreavus when exposed to a Dusk Stone." + }, + { + "pokedexNumber": 430, + "boxPlacement": { + "box": 23, + "row": 1, + "column": 6 + }, + "pokemon": "Honchkrow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Murkrow when exposed to a Dusk Stone." + }, + { + "pokedexNumber": 431, + "boxPlacement": { + "box": 23, + "row": 2, + "column": 1 + }, + "pokemon": "Glameow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Pearl", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 432, + "boxPlacement": { + "box": 23, + "row": 2, + "column": 2 + }, + "pokemon": "Purugly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Pearl", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 433, + "boxPlacement": { + "box": 23, + "row": 2, + "column": 3 + }, + "pokemon": "Chingling", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 434, + "boxPlacement": { + "box": 23, + "row": 2, + "column": 4 + }, + "pokemon": "Stunky", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "BD" + ], + "regionToEvolveIn": "", + "notes": "Routes 206, 214, and 221 Grand Underground - Grassland Cave, Spacious Cave, Riverbank Cave, Sunlit Cavern, Still-Water Cavern (After obtaining TM96 (Strength))" + }, + { + "pokedexNumber": 435, + "boxPlacement": { + "box": 23, + "row": 2, + "column": 5 + }, + "pokemon": "Skuntank", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "BD" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Stunky starting at level 34." + }, + { + "pokedexNumber": 436, + "boxPlacement": { + "box": 23, + "row": 2, + "column": 6 + }, + "pokemon": "Bronzor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 437, + "boxPlacement": { + "box": 23, + "row": 3, + "column": 1 + }, + "pokemon": "Bronzong", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 438, + "boxPlacement": { + "box": 23, + "row": 3, + "column": 2 + }, + "pokemon": "Bonsly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 439, + "boxPlacement": { + "box": 23, + "row": 3, + "column": 3 + }, + "pokemon": "Mime Jr.", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 440, + "boxPlacement": { + "box": 23, + "row": 3, + "column": 4 + }, + "pokemon": "Happiny", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 441, + "boxPlacement": { + "box": 23, + "row": 3, + "column": 5 + }, + "pokemon": "Chatot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 442, + "boxPlacement": { + "box": 23, + "row": 3, + "column": 6 + }, + "pokemon": "Spiritomb", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 443, + "boxPlacement": { + "box": 23, + "row": 4, + "column": 1 + }, + "pokemon": "Gible", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 443, + "boxPlacement": { + "box": 23, + "row": 4, + "column": 2 + }, + "pokemon": "Gible", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 444, + "boxPlacement": { + "box": 23, + "row": 4, + "column": 3 + }, + "pokemon": "Gabite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 444, + "boxPlacement": { + "box": 23, + "row": 4, + "column": 4 + }, + "pokemon": "Gabite", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 445, + "boxPlacement": { + "box": 23, + "row": 4, + "column": 5 + }, + "pokemon": "Garchomp", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 445, + "boxPlacement": { + "box": 23, + "row": 4, + "column": 6 + }, + "pokemon": "Garchomp", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 446, + "boxPlacement": { + "box": 23, + "row": 5, + "column": 1 + }, + "pokemon": "Munchlax", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 447, + "boxPlacement": { + "box": 23, + "row": 5, + "column": 2 + }, + "pokemon": "Riolu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 448, + "boxPlacement": { + "box": 23, + "row": 5, + "column": 3 + }, + "pokemon": "Lucario", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 449, + "boxPlacement": { + "box": 23, + "row": 5, + "column": 4 + }, + "pokemon": "Hippopotas", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 449, + "boxPlacement": { + "box": 23, + "row": 5, + "column": 5 + }, + "pokemon": "Hippopotas", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 450, + "boxPlacement": { + "box": 23, + "row": 5, + "column": 6 + }, + "pokemon": "Hippowdon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 450, + "boxPlacement": { + "box": 24, + "row": 1, + "column": 1 + }, + "pokemon": "Hippowdon", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 451, + "boxPlacement": { + "box": 24, + "row": 1, + "column": 2 + }, + "pokemon": "Skorupi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 452, + "boxPlacement": { + "box": 24, + "row": 1, + "column": 3 + }, + "pokemon": "Drapion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 453, + "boxPlacement": { + "box": 24, + "row": 1, + "column": 4 + }, + "pokemon": "Croagunk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 453, + "boxPlacement": { + "box": 24, + "row": 1, + "column": 5 + }, + "pokemon": "Croagunk", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 454, + "boxPlacement": { + "box": 24, + "row": 1, + "column": 6 + }, + "pokemon": "Toxicroak", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 454, + "boxPlacement": { + "box": 24, + "row": 2, + "column": 1 + }, + "pokemon": "Toxicroak", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 455, + "boxPlacement": { + "box": 24, + "row": 2, + "column": 2 + }, + "pokemon": "Carnivine", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 456, + "boxPlacement": { + "box": 24, + "row": 2, + "column": 3 + }, + "pokemon": "Finneon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 456, + "boxPlacement": { + "box": 24, + "row": 2, + "column": 4 + }, + "pokemon": "Finneon", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 457, + "boxPlacement": { + "box": 24, + "row": 2, + "column": 5 + }, + "pokemon": "Lumineon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 457, + "boxPlacement": { + "box": 24, + "row": 2, + "column": 6 + }, + "pokemon": "Lumineon", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 458, + "boxPlacement": { + "box": 24, + "row": 3, + "column": 1 + }, + "pokemon": "Mantyke", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 459, + "boxPlacement": { + "box": 24, + "row": 3, + "column": 2 + }, + "pokemon": "Snover", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 459, + "boxPlacement": { + "box": 24, + "row": 3, + "column": 3 + }, + "pokemon": "Snover", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 460, + "boxPlacement": { + "box": 24, + "row": 3, + "column": 4 + }, + "pokemon": "Abomasnow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 460, + "boxPlacement": { + "box": 24, + "row": 3, + "column": 5 + }, + "pokemon": "Abomasnow", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 461, + "boxPlacement": { + "box": 24, + "row": 3, + "column": 6 + }, + "pokemon": "Weavile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Sneasel when leveled up while holding a Razor Claw during the night." + }, + { + "pokedexNumber": 461, + "boxPlacement": { + "box": 24, + "row": 4, + "column": 1 + }, + "pokemon": "Weavile", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Sneasel when leveled up while holding a Razor Claw during the night." + }, + { + "pokedexNumber": 462, + "boxPlacement": { + "box": 24, + "row": 4, + "column": 2 + }, + "pokemon": "Magnezone", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Magneton when leveled up in a special magnetic field or when exposed to a Thunder Stone." + }, + { + "pokedexNumber": 463, + "boxPlacement": { + "box": 24, + "row": 4, + "column": 3 + }, + "pokemon": "Lickilicky", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Lickitung when leveled up while knowing Rollout." + }, + { + "pokedexNumber": 464, + "boxPlacement": { + "box": 24, + "row": 4, + "column": 4 + }, + "pokemon": "Rhyperior", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Rhydon when traded while holding a Protector." + }, + { + "pokedexNumber": 464, + "boxPlacement": { + "box": 24, + "row": 4, + "column": 5 + }, + "pokemon": "Rhyperior", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Rhydon when traded while holding a Protector." + }, + { + "pokedexNumber": 465, + "boxPlacement": { + "box": 24, + "row": 4, + "column": 6 + }, + "pokemon": "Tangrowth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Tangela when leveled up while knowing Ancient Power." + }, + { + "pokedexNumber": 465, + "boxPlacement": { + "box": 24, + "row": 5, + "column": 1 + }, + "pokemon": "Tangrowth", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Tangela when leveled up while knowing Ancient Power." + }, + { + "pokedexNumber": 466, + "boxPlacement": { + "box": 24, + "row": 5, + "column": 2 + }, + "pokemon": "Electivire", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Electabuzz when traded while holding an Electirizer." + }, + { + "pokedexNumber": 467, + "boxPlacement": { + "box": 24, + "row": 5, + "column": 3 + }, + "pokemon": "Magmortar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Blue", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Magmar when traded while holding a Magmarizer. " + }, + { + "pokedexNumber": 468, + "boxPlacement": { + "box": 24, + "row": 5, + "column": 4 + }, + "pokemon": "Togekiss", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Togetic when exposed to a Shiny Stone." + }, + { + "pokedexNumber": 469, + "boxPlacement": { + "box": 24, + "row": 5, + "column": 5 + }, + "pokemon": "Yanmega", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Yanma when leveled up while knowing Ancient Power." + }, + { + "pokedexNumber": 470, + "boxPlacement": { + "box": 24, + "row": 5, + "column": 6 + }, + "pokemon": "Leafeon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "evolves from Eevee when exposed to a Moss Rock or, from Generation VIII onwards, when exposed to a Leaf Stone. Eevee will always evolve into Leafeon when leveled up near a Moss Rock, even if the evolutionary conditions for it to evolve into Espeon, Umbreon, or Sylveon have also been met. The Moss Rock is not present in Pokémon HeartGold and SoulSilver, Pokémon Sword and Shield, or Pokémon Scarlet and Violet." + }, + { + "pokedexNumber": 471, + "boxPlacement": { + "box": 25, + "row": 1, + "column": 1 + }, + "pokemon": "Glaceon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "evolves from Eevee when exposed to an Ice Rock or, from Generation VIII onwards, when exposed to an Ice Stone. Eevee will always evolve into Glaceon when leveled up near an Ice Rock, even if the evolutionary conditions for it to evolve into Espeon, Umbreon, or Sylveon have also been met. The Ice Rock is not present in Pokémon HeartGold and SoulSilver, Pokémon Sword and Shield, or Pokémon Scarlet and Violet, and the Ice Stone is not obtainable in Pokémon Brilliant Diamond and Shining Pearl." + }, + { + "pokedexNumber": 472, + "boxPlacement": { + "box": 25, + "row": 1, + "column": 2 + }, + "pokemon": "Gliscor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Gligar when leveled up while holding a Razor Fang during the night." + }, + { + "pokedexNumber": 473, + "boxPlacement": { + "box": 25, + "row": 1, + "column": 3 + }, + "pokemon": "Mamoswine", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Piloswine when leveled up while knowing Ancient Power." + }, + { + "pokedexNumber": 473, + "boxPlacement": { + "box": 25, + "row": 1, + "column": 4 + }, + "pokemon": "Mamoswine", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Piloswine when leveled up while knowing Ancient Power." + }, + { + "pokedexNumber": 474, + "boxPlacement": { + "box": 25, + "row": 1, + "column": 5 + }, + "pokemon": "Porygon-Z", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 475, + "boxPlacement": { + "box": 25, + "row": 1, + "column": 6 + }, + "pokemon": "Gallade", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from a male Kirlia when exposed to a Dawn Stone." + }, + { + "pokedexNumber": 476, + "boxPlacement": { + "box": 25, + "row": 2, + "column": 1 + }, + "pokemon": "Probopass", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Nosepass when leveled up in a special magnetic field or when exposed to a Thunder Stone." + }, + { + "pokedexNumber": 477, + "boxPlacement": { + "box": 25, + "row": 2, + "column": 2 + }, + "pokemon": "Dusknoir", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from Dusclops when traded while holding a Reaper Cloth." + }, + { + "pokedexNumber": 478, + "boxPlacement": { + "box": 25, + "row": 2, + "column": 3 + }, + "pokemon": "Froslass", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hoenn", + "gamesToCatchIn": [ + "Ruby", + "Sapphire", + "Emerald", + "OR", + "AS" + ], + "regionToEvolveIn": "Sinnoh", + "notes": "It evolves from a female Snorunt when exposed to a Dawn Stone." + }, + { + "pokedexNumber": 479, + "boxPlacement": { + "box": 25, + "row": 2, + "column": 4 + }, + "pokemon": "Rotom", + "form": "Lightbulb", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 479, + "boxPlacement": { + "box": 25, + "row": 2, + "column": 5 + }, + "pokemon": "Rotom", + "form": "Oven", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 479, + "boxPlacement": { + "box": 25, + "row": 2, + "column": 6 + }, + "pokemon": "Rotom", + "form": "Washer", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 479, + "boxPlacement": { + "box": 25, + "row": 3, + "column": 1 + }, + "pokemon": "Rotom", + "form": "Fridge", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 479, + "boxPlacement": { + "box": 25, + "row": 3, + "column": 2 + }, + "pokemon": "Rotom", + "form": "Fan", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 479, + "boxPlacement": { + "box": 25, + "row": 3, + "column": 3 + }, + "pokemon": "Rotom", + "form": "Mower", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 480, + "boxPlacement": { + "box": 25, + "row": 3, + "column": 4 + }, + "pokemon": "Uxie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 481, + "boxPlacement": { + "box": 25, + "row": 3, + "column": 5 + }, + "pokemon": "Mesprit", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 482, + "boxPlacement": { + "box": 25, + "row": 3, + "column": 6 + }, + "pokemon": "Azelf", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 483, + "boxPlacement": { + "box": 25, + "row": 4, + "column": 1 + }, + "pokemon": "Dialga", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Platinum", + "BD" + ], + "regionToEvolveIn": "", + "notes": "Spear Pillar (Only one)" + }, + { + "pokedexNumber": 484, + "boxPlacement": { + "box": 25, + "row": 4, + "column": 2 + }, + "pokemon": "Palkia", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Pearl", + "Platinum", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 485, + "boxPlacement": { + "box": 25, + "row": 4, + "column": 3 + }, + "pokemon": "Heatran", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 486, + "boxPlacement": { + "box": 25, + "row": 4, + "column": 4 + }, + "pokemon": "Regigigas", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "Snowpoint Temple (requires Regirock, Regice, and Registeel in the player's party) (Only one)" + }, + { + "pokedexNumber": 487, + "boxPlacement": { + "box": 25, + "row": 4, + "column": 5 + }, + "pokemon": "Giratina", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "Turnback Cave (Only one) (Altered Forme)" + }, + { + "pokedexNumber": 488, + "boxPlacement": { + "box": 25, + "row": 4, + "column": 6 + }, + "pokemon": "Cresselia", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "Roaming Sinnoh (Only one)" + }, + { + "pokedexNumber": 489, + "boxPlacement": { + "box": 25, + "row": 5, + "column": 1 + }, + "pokemon": "Phione", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "PLA" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 490, + "boxPlacement": { + "box": 25, + "row": 5, + "column": 2 + }, + "pokemon": "Manaphy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "PLA" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 491, + "boxPlacement": { + "box": 25, + "row": 5, + "column": 3 + }, + "pokemon": "Darkrai", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "PLA" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 492, + "boxPlacement": { + "box": 25, + "row": 5, + "column": 4 + }, + "pokemon": "Shaymin", + "form": "Normal Form", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "PLA" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 492, + "boxPlacement": { + "box": 25, + "row": 5, + "column": 5 + }, + "pokemon": "Shaymin", + "form": "Sky Form", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Needs to have its form changed in PLA to be able to keep it in Home, which requires having a completed Sword or Shield save file" + }, + { + "pokedexNumber": 493, + "boxPlacement": { + "box": 25, + "row": 5, + "column": 6 + }, + "pokemon": "Arceus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Sinnoh", + "gamesToCatchIn": [ + "Diamond", + "Pearl", + "Platinum", + "BD", + "SP" + ], + "regionToEvolveIn": "", + "notes": "Hall of Origin (Only one*)Version 1.3.0+" + }, + { + "pokedexNumber": 494, + "boxPlacement": { + "box": 26, + "row": 1, + "column": 1 + }, + "pokemon": "Victini", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White" + ], + "regionToEvolveIn": "", + "notes": "DNS Exploit" + }, + { + "pokedexNumber": 495, + "boxPlacement": { + "box": 26, + "row": 1, + "column": 2 + }, + "pokemon": "Snivy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 496, + "boxPlacement": { + "box": 26, + "row": 1, + "column": 3 + }, + "pokemon": "Servine", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 497, + "boxPlacement": { + "box": 26, + "row": 1, + "column": 4 + }, + "pokemon": "Serperior", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 498, + "boxPlacement": { + "box": 26, + "row": 1, + "column": 5 + }, + "pokemon": "Tepig", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 499, + "boxPlacement": { + "box": 26, + "row": 1, + "column": 6 + }, + "pokemon": "Pignite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tepig at level 17" + }, + { + "pokedexNumber": 500, + "boxPlacement": { + "box": 26, + "row": 2, + "column": 1 + }, + "pokemon": "Emboar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Pignite at level 36" + }, + { + "pokedexNumber": 501, + "boxPlacement": { + "box": 26, + "row": 2, + "column": 2 + }, + "pokemon": "Oshawott", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 502, + "boxPlacement": { + "box": 26, + "row": 2, + "column": 3 + }, + "pokemon": "Dewott", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 503, + "boxPlacement": { + "box": 26, + "row": 2, + "column": 4 + }, + "pokemon": "Samurott", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "36" + }, + { + "pokedexNumber": 503, + "boxPlacement": { + "box": 26, + "row": 2, + "column": 5 + }, + "pokemon": "Samurott", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "Hisui", + "notes": "36" + }, + { + "pokedexNumber": 504, + "boxPlacement": { + "box": 26, + "row": 2, + "column": 6 + }, + "pokemon": "Patrat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 505, + "boxPlacement": { + "box": 26, + "row": 3, + "column": 1 + }, + "pokemon": "Watchog", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Patrat at level 20" + }, + { + "pokedexNumber": 506, + "boxPlacement": { + "box": 26, + "row": 3, + "column": 2 + }, + "pokemon": "Lillipup", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 507, + "boxPlacement": { + "box": 26, + "row": 3, + "column": 3 + }, + "pokemon": "Herdier", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Herdier at level 16" + }, + { + "pokedexNumber": 508, + "boxPlacement": { + "box": 26, + "row": 3, + "column": 4 + }, + "pokemon": "Stoutland", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Stoutland at level 32" + }, + { + "pokedexNumber": 509, + "boxPlacement": { + "box": 26, + "row": 3, + "column": 5 + }, + "pokemon": "Purrloin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": " Routes 2 and 3, Dreamyard" + }, + { + "pokedexNumber": 510, + "boxPlacement": { + "box": 26, + "row": 3, + "column": 6 + }, + "pokemon": "Liepard", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Purrloin at level 20" + }, + { + "pokedexNumber": 511, + "boxPlacement": { + "box": 26, + "row": 4, + "column": 1 + }, + "pokemon": "Pansage", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 512, + "boxPlacement": { + "box": 26, + "row": 4, + "column": 2 + }, + "pokemon": "Simisage", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Pansage with a leaf stone" + }, + { + "pokedexNumber": 513, + "boxPlacement": { + "box": 26, + "row": 4, + "column": 3 + }, + "pokemon": "Pansear", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (inner) and Lostlorn Forest (rustling grass)" + }, + { + "pokedexNumber": 514, + "boxPlacement": { + "box": 26, + "row": 4, + "column": 4 + }, + "pokemon": "Simisear", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Pansear with a fire stone" + }, + { + "pokedexNumber": 515, + "boxPlacement": { + "box": 26, + "row": 4, + "column": 5 + }, + "pokemon": "Panpour", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (inner) and Lostlorn Forest (rustling grass)" + }, + { + "pokedexNumber": 516, + "boxPlacement": { + "box": 26, + "row": 4, + "column": 6 + }, + "pokemon": "Simipour", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Panpour with a water stone" + }, + { + "pokedexNumber": 517, + "boxPlacement": { + "box": 26, + "row": 5, + "column": 1 + }, + "pokemon": "Munna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Dreamyard" + }, + { + "pokedexNumber": 518, + "boxPlacement": { + "box": 26, + "row": 5, + "column": 2 + }, + "pokemon": "Musharna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Munna with a moon stone" + }, + { + "pokedexNumber": 519, + "boxPlacement": { + "box": 26, + "row": 5, + "column": 3 + }, + "pokemon": "Pidove", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 3, Pinwheel Forest (inner)" + }, + { + "pokedexNumber": 520, + "boxPlacement": { + "box": 26, + "row": 5, + "column": 4 + }, + "pokemon": "Tranquill", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Pidove at level 21" + }, + { + "pokedexNumber": 521, + "boxPlacement": { + "box": 26, + "row": 5, + "column": 5 + }, + "pokemon": "Unfezant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tranquill at level 32" + }, + { + "pokedexNumber": 521, + "boxPlacement": { + "box": 26, + "row": 5, + "column": 6 + }, + "pokemon": "Unfezant", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tranquill at level 32" + }, + { + "pokedexNumber": 522, + "boxPlacement": { + "box": 27, + "row": 1, + "column": 1 + }, + "pokemon": "Blitzle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 3" + }, + { + "pokedexNumber": 523, + "boxPlacement": { + "box": 27, + "row": 1, + "column": 2 + }, + "pokemon": "Zebstrika", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Blitzle at level 27" + }, + { + "pokedexNumber": 524, + "boxPlacement": { + "box": 27, + "row": 1, + "column": 3 + }, + "pokemon": "Roggenrola", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Wellspring Cave" + }, + { + "pokedexNumber": 525, + "boxPlacement": { + "box": 27, + "row": 1, + "column": 4 + }, + "pokemon": "Boldore", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Roggenrola at level 25" + }, + { + "pokedexNumber": 526, + "boxPlacement": { + "box": 27, + "row": 1, + "column": 5 + }, + "pokemon": "Gigalith", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Boldore when traded" + }, + { + "pokedexNumber": 527, + "boxPlacement": { + "box": 27, + "row": 1, + "column": 6 + }, + "pokemon": "Woobat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Wellspring Cave, Mistralton Cave, Twist Mountain, Challenger's Cave, Victory Road" + }, + { + "pokedexNumber": 528, + "boxPlacement": { + "box": 27, + "row": 2, + "column": 1 + }, + "pokemon": "Swoobat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Woobat with high friendship" + }, + { + "pokedexNumber": 529, + "boxPlacement": { + "box": 27, + "row": 2, + "column": 2 + }, + "pokemon": "Drilbur", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Wellspring Cave, Chargestone Cave, Mistralton Cave, Twist Mountain (Dust cloud)" + }, + { + "pokedexNumber": 530, + "boxPlacement": { + "box": 27, + "row": 2, + "column": 3 + }, + "pokemon": "Excadrill", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Drilbur at level 31" + }, + { + "pokedexNumber": 531, + "boxPlacement": { + "box": 27, + "row": 2, + "column": 4 + }, + "pokemon": "Audino", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, and 18, P2 Laboratory, Dreamyard, Pinwheel Forest, Lostlorn Forest, Dragonspiral Tower, Village Bridge, Giant Chasm, Abundant Shrine, Cold Storage (rustling grass)" + }, + { + "pokedexNumber": 532, + "boxPlacement": { + "box": 27, + "row": 2, + "column": 5 + }, + "pokemon": "Timburr", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (outside), Cold Storage" + }, + { + "pokedexNumber": 533, + "boxPlacement": { + "box": 27, + "row": 2, + "column": 6 + }, + "pokemon": "Gurdurr", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Timburr at level 25" + }, + { + "pokedexNumber": 534, + "boxPlacement": { + "box": 27, + "row": 3, + "column": 1 + }, + "pokemon": "Conkeldurr", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Gurdurr when traded" + }, + { + "pokedexNumber": 535, + "boxPlacement": { + "box": 27, + "row": 3, + "column": 2 + }, + "pokemon": "Tympole", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (outside)" + }, + { + "pokedexNumber": 536, + "boxPlacement": { + "box": 27, + "row": 3, + "column": 3 + }, + "pokemon": "Palpitoad", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tympole at level 25" + }, + { + "pokedexNumber": 537, + "boxPlacement": { + "box": 27, + "row": 3, + "column": 4 + }, + "pokemon": "Seismitoad", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Papitoad at level 36" + }, + { + "pokedexNumber": 538, + "boxPlacement": { + "box": 27, + "row": 3, + "column": 5 + }, + "pokemon": "Throh", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 10, 15, and 18, Pinwheel Forest (outside) (rustling grass)" + }, + { + "pokedexNumber": 539, + "boxPlacement": { + "box": 27, + "row": 3, + "column": 6 + }, + "pokemon": "Sawk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 10, 15, and 18, Pinwheel Forest (outside) (tall grass)" + }, + { + "pokedexNumber": 540, + "boxPlacement": { + "box": 27, + "row": 4, + "column": 1 + }, + "pokemon": "Sewaddle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (inner)" + }, + { + "pokedexNumber": 541, + "boxPlacement": { + "box": 27, + "row": 4, + "column": 2 + }, + "pokemon": "Swadloon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Sewaddle at level 20" + }, + { + "pokedexNumber": 542, + "boxPlacement": { + "box": 27, + "row": 4, + "column": 3 + }, + "pokemon": "Leavanny", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Swadloon with high friendship" + }, + { + "pokedexNumber": 543, + "boxPlacement": { + "box": 27, + "row": 4, + "column": 4 + }, + "pokemon": "Venipede", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (inner), Lostlorn Forest" + }, + { + "pokedexNumber": 544, + "boxPlacement": { + "box": 27, + "row": 4, + "column": 5 + }, + "pokemon": "Whirlipede", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Venipede at level 22" + }, + { + "pokedexNumber": 545, + "boxPlacement": { + "box": 27, + "row": 4, + "column": 6 + }, + "pokemon": "Scolipede", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Whirlipede at level 30" + }, + { + "pokedexNumber": 546, + "boxPlacement": { + "box": 27, + "row": 5, + "column": 1 + }, + "pokemon": "Cottonee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (inner), Lostlorn Forest, Abundant Shrine" + }, + { + "pokedexNumber": 547, + "boxPlacement": { + "box": 27, + "row": 5, + "column": 2 + }, + "pokemon": "Whimsicott", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from cottonee with a sun stone" + }, + { + "pokedexNumber": 548, + "boxPlacement": { + "box": 27, + "row": 5, + "column": 3 + }, + "pokemon": "Petilil", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (inner), Lostlorn Forest, Abundant Shrine" + }, + { + "pokedexNumber": 549, + "boxPlacement": { + "box": 27, + "row": 5, + "column": 4 + }, + "pokemon": "Lilligant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Petilil with a sun stone" + }, + { + "pokedexNumber": 549, + "boxPlacement": { + "box": 27, + "row": 5, + "column": 5 + }, + "pokemon": "Lilligant", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "Hisui", + "notes": "In Hisui, Petilil evolves into Hisuian Lilligant when exposed to a Sun Stone." + }, + { + "pokedexNumber": 550, + "boxPlacement": { + "box": 27, + "row": 5, + "column": 6 + }, + "pokemon": "Basculin", + "form": "Red-striped", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 1, 3, 6, 11, 14, Striaton City, Wellspring Cave, Pinwheel Forest, Dragonspiral Tower, Challenger's Cave, Victory Road, Village Bridge, Giant Chasm, Abundant Shrine, Lostlorn Forest (Surfing or fishing) (Red-Striped Form) (Rippling water) (Blue-Striped Form)" + }, + { + "pokedexNumber": 550, + "boxPlacement": { + "box": 28, + "row": 1, + "column": 1 + }, + "pokemon": "Basculin", + "form": "Blue-striped", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 1, 3, 6, 11, 14, Striaton City, Wellspring Cave, Pinwheel Forest, Dragonspiral Tower, Challenger's Cave, Victory Road, Village Bridge, Giant Chasm, Abundant Shrine, Lostlorn Forest (Surfing or fishing) (Red-Striped Form) (Rippling water) (Blue-Striped Form)" + }, + { + "pokedexNumber": 550, + "boxPlacement": { + "box": 28, + "row": 1, + "column": 2 + }, + "pokemon": "Basculin", + "form": "White-striped", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Cobalt Coastlands: Tranquility Cove, near Islespy Shore, near Firespit Island, massive mass outbreaks (White-Striped Form)\r Coronet Highlands: Fabled Spring (White-Striped Form)\r Alabaster Icelands: near Avalugg's Legacy, Heart's Crag, Lake Acuity, near Pearl Settlement (White-Striped Form)" + }, + { + "pokedexNumber": 551, + "boxPlacement": { + "box": 28, + "row": 1, + "column": 3 + }, + "pokemon": "Sandile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 4, Desert Resort, Relic Castle" + }, + { + "pokedexNumber": 552, + "boxPlacement": { + "box": 28, + "row": 1, + "column": 4 + }, + "pokemon": "Krokorok", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Sandile at level 29" + }, + { + "pokedexNumber": 553, + "boxPlacement": { + "box": 28, + "row": 1, + "column": 5 + }, + "pokemon": "Krookodile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Krokorok at level 40" + }, + { + "pokedexNumber": 554, + "boxPlacement": { + "box": 28, + "row": 1, + "column": 6 + }, + "pokemon": "Darumaka", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 4, Desert Resort" + }, + { + "pokedexNumber": 554, + "boxPlacement": { + "box": 28, + "row": 2, + "column": 1 + }, + "pokemon": "Darumaka", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Routes 8 and 10 (Galarian Form) Dusty Bowl, Giant's Cap, Hammerlocke Hills, Lake of Outrage, Stony Wilderness (Max Raid Battle) (Galarian Form)" + }, + { + "pokedexNumber": 555, + "boxPlacement": { + "box": 28, + "row": 2, + "column": 2 + }, + "pokemon": "Darmanitan", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Darumaka at level 35" + }, + { + "pokedexNumber": 555, + "boxPlacement": { + "box": 28, + "row": 2, + "column": 3 + }, + "pokemon": "Darmanitan", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Darumake when exposed to an Ice Stone." + }, + { + "pokedexNumber": 556, + "boxPlacement": { + "box": 28, + "row": 2, + "column": 4 + }, + "pokemon": "Maractus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Desert Resort" + }, + { + "pokedexNumber": 557, + "boxPlacement": { + "box": 28, + "row": 2, + "column": 5 + }, + "pokemon": "Dwebble", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 18 and Desert Resort" + }, + { + "pokedexNumber": 558, + "boxPlacement": { + "box": 28, + "row": 2, + "column": 6 + }, + "pokemon": "Crustle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Dwebble at level 34" + }, + { + "pokedexNumber": 559, + "boxPlacement": { + "box": 28, + "row": 3, + "column": 1 + }, + "pokemon": "Scraggy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 4 and 18, Desert Resort, P2 Laboratory Route 1 (dark grass)" + }, + { + "pokedexNumber": 560, + "boxPlacement": { + "box": 28, + "row": 3, + "column": 2 + }, + "pokemon": "Scrafty", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Scraggy at level 39" + }, + { + "pokedexNumber": 561, + "boxPlacement": { + "box": 28, + "row": 3, + "column": 3 + }, + "pokemon": "Sigilyph", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Desert Resort" + }, + { + "pokedexNumber": 562, + "boxPlacement": { + "box": 28, + "row": 3, + "column": 4 + }, + "pokemon": "Yamask", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Relic Castle" + }, + { + "pokedexNumber": 562, + "boxPlacement": { + "box": 28, + "row": 3, + "column": 5 + }, + "pokemon": "Yamask", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 563, + "boxPlacement": { + "box": 28, + "row": 3, + "column": 6 + }, + "pokemon": "Cofagrigus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Yamask at level 34" + }, + { + "pokedexNumber": 564, + "boxPlacement": { + "box": 28, + "row": 4, + "column": 1 + }, + "pokemon": "Tirtouga", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Resurrected from a Cover Fossil" + }, + { + "pokedexNumber": 565, + "boxPlacement": { + "box": 28, + "row": 4, + "column": 2 + }, + "pokemon": "Carracosta", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tirtouga at level 37" + }, + { + "pokedexNumber": 566, + "boxPlacement": { + "box": 28, + "row": 4, + "column": 3 + }, + "pokemon": "Archen", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Resurrected from a Plume Fossil" + }, + { + "pokedexNumber": 567, + "boxPlacement": { + "box": 28, + "row": 4, + "column": 4 + }, + "pokemon": "Archeops", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Archen at level 37" + }, + { + "pokedexNumber": 568, + "boxPlacement": { + "box": 28, + "row": 4, + "column": 5 + }, + "pokemon": "Trubbish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": " Routes 5 and 16" + }, + { + "pokedexNumber": 569, + "boxPlacement": { + "box": 28, + "row": 4, + "column": 6 + }, + "pokemon": "Garbodor", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Trubbish at level 36" + }, + { + "pokedexNumber": 570, + "boxPlacement": { + "box": 28, + "row": 5, + "column": 1 + }, + "pokemon": "Zorua", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Castelia City (requires fateful encounter Celebi) Breed Zoroark (requires Shiny fateful encounter Entei, Raikou, or Suicune)" + }, + { + "pokedexNumber": 570, + "boxPlacement": { + "box": 28, + "row": 5, + "column": 2 + }, + "pokemon": "Zorua", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Alabaster Icelands: near Avalugg's Legacy (mass outbreaks), near Glacier Terrace, Icepeak Cavern, massive mass outbreaks (Hisuian Form)" + }, + { + "pokedexNumber": 571, + "boxPlacement": { + "box": 28, + "row": 5, + "column": 3 + }, + "pokemon": "Zoroark", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Zorua at level 30" + }, + { + "pokedexNumber": 571, + "boxPlacement": { + "box": 28, + "row": 5, + "column": 4 + }, + "pokemon": "Zoroark", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Zorua at level 30" + }, + { + "pokedexNumber": 572, + "boxPlacement": { + "box": 28, + "row": 5, + "column": 5 + }, + "pokemon": "Minccino", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 573, + "boxPlacement": { + "box": 28, + "row": 5, + "column": 6 + }, + "pokemon": "Cinccino", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Minccino with a shiny stone" + }, + { + "pokedexNumber": 574, + "boxPlacement": { + "box": 29, + "row": 1, + "column": 1 + }, + "pokemon": "Gothita", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Routes 5 and 16" + }, + { + "pokedexNumber": 575, + "boxPlacement": { + "box": 29, + "row": 1, + "column": 2 + }, + "pokemon": "Gothorita", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Gothita at level 32" + }, + { + "pokedexNumber": 576, + "boxPlacement": { + "box": 29, + "row": 1, + "column": 3 + }, + "pokemon": "Gothitelle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Gothorita at level 41" + }, + { + "pokedexNumber": 577, + "boxPlacement": { + "box": 29, + "row": 1, + "column": 4 + }, + "pokemon": "Solosis", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 5 and Route 16" + }, + { + "pokedexNumber": 578, + "boxPlacement": { + "box": 29, + "row": 1, + "column": 5 + }, + "pokemon": "Duosion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Solosis at level 32" + }, + { + "pokedexNumber": 579, + "boxPlacement": { + "box": 29, + "row": 1, + "column": 6 + }, + "pokemon": "Reuniclus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Reuniclus at level 41" + }, + { + "pokedexNumber": 580, + "boxPlacement": { + "box": 29, + "row": 2, + "column": 1 + }, + "pokemon": "Ducklett", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Driftveil Drawbridge (Shadow)" + }, + { + "pokedexNumber": 581, + "boxPlacement": { + "box": 29, + "row": 2, + "column": 2 + }, + "pokemon": "Swanna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Ducklett at level 35" + }, + { + "pokedexNumber": 582, + "boxPlacement": { + "box": 29, + "row": 2, + "column": 3 + }, + "pokemon": "Vanillite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Cold Storage Route 6, Dragonspiral Tower (Winter)" + }, + { + "pokedexNumber": 583, + "boxPlacement": { + "box": 29, + "row": 2, + "column": 4 + }, + "pokemon": "Vanillish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Vanillite at level 35" + }, + { + "pokedexNumber": 584, + "boxPlacement": { + "box": 29, + "row": 2, + "column": 5 + }, + "pokemon": "Vanilluxe", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Vanillish at level 47" + }, + { + "pokedexNumber": 585, + "boxPlacement": { + "box": 29, + "row": 2, + "column": 6 + }, + "pokemon": "Deerling", + "form": "Spring", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 585, + "boxPlacement": { + "box": 29, + "row": 3, + "column": 1 + }, + "pokemon": "Deerling", + "form": "Summer", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 585, + "boxPlacement": { + "box": 29, + "row": 3, + "column": 2 + }, + "pokemon": "Deerling", + "form": "Autumn", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 585, + "boxPlacement": { + "box": 29, + "row": 3, + "column": 3 + }, + "pokemon": "Deerling", + "form": "Winter", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 586, + "boxPlacement": { + "box": 29, + "row": 3, + "column": 4 + }, + "pokemon": "Sawsbuck", + "form": "Spring", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Deerling at level 34" + }, + { + "pokedexNumber": 586, + "boxPlacement": { + "box": 29, + "row": 3, + "column": 5 + }, + "pokemon": "Sawsbuck", + "form": "Summer", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 586, + "boxPlacement": { + "box": 29, + "row": 3, + "column": 6 + }, + "pokemon": "Sawsbuck", + "form": "Autumn", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 586, + "boxPlacement": { + "box": 29, + "row": 4, + "column": 1 + }, + "pokemon": "Sawsbuck", + "form": "Winter", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 587, + "boxPlacement": { + "box": 29, + "row": 4, + "column": 2 + }, + "pokemon": "Emolga", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, and 16, Dragonspiral Tower, Village Bridge, Giant Chasm, Abundant Shrine, Lostlorn Forest (rustling grass)" + }, + { + "pokedexNumber": 588, + "boxPlacement": { + "box": 29, + "row": 4, + "column": 3 + }, + "pokemon": "Karrablast", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 6 and 11" + }, + { + "pokedexNumber": 589, + "boxPlacement": { + "box": 29, + "row": 4, + "column": 4 + }, + "pokemon": "Escavalier", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Karrablast when traded for a Shelmet, a Pokémon that evolves into Accelgor simultaneously. Neither evolves if at least one holds an Everstone during the trade." + }, + { + "pokedexNumber": 590, + "boxPlacement": { + "box": 29, + "row": 4, + "column": 5 + }, + "pokemon": "Foongus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 6, 7, and 10 (both in tall grass and as fake items)" + }, + { + "pokedexNumber": 591, + "boxPlacement": { + "box": 29, + "row": 4, + "column": 6 + }, + "pokemon": "Amoonguss", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Foongus at level 39" + }, + { + "pokedexNumber": 592, + "boxPlacement": { + "box": 29, + "row": 5, + "column": 1 + }, + "pokemon": "Frillish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 4, 17, and 18, Driftveil City, P2 Laboratory (Surfing)" + }, + { + "pokedexNumber": 592, + "boxPlacement": { + "box": 29, + "row": 5, + "column": 2 + }, + "pokemon": "Frillish", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 4, 17, and 18, Driftveil City, P2 Laboratory (Surfing)" + }, + { + "pokedexNumber": 593, + "boxPlacement": { + "box": 29, + "row": 5, + "column": 3 + }, + "pokemon": "Jellicent", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Frillish at level 40" + }, + { + "pokedexNumber": 593, + "boxPlacement": { + "box": 29, + "row": 5, + "column": 4 + }, + "pokemon": "Jellicent", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Frillish at level 40" + }, + { + "pokedexNumber": 594, + "boxPlacement": { + "box": 29, + "row": 5, + "column": 5 + }, + "pokemon": "Alomomola", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 4, 17, 18, Driftveil City, P2 Laboratory (Surfing in rippling water)" + }, + { + "pokedexNumber": 595, + "boxPlacement": { + "box": 29, + "row": 5, + "column": 6 + }, + "pokemon": "Joltik", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Chargestone Cave" + }, + { + "pokedexNumber": 596, + "boxPlacement": { + "box": 30, + "row": 1, + "column": 1 + }, + "pokemon": "Galvantula", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Joltik at level 36" + }, + { + "pokedexNumber": 597, + "boxPlacement": { + "box": 30, + "row": 1, + "column": 2 + }, + "pokemon": "Ferroseed", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Chargestone Cave" + }, + { + "pokedexNumber": 598, + "boxPlacement": { + "box": 30, + "row": 1, + "column": 3 + }, + "pokemon": "Ferrothorn", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Ferroseed at level 40" + }, + { + "pokedexNumber": 599, + "boxPlacement": { + "box": 30, + "row": 1, + "column": 4 + }, + "pokemon": "Klink", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Chargestone Cave, P2 Laboratory" + }, + { + "pokedexNumber": 600, + "boxPlacement": { + "box": 30, + "row": 1, + "column": 5 + }, + "pokemon": "Klang", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Klink at level 38" + }, + { + "pokedexNumber": 601, + "boxPlacement": { + "box": 30, + "row": 1, + "column": 6 + }, + "pokemon": "Klinklang", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Klang at level 49" + }, + { + "pokedexNumber": 602, + "boxPlacement": { + "box": 30, + "row": 2, + "column": 1 + }, + "pokemon": "Tynamo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Chargestone Cave" + }, + { + "pokedexNumber": 603, + "boxPlacement": { + "box": 30, + "row": 2, + "column": 2 + }, + "pokemon": "Eelektrik", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tynamo at level 39" + }, + { + "pokedexNumber": 604, + "boxPlacement": { + "box": 30, + "row": 2, + "column": 3 + }, + "pokemon": "Eelektross", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Eelektrik with a thunder stone" + }, + { + "pokedexNumber": 605, + "boxPlacement": { + "box": 30, + "row": 2, + "column": 4 + }, + "pokemon": "Elgyem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Celestial Tower" + }, + { + "pokedexNumber": 606, + "boxPlacement": { + "box": 30, + "row": 2, + "column": 5 + }, + "pokemon": "Beheeyem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Elgyem at level 42" + }, + { + "pokedexNumber": 607, + "boxPlacement": { + "box": 30, + "row": 2, + "column": 6 + }, + "pokemon": "Litwick", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Celestial Tower" + }, + { + "pokedexNumber": 608, + "boxPlacement": { + "box": 30, + "row": 3, + "column": 1 + }, + "pokemon": "Lampent", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Litwick at level 41" + }, + { + "pokedexNumber": 609, + "boxPlacement": { + "box": 30, + "row": 3, + "column": 2 + }, + "pokemon": "Chandelure", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Lampent with a dusk stone" + }, + { + "pokedexNumber": 610, + "boxPlacement": { + "box": 30, + "row": 3, + "column": 3 + }, + "pokemon": "Axew", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Mistralton Cave" + }, + { + "pokedexNumber": 611, + "boxPlacement": { + "box": 30, + "row": 3, + "column": 4 + }, + "pokemon": "Fraxure", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Axew at level 38" + }, + { + "pokedexNumber": 612, + "boxPlacement": { + "box": 30, + "row": 3, + "column": 5 + }, + "pokemon": "Haxorus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Fraxure at level 48" + }, + { + "pokedexNumber": 613, + "boxPlacement": { + "box": 30, + "row": 3, + "column": 6 + }, + "pokemon": "Cubchoo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Twist Mountain Route 7, Dragonspiral Tower (Winter)" + }, + { + "pokedexNumber": 614, + "boxPlacement": { + "box": 30, + "row": 4, + "column": 1 + }, + "pokemon": "Beartic", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Cubchoo at level 37" + }, + { + "pokedexNumber": 615, + "boxPlacement": { + "box": 30, + "row": 4, + "column": 2 + }, + "pokemon": "Cryogonal", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Twist Mountain" + }, + { + "pokedexNumber": 616, + "boxPlacement": { + "box": 30, + "row": 4, + "column": 3 + }, + "pokemon": "Shelmet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Icirrus City, Moor of Icirrus (Spring/Summer/Autumn)" + }, + { + "pokedexNumber": 617, + "boxPlacement": { + "box": 30, + "row": 4, + "column": 4 + }, + "pokemon": "Accelgor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Shelmet when traded for a Karrablast, a Pokémon that evolves into Escavalier simultaneously. Neither evolves if at least one holds an Everstone during the trade." + }, + { + "pokedexNumber": 618, + "boxPlacement": { + "box": 30, + "row": 4, + "column": 5 + }, + "pokemon": "Stunfisk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Icirrus City, Moor of Icirrus (puddles Spring/Summer/Autumn; fishing and surfing)" + }, + { + "pokedexNumber": 618, + "boxPlacement": { + "box": 30, + "row": 4, + "column": 6 + }, + "pokemon": "Stunfisk", + "form": "Galarian", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 619, + "boxPlacement": { + "box": 30, + "row": 5, + "column": 1 + }, + "pokemon": "Mienfoo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Dragonspiral Tower, Victory Road, Route 14 (regular grass only)" + }, + { + "pokedexNumber": 620, + "boxPlacement": { + "box": 30, + "row": 5, + "column": 2 + }, + "pokemon": "Mienshao", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Mienfoo at level 50" + }, + { + "pokedexNumber": 621, + "boxPlacement": { + "box": 30, + "row": 5, + "column": 3 + }, + "pokemon": "Druddigon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Dragonspiral Tower" + }, + { + "pokedexNumber": 622, + "boxPlacement": { + "box": 30, + "row": 5, + "column": 4 + }, + "pokemon": "Golett", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Dragonspiral Tower" + }, + { + "pokedexNumber": 623, + "boxPlacement": { + "box": 30, + "row": 5, + "column": 5 + }, + "pokemon": "Golurk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Golett at level 43" + }, + { + "pokedexNumber": 624, + "boxPlacement": { + "box": 30, + "row": 5, + "column": 6 + }, + "pokemon": "Pawniard", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 9 and 11" + }, + { + "pokedexNumber": 625, + "boxPlacement": { + "box": 31, + "row": 1, + "column": 1 + }, + "pokemon": "Bisharp", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Pawniard at level 52" + }, + { + "pokedexNumber": 626, + "boxPlacement": { + "box": 31, + "row": 1, + "column": 2 + }, + "pokemon": "Bouffalant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Route 10" + }, + { + "pokedexNumber": 627, + "boxPlacement": { + "box": 31, + "row": 1, + "column": 3 + }, + "pokemon": "Rufflet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Routes 10 and 11, Victory Road, Village Bridge" + }, + { + "pokedexNumber": 628, + "boxPlacement": { + "box": 31, + "row": 1, + "column": 4 + }, + "pokemon": "Braviary", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Rufflet at level 54" + }, + { + "pokedexNumber": 628, + "boxPlacement": { + "box": 31, + "row": 1, + "column": 5 + }, + "pokemon": "Braviary", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "White2" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Rufflet at level 54" + }, + { + "pokedexNumber": 629, + "boxPlacement": { + "box": 31, + "row": 1, + "column": 6 + }, + "pokemon": "Vullaby", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Routes 10 and 11, Victory Road, Village Bridge" + }, + { + "pokedexNumber": 630, + "boxPlacement": { + "box": 31, + "row": 2, + "column": 1 + }, + "pokemon": "Mandibuzz", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Vullaby at level 54" + }, + { + "pokedexNumber": 631, + "boxPlacement": { + "box": 31, + "row": 2, + "column": 2 + }, + "pokemon": "Heatmor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Victory Road" + }, + { + "pokedexNumber": 632, + "boxPlacement": { + "box": 31, + "row": 2, + "column": 3 + }, + "pokemon": "Durant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Victory Road" + }, + { + "pokedexNumber": 633, + "boxPlacement": { + "box": 31, + "row": 2, + "column": 4 + }, + "pokemon": "Deino", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Victory Road" + }, + { + "pokedexNumber": 634, + "boxPlacement": { + "box": 31, + "row": 2, + "column": 5 + }, + "pokemon": "Zweilous", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Deino at level 50" + }, + { + "pokedexNumber": 635, + "boxPlacement": { + "box": 31, + "row": 2, + "column": 6 + }, + "pokemon": "Hydreigon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Zweilous at level 64" + }, + { + "pokedexNumber": 636, + "boxPlacement": { + "box": 31, + "row": 3, + "column": 1 + }, + "pokemon": "Larvesta", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Hatch Egg received from a Pokémon Ranger inside a building on Route 18" + }, + { + "pokedexNumber": 637, + "boxPlacement": { + "box": 31, + "row": 3, + "column": 2 + }, + "pokemon": "Volcarona", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Larvesta at level 59" + }, + { + "pokedexNumber": 638, + "boxPlacement": { + "box": 31, + "row": 3, + "column": 3 + }, + "pokemon": "Cobalion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Mistralton Cave (Guidance Chamber) (Only one)" + }, + { + "pokedexNumber": 639, + "boxPlacement": { + "box": 31, + "row": 3, + "column": 4 + }, + "pokemon": "Terrakion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Victory Road (Trial Chamber) (Only one)" + }, + { + "pokedexNumber": 640, + "boxPlacement": { + "box": 31, + "row": 3, + "column": 5 + }, + "pokemon": "Virizion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Pinwheel Forest (Rumination Field) (Only one)" + }, + { + "pokedexNumber": 641, + "boxPlacement": { + "box": 31, + "row": 3, + "column": 6 + }, + "pokemon": "Tornadus", + "form": "Incarnate Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "Dream Radar" + ], + "regionToEvolveIn": "", + "notes": "https://bulbapedia.bulbagarden.net/wiki/Roaming_Pok%C3%A9mon#Generation_V_2" + }, + { + "pokedexNumber": 641, + "boxPlacement": { + "box": 31, + "row": 4, + "column": 1 + }, + "pokemon": "Tornadus", + "form": "Therian Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Dream Radar" + ], + "regionToEvolveIn": "", + "notes": "Only available via pokemon dream radar" + }, + { + "pokedexNumber": 642, + "boxPlacement": { + "box": 31, + "row": 4, + "column": 2 + }, + "pokemon": "Thundurus", + "form": "Incarnate Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "Dream Radar" + ], + "regionToEvolveIn": "", + "notes": "https://bulbapedia.bulbagarden.net/wiki/Roaming_Pok%C3%A9mon#Generation_V_2" + }, + { + "pokedexNumber": 642, + "boxPlacement": { + "box": 31, + "row": 4, + "column": 3 + }, + "pokemon": "Thundurus", + "form": "Therian Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Dream Radar" + ], + "regionToEvolveIn": "", + "notes": "Only available via pokemon dream radar" + }, + { + "pokedexNumber": 643, + "boxPlacement": { + "box": 31, + "row": 4, + "column": 4 + }, + "pokemon": "Reshiram", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White2" + ], + "regionToEvolveIn": "", + "notes": "N's Castle (Only one)" + }, + { + "pokedexNumber": 644, + "boxPlacement": { + "box": 31, + "row": 4, + "column": 5 + }, + "pokemon": "Zekrom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "White", + "Black2" + ], + "regionToEvolveIn": "", + "notes": "N's Castle (Only one)" + }, + { + "pokedexNumber": 645, + "boxPlacement": { + "box": 31, + "row": 4, + "column": 6 + }, + "pokemon": "Landorus", + "form": "Incarnate Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Dream Radar" + ], + "regionToEvolveIn": "", + "notes": "Abundant Shrine (requires Tornadus and Thundurus in party) (Only one) (Incarnate Forme)" + }, + { + "pokedexNumber": 645, + "boxPlacement": { + "box": 31, + "row": 5, + "column": 1 + }, + "pokemon": "Landorus", + "form": "Therian Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Dream Radar" + ], + "regionToEvolveIn": "", + "notes": "Only available via pokemon dream radar" + }, + { + "pokedexNumber": 646, + "boxPlacement": { + "box": 31, + "row": 5, + "column": 2 + }, + "pokemon": "Kyurem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "Giant Chasm (Only one)" + }, + { + "pokedexNumber": 647, + "boxPlacement": { + "box": 31, + "row": 5, + "column": 3 + }, + "pokemon": "Keldeo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "DNS Exploit (https://pkmnclassic.net/)" + }, + { + "pokedexNumber": 647, + "boxPlacement": { + "box": 31, + "row": 5, + "column": 4 + }, + "pokemon": "Keldeo", + "form": "Resolute Form", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "DNS Exploit" + }, + { + "pokedexNumber": 648, + "boxPlacement": { + "box": 31, + "row": 5, + "column": 5 + }, + "pokemon": "Meloetta", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "DNS Exploit" + }, + { + "pokedexNumber": 649, + "boxPlacement": { + "box": 31, + "row": 5, + "column": 6 + }, + "pokemon": "Genesect", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black2", + "White2" + ], + "regionToEvolveIn": "", + "notes": "DNS Exploit" + }, + { + "pokedexNumber": 650, + "boxPlacement": { + "box": 32, + "row": 1, + "column": 1 + }, + "pokemon": "Chespin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 651, + "boxPlacement": { + "box": 32, + "row": 1, + "column": 2 + }, + "pokemon": "Quilladin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 652, + "boxPlacement": { + "box": 32, + "row": 1, + "column": 3 + }, + "pokemon": "Chesnaught", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 653, + "boxPlacement": { + "box": 32, + "row": 1, + "column": 4 + }, + "pokemon": "Fennekin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 654, + "boxPlacement": { + "box": 32, + "row": 1, + "column": 5 + }, + "pokemon": "Braixen", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 655, + "boxPlacement": { + "box": 32, + "row": 1, + "column": 6 + }, + "pokemon": "Delphox", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 656, + "boxPlacement": { + "box": 32, + "row": 2, + "column": 1 + }, + "pokemon": "Froakie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 657, + "boxPlacement": { + "box": 32, + "row": 2, + "column": 2 + }, + "pokemon": "Frogadier", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 658, + "boxPlacement": { + "box": 32, + "row": 2, + "column": 3 + }, + "pokemon": "Greninja", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 658, + "boxPlacement": { + "box": 32, + "row": 2, + "column": 4 + }, + "pokemon": "Greninja", + "form": "Battle Bond Ability", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon Demo" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 659, + "boxPlacement": { + "box": 32, + "row": 2, + "column": 5 + }, + "pokemon": "Bunnelby", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 2 - Grass Route 3 - Grass Route 5 - Grass Route 5 - Purple Flowers Route 22 - Grass" + }, + { + "pokedexNumber": 660, + "boxPlacement": { + "box": 32, + "row": 2, + "column": 6 + }, + "pokemon": "Diggersby", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 22 - Yellow Flowers Friend Safari " + }, + { + "pokedexNumber": 661, + "boxPlacement": { + "box": 32, + "row": 3, + "column": 1 + }, + "pokemon": "Fletchling", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 2 - Grass Route 3 - Grass Santalune Forest - Grass " + }, + { + "pokedexNumber": 662, + "boxPlacement": { + "box": 32, + "row": 3, + "column": 2 + }, + "pokemon": "Fletchinder", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 663, + "boxPlacement": { + "box": 32, + "row": 3, + "column": 3 + }, + "pokemon": "Talonflame", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 664, + "boxPlacement": { + "box": 32, + "row": 3, + "column": 4 + }, + "pokemon": "Scatterbug", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 2 - Grass Santalune Forest - Grass" + }, + { + "pokedexNumber": 665, + "boxPlacement": { + "box": 32, + "row": 3, + "column": 5 + }, + "pokemon": "Spewpa", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 3, + "column": 6 + }, + "pokemon": "Vivillon", + "form": "Icy Snow (Canada-Northwest Territories)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Link to full list of Vivillon regions for XY/USUM (Friend Safari)" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 4, + "column": 1 + }, + "pokemon": "Vivillon", + "form": "Polar (Canada-Alberta)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Note: Listed locations are not exclusive and had preference for locations compatible with US 3Ds systems. Check full list for other world 3DS sytems." + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 4, + "column": 2 + }, + "pokemon": "Vivillon", + "form": "Tundra (Japan-Aomori)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "If priority is having same OT, use GO postcards in S/V to obtain unobtaiable forms" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 4, + "column": 3 + }, + "pokemon": "Vivillon", + "form": "Continental (Argentina-Chubut)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 4, + "column": 4 + }, + "pokemon": "Vivillon", + "form": "Garden (UK-England) [Not US compatible]", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 4, + "column": 5 + }, + "pokemon": "Vivillon", + "form": "Elegant (Japan) [Not US compatible]", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 4, + "column": 6 + }, + "pokemon": "Vivillon", + "form": "Meadow (France-Alsace) [Not US compatible]", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 5, + "column": 1 + }, + "pokemon": "Vivillon", + "form": "Modern (Canada-Manitoba)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 5, + "column": 2 + }, + "pokemon": "Vivillon", + "form": "Marine (Chile-Antofagasta)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 5, + "column": 3 + }, + "pokemon": "Vivillon", + "form": "Archipelago (Mexico-Yucatan)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 5, + "column": 4 + }, + "pokemon": "Vivillon", + "form": "High Plains (Canada-British Columbia)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 5, + "column": 5 + }, + "pokemon": "Vivillon", + "form": "Sandstorm (Saudi Arabia-Al Bahah)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 32, + "row": 5, + "column": 6 + }, + "pokemon": "Vivillon", + "form": "River (Australia-Capital Territory) [Not US compatible]", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 1, + "column": 1 + }, + "pokemon": "Vivillon", + "form": "Monsoon (Japan-Okinawa)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 1, + "column": 2 + }, + "pokemon": "Vivillon", + "form": "Savanna (Argentina-Buenos Aires)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 1, + "column": 3 + }, + "pokemon": "Vivillon", + "form": "Sun (Belize-Belize)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 1, + "column": 4 + }, + "pokemon": "Vivillon", + "form": "Ocean (US-Hawai'i)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 1, + "column": 5 + }, + "pokemon": "Vivillon", + "form": "Jungle (Brazil-Acre)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 1, + "column": 6 + }, + "pokemon": "Vivillon", + "form": "Fancy (Event)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y", + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "Event (X/Y)" + }, + { + "pokedexNumber": 666, + "boxPlacement": { + "box": 33, + "row": 2, + "column": 1 + }, + "pokemon": "Vivillon", + "form": "Pokeball (Event)", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Event" + }, + { + "pokedexNumber": 667, + "boxPlacement": { + "box": 33, + "row": 2, + "column": 2 + }, + "pokemon": "Litleo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 22 - Grass Route 22 - Yellow Flowers" + }, + { + "pokedexNumber": 668, + "boxPlacement": { + "box": 33, + "row": 2, + "column": 3 + }, + "pokemon": "Pyroar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 668, + "boxPlacement": { + "box": 33, + "row": 2, + "column": 4 + }, + "pokemon": "Pyroar", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 669, + "boxPlacement": { + "box": 33, + "row": 2, + "column": 5 + }, + "pokemon": "Flabébé", + "form": "Red", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 4 - Red Flowers Route 4 - Red Flowers Route 4 - Red Flowers Route 4 - Yellow Flowers Route 4 - Yellow Flowers Route 4 - Yellow Flowers Route 7 - Grass Route 7 - Grass Route 7 - Purple Flowers Route 7 - Purple Flowers Route 7 - Purple Flowers Route 7 - Yellow Flowers Route 7 - Yellow Flowers Route 7 - Yellow Flowers" + }, + { + "pokedexNumber": 669, + "boxPlacement": { + "box": 33, + "row": 2, + "column": 6 + }, + "pokemon": "Flabébé", + "form": "Yellow", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 669, + "boxPlacement": { + "box": 33, + "row": 3, + "column": 1 + }, + "pokemon": "Flabébé", + "form": "Orange", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 669, + "boxPlacement": { + "box": 33, + "row": 3, + "column": 2 + }, + "pokemon": "Flabébé", + "form": "Blue", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 669, + "boxPlacement": { + "box": 33, + "row": 3, + "column": 3 + }, + "pokemon": "Flabébé", + "form": "White", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 670, + "boxPlacement": { + "box": 33, + "row": 3, + "column": 4 + }, + "pokemon": "Floette", + "form": "Red", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 670, + "boxPlacement": { + "box": 33, + "row": 3, + "column": 5 + }, + "pokemon": "Floette", + "form": "Yellow", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 670, + "boxPlacement": { + "box": 33, + "row": 3, + "column": 6 + }, + "pokemon": "Floette", + "form": "Orange", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 670, + "boxPlacement": { + "box": 33, + "row": 4, + "column": 1 + }, + "pokemon": "Floette", + "form": "Blue", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 670, + "boxPlacement": { + "box": 33, + "row": 4, + "column": 2 + }, + "pokemon": "Floette", + "form": "White", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 671, + "boxPlacement": { + "box": 33, + "row": 4, + "column": 3 + }, + "pokemon": "Florges", + "form": "Red", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 671, + "boxPlacement": { + "box": 33, + "row": 4, + "column": 4 + }, + "pokemon": "Florges", + "form": "Yellow", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 671, + "boxPlacement": { + "box": 33, + "row": 4, + "column": 5 + }, + "pokemon": "Florges", + "form": "Orange", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 671, + "boxPlacement": { + "box": 33, + "row": 4, + "column": 6 + }, + "pokemon": "Florges", + "form": "Blue", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 671, + "boxPlacement": { + "box": 33, + "row": 5, + "column": 1 + }, + "pokemon": "Florges", + "form": "White", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 672, + "boxPlacement": { + "box": 33, + "row": 5, + "column": 2 + }, + "pokemon": "Skiddo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 5 - Grass Route 5 - Purple Flowers" + }, + { + "pokedexNumber": 673, + "boxPlacement": { + "box": 33, + "row": 5, + "column": 3 + }, + "pokemon": "Gogoat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 674, + "boxPlacement": { + "box": 33, + "row": 5, + "column": 4 + }, + "pokemon": "Pancham", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 5 - Grass Route 5 - Purple Flowers Friend Safari " + }, + { + "pokedexNumber": 675, + "boxPlacement": { + "box": 33, + "row": 5, + "column": 5 + }, + "pokemon": "Pangoro", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 33, + "row": 5, + "column": 6 + }, + "pokemon": "Furfrou", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 5 - Grass Route 5 - Purple Flowers " + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 1, + "column": 1 + }, + "pokemon": "Furfrou", + "form": "Heart", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 1, + "column": 2 + }, + "pokemon": "Furfrou", + "form": "Star", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 1, + "column": 3 + }, + "pokemon": "Furfrou", + "form": "Diamond", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 1, + "column": 4 + }, + "pokemon": "Furfrou", + "form": "Debutante", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 1, + "column": 5 + }, + "pokemon": "Furfrou", + "form": "Matron", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 1, + "column": 6 + }, + "pokemon": "Furfrou", + "form": "Dandy", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 2, + "column": 1 + }, + "pokemon": "Furfrou", + "form": "La Reine", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 2, + "column": 2 + }, + "pokemon": "Furfrou", + "form": "Kabuki", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 676, + "boxPlacement": { + "box": 34, + "row": 2, + "column": 3 + }, + "pokemon": "Furfrou", + "form": "Pharaoh", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 677, + "boxPlacement": { + "box": 34, + "row": 2, + "column": 4 + }, + "pokemon": "Espurr", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 6 - Tall Grass Friend Safari " + }, + { + "pokedexNumber": 678, + "boxPlacement": { + "box": 34, + "row": 2, + "column": 5 + }, + "pokemon": "Meowstic", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Evolve from male Espurr, Route 6 - Tall Grass" + }, + { + "pokedexNumber": 678, + "boxPlacement": { + "box": 34, + "row": 2, + "column": 6 + }, + "pokemon": "Meowstic", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 679, + "boxPlacement": { + "box": 34, + "row": 3, + "column": 1 + }, + "pokemon": "Honedge", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 6 - Tall Grass " + }, + { + "pokedexNumber": 680, + "boxPlacement": { + "box": 34, + "row": 3, + "column": 2 + }, + "pokemon": "Doublade", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 681, + "boxPlacement": { + "box": 34, + "row": 3, + "column": 3 + }, + "pokemon": "Aegislash", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 682, + "boxPlacement": { + "box": 34, + "row": 3, + "column": 4 + }, + "pokemon": "Spritzee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 7 - Grass Route 7 - Purple Flowers Route 7 - Yellow Flowers Friend Safari " + }, + { + "pokedexNumber": 683, + "boxPlacement": { + "box": 34, + "row": 3, + "column": 5 + }, + "pokemon": "Aromatisse", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "Y" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Spritzee" + }, + { + "pokedexNumber": 684, + "boxPlacement": { + "box": 34, + "row": 3, + "column": 6 + }, + "pokemon": "Swirlix", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X" + ], + "regionToEvolveIn": "", + "notes": "Route 7 - Grass Route 7 - Purple Flowers Route 7 - Yellow Flowers Friend Safari " + }, + { + "pokedexNumber": 685, + "boxPlacement": { + "box": 34, + "row": 4, + "column": 1 + }, + "pokemon": "Slurpuff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 686, + "boxPlacement": { + "box": 34, + "row": 4, + "column": 2 + }, + "pokemon": "Inkay", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 8 - Grass Route 8 - Yellow Flowers Azure Bay - Grass Friend Safari " + }, + { + "pokedexNumber": 687, + "boxPlacement": { + "box": 34, + "row": 4, + "column": 3 + }, + "pokemon": "Malamar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 688, + "boxPlacement": { + "box": 34, + "row": 4, + "column": 4 + }, + "pokemon": "Binacle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 8 - Rock Smash Route 12 - Rock Smash Ambrette Town - Rock Smash Azure Bay - Rock Smash " + }, + { + "pokedexNumber": 689, + "boxPlacement": { + "box": 34, + "row": 4, + "column": 5 + }, + "pokemon": "Barbaracle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 690, + "boxPlacement": { + "box": 34, + "row": 4, + "column": 6 + }, + "pokemon": "Skrelp", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 8 - Good Rod Cyllage City - Good Rod Ambrette Town - Good Rod" + }, + { + "pokedexNumber": 691, + "boxPlacement": { + "box": 34, + "row": 5, + "column": 1 + }, + "pokemon": "Dragalge", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "Y" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Skrelp" + }, + { + "pokedexNumber": 692, + "boxPlacement": { + "box": 34, + "row": 5, + "column": 2 + }, + "pokemon": "Clauncher", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X" + ], + "regionToEvolveIn": "", + "notes": "Route 8 - Good Rod Cyllage City - Good Rod Ambrette Town - Good Rod" + }, + { + "pokedexNumber": 693, + "boxPlacement": { + "box": 34, + "row": 5, + "column": 3 + }, + "pokemon": "Clawitzer", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 694, + "boxPlacement": { + "box": 34, + "row": 5, + "column": 4 + }, + "pokemon": "Helioptile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 9 - Grass Friend Safari " + }, + { + "pokedexNumber": 695, + "boxPlacement": { + "box": 34, + "row": 5, + "column": 5 + }, + "pokemon": "Heliolisk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 696, + "boxPlacement": { + "box": 34, + "row": 5, + "column": 6 + }, + "pokemon": "Tyrunt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Glimmering cave right before 2nd gym. Ambrette Town Fossil Lab (Jaw fossil)" + }, + { + "pokedexNumber": 697, + "boxPlacement": { + "box": 35, + "row": 1, + "column": 1 + }, + "pokemon": "Tyrantrum", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 698, + "boxPlacement": { + "box": 35, + "row": 1, + "column": 2 + }, + "pokemon": "Amaura", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Glimmering cave right before 2nd gym. Ambrette Town Fossil Lab (Sail fossil)" + }, + { + "pokedexNumber": 699, + "boxPlacement": { + "box": 35, + "row": 1, + "column": 3 + }, + "pokemon": "Aurorus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 700, + "boxPlacement": { + "box": 35, + "row": 1, + "column": 4 + }, + "pokemon": "Sylveon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Blue", + "Yellow", + "LG: Pikachu", + "LG: Eevee" + ], + "regionToEvolveIn": "Kalos", + "notes": "evolves from Eevee when leveled up while knowing a Fairy-type move and having high friendship. Prior to Generation VIII, it evolves from Eevee when leveled up while knowing a Fairy-type move and having at least two levels of affection. Eevee will evolve into Sylveon even if the evolutionary conditions for it to evolve into Espeon or Umbreon have also been met. Eevee will never evolve into Sylveon while near a Moss Rock or Ice Rock." + }, + { + "pokedexNumber": 701, + "boxPlacement": { + "box": 35, + "row": 1, + "column": 5 + }, + "pokemon": "Hawlucha", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 10 - Grass Route 10 - Yellow Flowers Friend Safari " + }, + { + "pokedexNumber": 702, + "boxPlacement": { + "box": 35, + "row": 1, + "column": 6 + }, + "pokemon": "Dedenne", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 11 - Grass Friend Safari " + }, + { + "pokedexNumber": 703, + "boxPlacement": { + "box": 35, + "row": 2, + "column": 1 + }, + "pokemon": "Carbink", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Reflection Cave - 1F - Grass Reflection Cave - 1F - Horde Reflection Cave - B1F - Grass Reflection Cave - B1F - Horde Reflection Cave - B2F - Grass Reflection Cave - B2F - Horde Reflection Cave - B3F - Grass Reflection Cave - B3F - Horde" + }, + { + "pokedexNumber": 704, + "boxPlacement": { + "box": 35, + "row": 2, + "column": 2 + }, + "pokemon": "Goomy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 14 - Grass Route 14 - Water Route 14 - Surf" + }, + { + "pokedexNumber": 705, + "boxPlacement": { + "box": 35, + "row": 2, + "column": 3 + }, + "pokemon": "Sliggoo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 19 - Purple Flowers Route 19 - Water Route 19 - Surf Route 19 - Yellow Flowers Friend Safari " + }, + { + "pokedexNumber": 705, + "boxPlacement": { + "box": 35, + "row": 2, + "column": 4 + }, + "pokemon": "Sliggoo", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Goomy at level 40" + }, + { + "pokedexNumber": 706, + "boxPlacement": { + "box": 35, + "row": 2, + "column": 5 + }, + "pokemon": "Goodra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 706, + "boxPlacement": { + "box": 35, + "row": 2, + "column": 6 + }, + "pokemon": "Goodra", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Sliggoo at level 50 during rain or fog in the overworld" + }, + { + "pokedexNumber": 707, + "boxPlacement": { + "box": 35, + "row": 3, + "column": 1 + }, + "pokemon": "Klefki", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 15 - Grass Route 15 - Horde Route 15 - Red Flowers Route 16 - Horde Route 16 - Tall Grass Route 16 - Yellow Flowers Lost Hotel - Grass Friend Safari " + }, + { + "pokedexNumber": 708, + "boxPlacement": { + "box": 35, + "row": 3, + "column": 2 + }, + "pokemon": "Phantump", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 16 - Tall Grass Route 16 - Yellow Flowers Friend Safari " + }, + { + "pokedexNumber": 709, + "boxPlacement": { + "box": 35, + "row": 3, + "column": 3 + }, + "pokemon": "Trevenant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 20 - Grass Route 20 - Horde Route 20 - Red Flowers" + }, + { + "pokedexNumber": 710, + "boxPlacement": { + "box": 35, + "row": 3, + "column": 4 + }, + "pokemon": "Pumpkaboo", + "form": "Small", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Route 16 - Tall Grass Route 16 - Tall Grass Route 16 - Tall Grass Route 16 - Tall Grass Friend Safari " + }, + { + "pokedexNumber": 710, + "boxPlacement": { + "box": 35, + "row": 3, + "column": 5 + }, + "pokemon": "Pumpkaboo", + "form": "Medium", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 710, + "boxPlacement": { + "box": 35, + "row": 3, + "column": 6 + }, + "pokemon": "Pumpkaboo", + "form": "Large", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 710, + "boxPlacement": { + "box": 35, + "row": 4, + "column": 1 + }, + "pokemon": "Pumpkaboo", + "form": "Super", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 711, + "boxPlacement": { + "box": 35, + "row": 4, + "column": 2 + }, + "pokemon": "Gourgeist", + "form": "Small", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 711, + "boxPlacement": { + "box": 35, + "row": 4, + "column": 3 + }, + "pokemon": "Gourgeist", + "form": "Medium", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 711, + "boxPlacement": { + "box": 35, + "row": 4, + "column": 4 + }, + "pokemon": "Gourgeist", + "form": "Large", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 711, + "boxPlacement": { + "box": 35, + "row": 4, + "column": 5 + }, + "pokemon": "Gourgeist", + "form": "Super", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 712, + "boxPlacement": { + "box": 35, + "row": 4, + "column": 6 + }, + "pokemon": "Bergmite", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Frost Cavern - 1F - Grass Frost Cavern - 2F - Grass Frost Cavern - 3F - Grass Friend Safari " + }, + { + "pokedexNumber": 713, + "boxPlacement": { + "box": 35, + "row": 5, + "column": 1 + }, + "pokemon": "Avalugg", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 713, + "boxPlacement": { + "box": 35, + "row": 5, + "column": 2 + }, + "pokemon": "Avalugg", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "Hisui", + "notes": "" + }, + { + "pokedexNumber": 714, + "boxPlacement": { + "box": 35, + "row": 5, + "column": 3 + }, + "pokemon": "Noibat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Terminus Cave - 1F - Special Terminus Cave - B1F - Special Terminus Cave - B2F - Special Terminus Cave - B3F - Special Terminus Cave - 2F Left - Special Terminus Cave - 2F Right - Special Friend Safari " + }, + { + "pokedexNumber": 715, + "boxPlacement": { + "box": 35, + "row": 5, + "column": 4 + }, + "pokemon": "Noivern", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 716, + "boxPlacement": { + "box": 35, + "row": 5, + "column": 5 + }, + "pokemon": "Xerneas", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X" + ], + "regionToEvolveIn": "", + "notes": "Team Flare Secret HQ - Basement - Interact" + }, + { + "pokedexNumber": 717, + "boxPlacement": { + "box": 35, + "row": 5, + "column": 6 + }, + "pokemon": "Yveltal", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "Y" + ], + "regionToEvolveIn": "", + "notes": "Team Flare Secret HQ - Basement - Interact " + }, + { + "pokedexNumber": 718, + "boxPlacement": { + "box": 36, + "row": 1, + "column": 1 + }, + "pokemon": "Zygarde", + "form": "10%", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 718, + "boxPlacement": { + "box": 36, + "row": 1, + "column": 2 + }, + "pokemon": "Zygarde", + "form": "10% Power Construct", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 719, + "boxPlacement": { + "box": 36, + "row": 1, + "column": 3 + }, + "pokemon": "Zygarde", + "form": "50%", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Terminus Cave - B3F - Interact " + }, + { + "pokedexNumber": 720, + "boxPlacement": { + "box": 36, + "row": 1, + "column": 4 + }, + "pokemon": "Zygarde", + "form": "50% Power Construct", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 720, + "boxPlacement": { + "box": 36, + "row": 1, + "column": 5 + }, + "pokemon": "Diancie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 721, + "boxPlacement": { + "box": 36, + "row": 1, + "column": 6 + }, + "pokemon": "Hoopa", + "form": "Confined", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 722, + "boxPlacement": { + "box": 37, + "row": 1, + "column": 1 + }, + "pokemon": "Hoopa", + "form": "Unbound", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves), convert form in USUM, then transfer to bank" + }, + { + "pokedexNumber": 723, + "boxPlacement": { + "box": 37, + "row": 1, + "column": 2 + }, + "pokemon": "Volcanion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kalos", + "gamesToCatchIn": [ + "X", + "Y" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 724, + "boxPlacement": { + "box": 37, + "row": 1, + "column": 3 + }, + "pokemon": "Rowlet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 724, + "boxPlacement": { + "box": 37, + "row": 1, + "column": 4 + }, + "pokemon": "Dartrix", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 725, + "boxPlacement": { + "box": 37, + "row": 1, + "column": 5 + }, + "pokemon": "Decidueye", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 726, + "boxPlacement": { + "box": 37, + "row": 1, + "column": 6 + }, + "pokemon": "Decidueye", + "form": "Hisuian", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Dartrix at level 36" + }, + { + "pokedexNumber": 727, + "boxPlacement": { + "box": 37, + "row": 2, + "column": 1 + }, + "pokemon": "Litten", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 728, + "boxPlacement": { + "box": 37, + "row": 2, + "column": 2 + }, + "pokemon": "Torracat", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 729, + "boxPlacement": { + "box": 37, + "row": 2, + "column": 3 + }, + "pokemon": "Incineroar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 730, + "boxPlacement": { + "box": 37, + "row": 2, + "column": 4 + }, + "pokemon": "Popplio", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 731, + "boxPlacement": { + "box": 37, + "row": 2, + "column": 5 + }, + "pokemon": "Brionne", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 732, + "boxPlacement": { + "box": 37, + "row": 2, + "column": 6 + }, + "pokemon": "Primarina", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 733, + "boxPlacement": { + "box": 37, + "row": 3, + "column": 1 + }, + "pokemon": "Pikipek", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 734, + "boxPlacement": { + "box": 37, + "row": 3, + "column": 2 + }, + "pokemon": "Trumbeak", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 5, Route 8, Lush Jungle, Route 11, Poni Grove, Poni Plains Evolves at level 28." + }, + { + "pokedexNumber": 735, + "boxPlacement": { + "box": 37, + "row": 3, + "column": 3 + }, + "pokemon": "Toucannon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 11, Poni Grove, Poni Plains SOS only. Has the unique move Beak Blast." + }, + { + "pokedexNumber": 736, + "boxPlacement": { + "box": 37, + "row": 3, + "column": 4 + }, + "pokemon": "Yungoos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 737, + "boxPlacement": { + "box": 37, + "row": 3, + "column": 5 + }, + "pokemon": "Gumshoos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Memorial Hill, Akala Outskirts, Route 10, Tapu Village, Route 14, Route 15, Route 16, Route 17, Mount Lanakila, Poni Plains" + }, + { + "pokedexNumber": 738, + "boxPlacement": { + "box": 37, + "row": 3, + "column": 6 + }, + "pokemon": "Grubbin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 739, + "boxPlacement": { + "box": 37, + "row": 4, + "column": 1 + }, + "pokemon": "Charjabug", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 740, + "boxPlacement": { + "box": 37, + "row": 4, + "column": 2 + }, + "pokemon": "Vikavolt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Level up charjabug at electric rock" + }, + { + "pokedexNumber": 741, + "boxPlacement": { + "box": 37, + "row": 4, + "column": 3 + }, + "pokemon": "Crabrawler", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 741, + "boxPlacement": { + "box": 37, + "row": 4, + "column": 4 + }, + "pokemon": "Crabominable", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Crabrawler: Route 3, Kala’e Bay, Route 2, Berry Fields, Route 4, Route 5, Route 8, Route 10, Ula’ula Beach, Route 15, Route 16, Route 17, Poni Wilds, Poni Plains Evolves via level-up at the top of Mount Lanakila." + }, + { + "pokedexNumber": 741, + "boxPlacement": { + "box": 37, + "row": 4, + "column": 5 + }, + "pokemon": "Oricorio", + "form": "Baile (Red)", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Melemele Meadow, Route 6, Ula’ula Meadow, Poni Meadow" + }, + { + "pokedexNumber": 741, + "boxPlacement": { + "box": 37, + "row": 4, + "column": 6 + }, + "pokemon": "Oricorio", + "form": "Pom-pom (yellow)", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 742, + "boxPlacement": { + "box": 37, + "row": 5, + "column": 1 + }, + "pokemon": "Oricorio", + "form": "Pa'u (pink)", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Melemele Meadow, Route 6, Ula’ula Meadow, Poni Meadow" + }, + { + "pokedexNumber": 743, + "boxPlacement": { + "box": 37, + "row": 5, + "column": 2 + }, + "pokemon": "Oricorio", + "form": "Sensu (purple)", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Melemele Meadow, Route 6, Ula’ula Meadow, Poni Meadow" + }, + { + "pokedexNumber": 744, + "boxPlacement": { + "box": 37, + "row": 5, + "column": 3 + }, + "pokemon": "Cutiefly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 744, + "boxPlacement": { + "box": 37, + "row": 5, + "column": 4 + }, + "pokemon": "Ribombee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Ula’ula Meadow, Poni Meadow or evolves from Cutiefly at level 25" + }, + { + "pokedexNumber": 745, + "boxPlacement": { + "box": 37, + "row": 5, + "column": 5 + }, + "pokemon": "Rockruff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 745, + "boxPlacement": { + "box": 37, + "row": 5, + "column": 6 + }, + "pokemon": "Rockruff", + "form": "Own Tempo", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Event (powersaves)" + }, + { + "pokedexNumber": 745, + "boxPlacement": { + "box": 38, + "row": 1, + "column": 1 + }, + "pokemon": "Lycanroc", + "form": "Midday", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Vast Poni Canyon" + }, + { + "pokedexNumber": 746, + "boxPlacement": { + "box": 38, + "row": 1, + "column": 2 + }, + "pokemon": "Lycanroc", + "form": "Midnight", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 747, + "boxPlacement": { + "box": 38, + "row": 1, + "column": 3 + }, + "pokemon": "Lycanroc", + "form": "Dusk", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Vast Poni Canyon" + }, + { + "pokedexNumber": 748, + "boxPlacement": { + "box": 38, + "row": 1, + "column": 4 + }, + "pokemon": "Wishiwashi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 749, + "boxPlacement": { + "box": 38, + "row": 1, + "column": 5 + }, + "pokemon": "Mareanie", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 1 (Hau’oli Outskirts), Route 1, Melemele Sea, Melemele Sea, Hau’oli City (Beachfront), Route 9 SOS only. Evolves at level 38." + }, + { + "pokedexNumber": 750, + "boxPlacement": { + "box": 38, + "row": 1, + "column": 6 + }, + "pokemon": "Toxapex", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Mareanie at level 38" + }, + { + "pokedexNumber": 751, + "boxPlacement": { + "box": 38, + "row": 2, + "column": 1 + }, + "pokemon": "Mudbray", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 4, Route 6, Paniola Ranch, Route 12, Blush Mountain Evolves at level 30." + }, + { + "pokedexNumber": 752, + "boxPlacement": { + "box": 38, + "row": 2, + "column": 2 + }, + "pokemon": "Mudsdale", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 12, Blush Mountain, Poni Plains" + }, + { + "pokedexNumber": 753, + "boxPlacement": { + "box": 38, + "row": 2, + "column": 3 + }, + "pokemon": "Dewpider", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Brooklet Hill (day) Evolves at level 22." + }, + { + "pokedexNumber": 754, + "boxPlacement": { + "box": 38, + "row": 2, + "column": 4 + }, + "pokemon": "Araquanid", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Malie Garden" + }, + { + "pokedexNumber": 755, + "boxPlacement": { + "box": 38, + "row": 2, + "column": 5 + }, + "pokemon": "Fomantis", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 756, + "boxPlacement": { + "box": 38, + "row": 2, + "column": 6 + }, + "pokemon": "Lurantis", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Fomantis: Route 5, Lush Jungle Evolves at level 34 during the day." + }, + { + "pokedexNumber": 757, + "boxPlacement": { + "box": 38, + "row": 3, + "column": 1 + }, + "pokemon": "Morelull", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Brooklet Hill (night - Sun 18:00-06:00, Moon 06:00-18:00) Lush Jungle Evolves at level 24." + }, + { + "pokedexNumber": 758, + "boxPlacement": { + "box": 38, + "row": 3, + "column": 2 + }, + "pokemon": "Shiinotic", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 11 (night - Sun 18:00-06:00, Moon 06:00-18:00) " + }, + { + "pokedexNumber": 759, + "boxPlacement": { + "box": 38, + "row": 3, + "column": 3 + }, + "pokemon": "Salandit", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Wela Volcano Park, Lush Jungle Evolves at level 33 only if female. 12.5% of Salandit are female." + }, + { + "pokedexNumber": 760, + "boxPlacement": { + "box": 38, + "row": 3, + "column": 4 + }, + "pokemon": "Salazzle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 761, + "boxPlacement": { + "box": 38, + "row": 3, + "column": 5 + }, + "pokemon": "Stufful", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Memorial Hill, Akala Outskirts Evolves at level 27. " + }, + { + "pokedexNumber": 762, + "boxPlacement": { + "box": 38, + "row": 3, + "column": 6 + }, + "pokemon": "Bewear", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Poni Gauntlet" + }, + { + "pokedexNumber": 763, + "boxPlacement": { + "box": 38, + "row": 4, + "column": 1 + }, + "pokemon": "Bounsweet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 764, + "boxPlacement": { + "box": 38, + "row": 4, + "column": 2 + }, + "pokemon": "Steenee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Lush Jungle Evolves via level-up knowing Stomp." + }, + { + "pokedexNumber": 765, + "boxPlacement": { + "box": 38, + "row": 4, + "column": 3 + }, + "pokemon": "Tsareena", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Tsareena" + }, + { + "pokedexNumber": 766, + "boxPlacement": { + "box": 38, + "row": 4, + "column": 4 + }, + "pokemon": "Comfey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Lush Jungle" + }, + { + "pokedexNumber": 767, + "boxPlacement": { + "box": 38, + "row": 4, + "column": 5 + }, + "pokemon": "Oranguru", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Lush Jungle" + }, + { + "pokedexNumber": 768, + "boxPlacement": { + "box": 38, + "row": 4, + "column": 6 + }, + "pokemon": "Passimian", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Lush Jungle" + }, + { + "pokedexNumber": 769, + "boxPlacement": { + "box": 38, + "row": 5, + "column": 1 + }, + "pokemon": "Wimpod", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 8, Dividing Peak Tunnel, Ancient Poni Path, Poni Breaker Coast Evolves at level 30. " + }, + { + "pokedexNumber": 770, + "boxPlacement": { + "box": 38, + "row": 5, + "column": 2 + }, + "pokemon": "Golisopod", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Wimpod" + }, + { + "pokedexNumber": 771, + "boxPlacement": { + "box": 38, + "row": 5, + "column": 3 + }, + "pokemon": "Sandygast", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Hano Grand Resort, Hano Beach Evolves at level 42. " + }, + { + "pokedexNumber": 772, + "boxPlacement": { + "box": 38, + "row": 5, + "column": 4 + }, + "pokemon": "Palossand", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Sandygast" + }, + { + "pokedexNumber": 773, + "boxPlacement": { + "box": 38, + "row": 5, + "column": 5 + }, + "pokemon": "Pyukumuku", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 38, + "row": 5, + "column": 6 + }, + "pokemon": "Type: Null", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Aether House or Ancient Poni Path (Gift; post-game) Evolves by level-up with high happiness." + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 39, + "row": 1, + "column": 1 + }, + "pokemon": "Silvally", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Type: Null" + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 39, + "row": 1, + "column": 2 + }, + "pokemon": "Minior", + "form": "Red", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Hokulani" + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 39, + "row": 1, + "column": 3 + }, + "pokemon": "Minior", + "form": "Orange", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Hokulani" + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 39, + "row": 1, + "column": 4 + }, + "pokemon": "Minior", + "form": "Yellow", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Hokulani" + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 39, + "row": 1, + "column": 5 + }, + "pokemon": "Minior", + "form": "Green", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Hokulani" + }, + { + "pokedexNumber": 774, + "boxPlacement": { + "box": 39, + "row": 1, + "column": 6 + }, + "pokemon": "Minior", + "form": "Blue", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Hokulani" + }, + { + "pokedexNumber": 775, + "boxPlacement": { + "box": 39, + "row": 2, + "column": 1 + }, + "pokemon": "Minior", + "form": "Indigo", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Hokulani" + }, + { + "pokedexNumber": 776, + "boxPlacement": { + "box": 39, + "row": 2, + "column": 2 + }, + "pokemon": "Minior", + "form": "Violet", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 777, + "boxPlacement": { + "box": 39, + "row": 2, + "column": 3 + }, + "pokemon": "Komala", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 11" + }, + { + "pokedexNumber": 778, + "boxPlacement": { + "box": 39, + "row": 2, + "column": 4 + }, + "pokemon": "Turtonator", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Blush Mountain" + }, + { + "pokedexNumber": 779, + "boxPlacement": { + "box": 39, + "row": 2, + "column": 5 + }, + "pokemon": "Togedemaru", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Blush Mountain" + }, + { + "pokedexNumber": 780, + "boxPlacement": { + "box": 39, + "row": 2, + "column": 6 + }, + "pokemon": "Mimikyu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Thrifty Megamart (Abandoned Site)" + }, + { + "pokedexNumber": 781, + "boxPlacement": { + "box": 39, + "row": 3, + "column": 1 + }, + "pokemon": "Bruxish", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Route 13, Tapu Village, Route 14, Route 15, Route 16" + }, + { + "pokedexNumber": 782, + "boxPlacement": { + "box": 39, + "row": 3, + "column": 2 + }, + "pokemon": "Drampa", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Lanakila" + }, + { + "pokedexNumber": 783, + "boxPlacement": { + "box": 39, + "row": 3, + "column": 3 + }, + "pokemon": "Dhelmise", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Seafolk Village" + }, + { + "pokedexNumber": 784, + "boxPlacement": { + "box": 39, + "row": 3, + "column": 4 + }, + "pokemon": "Jangmo-o", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Vast Poni Canyon Evolves at level 35." + }, + { + "pokedexNumber": 785, + "boxPlacement": { + "box": 39, + "row": 3, + "column": 5 + }, + "pokemon": "Hakamo-o", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Jangmo-o at level 35" + }, + { + "pokedexNumber": 786, + "boxPlacement": { + "box": 39, + "row": 3, + "column": 6 + }, + "pokemon": "Kommo-o", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Hakamo-o at level 45" + }, + { + "pokedexNumber": 787, + "boxPlacement": { + "box": 39, + "row": 4, + "column": 1 + }, + "pokemon": "Tapu Koko", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 788, + "boxPlacement": { + "box": 39, + "row": 4, + "column": 2 + }, + "pokemon": "Tapu Lele", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Ruins of Life Post-game." + }, + { + "pokedexNumber": 789, + "boxPlacement": { + "box": 39, + "row": 4, + "column": 3 + }, + "pokemon": "Tapu Bulu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Ruins of Abundance Post-game." + }, + { + "pokedexNumber": 790, + "boxPlacement": { + "box": 39, + "row": 4, + "column": 4 + }, + "pokemon": "Tapu Fini", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Ruins of Hope Post-game." + }, + { + "pokedexNumber": 791, + "boxPlacement": { + "box": 39, + "row": 4, + "column": 5 + }, + "pokemon": "Cosmog", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Lake of the Sunne/Moone Post-game only. Evolves at level 43." + }, + { + "pokedexNumber": 792, + "boxPlacement": { + "box": 39, + "row": 4, + "column": 6 + }, + "pokemon": "Cosmoem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Cosmog at level 43" + }, + { + "pokedexNumber": 793, + "boxPlacement": { + "box": 39, + "row": 5, + "column": 1 + }, + "pokemon": "Solgaleo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Mahalo Trail, Evolves from Cosmoem at level 53" + }, + { + "pokedexNumber": 794, + "boxPlacement": { + "box": 39, + "row": 5, + "column": 2 + }, + "pokemon": "Lunala", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 795, + "boxPlacement": { + "box": 39, + "row": 5, + "column": 3 + }, + "pokemon": "Nihilego", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 796, + "boxPlacement": { + "box": 39, + "row": 5, + "column": 4 + }, + "pokemon": "Buzzwole", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Ultra Jungle Multiple. Ultra Sun only. From white Ultra Wormholes." + }, + { + "pokedexNumber": 797, + "boxPlacement": { + "box": 39, + "row": 5, + "column": 5 + }, + "pokemon": "Pheromosa", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 798, + "boxPlacement": { + "box": 39, + "row": 5, + "column": 6 + }, + "pokemon": "Xurkitree", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 799, + "boxPlacement": { + "box": 40, + "row": 1, + "column": 1 + }, + "pokemon": "Celesteela", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Moon", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 800, + "boxPlacement": { + "box": 40, + "row": 1, + "column": 2 + }, + "pokemon": "Kartana", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "US" + ], + "regionToEvolveIn": "", + "notes": "Ultra Forest Multiple. Ultra Sun only. From white Ultra Wormholes." + }, + { + "pokedexNumber": 801, + "boxPlacement": { + "box": 40, + "row": 1, + "column": 3 + }, + "pokemon": "Guzzlord", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 801, + "boxPlacement": { + "box": 40, + "row": 1, + "column": 4 + }, + "pokemon": "Necrozma", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "Mount Lanakila End of the story. Only can be caught after third battle with it." + }, + { + "pokedexNumber": 802, + "boxPlacement": { + "box": 40, + "row": 1, + "column": 5 + }, + "pokemon": "Magearna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 803, + "boxPlacement": { + "box": 40, + "row": 1, + "column": 6 + }, + "pokemon": "Magearna", + "form": "Original Color", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Home" + ], + "regionToEvolveIn": "", + "notes": "Get a complete national dex in Pokemon Home" + }, + { + "pokedexNumber": 804, + "boxPlacement": { + "box": 40, + "row": 2, + "column": 1 + }, + "pokemon": "Marshadow", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "Sun", + "Moon", + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 805, + "boxPlacement": { + "box": 40, + "row": 2, + "column": 2 + }, + "pokemon": "Poipole", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 806, + "boxPlacement": { + "box": 40, + "row": 2, + "column": 3 + }, + "pokemon": "Naganadel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "US", + "UM" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 807, + "boxPlacement": { + "box": 40, + "row": 2, + "column": 4 + }, + "pokemon": "Stakataka", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "UM" + ], + "regionToEvolveIn": "", + "notes": "Poni Grove Ultra Moon only. Two only. Post-game." + }, + { + "pokedexNumber": 808, + "boxPlacement": { + "box": 40, + "row": 2, + "column": 5 + }, + "pokemon": "Blacephalon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "US" + ], + "regionToEvolveIn": "", + "notes": "Poni Grove Ultra Sun only. Two only. Post-game." + }, + { + "pokedexNumber": 809, + "boxPlacement": { + "box": 40, + "row": 2, + "column": 6 + }, + "pokemon": "Zeraora", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Alola", + "gamesToCatchIn": [ + "US" + ], + "regionToEvolveIn": "", + "notes": "Event" + }, + { + "pokedexNumber": 809, + "boxPlacement": { + "box": 40, + "row": 3, + "column": 1 + }, + "pokemon": "Meltan", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Go" + ], + "regionToEvolveIn": "", + "notes": "Transfer to LG:PE from GO to remove GO mark in HOME" + }, + { + "pokedexNumber": 810, + "boxPlacement": { + "box": 41, + "row": 1, + "column": 1 + }, + "pokemon": "Melmetal", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Unknown", + "gamesToCatchIn": [ + "Home" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 811, + "boxPlacement": { + "box": 41, + "row": 1, + "column": 2 + }, + "pokemon": "Grookey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 812, + "boxPlacement": { + "box": 41, + "row": 1, + "column": 3 + }, + "pokemon": "Thwackey", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 813, + "boxPlacement": { + "box": 41, + "row": 1, + "column": 4 + }, + "pokemon": "Rillaboom", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 814, + "boxPlacement": { + "box": 41, + "row": 1, + "column": 5 + }, + "pokemon": "Scorbunny", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 815, + "boxPlacement": { + "box": 41, + "row": 1, + "column": 6 + }, + "pokemon": "Raboot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 816, + "boxPlacement": { + "box": 41, + "row": 2, + "column": 1 + }, + "pokemon": "Cinderace", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves at level 35" + }, + { + "pokedexNumber": 817, + "boxPlacement": { + "box": 41, + "row": 2, + "column": 2 + }, + "pokemon": "Sobble", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 818, + "boxPlacement": { + "box": 41, + "row": 2, + "column": 3 + }, + "pokemon": "Drizzile", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 819, + "boxPlacement": { + "box": 41, + "row": 2, + "column": 4 + }, + "pokemon": "Inteleon", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 820, + "boxPlacement": { + "box": 41, + "row": 2, + "column": 5 + }, + "pokemon": "Skwovet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 821, + "boxPlacement": { + "box": 41, + "row": 2, + "column": 6 + }, + "pokemon": "Greedent", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves at level 24" + }, + { + "pokedexNumber": 822, + "boxPlacement": { + "box": 41, + "row": 3, + "column": 1 + }, + "pokemon": "Rookidee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 823, + "boxPlacement": { + "box": 41, + "row": 3, + "column": 2 + }, + "pokemon": "Corvisquire", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 824, + "boxPlacement": { + "box": 41, + "row": 3, + "column": 3 + }, + "pokemon": "Corviknight", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves at level 38" + }, + { + "pokedexNumber": 825, + "boxPlacement": { + "box": 41, + "row": 3, + "column": 4 + }, + "pokemon": "Blipbug", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 826, + "boxPlacement": { + "box": 41, + "row": 3, + "column": 5 + }, + "pokemon": "Dottler", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 827, + "boxPlacement": { + "box": 41, + "row": 3, + "column": 6 + }, + "pokemon": "Orbeetle", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 828, + "boxPlacement": { + "box": 41, + "row": 4, + "column": 1 + }, + "pokemon": "Nickit", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 829, + "boxPlacement": { + "box": 41, + "row": 4, + "column": 2 + }, + "pokemon": "Thievul", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 830, + "boxPlacement": { + "box": 41, + "row": 4, + "column": 3 + }, + "pokemon": "Gossifleur", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 831, + "boxPlacement": { + "box": 41, + "row": 4, + "column": 4 + }, + "pokemon": "Eldegoss", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 832, + "boxPlacement": { + "box": 41, + "row": 4, + "column": 5 + }, + "pokemon": "Wooloo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 833, + "boxPlacement": { + "box": 41, + "row": 4, + "column": 6 + }, + "pokemon": "Dubwool", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves at level 24" + }, + { + "pokedexNumber": 834, + "boxPlacement": { + "box": 41, + "row": 5, + "column": 1 + }, + "pokemon": "Chewtle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 835, + "boxPlacement": { + "box": 41, + "row": 5, + "column": 2 + }, + "pokemon": "Drednaw", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 836, + "boxPlacement": { + "box": 41, + "row": 5, + "column": 3 + }, + "pokemon": "Yamper", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 837, + "boxPlacement": { + "box": 41, + "row": 5, + "column": 4 + }, + "pokemon": "Boltund", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 838, + "boxPlacement": { + "box": 41, + "row": 5, + "column": 5 + }, + "pokemon": "Rolycoly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 839, + "boxPlacement": { + "box": 41, + "row": 5, + "column": 6 + }, + "pokemon": "Carkol", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 840, + "boxPlacement": { + "box": 42, + "row": 1, + "column": 1 + }, + "pokemon": "Coalossal", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves at level 34" + }, + { + "pokedexNumber": 841, + "boxPlacement": { + "box": 42, + "row": 1, + "column": 2 + }, + "pokemon": "Applin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 842, + "boxPlacement": { + "box": 42, + "row": 1, + "column": 3 + }, + "pokemon": "Flapple", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Applin, caught at Route 5, Dusty Bowl, Giant's Mirror, Stony Wilderness Axew's Eye, Bridge Field, Dappled Grove, Giant's Mirror, Rolling Fields, Stony Wilderness (Max Raid Battle) Axew's Eye, Bridge Field, Dappled Grove, Giant's Mirror, Stony Wilderness (Max Raid Battle) Dappled Grove (Max Raid Battle) (Gigantamax Factor)" + }, + { + "pokedexNumber": 843, + "boxPlacement": { + "box": 42, + "row": 1, + "column": 4 + }, + "pokemon": "Appletun", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 844, + "boxPlacement": { + "box": 42, + "row": 1, + "column": 5 + }, + "pokemon": "Silicobra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 845, + "boxPlacement": { + "box": 42, + "row": 1, + "column": 6 + }, + "pokemon": "Sandaconda", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 846, + "boxPlacement": { + "box": 42, + "row": 2, + "column": 1 + }, + "pokemon": "Cramorant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 847, + "boxPlacement": { + "box": 42, + "row": 2, + "column": 2 + }, + "pokemon": "Arrokuda", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 848, + "boxPlacement": { + "box": 42, + "row": 2, + "column": 3 + }, + "pokemon": "Barraskewda", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 849, + "boxPlacement": { + "box": 42, + "row": 2, + "column": 4 + }, + "pokemon": "Toxel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 849, + "boxPlacement": { + "box": 42, + "row": 2, + "column": 5 + }, + "pokemon": "Toxtricity", + "form": "Amped", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 850, + "boxPlacement": { + "box": 42, + "row": 2, + "column": 6 + }, + "pokemon": "Toxtricity", + "form": "Low-key", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 851, + "boxPlacement": { + "box": 42, + "row": 3, + "column": 1 + }, + "pokemon": "Sizzlipede", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 852, + "boxPlacement": { + "box": 42, + "row": 3, + "column": 2 + }, + "pokemon": "Centiskorch", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 853, + "boxPlacement": { + "box": 42, + "row": 3, + "column": 3 + }, + "pokemon": "Clobbopus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 854, + "boxPlacement": { + "box": 42, + "row": 3, + "column": 4 + }, + "pokemon": "Grapploct", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 854, + "boxPlacement": { + "box": 42, + "row": 3, + "column": 5 + }, + "pokemon": "Sinistea", + "form": "Phony", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 855, + "boxPlacement": { + "box": 42, + "row": 3, + "column": 6 + }, + "pokemon": "Sinistea", + "form": "Antique", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 855, + "boxPlacement": { + "box": 42, + "row": 4, + "column": 1 + }, + "pokemon": "Polteageist", + "form": "Phony", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 856, + "boxPlacement": { + "box": 42, + "row": 4, + "column": 2 + }, + "pokemon": "Polteageist", + "form": "Antique", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 857, + "boxPlacement": { + "box": 42, + "row": 4, + "column": 3 + }, + "pokemon": "Hatenna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 858, + "boxPlacement": { + "box": 42, + "row": 4, + "column": 4 + }, + "pokemon": "Hattrem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 859, + "boxPlacement": { + "box": 42, + "row": 4, + "column": 5 + }, + "pokemon": "Hatterene", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 860, + "boxPlacement": { + "box": 42, + "row": 4, + "column": 6 + }, + "pokemon": "Impidimp", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 861, + "boxPlacement": { + "box": 42, + "row": 5, + "column": 1 + }, + "pokemon": "Morgrem", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "32" + }, + { + "pokedexNumber": 862, + "boxPlacement": { + "box": 42, + "row": 5, + "column": 2 + }, + "pokemon": "Grimmsnarl", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "42" + }, + { + "pokedexNumber": 863, + "boxPlacement": { + "box": 42, + "row": 5, + "column": 3 + }, + "pokemon": "Obstagoon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Galarian Linoone at level 35 at night" + }, + { + "pokedexNumber": 864, + "boxPlacement": { + "box": 42, + "row": 5, + "column": 4 + }, + "pokemon": "Perrserker", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Galarian Meowth at level 28" + }, + { + "pokedexNumber": 865, + "boxPlacement": { + "box": 42, + "row": 5, + "column": 5 + }, + "pokemon": "Cursola", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 866, + "boxPlacement": { + "box": 42, + "row": 5, + "column": 6 + }, + "pokemon": "Sirfetch’d", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Galarian Farfetch'd after landing three critical hits in a single battle." + }, + { + "pokedexNumber": 867, + "boxPlacement": { + "box": 43, + "row": 1, + "column": 1 + }, + "pokemon": "Mr. Rime", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 868, + "boxPlacement": { + "box": 43, + "row": 1, + "column": 2 + }, + "pokemon": "Runerigus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 1, + "column": 3 + }, + "pokemon": "Milcery", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Route 4, Bridge Field, Giant's Mirror Bridge Field, Lake of Outrage (Max Raid Battle)" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 1, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Vanilla Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "One must be Gigantamaxed" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 1, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Vanilla Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Can obtain Star and Ribbon Sweets via Cram-o-matic" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 1, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Vanilla Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 2, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Vanilla Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 2, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Vanilla Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 2, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Vanilla Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 2, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Vanilla Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 2, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 2, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 3, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 3, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 3, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 3, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 3, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Ruby Cream Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 3, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Matcha Strawberyy", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 4, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Mactha Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 4, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Matcha Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 4, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Matcha Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 4, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Matcha Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 4, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Matcha Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 4, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Matcha Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 5, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Mint Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 5, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Mint Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 5, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Mint Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 5, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Mint Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 5, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Mint Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 43, + "row": 5, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Mint Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 1, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Mint Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 1, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Lemon Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 1, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Lemon Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 1, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Lemon Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 1, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Lemon Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 1, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Lemon Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 2, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Lemon Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 2, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Lemon Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 2, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Salted Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 2, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Salted Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 2, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Salted Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 2, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Salted Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 3, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Salted Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 3, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Salted Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 3, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Salted Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 3, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 3, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 3, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 4, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 4, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 4, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 4, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Ruby Swirl Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 4, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Caramel Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 4, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Caramel Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 5, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Caramel Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 5, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Caramel Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 5, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Caramel Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 5, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Caramel Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 5, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Caramel Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 44, + "row": 5, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Rainbow Strawberry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 45, + "row": 1, + "column": 1 + }, + "pokemon": "Alcremie", + "form": "Rainbow Berry", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 45, + "row": 1, + "column": 2 + }, + "pokemon": "Alcremie", + "form": "Rainbow Love", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 45, + "row": 1, + "column": 3 + }, + "pokemon": "Alcremie", + "form": "Rainbow Flower", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 45, + "row": 1, + "column": 4 + }, + "pokemon": "Alcremie", + "form": "Rainbow Clover", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 45, + "row": 1, + "column": 5 + }, + "pokemon": "Alcremie", + "form": "Rainbow Star", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 869, + "boxPlacement": { + "box": 45, + "row": 1, + "column": 6 + }, + "pokemon": "Alcremie", + "form": "Rainbow Ribbon", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 870, + "boxPlacement": { + "box": 45, + "row": 2, + "column": 1 + }, + "pokemon": "Falinks", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 871, + "boxPlacement": { + "box": 45, + "row": 2, + "column": 2 + }, + "pokemon": "Pincurchin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 872, + "boxPlacement": { + "box": 45, + "row": 2, + "column": 3 + }, + "pokemon": "Snom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 873, + "boxPlacement": { + "box": 45, + "row": 2, + "column": 4 + }, + "pokemon": "Frosmoth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 874, + "boxPlacement": { + "box": 45, + "row": 2, + "column": 5 + }, + "pokemon": "Stonjourner", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Route 10, Lake of Outrage Giant's Seat, Rolling Fields, Stony Wilderness (Max Raid Battle)" + }, + { + "pokedexNumber": 875, + "boxPlacement": { + "box": 45, + "row": 2, + "column": 6 + }, + "pokemon": "Eiscue", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 876, + "boxPlacement": { + "box": 45, + "row": 3, + "column": 1 + }, + "pokemon": "Indeedee", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Version exclusive in wild, but eggs can be either gender" + }, + { + "pokedexNumber": 876, + "boxPlacement": { + "box": 45, + "row": 3, + "column": 2 + }, + "pokemon": "Indeedee", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 877, + "boxPlacement": { + "box": 45, + "row": 3, + "column": 3 + }, + "pokemon": "Morpeko", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 878, + "boxPlacement": { + "box": 45, + "row": 3, + "column": 4 + }, + "pokemon": "Cufant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 879, + "boxPlacement": { + "box": 45, + "row": 3, + "column": 5 + }, + "pokemon": "Copperajah", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 880, + "boxPlacement": { + "box": 45, + "row": 3, + "column": 6 + }, + "pokemon": "Dracozolt", + "form": "Bird and Drake", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 881, + "boxPlacement": { + "box": 45, + "row": 4, + "column": 1 + }, + "pokemon": "Arctozolt", + "form": "Bird and Dino", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 882, + "boxPlacement": { + "box": 45, + "row": 4, + "column": 2 + }, + "pokemon": "Dracovish", + "form": "Fish and Drake", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 883, + "boxPlacement": { + "box": 45, + "row": 4, + "column": 3 + }, + "pokemon": "Arctovish", + "form": "Fish and Dino", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 884, + "boxPlacement": { + "box": 45, + "row": 4, + "column": 4 + }, + "pokemon": "Duraludon", + "form": "", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 885, + "boxPlacement": { + "box": 45, + "row": 4, + "column": 5 + }, + "pokemon": "Dreepy", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 886, + "boxPlacement": { + "box": 45, + "row": 4, + "column": 6 + }, + "pokemon": "Drakloak", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 887, + "boxPlacement": { + "box": 45, + "row": 5, + "column": 1 + }, + "pokemon": "Dragapult", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 888, + "boxPlacement": { + "box": 45, + "row": 5, + "column": 2 + }, + "pokemon": "Zacian", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword" + ], + "regionToEvolveIn": "", + "notes": "Tower Summit (Only one)" + }, + { + "pokedexNumber": 889, + "boxPlacement": { + "box": 45, + "row": 5, + "column": 3 + }, + "pokemon": "Zamazenta", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 890, + "boxPlacement": { + "box": 45, + "row": 5, + "column": 4 + }, + "pokemon": "Eternatus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 891, + "boxPlacement": { + "box": 45, + "row": 5, + "column": 5 + }, + "pokemon": "Kubfu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 892, + "boxPlacement": { + "box": 45, + "row": 5, + "column": 6 + }, + "pokemon": "Urshifu", + "form": "Single", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 892, + "boxPlacement": { + "box": 46, + "row": 1, + "column": 1 + }, + "pokemon": "Urshifu", + "form": "Rapid", + "canGigantamax": "true", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 893, + "boxPlacement": { + "box": 46, + "row": 1, + "column": 2 + }, + "pokemon": "Zarude", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Event (unobtainable at time of writing) - maybe possible in pkhex?" + }, + { + "pokedexNumber": 893, + "boxPlacement": { + "box": 46, + "row": 1, + "column": 3 + }, + "pokemon": "Zarude", + "form": "Dada", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "Event (unobtainable at time of writing) - maybe possible in pkhex?" + }, + { + "pokedexNumber": 894, + "boxPlacement": { + "box": 46, + "row": 1, + "column": 4 + }, + "pokemon": "Regieleki", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 895, + "boxPlacement": { + "box": 46, + "row": 1, + "column": 5 + }, + "pokemon": "Regidrago", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 896, + "boxPlacement": { + "box": 46, + "row": 1, + "column": 6 + }, + "pokemon": "Glastrier", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 897, + "boxPlacement": { + "box": 46, + "row": 2, + "column": 1 + }, + "pokemon": "Spectrier", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 898, + "boxPlacement": { + "box": 46, + "row": 2, + "column": 2 + }, + "pokemon": "Calyrex", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 899, + "boxPlacement": { + "box": 46, + "row": 2, + "column": 3 + }, + "pokemon": "Wyrdeer", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Stantler after using Psyshield Bash in the agile style at least 20 times." + }, + { + "pokedexNumber": 900, + "boxPlacement": { + "box": 46, + "row": 2, + "column": 4 + }, + "pokemon": "Kleavor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "Hisui", + "notes": "Evolves from Scyther when exposed to a Black Augurite." + }, + { + "pokedexNumber": 901, + "boxPlacement": { + "box": 46, + "row": 2, + "column": 5 + }, + "pokemon": "Ursaluna", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Hisui", + "notes": "It evolves from Ursaring when exposed to a Peat Block during a full moon." + }, + { + "pokedexNumber": 901, + "boxPlacement": { + "box": 46, + "row": 2, + "column": 6 + }, + "pokemon": "Ursaluna", + "form": "Bloodmoon", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "Expansion Pass: Timeless Woods (only one) (Bloodmoon)" + }, + { + "pokedexNumber": 902, + "boxPlacement": { + "box": 46, + "row": 3, + "column": 1 + }, + "pokemon": "Basculegion", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from white-striped Basculin when leveled up after losing at least 294 HP from recoil damage without fainting." + }, + { + "pokedexNumber": 902, + "boxPlacement": { + "box": 46, + "row": 3, + "column": 2 + }, + "pokemon": "Basculegion", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from white-striped Basculin when leveled up after losing at least 294 HP from recoil damage without fainting." + }, + { + "pokedexNumber": 903, + "boxPlacement": { + "box": 46, + "row": 3, + "column": 3 + }, + "pokemon": "Sneasler", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from Sneasel when leveled up while holding a Razor Claw during the day" + }, + { + "pokedexNumber": 904, + "boxPlacement": { + "box": 46, + "row": 3, + "column": 4 + }, + "pokemon": "Overqwil", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Evolves from hisuian Qwilfish when leveled up while knowing Barb Barrage." + }, + { + "pokedexNumber": 905, + "boxPlacement": { + "box": 46, + "row": 3, + "column": 5 + }, + "pokemon": "Enamorus", + "form": "Therian Form", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "While it is not known to evolve into or from any Pokémon, Enamorus has a second form activated by using the Reveal Glass. Its original form, Incarnate Forme, will then become Therian Forme." + }, + { + "pokedexNumber": 905, + "boxPlacement": { + "box": 47, + "row": 1, + "column": 1 + }, + "pokemon": "Enamorus", + "form": "Incarnate Form", + "canGigantamax": "false", + "regionToCatchIn": "Hisui", + "gamesToCatchIn": [ + "PLA" + ], + "regionToEvolveIn": "", + "notes": "Crimson Mirelands: Scarlet Bog (Only one) (Incarnate Forme)" + }, + { + "pokedexNumber": 906, + "boxPlacement": { + "box": 47, + "row": 1, + "column": 2 + }, + "pokemon": "Sprigatito", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 907, + "boxPlacement": { + "box": 47, + "row": 1, + "column": 3 + }, + "pokemon": "Floragato", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 908, + "boxPlacement": { + "box": 47, + "row": 1, + "column": 4 + }, + "pokemon": "Meowscarada", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 909, + "boxPlacement": { + "box": 47, + "row": 1, + "column": 5 + }, + "pokemon": "Fuecoco", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 910, + "boxPlacement": { + "box": 47, + "row": 1, + "column": 6 + }, + "pokemon": "Crocalor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 911, + "boxPlacement": { + "box": 47, + "row": 2, + "column": 1 + }, + "pokemon": "Skeledirge", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 912, + "boxPlacement": { + "box": 47, + "row": 2, + "column": 2 + }, + "pokemon": "Quaxly", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 913, + "boxPlacement": { + "box": 47, + "row": 2, + "column": 3 + }, + "pokemon": "Quaxwell", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 914, + "boxPlacement": { + "box": 47, + "row": 2, + "column": 4 + }, + "pokemon": "Quaquaval", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 915, + "boxPlacement": { + "box": 47, + "row": 2, + "column": 5 + }, + "pokemon": "Lechonk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 916, + "boxPlacement": { + "box": 47, + "row": 2, + "column": 6 + }, + "pokemon": "Oinkologne", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 916, + "boxPlacement": { + "box": 47, + "row": 3, + "column": 1 + }, + "pokemon": "Oinkologne", + "form": "Female", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 917, + "boxPlacement": { + "box": 47, + "row": 3, + "column": 2 + }, + "pokemon": "Tarountula", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 918, + "boxPlacement": { + "box": 47, + "row": 3, + "column": 3 + }, + "pokemon": "Spidops", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 919, + "boxPlacement": { + "box": 47, + "row": 3, + "column": 4 + }, + "pokemon": "Nymble", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 920, + "boxPlacement": { + "box": 47, + "row": 3, + "column": 5 + }, + "pokemon": "Lokix", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 921, + "boxPlacement": { + "box": 47, + "row": 3, + "column": 6 + }, + "pokemon": "Pawmi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 922, + "boxPlacement": { + "box": 47, + "row": 4, + "column": 1 + }, + "pokemon": "Pawmo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 923, + "boxPlacement": { + "box": 47, + "row": 4, + "column": 2 + }, + "pokemon": "Pawmot", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 924, + "boxPlacement": { + "box": 47, + "row": 4, + "column": 3 + }, + "pokemon": "Tandemaus", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 925, + "boxPlacement": { + "box": 47, + "row": 4, + "column": 4 + }, + "pokemon": "Maushold", + "form": "Family of 3", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 925, + "boxPlacement": { + "box": 47, + "row": 4, + "column": 5 + }, + "pokemon": "Maushold", + "form": "Family of 4", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 926, + "boxPlacement": { + "box": 47, + "row": 4, + "column": 6 + }, + "pokemon": "Fidough", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 927, + "boxPlacement": { + "box": 47, + "row": 5, + "column": 1 + }, + "pokemon": "Dachsbun", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 928, + "boxPlacement": { + "box": 47, + "row": 5, + "column": 2 + }, + "pokemon": "Smoliv", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 929, + "boxPlacement": { + "box": 47, + "row": 5, + "column": 3 + }, + "pokemon": "Dolliv", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 930, + "boxPlacement": { + "box": 47, + "row": 5, + "column": 4 + }, + "pokemon": "Arboliva", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 931, + "boxPlacement": { + "box": 47, + "row": 5, + "column": 5 + }, + "pokemon": "Squawkabilly", + "form": "Green", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 931, + "boxPlacement": { + "box": 47, + "row": 5, + "column": 6 + }, + "pokemon": "Squawkabilly", + "form": "Blue", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 931, + "boxPlacement": { + "box": 48, + "row": 1, + "column": 1 + }, + "pokemon": "Squawkabilly", + "form": "Yellow", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 931, + "boxPlacement": { + "box": 48, + "row": 1, + "column": 2 + }, + "pokemon": "Squawkabilly", + "form": "White", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 932, + "boxPlacement": { + "box": 48, + "row": 1, + "column": 3 + }, + "pokemon": "Nacli", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 933, + "boxPlacement": { + "box": 48, + "row": 1, + "column": 4 + }, + "pokemon": "Naclstack", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 934, + "boxPlacement": { + "box": 48, + "row": 1, + "column": 5 + }, + "pokemon": "Garganacl", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 935, + "boxPlacement": { + "box": 48, + "row": 1, + "column": 6 + }, + "pokemon": "Charcadet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 936, + "boxPlacement": { + "box": 48, + "row": 2, + "column": 1 + }, + "pokemon": "Armarouge", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 937, + "boxPlacement": { + "box": 48, + "row": 2, + "column": 2 + }, + "pokemon": "Ceruledge", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 938, + "boxPlacement": { + "box": 48, + "row": 2, + "column": 3 + }, + "pokemon": "Tadbulb", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 939, + "boxPlacement": { + "box": 48, + "row": 2, + "column": 4 + }, + "pokemon": "Bellibolt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 940, + "boxPlacement": { + "box": 48, + "row": 2, + "column": 5 + }, + "pokemon": "Wattrel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 941, + "boxPlacement": { + "box": 48, + "row": 2, + "column": 6 + }, + "pokemon": "Kilowattrel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 942, + "boxPlacement": { + "box": 48, + "row": 3, + "column": 1 + }, + "pokemon": "Maschiff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 943, + "boxPlacement": { + "box": 48, + "row": 3, + "column": 2 + }, + "pokemon": "Mabosstiff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 944, + "boxPlacement": { + "box": 48, + "row": 3, + "column": 3 + }, + "pokemon": "Shroodle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 945, + "boxPlacement": { + "box": 48, + "row": 3, + "column": 4 + }, + "pokemon": "Grafaiai", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 946, + "boxPlacement": { + "box": 48, + "row": 3, + "column": 5 + }, + "pokemon": "Bramblin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 947, + "boxPlacement": { + "box": 48, + "row": 3, + "column": 6 + }, + "pokemon": "Brambleghast", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 948, + "boxPlacement": { + "box": 48, + "row": 4, + "column": 1 + }, + "pokemon": "Toedscool", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 949, + "boxPlacement": { + "box": 48, + "row": 4, + "column": 2 + }, + "pokemon": "Toedscruel", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 950, + "boxPlacement": { + "box": 48, + "row": 4, + "column": 3 + }, + "pokemon": "Klawf", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 951, + "boxPlacement": { + "box": 48, + "row": 4, + "column": 4 + }, + "pokemon": "Capsakid", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 952, + "boxPlacement": { + "box": 48, + "row": 4, + "column": 5 + }, + "pokemon": "Scovillain", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 953, + "boxPlacement": { + "box": 48, + "row": 4, + "column": 6 + }, + "pokemon": "Rellor", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 954, + "boxPlacement": { + "box": 48, + "row": 5, + "column": 1 + }, + "pokemon": "Rabsca", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 955, + "boxPlacement": { + "box": 48, + "row": 5, + "column": 2 + }, + "pokemon": "Flittle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 956, + "boxPlacement": { + "box": 48, + "row": 5, + "column": 3 + }, + "pokemon": "Espathra", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 957, + "boxPlacement": { + "box": 48, + "row": 5, + "column": 4 + }, + "pokemon": "Tinkatink", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 958, + "boxPlacement": { + "box": 48, + "row": 5, + "column": 5 + }, + "pokemon": "Tinkatuff", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 959, + "boxPlacement": { + "box": 48, + "row": 5, + "column": 6 + }, + "pokemon": "Tinkaton", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 960, + "boxPlacement": { + "box": 49, + "row": 1, + "column": 1 + }, + "pokemon": "Wiglett", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 961, + "boxPlacement": { + "box": 49, + "row": 1, + "column": 2 + }, + "pokemon": "Wugtrio", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 962, + "boxPlacement": { + "box": 49, + "row": 1, + "column": 3 + }, + "pokemon": "Bombirdier", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 963, + "boxPlacement": { + "box": 49, + "row": 1, + "column": 4 + }, + "pokemon": "Finizen", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 964, + "boxPlacement": { + "box": 49, + "row": 1, + "column": 5 + }, + "pokemon": "Palafin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 965, + "boxPlacement": { + "box": 49, + "row": 1, + "column": 6 + }, + "pokemon": "Varoom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 966, + "boxPlacement": { + "box": 49, + "row": 2, + "column": 1 + }, + "pokemon": "Revavroom", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 967, + "boxPlacement": { + "box": 49, + "row": 2, + "column": 2 + }, + "pokemon": "Cyclizar", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 968, + "boxPlacement": { + "box": 49, + "row": 2, + "column": 3 + }, + "pokemon": "Orthworm", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 969, + "boxPlacement": { + "box": 49, + "row": 2, + "column": 4 + }, + "pokemon": "Glimmet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 970, + "boxPlacement": { + "box": 49, + "row": 2, + "column": 5 + }, + "pokemon": "Glimmora", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 971, + "boxPlacement": { + "box": 49, + "row": 2, + "column": 6 + }, + "pokemon": "Greavard", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 972, + "boxPlacement": { + "box": 49, + "row": 3, + "column": 1 + }, + "pokemon": "Houndstone", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 973, + "boxPlacement": { + "box": 49, + "row": 3, + "column": 2 + }, + "pokemon": "Flamigo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 974, + "boxPlacement": { + "box": 49, + "row": 3, + "column": 3 + }, + "pokemon": "Cetoddle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 975, + "boxPlacement": { + "box": 49, + "row": 3, + "column": 4 + }, + "pokemon": "Cetitan", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 976, + "boxPlacement": { + "box": 49, + "row": 3, + "column": 5 + }, + "pokemon": "Veluza", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 977, + "boxPlacement": { + "box": 49, + "row": 3, + "column": 6 + }, + "pokemon": "Dondozo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 978, + "boxPlacement": { + "box": 49, + "row": 4, + "column": 1 + }, + "pokemon": "Tatsugiri", + "form": "Curly", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 978, + "boxPlacement": { + "box": 49, + "row": 4, + "column": 2 + }, + "pokemon": "Tatsugiri", + "form": "Droopy", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 978, + "boxPlacement": { + "box": 49, + "row": 4, + "column": 3 + }, + "pokemon": "Tatsugiri", + "form": "Stretchy", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 979, + "boxPlacement": { + "box": 49, + "row": 4, + "column": 4 + }, + "pokemon": "Annihilape", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Kanto", + "gamesToCatchIn": [ + "Red", + "Yellow", + "LG: Pikachu" + ], + "regionToEvolveIn": "Paldea", + "notes": "" + }, + { + "pokedexNumber": 980, + "boxPlacement": { + "box": 49, + "row": 4, + "column": 5 + }, + "pokemon": "Clodsire", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 981, + "boxPlacement": { + "box": 49, + "row": 4, + "column": 6 + }, + "pokemon": "Farigiraf", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "HG", + "SS" + ], + "regionToEvolveIn": "Paldea", + "notes": "It evolves from Girafarig when leveled up while knowing Twin Beam." + }, + { + "pokedexNumber": 982, + "boxPlacement": { + "box": 49, + "row": 5, + "column": 1 + }, + "pokemon": "Dudunsparce", + "form": "2-Segment", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Paldea", + "notes": "It evolves from Dunsparce when leveled up while knowing Hyper Drill. Dudunsparce has two separate forms: Two-Segment Form and Three-Segment Form. When Dunsparce evolves, it has a 1/100 chance of evolving into Three-Segment Form Dudunsparce." + }, + { + "pokedexNumber": 982, + "boxPlacement": { + "box": 49, + "row": 5, + "column": 2 + }, + "pokemon": "Dudunsparce", + "form": "3-Segment", + "canGigantamax": "false", + "regionToCatchIn": "Johto", + "gamesToCatchIn": [ + "Gold", + "Silver", + "Crystal", + "HG", + "SS" + ], + "regionToEvolveIn": "Paldea", + "notes": "It evolves from Dunsparce when leveled up while knowing Hyper Drill. Dudunsparce has two separate forms: Two-Segment Form and Three-Segment Form. When Dunsparce evolves, it has a 1/100 chance of evolving into Three-Segment Form Dudunsparce." + }, + { + "pokedexNumber": 983, + "boxPlacement": { + "box": 49, + "row": 5, + "column": 3 + }, + "pokemon": "Kingambit", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Unova", + "gamesToCatchIn": [ + "Black", + "White", + "Black2", + "White2" + ], + "regionToEvolveIn": "Paldea", + "notes": "Evolves from Bisharp upon leveling up after defeating three Bisharp that hold a Leader's Crest. (Scarlet/Violet only)" + }, + { + "pokedexNumber": 984, + "boxPlacement": { + "box": 49, + "row": 5, + "column": 4 + }, + "pokemon": "Great Tusk", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 985, + "boxPlacement": { + "box": 49, + "row": 5, + "column": 5 + }, + "pokemon": "Scream Tail", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 986, + "boxPlacement": { + "box": 49, + "row": 5, + "column": 6 + }, + "pokemon": "Brute Bonnet", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 987, + "boxPlacement": { + "box": 50, + "row": 1, + "column": 1 + }, + "pokemon": "Flutter Mane", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 988, + "boxPlacement": { + "box": 50, + "row": 1, + "column": 2 + }, + "pokemon": "Slither Wing", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 989, + "boxPlacement": { + "box": 50, + "row": 1, + "column": 3 + }, + "pokemon": "Sandy Shocks", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 990, + "boxPlacement": { + "box": 50, + "row": 1, + "column": 4 + }, + "pokemon": "Iron Treads", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 991, + "boxPlacement": { + "box": 50, + "row": 1, + "column": 5 + }, + "pokemon": "Iron Bundle", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 992, + "boxPlacement": { + "box": 50, + "row": 1, + "column": 6 + }, + "pokemon": "Iron Hands", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 993, + "boxPlacement": { + "box": 50, + "row": 2, + "column": 1 + }, + "pokemon": "Iron Jugulis", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 994, + "boxPlacement": { + "box": 50, + "row": 2, + "column": 2 + }, + "pokemon": "Iron Moth", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 995, + "boxPlacement": { + "box": 50, + "row": 2, + "column": 3 + }, + "pokemon": "Iron Thorns", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 996, + "boxPlacement": { + "box": 50, + "row": 2, + "column": 4 + }, + "pokemon": "Frigibax", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 997, + "boxPlacement": { + "box": 50, + "row": 2, + "column": 5 + }, + "pokemon": "Arctibax", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 998, + "boxPlacement": { + "box": 50, + "row": 2, + "column": 6 + }, + "pokemon": "Baxcalibur", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 999, + "boxPlacement": { + "box": 50, + "row": 3, + "column": 1 + }, + "pokemon": "Gimmighoul", + "form": "Box Form", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1000, + "boxPlacement": { + "box": 50, + "row": 3, + "column": 2 + }, + "pokemon": "Gimmighoul", + "form": "Roaming Form", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1000, + "boxPlacement": { + "box": 50, + "row": 3, + "column": 3 + }, + "pokemon": "Gholdengo", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1001, + "boxPlacement": { + "box": 50, + "row": 3, + "column": 4 + }, + "pokemon": "Wo-Chien", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1002, + "boxPlacement": { + "box": 50, + "row": 3, + "column": 5 + }, + "pokemon": "Chien-Pao", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1003, + "boxPlacement": { + "box": 50, + "row": 3, + "column": 6 + }, + "pokemon": "Ting-Lu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1004, + "boxPlacement": { + "box": 50, + "row": 4, + "column": 1 + }, + "pokemon": "Chi-Yu", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1005, + "boxPlacement": { + "box": 50, + "row": 4, + "column": 2 + }, + "pokemon": "Roaring Moon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1006, + "boxPlacement": { + "box": 50, + "row": 4, + "column": 3 + }, + "pokemon": "Iron Valiant", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1007, + "boxPlacement": { + "box": 50, + "row": 4, + "column": 4 + }, + "pokemon": "Koraidon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1008, + "boxPlacement": { + "box": 50, + "row": 4, + "column": 5 + }, + "pokemon": "Miraidon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1009, + "boxPlacement": { + "box": 50, + "row": 4, + "column": 6 + }, + "pokemon": "Walking Wake", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1010, + "boxPlacement": { + "box": 50, + "row": 5, + "column": 1 + }, + "pokemon": "Iron Leaves", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1011, + "boxPlacement": { + "box": 50, + "row": 5, + "column": 2 + }, + "pokemon": "Dipplin", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1012, + "boxPlacement": { + "box": 50, + "row": 5, + "column": 3 + }, + "pokemon": "Poltchageist", + "form": "Phony", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1012, + "boxPlacement": { + "box": 50, + "row": 5, + "column": 4 + }, + "pokemon": "Poltchageist", + "form": "Antique", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1013, + "boxPlacement": { + "box": 50, + "row": 5, + "column": 5 + }, + "pokemon": "Sinistcha", + "form": "Phony", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1013, + "boxPlacement": { + "box": 50, + "row": 5, + "column": 6 + }, + "pokemon": "Sinistcha", + "form": "Antique", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1014, + "boxPlacement": { + "box": 51, + "row": 1, + "column": 1 + }, + "pokemon": "Okidogi", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1015, + "boxPlacement": { + "box": 51, + "row": 1, + "column": 2 + }, + "pokemon": "Munkidori", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1016, + "boxPlacement": { + "box": 51, + "row": 1, + "column": 3 + }, + "pokemon": "Fezandipiti", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1017, + "boxPlacement": { + "box": 51, + "row": 1, + "column": 4 + }, + "pokemon": "Ogrepon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1018, + "boxPlacement": { + "box": 51, + "row": 1, + "column": 5 + }, + "pokemon": "Archaludon", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Galar", + "gamesToCatchIn": [ + "Sword", + "Shield" + ], + "regionToEvolveIn": "Paldea", + "notes": "Expansion Pass: It evolves from Duraludon when exposed to a hunk of Metal Alloy." + }, + { + "pokedexNumber": 1019, + "boxPlacement": { + "box": 51, + "row": 1, + "column": 6 + }, + "pokemon": "Hydrapple", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1020, + "boxPlacement": { + "box": 51, + "row": 2, + "column": 1 + }, + "pokemon": "Gouging Fire", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1021, + "boxPlacement": { + "box": 51, + "row": 2, + "column": 2 + }, + "pokemon": "Raging Bolt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1022, + "boxPlacement": { + "box": 51, + "row": 2, + "column": 3 + }, + "pokemon": "Iron Boulder", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1023, + "boxPlacement": { + "box": 51, + "row": 2, + "column": 4 + }, + "pokemon": "Iron Crown", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1024, + "boxPlacement": { + "box": 51, + "row": 2, + "column": 5 + }, + "pokemon": "Terapagos", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + }, + { + "pokedexNumber": 1025, + "boxPlacement": { + "box": 51, + "row": 2, + "column": 6 + }, + "pokemon": "Pecharunt", + "form": "", + "canGigantamax": "false", + "regionToCatchIn": "Paldea", + "gamesToCatchIn": [ + "Scarlet", + "Violet" + ], + "regionToEvolveIn": "", + "notes": "" + } +] \ No newline at end of file diff --git a/tsv-parser/seed-data.tsv b/tsv-parser/seed-data.tsv new file mode 100644 index 0000000..a2a7fdc --- /dev/null +++ b/tsv-parser/seed-data.tsv @@ -0,0 +1,1391 @@ +Dex # Home Box Home Row Home Column Pokemon Have 'mon to Evolve Caught In Home Form Can Gigantamax Origin Game Alternative Origin Region Catch In These Games Evolve In Region Notes to obtain Pokemon caught 0 1390 0.00% <- Colors change as progress goes up! Total: #REF! #REF! +1 1 1 1 Bulbasaur FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +2 1 1 2 Ivysaur FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +3 1 1 3 Venusaur FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee All pokemon that can gigantamax should be represented by that pokemon. +3 1 1 4 Venusaur FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +4 1 1 5 Charmander FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +5 1 1 6 Charmeleon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +6 1 2 1 Charizard FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +7 1 2 2 Squirtle FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +8 1 2 3 Wartortle FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +9 1 2 4 Blastoise FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +10 1 2 5 Caterpie FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +11 1 2 6 Metapod FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +12 1 3 1 Butterfree FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +12 1 3 2 Butterfree FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +13 1 3 3 Weedle FALSE FALSE FALSE FALSE Red/Blue LG: Pikachu/Eevee Kanto Red,Blue,LG: Pikachu,LG: Eevee +14 1 3 4 Kakuna FALSE FALSE FALSE FALSE Red/Blue LG: Pikachu/Eevee Kanto Red,Blue,LG: Pikachu,LG: Eevee +15 1 3 5 Beedrill FALSE FALSE FALSE FALSE Red/Blue LG: Pikachu/Eevee Kanto Red,Blue,LG: Pikachu,LG: Eevee +16 1 3 6 Pidgey FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +17 1 4 1 Pidgeotto FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +18 1 4 2 Pidgeot FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +19 1 4 3 Rattata FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +19 1 4 4 Rattata FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +19 1 4 5 Rattata FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +20 1 4 6 Raticate FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +20 1 5 1 Raticate FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +20 1 5 2 Raticate FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 8, Memorial Hill, Akala Outskirts, Route 10, Tapu Village, Route 14, Route 15, Route 16, Route 17, Mount Lanakila, Poni Plains +21 1 5 3 Spearow FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +22 1 5 4 Fearow FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +23 1 5 5 Ekans FALSE FALSE FALSE FALSE Red/Blue LG: Eevee Kanto Red,Blue,LG: Eevee +24 1 5 6 Arbok FALSE FALSE FALSE FALSE Red/Blue LG: Eevee Kanto Red,Blue,LG: Eevee +25 2 1 1 Pikachu FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +25 2 1 2 Pikachu FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +25 2 1 3 Pikachu FALSE FALSE FALSE Original Cap FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +25 2 1 4 Pikachu FALSE FALSE FALSE Hoenn Cap FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +25 2 1 5 Pikachu FALSE FALSE FALSE Sinnoh Cap FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +25 2 1 6 Pikachu FALSE FALSE FALSE Unova Cap FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +25 2 2 1 Pikachu FALSE FALSE FALSE Kalos Cap FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +25 2 2 2 Pikachu FALSE FALSE FALSE Alola Cap FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +25 2 2 3 Pikachu FALSE FALSE FALSE Partner Cap FALSE Sword/Shield Galar Sword,Shield Event (pkhex) +25 2 2 4 Pikachu FALSE FALSE FALSE World Cap FALSE Sword/Shield Galar Sword,Shield Event (pkhex) +26 2 2 5 Raichu FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +26 2 2 6 Raichu FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +26 2 3 1 Raichu FALSE FALSE FALSE Alolan FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Alola +27 2 3 2 Sandshrew FALSE FALSE FALSE FALSE Blue/Yellow LG: Pikachu Kanto Blue,Yellow,LG: Pikachu +27 2 3 3 Sandshrew FALSE FALSE FALSE Alolan FALSE Moon UM Alola Moon,UM Tapu Village, Route 14, Mount Lanakila Ultra Moon only. Evolves via Ice Stone. +28 2 3 4 Sandslash FALSE FALSE FALSE FALSE Blue/Yellow LG: Pikachu Kanto Blue,Yellow,LG: Pikachu +28 2 3 5 Sandslash FALSE FALSE FALSE Alolan FALSE Moon UM Alola Moon,UM Evolves from Sandshrew with an ice stone +29 2 3 6 Nidoran♀ FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +30 2 4 1 Nidorina FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +31 2 4 2 Nidoqueen FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +32 2 4 3 Nidoran♂ FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +33 2 4 4 Nidorino FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +34 2 4 5 Nidoking FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +35 2 4 6 Clefairy FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +36 2 5 1 Clefable FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +37 2 5 2 Vulpix FALSE FALSE FALSE FALSE Blue/Yellow LG: Eevee Kanto Blue,Yellow,LG: Eevee +37 2 5 3 Vulpix FALSE FALSE FALSE Alolan FALSE Sun US Alola Sun,US Tapu Village, Route 14, Mount Lanakila Ultra Sun only. Evolves via Ice Stone. +38 2 5 4 Ninetales FALSE FALSE FALSE FALSE Blue/Yellow LG: Eevee Kanto Blue,Yellow,LG: Eevee +38 2 5 5 Ninetales FALSE FALSE FALSE Alolan FALSE Sun US Alola Sun,US Evolves from Vulpix with an ice stone +39 2 5 6 Jigglypuff FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +40 3 1 1 Wigglytuff FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +41 3 1 2 Zubat FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +41 3 1 3 Zubat FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +42 3 1 4 Golbat FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +42 3 1 5 Golbat FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +43 3 1 6 Oddish FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +44 3 2 1 Gloom FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +44 3 2 2 Gloom FALSE FALSE FALSE Female FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +45 3 2 3 Vileplume FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +45 3 2 4 Vileplume FALSE FALSE FALSE Female FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +46 3 2 5 Paras FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +47 3 2 6 Parasect FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +48 3 3 1 Venonat FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +49 3 3 2 Venomoth FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +50 3 3 3 Diglett FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +50 3 3 4 Diglett FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +51 3 3 5 Dugtrio FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +51 3 3 6 Dugtrio FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +52 3 4 1 Meowth FALSE FALSE FALSE TRUE Blue LG: Eevee Kanto Blue,LG: Eevee +52 3 4 2 Meowth FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +52 3 4 3 Meowth FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +53 3 4 4 Persian FALSE FALSE FALSE FALSE Blue LG: Eevee Kanto Blue,LG: Eevee +53 3 4 5 Persian FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Malie Garden, or Meowth: Route 2, Hau’oli City (Shopping District), Hau’oli City (Marina), Route 1 (Trainers’ School), Malie Garden Evolves via level-up with high happiness. +54 3 4 6 Psyduck FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +55 3 5 1 Golduck FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +56 3 5 2 Mankey FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +57 3 5 3 Primeape FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +58 3 5 4 Growlithe FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +58 3 5 5 Growlithe FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Cobalt Coastlands: Windbreak Stand, Veilstone Cape, massive mass outbreaks (Hisuian Form) +59 3 5 6 Arcanine FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu/Eevee Kanto Red,Yellow,LG: Pikachu,LG: Eevee +59 4 1 1 Arcanine FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Evolves from Growlithe with a fire stone +60 4 1 2 Poliwag FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +61 4 1 3 Poliwhirl FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +62 4 1 4 Poliwrath FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +63 4 1 5 Abra FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +64 4 1 6 Kadabra FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +64 4 2 1 Kadabra FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +65 4 2 2 Alakazam FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +65 4 2 3 Alakazam FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +66 4 2 4 Machop FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +67 4 2 5 Machoke FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +68 4 2 6 Machamp FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +69 4 3 1 Bellsprout FALSE FALSE FALSE FALSE Blue/Yellow LG: Eevee Kanto Blue,Yellow,LG: Eevee +70 4 3 2 Weepinbell FALSE FALSE FALSE FALSE Blue/Yellow LG: Eevee Kanto Blue,Yellow,LG: Eevee +71 4 3 3 Victreebel FALSE FALSE FALSE FALSE Blue/Yellow LG: Eevee Kanto Blue,Yellow,LG: Eevee +72 4 3 4 Tentacool FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +73 4 3 5 Tentacruel FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +74 4 3 6 Geodude FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +74 4 4 1 Geodude FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 12 and Blush Mountain, evolves at level 25 +75 4 4 2 Graveler FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +75 4 4 3 Graveler FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Geodude at level 25 +76 4 4 4 Golem FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +76 4 4 5 Golem FALSE FALSE FALSE Alolan FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Graveler by trading +77 4 4 6 Ponyta FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +77 4 5 1 Ponyta FALSE FALSE FALSE Galarian FALSE Shield Galar Shield +78 4 5 2 Rapidash FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +78 4 5 3 Rapidash FALSE FALSE FALSE Galarian FALSE Shield Galar Shield +79 4 5 4 Slowpoke FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +79 4 5 5 Slowpoke FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +80 4 5 6 Slowbro FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +80 5 1 1 Slowbro FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +81 5 1 2 Magnemite FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +82 5 1 3 Magneton FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +83 5 1 4 Farfetch’d FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +83 5 1 5 Farfetch’d FALSE FALSE FALSE Galarian FALSE Sword Galar Sword Route 5, Giant's Mirror (Galarian Form) Dusty Bowl, North Lake Miloch, Stony Wilderness (Max Raid Battle) (Galarian Form) +84 5 1 6 Doduo FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +84 5 2 1 Doduo FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +85 5 2 2 Dodrio FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +85 5 2 3 Dodrio FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +86 5 2 4 Seel FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +87 5 2 5 Dewgong FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +88 5 2 6 Grimer FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu Kanto Red,Blue,Yellow,LG: Pikachu +88 5 3 1 Grimer FALSE FALSE FALSE Alolan FALSE Ultra Sun Alola US Hau’oli City (Shopping District), Hau’oli City (Marina), Route 1 (Trainers’ School), Malie City, Malie City (Outer Cape) Evolves at level 38. +89 5 3 2 Muk FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu Kanto Red,Blue,Yellow,LG: Pikachu +89 5 3 3 Muk FALSE FALSE FALSE Alolan FALSE Ultra Sun Alola US Evolves from Grimer at level 38 +90 5 3 4 Shellder FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +91 5 3 5 Cloyster FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +92 5 3 6 Gastly FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +93 5 4 1 Haunter FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +94 5 4 2 Gengar FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +95 5 4 3 Onix FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +96 5 4 4 Drowzee FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +97 5 4 5 Hypno FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +97 5 4 6 Hypno FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +98 5 5 1 Krabby FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +99 5 5 2 Kingler FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +100 5 5 3 Voltorb FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +100 5 5 4 Voltorb FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Coronet Highlands: Celestica Ruins (in boxes), Sacred Plaza (also in boxes), massive mass outbreaks (Hisuian Form) +101 5 5 5 Electrode FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +101 5 5 6 Electrode FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Evolves from Voltorb with a leaf stone J258++ +102 6 1 1 Exeggcute FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +103 6 1 2 Exeggutor FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +103 6 1 3 Exeggutor FALSE FALSE FALSE Alolan FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Alola +104 6 1 4 Cubone FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +105 6 1 5 Marowak FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +105 6 1 6 Marowak FALSE FALSE FALSE Alolan FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Alola +106 6 2 1 Hitmonlee FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +107 6 2 2 Hitmonchan FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +108 6 2 3 Lickitung FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +109 6 2 4 Koffing FALSE FALSE FALSE FALSE Red/Blue LG: Eevee Kanto Red,Blue,LG: Eevee +110 6 2 5 Weezing FALSE FALSE FALSE FALSE Red/Blue LG: Eevee Kanto Red,Blue,LG: Eevee +110 6 2 6 Weezing FALSE FALSE FALSE Galarian FALSE Red/Blue LG: Eevee Kanto Red,Blue,LG: Eevee Galar +111 6 3 1 Rhyhorn FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +111 6 3 2 Rhyhorn FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +112 6 3 3 Rhydon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +112 6 3 4 Rhydon FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +113 6 3 5 Chansey FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +114 6 3 6 Tangela FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +115 6 4 1 Kangaskhan FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +116 6 4 2 Horsea FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +117 6 4 3 Seadra FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +118 6 4 4 Goldeen FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +118 6 4 5 Goldeen FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +119 6 4 6 Seaking FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +119 6 5 1 Seaking FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +120 6 5 2 Staryu FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +121 6 5 3 Starmie FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +122 6 5 4 Mr. Mime FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +122 6 5 5 Mr. Mime FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +123 6 5 6 Scyther FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +123 7 1 1 Scyther FALSE FALSE FALSE Female FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu +124 7 1 2 Jynx FALSE FALSE FALSE FALSE Red/Blue LG: Pikachu/Eevee Kanto Red,Blue,LG: Pikachu,LG: Eevee +125 7 1 3 Electabuzz FALSE FALSE FALSE FALSE Red LG: Pikachu/Eevee Kanto Red,LG: Pikachu,LG: Eevee +126 7 1 4 Magmar FALSE FALSE FALSE FALSE Blue LG: Pikachu/Eevee Kanto Blue,LG: Pikachu,LG: Eevee +127 7 1 5 Pinsir FALSE FALSE FALSE FALSE Blue/Yellow LG: Eevee Kanto Blue,Yellow,LG: Eevee +128 7 1 6 Tauros FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +128 7 2 1 Tauros FALSE FALSE FALSE Paldean FALSE Scarlet/Violet Paldea Scarlet,Violet +128 7 2 2 Tauros FALSE FALSE FALSE Paldean-Fire FALSE Scarlet Paldea Scarlet +128 7 2 3 Tauros FALSE FALSE FALSE Paldean-Water FALSE Violet Paldea Violet +129 7 2 4 Magikarp FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +129 7 2 5 Magikarp FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +130 7 2 6 Gyarados FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +130 7 3 1 Gyarados FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +131 7 3 2 Lapras FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +132 7 3 3 Ditto FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +133 7 3 4 Eevee FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +133 7 3 5 Eevee FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +134 7 3 6 Vaporeon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Kanto evolves from Eevee when exposed to a Water Stone. +135 7 4 1 Jolteon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Kanto evolves from Eevee when exposed to a Thunder Stone. +136 7 4 2 Flareon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Kanto evolves from Eevee when exposed to a Fire Stone. +137 7 4 3 Porygon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +138 7 4 4 Omanyte FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +139 7 4 5 Omastar FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +140 7 4 6 Kabuto FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +141 7 5 1 Kabutops FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +142 7 5 2 Aerodactyl FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +143 7 5 3 Snorlax FALSE FALSE FALSE TRUE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +144 7 5 4 Articuno FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +144 7 5 5 Articuno FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +145 7 5 6 Zapdos FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +145 8 1 1 Zapdos FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +146 8 1 2 Moltres FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +146 8 1 3 Moltres FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +147 8 1 4 Dratini FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +148 8 1 5 Dragonair FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +149 8 1 6 Dragonite FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +150 8 2 1 Mewtwo FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +151 8 2 2 Mew FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee R/B: https://www.youtube.com/watch?v=rvhuJsS4EhE&t=473s Yellow: https://www.reddit.com/r/pokemon/comments/7c5fpc +152 9 1 1 Chikorita FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +153 9 1 2 Bayleef FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +154 9 1 3 Meganium FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +154 9 1 4 Meganium FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +155 9 1 5 Cyndaquil FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +156 9 1 6 Quilava FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +157 9 2 1 Typhlosion FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +157 9 2 2 Typhlosion FALSE FALSE FALSE Hisuian FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Hisui Evolves from Quilava at level 36 +158 9 2 3 Totodile FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +159 9 2 4 Croconaw FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +160 9 2 5 Feraligatr FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +161 9 2 6 Sentret FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 29, 4am-6pm +162 9 3 1 Furret FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +163 9 3 2 Hoothoot FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +164 9 3 3 Noctowl FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +165 9 3 4 Ledyba FALSE FALSE FALSE FALSE Silver/Crystal SS Johto Silver,Crystal,SS Route 30, 4am-10am +165 9 3 5 Ledyba FALSE FALSE FALSE Female FALSE Silver/Crystal SS Johto Silver,Crystal,SS +166 9 3 6 Ledian FALSE FALSE FALSE FALSE Silver/Crystal SS Johto Silver,Crystal,SS +166 9 4 1 Ledian FALSE FALSE FALSE Female FALSE Silver/Crystal SS Johto Silver,Crystal,SS +167 9 4 2 Spinarak FALSE FALSE FALSE FALSE Gold/Crystal HG Johto Gold,Crystal,HG +168 9 4 3 Ariados FALSE FALSE FALSE FALSE Gold/Crystal HG Johto Gold,Crystal,HG Route 37, 6pm-4am +169 9 4 4 Crobat FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto +170 9 4 5 Chinchou FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +171 9 4 6 Lanturn FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +172 9 5 1 Pichu FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Gift egg (two pikachu in daycare) +173 9 5 2 Cleffa FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Gift egg +174 9 5 3 Igglybuff FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Gift egg +175 9 5 4 Togepi FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +176 9 5 5 Togetic FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +177 9 5 6 Natu FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +178 10 1 1 Xatu FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +178 10 1 2 Xatu FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +179 10 1 3 Mareep FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Route 32, Route 42, Route 43 +180 10 1 4 Flaaffy FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Evolves from Mareep +181 10 1 5 Ampharos FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Evolves from Flaaffy +182 10 1 6 Bellossom FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu Johto +183 10 2 1 Marill FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +184 10 2 2 Azumarill FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +185 10 2 3 Sudowoodo FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +185 10 2 4 Sudowoodo FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +186 10 2 5 Politoed FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Poliwhirl when traded while holding a King's Rock +186 10 2 6 Politoed FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Poliwhirl when traded while holding a King's Rock +187 10 3 1 Hoppip FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 29 4am-6pm +188 10 3 2 Skiploom FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +189 10 3 3 Jumpluff FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +190 10 3 4 Aipom FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +190 10 3 5 Aipom FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +191 10 3 6 Sunkern FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +192 10 4 1 Sunflora FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +193 10 4 2 Yanma FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 35 (4am-10am?) +194 10 4 3 Wooper FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +194 10 4 4 Wooper FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +194 10 4 5 Wooper FALSE FALSE FALSE Paldean FALSE Scarlet/Violet Paldea Scarlet,Violet +195 10 4 6 Quagsire FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +195 10 5 1 Quagsire FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +196 10 5 2 Espeon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto evolves from Eevee when leveled up with high friendship (220 before Generation VIII or 160 since) during the day, except in areas with a Moss Rock or Ice Rock, or if the evolutionary conditions for it to evolve into Sylveon have also been met. +197 10 5 3 Umbreon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto evolves from Eevee when leveled up with high friendship (220 before Generation VIII or 160 since) during the night, except in areas with a Moss Rock or Ice Rock, or if the evolutionary conditions for it to evolve into Sylveon have also been met. +198 10 5 4 Murkrow FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 7, 6pm-4am +198 10 5 5 Murkrow FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 7, 6pm-4am +199 10 5 6 Slowking FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Slowpoke when traded while holding a King's Rock +199 11 1 1 Slowking FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +200 11 1 2 Misdreavus FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Mt. Silver, 2f, 6pm-4am +201 11 1 3 Unown FALSE FALSE FALSE A FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 1 4 Unown FALSE FALSE FALSE B FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 1 5 Unown FALSE FALSE FALSE C FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 1 6 Unown FALSE FALSE FALSE D FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 2 1 Unown FALSE FALSE FALSE E FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 2 2 Unown FALSE FALSE FALSE F FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 2 3 Unown FALSE FALSE FALSE G FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 2 4 Unown FALSE FALSE FALSE H FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 2 5 Unown FALSE FALSE FALSE I FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 2 6 Unown FALSE FALSE FALSE J FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 3 1 Unown FALSE FALSE FALSE K FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 3 2 Unown FALSE FALSE FALSE L FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 3 3 Unown FALSE FALSE FALSE M FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 3 4 Unown FALSE FALSE FALSE N FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 3 5 Unown FALSE FALSE FALSE O FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 3 6 Unown FALSE FALSE FALSE P FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 4 1 Unown FALSE FALSE FALSE Q FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 4 2 Unown FALSE FALSE FALSE R FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 4 3 Unown FALSE FALSE FALSE S FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 4 4 Unown FALSE FALSE FALSE T FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 4 5 Unown FALSE FALSE FALSE U FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 4 6 Unown FALSE FALSE FALSE V FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 5 1 Unown FALSE FALSE FALSE W FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 5 2 Unown FALSE FALSE FALSE X FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 5 3 Unown FALSE FALSE FALSE Y FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 5 4 Unown FALSE FALSE FALSE Z FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +201 11 5 5 Unown FALSE FALSE FALSE ! FALSE HGSS HGSS Johto HG,SS +201 11 5 6 Unown FALSE FALSE FALSE ? FALSE HGSS HGSS Johto HG,SS +202 12 1 1 Wobbuffet FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Dark Cave, Blackthorn City Entrance, 6pm-4am +202 12 1 2 Wobbuffet FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Dark Cave, Blackthorn City Entrance, 6pm-4am +203 12 1 3 Girafarig FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Route 43 +203 12 1 4 Girafarig FALSE FALSE FALSE Female FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Route 43 +204 12 1 5 Pineco FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +205 12 1 6 Forretress FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +206 12 2 1 Dunsparce FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Dark Cave, Violet City Entrance - catch as many as you can for Dudunsparce 2 and 3 segment +207 12 2 2 Gligar FALSE FALSE FALSE FALSE Gold/Crystal HG Johto Gold,Crystal,HG Route 45 +207 12 2 3 Gligar FALSE FALSE FALSE Female FALSE Gold/Crystal HG Johto Gold,Crystal,HG Route 45 +208 12 2 4 Steelix FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Onix when traded while holding a Metal Coat. +208 12 2 5 Steelix FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Onix when traded while holding a Metal Coat. +209 12 2 6 Snubbull FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +210 12 3 1 Granbull FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +211 12 3 2 Qwilfish FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 32, Super Rod +211 12 3 3 Qwilfish FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Obsidian Fieldlands: near Ramanas Island (Hisuian Form) Cobalt Coastlands: near Bathers' Lagoon, near Hideaway Bay, near Tombolo Walk, near Sand's Reach, Tranquility Cove, Islespy Shore and nearby (additional Alpha icon.png), Lunker's Lair, near Seagrass Haven, near Firespit Island, massive mass outbreaks (Hisuian Form) +212 12 3 4 Scizor FALSE FALSE FALSE FALSE Red/Yellow LG:Pikachu Kanto Red,Yellow,LG: Pikachu Johto It evolves from Scyther when traded while holding a Metal Coat. +212 12 3 5 Scizor FALSE FALSE FALSE Female FALSE Red/Yellow LG:Pikachu Kanto Red,Yellow,LG: Pikachu Johto It evolves from Scyther when traded while holding a Metal Coat. +213 12 3 6 Shuckle FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +214 12 4 1 Heracross FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +214 12 4 2 Heracross FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS #REF! +215 12 4 3 Sneasel FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Ice Path, b3f, 6pm-4am +215 12 4 4 Sneasel FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Ice Path, b3f, 6pm-4am +215 12 4 5 Sneasel FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Coronet Highlands: near Celestica Trail, near Primeval Grotto, massive mass outbreaks (Hisuian Form) Alabaster Icelands: near Avalugg's Legacy (additional Alpha icon.png), Glacier Terrace, near Pearl Settlement (Hisuian Form) +215 12 4 6 Sneasel FALSE FALSE FALSE Female-Hisuian FALSE Arceus Hisui PLA Coronet Highlands: near Celestica Trail, near Primeval Grotto, massive mass outbreaks (Hisuian Form) Alabaster Icelands: near Avalugg's Legacy (additional Alpha icon.png), Glacier Terrace, near Pearl Settlement (Hisuian Form) +216 12 5 1 Teddiursa FALSE FALSE FALSE FALSE Gold/Crystal SS Johto Gold,Crystal,SS Dark Cave, Blackthorn City Entrance, 4am-10am +217 12 5 2 Ursaring FALSE FALSE FALSE FALSE Gold/Crystal SS Johto Gold,Crystal,SS +217 12 5 3 Ursaring FALSE FALSE FALSE Female FALSE Gold/Crystal SS Johto Gold,Crystal,SS +218 12 5 4 Slugma FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 17, 10am-6pm +219 12 5 5 Magcargo FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +220 12 5 6 Swinub FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +221 13 1 1 Piloswine FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +221 13 1 2 Piloswine FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +222 13 1 3 Corsola FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 34, Super Rod, 4am-6pm +222 13 1 4 Corsola FALSE FALSE FALSE Galarian FALSE Shield Galar Shield +223 13 1 5 Remoraid FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Route 44 +224 13 1 6 Octillery FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Evolves from remoraid +224 13 2 1 Octillery FALSE FALSE FALSE Female FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Evolves from remoraid +225 13 2 2 Delibird FALSE FALSE FALSE FALSE Silver/Crystal SS Johto Silver,Crystal,SS Ice Path, 6pm-4am +226 13 2 3 Mantine FALSE FALSE FALSE FALSE Gold/Crystal HG Johto Gold,Crystal,HG #REF! +227 13 2 4 Skarmory FALSE FALSE FALSE FALSE Silver/Crystal SS Johto Silver,Crystal,SS Route 45, 4am-6pm +228 13 2 5 Houndour FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 7, 6pm-4am +229 13 2 6 Houndoom FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +229 13 3 1 Houndoom FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +230 13 3 2 Kingdra FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Seadra when traded while holding a Dragon Scale. +231 13 3 3 Phanpy FALSE FALSE FALSE FALSE Silver/Crystal HG Johto Silver,Crystal,HG Route 45, 4am-10am +232 13 3 4 Donphan FALSE FALSE FALSE FALSE Silver/Crystal HG Johto Silver,Crystal,HG +232 13 3 5 Donphan FALSE FALSE FALSE Female FALSE Silver/Crystal HG Johto Silver,Crystal,HG +233 13 3 6 Porygon2 FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +234 13 4 1 Stantler FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 37, 6pm-4am +235 13 4 2 Smeargle FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Ruins Of Alph, Outside, 10am-6pm +236 13 4 3 Tyrogue FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Breed with Ditto +237 13 4 4 Hitmontop FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Evolve tyrogue at level 20 with equal attack and defence (box 2) +238 13 4 5 Smoochum FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Have to remove 'dizzy punch' move as transfer wrongly thinks it's an illegal move +239 13 4 6 Elekid FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Gift egg +240 13 5 1 Magby FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Gift egg +241 13 5 2 Miltank FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Route 38, 4am-6pm +242 13 5 3 Blissey FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Johto It evolves from Chansey when leveled up with high friendship. +243 13 5 4 Raikou FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +244 13 5 5 Entei FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +245 13 5 6 Suicune FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS +246 14 1 1 Larvitar FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Mt Silver, Top, 4am-6pm +247 14 1 2 Pupitar FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Evolves from larvitar +248 14 1 3 Tyranitar FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Evolves from pupitar +249 14 1 4 Lugia FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS https://strategywiki.org/wiki/Pok%C3%A9mon_Gold_and_Silver/Whirl_Islands +250 14 1 5 Ho-Oh FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS https://strategywiki.org/wiki/Pok%C3%A9mon_Gold_and_Silver/Tin_Tower +251 14 1 6 Celebi FALSE FALSE FALSE FALSE Crystal Johto Crystal +252 15 1 1 Treecko FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +253 15 1 2 Grovyle FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +254 15 1 3 Sceptile FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +255 15 1 4 Torchic FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +255 15 1 5 Torchic FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +256 15 1 6 Combusken FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +256 15 2 1 Combusken FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +257 15 2 2 Blaziken FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +257 15 2 3 Blaziken FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +258 15 2 4 Mudkip FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +259 15 2 5 Marshtomp FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +260 15 2 6 Swampert FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +261 15 3 1 Poochyena FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +262 15 3 2 Mightyena FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +263 15 3 3 Zigzagoon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS X/ R2 +263 15 3 4 Zigzagoon FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +264 15 3 5 Linoone FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +264 15 3 6 Linoone FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield Evolves at level 20 +265 15 4 1 Wurmple FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +266 15 4 2 Silcoon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +267 15 4 3 Beautifly FALSE FALSE FALSE male FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +267 15 4 4 Beautifly FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +268 15 4 5 Cascoon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +269 15 4 6 Dustox FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +269 15 5 1 Dustox FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +270 15 5 2 Lotad FALSE FALSE FALSE FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +271 15 5 3 Lombre FALSE FALSE FALSE FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +272 15 5 4 Ludicolo FALSE FALSE FALSE FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +272 15 5 5 Ludicolo FALSE FALSE FALSE Female FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +273 15 5 6 Seedot FALSE FALSE FALSE FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +274 16 1 1 Nuzleaf FALSE FALSE FALSE FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +274 16 1 2 Nuzleaf FALSE FALSE FALSE Female FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +275 16 1 3 Shiftry FALSE FALSE FALSE FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +275 16 1 4 Shiftry FALSE FALSE FALSE Female FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +276 16 1 5 Taillow FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +277 16 1 6 Swellow FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +278 16 2 1 Wingull FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +279 16 2 2 Pelipper FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +280 16 2 3 Ralts FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +281 16 2 4 Kirlia FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +282 16 2 5 Gardevoir FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +283 16 2 6 Surskit FALSE FALSE FALSE FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +284 16 3 1 Masquerain FALSE FALSE FALSE FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +285 16 3 2 Shroomish FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +286 16 3 3 Breloom FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +287 16 3 4 Slakoth FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +288 16 3 5 Vigoroth FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +289 16 3 6 Slaking FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +290 16 4 1 Nincada FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +291 16 4 2 Ninjask FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +292 16 4 3 Shedinja FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS - +293 16 4 4 Whismur FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +294 16 4 5 Loudred FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS #REF! +295 16 4 6 Exploud FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +296 16 5 1 Makuhita FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +297 16 5 2 Hariyama FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +298 16 5 3 Azurill FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +299 16 5 4 Nosepass FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Granite cave, rocks, rock smash (mach bike) +300 16 5 5 Skitty FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +301 16 5 6 Delcatty FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +302 17 1 1 Sableye FALSE FALSE FALSE FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +303 17 1 2 Mawile FALSE FALSE FALSE FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +304 17 1 3 Aron FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Granite cave or victory road +305 17 1 4 Lairon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +306 17 1 5 Aggron FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +307 17 1 6 Meditite FALSE FALSE FALSE FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +307 17 2 1 Meditite FALSE FALSE FALSE Female FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +308 17 2 2 Medicham FALSE FALSE FALSE FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +308 17 2 3 Medicham FALSE FALSE FALSE Female FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +309 17 2 4 Electrike FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +310 17 2 5 Manectric FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +311 17 2 6 Plusle FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +312 17 3 1 Minun FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +313 17 3 2 Volbeat FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +314 17 3 3 Illumise FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +315 17 3 4 Roselia FALSE FALSE FALSE FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +315 17 3 5 Roselia FALSE FALSE FALSE Female FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS +316 17 3 6 Gulpin FALSE FALSE FALSE male FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +316 17 4 1 Gulpin FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +317 17 4 2 Swalot FALSE FALSE FALSE male FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +317 17 4 3 Swalot FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +318 17 4 4 Carvanha FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +319 17 4 5 Sharpedo FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +320 17 4 6 Wailmer FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Good rod or super rod in most water +321 17 5 1 Wailord FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS level 40 +322 17 5 2 Numel FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +322 17 5 3 Numel FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +323 17 5 4 Camerupt FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +323 17 5 5 Camerupt FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +324 17 5 6 Torkoal FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +325 18 1 1 Spoink FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +326 18 1 2 Grumpig FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +327 18 1 3 Spinda FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +328 18 1 4 Trapinch FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +329 18 1 5 Vibrava FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from trapinch +330 18 1 6 Flygon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from vibrava +331 18 2 1 Cacnea FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +332 18 2 2 Cacturne FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +332 18 2 3 Cacturne FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +333 18 2 4 Swablu FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +334 18 2 5 Altaria FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +335 18 2 6 Zangoose FALSE FALSE FALSE FALSE Ruby Omega Ruby Hoenn Ruby,OR +336 18 3 1 Seviper FALSE FALSE FALSE FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +337 18 3 2 Lunatone FALSE FALSE FALSE FALSE Sapphire Alpha Sapphire Hoenn Sapphire,AS +338 18 3 3 Solrock FALSE FALSE FALSE FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +339 18 3 4 Barboach FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 111, Route 114, Route 120, Meteor Falls, Scorched Slab and Victory Road by either fishing with the Good Rod or Super Rod. +340 18 3 5 Whiscash FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +341 18 3 6 Corphish FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 102, Route 117, Route 123, and Petalburg City with good rod +342 18 4 1 Crawdaunt FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +343 18 4 2 Baltoy FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +344 18 4 3 Claydol FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +345 18 4 4 Lileep FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +346 18 4 5 Cradily FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +347 18 4 6 Anorith FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +348 18 5 1 Armaldo FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +349 18 5 2 Feebas FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +350 18 5 3 Milotic FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +350 18 5 4 Milotic FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Need to catch a female Feebas for this one attach a Prism Scale, which in Generation VI is only available in X & Y, to Feebas and trade it, it will evolve into Milotic. +351 18 5 5 Castform FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +352 18 5 6 Kecleon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +353 19 1 1 Shuppet FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +354 19 1 2 Banette FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +355 19 1 3 Duskull FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +356 19 1 4 Dusclops FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Evolves from duskull +357 19 1 5 Tropius FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +358 19 1 6 Chimecho FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +359 19 2 1 Absol FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 120, Tall Grass +360 19 2 2 Wynaut FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +361 19 2 3 Snorunt FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Shoal Cave, Cave - Low Tide (3am-9am, 3pm-9pm) +362 19 2 4 Glalie FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from snorunt +363 19 2 5 Spheal FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Shoal Cave Cave +364 19 2 6 Sealeo FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from spheal +365 19 3 1 Walrein FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from sealeo +366 19 3 2 Clamperl FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 107 Seaweed Diving Route 124 Seaweed Diving Route 126 Seaweed Diving Route 128 Seaweed Diving Route 129 Seaweed Diving Route 130 Seaweed Diving +367 19 3 3 Huntail FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Trade clamperl w/ Deep Sea Tooth +368 19 3 4 Gorebyss FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Trade clamperl w/ Deep Sea Scale +369 19 3 5 Relicanth FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 107 Seaweed Diving Route 124 Seaweed Diving Route 126 Seaweed Diving Route 128 Seaweed Diving Route 129 Seaweed Diving Route 130 Seaweed Diving +369 19 3 6 Relicanth FALSE FALSE FALSE Female FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 107 Seaweed Diving Route 124 Seaweed Diving Route 126 Seaweed Diving Route 128 Seaweed Diving Route 129 Seaweed Diving Route 130 Seaweed Diving +370 19 4 1 Luvdisc FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Route 128, Ever Grande City, Victory Road (Good Rod or Super Rod) +371 19 4 2 Bagon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Meteor Falls, Basement - Small Room +372 19 4 3 Shelgon FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from bagon +373 19 4 4 Salamence FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from shelgon +374 19 4 5 Beldum FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Receive as a gift from Steven's house in Mossdeep City after becoming the Pokemon League Champion. +375 19 4 6 Metang FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from beldum +376 19 5 1 Metagross FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS evolves from metang +377 19 5 2 Regirock FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +378 19 5 3 Regice FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +379 19 5 4 Registeel FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +380 19 5 5 Latias FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +381 19 5 6 Latios FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +382 20 1 1 Kyogre FALSE FALSE FALSE FALSE Sapphire/Emerald Alpha Sapphire Hoenn Sapphire,Emerald,AS +383 20 1 2 Groudon FALSE FALSE FALSE FALSE Ruby/Emerald Omega Ruby Hoenn Ruby,Emerald,OR +384 20 1 3 Rayquaza FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +385 20 1 4 Jirachi FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Gen the event via Powersaves, alt BDSP w/ SwSh Save Data +386 20 1 5 Deoxys FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +386 20 1 6 Deoxys FALSE FALSE FALSE Attack Form FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +386 20 2 1 Deoxys FALSE FALSE FALSE Defense Form FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +386 20 2 2 Deoxys FALSE FALSE FALSE Speed Form FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS +387 21 1 1 Turtwig FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +388 21 1 2 Grotle FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +389 21 1 3 Torterra FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +390 21 1 4 Chimchar FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +391 21 1 5 Monferno FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +392 21 1 6 Infernape FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +393 21 2 1 Piplup FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +394 21 2 2 Prinplup FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +395 21 2 3 Empoleon FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +396 21 2 4 Starly FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +396 21 2 5 Starly FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +397 21 2 6 Staravia FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +397 21 3 1 Staravia FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +398 21 3 2 Staraptor FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +398 21 3 3 Staraptor FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +399 21 3 4 Bidoof FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +399 21 3 5 Bidoof FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +400 21 3 6 Bibarel FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +400 21 4 1 Bibarel FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +401 21 4 2 Kricketot FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +401 21 4 3 Kricketot FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +402 21 4 4 Kricketune FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +402 21 4 5 Kricketune FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +403 21 4 6 Shinx FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +403 21 5 1 Shinx FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +404 21 5 2 Luxio FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +404 21 5 3 Luxio FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +405 21 5 4 Luxray FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +405 21 5 5 Luxray FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +406 21 5 6 Budew FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +407 22 1 1 Roserade FALSE FALSE FALSE FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS Sinnoh It evolves from Roselia when exposed to a Shiny Stone. +407 22 1 2 Roserade FALSE FALSE FALSE Female FALSE Ruby/Sapphire ORAS Hoenn Ruby,Sapphire,OR,AS Sinnoh It evolves from Roselia when exposed to a Shiny Stone. +408 22 1 3 Cranidos FALSE FALSE FALSE FALSE Diamond/Platinum Brilliant Diamond Sinnoh Diamond,Platinum,BD It is resurrected from a Skull Fossil +409 22 1 4 Rampardos FALSE FALSE FALSE FALSE Diamond/Platinum Brilliant Diamond Sinnoh Diamond,Platinum,BD Evolves from Cranidos starting at level 30. +410 22 1 5 Shieldon FALSE FALSE FALSE FALSE Pearl/Platinum Shining Pearl Sinnoh Pearl,Platinum,SP +411 22 1 6 Bastiodon FALSE FALSE FALSE FALSE Pearl/Platinum Shining Pearl Sinnoh Pearl,Platinum,SP +412 22 2 1 Burmy FALSE FALSE FALSE Leaf Cloak FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +412 22 2 2 Burmy FALSE FALSE FALSE Sand Cloak FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +412 22 2 3 Burmy FALSE FALSE FALSE Trash Cloak FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +413 22 2 4 Wormadam FALSE FALSE FALSE Leaf Cloak FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +413 22 2 5 Wormadam FALSE FALSE FALSE Sand Cloak FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +413 22 2 6 Wormadam FALSE FALSE FALSE Trash Cloak FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +414 22 3 1 Mothim FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +415 22 3 2 Combee FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +415 22 3 3 Combee FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +416 22 3 4 Vespiquen FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +417 22 3 5 Pachirisu FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +417 22 3 6 Pachirisu FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +418 22 4 1 Buizel FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +418 22 4 2 Buizel FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +419 22 4 3 Floatzel FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +419 22 4 4 Floatzel FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +420 22 4 5 Cherubi FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +421 22 4 6 Cherrim FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +422 22 5 1 Shellos FALSE FALSE FALSE East Sea FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +422 22 5 2 Shellos FALSE FALSE FALSE West Sea FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +423 22 5 3 Gastrodon FALSE FALSE FALSE East Sea FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +423 22 5 4 Gastrodon FALSE FALSE FALSE West Sea FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +424 22 5 5 Ambipom FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Aipom when leveled up while knowing Double Hit. +424 22 5 6 Ambipom FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Aipom when leveled up while knowing Double Hit. +425 23 1 1 Drifloon FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +426 23 1 2 Drifblim FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +427 23 1 3 Buneary FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +428 23 1 4 Lopunny FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +429 23 1 5 Mismagius FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Misdreavus when exposed to a Dusk Stone. +430 23 1 6 Honchkrow FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Murkrow when exposed to a Dusk Stone. +431 23 2 1 Glameow FALSE FALSE FALSE FALSE Pearl Shining Pearl Sinnoh Pearl,SP +432 23 2 2 Purugly FALSE FALSE FALSE FALSE Pearl Shining Pearl Sinnoh Pearl,SP +433 23 2 3 Chingling FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +434 23 2 4 Stunky FALSE FALSE FALSE FALSE Diamond Brilliant Diamond Sinnoh Diamond,BD Routes 206, 214, and 221 Grand Underground - Grassland Cave, Spacious Cave, Riverbank Cave, Sunlit Cavern, Still-Water Cavern (After obtaining TM96 (Strength)) +435 23 2 5 Skuntank FALSE FALSE FALSE FALSE Diamond Brilliant Diamond Sinnoh Diamond,BD Evolves from Stunky starting at level 34. +436 23 2 6 Bronzor FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +437 23 3 1 Bronzong FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +438 23 3 2 Bonsly FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +439 23 3 3 Mime Jr. FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +440 23 3 4 Happiny FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +441 23 3 5 Chatot FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +442 23 3 6 Spiritomb FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +443 23 4 1 Gible FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +443 23 4 2 Gible FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +444 23 4 3 Gabite FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +444 23 4 4 Gabite FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +445 23 4 5 Garchomp FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +445 23 4 6 Garchomp FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +446 23 5 1 Munchlax FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +447 23 5 2 Riolu FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +448 23 5 3 Lucario FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +449 23 5 4 Hippopotas FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +449 23 5 5 Hippopotas FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +450 23 5 6 Hippowdon FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +450 24 1 1 Hippowdon FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +451 24 1 2 Skorupi FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +452 24 1 3 Drapion FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +453 24 1 4 Croagunk FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +453 24 1 5 Croagunk FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +454 24 1 6 Toxicroak FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +454 24 2 1 Toxicroak FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +455 24 2 2 Carnivine FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +456 24 2 3 Finneon FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +456 24 2 4 Finneon FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +457 24 2 5 Lumineon FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +457 24 2 6 Lumineon FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +458 24 3 1 Mantyke FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +459 24 3 2 Snover FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +459 24 3 3 Snover FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +460 24 3 4 Abomasnow FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +460 24 3 5 Abomasnow FALSE FALSE FALSE Female FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +461 24 3 6 Weavile FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Sneasel when leveled up while holding a Razor Claw during the night. +461 24 4 1 Weavile FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Sneasel when leveled up while holding a Razor Claw during the night. +462 24 4 2 Magnezone FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh It evolves from Magneton when leveled up in a special magnetic field or when exposed to a Thunder Stone. +463 24 4 3 Lickilicky FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh It evolves from Lickitung when leveled up while knowing Rollout. +464 24 4 4 Rhyperior FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh It evolves from Rhydon when traded while holding a Protector. +464 24 4 5 Rhyperior FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh It evolves from Rhydon when traded while holding a Protector. +465 24 4 6 Tangrowth FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh It evolves from Tangela when leveled up while knowing Ancient Power. +465 24 5 1 Tangrowth FALSE FALSE FALSE Female FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh It evolves from Tangela when leveled up while knowing Ancient Power. +466 24 5 2 Electivire FALSE FALSE FALSE FALSE Red LG: Pikachu/Eevee Kanto Red,LG: Pikachu,LG: Eevee Sinnoh It evolves from Electabuzz when traded while holding an Electirizer. +467 24 5 3 Magmortar FALSE FALSE FALSE FALSE Blue LG: Pikachu/Eevee Kanto Blue,LG: Pikachu,LG: Eevee Sinnoh It evolves from Magmar when traded while holding a Magmarizer. +468 24 5 4 Togekiss FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Togetic when exposed to a Shiny Stone. +469 24 5 5 Yanmega FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Yanma when leveled up while knowing Ancient Power. +470 24 5 6 Leafeon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh evolves from Eevee when exposed to a Moss Rock or, from Generation VIII onwards, when exposed to a Leaf Stone. Eevee will always evolve into Leafeon when leveled up near a Moss Rock, even if the evolutionary conditions for it to evolve into Espeon, Umbreon, or Sylveon have also been met. The Moss Rock is not present in Pokémon HeartGold and SoulSilver, Pokémon Sword and Shield, or Pokémon Scarlet and Violet. +471 25 1 1 Glaceon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Sinnoh evolves from Eevee when exposed to an Ice Rock or, from Generation VIII onwards, when exposed to an Ice Stone. Eevee will always evolve into Glaceon when leveled up near an Ice Rock, even if the evolutionary conditions for it to evolve into Espeon, Umbreon, or Sylveon have also been met. The Ice Rock is not present in Pokémon HeartGold and SoulSilver, Pokémon Sword and Shield, or Pokémon Scarlet and Violet, and the Ice Stone is not obtainable in Pokémon Brilliant Diamond and Shining Pearl. +472 25 1 2 Gliscor FALSE FALSE FALSE FALSE Gold/Crystal HG Johto Gold,Crystal,HG Sinnoh It evolves from Gligar when leveled up while holding a Razor Fang during the night. +473 25 1 3 Mamoswine FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Piloswine when leveled up while knowing Ancient Power. +473 25 1 4 Mamoswine FALSE FALSE FALSE Female FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Sinnoh It evolves from Piloswine when leveled up while knowing Ancient Power. +474 25 1 5 Porygon-Z FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee +475 25 1 6 Gallade FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Sinnoh It evolves from a male Kirlia when exposed to a Dawn Stone. +476 25 2 1 Probopass FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Sinnoh It evolves from Nosepass when leveled up in a special magnetic field or when exposed to a Thunder Stone. +477 25 2 2 Dusknoir FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Sinnoh It evolves from Dusclops when traded while holding a Reaper Cloth. +478 25 2 3 Froslass FALSE FALSE FALSE FALSE Ruby/Sapphire/Emerald ORAS Hoenn Ruby,Sapphire,Emerald,OR,AS Sinnoh It evolves from a female Snorunt when exposed to a Dawn Stone. +479 25 2 4 Rotom FALSE FALSE FALSE Lightbulb FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +479 25 2 5 Rotom FALSE FALSE FALSE Oven FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +479 25 2 6 Rotom FALSE FALSE FALSE Washer FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +479 25 3 1 Rotom FALSE FALSE FALSE Fridge FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +479 25 3 2 Rotom FALSE FALSE FALSE Fan FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +479 25 3 3 Rotom FALSE FALSE FALSE Mower FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +480 25 3 4 Uxie FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +481 25 3 5 Mesprit FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +482 25 3 6 Azelf FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +483 25 4 1 Dialga FALSE FALSE FALSE FALSE Diamond/Platinum Brilliant Diamond Sinnoh Diamond,Platinum,BD Spear Pillar (Only one) +484 25 4 2 Palkia FALSE FALSE FALSE FALSE Pearl/Platinum Shining Pearl Sinnoh Pearl,Platinum,SP +485 25 4 3 Heatran FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP +486 25 4 4 Regigigas FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP Snowpoint Temple (requires Regirock, Regice, and Registeel in the player's party) (Only one) +487 25 4 5 Giratina FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP Turnback Cave (Only one) (Altered Forme) +488 25 4 6 Cresselia FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP Roaming Sinnoh (Only one) +489 25 5 1 Phione FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum Arceus Sinnoh Diamond,Pearl,Platinum,PLA +490 25 5 2 Manaphy FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum Arceus Sinnoh Diamond,Pearl,Platinum,PLA +491 25 5 3 Darkrai FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum Arceus Sinnoh Diamond,Pearl,Platinum,PLA +492 25 5 4 Shaymin FALSE FALSE FALSE Normal Form FALSE Diamond/Pearl/Platinum Arceus Sinnoh Diamond,Pearl,Platinum,PLA +492 25 5 5 Shaymin FALSE FALSE FALSE Sky Form FALSE Diamond/Pearl/Platinum Arceus Sinnoh Diamond,Pearl,Platinum,PLA Needs to have its form changed in PLA to be able to keep it in Home, which requires having a completed Sword or Shield save file +493 25 5 6 Arceus FALSE FALSE FALSE FALSE Diamond/Pearl/Platinum BDSP Sinnoh Diamond,Pearl,Platinum,BD,SP Hall of Origin (Only one*)Version 1.3.0+ +494 26 1 1 Victini FALSE FALSE FALSE FALSE Black/White Unova Black,White DNS Exploit +495 26 1 2 Snivy FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +496 26 1 3 Servine FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +497 26 1 4 Serperior FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +498 26 1 5 Tepig FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +499 26 1 6 Pignite FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Tepig at level 17 +500 26 2 1 Emboar FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Pignite at level 36 +501 26 2 2 Oshawott FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +502 26 2 3 Dewott FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +503 26 2 4 Samurott FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 36 +503 26 2 5 Samurott FALSE FALSE FALSE Hisuian FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Hisui 36 +504 26 2 6 Patrat FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +505 26 3 1 Watchog FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Patrat at level 20 +506 26 3 2 Lillipup FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +507 26 3 3 Herdier FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Herdier at level 16 +508 26 3 4 Stoutland FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Stoutland at level 32 +509 26 3 5 Purrloin FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 2 and 3, Dreamyard +510 26 3 6 Liepard FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Purrloin at level 20 +511 26 4 1 Pansage FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +512 26 4 2 Simisage FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Pansage with a leaf stone +513 26 4 3 Pansear FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (inner) and Lostlorn Forest (rustling grass) +514 26 4 4 Simisear FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Pansear with a fire stone +515 26 4 5 Panpour FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (inner) and Lostlorn Forest (rustling grass) +516 26 4 6 Simipour FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Panpour with a water stone +517 26 5 1 Munna FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Dreamyard +518 26 5 2 Musharna FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Munna with a moon stone +519 26 5 3 Pidove FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 3, Pinwheel Forest (inner) +520 26 5 4 Tranquill FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Pidove at level 21 +521 26 5 5 Unfezant FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Tranquill at level 32 +521 26 5 6 Unfezant FALSE FALSE FALSE Female FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Tranquill at level 32 +522 27 1 1 Blitzle FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 3 +523 27 1 2 Zebstrika FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Blitzle at level 27 +524 27 1 3 Roggenrola FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Wellspring Cave +525 27 1 4 Boldore FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Roggenrola at level 25 +526 27 1 5 Gigalith FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Boldore when traded +527 27 1 6 Woobat FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Wellspring Cave, Mistralton Cave, Twist Mountain, Challenger's Cave, Victory Road +528 27 2 1 Swoobat FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Woobat with high friendship +529 27 2 2 Drilbur FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Wellspring Cave, Chargestone Cave, Mistralton Cave, Twist Mountain (Dust cloud) +530 27 2 3 Excadrill FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Drilbur at level 31 +531 27 2 4 Audino FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, and 18, P2 Laboratory, Dreamyard, Pinwheel Forest, Lostlorn Forest, Dragonspiral Tower, Village Bridge, Giant Chasm, Abundant Shrine, Cold Storage (rustling grass) +532 27 2 5 Timburr FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (outside), Cold Storage +533 27 2 6 Gurdurr FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Timburr at level 25 +534 27 3 1 Conkeldurr FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Gurdurr when traded +535 27 3 2 Tympole FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (outside) +536 27 3 3 Palpitoad FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Tympole at level 25 +537 27 3 4 Seismitoad FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Papitoad at level 36 +538 27 3 5 Throh FALSE FALSE FALSE FALSE White Black 2/White 2 Unova White,Black2,White2 Routes 10, 15, and 18, Pinwheel Forest (outside) (rustling grass) +539 27 3 6 Sawk FALSE FALSE FALSE FALSE Black Black 2/White 2 Unova Black,Black2,White2 Routes 10, 15, and 18, Pinwheel Forest (outside) (tall grass) +540 27 4 1 Sewaddle FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (inner) +541 27 4 2 Swadloon FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Sewaddle at level 20 +542 27 4 3 Leavanny FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Swadloon with high friendship +543 27 4 4 Venipede FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (inner), Lostlorn Forest +544 27 4 5 Whirlipede FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Venipede at level 22 +545 27 4 6 Scolipede FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Whirlipede at level 30 +546 27 5 1 Cottonee FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Pinwheel Forest (inner), Lostlorn Forest, Abundant Shrine +547 27 5 2 Whimsicott FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Evolves from cottonee with a sun stone +548 27 5 3 Petilil FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Pinwheel Forest (inner), Lostlorn Forest, Abundant Shrine +549 27 5 4 Lilligant FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Evolves from Petilil with a sun stone +549 27 5 5 Lilligant FALSE FALSE FALSE Hisuian FALSE White White 2 Unova White,White2 Hisui In Hisui, Petilil evolves into Hisuian Lilligant when exposed to a Sun Stone. +550 27 5 6 Basculin FALSE FALSE FALSE Red-striped FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 1, 3, 6, 11, 14, Striaton City, Wellspring Cave, Pinwheel Forest, Dragonspiral Tower, Challenger's Cave, Victory Road, Village Bridge, Giant Chasm, Abundant Shrine, Lostlorn Forest (Surfing or fishing) (Red-Striped Form) (Rippling water) (Blue-Striped Form) +550 28 1 1 Basculin FALSE FALSE FALSE Blue-striped FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 1, 3, 6, 11, 14, Striaton City, Wellspring Cave, Pinwheel Forest, Dragonspiral Tower, Challenger's Cave, Victory Road, Village Bridge, Giant Chasm, Abundant Shrine, Lostlorn Forest (Surfing or fishing) (Red-Striped Form) (Rippling water) (Blue-Striped Form) +550 28 1 2 Basculin FALSE FALSE FALSE White-striped FALSE Arceus Hisui PLA Cobalt Coastlands: Tranquility Cove, near Islespy Shore, near Firespit Island, massive mass outbreaks (White-Striped Form) Coronet Highlands: Fabled Spring (White-Striped Form) Alabaster Icelands: near Avalugg's Legacy, Heart's Crag, Lake Acuity, near Pearl Settlement (White-Striped Form) +551 28 1 3 Sandile FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 4, Desert Resort, Relic Castle +552 28 1 4 Krokorok FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Sandile at level 29 +553 28 1 5 Krookodile FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Krokorok at level 40 +554 28 1 6 Darumaka FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 4, Desert Resort +554 28 2 1 Darumaka FALSE FALSE FALSE Galarian FALSE Sword Galar Sword Routes 8 and 10 (Galarian Form) Dusty Bowl, Giant's Cap, Hammerlocke Hills, Lake of Outrage, Stony Wilderness (Max Raid Battle) (Galarian Form) +555 28 2 2 Darmanitan FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Darumaka at level 35 +555 28 2 3 Darmanitan FALSE FALSE FALSE Galarian FALSE Sword Galar Sword Evolves from Darumake when exposed to an Ice Stone. +556 28 2 4 Maractus FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Desert Resort +557 28 2 5 Dwebble FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 18 and Desert Resort +558 28 2 6 Crustle FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Dwebble at level 34 +559 28 3 1 Scraggy FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 4 and 18, Desert Resort, P2 Laboratory Route 1 (dark grass) +560 28 3 2 Scrafty FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Scraggy at level 39 +561 28 3 3 Sigilyph FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Desert Resort +562 28 3 4 Yamask FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Relic Castle +562 28 3 5 Yamask FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +563 28 3 6 Cofagrigus FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Yamask at level 34 +564 28 4 1 Tirtouga FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Resurrected from a Cover Fossil +565 28 4 2 Carracosta FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Tirtouga at level 37 +566 28 4 3 Archen FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Resurrected from a Plume Fossil +567 28 4 4 Archeops FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Archen at level 37 +568 28 4 5 Trubbish FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 5 and 16 +569 28 4 6 Garbodor FALSE FALSE FALSE TRUE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Trubbish at level 36 +570 28 5 1 Zorua FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Castelia City (requires fateful encounter Celebi) Breed Zoroark (requires Shiny fateful encounter Entei, Raikou, or Suicune) +570 28 5 2 Zorua FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Alabaster Icelands: near Avalugg's Legacy (mass outbreaks), near Glacier Terrace, Icepeak Cavern, massive mass outbreaks (Hisuian Form) +571 28 5 3 Zoroark FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Zorua at level 30 +571 28 5 4 Zoroark FALSE FALSE FALSE Hisuian FALSE Arceus Hisui PLA Evolves from Zorua at level 30 +572 28 5 5 Minccino FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +573 28 5 6 Cinccino FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Minccino with a shiny stone +574 29 1 1 Gothita FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Routes 5 and 16 +575 29 1 2 Gothorita FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Evolves from Gothita at level 32 +576 29 1 3 Gothitelle FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Evolves from Gothorita at level 41 +577 29 1 4 Solosis FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Route 5 and Route 16 +578 29 1 5 Duosion FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Evolves from Solosis at level 32 +579 29 1 6 Reuniclus FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Evolves from Reuniclus at level 41 +580 29 2 1 Ducklett FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Driftveil Drawbridge (Shadow) +581 29 2 2 Swanna FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Ducklett at level 35 +582 29 2 3 Vanillite FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Cold Storage Route 6, Dragonspiral Tower (Winter) +583 29 2 4 Vanillish FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Vanillite at level 35 +584 29 2 5 Vanilluxe FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Vanillish at level 47 +585 29 2 6 Deerling FALSE FALSE FALSE Spring FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +585 29 3 1 Deerling FALSE FALSE FALSE Summer FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +585 29 3 2 Deerling FALSE FALSE FALSE Autumn FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +585 29 3 3 Deerling FALSE FALSE FALSE Winter FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +586 29 3 4 Sawsbuck FALSE FALSE FALSE Spring FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Deerling at level 34 +586 29 3 5 Sawsbuck FALSE FALSE FALSE Summer FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +586 29 3 6 Sawsbuck FALSE FALSE FALSE Autumn FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +586 29 4 1 Sawsbuck FALSE FALSE FALSE Winter FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 +587 29 4 2 Emolga FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, and 16, Dragonspiral Tower, Village Bridge, Giant Chasm, Abundant Shrine, Lostlorn Forest (rustling grass) +588 29 4 3 Karrablast FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 6 and 11 +589 29 4 4 Escavalier FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Karrablast when traded for a Shelmet, a Pokémon that evolves into Accelgor simultaneously. Neither evolves if at least one holds an Everstone during the trade. +590 29 4 5 Foongus FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 6, 7, and 10 (both in tall grass and as fake items) +591 29 4 6 Amoonguss FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Foongus at level 39 +592 29 5 1 Frillish FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 4, 17, and 18, Driftveil City, P2 Laboratory (Surfing) +592 29 5 2 Frillish FALSE FALSE FALSE Female FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 4, 17, and 18, Driftveil City, P2 Laboratory (Surfing) +593 29 5 3 Jellicent FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Frillish at level 40 +593 29 5 4 Jellicent FALSE FALSE FALSE Female FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Frillish at level 40 +594 29 5 5 Alomomola FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 4, 17, 18, Driftveil City, P2 Laboratory (Surfing in rippling water) +595 29 5 6 Joltik FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Chargestone Cave +596 30 1 1 Galvantula FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Joltik at level 36 +597 30 1 2 Ferroseed FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Chargestone Cave +598 30 1 3 Ferrothorn FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Ferroseed at level 40 +599 30 1 4 Klink FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Chargestone Cave, P2 Laboratory +600 30 1 5 Klang FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Klink at level 38 +601 30 1 6 Klinklang FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Klang at level 49 +602 30 2 1 Tynamo FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Chargestone Cave +603 30 2 2 Eelektrik FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Tynamo at level 39 +604 30 2 3 Eelektross FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Eelektrik with a thunder stone +605 30 2 4 Elgyem FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Celestial Tower +606 30 2 5 Beheeyem FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Elgyem at level 42 +607 30 2 6 Litwick FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Celestial Tower +608 30 3 1 Lampent FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Litwick at level 41 +609 30 3 2 Chandelure FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Lampent with a dusk stone +610 30 3 3 Axew FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Mistralton Cave +611 30 3 4 Fraxure FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Axew at level 38 +612 30 3 5 Haxorus FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Fraxure at level 48 +613 30 3 6 Cubchoo FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Twist Mountain Route 7, Dragonspiral Tower (Winter) +614 30 4 1 Beartic FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Cubchoo at level 37 +615 30 4 2 Cryogonal FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Twist Mountain +616 30 4 3 Shelmet FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 8, Icirrus City, Moor of Icirrus (Spring/Summer/Autumn) +617 30 4 4 Accelgor FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Shelmet when traded for a Karrablast, a Pokémon that evolves into Escavalier simultaneously. Neither evolves if at least one holds an Everstone during the trade. +618 30 4 5 Stunfisk FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 8, Icirrus City, Moor of Icirrus (puddles Spring/Summer/Autumn; fishing and surfing) +618 30 4 6 Stunfisk FALSE FALSE FALSE Galarian FALSE Sword/Shield Galar Sword,Shield +619 30 5 1 Mienfoo FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Dragonspiral Tower, Victory Road, Route 14 (regular grass only) +620 30 5 2 Mienshao FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Mienfoo at level 50 +621 30 5 3 Druddigon FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Dragonspiral Tower +622 30 5 4 Golett FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Dragonspiral Tower +623 30 5 5 Golurk FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Golett at level 43 +624 30 5 6 Pawniard FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Routes 9 and 11 +625 31 1 1 Bisharp FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Pawniard at level 52 +626 31 1 2 Bouffalant FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Route 10 +627 31 1 3 Rufflet FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Routes 10 and 11, Victory Road, Village Bridge +628 31 1 4 Braviary FALSE FALSE FALSE FALSE White White 2 Unova White,White2 Evolves from Rufflet at level 54 +628 31 1 5 Braviary FALSE FALSE FALSE Hisuian FALSE White White 2 Unova White,White2 Hisui Evolves from Rufflet at level 54 +629 31 1 6 Vullaby FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Routes 10 and 11, Victory Road, Village Bridge +630 31 2 1 Mandibuzz FALSE FALSE FALSE FALSE Black Black 2 Unova Black,Black2 Evolves from Vullaby at level 54 +631 31 2 2 Heatmor FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Victory Road +632 31 2 3 Durant FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Victory Road +633 31 2 4 Deino FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Victory Road +634 31 2 5 Zweilous FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Deino at level 50 +635 31 2 6 Hydreigon FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Zweilous at level 64 +636 31 3 1 Larvesta FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Hatch Egg received from a Pokémon Ranger inside a building on Route 18 +637 31 3 2 Volcarona FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Evolves from Larvesta at level 59 +638 31 3 3 Cobalion FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Mistralton Cave (Guidance Chamber) (Only one) +639 31 3 4 Terrakion FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Victory Road (Trial Chamber) (Only one) +640 31 3 5 Virizion FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Pinwheel Forest (Rumination Field) (Only one) +641 31 3 6 Tornadus FALSE FALSE FALSE Incarnate Form FALSE Black Black 2/White 2 Dream Radar Unova Black,Dream Radar https://bulbapedia.bulbagarden.net/wiki/Roaming_Pok%C3%A9mon#Generation_V_2 +641 31 4 1 Tornadus FALSE FALSE FALSE Therian Form FALSE Black 2/White 2 Dream Radar Black 2/White 2 Dream Radar Unova Dream Radar Only available via pokemon dream radar +642 31 4 2 Thundurus FALSE FALSE FALSE Incarnate Form FALSE White Black 2/White 2 Dream Radar Unova White,Dream Radar https://bulbapedia.bulbagarden.net/wiki/Roaming_Pok%C3%A9mon#Generation_V_2 +642 31 4 3 Thundurus FALSE FALSE FALSE Therian Form FALSE Black 2/White 2 Dream Radar Black 2/White 2 Dream Radar Unova Dream Radar Only available via pokemon dream radar +643 31 4 4 Reshiram FALSE FALSE FALSE FALSE Black White 2 Unova Black,White2 N's Castle (Only one) +644 31 4 5 Zekrom FALSE FALSE FALSE FALSE White Black 2 Unova White,Black2 N's Castle (Only one) +645 31 4 6 Landorus FALSE FALSE FALSE Incarnate Form FALSE Black/White Black 2/White 2 Dream Radar Unova Black,White,Dream Radar Abundant Shrine (requires Tornadus and Thundurus in party) (Only one) (Incarnate Forme) +645 31 5 1 Landorus FALSE FALSE FALSE Therian Form FALSE Black 2/White 2 Dream Radar Black 2/White 2 Dream Radar Unova Dream Radar Only available via pokemon dream radar +646 31 5 2 Kyurem FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Giant Chasm (Only one) +647 31 5 3 Keldeo FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 DNS Exploit (https://pkmnclassic.net/) +647 31 5 4 Keldeo FALSE FALSE FALSE Resolute Form FALSE Black 2/White 2 Unova Black2,White2 DNS Exploit +648 31 5 5 Meloetta FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 DNS Exploit +649 31 5 6 Genesect FALSE FALSE FALSE FALSE Black 2/White 2 Unova Black2,White2 DNS Exploit +650 32 1 1 Chespin FALSE FALSE FALSE FALSE X/Y Kalos X,Y +651 32 1 2 Quilladin FALSE FALSE FALSE FALSE X/Y Kalos X,Y +652 32 1 3 Chesnaught FALSE FALSE FALSE FALSE X/Y Kalos X,Y +653 32 1 4 Fennekin FALSE FALSE FALSE FALSE X/Y Kalos X,Y +654 32 1 5 Braixen FALSE FALSE FALSE FALSE X/Y Kalos X,Y +655 32 1 6 Delphox FALSE FALSE FALSE FALSE X/Y Kalos X,Y +656 32 2 1 Froakie FALSE FALSE FALSE FALSE X/Y Kalos X,Y +657 32 2 2 Frogadier FALSE FALSE FALSE FALSE X/Y Kalos X,Y +658 32 2 3 Greninja FALSE FALSE FALSE FALSE X/Y Kalos X,Y +658 32 2 4 Greninja FALSE FALSE FALSE Battle Bond Ability FALSE Moon Demo Alola Moon Demo +659 32 2 5 Bunnelby FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 2 - Grass Route 3 - Grass Route 5 - Grass Route 5 - Purple Flowers Route 22 - Grass +660 32 2 6 Diggersby FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 22 - Yellow Flowers Friend Safari +661 32 3 1 Fletchling FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 2 - Grass Route 3 - Grass Santalune Forest - Grass +662 32 3 2 Fletchinder FALSE FALSE FALSE FALSE X/Y Kalos X,Y +663 32 3 3 Talonflame FALSE FALSE FALSE FALSE X/Y Kalos X,Y +664 32 3 4 Scatterbug FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 2 - Grass Santalune Forest - Grass +665 32 3 5 Spewpa FALSE FALSE FALSE FALSE X/Y Kalos X,Y +666 32 3 6 Vivillon FALSE FALSE FALSE Icy Snow (Canada-Northwest Territories) FALSE X/Y Kalos X,Y Link to full list of Vivillon regions for XY/USUM (Friend Safari) +666 32 4 1 Vivillon FALSE FALSE FALSE Polar (Canada-Alberta) FALSE X/Y Kalos X,Y Note: Listed locations are not exclusive and had preference for locations compatible with US 3Ds systems. Check full list for other world 3DS sytems. +666 32 4 2 Vivillon FALSE FALSE FALSE Tundra (Japan-Aomori) FALSE X/Y Kalos X,Y If priority is having same OT, use GO postcards in S/V to obtain unobtaiable forms +666 32 4 3 Vivillon FALSE FALSE FALSE Continental (Argentina-Chubut) FALSE X/Y Kalos X,Y +666 32 4 4 Vivillon FALSE FALSE FALSE Garden (UK-England) [Not US compatible] FALSE X/Y Kalos X,Y +666 32 4 5 Vivillon FALSE FALSE FALSE Elegant (Japan) [Not US compatible] FALSE X/Y Kalos X,Y +666 32 4 6 Vivillon FALSE FALSE FALSE Meadow (France-Alsace) [Not US compatible] FALSE X/Y Kalos X,Y +666 32 5 1 Vivillon FALSE FALSE FALSE Modern (Canada-Manitoba) FALSE X/Y Kalos X,Y +666 32 5 2 Vivillon FALSE FALSE FALSE Marine (Chile-Antofagasta) FALSE X/Y Kalos X,Y +666 32 5 3 Vivillon FALSE FALSE FALSE Archipelago (Mexico-Yucatan) FALSE X/Y Kalos X,Y +666 32 5 4 Vivillon FALSE FALSE FALSE High Plains (Canada-British Columbia) FALSE X/Y Kalos X,Y +666 32 5 5 Vivillon FALSE FALSE FALSE Sandstorm (Saudi Arabia-Al Bahah) FALSE X/Y Kalos X,Y +666 32 5 6 Vivillon FALSE FALSE FALSE River (Australia-Capital Territory) [Not US compatible] FALSE X/Y Kalos X,Y +666 33 1 1 Vivillon FALSE FALSE FALSE Monsoon (Japan-Okinawa) FALSE X/Y Kalos X,Y +666 33 1 2 Vivillon FALSE FALSE FALSE Savanna (Argentina-Buenos Aires) FALSE X/Y Kalos X,Y +666 33 1 3 Vivillon FALSE FALSE FALSE Sun (Belize-Belize) FALSE X/Y Kalos X,Y +666 33 1 4 Vivillon FALSE FALSE FALSE Ocean (US-Hawai'i) FALSE X/Y Kalos X,Y +666 33 1 5 Vivillon FALSE FALSE FALSE Jungle (Brazil-Acre) FALSE X/Y Kalos X,Y +666 33 1 6 Vivillon FALSE FALSE FALSE Fancy (Event) FALSE X/Y Scarlet/Violet Kalos X,Y,Scarlet,Violet Event (X/Y) +666 33 2 1 Vivillon FALSE FALSE FALSE Pokeball (Event) FALSE X/Y Kalos X,Y Event +667 33 2 2 Litleo FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 22 - Grass Route 22 - Yellow Flowers +668 33 2 3 Pyroar FALSE FALSE FALSE FALSE X/Y Kalos X,Y +668 33 2 4 Pyroar FALSE FALSE FALSE Female FALSE X/Y Kalos X,Y +669 33 2 5 Flabébé FALSE FALSE FALSE Red FALSE X/Y Kalos X,Y Route 4 - Red Flowers Route 4 - Red Flowers Route 4 - Red Flowers Route 4 - Yellow Flowers Route 4 - Yellow Flowers Route 4 - Yellow Flowers Route 7 - Grass Route 7 - Grass Route 7 - Purple Flowers Route 7 - Purple Flowers Route 7 - Purple Flowers Route 7 - Yellow Flowers Route 7 - Yellow Flowers Route 7 - Yellow Flowers +669 33 2 6 Flabébé FALSE FALSE FALSE Yellow FALSE X/Y Kalos X,Y +669 33 3 1 Flabébé FALSE FALSE FALSE Orange FALSE X/Y Kalos X,Y +669 33 3 2 Flabébé FALSE FALSE FALSE Blue FALSE X/Y Kalos X,Y +669 33 3 3 Flabébé FALSE FALSE FALSE White FALSE X/Y Kalos X,Y +670 33 3 4 Floette FALSE FALSE FALSE Red FALSE X/Y Kalos X,Y +670 33 3 5 Floette FALSE FALSE FALSE Yellow FALSE X/Y Kalos X,Y +670 33 3 6 Floette FALSE FALSE FALSE Orange FALSE X/Y Kalos X,Y +670 33 4 1 Floette FALSE FALSE FALSE Blue FALSE X/Y Kalos X,Y +670 33 4 2 Floette FALSE FALSE FALSE White FALSE X/Y Kalos X,Y +671 33 4 3 Florges FALSE FALSE FALSE Red FALSE X/Y Kalos X,Y +671 33 4 4 Florges FALSE FALSE FALSE Yellow FALSE X/Y Kalos X,Y +671 33 4 5 Florges FALSE FALSE FALSE Orange FALSE X/Y Kalos X,Y +671 33 4 6 Florges FALSE FALSE FALSE Blue FALSE X/Y Kalos X,Y +671 33 5 1 Florges FALSE FALSE FALSE White FALSE X/Y Kalos X,Y +672 33 5 2 Skiddo FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 5 - Grass Route 5 - Purple Flowers +673 33 5 3 Gogoat FALSE FALSE FALSE FALSE X/Y Kalos X,Y +674 33 5 4 Pancham FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 5 - Grass Route 5 - Purple Flowers Friend Safari +675 33 5 5 Pangoro FALSE FALSE FALSE FALSE X/Y Kalos X,Y +676 33 5 6 Furfrou FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 5 - Grass Route 5 - Purple Flowers +676 34 1 1 Furfrou FALSE FALSE FALSE Heart FALSE GO Unknown Go +676 34 1 2 Furfrou FALSE FALSE FALSE Star FALSE GO Unknown Go +676 34 1 3 Furfrou FALSE FALSE FALSE Diamond FALSE GO Unknown Go +676 34 1 4 Furfrou FALSE FALSE FALSE Debutante FALSE GO Unknown Go +676 34 1 5 Furfrou FALSE FALSE FALSE Matron FALSE GO Unknown Go +676 34 1 6 Furfrou FALSE FALSE FALSE Dandy FALSE GO Unknown Go +676 34 2 1 Furfrou FALSE FALSE FALSE La Reine FALSE GO Unknown Go +676 34 2 2 Furfrou FALSE FALSE FALSE Kabuki FALSE GO Unknown Go +676 34 2 3 Furfrou FALSE FALSE FALSE Pharaoh FALSE GO Unknown Go +677 34 2 4 Espurr FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 6 - Tall Grass Friend Safari +678 34 2 5 Meowstic FALSE FALSE FALSE FALSE X/Y Kalos X,Y Evolve from male Espurr, Route 6 - Tall Grass +678 34 2 6 Meowstic FALSE FALSE FALSE Female FALSE X/Y Kalos X,Y +679 34 3 1 Honedge FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 6 - Tall Grass +680 34 3 2 Doublade FALSE FALSE FALSE FALSE X/Y Kalos X,Y +681 34 3 3 Aegislash FALSE FALSE FALSE FALSE X/Y Kalos X,Y +682 34 3 4 Spritzee FALSE FALSE FALSE FALSE Y Kalos Y Route 7 - Grass Route 7 - Purple Flowers Route 7 - Yellow Flowers Friend Safari +683 34 3 5 Aromatisse FALSE FALSE FALSE FALSE Y Kalos Y Evolves from Spritzee +684 34 3 6 Swirlix FALSE FALSE FALSE FALSE X Kalos X Route 7 - Grass Route 7 - Purple Flowers Route 7 - Yellow Flowers Friend Safari +685 34 4 1 Slurpuff FALSE FALSE FALSE FALSE X Kalos X +686 34 4 2 Inkay FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 8 - Grass Route 8 - Yellow Flowers Azure Bay - Grass Friend Safari +687 34 4 3 Malamar FALSE FALSE FALSE FALSE X/Y Kalos X,Y +688 34 4 4 Binacle FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 8 - Rock Smash Route 12 - Rock Smash Ambrette Town - Rock Smash Azure Bay - Rock Smash +689 34 4 5 Barbaracle FALSE FALSE FALSE FALSE X/Y Kalos X,Y +690 34 4 6 Skrelp FALSE FALSE FALSE FALSE Y Kalos Y Route 8 - Good Rod Cyllage City - Good Rod Ambrette Town - Good Rod +691 34 5 1 Dragalge FALSE FALSE FALSE FALSE Y Kalos Y Evolves from Skrelp +692 34 5 2 Clauncher FALSE FALSE FALSE FALSE X Kalos X Route 8 - Good Rod Cyllage City - Good Rod Ambrette Town - Good Rod +693 34 5 3 Clawitzer FALSE FALSE FALSE FALSE X Kalos X +694 34 5 4 Helioptile FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 9 - Grass Friend Safari +695 34 5 5 Heliolisk FALSE FALSE FALSE FALSE X/Y Kalos X,Y +696 34 5 6 Tyrunt FALSE FALSE FALSE FALSE X/Y Kalos X,Y Glimmering cave right before 2nd gym. Ambrette Town Fossil Lab (Jaw fossil) +697 35 1 1 Tyrantrum FALSE FALSE FALSE FALSE X/Y Kalos X,Y +698 35 1 2 Amaura FALSE FALSE FALSE FALSE X/Y Kalos X,Y Glimmering cave right before 2nd gym. Ambrette Town Fossil Lab (Sail fossil) +699 35 1 3 Aurorus FALSE FALSE FALSE FALSE X/Y Kalos X,Y +700 35 1 4 Sylveon FALSE FALSE FALSE FALSE Red/Blue/Yellow LG: Pikachu/Eevee Kanto Red,Blue,Yellow,LG: Pikachu,LG: Eevee Kalos evolves from Eevee when leveled up while knowing a Fairy-type move and having high friendship. Prior to Generation VIII, it evolves from Eevee when leveled up while knowing a Fairy-type move and having at least two levels of affection. Eevee will evolve into Sylveon even if the evolutionary conditions for it to evolve into Espeon or Umbreon have also been met. Eevee will never evolve into Sylveon while near a Moss Rock or Ice Rock. +701 35 1 5 Hawlucha FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 10 - Grass Route 10 - Yellow Flowers Friend Safari +702 35 1 6 Dedenne FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 11 - Grass Friend Safari +703 35 2 1 Carbink FALSE FALSE FALSE FALSE X/Y Kalos X,Y Reflection Cave - 1F - Grass Reflection Cave - 1F - Horde Reflection Cave - B1F - Grass Reflection Cave - B1F - Horde Reflection Cave - B2F - Grass Reflection Cave - B2F - Horde Reflection Cave - B3F - Grass Reflection Cave - B3F - Horde +704 35 2 2 Goomy FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 14 - Grass Route 14 - Water Route 14 - Surf +705 35 2 3 Sliggoo FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 19 - Purple Flowers Route 19 - Water Route 19 - Surf Route 19 - Yellow Flowers Friend Safari +705 35 2 4 Sliggoo FALSE FALSE FALSE Hisuian FALSE X/Y Kalos X,Y Hisui Evolves from Goomy at level 40 +706 35 2 5 Goodra FALSE FALSE FALSE FALSE X/Y Kalos X,Y +706 35 2 6 Goodra FALSE FALSE FALSE Hisuian FALSE X/Y Kalos X,Y Hisui Evolves from Sliggoo at level 50 during rain or fog in the overworld +707 35 3 1 Klefki FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 15 - Grass Route 15 - Horde Route 15 - Red Flowers Route 16 - Horde Route 16 - Tall Grass Route 16 - Yellow Flowers Lost Hotel - Grass Friend Safari +708 35 3 2 Phantump FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 16 - Tall Grass Route 16 - Yellow Flowers Friend Safari +709 35 3 3 Trevenant FALSE FALSE FALSE FALSE X/Y Kalos X,Y Route 20 - Grass Route 20 - Horde Route 20 - Red Flowers +710 35 3 4 Pumpkaboo FALSE FALSE FALSE Small FALSE X/Y Kalos X,Y Route 16 - Tall Grass Route 16 - Tall Grass Route 16 - Tall Grass Route 16 - Tall Grass Friend Safari +710 35 3 5 Pumpkaboo FALSE FALSE FALSE Medium FALSE X/Y Kalos X,Y +710 35 3 6 Pumpkaboo FALSE FALSE FALSE Large FALSE X/Y Kalos X,Y +710 35 4 1 Pumpkaboo FALSE FALSE FALSE Super FALSE X/Y Kalos X,Y +711 35 4 2 Gourgeist FALSE FALSE FALSE Small FALSE X/Y Kalos X,Y +711 35 4 3 Gourgeist FALSE FALSE FALSE Medium FALSE X/Y Kalos X,Y +711 35 4 4 Gourgeist FALSE FALSE FALSE Large FALSE X/Y Kalos X,Y +711 35 4 5 Gourgeist FALSE FALSE FALSE Super FALSE X/Y Kalos X,Y +712 35 4 6 Bergmite FALSE FALSE FALSE FALSE X/Y Kalos X,Y Frost Cavern - 1F - Grass Frost Cavern - 2F - Grass Frost Cavern - 3F - Grass Friend Safari +713 35 5 1 Avalugg FALSE FALSE FALSE FALSE X/Y Kalos X,Y +713 35 5 2 Avalugg FALSE FALSE FALSE Hisuian FALSE X/Y Kalos X,Y Hisui +714 35 5 3 Noibat FALSE FALSE FALSE FALSE X/Y Kalos X,Y Terminus Cave - 1F - Special Terminus Cave - B1F - Special Terminus Cave - B2F - Special Terminus Cave - B3F - Special Terminus Cave - 2F Left - Special Terminus Cave - 2F Right - Special Friend Safari +715 35 5 4 Noivern FALSE FALSE FALSE FALSE X/Y Kalos X,Y +716 35 5 5 Xerneas FALSE FALSE FALSE FALSE X Kalos X Team Flare Secret HQ - Basement - Interact +717 35 5 6 Yveltal FALSE FALSE FALSE FALSE Y Kalos Y Team Flare Secret HQ - Basement - Interact +718 36 1 1 Zygarde FALSE FALSE FALSE 10% FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +718 36 1 2 Zygarde FALSE FALSE FALSE 10% Power Construct FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +719 36 1 3 Zygarde FALSE FALSE FALSE 50% FALSE X/Y Kalos X,Y Terminus Cave - B3F - Interact +720 36 1 4 Zygarde FALSE FALSE FALSE 50% Power Construct FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +720 36 1 5 Diancie FALSE FALSE FALSE FALSE X/Y Kalos X,Y Event (powersaves) +721 36 1 6 Hoopa FALSE FALSE FALSE Confined FALSE X/Y Kalos X,Y Event (powersaves) +722 37 1 1 Hoopa FALSE FALSE FALSE Unbound FALSE X/Y Kalos X,Y Event (powersaves), convert form in USUM, then transfer to bank +723 37 1 2 Volcanion FALSE FALSE FALSE FALSE X/Y Kalos X,Y Event (powersaves) +724 37 1 3 Rowlet FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +724 37 1 4 Dartrix FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +725 37 1 5 Decidueye FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +726 37 1 6 Decidueye FALSE FALSE FALSE Hisuian FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Hisui Evolves from Dartrix at level 36 +727 37 2 1 Litten FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +728 37 2 2 Torracat FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +729 37 2 3 Incineroar FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +730 37 2 4 Popplio FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +731 37 2 5 Brionne FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +732 37 2 6 Primarina FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +733 37 3 1 Pikipek FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +734 37 3 2 Trumbeak FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 5, Route 8, Lush Jungle, Route 11, Poni Grove, Poni Plains Evolves at level 28. +735 37 3 3 Toucannon FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 11, Poni Grove, Poni Plains SOS only. Has the unique move Beak Blast. +736 37 3 4 Yungoos FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +737 37 3 5 Gumshoos FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 8, Memorial Hill, Akala Outskirts, Route 10, Tapu Village, Route 14, Route 15, Route 16, Route 17, Mount Lanakila, Poni Plains +738 37 3 6 Grubbin FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +739 37 4 1 Charjabug FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +740 37 4 2 Vikavolt FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Level up charjabug at electric rock +741 37 4 3 Crabrawler FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +741 37 4 4 Crabominable FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Crabrawler: Route 3, Kala’e Bay, Route 2, Berry Fields, Route 4, Route 5, Route 8, Route 10, Ula’ula Beach, Route 15, Route 16, Route 17, Poni Wilds, Poni Plains Evolves via level-up at the top of Mount Lanakila. +741 37 4 5 Oricorio FALSE FALSE FALSE Baile (Red) FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Melemele Meadow, Route 6, Ula’ula Meadow, Poni Meadow +741 37 4 6 Oricorio FALSE FALSE FALSE Pom-pom (yellow) FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +742 37 5 1 Oricorio FALSE FALSE FALSE Pa'u (pink) FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Melemele Meadow, Route 6, Ula’ula Meadow, Poni Meadow +743 37 5 2 Oricorio FALSE FALSE FALSE Sensu (purple) FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Melemele Meadow, Route 6, Ula’ula Meadow, Poni Meadow +744 37 5 3 Cutiefly FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +744 37 5 4 Ribombee FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Ula’ula Meadow, Poni Meadow or evolves from Cutiefly at level 25 +745 37 5 5 Rockruff FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +745 37 5 6 Rockruff FALSE FALSE FALSE Own Tempo FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Event (powersaves) +745 38 1 1 Lycanroc FALSE FALSE FALSE Midday FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Vast Poni Canyon +746 38 1 2 Lycanroc FALSE FALSE FALSE Midnight FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +747 38 1 3 Lycanroc FALSE FALSE FALSE Dusk FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Vast Poni Canyon +748 38 1 4 Wishiwashi FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +749 38 1 5 Mareanie FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 1 (Hau’oli Outskirts), Route 1, Melemele Sea, Melemele Sea, Hau’oli City (Beachfront), Route 9 SOS only. Evolves at level 38. +750 38 1 6 Toxapex FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Mareanie at level 38 +751 38 2 1 Mudbray FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 4, Route 6, Paniola Ranch, Route 12, Blush Mountain Evolves at level 30. +752 38 2 2 Mudsdale FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 12, Blush Mountain, Poni Plains +753 38 2 3 Dewpider FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Brooklet Hill (day) Evolves at level 22. +754 38 2 4 Araquanid FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Malie Garden +755 38 2 5 Fomantis FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +756 38 2 6 Lurantis FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Fomantis: Route 5, Lush Jungle Evolves at level 34 during the day. +757 38 3 1 Morelull FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Brooklet Hill (night - Sun 18:00-06:00, Moon 06:00-18:00) Lush Jungle Evolves at level 24. +758 38 3 2 Shiinotic FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 11 (night - Sun 18:00-06:00, Moon 06:00-18:00) +759 38 3 3 Salandit FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 8, Wela Volcano Park, Lush Jungle Evolves at level 33 only if female. 12.5% of Salandit are female. +760 38 3 4 Salazzle FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +761 38 3 5 Stufful FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 8, Memorial Hill, Akala Outskirts Evolves at level 27. +762 38 3 6 Bewear FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Poni Gauntlet +763 38 4 1 Bounsweet FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +764 38 4 2 Steenee FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Lush Jungle Evolves via level-up knowing Stomp. +765 38 4 3 Tsareena FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Tsareena +766 38 4 4 Comfey FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Lush Jungle +767 38 4 5 Oranguru FALSE FALSE FALSE FALSE Moon UM Alola Moon,UM Lush Jungle +768 38 4 6 Passimian FALSE FALSE FALSE FALSE Sun US Alola Sun,US Lush Jungle +769 38 5 1 Wimpod FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 8, Dividing Peak Tunnel, Ancient Poni Path, Poni Breaker Coast Evolves at level 30. +770 38 5 2 Golisopod FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Wimpod +771 38 5 3 Sandygast FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Hano Grand Resort, Hano Beach Evolves at level 42. +772 38 5 4 Palossand FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Sandygast +773 38 5 5 Pyukumuku FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +774 38 5 6 Type: Null FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Aether House or Ancient Poni Path (Gift; post-game) Evolves by level-up with high happiness. +774 39 1 1 Silvally FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Type: Null +774 39 1 2 Minior FALSE FALSE FALSE Red FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Hokulani +774 39 1 3 Minior FALSE FALSE FALSE Orange FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Hokulani +774 39 1 4 Minior FALSE FALSE FALSE Yellow FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Hokulani +774 39 1 5 Minior FALSE FALSE FALSE Green FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Hokulani +774 39 1 6 Minior FALSE FALSE FALSE Blue FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Hokulani +775 39 2 1 Minior FALSE FALSE FALSE Indigo FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Hokulani +776 39 2 2 Minior FALSE FALSE FALSE Violet FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +777 39 2 3 Komala FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 11 +778 39 2 4 Turtonator FALSE FALSE FALSE FALSE Sun US Alola Sun,US Blush Mountain +779 39 2 5 Togedemaru FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Blush Mountain +780 39 2 6 Mimikyu FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Thrifty Megamart (Abandoned Site) +781 39 3 1 Bruxish FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Route 13, Tapu Village, Route 14, Route 15, Route 16 +782 39 3 2 Drampa FALSE FALSE FALSE FALSE Moon UM Alola Moon,UM Mount Lanakila +783 39 3 3 Dhelmise FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Seafolk Village +784 39 3 4 Jangmo-o FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Vast Poni Canyon Evolves at level 35. +785 39 3 5 Hakamo-o FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Jangmo-o at level 35 +786 39 3 6 Kommo-o FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Hakamo-o at level 45 +787 39 4 1 Tapu Koko FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +788 39 4 2 Tapu Lele FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Ruins of Life Post-game. +789 39 4 3 Tapu Bulu FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Ruins of Abundance Post-game. +790 39 4 4 Tapu Fini FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Ruins of Hope Post-game. +791 39 4 5 Cosmog FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Lake of the Sunne/Moone Post-game only. Evolves at level 43. +792 39 4 6 Cosmoem FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Evolves from Cosmog at level 43 +793 39 5 1 Solgaleo FALSE FALSE FALSE FALSE Sun US Alola Sun,US Mahalo Trail, Evolves from Cosmoem at level 53 +794 39 5 2 Lunala FALSE FALSE FALSE FALSE Moon UM Alola Moon,UM +795 39 5 3 Nihilego FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +796 39 5 4 Buzzwole FALSE FALSE FALSE FALSE Sun US Alola Sun,US Ultra Jungle Multiple. Ultra Sun only. From white Ultra Wormholes. +797 39 5 5 Pheromosa FALSE FALSE FALSE FALSE Moon UM Alola Moon,UM +798 39 5 6 Xurkitree FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +799 40 1 1 Celesteela FALSE FALSE FALSE FALSE Moon UM Alola Moon,UM +800 40 1 2 Kartana FALSE FALSE FALSE FALSE Sun US Alola Sun,US Ultra Forest Multiple. Ultra Sun only. From white Ultra Wormholes. +801 40 1 3 Guzzlord FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +801 40 1 4 Necrozma FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM Mount Lanakila End of the story. Only can be caught after third battle with it. +802 40 1 5 Magearna FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +803 40 1 6 Magearna FALSE FALSE FALSE Original Color FALSE Pokemon Home Unknown Home Get a complete national dex in Pokemon Home +804 40 2 1 Marshadow FALSE FALSE FALSE FALSE Sun/Moon US/UM Alola Sun,Moon,US,UM +805 40 2 2 Poipole FALSE FALSE FALSE FALSE US/UM Alola US,UM +806 40 2 3 Naganadel FALSE FALSE FALSE FALSE US/UM Alola US,UM +807 40 2 4 Stakataka FALSE FALSE FALSE FALSE Ultra Moon Alola UM Poni Grove Ultra Moon only. Two only. Post-game. +808 40 2 5 Blacephalon FALSE FALSE FALSE FALSE Ultra Sun Alola US Poni Grove Ultra Sun only. Two only. Post-game. +809 40 2 6 Zeraora FALSE FALSE FALSE FALSE Ultra Sun Alola US Event +809 40 3 1 Meltan FALSE FALSE FALSE FALSE GO Unknown Go Transfer to LG:PE from GO to remove GO mark in HOME +810 41 1 1 Melmetal FALSE FALSE FALSE TRUE GO Unknown Home +811 41 1 2 Grookey FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +812 41 1 3 Thwackey FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +813 41 1 4 Rillaboom FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +814 41 1 5 Scorbunny FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +815 41 1 6 Raboot FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +816 41 2 1 Cinderace FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield Evolves at level 35 +817 41 2 2 Sobble FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +818 41 2 3 Drizzile FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +819 41 2 4 Inteleon FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +820 41 2 5 Skwovet FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +821 41 2 6 Greedent FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Evolves at level 24 +822 41 3 1 Rookidee FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +823 41 3 2 Corvisquire FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +824 41 3 3 Corviknight FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield Evolves at level 38 +825 41 3 4 Blipbug FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +826 41 3 5 Dottler FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +827 41 3 6 Orbeetle FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +828 41 4 1 Nickit FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +829 41 4 2 Thievul FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +830 41 4 3 Gossifleur FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +831 41 4 4 Eldegoss FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +832 41 4 5 Wooloo FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +833 41 4 6 Dubwool FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Evolves at level 24 +834 41 5 1 Chewtle FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +835 41 5 2 Drednaw FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +836 41 5 3 Yamper FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +837 41 5 4 Boltund FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +838 41 5 5 Rolycoly FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +839 41 5 6 Carkol FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +840 42 1 1 Coalossal FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield Evolves at level 34 +841 42 1 2 Applin FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +842 42 1 3 Flapple FALSE FALSE FALSE TRUE Sword Galar Sword Evolves from Applin, caught at Route 5, Dusty Bowl, Giant's Mirror, Stony Wilderness Axew's Eye, Bridge Field, Dappled Grove, Giant's Mirror, Rolling Fields, Stony Wilderness (Max Raid Battle) Axew's Eye, Bridge Field, Dappled Grove, Giant's Mirror, Stony Wilderness (Max Raid Battle) Dappled Grove (Max Raid Battle) (Gigantamax Factor) +843 42 1 4 Appletun FALSE FALSE FALSE TRUE Shield Galar Shield +844 42 1 5 Silicobra FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +845 42 1 6 Sandaconda FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +846 42 2 1 Cramorant FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +847 42 2 2 Arrokuda FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +848 42 2 3 Barraskewda FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +849 42 2 4 Toxel FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +849 42 2 5 Toxtricity FALSE FALSE FALSE Amped TRUE Sword/Shield Galar Sword,Shield +850 42 2 6 Toxtricity FALSE FALSE FALSE Low-key FALSE Sword/Shield Galar Sword,Shield +851 42 3 1 Sizzlipede FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +852 42 3 2 Centiskorch FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +853 42 3 3 Clobbopus FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +854 42 3 4 Grapploct FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +854 42 3 5 Sinistea FALSE FALSE FALSE Phony FALSE Sword/Shield Galar Sword,Shield +855 42 3 6 Sinistea FALSE FALSE FALSE Antique FALSE Sword/Shield Galar Sword,Shield +855 42 4 1 Polteageist FALSE FALSE FALSE Phony FALSE Sword/Shield Galar Sword,Shield +856 42 4 2 Polteageist FALSE FALSE FALSE Antique FALSE Sword/Shield Galar Sword,Shield +857 42 4 3 Hatenna FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +858 42 4 4 Hattrem FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +859 42 4 5 Hatterene FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +860 42 4 6 Impidimp FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +861 42 5 1 Morgrem FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield 32 +862 42 5 2 Grimmsnarl FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield 42 +863 42 5 3 Obstagoon FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Evolves from Galarian Linoone at level 35 at night +864 42 5 4 Perrserker FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Evolves from Galarian Meowth at level 28 +865 42 5 5 Cursola FALSE FALSE FALSE FALSE Shield Galar Shield +866 42 5 6 Sirfetch’d FALSE FALSE FALSE FALSE Sword Galar Sword Evolves from Galarian Farfetch'd after landing three critical hits in a single battle. +867 43 1 1 Mr. Rime FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +868 43 1 2 Runerigus FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +869 43 1 3 Milcery FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Route 4, Bridge Field, Giant's Mirror Bridge Field, Lake of Outrage (Max Raid Battle) +869 43 1 4 Alcremie FALSE FALSE FALSE Vanilla Strawberry FALSE Sword/Shield Galar Sword,Shield One must be Gigantamaxed +869 43 1 5 Alcremie FALSE FALSE FALSE Vanilla Berry FALSE Sword/Shield Galar Sword,Shield Can obtain Star and Ribbon Sweets via Cram-o-matic +869 43 1 6 Alcremie FALSE FALSE FALSE Vanilla Love FALSE Sword/Shield Galar Sword,Shield +869 43 2 1 Alcremie FALSE FALSE FALSE Vanilla Flower FALSE Sword/Shield Galar Sword,Shield +869 43 2 2 Alcremie FALSE FALSE FALSE Vanilla Clover FALSE Sword/Shield Galar Sword,Shield +869 43 2 3 Alcremie FALSE FALSE FALSE Vanilla Star FALSE Sword/Shield Galar Sword,Shield +869 43 2 4 Alcremie FALSE FALSE FALSE Vanilla Ribbon FALSE Sword/Shield Galar Sword,Shield +869 43 2 5 Alcremie FALSE FALSE FALSE Ruby Cream Strawberry FALSE Sword/Shield Galar Sword,Shield +869 43 2 6 Alcremie FALSE FALSE FALSE Ruby Cream Berry FALSE Sword/Shield Galar Sword,Shield +869 43 3 1 Alcremie FALSE FALSE FALSE Ruby Cream Love FALSE Sword/Shield Galar Sword,Shield +869 43 3 2 Alcremie FALSE FALSE FALSE Ruby Cream Flower FALSE Sword/Shield Galar Sword,Shield +869 43 3 3 Alcremie FALSE FALSE FALSE Ruby Cream Clover FALSE Sword/Shield Galar Sword,Shield +869 43 3 4 Alcremie FALSE FALSE FALSE Ruby Cream Star FALSE Sword/Shield Galar Sword,Shield +869 43 3 5 Alcremie FALSE FALSE FALSE Ruby Cream Ribbon FALSE Sword/Shield Galar Sword,Shield +869 43 3 6 Alcremie FALSE FALSE FALSE Matcha Strawberyy FALSE Sword/Shield Galar Sword,Shield +869 43 4 1 Alcremie FALSE FALSE FALSE Mactha Berry FALSE Sword/Shield Galar Sword,Shield +869 43 4 2 Alcremie FALSE FALSE FALSE Matcha Love FALSE Sword/Shield Galar Sword,Shield +869 43 4 3 Alcremie FALSE FALSE FALSE Matcha Flower FALSE Sword/Shield Galar Sword,Shield +869 43 4 4 Alcremie FALSE FALSE FALSE Matcha Clover FALSE Sword/Shield Galar Sword,Shield +869 43 4 5 Alcremie FALSE FALSE FALSE Matcha Star FALSE Sword/Shield Galar Sword,Shield +869 43 4 6 Alcremie FALSE FALSE FALSE Matcha Ribbon FALSE Sword/Shield Galar Sword,Shield +869 43 5 1 Alcremie FALSE FALSE FALSE Mint Strawberry FALSE Sword/Shield Galar Sword,Shield +869 43 5 2 Alcremie FALSE FALSE FALSE Mint Berry FALSE Sword/Shield Galar Sword,Shield +869 43 5 3 Alcremie FALSE FALSE FALSE Mint Love FALSE Sword/Shield Galar Sword,Shield +869 43 5 4 Alcremie FALSE FALSE FALSE Mint Flower FALSE Sword/Shield Galar Sword,Shield +869 43 5 5 Alcremie FALSE FALSE FALSE Mint Clover FALSE Sword/Shield Galar Sword,Shield +869 43 5 6 Alcremie FALSE FALSE FALSE Mint Star FALSE Sword/Shield Galar Sword,Shield +869 44 1 1 Alcremie FALSE FALSE FALSE Mint Ribbon FALSE Sword/Shield Galar Sword,Shield +869 44 1 2 Alcremie FALSE FALSE FALSE Lemon Strawberry FALSE Sword/Shield Galar Sword,Shield +869 44 1 3 Alcremie FALSE FALSE FALSE Lemon Berry FALSE Sword/Shield Galar Sword,Shield +869 44 1 4 Alcremie FALSE FALSE FALSE Lemon Love FALSE Sword/Shield Galar Sword,Shield +869 44 1 5 Alcremie FALSE FALSE FALSE Lemon Flower FALSE Sword/Shield Galar Sword,Shield +869 44 1 6 Alcremie FALSE FALSE FALSE Lemon Clover FALSE Sword/Shield Galar Sword,Shield +869 44 2 1 Alcremie FALSE FALSE FALSE Lemon Star FALSE Sword/Shield Galar Sword,Shield +869 44 2 2 Alcremie FALSE FALSE FALSE Lemon Ribbon FALSE Sword/Shield Galar Sword,Shield +869 44 2 3 Alcremie FALSE FALSE FALSE Salted Strawberry FALSE Sword/Shield Galar Sword,Shield +869 44 2 4 Alcremie FALSE FALSE FALSE Salted Berry FALSE Sword/Shield Galar Sword,Shield +869 44 2 5 Alcremie FALSE FALSE FALSE Salted Love FALSE Sword/Shield Galar Sword,Shield +869 44 2 6 Alcremie FALSE FALSE FALSE Salted Flower FALSE Sword/Shield Galar Sword,Shield +869 44 3 1 Alcremie FALSE FALSE FALSE Salted Clover FALSE Sword/Shield Galar Sword,Shield +869 44 3 2 Alcremie FALSE FALSE FALSE Salted Star FALSE Sword/Shield Galar Sword,Shield +869 44 3 3 Alcremie FALSE FALSE FALSE Salted Ribbon FALSE Sword/Shield Galar Sword,Shield +869 44 3 4 Alcremie FALSE FALSE FALSE Ruby Swirl Strawberry FALSE Sword/Shield Galar Sword,Shield +869 44 3 5 Alcremie FALSE FALSE FALSE Ruby Swirl Berry FALSE Sword/Shield Galar Sword,Shield +869 44 3 6 Alcremie FALSE FALSE FALSE Ruby Swirl Love FALSE Sword/Shield Galar Sword,Shield +869 44 4 1 Alcremie FALSE FALSE FALSE Ruby Swirl Flower FALSE Sword/Shield Galar Sword,Shield +869 44 4 2 Alcremie FALSE FALSE FALSE Ruby Swirl Clover FALSE Sword/Shield Galar Sword,Shield +869 44 4 3 Alcremie FALSE FALSE FALSE Ruby Swirl Star FALSE Sword/Shield Galar Sword,Shield +869 44 4 4 Alcremie FALSE FALSE FALSE Ruby Swirl Ribbon FALSE Sword/Shield Galar Sword,Shield +869 44 4 5 Alcremie FALSE FALSE FALSE Caramel Strawberry FALSE Sword/Shield Galar Sword,Shield +869 44 4 6 Alcremie FALSE FALSE FALSE Caramel Berry FALSE Sword/Shield Galar Sword,Shield +869 44 5 1 Alcremie FALSE FALSE FALSE Caramel Love FALSE Sword/Shield Galar Sword,Shield +869 44 5 2 Alcremie FALSE FALSE FALSE Caramel Flower FALSE Sword/Shield Galar Sword,Shield +869 44 5 3 Alcremie FALSE FALSE FALSE Caramel Clover FALSE Sword/Shield Galar Sword,Shield +869 44 5 4 Alcremie FALSE FALSE FALSE Caramel Star FALSE Sword/Shield Galar Sword,Shield +869 44 5 5 Alcremie FALSE FALSE FALSE Caramel Ribbon FALSE Sword/Shield Galar Sword,Shield +869 44 5 6 Alcremie FALSE FALSE FALSE Rainbow Strawberry FALSE Sword/Shield Galar Sword,Shield +869 45 1 1 Alcremie FALSE FALSE FALSE Rainbow Berry FALSE Sword/Shield Galar Sword,Shield +869 45 1 2 Alcremie FALSE FALSE FALSE Rainbow Love FALSE Sword/Shield Galar Sword,Shield +869 45 1 3 Alcremie FALSE FALSE FALSE Rainbow Flower FALSE Sword/Shield Galar Sword,Shield +869 45 1 4 Alcremie FALSE FALSE FALSE Rainbow Clover FALSE Sword/Shield Galar Sword,Shield +869 45 1 5 Alcremie FALSE FALSE FALSE Rainbow Star FALSE Sword/Shield Galar Sword,Shield +869 45 1 6 Alcremie FALSE FALSE FALSE Rainbow Ribbon FALSE Sword/Shield Galar Sword,Shield +870 45 2 1 Falinks FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +871 45 2 2 Pincurchin FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +872 45 2 3 Snom FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +873 45 2 4 Frosmoth FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +874 45 2 5 Stonjourner FALSE FALSE FALSE FALSE Sword Galar Sword Route 10, Lake of Outrage Giant's Seat, Rolling Fields, Stony Wilderness (Max Raid Battle) +875 45 2 6 Eiscue FALSE FALSE FALSE FALSE Shield Galar Shield +876 45 3 1 Indeedee FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Version exclusive in wild, but eggs can be either gender +876 45 3 2 Indeedee FALSE FALSE FALSE Female FALSE Sword/Shield Galar Sword,Shield +877 45 3 3 Morpeko FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +878 45 3 4 Cufant FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +879 45 3 5 Copperajah FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +880 45 3 6 Dracozolt FALSE FALSE FALSE Bird and Drake FALSE Sword/Shield Galar Sword,Shield +881 45 4 1 Arctozolt FALSE FALSE FALSE Bird and Dino FALSE Sword/Shield Galar Sword,Shield +882 45 4 2 Dracovish FALSE FALSE FALSE Fish and Drake FALSE Sword/Shield Galar Sword,Shield +883 45 4 3 Arctovish FALSE FALSE FALSE Fish and Dino FALSE Sword/Shield Galar Sword,Shield +884 45 4 4 Duraludon FALSE FALSE FALSE TRUE Sword/Shield Galar Sword,Shield +885 45 4 5 Dreepy FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +886 45 4 6 Drakloak FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +887 45 5 1 Dragapult FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +888 45 5 2 Zacian FALSE FALSE FALSE FALSE Sword Galar Sword Tower Summit (Only one) +889 45 5 3 Zamazenta FALSE FALSE FALSE FALSE Shield Galar Shield +890 45 5 4 Eternatus FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +891 45 5 5 Kubfu FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +892 45 5 6 Urshifu FALSE FALSE FALSE Single TRUE Sword/Shield Galar Sword,Shield +892 46 1 1 Urshifu FALSE FALSE FALSE Rapid TRUE Sword/Shield Galar Sword,Shield +893 46 1 2 Zarude FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Event (unobtainable at time of writing) - maybe possible in pkhex? +893 46 1 3 Zarude FALSE FALSE FALSE Dada FALSE Sword/Shield Galar Sword,Shield Event (unobtainable at time of writing) - maybe possible in pkhex? +894 46 1 4 Regieleki FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +895 46 1 5 Regidrago FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +896 46 1 6 Glastrier FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +897 46 2 1 Spectrier FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +898 46 2 2 Calyrex FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield +899 46 2 3 Wyrdeer FALSE FALSE FALSE FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Hisui Evolves from Stantler after using Psyshield Bash in the agile style at least 20 times. +900 46 2 4 Kleavor FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu Hisui Evolves from Scyther when exposed to a Black Augurite. +901 46 2 5 Ursaluna FALSE FALSE FALSE FALSE Gold/Crystal HGSS Johto Gold,Crystal,HG,SS Hisui It evolves from Ursaring when exposed to a Peat Block during a full moon. +901 46 2 6 Ursaluna FALSE FALSE FALSE Bloodmoon FALSE Violet Paldea Violet Expansion Pass: Timeless Woods (only one) (Bloodmoon) +902 46 3 1 Basculegion FALSE FALSE FALSE FALSE Arceus Hisui PLA Evolves from white-striped Basculin when leveled up after losing at least 294 HP from recoil damage without fainting. +902 46 3 2 Basculegion FALSE FALSE FALSE Female FALSE Arceus Hisui PLA Evolves from white-striped Basculin when leveled up after losing at least 294 HP from recoil damage without fainting. +903 46 3 3 Sneasler FALSE FALSE FALSE FALSE Arceus Hisui PLA Evolves from Sneasel when leveled up while holding a Razor Claw during the day +904 46 3 4 Overqwil FALSE FALSE FALSE FALSE Arceus Hisui PLA Evolves from hisuian Qwilfish when leveled up while knowing Barb Barrage. +905 46 3 5 Enamorus FALSE FALSE FALSE Therian Form FALSE Arceus Hisui PLA While it is not known to evolve into or from any Pokémon, Enamorus has a second form activated by using the Reveal Glass. Its original form, Incarnate Forme, will then become Therian Forme. +905 47 1 1 Enamorus FALSE FALSE FALSE Incarnate Form FALSE Arceus Hisui PLA Crimson Mirelands: Scarlet Bog (Only one) (Incarnate Forme) +906 47 1 2 Sprigatito FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +907 47 1 3 Floragato FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +908 47 1 4 Meowscarada FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +909 47 1 5 Fuecoco FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +910 47 1 6 Crocalor FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +911 47 2 1 Skeledirge FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +912 47 2 2 Quaxly FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +913 47 2 3 Quaxwell FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +914 47 2 4 Quaquaval FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +915 47 2 5 Lechonk FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +916 47 2 6 Oinkologne FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +916 47 3 1 Oinkologne FALSE FALSE FALSE Female FALSE Scarlet/Violet Paldea Scarlet,Violet +917 47 3 2 Tarountula FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +918 47 3 3 Spidops FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +919 47 3 4 Nymble FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +920 47 3 5 Lokix FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +921 47 3 6 Pawmi FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +922 47 4 1 Pawmo FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +923 47 4 2 Pawmot FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +924 47 4 3 Tandemaus FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +925 47 4 4 Maushold FALSE FALSE FALSE Family of 3 FALSE Scarlet/Violet Paldea Scarlet,Violet +925 47 4 5 Maushold FALSE FALSE FALSE Family of 4 FALSE Scarlet/Violet Paldea Scarlet,Violet +926 47 4 6 Fidough FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +927 47 5 1 Dachsbun FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +928 47 5 2 Smoliv FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +929 47 5 3 Dolliv FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +930 47 5 4 Arboliva FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +931 47 5 5 Squawkabilly FALSE FALSE FALSE Green FALSE Scarlet/Violet Paldea Scarlet,Violet +931 47 5 6 Squawkabilly FALSE FALSE FALSE Blue FALSE Scarlet/Violet Paldea Scarlet,Violet +931 48 1 1 Squawkabilly FALSE FALSE FALSE Yellow FALSE Scarlet/Violet Paldea Scarlet,Violet +931 48 1 2 Squawkabilly FALSE FALSE FALSE White FALSE Scarlet/Violet Paldea Scarlet,Violet +932 48 1 3 Nacli FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +933 48 1 4 Naclstack FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +934 48 1 5 Garganacl FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +935 48 1 6 Charcadet FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +936 48 2 1 Armarouge FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +937 48 2 2 Ceruledge FALSE FALSE FALSE FALSE Violet Paldea Violet +938 48 2 3 Tadbulb FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +939 48 2 4 Bellibolt FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +940 48 2 5 Wattrel FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +941 48 2 6 Kilowattrel FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +942 48 3 1 Maschiff FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +943 48 3 2 Mabosstiff FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +944 48 3 3 Shroodle FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +945 48 3 4 Grafaiai FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +946 48 3 5 Bramblin FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +947 48 3 6 Brambleghast FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +948 48 4 1 Toedscool FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +949 48 4 2 Toedscruel FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +950 48 4 3 Klawf FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +951 48 4 4 Capsakid FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +952 48 4 5 Scovillain FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +953 48 4 6 Rellor FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +954 48 5 1 Rabsca FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +955 48 5 2 Flittle FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +956 48 5 3 Espathra FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +957 48 5 4 Tinkatink FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +958 48 5 5 Tinkatuff FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +959 48 5 6 Tinkaton FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +960 49 1 1 Wiglett FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +961 49 1 2 Wugtrio FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +962 49 1 3 Bombirdier FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +963 49 1 4 Finizen FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +964 49 1 5 Palafin FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +965 49 1 6 Varoom FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +966 49 2 1 Revavroom FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +967 49 2 2 Cyclizar FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +968 49 2 3 Orthworm FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +969 49 2 4 Glimmet FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +970 49 2 5 Glimmora FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +971 49 2 6 Greavard FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +972 49 3 1 Houndstone FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +973 49 3 2 Flamigo FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +974 49 3 3 Cetoddle FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +975 49 3 4 Cetitan FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +976 49 3 5 Veluza FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +977 49 3 6 Dondozo FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +978 49 4 1 Tatsugiri FALSE FALSE FALSE Curly FALSE Scarlet/Violet Paldea Scarlet,Violet +978 49 4 2 Tatsugiri FALSE FALSE FALSE Droopy FALSE Scarlet/Violet Paldea Scarlet,Violet +978 49 4 3 Tatsugiri FALSE FALSE FALSE Stretchy FALSE Scarlet/Violet Paldea Scarlet,Violet +979 49 4 4 Annihilape FALSE FALSE FALSE FALSE Red/Yellow LG: Pikachu Kanto Red,Yellow,LG: Pikachu Paldea +980 49 4 5 Clodsire FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +981 49 4 6 Farigiraf FALSE FALSE FALSE FALSE Gold/Silver HGSS Johto Gold,Silver,HG,SS Paldea It evolves from Girafarig when leveled up while knowing Twin Beam. +982 49 5 1 Dudunsparce FALSE FALSE FALSE 2-Segment FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Paldea It evolves from Dunsparce when leveled up while knowing Hyper Drill. Dudunsparce has two separate forms: Two-Segment Form and Three-Segment Form. When Dunsparce evolves, it has a 1/100 chance of evolving into Three-Segment Form Dudunsparce. +982 49 5 2 Dudunsparce FALSE FALSE FALSE 3-Segment FALSE Gold/Silver/Crystal HGSS Johto Gold,Silver,Crystal,HG,SS Paldea It evolves from Dunsparce when leveled up while knowing Hyper Drill. Dudunsparce has two separate forms: Two-Segment Form and Three-Segment Form. When Dunsparce evolves, it has a 1/100 chance of evolving into Three-Segment Form Dudunsparce. w +983 49 5 3 Kingambit FALSE FALSE FALSE FALSE Black/White Black 2/White 2 Unova Black,White,Black2,White2 Paldea Evolves from Bisharp upon leveling up after defeating three Bisharp that hold a Leader's Crest. (Scarlet/Violet only) +984 49 5 4 Great Tusk FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +985 49 5 5 Scream Tail FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +986 49 5 6 Brute Bonnet FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +987 50 1 1 Flutter Mane FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +988 50 1 2 Slither Wing FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +989 50 1 3 Sandy Shocks FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +990 50 1 4 Iron Treads FALSE FALSE FALSE FALSE Violet Paldea Violet +991 50 1 5 Iron Bundle FALSE FALSE FALSE FALSE Violet Paldea Violet +992 50 1 6 Iron Hands FALSE FALSE FALSE FALSE Violet Paldea Violet +993 50 2 1 Iron Jugulis FALSE FALSE FALSE FALSE Violet Paldea Violet +994 50 2 2 Iron Moth FALSE FALSE FALSE FALSE Violet Paldea Violet +995 50 2 3 Iron Thorns FALSE FALSE FALSE FALSE Violet Paldea Violet +996 50 2 4 Frigibax FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +997 50 2 5 Arctibax FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +998 50 2 6 Baxcalibur FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +999 50 3 1 Gimmighoul FALSE FALSE FALSE Box Form FALSE Scarlet/Violet Paldea Scarlet,Violet +1000 50 3 2 Gimmighoul FALSE FALSE FALSE Roaming Form FALSE Scarlet/Violet Paldea Scarlet,Violet +1000 50 3 3 Gholdengo FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1001 50 3 4 Wo-Chien FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1002 50 3 5 Chien-Pao FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1003 50 3 6 Ting-Lu FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1004 50 4 1 Chi-Yu FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1005 50 4 2 Roaring Moon FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +1006 50 4 3 Iron Valiant FALSE FALSE FALSE FALSE Violet Paldea Violet +1007 50 4 4 Koraidon FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +1008 50 4 5 Miraidon FALSE FALSE FALSE FALSE Violet Paldea Violet +1009 50 4 6 Walking Wake FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +1010 50 5 1 Iron Leaves FALSE FALSE FALSE FALSE Violet Paldea Violet +1011 50 5 2 Dipplin FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1012 50 5 3 Poltchageist FALSE FALSE FALSE Phony FALSE Scarlet/Violet Paldea Scarlet,Violet +1012 50 5 4 Poltchageist FALSE FALSE FALSE Antique FALSE Scarlet/Violet Paldea Scarlet,Violet +1013 50 5 5 Sinistcha FALSE FALSE FALSE Phony FALSE Scarlet/Violet Paldea Scarlet,Violet +1013 50 5 6 Sinistcha FALSE FALSE FALSE Antique FALSE Scarlet/Violet Paldea Scarlet,Violet +1014 51 1 1 Okidogi FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1015 51 1 2 Munkidori FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1016 51 1 3 Fezandipiti FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1017 51 1 4 Ogrepon FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1018 51 1 5 Archaludon FALSE FALSE FALSE FALSE Sword/Shield Galar Sword,Shield Paldea Expansion Pass: It evolves from Duraludon when exposed to a hunk of Metal Alloy. +1019 51 1 6 Hydrapple FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1020 51 2 1 Gouging Fire FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +1021 51 2 2 Raging Bolt FALSE FALSE FALSE FALSE Scarlet Paldea Scarlet +1022 51 2 3 Iron Boulder FALSE FALSE FALSE FALSE Violet Paldea Violet +1023 51 2 4 Iron Crown FALSE FALSE FALSE FALSE Violet Paldea Violet +1024 51 2 5 Terapagos FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet +1025 51 2 6 Pecharunt FALSE FALSE FALSE FALSE Scarlet/Violet Paldea Scarlet,Violet \ No newline at end of file