diff --git a/back-end/cokenu/.gitignore b/back-end/cokenu/.gitignore new file mode 100644 index 0000000..8ece3ba --- /dev/null +++ b/back-end/cokenu/.gitignore @@ -0,0 +1,4 @@ +node_modules +package-lock.json +build +.env \ No newline at end of file diff --git a/back-end/cokenu/package.json b/back-end/cokenu/package.json new file mode 100644 index 0000000..b6410f4 --- /dev/null +++ b/back-end/cokenu/package.json @@ -0,0 +1,26 @@ +{ + "name": "cokenu", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "dev": "ts-node-dev ./src/index.ts", + "start": "tsc && node ./build/index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "@types/knex": "^0.16.1", + "node-dev": "^7.0.0", + "typescript": "^4.4.4" + }, + "dependencies": { + "@types/bcrypt": "^5.0.0", + "bcrypt": "^5.0.1", + "cors": "^2.8.5", + "dotenv": "^10.0.0", + "mysql": "^2.18.1" + } +} diff --git a/back-end/cokenu/src/app.ts b/back-end/cokenu/src/app.ts new file mode 100644 index 0000000..3661187 --- /dev/null +++ b/back-end/cokenu/src/app.ts @@ -0,0 +1,24 @@ +import express,{Express} from "express" +import knex from "knex" +import cors from "cors" +import dotenv from "dotenv" +import {AddressInfo} from "net" + +dotenv.config() + + + +const app: Express =express() +app.use(express.json()) +app.use(cors()) + + +const server = app.listen(process.env.PORT || 3003, ()=>{ + if(server){ + const address = server.address()as AddressInfo + console.log(`servidor rodando na porta http://localhost${address.port}`) + }else{ + console.log(`erro no carregamento`) + } + +}) \ No newline at end of file diff --git a/back-end/cokenu/src/data/BaseDataBase.ts b/back-end/cokenu/src/data/BaseDataBase.ts new file mode 100644 index 0000000..d936f13 --- /dev/null +++ b/back-end/cokenu/src/data/BaseDataBase.ts @@ -0,0 +1,21 @@ +import Knex from "knex" +import knex from "knex" + + + + + +export class BaseDataBase{ + protected static connection: Knex= knex({ + client:"mysql", + connection:{ + host:process.env.DB_HOST, + port: 3306, + user: process.env.DB_USER, + password: process.env.DB_PASS, + database: process.env.DB_NAME, + + } +}) +} + diff --git a/back-end/cokenu/src/entities/User.ts b/back-end/cokenu/src/entities/User.ts new file mode 100644 index 0000000..c57088d --- /dev/null +++ b/back-end/cokenu/src/entities/User.ts @@ -0,0 +1,10 @@ +export class User{ + + constructor( + private name:string, + private email:string, + private password: string, + private role: string){ + + } +} \ No newline at end of file diff --git a/back-end/cokenu/src/entities/signUp.ts b/back-end/cokenu/src/entities/signUp.ts new file mode 100644 index 0000000..82e80cb --- /dev/null +++ b/back-end/cokenu/src/entities/signUp.ts @@ -0,0 +1,17 @@ +import {Request, Response} from "express" +import { idGenerator } from "../services/idGenerator" + +export async function signUp(req: Request, res:Response){ + try{ + const{name, email,password, role}= req.body + + + if(!name|| !email || !password || !role){ + res.status(422).send("insira corretamente as informações de 'name','email','password','role'") + } + const idGenerator = new idGenerator() + const id = idGenerator.generate() + }catch(error){ + res.status(400).send(error.message) + } +} \ No newline at end of file diff --git a/back-end/cokenu/src/services/idGenerator.ts b/back-end/cokenu/src/services/idGenerator.ts new file mode 100644 index 0000000..e122a49 --- /dev/null +++ b/back-end/cokenu/src/services/idGenerator.ts @@ -0,0 +1,8 @@ +import {v4} from "uuid" + +export class idGenerator{ + public generate(): string{ + return v4() + } +} + diff --git a/back-end/cokenu/tsconfig.json b/back-end/cokenu/tsconfig.json new file mode 100644 index 0000000..6df2cef --- /dev/null +++ b/back-end/cokenu/tsconfig.json @@ -0,0 +1,66 @@ +{ + "compilerOptions": { + /* Basic Options */ + // "incremental": true, /* Enable incremental compilation */ + "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ + "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ + // "lib": [], /* Specify library files to be included in the compilation. */ + // "allowJs": true, /* Allow javascript files to be compiled. */ + // "checkJs": true, /* Report errors in .js files. */ + // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + "outDir": "./build", /* Redirect output structure to the directory. */ + "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + "removeComments": true, /* Do not emit comments to output. */ + // "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + //"strict": true, /* Enable all strict type-checking options. */ + "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + + /* Module Resolution Options */ + // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + + /* Advanced Options */ + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + } +} diff --git a/back-end/labook/package-lock.json b/back-end/labook/package-lock.json new file mode 100644 index 0000000..40b7a40 --- /dev/null +++ b/back-end/labook/package-lock.json @@ -0,0 +1,804 @@ +{ + "name": "labook-aula", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@types/bcryptjs": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.2.tgz", + "integrity": "sha512-LiMQ6EOPob/4yUL66SZzu6Yh77cbzJFYll+ZfaPiPPFswtIlA/Fs1MzdKYA7JApHU49zQTbJGX3PDmCpIdDBRQ==", + "dev": true + }, + "@types/body-parser": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.1.tgz", + "integrity": "sha512-a6bTJ21vFOGIkwM0kzh9Yr89ziVxq4vYH2fQ6N8AeipEzai/cFK6aGMArIkUeIdRIgpwQa+2bXiLuUJCpSf2Cg==", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/cors": { + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", + "dev": true + }, + "@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.24", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz", + "integrity": "sha512-3UJuW+Qxhzwjq3xhwXm2onQcFHn76frIYVbTu+kn24LFxI+dEhdfISDFovPB8VpEgW8oQCTpRuCe+0zJxB7NEA==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/jsonwebtoken": { + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.5.tgz", + "integrity": "sha512-OGqtHQ7N5/Ap/TUwO6IgHDuLiAoTmHhGpNvgkCm/F4N6pKzx/RBSfr2OXZSwC6vkfnsEdb6+7DNZVtiXiwdwFw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "@types/node": { + "version": "16.11.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.6.tgz", + "integrity": "sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==", + "dev": true + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "dev": true, + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "@types/uuid": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.1.tgz", + "integrity": "sha512-Y2mHTRAbqfFkpjldbkHGY8JIzRN6XqYRliG8/24FcHm2D2PwW24fl5xMRTVGdrb7iMrwCaIEbLWerGIkXuFWVg==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "bcryptjs": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms=" + }, + "bignumber.js": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz", + "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "colorette": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", + "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "esm": { + "version": "3.2.25", + "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "getopts": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/getopts/-/getopts-2.2.5.tgz", + "integrity": "sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "requires": { + "has": "^1.0.3" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "jsonwebtoken": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", + "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", + "requires": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^5.6.0" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "knex": { + "version": "0.95.11", + "resolved": "https://registry.npmjs.org/knex/-/knex-0.95.11.tgz", + "integrity": "sha512-grDetD91O8VoQVCFqeWTgkzdq5406W6rggF/lK1hHuwzmjDs/0m9KxyncGdZbklTi7aUgHvw3+Cfy4x7FvpdaQ==", + "requires": { + "colorette": "1.2.1", + "commander": "^7.1.0", + "debug": "4.3.2", + "escalade": "^3.1.1", + "esm": "^3.2.25", + "getopts": "2.2.5", + "interpret": "^2.2.0", + "lodash": "^4.17.21", + "pg-connection-string": "2.5.0", + "rechoir": "0.7.0", + "resolve-from": "^5.0.0", + "tarn": "^3.0.1", + "tildify": "2.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + }, + "lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + }, + "lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.50.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==" + }, + "mime-types": { + "version": "2.1.33", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", + "requires": { + "mime-db": "1.50.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "mysql": { + "version": "2.18.1", + "resolved": "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz", + "integrity": "sha512-Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig==", + "requires": { + "bignumber.js": "9.0.0", + "readable-stream": "2.3.7", + "safe-buffer": "5.1.2", + "sqlstring": "2.3.1" + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "pg-connection-string": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", + "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "rechoir": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.0.tgz", + "integrity": "sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==", + "requires": { + "resolve": "^1.9.0" + } + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sqlstring": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz", + "integrity": "sha1-R1OT/56RR5rqYtyvDKPRSYOn+0A=" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "tarn": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tarn/-/tarn-3.0.1.tgz", + "integrity": "sha512-6usSlV9KyHsspvwu2duKH+FMUhqJnAh6J5J/4MITl8s94iSUQTLkJggdiewKv4RyARQccnigV48Z+khiuVZDJw==" + }, + "tildify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tildify/-/tildify-2.0.0.tgz", + "integrity": "sha512-Cc+OraorugtXNfs50hU9KS369rFXCfgGLpfCfvlc+Ud5u6VWmUQsOAa9HbTvheQdYnrdJqqv1e5oIqXppMYnSw==" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typescript": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz", + "integrity": "sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + } +} diff --git a/back-end/labook/package.json b/back-end/labook/package.json new file mode 100644 index 0000000..ab6270a --- /dev/null +++ b/back-end/labook/package.json @@ -0,0 +1,30 @@ +{ + "name": "labook-aula", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "tsc && node --inspect ./build/index.js" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "@types/bcryptjs": "^2.4.2", + "@types/cors": "^2.8.12", + "@types/express": "^4.17.13", + "@types/jsonwebtoken": "^8.5.5", + "@types/uuid": "^8.3.1", + "typescript": "^4.4.4" + }, + "dependencies": { + "bcryptjs": "^2.4.3", + "cors": "^2.8.5", + "dotenv": "^10.0.0", + "express": "^4.17.1", + "jsonwebtoken": "^8.5.1", + "knex": "^0.95.11", + "mysql": "^2.18.1", + "uuid": "^8.3.2" + } +} diff --git a/back-end/labook/src/app.ts b/back-end/labook/src/app.ts new file mode 100644 index 0000000..c8ea24b --- /dev/null +++ b/back-end/labook/src/app.ts @@ -0,0 +1,14 @@ +import express from 'express' +import dotenv from 'dotenv' +import cors from 'cors' + +dotenv.config() + +export const app = express() + +app.use(express.json()) +app.use(cors()) + +app.listen(3003, () => { + console.log("Server rodando na porta 3003") +}) \ No newline at end of file diff --git a/back-end/labook/src/business/User.business.ts b/back-end/labook/src/business/User.business.ts new file mode 100644 index 0000000..8601e8a --- /dev/null +++ b/back-end/labook/src/business/User.business.ts @@ -0,0 +1,46 @@ +import { SignupInputDTO } from "../controller/User.controller"; +import UserData from "../data/User.data"; +import User from "../model/User"; +import Authenticator from "../services/Authenticator"; +import HashManager from "../services/HashManager"; +import IdGenerator from "../services/IdGenerator"; + +export default class UserBusiness { + + constructor( + private userData: UserData, + private idGenerator: IdGenerator, + private authenticator: Authenticator, + private hashManager: HashManager + ) {} + + signup = async (input: SignupInputDTO) => { + const { name, email, password } = input + + if (!email || !name || !password) { + throw new Error("Campos inválidos ao cadastrar usuário") + } + + const registeredUser = await this.userData.findByEmail(email) + if (registeredUser) { + throw new Error("E-mail já cadastrado") + } + + const id = this.idGenerator.execute() + + const hashedPassword = await this.hashManager.hash(password) + + const user = new User( + id, + name, + email, + hashedPassword + ) + + await this.userData.create(user) + + const token = this.authenticator.generateToken({ id }) + + return token + } +} \ No newline at end of file diff --git a/back-end/labook/src/controller/PostControler.ts b/back-end/labook/src/controller/PostControler.ts new file mode 100644 index 0000000..f37514e --- /dev/null +++ b/back-end/labook/src/controller/PostControler.ts @@ -0,0 +1,9 @@ +import {Request, Response} from "express" +import UserBusiness from "../business/User.business" + + +export default class UserControler{ + constructor( + private + ) +} \ No newline at end of file diff --git a/back-end/labook/src/controller/User.controller.ts b/back-end/labook/src/controller/User.controller.ts new file mode 100644 index 0000000..5166553 --- /dev/null +++ b/back-end/labook/src/controller/User.controller.ts @@ -0,0 +1,37 @@ +import { Request, Response } from "express"; +import UserBusiness from "../business/User.business"; + +export type SignupInputDTO = { + name: string + email: string + password: string +} + +export default class UserController { + constructor( + private userBusiness: UserBusiness + ) {} + + signup = async (req: Request, res: Response) => { + const {name, email, password} = req.body + + const input: SignupInputDTO = { + email, + name, + password + } + + try { + + const token = await this.userBusiness.signup(input) + + res.status(200).send({ message:"Usuário cadastrado com sucesso", token }) + + } catch (error: any) { + if (error.message) return res.status(400).send(error.message) + res.status(400).send("Erro no signup") + } + } + + +} \ No newline at end of file diff --git a/back-end/labook/src/data/BaseDatabase.ts b/back-end/labook/src/data/BaseDatabase.ts new file mode 100644 index 0000000..d6ad242 --- /dev/null +++ b/back-end/labook/src/data/BaseDatabase.ts @@ -0,0 +1,18 @@ +import knex from "knex"; + +// abstract para evitar instanciar a BaseDatabase +// protected para permitir herança +// static para não precisar do .this +export default abstract class BaseDatabase { + protected static connection = knex({ + client: "mysql", + connection: { + host: process.env.DB_HOST, + user: process.env.DB_USER, + password: process.env.DB_PASSWORD, + database: process.env.DB_DATABASE, + port: 3306, + multipleStatements: true, + }, + }); +} diff --git a/back-end/labook/src/data/User.data.ts b/back-end/labook/src/data/User.data.ts new file mode 100644 index 0000000..6eefa91 --- /dev/null +++ b/back-end/labook/src/data/User.data.ts @@ -0,0 +1,38 @@ +import User from "../model/User"; +import BaseDatabase from "./BaseDatabase"; + +type FindByEmailResponse = { + id: string + name: string + email: string + password: string +}[] + +export default class UserData extends BaseDatabase { + + protected TABLE_NAME = "labook_users" + + create = async (user: User) => { + try { + await BaseDatabase + .connection(this.TABLE_NAME) + .insert(user) + } catch (error) { + throw new Error("Erro ao criar usuário no banco de dados") + } + } + + findByEmail = async (email: string) => { + try { + const queryResult: FindByEmailResponse = await BaseDatabase + .connection(this.TABLE_NAME) + .select() + .where({ email }) + + return queryResult[0] + + } catch (error) { + throw new Error("Erro ao buscar usuário no banco de dados") + } + } +} \ No newline at end of file diff --git a/back-end/labook/src/index.ts b/back-end/labook/src/index.ts new file mode 100644 index 0000000..986b22c --- /dev/null +++ b/back-end/labook/src/index.ts @@ -0,0 +1,18 @@ +import { app } from "./app"; +import UserBusiness from "./business/User.business"; +import UserController from "./controller/User.controller"; +import UserData from "./data/User.data"; +import Authenticator from "./services/Authenticator"; +import HashManager from "./services/HashManager"; +import IdGenerator from "./services/IdGenerator"; + +const userController = new UserController( + new UserBusiness( + new UserData(), + new IdGenerator(), + new Authenticator(), + new HashManager() + ) +) + +app.post("/user/signup", userController.signup) \ No newline at end of file diff --git a/back-end/labook/src/model/Post.ts b/back-end/labook/src/model/Post.ts new file mode 100644 index 0000000..94f1fed --- /dev/null +++ b/back-end/labook/src/model/Post.ts @@ -0,0 +1,35 @@ +enum POST_TYPE { + NORMAL = "NORMAL", + EVENT = "EVENT" +} + +export default class Post { + constructor( + private id: string, + private user_id: string, + private type: POST_TYPE, + private photo_url: string, + private timestamp: number + ) {} + + + public getId() : string { + return this.id + } + + public getUserId() : string { + return this.user_id + } + + public getType() : string { + return this.type + } + + public getPhotoUrl() : string { + return this.photo_url + } + + public getTimestamp() : number { + return this.timestamp + } +} \ No newline at end of file diff --git a/back-end/labook/src/model/User.ts b/back-end/labook/src/model/User.ts new file mode 100644 index 0000000..1d80459 --- /dev/null +++ b/back-end/labook/src/model/User.ts @@ -0,0 +1,28 @@ +export type authenticationData = { + id: string +} + +export default class User { + constructor( + private id: string, + private name: string, + private email: string, + private password: string + ) {} + + public getId() { + return this.id + } + + public getName() { + return this.name + } + + public getEmail() { + return this.email + } + + public getPassword() { + return this.password + } +} \ No newline at end of file diff --git a/back-end/labook/src/services/Authenticator.ts b/back-end/labook/src/services/Authenticator.ts new file mode 100644 index 0000000..d01f6b4 --- /dev/null +++ b/back-end/labook/src/services/Authenticator.ts @@ -0,0 +1,25 @@ +import * as jwt from "jsonwebtoken" +import { authenticationData } from "../model/User" + +export default class Authenticator { + generateToken = ( + payload: authenticationData + ): string => { + return jwt.sign( + payload, + process.env.JWT_KEY as string, + { + expiresIn: "24min" + } + ) + } + + getTokenData = ( + token: string + ): authenticationData => { + return jwt.verify( + token, + process.env.JWT_KEY as string + ) as authenticationData + } +} \ No newline at end of file diff --git a/back-end/labook/src/services/HashManager.ts b/back-end/labook/src/services/HashManager.ts new file mode 100644 index 0000000..130cc36 --- /dev/null +++ b/back-end/labook/src/services/HashManager.ts @@ -0,0 +1,13 @@ +import * as bcrypt from 'bcryptjs'; + +export default class HashManager { + hash = async (plainText: string): Promise => { + const rounds = Number(process.env.BCRYPT_COST); + const salt = await bcrypt.genSalt(rounds); + return bcrypt.hash(plainText, salt) + } + + compare = async (plainText: string, cypherText: string): Promise => { + return bcrypt.compare(plainText, cypherText) + } +} \ No newline at end of file diff --git a/back-end/labook/src/services/IdGenerator.ts b/back-end/labook/src/services/IdGenerator.ts new file mode 100644 index 0000000..92d257a --- /dev/null +++ b/back-end/labook/src/services/IdGenerator.ts @@ -0,0 +1,5 @@ +import { v4 } from "uuid" + +export default class IdGenerator { + execute = (): string => v4() +} \ No newline at end of file diff --git a/back-end/labook/tables.sql b/back-end/labook/tables.sql new file mode 100644 index 0000000..7130073 --- /dev/null +++ b/back-end/labook/tables.sql @@ -0,0 +1,46 @@ +DROP TABLE labook_users; + +CREATE TABLE labook_users ( + id VARCHAR(64) PRIMARY KEY, + name VARCHAR(64) NOT NULL, + email VARCHAR(64) NOT NULL, + password VARCHAR(64) NOT NULL +); + +SET FOREIGN_KEY_CHECKS = 0; +TRUNCATE TABLE labook_users; +SET FOREIGN_KEY_CHECKS = 1; + +SELECT * FROM labook_users; + +INSERT INTO labook_users VALUES ( + "111", + "astrodev", + "astrodev@gmail.com", + "123456" +); + + + + +DROP TABLE labook_posts; + +CREATE TABLE labook_posts ( + id VARCHAR(64) PRIMARY KEY, + user_id VARCHAR(64) NOT NULL, + type ENUM("NORMAL", "EVENT") DEFAULT "NORMAL" , + photo_url VARCHAR(64) NOT NULL, + timestamp BIGINT NOT NULL, + FOREIGN KEY (user_id) REFERENCES labook_users(id) +); + +TRUNCATE TABLE labook_posts; + +SELECT * FROM labook_posts; + +INSERT INTO labook_posts (id, photo_url, user_id, timestamp) VALUES ( + "12345", + "https://picsum.photos/300", + "111", + 1635252045094 +); \ No newline at end of file diff --git a/back-end/labook/tsconfig.json b/back-end/labook/tsconfig.json new file mode 100644 index 0000000..d3b67e6 --- /dev/null +++ b/back-end/labook/tsconfig.json @@ -0,0 +1,100 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Projects */ + // "incremental": true, /* Enable incremental compilation */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + + /* Language and Environment */ + "target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "jsx": "preserve", /* Specify what JSX code is generated. */ + // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ + // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + "rootDir": "./src", /* Specify the root folder within your source files. */ + // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + // "resolveJsonModule": true, /* Enable importing .json files */ + // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ + + /* JavaScript Support */ + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ + + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ + "outDir": "./build", /* Specify an output folder for all emitted files. */ + // "removeComments": true, /* Disable emitting comments. */ + // "noEmit": true, /* Disable emitting files from a compilation. */ + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + + /* Interop Constraints */ + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ + // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ + // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + } +} diff --git a/back-end/projeto-case/.gitignore b/back-end/projeto-case/.gitignore new file mode 100644 index 0000000..222f4e0 --- /dev/null +++ b/back-end/projeto-case/.gitignore @@ -0,0 +1,6 @@ +build +node_modules + +.env + +package-lock.json \ No newline at end of file diff --git a/back-end/projeto-case/package.json b/back-end/projeto-case/package.json new file mode 100644 index 0000000..5b383cd --- /dev/null +++ b/back-end/projeto-case/package.json @@ -0,0 +1,30 @@ +{ + "name": "revisao-back-lovelace", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "tsc && node ./build/index.js", + "dev": "ts-node-dev src/index.ts", + "migrations": "tsnd./src/data/migrations.js" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "@types/cors": "^2.8.12", + "@types/dotenv": "^8.2.0", + "@types/knex": "^0.16.1", + "@types/node": "^16.11.6", + "typescript": "^4.4.4" + }, + "dependencies": { + "@types/express": "^4.17.13", + "cors": "^2.8.5", + "dotenv": "^10.0.0", + "express": "^4.17.1", + "knex": "^0.95.12", + "mysql": "^2.18.1", + "ts-node-dev": "^1.1.8" + } +} diff --git a/back-end/projeto-case/src/app.ts b/back-end/projeto-case/src/app.ts new file mode 100644 index 0000000..a5d6acb --- /dev/null +++ b/back-end/projeto-case/src/app.ts @@ -0,0 +1,18 @@ +import express, { Express } from 'express' +import cors from 'cors' +import { AddressInfo } from 'net' + + export const app: Express = express() + +app.use(express.json()) + +app.use(cors()) +const server = app.listen(process.env.PORT || 3003, () => { + if (server) { + const address = server.address() as AddressInfo; + console.log(`Server is running in http://localhost: ${address.port}`); + } else { + console.error(`Failure upon starting server.`); + } + }); + diff --git a/back-end/projeto-case/src/data/PokemonGo.json b/back-end/projeto-case/src/data/PokemonGo.json new file mode 100644 index 0000000..c5419ba --- /dev/null +++ b/back-end/projeto-case/src/data/PokemonGo.json @@ -0,0 +1,26308 @@ +{ + "Sheet1": [ + { + "Row": 1, + "Name": "Bulbasaur", + "Pokedex Number": 1, + "Img name": 1, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 1, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 326, + "ATK": 118, + "DEF": 118, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 981, + "100% CP @ 39": 967 + }, + { + "Row": 2, + "Name": "Ivysaur", + "Pokedex Number": 2, + "Img name": 2, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 1, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 422, + "ATK": 151, + "DEF": 151, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1552, + "100% CP @ 39": 1529 + }, + { + "Row": 3, + "Name": "Venusaur", + "Pokedex Number": 3, + "Img name": 3, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 1, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 556, + "ATK": 198, + "DEF": 198, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2568, + "100% CP @ 39": 2531 + }, + { + "Row": 4, + "Name": "Charmander", + "Pokedex Number": 4, + "Img name": 4, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 2, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 290, + "ATK": 116, + "DEF": 96, + "STA": 78, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 831, + "100% CP @ 39": 819 + }, + { + "Row": 5, + "Name": "Charmeleon", + "Pokedex Number": 5, + "Img name": 5, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 2, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 403, + "ATK": 158, + "DEF": 129, + "STA": 116, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1484, + "100% CP @ 39": 1462 + }, + { + "Row": 6, + "Name": "Charizard", + "Pokedex Number": 6, + "Img name": 6, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 2, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 555, + "ATK": 223, + "DEF": 176, + "STA": 156, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2686, + "100% CP @ 39": 2648 + }, + { + "Row": 7, + "Name": "Squirtle", + "Pokedex Number": 7, + "Img name": 7, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 3, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 304, + "ATK": 94, + "DEF": 122, + "STA": 88, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 808, + "100% CP @ 39": 797 + }, + { + "Row": 8, + "Name": "Wartortle", + "Pokedex Number": 8, + "Img name": 8, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 3, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 399, + "ATK": 126, + "DEF": 155, + "STA": 118, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1324, + "100% CP @ 39": 1305 + }, + { + "Row": 9, + "Name": "Blastoise", + "Pokedex Number": 9, + "Img name": 9, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 3, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 539, + "ATK": 171, + "DEF": 210, + "STA": 158, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2291, + "100% CP @ 39": 2259 + }, + { + "Row": 10, + "Name": "Caterpie", + "Pokedex Number": 10, + "Img name": 10, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 4, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 207, + "ATK": 55, + "DEF": 62, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 393, + "100% CP @ 39": 387 + }, + { + "Row": 11, + "Name": "Metapod", + "Pokedex Number": 11, + "Img name": 11, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 4, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 239, + "ATK": 45, + "DEF": 94, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 419, + "100% CP @ 39": 413 + }, + { + "Row": 12, + "Name": "Butterfree", + "Pokedex Number": 12, + "Img name": 12, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 4, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 438, + "ATK": 167, + "DEF": 151, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1701, + "100% CP @ 39": 1677 + }, + { + "Row": 13, + "Name": "Weedle", + "Pokedex Number": 13, + "Img name": 13, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 5, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 198, + "ATK": 63, + "DEF": 55, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 397, + "100% CP @ 39": 391 + }, + { + "Row": 14, + "Name": "Kakuna", + "Pokedex Number": 14, + "Img name": 14, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 5, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 222, + "ATK": 46, + "DEF": 86, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 392, + "100% CP @ 39": 386 + }, + { + "Row": 15, + "Name": "Beedrill", + "Pokedex Number": 15, + "Img name": 15, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 5, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 449, + "ATK": 169, + "DEF": 150, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1777, + "100% CP @ 39": 1752 + }, + { + "Row": 16, + "Name": "Pidgey", + "Pokedex Number": 16, + "Img name": 16, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 6, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 241, + "ATK": 85, + "DEF": 76, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 580, + "100% CP @ 39": 572 + }, + { + "Row": 17, + "Name": "Pidgeotto", + "Pokedex Number": 17, + "Img name": 17, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 6, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 351, + "ATK": 117, + "DEF": 108, + "STA": 126, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1085, + "100% CP @ 39": 1070 + }, + { + "Row": 18, + "Name": "Pidgeot", + "Pokedex Number": 18, + "Img name": 18, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 6, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 489, + "ATK": 166, + "DEF": 157, + "STA": 166, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1994, + "100% CP @ 39": 1966 + }, + { + "Row": 19, + "Name": "Rattata", + "Pokedex Number": 19, + "Img name": 19, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 7, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 233, + "ATK": 103, + "DEF": 70, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 588, + "100% CP @ 39": 580 + }, + { + "Row": 20, + "Name": "Raticate", + "Pokedex Number": 20, + "Img name": 20, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 7, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 415, + "ATK": 161, + "DEF": 144, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1549, + "100% CP @ 39": 1527 + }, + { + "Row": 21, + "Name": "Spearow", + "Pokedex Number": 21, + "Img name": 21, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 8, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 253, + "ATK": 112, + "DEF": 61, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 673, + "100% CP @ 39": 664 + }, + { + "Row": 22, + "Name": "Fearow", + "Pokedex Number": 22, + "Img name": 22, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 8, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 447, + "ATK": 182, + "DEF": 135, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1814, + "100% CP @ 39": 1788 + }, + { + "Row": 23, + "Name": "Ekans", + "Pokedex Number": 23, + "Img name": 23, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 9, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 282, + "ATK": 110, + "DEF": 102, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 778, + "100% CP @ 39": 767 + }, + { + "Row": 24, + "Name": "Arbok", + "Pokedex Number": 24, + "Img name": 24, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 9, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 445, + "ATK": 167, + "DEF": 158, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1737, + "100% CP @ 39": 1712 + }, + { + "Row": 25, + "Name": "Pikachu", + "Pokedex Number": 25, + "Img name": 25, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 10, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 283, + "ATK": 112, + "DEF": 101, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 787, + "100% CP @ 39": 776 + }, + { + "Row": 26, + "Name": "Raichu", + "Pokedex Number": 26, + "Img name": 26, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 10, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 478, + "ATK": 193, + "DEF": 165, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2025, + "100% CP @ 39": 1996 + }, + { + "Row": 27, + "Name": "Sandshrew", + "Pokedex Number": 27, + "Img name": 27, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 11, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 371, + "ATK": 126, + "DEF": 145, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1194, + "100% CP @ 39": 1177 + }, + { + "Row": 28, + "Name": "Sandslash", + "Pokedex Number": 28, + "Img name": 28, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 11, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 534, + "ATK": 182, + "DEF": 202, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2328, + "100% CP @ 39": 2294 + }, + { + "Row": 29, + "Name": "Nidoran F", + "Pokedex Number": 29, + "Img name": 29, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 12, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 290, + "ATK": 86, + "DEF": 94, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 736, + "100% CP @ 39": 725 + }, + { + "Row": 30, + "Name": "Nidorina", + "Pokedex Number": 30, + "Img name": 30, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 12, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 383, + "ATK": 117, + "DEF": 126, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1218, + "100% CP @ 39": 1201 + }, + { + "Row": 31, + "Name": "Nidoqueen", + "Pokedex Number": 31, + "Img name": 31, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 12, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "ground", + "Weather 1": "Cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 534, + "ATK": 180, + "DEF": 174, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2338, + "100% CP @ 39": 2304 + }, + { + "Row": 32, + "Name": "Nidoran M", + "Pokedex Number": 32, + "Img name": 32, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 13, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 273, + "ATK": 105, + "DEF": 76, + "STA": 92, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 739, + "100% CP @ 39": 729 + }, + { + "Row": 33, + "Name": "Nidorino", + "Pokedex Number": 33, + "Img name": 33, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 13, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 371, + "ATK": 137, + "DEF": 112, + "STA": 122, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1252, + "100% CP @ 39": 1234 + }, + { + "Row": 34, + "Name": "Nidoking", + "Pokedex Number": 34, + "Img name": 34, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 13, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "ground", + "Weather 1": "Cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 523, + "ATK": 204, + "DEF": 157, + "STA": 162, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2386, + "100% CP @ 39": 2352 + }, + { + "Row": 35, + "Name": "Clefairy", + "Pokedex Number": 35, + "Img name": 35, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 14, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 363, + "ATK": 107, + "DEF": 116, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1085, + "100% CP @ 39": 1070 + }, + { + "Row": 36, + "Name": "Clefable", + "Pokedex Number": 36, + "Img name": 36, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 14, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 539, + "ATK": 178, + "DEF": 171, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2353, + "100% CP @ 39": 2320 + }, + { + "Row": 37, + "Name": "Vulpix", + "Pokedex Number": 37, + "Img name": 37, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 15, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 294, + "ATK": 96, + "DEF": 122, + "STA": 76, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 774, + "100% CP @ 39": 763 + }, + { + "Row": 38, + "Name": "Ninetales", + "Pokedex Number": 38, + "Img name": 38, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 15, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 519, + "ATK": 169, + "DEF": 204, + "STA": 146, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2157, + "100% CP @ 39": 2127 + }, + { + "Row": 39, + "Name": "Jigglypuff", + "Pokedex Number": 39, + "Img name": 39, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 16, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "fairy", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 354, + "ATK": 80, + "DEF": 44, + "STA": 230, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 713, + "100% CP @ 39": 703 + }, + { + "Row": 40, + "Name": "Wigglytuff", + "Pokedex Number": 40, + "Img name": 40, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 16, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "fairy", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 529, + "ATK": 156, + "DEF": 93, + "STA": 280, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1906, + "100% CP @ 39": 1879 + }, + { + "Row": 41, + "Name": "Zubat", + "Pokedex Number": 41, + "Img name": 41, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 17, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "flying", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 239, + "ATK": 83, + "DEF": 76, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 569, + "100% CP @ 39": 560 + }, + { + "Row": 42, + "Name": "Golbat", + "Pokedex Number": 42, + "Img name": 42, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 17, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "flying", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 464, + "ATK": 161, + "DEF": 153, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1830, + "100% CP @ 39": 1804 + }, + { + "Row": 43, + "Name": "Oddish", + "Pokedex Number": 43, + "Img name": 43, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 18, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 337, + "ATK": 131, + "DEF": 116, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1069, + "100% CP @ 39": 1054 + }, + { + "Row": 44, + "Name": "Gloom", + "Pokedex Number": 44, + "Img name": 44, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 18, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 412, + "ATK": 153, + "DEF": 139, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1512, + "100% CP @ 39": 1491 + }, + { + "Row": 45, + "Name": "Vileplume", + "Pokedex Number": 45, + "Img name": 45, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 18, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 522, + "ATK": 202, + "DEF": 170, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2367, + "100% CP @ 39": 2334 + }, + { + "Row": 46, + "Name": "Paras", + "Pokedex Number": 46, + "Img name": 46, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 19, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 290, + "ATK": 121, + "DEF": 99, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 836, + "100% CP @ 39": 824 + }, + { + "Row": 47, + "Name": "Parasect", + "Pokedex Number": 47, + "Img name": 47, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 19, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 431, + "ATK": 165, + "DEF": 146, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1657, + "100% CP @ 39": 1633 + }, + { + "Row": 48, + "Name": "Venonat", + "Pokedex Number": 48, + "Img name": 48, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 20, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 322, + "ATK": 100, + "DEF": 102, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 902, + "100% CP @ 39": 889 + }, + { + "Row": 49, + "Name": "Venomoth", + "Pokedex Number": 49, + "Img name": 49, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 20, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 469, + "ATK": 179, + "DEF": 150, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1937, + "100% CP @ 39": 1910 + }, + { + "Row": 50, + "Name": "Diglett", + "Pokedex Number": 50, + "Img name": 50, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 21, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 217, + "ATK": 109, + "DEF": 88, + "STA": 20, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 465, + "100% CP @ 39": 458 + }, + { + "Row": 51, + "Name": "Dugtrio", + "Pokedex Number": 51, + "Img name": 51, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 21, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 384, + "ATK": 167, + "DEF": 147, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1333, + "100% CP @ 39": 1314 + }, + { + "Row": 52, + "Name": "Meowth", + "Pokedex Number": 52, + "Img name": 52, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 23, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 253, + "ATK": 92, + "DEF": 81, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 638, + "100% CP @ 39": 629 + }, + { + "Row": 53, + "Name": "Persian", + "Pokedex Number": 53, + "Img name": 53, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 23, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 419, + "ATK": 150, + "DEF": 139, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1539, + "100% CP @ 39": 1517 + }, + { + "Row": 54, + "Name": "Psyduck", + "Pokedex Number": 54, + "Img name": 54, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 24, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 318, + "ATK": 122, + "DEF": 96, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 966, + "100% CP @ 39": 952 + }, + { + "Row": 55, + "Name": "Golduck", + "Pokedex Number": 55, + "Img name": 55, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 24, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 514, + "ATK": 191, + "DEF": 163, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2270, + "100% CP @ 39": 2238 + }, + { + "Row": 56, + "Name": "Mankey", + "Pokedex Number": 56, + "Img name": 56, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 25, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 315, + "ATK": 148, + "DEF": 87, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1002, + "100% CP @ 39": 987 + }, + { + "Row": 57, + "Name": "Primeape", + "Pokedex Number": 57, + "Img name": 57, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 25, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 481, + "ATK": 207, + "DEF": 144, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2105, + "100% CP @ 39": 2075 + }, + { + "Row": 58, + "Name": "Growlithe", + "Pokedex Number": 58, + "Img name": 58, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 26, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 342, + "ATK": 136, + "DEF": 96, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1110, + "100% CP @ 39": 1095 + }, + { + "Row": 59, + "Name": "Arcanine", + "Pokedex Number": 59, + "Img name": 59, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 26, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 573, + "ATK": 227, + "DEF": 166, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2839, + "100% CP @ 39": 2799 + }, + { + "Row": 60, + "Name": "Poliwag", + "Pokedex Number": 60, + "Img name": 60, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 27, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 263, + "ATK": 101, + "DEF": 82, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 695, + "100% CP @ 39": 685 + }, + { + "Row": 61, + "Name": "Poliwhirl", + "Pokedex Number": 61, + "Img name": 61, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 27, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 390, + "ATK": 130, + "DEF": 130, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1313, + "100% CP @ 39": 1294 + }, + { + "Row": 62, + "Name": "Poliwrath", + "Pokedex Number": 62, + "Img name": 62, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 27, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "fighting", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 549, + "ATK": 182, + "DEF": 187, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2441, + "100% CP @ 39": 2407 + }, + { + "Row": 63, + "Name": "Abra", + "Pokedex Number": 63, + "Img name": 63, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 28, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 348, + "ATK": 195, + "DEF": 103, + "STA": 50, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1148, + "100% CP @ 39": 1132 + }, + { + "Row": 64, + "Name": "Kadabra", + "Pokedex Number": 64, + "Img name": 64, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 28, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 450, + "ATK": 232, + "DEF": 138, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1859, + "100% CP @ 39": 1833 + }, + { + "Row": 65, + "Name": "Alakazam", + "Pokedex Number": 65, + "Img name": 65, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 28, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 575, + "ATK": 271, + "DEF": 194, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2887, + "100% CP @ 39": 2845 + }, + { + "Row": 66, + "Name": "Machop", + "Pokedex Number": 66, + "Img name": 66, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 29, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 365, + "ATK": 137, + "DEF": 88, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1199, + "100% CP @ 39": 1182 + }, + { + "Row": 67, + "Name": "Machoke", + "Pokedex Number": 67, + "Img name": 67, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 29, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 467, + "ATK": 177, + "DEF": 130, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1910, + "100% CP @ 39": 1882 + }, + { + "Row": 68, + "Name": "Machamp", + "Pokedex Number": 68, + "Img name": 68, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 29, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 576, + "ATK": 234, + "DEF": 162, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 3, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2889, + "100% CP @ 39": 2848 + }, + { + "Row": 69, + "Name": "Bellsprout", + "Pokedex Number": 69, + "Img name": 69, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 30, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 303, + "ATK": 139, + "DEF": 64, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 916, + "100% CP @ 39": 903 + }, + { + "Row": 70, + "Name": "Weepinbell", + "Pokedex Number": 70, + "Img name": 70, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 30, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 397, + "ATK": 172, + "DEF": 95, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1475, + "100% CP @ 39": 1453 + }, + { + "Row": 71, + "Name": "Victreebel", + "Pokedex Number": 71, + "Img name": 71, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 30, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 505, + "ATK": 207, + "DEF": 138, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2268, + "100% CP @ 39": 2236 + }, + { + "Row": 72, + "Name": "Tentacool", + "Pokedex Number": 72, + "Img name": 72, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 31, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 359, + "ATK": 97, + "DEF": 182, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 956, + "100% CP @ 39": 943 + }, + { + "Row": 73, + "Name": "Tentacruel", + "Pokedex Number": 73, + "Img name": 73, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 31, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 563, + "ATK": 166, + "DEF": 237, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2374, + "100% CP @ 39": 2340 + }, + { + "Row": 74, + "Name": "Geodude", + "Pokedex Number": 74, + "Img name": 74, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 32, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 375, + "ATK": 132, + "DEF": 163, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1193, + "100% CP @ 39": 1176 + }, + { + "Row": 75, + "Name": "Graveler", + "Pokedex Number": 75, + "Img name": 75, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 32, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 470, + "ATK": 164, + "DEF": 196, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1815, + "100% CP @ 39": 1789 + }, + { + "Row": 76, + "Name": "Golem", + "Pokedex Number": 76, + "Img name": 76, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 32, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 600, + "ATK": 211, + "DEF": 229, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 4, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2916, + "100% CP @ 39": 2875 + }, + { + "Row": 77, + "Name": "Ponyta", + "Pokedex Number": 77, + "Img name": 77, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 33, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 402, + "ATK": 170, + "DEF": 132, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1502, + "100% CP @ 39": 1480 + }, + { + "Row": 78, + "Name": "Rapidash", + "Pokedex Number": 78, + "Img name": 78, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 33, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 504, + "ATK": 207, + "DEF": 167, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2252, + "100% CP @ 39": 2220 + }, + { + "Row": 79, + "Name": "Slowpoke", + "Pokedex Number": 79, + "Img name": 79, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 34, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "psychic", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 398, + "ATK": 109, + "DEF": 109, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1204, + "100% CP @ 39": 1187 + }, + { + "Row": 80, + "Name": "Slowbro", + "Pokedex Number": 80, + "Img name": 80, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 34, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "psychic", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 561, + "ATK": 177, + "DEF": 194, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2482, + "100% CP @ 39": 2446 + }, + { + "Row": 81, + "Name": "Magnemite", + "Pokedex Number": 81, + "Img name": 81, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 35, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 343, + "ATK": 165, + "DEF": 128, + "STA": 50, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1083, + "100% CP @ 39": 1068 + }, + { + "Row": 82, + "Name": "Magneton", + "Pokedex Number": 82, + "Img name": 82, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 35, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 505, + "ATK": 223, + "DEF": 182, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 2237, + "100% CP @ 39": 2205 + }, + { + "Row": 83, + "Name": "Farfetchd", + "Pokedex Number": 83, + "Img name": 83, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 36, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 346, + "ATK": 124, + "DEF": 118, + "STA": 104, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1092, + "100% CP @ 39": 1076 + }, + { + "Row": 84, + "Name": "Doduo", + "Pokedex Number": 84, + "Img name": 84, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 37, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 316, + "ATK": 158, + "DEF": 88, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1011, + "100% CP @ 39": 996 + }, + { + "Row": 85, + "Name": "Dodrio", + "Pokedex Number": 85, + "Img name": 85, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 37, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 483, + "ATK": 218, + "DEF": 145, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2138, + "100% CP @ 39": 2108 + }, + { + "Row": 86, + "Name": "Seel", + "Pokedex Number": 86, + "Img name": 86, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 38, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 343, + "ATK": 85, + "DEF": 128, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 899, + "100% CP @ 39": 886 + }, + { + "Row": 87, + "Name": "Dewgong", + "Pokedex Number": 87, + "Img name": 87, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 38, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ice", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 503, + "ATK": 139, + "DEF": 184, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1894, + "100% CP @ 39": 1867 + }, + { + "Row": 88, + "Name": "Grimer", + "Pokedex Number": 88, + "Img name": 88, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 39, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 385, + "ATK": 135, + "DEF": 90, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1269, + "100% CP @ 39": 1251 + }, + { + "Row": 89, + "Name": "Muk", + "Pokedex Number": 89, + "Img name": 89, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 39, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 584, + "ATK": 190, + "DEF": 184, + "STA": 210, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2709, + "100% CP @ 39": 2670 + }, + { + "Row": 90, + "Name": "Shellder", + "Pokedex Number": 90, + "Img name": 90, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 40, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 344, + "ATK": 116, + "DEF": 168, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 958, + "100% CP @ 39": 944 + }, + { + "Row": 91, + "Name": "Cloyster", + "Pokedex Number": 91, + "Img name": 91, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 40, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ice", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 609, + "ATK": 186, + "DEF": 323, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2475, + "100% CP @ 39": 2439 + }, + { + "Row": 92, + "Name": "Gastly", + "Pokedex Number": 92, + "Img name": 92, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 41, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "poison", + "Weather 1": "Fog", + "Weather 2": "Cloudy", + "STAT TOTAL": 316, + "ATK": 186, + "DEF": 70, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1002, + "100% CP @ 39": 988 + }, + { + "Row": 93, + "Name": "Haunter", + "Pokedex Number": 93, + "Img name": 93, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 41, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "poison", + "Weather 1": "Fog", + "Weather 2": "Cloudy", + "STAT TOTAL": 425, + "ATK": 223, + "DEF": 112, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1716, + "100% CP @ 39": 1692 + }, + { + "Row": 94, + "Name": "Gengar", + "Pokedex Number": 94, + "Img name": 94, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 41, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "poison", + "Weather 1": "Fog", + "Weather 2": "Cloudy", + "STAT TOTAL": 537, + "ATK": 261, + "DEF": 156, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 3, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2619, + "100% CP @ 39": 2581 + }, + { + "Row": 95, + "Name": "Onix", + "Pokedex Number": 95, + "Img name": 95, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 42, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 443, + "ATK": 85, + "DEF": 288, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1002, + "100% CP @ 39": 988 + }, + { + "Row": 96, + "Name": "Drowzee", + "Pokedex Number": 96, + "Img name": 96, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 43, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 367, + "ATK": 89, + "DEF": 158, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 992, + "100% CP @ 39": 978 + }, + { + "Row": 97, + "Name": "Hypno", + "Pokedex Number": 97, + "Img name": 97, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 43, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 529, + "ATK": 144, + "DEF": 215, + "STA": 170, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2048, + "100% CP @ 39": 2019 + }, + { + "Row": 98, + "Name": "Krabby", + "Pokedex Number": 98, + "Img name": 98, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 44, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 397, + "ATK": 181, + "DEF": 156, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1386, + "100% CP @ 39": 1366 + }, + { + "Row": 99, + "Name": "Kingler", + "Pokedex Number": 99, + "Img name": 99, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 44, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 564, + "ATK": 240, + "DEF": 214, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2694, + "100% CP @ 39": 2656 + }, + { + "Row": 100, + "Name": "Voltorb", + "Pokedex Number": 100, + "Img name": 100, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 45, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 303, + "ATK": 109, + "DEF": 114, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 857, + "100% CP @ 39": 845 + }, + { + "Row": 101, + "Name": "Electrode", + "Pokedex Number": 101, + "Img name": 101, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 45, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 472, + "ATK": 173, + "DEF": 179, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1900, + "100% CP @ 39": 1873 + }, + { + "Row": 102, + "Name": "Exeggcute", + "Pokedex Number": 102, + "Img name": 102, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 46, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "psychic", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 367, + "ATK": 107, + "DEF": 140, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1102, + "100% CP @ 39": 1086 + }, + { + "Row": 103, + "Name": "Exeggutor", + "Pokedex Number": 103, + "Img name": 103, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 46, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "psychic", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 581, + "ATK": 233, + "DEF": 158, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 2, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2916, + "100% CP @ 39": 2875 + }, + { + "Row": 104, + "Name": "Cubone", + "Pokedex Number": 104, + "Img name": 104, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 47, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 355, + "ATK": 90, + "DEF": 165, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 943, + "100% CP @ 39": 930 + }, + { + "Row": 105, + "Name": "Marowak", + "Pokedex Number": 105, + "Img name": 105, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 47, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 464, + "ATK": 144, + "DEF": 200, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1691, + "100% CP @ 39": 1667 + }, + { + "Row": 106, + "Name": "Hitmonlee", + "Pokedex Number": 106, + "Img name": 106, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 48, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 535, + "ATK": 224, + "DEF": 211, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2406, + "100% CP @ 39": 2372 + }, + { + "Row": 107, + "Name": "Hitmonchan", + "Pokedex Number": 107, + "Img name": 107, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 48, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 505, + "ATK": 193, + "DEF": 212, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2098, + "100% CP @ 39": 2069 + }, + { + "Row": 108, + "Name": "Lickitung", + "Pokedex Number": 108, + "Img name": 108, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 49, + "Cross Gen": 1, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 425, + "ATK": 108, + "DEF": 137, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1322, + "100% CP @ 39": 1303 + }, + { + "Row": 109, + "Name": "Koffing", + "Pokedex Number": 109, + "Img name": 109, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 50, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 363, + "ATK": 119, + "DEF": 164, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1091, + "100% CP @ 39": 1075 + }, + { + "Row": 110, + "Name": "Weezing", + "Pokedex Number": 110, + "Img name": 110, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 50, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 525, + "ATK": 174, + "DEF": 221, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2183, + "100% CP @ 39": 2152 + }, + { + "Row": 111, + "Name": "Rhyhorn", + "Pokedex Number": 111, + "Img name": 111, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 51, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "rock", + "Weather 1": "Sunny/clear", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 457, + "ATK": 140, + "DEF": 157, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1679, + "100% CP @ 39": 1655 + }, + { + "Row": 112, + "Name": "Rhydon", + "Pokedex Number": 112, + "Img name": 112, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 51, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "rock", + "Weather 1": "Sunny/clear", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 638, + "ATK": 222, + "DEF": 206, + "STA": 210, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 3300, + "100% CP @ 39": 3253 + }, + { + "Row": 113, + "Name": "Chansey", + "Pokedex Number": 113, + "Img name": 113, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 52, + "Cross Gen": 1, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 736, + "ATK": 60, + "DEF": 176, + "STA": 500, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1469, + "100% CP @ 39": 1448 + }, + { + "Row": 114, + "Name": "Tangela", + "Pokedex Number": 114, + "Img name": 114, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 53, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 518, + "ATK": 183, + "DEF": 205, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 2208, + "100% CP @ 39": 2177 + }, + { + "Row": 115, + "Name": "Kangaskhan", + "Pokedex Number": 115, + "Img name": 115, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 54, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 556, + "ATK": 181, + "DEF": 165, + "STA": 210, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2463, + "100% CP @ 39": 2428 + }, + { + "Row": 116, + "Name": "Horsea", + "Pokedex Number": 116, + "Img name": 116, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 55, + "Cross Gen": 1, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 314, + "ATK": 129, + "DEF": 125, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 921, + "100% CP @ 39": 908 + }, + { + "Row": 117, + "Name": "Seadra", + "Pokedex Number": 117, + "Img name": 117, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 55, + "Cross Gen": 1, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 479, + "ATK": 187, + "DEF": 182, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1979, + "100% CP @ 39": 1951 + }, + { + "Row": 118, + "Name": "Goldeen", + "Pokedex Number": 118, + "Img name": 118, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 56, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 328, + "ATK": 123, + "DEF": 115, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1006, + "100% CP @ 39": 992 + }, + { + "Row": 119, + "Name": "Seaking", + "Pokedex Number": 119, + "Img name": 119, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 56, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 489, + "ATK": 175, + "DEF": 154, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2040, + "100% CP @ 39": 2011 + }, + { + "Row": 120, + "Name": "Staryu", + "Pokedex Number": 120, + "Img name": 120, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 57, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 309, + "ATK": 137, + "DEF": 112, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 926, + "100% CP @ 39": 913 + }, + { + "Row": 121, + "Name": "Starmie", + "Pokedex Number": 121, + "Img name": 121, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 57, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "psychic", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 514, + "ATK": 210, + "DEF": 184, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2303, + "100% CP @ 39": 2270 + }, + { + "Row": 122, + "Name": "Mr Mime", + "Pokedex Number": 122, + "Img name": 122, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 58, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fairy", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 505, + "ATK": 192, + "DEF": 233, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1984, + "100% CP @ 39": 1956 + }, + { + "Row": 123, + "Name": "Scyther", + "Pokedex Number": 123, + "Img name": 123, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 59, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 528, + "ATK": 218, + "DEF": 170, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2464, + "100% CP @ 39": 2429 + }, + { + "Row": 124, + "Name": "Jynx", + "Pokedex Number": 124, + "Img name": 124, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 60, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 535, + "ATK": 223, + "DEF": 182, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 3, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2512, + "100% CP @ 39": 2476 + }, + { + "Row": 125, + "Name": "Electabuzz", + "Pokedex Number": 125, + "Img name": 125, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 61, + "Cross Gen": 1, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 501, + "ATK": 198, + "DEF": 173, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 2, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 2196, + "100% CP @ 39": 2165 + }, + { + "Row": 126, + "Name": "Magmar", + "Pokedex Number": 126, + "Img name": 126, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 62, + "Cross Gen": 1, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 505, + "ATK": 206, + "DEF": 169, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 2254, + "100% CP @ 39": 2222 + }, + { + "Row": 127, + "Name": "Pinsir", + "Pokedex Number": 127, + "Img name": 127, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 63, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 565, + "ATK": 238, + "DEF": 197, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2770, + "100% CP @ 39": 2730 + }, + { + "Row": 128, + "Name": "Tauros", + "Pokedex Number": 128, + "Img name": 128, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 64, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 545, + "ATK": 198, + "DEF": 197, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2488, + "100% CP @ 39": 2452 + }, + { + "Row": 129, + "Name": "Magikarp", + "Pokedex Number": 129, + "Img name": 129, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 65, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 171, + "ATK": 29, + "DEF": 102, + "STA": 40, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 1, + "Hatchable": 0, + "Shiny": 1, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 220, + "100% CP @ 39": 217 + }, + { + "Row": 130, + "Name": "Gyarados", + "Pokedex Number": 130, + "Img name": 130, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 65, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 624, + "ATK": 237, + "DEF": 197, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3281, + "100% CP @ 39": 3234 + }, + { + "Row": 131, + "Name": "Lapras", + "Pokedex Number": 131, + "Img name": 131, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 66, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ice", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 605, + "ATK": 165, + "DEF": 180, + "STA": 260, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2603, + "100% CP @ 39": 2566 + }, + { + "Row": 132, + "Name": "Ditto", + "Pokedex Number": 132, + "Img name": 132, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 67, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 278, + "ATK": 91, + "DEF": 91, + "STA": 96, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 718, + "100% CP @ 39": 707 + }, + { + "Row": 133, + "Name": "Eevee", + "Pokedex Number": 133, + "Img name": 133, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 68, + "Cross Gen": 1, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 335, + "ATK": 104, + "DEF": 121, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 969, + "100% CP @ 39": 955 + }, + { + "Row": 134, + "Name": "Vaporeon", + "Pokedex Number": 134, + "Img name": 134, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 68, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 642, + "ATK": 205, + "DEF": 177, + "STA": 260, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3157, + "100% CP @ 39": 3112 + }, + { + "Row": 135, + "Name": "Jolteon", + "Pokedex Number": 135, + "Img name": 135, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 68, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 563, + "ATK": 232, + "DEF": 201, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 3, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2730, + "100% CP @ 39": 2691 + }, + { + "Row": 136, + "Name": "Flareon", + "Pokedex Number": 136, + "Img name": 136, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 68, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 580, + "ATK": 246, + "DEF": 204, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2904, + "100% CP @ 39": 2863 + }, + { + "Row": 137, + "Name": "Porygon", + "Pokedex Number": 137, + "Img name": 137, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 69, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 422, + "ATK": 153, + "DEF": 139, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1567, + "100% CP @ 39": 1545 + }, + { + "Row": 138, + "Name": "Omanyte", + "Pokedex Number": 138, + "Img name": 138, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 70, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 399, + "ATK": 155, + "DEF": 174, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1345, + "100% CP @ 39": 1326 + }, + { + "Row": 139, + "Name": "Omastar", + "Pokedex Number": 139, + "Img name": 139, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 70, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 574, + "ATK": 207, + "DEF": 227, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2685, + "100% CP @ 39": 2647 + }, + { + "Row": 140, + "Name": "Kabuto", + "Pokedex Number": 140, + "Img name": 140, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 71, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 370, + "ATK": 148, + "DEF": 162, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1172, + "100% CP @ 39": 1156 + }, + { + "Row": 141, + "Name": "Kabutops", + "Pokedex Number": 141, + "Img name": 141, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 71, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 543, + "ATK": 220, + "DEF": 203, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2517, + "100% CP @ 39": 2481 + }, + { + "Row": 142, + "Name": "Aerodactyl", + "Pokedex Number": 142, + "Img name": 142, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 72, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 545, + "ATK": 221, + "DEF": 164, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2608, + "100% CP @ 39": 2571 + }, + { + "Row": 143, + "Name": "Snorlax", + "Pokedex Number": 143, + "Img name": 143, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 73, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 700, + "ATK": 190, + "DEF": 190, + "STA": 320, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3355, + "100% CP @ 39": 3307 + }, + { + "Row": 144, + "Name": "Articuno", + "Pokedex Number": 144, + "Img name": 144, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 74, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "flying", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 621, + "ATK": 192, + "DEF": 249, + "STA": 180, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 2933, + "100% CP @ 39": 2891 + }, + { + "Row": 145, + "Name": "Zapdos", + "Pokedex Number": 145, + "Img name": 145, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 75, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 621, + "ATK": 253, + "DEF": 188, + "STA": 180, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 3330, + "100% CP @ 39": 3282 + }, + { + "Row": 146, + "Name": "Moltres", + "Pokedex Number": 146, + "Img name": 146, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 76, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 615, + "ATK": 251, + "DEF": 184, + "STA": 180, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 3272, + "100% CP @ 39": 3225 + }, + { + "Row": 147, + "Name": "Dratini", + "Pokedex Number": 147, + "Img name": 147, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 77, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 295, + "ATK": 119, + "DEF": 94, + "STA": 82, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 860, + "100% CP @ 39": 848 + }, + { + "Row": 148, + "Name": "Dragonair", + "Pokedex Number": 148, + "Img name": 148, + "Generation": 1, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 77, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 423, + "ATK": 163, + "DEF": 138, + "STA": 122, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1609, + "100% CP @ 39": 1586 + }, + { + "Row": 149, + "Name": "Dragonite", + "Pokedex Number": 149, + "Img name": 149, + "Generation": 1, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 77, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 646, + "ATK": 263, + "DEF": 201, + "STA": 182, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3581, + "100% CP @ 39": 3530 + }, + { + "Row": 150, + "Name": "Mewtwo", + "Pokedex Number": 150, + "Img name": 150, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 78, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 675, + "ATK": 300, + "DEF": 182, + "STA": 193, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3982, + "100% CP @ 39": 3925 + }, + { + "Row": 151, + "Name": "Mew", + "Pokedex Number": 151, + "Img name": 151, + "Generation": 1, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 79, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 152, + "Name": "Chikorita", + "Pokedex Number": 152, + "Img name": 152, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 80, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 304, + "ATK": 92, + "DEF": 122, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 801, + "100% CP @ 39": 790 + }, + { + "Row": 153, + "Name": "Bayleef", + "Pokedex Number": 153, + "Img name": 153, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 80, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 397, + "ATK": 122, + "DEF": 155, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1296, + "100% CP @ 39": 1277 + }, + { + "Row": 154, + "Name": "Meganium", + "Pokedex Number": 154, + "Img name": 154, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 80, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 530, + "ATK": 168, + "DEF": 202, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2227, + "100% CP @ 39": 2195 + }, + { + "Row": 155, + "Name": "Cyndaquil", + "Pokedex Number": 155, + "Img name": 155, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 81, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 290, + "ATK": 116, + "DEF": 96, + "STA": 78, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 831, + "100% CP @ 39": 819 + }, + { + "Row": 156, + "Name": "Quilava", + "Pokedex Number": 156, + "Img name": 156, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 81, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 403, + "ATK": 158, + "DEF": 129, + "STA": 116, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1484, + "100% CP @ 39": 1462 + }, + { + "Row": 157, + "Name": "Typhlosion", + "Pokedex Number": 157, + "Img name": 157, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 81, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 555, + "ATK": 223, + "DEF": 176, + "STA": 156, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2686, + "100% CP @ 39": 2648 + }, + { + "Row": 158, + "Name": "Totodile", + "Pokedex Number": 158, + "Img name": 158, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 82, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 333, + "ATK": 117, + "DEF": 116, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1011, + "100% CP @ 39": 997 + }, + { + "Row": 159, + "Name": "Croconaw", + "Pokedex Number": 159, + "Img name": 159, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 82, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 431, + "ATK": 150, + "DEF": 151, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1598, + "100% CP @ 39": 1576 + }, + { + "Row": 160, + "Name": "Feraligatr", + "Pokedex Number": 160, + "Img name": 160, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 82, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 572, + "ATK": 205, + "DEF": 197, + "STA": 170, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2721, + "100% CP @ 39": 2682 + }, + { + "Row": 161, + "Name": "Sentret", + "Pokedex Number": 161, + "Img name": 161, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 83, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 226, + "ATK": 79, + "DEF": 77, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 519, + "100% CP @ 39": 511 + }, + { + "Row": 162, + "Name": "Furret", + "Pokedex Number": 162, + "Img name": 162, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 83, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 448, + "ATK": 148, + "DEF": 130, + "STA": 170, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1667, + "100% CP @ 39": 1643 + }, + { + "Row": 163, + "Name": "Hoothoot", + "Pokedex Number": 163, + "Img name": 163, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 84, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 288, + "ATK": 67, + "DEF": 101, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 640, + "100% CP @ 39": 631 + }, + { + "Row": 164, + "Name": "Noctowl", + "Pokedex Number": 164, + "Img name": 164, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 84, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 524, + "ATK": 145, + "DEF": 179, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2040, + "100% CP @ 39": 2011 + }, + { + "Row": 165, + "Name": "Ledyba", + "Pokedex Number": 165, + "Img name": 165, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 85, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 294, + "ATK": 72, + "DEF": 142, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 663, + "100% CP @ 39": 654 + }, + { + "Row": 166, + "Name": "Ledian", + "Pokedex Number": 166, + "Img name": 166, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 85, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 426, + "ATK": 107, + "DEF": 209, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1275, + "100% CP @ 39": 1256 + }, + { + "Row": 167, + "Name": "Spinarak", + "Pokedex Number": 167, + "Img name": 167, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 86, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 258, + "ATK": 105, + "DEF": 73, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 685, + "100% CP @ 39": 675 + }, + { + "Row": 168, + "Name": "Ariados", + "Pokedex Number": 168, + "Img name": 168, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 86, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 429, + "ATK": 161, + "DEF": 128, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1636, + "100% CP @ 39": 1613 + }, + { + "Row": 169, + "Name": "Crobat", + "Pokedex Number": 169, + "Img name": 169, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 17, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "flying", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 542, + "ATK": 194, + "DEF": 178, + "STA": 170, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2466, + "100% CP @ 39": 2431 + }, + { + "Row": 170, + "Name": "Chinchou", + "Pokedex Number": 170, + "Img name": 170, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 87, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "electric", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 362, + "ATK": 106, + "DEF": 106, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1067, + "100% CP @ 39": 1052 + }, + { + "Row": 171, + "Name": "Lanturn", + "Pokedex Number": 171, + "Img name": 171, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 87, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "electric", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 542, + "ATK": 146, + "DEF": 146, + "STA": 250, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2077, + "100% CP @ 39": 2047 + }, + { + "Row": 172, + "Name": "Pichu", + "Pokedex Number": 172, + "Img name": 172, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": 10, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 180, + "ATK": 77, + "DEF": 63, + "STA": 40, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 376, + "100% CP @ 39": 370 + }, + { + "Row": 173, + "Name": "Cleffa", + "Pokedex Number": 173, + "Img name": 173, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": 14, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 266, + "ATK": 75, + "DEF": 91, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 620, + "100% CP @ 39": 611 + }, + { + "Row": 174, + "Name": "Igglybuff", + "Pokedex Number": 174, + "Img name": 174, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": 16, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "fairy", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 283, + "ATK": 69, + "DEF": 34, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 512, + "100% CP @ 39": 505 + }, + { + "Row": 175, + "Name": "Togepi", + "Pokedex Number": 175, + "Img name": 175, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": 88, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 253, + "ATK": 67, + "DEF": 116, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 540, + "100% CP @ 39": 532 + }, + { + "Row": 176, + "Name": "Togetic", + "Pokedex Number": 176, + "Img name": 176, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 88, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": "flying", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 440, + "ATK": 139, + "DEF": 191, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1543, + "100% CP @ 39": 1521 + }, + { + "Row": 177, + "Name": "Natu", + "Pokedex Number": 177, + "Img name": 177, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 89, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 303, + "ATK": 134, + "DEF": 89, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 925, + "100% CP @ 39": 911 + }, + { + "Row": 178, + "Name": "Xatu", + "Pokedex Number": 178, + "Img name": 178, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 89, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 468, + "ATK": 192, + "DEF": 146, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1975, + "100% CP @ 39": 1947 + }, + { + "Row": 179, + "Name": "Mareep", + "Pokedex Number": 179, + "Img name": 179, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 90, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 306, + "ATK": 114, + "DEF": 82, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 887, + "100% CP @ 39": 874 + }, + { + "Row": 180, + "Name": "Flaaffy", + "Pokedex Number": 180, + "Img name": 180, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 90, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 397, + "ATK": 145, + "DEF": 112, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1402, + "100% CP @ 39": 1382 + }, + { + "Row": 181, + "Name": "Ampharos", + "Pokedex Number": 181, + "Img name": 181, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 90, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 563, + "ATK": 211, + "DEF": 172, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2695, + "100% CP @ 39": 2656 + }, + { + "Row": 182, + "Name": "Bellossom", + "Pokedex Number": 182, + "Img name": 182, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 18, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 508, + "ATK": 169, + "DEF": 189, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2108, + "100% CP @ 39": 2078 + }, + { + "Row": 183, + "Name": "Marill", + "Pokedex Number": 183, + "Img name": 183, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 91, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 270, + "ATK": 37, + "DEF": 93, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 420, + "100% CP @ 39": 414 + }, + { + "Row": 184, + "Name": "Azumarill", + "Pokedex Number": 184, + "Img name": 184, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 91, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 464, + "ATK": 112, + "DEF": 152, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1503, + "100% CP @ 39": 1481 + }, + { + "Row": 185, + "Name": "Sudowoodo", + "Pokedex Number": 185, + "Img name": 185, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 92, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 505, + "ATK": 167, + "DEF": 198, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2065, + "100% CP @ 39": 2035 + }, + { + "Row": 186, + "Name": "Politoed", + "Pokedex Number": 186, + "Img name": 186, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 27, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 546, + "ATK": 174, + "DEF": 192, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2371, + "100% CP @ 39": 2337 + }, + { + "Row": 187, + "Name": "Hoppip", + "Pokedex Number": 187, + "Img name": 187, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 93, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 238, + "ATK": 67, + "DEF": 101, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 508, + "100% CP @ 39": 501 + }, + { + "Row": 188, + "Name": "Skiploom", + "Pokedex Number": 188, + "Img name": 188, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 93, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 328, + "ATK": 91, + "DEF": 127, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 882, + "100% CP @ 39": 869 + }, + { + "Row": 189, + "Name": "Jumpluff", + "Pokedex Number": 189, + "Img name": 189, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 93, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 465, + "ATK": 118, + "DEF": 197, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1553, + "100% CP @ 39": 1531 + }, + { + "Row": 190, + "Name": "Aipom", + "Pokedex Number": 190, + "Img name": 190, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 94, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 358, + "ATK": 136, + "DEF": 112, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1188, + "100% CP @ 39": 1171 + }, + { + "Row": 191, + "Name": "Sunkern", + "Pokedex Number": 191, + "Img name": 191, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 95, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 170, + "ATK": 55, + "DEF": 55, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 316, + "100% CP @ 39": 312 + }, + { + "Row": 192, + "Name": "Sunflora", + "Pokedex Number": 192, + "Img name": 192, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 95, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 483, + "ATK": 185, + "DEF": 148, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2048, + "100% CP @ 39": 2019 + }, + { + "Row": 193, + "Name": "Yanma", + "Pokedex Number": 193, + "Img name": 193, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 96, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 378, + "ATK": 154, + "DEF": 94, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1326, + "100% CP @ 39": 1308 + }, + { + "Row": 194, + "Name": "Wooper", + "Pokedex Number": 194, + "Img name": 194, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 97, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 260, + "ATK": 75, + "DEF": 75, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 596, + "100% CP @ 39": 587 + }, + { + "Row": 195, + "Name": "Quagsire", + "Pokedex Number": 195, + "Img name": 195, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 97, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 494, + "ATK": 152, + "DEF": 152, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1929, + "100% CP @ 39": 1902 + }, + { + "Row": 196, + "Name": "Espeon", + "Pokedex Number": 196, + "Img name": 196, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 68, + "Cross Gen": 1, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 585, + "ATK": 261, + "DEF": 194, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3000, + "100% CP @ 39": 2958 + }, + { + "Row": 197, + "Name": "Umbreon", + "Pokedex Number": 197, + "Img name": 197, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 68, + "Cross Gen": 1, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 566, + "ATK": 126, + "DEF": 250, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2052, + "100% CP @ 39": 2023 + }, + { + "Row": 198, + "Name": "Murkrow", + "Pokedex Number": 198, + "Img name": 198, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 98, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 382, + "ATK": 175, + "DEF": 87, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1392, + "100% CP @ 39": 1372 + }, + { + "Row": 199, + "Name": "Slowking", + "Pokedex Number": 199, + "Img name": 199, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 34, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "psychic", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 561, + "ATK": 177, + "DEF": 194, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2482, + "100% CP @ 39": 2446 + }, + { + "Row": 200, + "Name": "Misdreavus", + "Pokedex Number": 200, + "Img name": 200, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 99, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 454, + "ATK": 167, + "DEF": 167, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1781, + "100% CP @ 39": 1756 + }, + { + "Row": 201, + "Name": "Unown", + "Pokedex Number": 201, + "Img name": 201, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 100, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 323, + "ATK": 136, + "DEF": 91, + "STA": 96, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1022, + "100% CP @ 39": 1008 + }, + { + "Row": 202, + "Name": "Wobbuffet", + "Pokedex Number": 202, + "Img name": 202, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 101, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 546, + "ATK": 60, + "DEF": 106, + "STA": 380, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1024, + "100% CP @ 39": 1009 + }, + { + "Row": 203, + "Name": "Girafarig", + "Pokedex Number": 203, + "Img name": 203, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 102, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "psychic", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 455, + "ATK": 182, + "DEF": 133, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1863, + "100% CP @ 39": 1836 + }, + { + "Row": 204, + "Name": "Pineco", + "Pokedex Number": 204, + "Img name": 204, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 103, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 354, + "ATK": 108, + "DEF": 146, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1045, + "100% CP @ 39": 1030 + }, + { + "Row": 205, + "Name": "Forretress", + "Pokedex Number": 205, + "Img name": 205, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 103, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 553, + "ATK": 161, + "DEF": 242, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2263, + "100% CP @ 39": 2231 + }, + { + "Row": 206, + "Name": "Dunsparce", + "Pokedex Number": 206, + "Img name": 206, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 104, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 462, + "ATK": 131, + "DEF": 131, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1615, + "100% CP @ 39": 1592 + }, + { + "Row": 207, + "Name": "Gligar", + "Pokedex Number": 207, + "Img name": 207, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 105, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 477, + "ATK": 143, + "DEF": 204, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1758, + "100% CP @ 39": 1733 + }, + { + "Row": 208, + "Name": "Steelix", + "Pokedex Number": 208, + "Img name": 208, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 42, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "ground", + "Weather 1": "Snow", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 631, + "ATK": 148, + "DEF": 333, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2439, + "100% CP @ 39": 2404 + }, + { + "Row": 209, + "Name": "Snubbull", + "Pokedex Number": 209, + "Img name": 209, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 106, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 346, + "ATK": 137, + "DEF": 89, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1124, + "100% CP @ 39": 1108 + }, + { + "Row": 210, + "Name": "Granbull", + "Pokedex Number": 210, + "Img name": 210, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 106, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 529, + "ATK": 212, + "DEF": 137, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2440, + "100% CP @ 39": 2406 + }, + { + "Row": 211, + "Name": "Qwilfish", + "Pokedex Number": 211, + "Img name": 211, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 107, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 462, + "ATK": 184, + "DEF": 148, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1910, + "100% CP @ 39": 1883 + }, + { + "Row": 212, + "Name": "Scizor", + "Pokedex Number": 212, + "Img name": 212, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 59, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 567, + "ATK": 236, + "DEF": 191, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2801, + "100% CP @ 39": 2761 + }, + { + "Row": 213, + "Name": "Shuckle", + "Pokedex Number": 213, + "Img name": 213, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 108, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 453, + "ATK": 17, + "DEF": 396, + "STA": 40, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 300, + "100% CP @ 39": 296 + }, + { + "Row": 214, + "Name": "Heracross", + "Pokedex Number": 214, + "Img name": 214, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 109, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fighting", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 583, + "ATK": 234, + "DEF": 189, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2938, + "100% CP @ 39": 2896 + }, + { + "Row": 215, + "Name": "Sneasel", + "Pokedex Number": 215, + "Img name": 215, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 110, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "ice", + "Weather 1": "Fog", + "Weather 2": "Snow", + "STAT TOTAL": 456, + "ATK": 189, + "DEF": 157, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1868, + "100% CP @ 39": 1841 + }, + { + "Row": 216, + "Name": "Teddiursa", + "Pokedex Number": 216, + "Img name": 216, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 111, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 355, + "ATK": 142, + "DEF": 93, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1184, + "100% CP @ 39": 1167 + }, + { + "Row": 217, + "Name": "Ursaring", + "Pokedex Number": 217, + "Img name": 217, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 111, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 560, + "ATK": 236, + "DEF": 144, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2760, + "100% CP @ 39": 2720 + }, + { + "Row": 218, + "Name": "Slugma", + "Pokedex Number": 218, + "Img name": 218, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 112, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 269, + "ATK": 118, + "DEF": 71, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 750, + "100% CP @ 39": 740 + }, + { + "Row": 219, + "Name": "Magcargo", + "Pokedex Number": 219, + "Img name": 219, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 112, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "rock", + "Weather 1": "Sunny/clear", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 448, + "ATK": 139, + "DEF": 209, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1543, + "100% CP @ 39": 1521 + }, + { + "Row": 220, + "Name": "Swinub", + "Pokedex Number": 220, + "Img name": 220, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 113, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "ground", + "Weather 1": "Snow", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 264, + "ATK": 90, + "DEF": 74, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 663, + "100% CP @ 39": 653 + }, + { + "Row": 221, + "Name": "Piloswine", + "Pokedex Number": 221, + "Img name": 221, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 113, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "ground", + "Weather 1": "Snow", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 528, + "ATK": 181, + "DEF": 147, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 2, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 2284, + "100% CP @ 39": 2252 + }, + { + "Row": 222, + "Name": "Corsola", + "Pokedex Number": 222, + "Img name": 222, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 114, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 384, + "ATK": 118, + "DEF": 156, + "STA": 110, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1214, + "100% CP @ 39": 1197 + }, + { + "Row": 223, + "Name": "Remoraid", + "Pokedex Number": 223, + "Img name": 223, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 115, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 266, + "ATK": 127, + "DEF": 69, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 749, + "100% CP @ 39": 738 + }, + { + "Row": 224, + "Name": "Octillery", + "Pokedex Number": 224, + "Img name": 224, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 115, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 488, + "ATK": 197, + "DEF": 141, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2124, + "100% CP @ 39": 2094 + }, + { + "Row": 225, + "Name": "Delibird", + "Pokedex Number": 225, + "Img name": 225, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 116, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "flying", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 308, + "ATK": 128, + "DEF": 90, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 937, + "100% CP @ 39": 924 + }, + { + "Row": 226, + "Name": "Mantine", + "Pokedex Number": 226, + "Img name": 226, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 117, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 538, + "ATK": 148, + "DEF": 260, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2032, + "100% CP @ 39": 2003 + }, + { + "Row": 227, + "Name": "Skarmory", + "Pokedex Number": 227, + "Img name": 227, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 118, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "flying", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 538, + "ATK": 148, + "DEF": 260, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2032, + "100% CP @ 39": 2003 + }, + { + "Row": 228, + "Name": "Houndour", + "Pokedex Number": 228, + "Img name": 228, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 119, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "fire", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 335, + "ATK": 152, + "DEF": 93, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1110, + "100% CP @ 39": 1094 + }, + { + "Row": 229, + "Name": "Houndoom", + "Pokedex Number": 229, + "Img name": 229, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 119, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "fire", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 533, + "ATK": 224, + "DEF": 159, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2529, + "100% CP @ 39": 2493 + }, + { + "Row": 230, + "Name": "Kingdra", + "Pokedex Number": 230, + "Img name": 230, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 55, + "Cross Gen": 1, + "Type 1": "water", + "Type 2": "dragon", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 538, + "ATK": 194, + "DEF": 194, + "STA": 150, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2424, + "100% CP @ 39": 2389 + }, + { + "Row": 231, + "Name": "Phanpy", + "Pokedex Number": 231, + "Img name": 231, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 120, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 394, + "ATK": 107, + "DEF": 107, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1175, + "100% CP @ 39": 1158 + }, + { + "Row": 232, + "Name": "Donphan", + "Pokedex Number": 232, + "Img name": 232, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 120, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 608, + "ATK": 214, + "DEF": 214, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3022, + "100% CP @ 39": 2979 + }, + { + "Row": 233, + "Name": "Porygon2", + "Pokedex Number": 233, + "Img name": 233, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 69, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 551, + "ATK": 198, + "DEF": 183, + "STA": 170, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 2546, + "100% CP @ 39": 2509 + }, + { + "Row": 234, + "Name": "Stantler", + "Pokedex Number": 234, + "Img name": 234, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 121, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 470, + "ATK": 192, + "DEF": 132, + "STA": 146, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1988, + "100% CP @ 39": 1960 + }, + { + "Row": 235, + "Name": "Smeargle", + "Pokedex Number": 235, + "Img name": 235, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 122, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 238, + "ATK": 40, + "DEF": 88, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 389, + "100% CP @ 39": 384 + }, + { + "Row": 236, + "Name": "Tyrogue", + "Pokedex Number": 236, + "Img name": 236, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": 48, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 198, + "ATK": 64, + "DEF": 64, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 404, + "100% CP @ 39": 398 + }, + { + "Row": 237, + "Name": "Hitmontop", + "Pokedex Number": 237, + "Img name": 237, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 48, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 487, + "ATK": 173, + "DEF": 214, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1905, + "100% CP @ 39": 1878 + }, + { + "Row": 238, + "Name": "Smoochum", + "Pokedex Number": 238, + "Img name": 238, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 359, + "ATK": 153, + "DEF": 116, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1230, + "100% CP @ 39": 1213 + }, + { + "Row": 239, + "Name": "Elekid", + "Pokedex Number": 239, + "Img name": 239, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 335, + "ATK": 135, + "DEF": 110, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1073, + "100% CP @ 39": 1057 + }, + { + "Row": 240, + "Name": "Magby", + "Pokedex Number": 240, + "Img name": 240, + "Generation": 2, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 349, + "ATK": 151, + "DEF": 108, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1178, + "100% CP @ 39": 1161 + }, + { + "Row": 241, + "Name": "Miltank", + "Pokedex Number": 241, + "Img name": 241, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 123, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 558, + "ATK": 157, + "DEF": 211, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2312, + "100% CP @ 39": 2279 + }, + { + "Row": 242, + "Name": "Blissey", + "Pokedex Number": 242, + "Img name": 242, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": null, + "Cross Gen": 1, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 868, + "ATK": 129, + "DEF": 229, + "STA": 510, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3219, + "100% CP @ 39": 3173 + }, + { + "Row": 243, + "Name": "Raikou", + "Pokedex Number": 243, + "Img name": 243, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 124, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 631, + "ATK": 241, + "DEF": 210, + "STA": 180, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 3349, + "100% CP @ 39": 3301 + }, + { + "Row": 244, + "Name": "Entei", + "Pokedex Number": 244, + "Img name": 244, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 125, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 641, + "ATK": 235, + "DEF": 176, + "STA": 230, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 3377, + "100% CP @ 39": 3329 + }, + { + "Row": 245, + "Name": "Suicune", + "Pokedex Number": 245, + "Img name": 245, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 126, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 615, + "ATK": 180, + "DEF": 235, + "STA": 200, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 2823, + "100% CP @ 39": 2783 + }, + { + "Row": 246, + "Name": "Larvitar", + "Pokedex Number": 246, + "Img name": 246, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 127, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 308, + "ATK": 115, + "DEF": 93, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 904, + "100% CP @ 39": 891 + }, + { + "Row": 247, + "Name": "Pupitar", + "Pokedex Number": 247, + "Img name": 247, + "Generation": 2, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 127, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 428, + "ATK": 155, + "DEF": 133, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1608, + "100% CP @ 39": 1585 + }, + { + "Row": 248, + "Name": "Tyranitar", + "Pokedex Number": 248, + "Img name": 248, + "Generation": 2, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 127, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "dark", + "Weather 1": "Partly cloudy", + "Weather 2": "Fog", + "STAT TOTAL": 663, + "ATK": 251, + "DEF": 212, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 4, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3670, + "100% CP @ 39": 3617 + }, + { + "Row": 249, + "Name": "Lugia", + "Pokedex Number": 249, + "Img name": 249, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 128, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 728, + "ATK": 193, + "DEF": 323, + "STA": 212, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 5, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 3598, + "100% CP @ 39": 3547 + }, + { + "Row": 250, + "Name": "Ho Oh", + "Pokedex Number": 250, + "Img name": 250, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 129, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 706, + "ATK": 239, + "DEF": 274, + "STA": 193, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 3889, + "100% CP @ 39": 3833 + }, + { + "Row": 251, + "Name": "Celebi", + "Pokedex Number": 251, + "Img name": 251, + "Generation": 2, + "Evolution Stage": 1, + "Evolved": 1, + "FamilyID": 130, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "grass", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 252, + "Name": "Treecko", + "Pokedex Number": 252, + "Img name": 252, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 131, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 308, + "ATK": 124, + "DEF": 104, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 923, + "100% CP @ 39": 909 + }, + { + "Row": 253, + "Name": "Grovyle", + "Pokedex Number": 253, + "Img name": 253, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 131, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 402, + "ATK": 172, + "DEF": 130, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1508, + "100% CP @ 39": 1486 + }, + { + "Row": 254, + "Name": "Sceptile", + "Pokedex Number": 254, + "Img name": 254, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 131, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 543, + "ATK": 223, + "DEF": 180, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2584, + "100% CP @ 39": 2547 + }, + { + "Row": 255, + "Name": "Torchic", + "Pokedex Number": 255, + "Img name": 255, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 132, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 312, + "ATK": 130, + "DEF": 92, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 959, + "100% CP @ 39": 946 + }, + { + "Row": 256, + "Name": "Combusken", + "Pokedex Number": 256, + "Img name": 256, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 132, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 398, + "ATK": 163, + "DEF": 115, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1472, + "100% CP @ 39": 1451 + }, + { + "Row": 257, + "Name": "Blaziken", + "Pokedex Number": 257, + "Img name": 257, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 132, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 541, + "ATK": 240, + "DEF": 141, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2631, + "100% CP @ 39": 2593 + }, + { + "Row": 258, + "Name": "Mudkip", + "Pokedex Number": 258, + "Img name": 258, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 133, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 319, + "ATK": 126, + "DEF": 93, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 981, + "100% CP @ 39": 967 + }, + { + "Row": 259, + "Name": "Marshtomp", + "Pokedex Number": 259, + "Img name": 259, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 133, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 429, + "ATK": 156, + "DEF": 133, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1617, + "100% CP @ 39": 1594 + }, + { + "Row": 260, + "Name": "Swampert", + "Pokedex Number": 260, + "Img name": 260, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 133, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 583, + "ATK": 208, + "DEF": 175, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2815, + "100% CP @ 39": 2774 + }, + { + "Row": 261, + "Name": "Poochyena", + "Pokedex Number": 261, + "Img name": 261, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 134, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 229, + "ATK": 96, + "DEF": 63, + "STA": 70, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 1, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 564, + "100% CP @ 39": 556 + }, + { + "Row": 262, + "Name": "Mightyena", + "Pokedex Number": 262, + "Img name": 262, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 134, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 448, + "ATK": 171, + "DEF": 137, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1783, + "100% CP @ 39": 1757 + }, + { + "Row": 263, + "Name": "Zigzagoon", + "Pokedex Number": 263, + "Img name": 263, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 135, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 214, + "ATK": 58, + "DEF": 80, + "STA": 76, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 423, + "100% CP @ 39": 417 + }, + { + "Row": 264, + "Name": "Linoone", + "Pokedex Number": 264, + "Img name": 264, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 135, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 426, + "ATK": 142, + "DEF": 128, + "STA": 156, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1533, + "100% CP @ 39": 1511 + }, + { + "Row": 265, + "Name": "Wurmple", + "Pokedex Number": 265, + "Img name": 265, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 136, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 226, + "ATK": 75, + "DEF": 61, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 502, + "100% CP @ 39": 494 + }, + { + "Row": 266, + "Name": "Silcoon", + "Pokedex Number": 266, + "Img name": 266, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 136, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 251, + "ATK": 60, + "DEF": 91, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 517, + "100% CP @ 39": 509 + }, + { + "Row": 267, + "Name": "Beautifly", + "Pokedex Number": 267, + "Img name": 267, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 136, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 407, + "ATK": 189, + "DEF": 98, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1573, + "100% CP @ 39": 1551 + }, + { + "Row": 268, + "Name": "Cascoon", + "Pokedex Number": 268, + "Img name": 268, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 137, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 251, + "ATK": 60, + "DEF": 91, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 517, + "100% CP @ 39": 509 + }, + { + "Row": 269, + "Name": "Dustox", + "Pokedex Number": 269, + "Img name": 269, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 137, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 390, + "ATK": 98, + "DEF": 172, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1121, + "100% CP @ 39": 1105 + }, + { + "Row": 270, + "Name": "Lotad", + "Pokedex Number": 270, + "Img name": 270, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 138, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 237, + "ATK": 71, + "DEF": 86, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 526, + "100% CP @ 39": 518 + }, + { + "Row": 271, + "Name": "Lombre", + "Pokedex Number": 271, + "Img name": 271, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 138, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 360, + "ATK": 112, + "DEF": 128, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1102, + "100% CP @ 39": 1086 + }, + { + "Row": 272, + "Name": "Ludicolo", + "Pokedex Number": 272, + "Img name": 272, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 138, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 524, + "ATK": 173, + "DEF": 191, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2229, + "100% CP @ 39": 2197 + }, + { + "Row": 273, + "Name": "Seedot", + "Pokedex Number": 273, + "Img name": 273, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 139, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 237, + "ATK": 71, + "DEF": 86, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 526, + "100% CP @ 39": 518 + }, + { + "Row": 274, + "Name": "Nuzleaf", + "Pokedex Number": 274, + "Img name": 274, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 139, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 352, + "ATK": 134, + "DEF": 78, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1117, + "100% CP @ 39": 1101 + }, + { + "Row": 275, + "Name": "Shiftry", + "Pokedex Number": 275, + "Img name": 275, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 139, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 501, + "ATK": 200, + "DEF": 121, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2186, + "100% CP @ 39": 2155 + }, + { + "Row": 276, + "Name": "Taillow", + "Pokedex Number": 276, + "Img name": 276, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 140, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 247, + "ATK": 106, + "DEF": 61, + "STA": 80, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 642, + "100% CP @ 39": 632 + }, + { + "Row": 277, + "Name": "Swellow", + "Pokedex Number": 277, + "Img name": 277, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 140, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 435, + "ATK": 185, + "DEF": 130, + "STA": 120, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1747, + "100% CP @ 39": 1722 + }, + { + "Row": 278, + "Name": "Wingull", + "Pokedex Number": 278, + "Img name": 278, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 141, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 247, + "ATK": 106, + "DEF": 61, + "STA": 80, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 642, + "100% CP @ 39": 632 + }, + { + "Row": 279, + "Name": "Pelipper", + "Pokedex Number": 279, + "Img name": 279, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 141, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 484, + "ATK": 175, + "DEF": 189, + "STA": 120, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1969, + "100% CP @ 39": 1941 + }, + { + "Row": 280, + "Name": "Ralts", + "Pokedex Number": 280, + "Img name": 280, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 142, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fairy", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 198, + "ATK": 79, + "DEF": 63, + "STA": 56, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 436, + "100% CP @ 39": 430 + }, + { + "Row": 281, + "Name": "Kirlia", + "Pokedex Number": 281, + "Img name": 281, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 142, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fairy", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 293, + "ATK": 117, + "DEF": 100, + "STA": 76, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 843, + "100% CP @ 39": 831 + }, + { + "Row": 282, + "Name": "Gardevoir", + "Pokedex Number": 282, + "Img name": 282, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 142, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fairy", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 593, + "ATK": 237, + "DEF": 220, + "STA": 136, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2964, + "100% CP @ 39": 2922 + }, + { + "Row": 283, + "Name": "Surskit", + "Pokedex Number": 283, + "Img name": 283, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 143, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "water", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 270, + "ATK": 93, + "DEF": 97, + "STA": 80, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 695, + "100% CP @ 39": 685 + }, + { + "Row": 284, + "Name": "Masquerain", + "Pokedex Number": 284, + "Img name": 284, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 143, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 493, + "ATK": 192, + "DEF": 161, + "STA": 140, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2135, + "100% CP @ 39": 2104 + }, + { + "Row": 285, + "Name": "Shroomish", + "Pokedex Number": 285, + "Img name": 285, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 144, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 304, + "ATK": 74, + "DEF": 110, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 722, + "100% CP @ 39": 711 + }, + { + "Row": 286, + "Name": "Breloom", + "Pokedex Number": 286, + "Img name": 286, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 144, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 514, + "ATK": 241, + "DEF": 153, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2407, + "100% CP @ 39": 2373 + }, + { + "Row": 287, + "Name": "Slakoth", + "Pokedex Number": 287, + "Img name": 287, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 145, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 328, + "ATK": 104, + "DEF": 104, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 942, + "100% CP @ 39": 928 + }, + { + "Row": 288, + "Name": "Vigoroth", + "Pokedex Number": 288, + "Img name": 288, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 145, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 478, + "ATK": 159, + "DEF": 159, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1896, + "100% CP @ 39": 1869 + }, + { + "Row": 289, + "Name": "Slaking", + "Pokedex Number": 289, + "Img name": 289, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 145, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 746, + "ATK": 290, + "DEF": 183, + "STA": 273, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4548, + "100% CP @ 39": 4484 + }, + { + "Row": 290, + "Name": "Nincada", + "Pokedex Number": 290, + "Img name": 290, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 146, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 295, + "ATK": 80, + "DEF": 153, + "STA": 62, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 674, + "100% CP @ 39": 665 + }, + { + "Row": 291, + "Name": "Ninjask", + "Pokedex Number": 291, + "Img name": 291, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 146, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 437, + "ATK": 199, + "DEF": 116, + "STA": 122, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1790, + "100% CP @ 39": 1765 + }, + { + "Row": 292, + "Name": "Shedinja", + "Pokedex Number": 292, + "Img name": 292, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 146, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 235, + "ATK": 153, + "DEF": 80, + "STA": 2, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 421, + "100% CP @ 39": 415 + }, + { + "Row": 293, + "Name": "Whismur", + "Pokedex Number": 293, + "Img name": 293, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 147, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 262, + "ATK": 92, + "DEF": 42, + "STA": 128, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 603, + "100% CP @ 39": 594 + }, + { + "Row": 294, + "Name": "Loudred", + "Pokedex Number": 294, + "Img name": 294, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 147, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 383, + "ATK": 134, + "DEF": 81, + "STA": 168, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1233, + "100% CP @ 39": 1215 + }, + { + "Row": 295, + "Name": "Exploud", + "Pokedex Number": 295, + "Img name": 295, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 147, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 529, + "ATK": 179, + "DEF": 142, + "STA": 208, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2267, + "100% CP @ 39": 2234 + }, + { + "Row": 296, + "Name": "Makuhita", + "Pokedex Number": 296, + "Img name": 296, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 148, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 297, + "ATK": 99, + "DEF": 54, + "STA": 144, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 745, + "100% CP @ 39": 735 + }, + { + "Row": 297, + "Name": "Hariyama", + "Pokedex Number": 297, + "Img name": 297, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 148, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 611, + "ATK": 209, + "DEF": 114, + "STA": 288, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2765, + "100% CP @ 39": 2726 + }, + { + "Row": 298, + "Name": "Azurill", + "Pokedex Number": 298, + "Img name": 298, + "Generation": 3, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "fairy", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 207, + "ATK": 36, + "DEF": 71, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 316, + "100% CP @ 39": 312 + }, + { + "Row": 299, + "Name": "Nosepass", + "Pokedex Number": 299, + "Img name": 299, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 149, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 378, + "ATK": 82, + "DEF": 236, + "STA": 60, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 831, + "100% CP @ 39": 819 + }, + { + "Row": 300, + "Name": "Skitty", + "Pokedex Number": 300, + "Img name": 300, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 150, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 268, + "ATK": 84, + "DEF": 84, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 659, + "100% CP @ 39": 650 + }, + { + "Row": 301, + "Name": "Delcatty", + "Pokedex Number": 301, + "Img name": 301, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 151, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 404, + "ATK": 132, + "DEF": 132, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1385, + "100% CP @ 39": 1366 + }, + { + "Row": 302, + "Name": "Sableye", + "Pokedex Number": 302, + "Img name": 302, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 152, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "ghost", + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 382, + "ATK": 141, + "DEF": 141, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 2, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1305, + "100% CP @ 39": 1286 + }, + { + "Row": 303, + "Name": "Mawile", + "Pokedex Number": 303, + "Img name": 303, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 153, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "fairy", + "Weather 1": "Snow", + "Weather 2": "Cloudy", + "STAT TOTAL": 410, + "ATK": 155, + "DEF": 155, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 2, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1484, + "100% CP @ 39": 1463 + }, + { + "Row": 304, + "Name": "Aron", + "Pokedex Number": 304, + "Img name": 304, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 154, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "rock", + "Weather 1": "Snow", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 389, + "ATK": 121, + "DEF": 168, + "STA": 100, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 1, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1232, + "100% CP @ 39": 1214 + }, + { + "Row": 305, + "Name": "Lairon", + "Pokedex Number": 305, + "Img name": 305, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 154, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "rock", + "Weather 1": "Snow", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 518, + "ATK": 158, + "DEF": 240, + "STA": 120, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2004, + "100% CP @ 39": 1976 + }, + { + "Row": 306, + "Name": "Aggron", + "Pokedex Number": 306, + "Img name": 306, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": 154, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "rock", + "Weather 1": "Snow", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 652, + "ATK": 198, + "DEF": 314, + "STA": 140, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 0, + "Regional": 0, + "Raidable": 4, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3004, + "100% CP @ 39": 2961 + }, + { + "Row": 307, + "Name": "Meditite", + "Pokedex Number": 307, + "Img name": 307, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 155, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": "psychic", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 245, + "ATK": 78, + "DEF": 107, + "STA": 60, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 555, + "100% CP @ 39": 547 + }, + { + "Row": 308, + "Name": "Medicham", + "Pokedex Number": 308, + "Img name": 308, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 155, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": "psychic", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 393, + "ATK": 121, + "DEF": 152, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1275, + "100% CP @ 39": 1257 + }, + { + "Row": 309, + "Name": "Electrike", + "Pokedex Number": 309, + "Img name": 309, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 156, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 281, + "ATK": 123, + "DEF": 78, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 810, + "100% CP @ 39": 798 + }, + { + "Row": 310, + "Name": "Manectric", + "Pokedex Number": 310, + "Img name": 310, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 156, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 482, + "ATK": 215, + "DEF": 127, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 2, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2131, + "100% CP @ 39": 2100 + }, + { + "Row": 311, + "Name": "Plusle", + "Pokedex Number": 311, + "Img name": 311, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 157, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 434, + "ATK": 167, + "DEF": 147, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1681, + "100% CP @ 39": 1657 + }, + { + "Row": 312, + "Name": "Minun", + "Pokedex Number": 312, + "Img name": 312, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 158, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 434, + "ATK": 147, + "DEF": 167, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1585, + "100% CP @ 39": 1563 + }, + { + "Row": 313, + "Name": "Volbeat", + "Pokedex Number": 313, + "Img name": 313, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 159, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 444, + "ATK": 143, + "DEF": 171, + "STA": 130, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1620, + "100% CP @ 39": 1597 + }, + { + "Row": 314, + "Name": "Illumise", + "Pokedex Number": 314, + "Img name": 314, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 159, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 444, + "ATK": 143, + "DEF": 171, + "STA": 130, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1620, + "100% CP @ 39": 1597 + }, + { + "Row": 315, + "Name": "Roselia", + "Pokedex Number": 315, + "Img name": 315, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 160, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 434, + "ATK": 186, + "DEF": 148, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1718, + "100% CP @ 39": 1694 + }, + { + "Row": 316, + "Name": "Gulpin", + "Pokedex Number": 316, + "Img name": 316, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 161, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 319, + "ATK": 80, + "DEF": 99, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 788, + "100% CP @ 39": 777 + }, + { + "Row": 317, + "Name": "Swalot", + "Pokedex Number": 317, + "Img name": 317, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 161, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 499, + "ATK": 140, + "DEF": 159, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1872, + "100% CP @ 39": 1845 + }, + { + "Row": 318, + "Name": "Carvanha", + "Pokedex Number": 318, + "Img name": 318, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 162, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "dark", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 300, + "ATK": 171, + "DEF": 39, + "STA": 90, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 874, + "100% CP @ 39": 862 + }, + { + "Row": 319, + "Name": "Sharpedo", + "Pokedex Number": 319, + "Img name": 319, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 163, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "dark", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 466, + "ATK": 243, + "DEF": 83, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1986, + "100% CP @ 39": 1957 + }, + { + "Row": 320, + "Name": "Wailmer", + "Pokedex Number": 320, + "Img name": 320, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 164, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 464, + "ATK": 136, + "DEF": 68, + "STA": 260, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 1, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1424, + "100% CP @ 39": 1404 + }, + { + "Row": 321, + "Name": "Wailord", + "Pokedex Number": 321, + "Img name": 321, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 164, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 602, + "ATK": 175, + "DEF": 87, + "STA": 340, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2258, + "100% CP @ 39": 2225 + }, + { + "Row": 322, + "Name": "Numel", + "Pokedex Number": 322, + "Img name": 322, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 165, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "ground", + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 321, + "ATK": 119, + "DEF": 82, + "STA": 120, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 957, + "100% CP @ 39": 944 + }, + { + "Row": 323, + "Name": "Camerupt", + "Pokedex Number": 323, + "Img name": 323, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 165, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "ground", + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 473, + "ATK": 194, + "DEF": 139, + "STA": 140, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2016, + "100% CP @ 39": 1987 + }, + { + "Row": 324, + "Name": "Torkoal", + "Pokedex Number": 324, + "Img name": 324, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 166, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 525, + "ATK": 151, + "DEF": 234, + "STA": 140, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2036, + "100% CP @ 39": 2007 + }, + { + "Row": 325, + "Name": "Spoink", + "Pokedex Number": 325, + "Img name": 325, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 167, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 390, + "ATK": 125, + "DEF": 145, + "STA": 120, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1285, + "100% CP @ 39": 1266 + }, + { + "Row": 326, + "Name": "Grumpig", + "Pokedex Number": 326, + "Img name": 326, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 167, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 542, + "ATK": 171, + "DEF": 211, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2310, + "100% CP @ 39": 2277 + }, + { + "Row": 327, + "Name": "Spinda", + "Pokedex Number": 327, + "Img name": 327, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 168, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 352, + "ATK": 116, + "DEF": 116, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1088, + "100% CP @ 39": 1072 + }, + { + "Row": 328, + "Name": "Trapinch", + "Pokedex Number": 328, + "Img name": 328, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 169, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 330, + "ATK": 162, + "DEF": 78, + "STA": 90, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1092, + "100% CP @ 39": 1076 + }, + { + "Row": 329, + "Name": "Vibrava", + "Pokedex Number": 329, + "Img name": 329, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 169, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "dragon", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 333, + "ATK": 134, + "DEF": 99, + "STA": 100, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1065, + "100% CP @ 39": 1050 + }, + { + "Row": 330, + "Name": "Flygon", + "Pokedex Number": 330, + "Img name": 330, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": 169, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "dragon", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 533, + "ATK": 205, + "DEF": 168, + "STA": 160, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2458, + "100% CP @ 39": 2423 + }, + { + "Row": 331, + "Name": "Cacnea", + "Pokedex Number": 331, + "Img name": 331, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 170, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 330, + "ATK": 156, + "DEF": 74, + "STA": 100, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1080, + "100% CP @ 39": 1065 + }, + { + "Row": 332, + "Name": "Cacturne", + "Pokedex Number": 332, + "Img name": 332, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 170, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 476, + "ATK": 221, + "DEF": 115, + "STA": 140, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2092, + "100% CP @ 39": 2062 + }, + { + "Row": 333, + "Name": "Swablu", + "Pokedex Number": 333, + "Img name": 333, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 171, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 305, + "ATK": 76, + "DEF": 139, + "STA": 90, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 1, + "Hatchable": 0, + "Shiny": 1, + "Nest": 1, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 722, + "100% CP @ 39": 712 + }, + { + "Row": 334, + "Name": "Altaria", + "Pokedex Number": 334, + "Img name": 334, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 171, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 499, + "ATK": 141, + "DEF": 208, + "STA": 150, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1868, + "100% CP @ 39": 1842 + }, + { + "Row": 335, + "Name": "Zangoose", + "Pokedex Number": 335, + "Img name": 335, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 172, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 492, + "ATK": 222, + "DEF": 124, + "STA": 146, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2214, + "100% CP @ 39": 2182 + }, + { + "Row": 336, + "Name": "Seviper", + "Pokedex Number": 336, + "Img name": 336, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 178, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 460, + "ATK": 196, + "DEF": 118, + "STA": 146, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1928, + "100% CP @ 39": 1900 + }, + { + "Row": 337, + "Name": "Lunatone", + "Pokedex Number": 337, + "Img name": 337, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 179, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "psychic", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 521, + "ATK": 178, + "DEF": 163, + "STA": 180, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2245, + "100% CP @ 39": 2213 + }, + { + "Row": 338, + "Name": "Solrock", + "Pokedex Number": 338, + "Img name": 338, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 180, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "psychic", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 521, + "ATK": 178, + "DEF": 163, + "STA": 180, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2245, + "100% CP @ 39": 2213 + }, + { + "Row": 339, + "Name": "Barboach", + "Pokedex Number": 339, + "Img name": 339, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 181, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 276, + "ATK": 93, + "DEF": 83, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 2, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 716, + "100% CP @ 39": 705 + }, + { + "Row": 340, + "Name": "Whiscash", + "Pokedex Number": 340, + "Img name": 340, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 181, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 513, + "ATK": 151, + "DEF": 142, + "STA": 220, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1991, + "100% CP @ 39": 1963 + }, + { + "Row": 341, + "Name": "Corphish", + "Pokedex Number": 341, + "Img name": 341, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 182, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 340, + "ATK": 141, + "DEF": 113, + "STA": 86, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1107, + "100% CP @ 39": 1092 + }, + { + "Row": 342, + "Name": "Crawdaunt", + "Pokedex Number": 342, + "Img name": 342, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 182, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "dark", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 506, + "ATK": 224, + "DEF": 156, + "STA": 126, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2317, + "100% CP @ 39": 2284 + }, + { + "Row": 343, + "Name": "Baltoy", + "Pokedex Number": 343, + "Img name": 343, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 183, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "psychic", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 288, + "ATK": 77, + "DEF": 131, + "STA": 80, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 676, + "100% CP @ 39": 667 + }, + { + "Row": 344, + "Name": "Claydol", + "Pokedex Number": 344, + "Img name": 344, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 183, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "psychic", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 496, + "ATK": 140, + "DEF": 236, + "STA": 120, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1782, + "100% CP @ 39": 1756 + }, + { + "Row": 345, + "Name": "Lileep", + "Pokedex Number": 345, + "Img name": 345, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 184, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "grass", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 391, + "ATK": 105, + "DEF": 154, + "STA": 132, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1181, + "100% CP @ 39": 1164 + }, + { + "Row": 346, + "Name": "Cradily", + "Pokedex Number": 346, + "Img name": 346, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 184, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "grass", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 522, + "ATK": 152, + "DEF": 198, + "STA": 172, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2081, + "100% CP @ 39": 2051 + }, + { + "Row": 347, + "Name": "Anorith", + "Pokedex Number": 347, + "Img name": 347, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 185, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "bug", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 366, + "ATK": 176, + "DEF": 100, + "STA": 90, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1310, + "100% CP @ 39": 1292 + }, + { + "Row": 348, + "Name": "Armaldo", + "Pokedex Number": 348, + "Img name": 348, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": 185, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "bug", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 555, + "ATK": 222, + "DEF": 183, + "STA": 150, + "Legendary": 0, + "Aquireable": 2, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2675, + "100% CP @ 39": 2637 + }, + { + "Row": 349, + "Name": "Feebas", + "Pokedex Number": 349, + "Img name": 349, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 186, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 171, + "ATK": 29, + "DEF": 102, + "STA": 40, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 10, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 220, + "100% CP @ 39": 217 + }, + { + "Row": 350, + "Name": "Milotic", + "Pokedex Number": 350, + "Img name": 350, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 186, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 624, + "ATK": 192, + "DEF": 242, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2967, + "100% CP @ 39": 2925 + }, + { + "Row": 351, + "Name": "Castform", + "Pokedex Number": 351, + "Img name": 351, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 187, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 418, + "ATK": 139, + "DEF": 139, + "STA": 140, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1486, + "100% CP @ 39": 1464 + }, + { + "Row": 352, + "Name": "Kecleon", + "Pokedex Number": 352, + "Img name": 352, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 188, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 493, + "ATK": 161, + "DEF": 212, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1924, + "100% CP @ 39": 1896 + }, + { + "Row": 353, + "Name": "Shuppet", + "Pokedex Number": 353, + "Img name": 353, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 189, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 292, + "ATK": 138, + "DEF": 66, + "STA": 88, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 1, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 872, + "100% CP @ 39": 860 + }, + { + "Row": 354, + "Name": "Banette", + "Pokedex Number": 354, + "Img name": 354, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 189, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 473, + "ATK": 218, + "DEF": 127, + "STA": 128, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2073, + "100% CP @ 39": 2044 + }, + { + "Row": 355, + "Name": "Duskull", + "Pokedex Number": 355, + "Img name": 355, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 190, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 272, + "ATK": 70, + "DEF": 162, + "STA": 40, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 1, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 523, + "100% CP @ 39": 516 + }, + { + "Row": 356, + "Name": "Dusclops", + "Pokedex Number": 356, + "Img name": 356, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 190, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 438, + "ATK": 124, + "DEF": 234, + "STA": 80, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 1335, + "100% CP @ 39": 1316 + }, + { + "Row": 357, + "Name": "Tropius", + "Pokedex Number": 357, + "Img name": 357, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 191, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 499, + "ATK": 136, + "DEF": 165, + "STA": 198, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1846, + "100% CP @ 39": 1820 + }, + { + "Row": 358, + "Name": "Chimecho", + "Pokedex Number": 358, + "Img name": 358, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 192, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 499, + "ATK": 175, + "DEF": 174, + "STA": 150, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2095, + "100% CP @ 39": 2065 + }, + { + "Row": 359, + "Name": "Absol", + "Pokedex Number": 359, + "Img name": 359, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 193, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 496, + "ATK": 246, + "DEF": 120, + "STA": 130, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 4, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2280, + "100% CP @ 39": 2248 + }, + { + "Row": 360, + "Name": "Wynaut", + "Pokedex Number": 360, + "Img name": 360, + "Generation": 3, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 317, + "ATK": 41, + "DEF": 86, + "STA": 190, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 503, + "100% CP @ 39": 496 + }, + { + "Row": 361, + "Name": "Snorunt", + "Pokedex Number": 361, + "Img name": 361, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": 194, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 290, + "ATK": 95, + "DEF": 95, + "STA": 100, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 1, + "Hatchable": 5, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 1, + "100% CP @ 40": 772, + "100% CP @ 39": 761 + }, + { + "Row": 362, + "Name": "Glalie", + "Pokedex Number": 362, + "Img name": 362, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 1, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 484, + "ATK": 162, + "DEF": 162, + "STA": 160, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 1, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1945, + "100% CP @ 39": 1917 + }, + { + "Row": 363, + "Name": "Spheal", + "Pokedex Number": 363, + "Img name": 363, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "water", + "Weather 1": "Snow", + "Weather 2": "Rainy", + "STAT TOTAL": 325, + "ATK": 95, + "DEF": 90, + "STA": 140, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 5, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 876, + "100% CP @ 39": 863 + }, + { + "Row": 364, + "Name": "Sealeo", + "Pokedex Number": 364, + "Img name": 364, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "water", + "Weather 1": "Snow", + "Weather 2": "Rainy", + "STAT TOTAL": 449, + "ATK": 137, + "DEF": 132, + "STA": 180, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1607, + "100% CP @ 39": 1584 + }, + { + "Row": 365, + "Name": "Walrein", + "Pokedex Number": 365, + "Img name": 365, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "water", + "Weather 1": "Snow", + "Weather 2": "Rainy", + "STAT TOTAL": 578, + "ATK": 182, + "DEF": 176, + "STA": 220, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2606, + "100% CP @ 39": 2569 + }, + { + "Row": 366, + "Name": "Clamperl", + "Pokedex Number": 366, + "Img name": 366, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 352, + "ATK": 133, + "DEF": 149, + "STA": 70, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1091, + "100% CP @ 39": 1075 + }, + { + "Row": 367, + "Name": "Huntail", + "Pokedex Number": 367, + "Img name": 367, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 501, + "ATK": 197, + "DEF": 194, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2140, + "100% CP @ 39": 2109 + }, + { + "Row": 368, + "Name": "Gorebyss", + "Pokedex Number": 368, + "Img name": 368, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 515, + "ATK": 211, + "DEF": 194, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2281, + "100% CP @ 39": 2248 + }, + { + "Row": 369, + "Name": "Relicanth", + "Pokedex Number": 369, + "Img name": 369, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 596, + "ATK": 162, + "DEF": 234, + "STA": 200, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 1, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2557, + "100% CP @ 39": 2521 + }, + { + "Row": 370, + "Name": "Luvdisc", + "Pokedex Number": 370, + "Img name": 370, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 301, + "ATK": 81, + "DEF": 134, + "STA": 86, + "Legendary": 0, + "Aquireable": 1, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 1, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 735, + "100% CP @ 39": 725 + }, + { + "Row": 371, + "Name": "Bagon", + "Pokedex Number": 371, + "Img name": 371, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 331, + "ATK": 134, + "DEF": 107, + "STA": 90, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1053, + "100% CP @ 39": 1038 + }, + { + "Row": 372, + "Name": "Shelgon", + "Pokedex Number": 372, + "Img name": 372, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 481, + "ATK": 172, + "DEF": 179, + "STA": 130, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1958, + "100% CP @ 39": 1930 + }, + { + "Row": 373, + "Name": "Salamence", + "Pokedex Number": 373, + "Img name": 373, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 635, + "ATK": 277, + "DEF": 168, + "STA": 190, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3532, + "100% CP @ 39": 3481 + }, + { + "Row": 374, + "Name": "Beldum", + "Pokedex Number": 374, + "Img name": 374, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 317, + "ATK": 96, + "DEF": 141, + "STA": 80, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 843, + "100% CP @ 39": 831 + }, + { + "Row": 375, + "Name": "Metang", + "Pokedex Number": 375, + "Img name": 375, + "Generation": 3, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 443, + "ATK": 138, + "DEF": 185, + "STA": 120, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 1, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1570, + "100% CP @ 39": 1547 + }, + { + "Row": 376, + "Name": "Metagross", + "Pokedex Number": 376, + "Img name": 376, + "Generation": 3, + "Evolution Stage": 3, + "Evolved": 1, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 665, + "ATK": 257, + "DEF": 248, + "STA": 160, + "Legendary": 0, + "Aquireable": 3, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3644, + "100% CP @ 39": 3592 + }, + { + "Row": 377, + "Name": "Regirock", + "Pokedex Number": 377, + "Img name": 377, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 695, + "ATK": 179, + "DEF": 356, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3087, + "100% CP @ 39": 3043 + }, + { + "Row": 378, + "Name": "Regice", + "Pokedex Number": 378, + "Img name": 378, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 695, + "ATK": 179, + "DEF": 356, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3087, + "100% CP @ 39": 3043 + }, + { + "Row": 379, + "Name": "Registeel", + "Pokedex Number": 379, + "Img name": 379, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 588, + "ATK": 143, + "DEF": 285, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2261, + "100% CP @ 39": 2228 + }, + { + "Row": 380, + "Name": "Latias", + "Pokedex Number": 380, + "Img name": 380, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "psychic", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 656, + "ATK": 228, + "DEF": 268, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3377, + "100% CP @ 39": 3329 + }, + { + "Row": 381, + "Name": "Latios", + "Pokedex Number": 381, + "Img name": 381, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "psychic", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 656, + "ATK": 268, + "DEF": 228, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3644, + "100% CP @ 39": 3592 + }, + { + "Row": 382, + "Name": "Kyogre", + "Pokedex Number": 382, + "Img name": 382, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 703, + "ATK": 270, + "DEF": 251, + "STA": 182, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4074, + "100% CP @ 39": 4016 + }, + { + "Row": 383, + "Name": "Groudon", + "Pokedex Number": 383, + "Img name": 383, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 703, + "ATK": 270, + "DEF": 251, + "STA": 182, + "Legendary": 1, + "Aquireable": 1, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 1, + "Future Evolve": 0, + "100% CP @ 40": 4074, + "100% CP @ 39": 4016 + }, + { + "Row": 384, + "Name": "Rayquaza", + "Pokedex Number": 384, + "Img name": 384, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 645, + "ATK": 284, + "DEF": 170, + "STA": 191, + "Legendary": 1, + "Aquireable": 3, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 1, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3645, + "100% CP @ 39": 3593 + }, + { + "Row": 385, + "Name": "Jirachi", + "Pokedex Number": 385, + "Img name": 385, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 386, + "Name": "Deoxys Defense", + "Pokedex Number": 386, + "Img name": "386-defense", + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 574, + "ATK": 144, + "DEF": 330, + "STA": 100, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1978, + "100% CP @ 39": 1949 + }, + { + "Row": 387, + "Name": "Deoxys Normal", + "Pokedex Number": 386, + "Img name": 386, + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 560, + "ATK": 345, + "DEF": 115, + "STA": 100, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2749, + "100% CP @ 39": 2709 + }, + { + "Row": 388, + "Name": "Deoxys Attack", + "Pokedex Number": 386, + "Img name": "386-attack", + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 560, + "ATK": 414, + "DEF": 46, + "STA": 100, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2244, + "100% CP @ 39": 2212 + }, + { + "Row": 389, + "Name": "Deoxys Speed", + "Pokedex Number": 386, + "Img name": "386-speed", + "Generation": 3, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 548, + "ATK": 230, + "DEF": 218, + "STA": 100, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2504, + "100% CP @ 39": 2469 + }, + { + "Row": 390, + "Name": "Turtwig", + "Pokedex Number": 387, + "Img name": 387, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 344, + "ATK": 119, + "DEF": 115, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1066, + "100% CP @ 39": 1051 + }, + { + "Row": 391, + "Name": "Grotle", + "Pokedex Number": 388, + "Img name": 388, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 459, + "ATK": 157, + "DEF": 152, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1783, + "100% CP @ 39": 1757 + }, + { + "Row": 392, + "Name": "Torterra", + "Pokedex Number": 389, + "Img name": 389, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "ground", + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 589, + "ATK": 202, + "DEF": 197, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2825, + "100% CP @ 39": 2785 + }, + { + "Row": 393, + "Name": "Chimchar", + "Pokedex Number": 390, + "Img name": 390, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 287, + "ATK": 113, + "DEF": 86, + "STA": 88, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 815, + "100% CP @ 39": 803 + }, + { + "Row": 394, + "Name": "Monferno", + "Pokedex Number": 391, + "Img name": 391, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 391, + "ATK": 158, + "DEF": 105, + "STA": 128, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1415, + "100% CP @ 39": 1395 + }, + { + "Row": 395, + "Name": "Infernape", + "Pokedex Number": 392, + "Img name": 392, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 525, + "ATK": 222, + "DEF": 151, + "STA": 152, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2464, + "100% CP @ 39": 2429 + }, + { + "Row": 396, + "Name": "Piplup", + "Pokedex Number": 393, + "Img name": 393, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 321, + "ATK": 112, + "DEF": 103, + "STA": 106, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 947, + "100% CP @ 39": 934 + }, + { + "Row": 397, + "Name": "Prinplup", + "Pokedex Number": 394, + "Img name": 394, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 421, + "ATK": 150, + "DEF": 143, + "STA": 128, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1549, + "100% CP @ 39": 1526 + }, + { + "Row": 398, + "Name": "Empoleon", + "Pokedex Number": 395, + "Img name": 395, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 571, + "ATK": 210, + "DEF": 193, + "STA": 168, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2741, + "100% CP @ 39": 2702 + }, + { + "Row": 399, + "Name": "Starly", + "Pokedex Number": 396, + "Img name": 396, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 239, + "ATK": 101, + "DEF": 58, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 603, + "100% CP @ 39": 594 + }, + { + "Row": 400, + "Name": "Staravia", + "Pokedex Number": 397, + "Img name": 397, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 351, + "ATK": 142, + "DEF": 99, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1170, + "100% CP @ 39": 1153 + }, + { + "Row": 401, + "Name": "Staraptor", + "Pokedex Number": 398, + "Img name": 398, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 549, + "ATK": 234, + "DEF": 145, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2675, + "100% CP @ 39": 2637 + }, + { + "Row": 402, + "Name": "Bidoof", + "Pokedex Number": 399, + "Img name": 399, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 271, + "ATK": 80, + "DEF": 73, + "STA": 118, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 641, + "100% CP @ 39": 632 + }, + { + "Row": 403, + "Name": "Bibarel", + "Pokedex Number": 400, + "Img name": 400, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 439, + "ATK": 162, + "DEF": 119, + "STA": 158, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1683, + "100% CP @ 39": 1659 + }, + { + "Row": 404, + "Name": "Kricketot", + "Pokedex Number": 401, + "Img name": 401, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 193, + "ATK": 45, + "DEF": 74, + "STA": 74, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 333, + "100% CP @ 39": 328 + }, + { + "Row": 405, + "Name": "Kricketune", + "Pokedex Number": 402, + "Img name": 402, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 414, + "ATK": 160, + "DEF": 100, + "STA": 154, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1523, + "100% CP @ 39": 1501 + }, + { + "Row": 406, + "Name": "Shinx", + "Pokedex Number": 403, + "Img name": 403, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 271, + "ATK": 117, + "DEF": 64, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 750, + "100% CP @ 39": 740 + }, + { + "Row": 407, + "Name": "Luxio", + "Pokedex Number": 404, + "Img name": 404, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 374, + "ATK": 159, + "DEF": 95, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1324, + "100% CP @ 39": 1305 + }, + { + "Row": 408, + "Name": "Luxray", + "Pokedex Number": 405, + "Img name": 405, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 548, + "ATK": 232, + "DEF": 156, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2668, + "100% CP @ 39": 2630 + }, + { + "Row": 409, + "Name": "Budew", + "Pokedex Number": 406, + "Img name": 406, + "Generation": 4, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 297, + "ATK": 91, + "DEF": 126, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 766, + "100% CP @ 39": 755 + }, + { + "Row": 410, + "Name": "Roserade", + "Pokedex Number": 407, + "Img name": 407, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 569, + "ATK": 243, + "DEF": 206, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2783, + "100% CP @ 39": 2743 + }, + { + "Row": 411, + "Name": "Cranidos", + "Pokedex Number": 408, + "Img name": 408, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 427, + "ATK": 218, + "DEF": 75, + "STA": 134, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1685, + "100% CP @ 39": 1661 + }, + { + "Row": 412, + "Name": "Rampardos", + "Pokedex Number": 409, + "Img name": 409, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 603, + "ATK": 295, + "DEF": 114, + "STA": 194, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3179, + "100% CP @ 39": 3133 + }, + { + "Row": 413, + "Name": "Shieldon", + "Pokedex Number": 410, + "Img name": 410, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "steel", + "Weather 1": "Partly cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 344, + "ATK": 76, + "DEF": 208, + "STA": 60, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 735, + "100% CP @ 39": 724 + }, + { + "Row": 414, + "Name": "Bastiodon", + "Pokedex Number": 411, + "Img name": 411, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "steel", + "Weather 1": "Partly cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 513, + "ATK": 94, + "DEF": 299, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1401, + "100% CP @ 39": 1381 + }, + { + "Row": 415, + "Name": "Burmy (Plant Cloak)", + "Pokedex Number": 412, + "Img name": 412, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 216, + "ATK": 53, + "DEF": 83, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 409, + "100% CP @ 39": 403 + }, + { + "Row": 415, + "Name": "Burmy (Trash Cloak)", + "Pokedex Number": 412, + "Img name": "412-trash", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 216, + "ATK": 53, + "DEF": 83, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 409, + "100% CP @ 39": 403 + }, + { + "Row": 415, + "Name": "Burmy (Sandy Cloak)", + "Pokedex Number": 412, + "Img name": "412-sandy", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 216, + "ATK": 53, + "DEF": 83, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 409, + "100% CP @ 39": 403 + }, + { + "Row": 418, + "Name": "Wormadam (Plant Cloak)", + "Pokedex Number": 413, + "Img name": 413, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 450, + "ATK": 141, + "DEF": 189, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1616, + "100% CP @ 39": 1593 + }, + { + "Row": 419, + "Name": "Wormadam (Trash Cloak)", + "Pokedex Number": 413, + "Img name": "413-trash", + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 450, + "ATK": 141, + "DEF": 189, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1616, + "100% CP @ 39": 1593 + }, + { + "Row": 420, + "Name": "Wormadam (Sandy Cloak)", + "Pokedex Number": 413, + "Img name": "413-sandy", + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 450, + "ATK": 141, + "DEF": 189, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1616, + "100% CP @ 39": 1593 + }, + { + "Row": 421, + "Name": "Mothim", + "Pokedex Number": 414, + "Img name": 414, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 423, + "ATK": 185, + "DEF": 98, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1653, + "100% CP @ 39": 1629 + }, + { + "Row": 422, + "Name": "Combee", + "Pokedex Number": 415, + "Img name": 415, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 202, + "ATK": 59, + "DEF": 83, + "STA": 60, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 396, + "100% CP @ 39": 390 + }, + { + "Row": 423, + "Name": "Vespiquen", + "Pokedex Number": 416, + "Img name": 416, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 479, + "ATK": 149, + "DEF": 190, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1825, + "100% CP @ 39": 1799 + }, + { + "Row": 424, + "Name": "Pachirisu", + "Pokedex Number": 417, + "Img name": 417, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 396, + "ATK": 94, + "DEF": 182, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1110, + "100% CP @ 39": 1094 + }, + { + "Row": 425, + "Name": "Buizel", + "Pokedex Number": 418, + "Img name": 418, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 312, + "ATK": 132, + "DEF": 70, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 946, + "100% CP @ 39": 932 + }, + { + "Row": 426, + "Name": "Floatzel", + "Pokedex Number": 419, + "Img name": 419, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 509, + "ATK": 221, + "DEF": 118, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2312, + "100% CP @ 39": 2279 + }, + { + "Row": 427, + "Name": "Cherubi", + "Pokedex Number": 420, + "Img name": 420, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 294, + "ATK": 108, + "DEF": 96, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 829, + "100% CP @ 39": 817 + }, + { + "Row": 428, + "Name": "Cherrim", + "Pokedex Number": 421, + "Img name": 421, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 467, + "ATK": 170, + "DEF": 157, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1886, + "100% CP @ 39": 1859 + }, + { + "Row": 429, + "Name": "Shellos", + "Pokedex Number": 422, + "Img name": 422, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 366, + "ATK": 103, + "DEF": 111, + "STA": 152, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1069, + "100% CP @ 39": 1053 + }, + { + "Row": 430, + "Name": "Gastrodon", + "Pokedex Number": 423, + "Img name": 423, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 540, + "ATK": 169, + "DEF": 149, + "STA": 222, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2265, + "100% CP @ 39": 2233 + }, + { + "Row": 431, + "Name": "Ambipom", + "Pokedex Number": 424, + "Img name": 424, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 498, + "ATK": 205, + "DEF": 143, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2218, + "100% CP @ 39": 2186 + }, + { + "Row": 432, + "Name": "Drifloon", + "Pokedex Number": 425, + "Img name": 425, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 382, + "ATK": 117, + "DEF": 85, + "STA": 180, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1151, + "100% CP @ 39": 1134 + }, + { + "Row": 433, + "Name": "Drifblim", + "Pokedex Number": 426, + "Img name": 426, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 587, + "ATK": 180, + "DEF": 107, + "STA": 300, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2387, + "100% CP @ 39": 2353 + }, + { + "Row": 434, + "Name": "Buneary", + "Pokedex Number": 427, + "Img name": 427, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 351, + "ATK": 130, + "DEF": 111, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1136, + "100% CP @ 39": 1120 + }, + { + "Row": 435, + "Name": "Lopunny", + "Pokedex Number": 428, + "Img name": 428, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 486, + "ATK": 156, + "DEF": 200, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1885, + "100% CP @ 39": 1858 + }, + { + "Row": 436, + "Name": "Mismagius", + "Pokedex Number": 429, + "Img name": 429, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 542, + "ATK": 211, + "DEF": 211, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2465, + "100% CP @ 39": 2430 + }, + { + "Row": 437, + "Name": "Honchkrow", + "Pokedex Number": 430, + "Img name": 430, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 546, + "ATK": 243, + "DEF": 103, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2566, + "100% CP @ 39": 2529 + }, + { + "Row": 438, + "Name": "Glameow", + "Pokedex Number": 431, + "Img name": 431, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 292, + "ATK": 109, + "DEF": 85, + "STA": 98, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 823, + "100% CP @ 39": 811 + }, + { + "Row": 439, + "Name": "Purugly", + "Pokedex Number": 432, + "Img name": 432, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 450, + "ATK": 172, + "DEF": 136, + "STA": 142, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1798, + "100% CP @ 39": 1772 + }, + { + "Row": 440, + "Name": "Chingling", + "Pokedex Number": 433, + "Img name": 433, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 298, + "ATK": 114, + "DEF": 94, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 861, + "100% CP @ 39": 849 + }, + { + "Row": 441, + "Name": "Stunky", + "Pokedex Number": 434, + "Img name": 434, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "dark", + "Weather 1": "Cloudy", + "Weather 2": "Fog", + "STAT TOTAL": 340, + "ATK": 121, + "DEF": 93, + "STA": 126, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1048, + "100% CP @ 39": 1033 + }, + { + "Row": 442, + "Name": "Skuntank", + "Pokedex Number": 435, + "Img name": 435, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "dark", + "Weather 1": "Cloudy", + "Weather 2": "Fog", + "STAT TOTAL": 525, + "ATK": 184, + "DEF": 135, + "STA": 206, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2262, + "100% CP @ 39": 2230 + }, + { + "Row": 443, + "Name": "Bronzor", + "Pokedex Number": 436, + "Img name": 436, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 311, + "ATK": 43, + "DEF": 154, + "STA": 114, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 534, + "100% CP @ 39": 527 + }, + { + "Row": 444, + "Name": "Bronzong", + "Pokedex Number": 437, + "Img name": 437, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "psychic", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 508, + "ATK": 161, + "DEF": 213, + "STA": 134, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2026, + "100% CP @ 39": 1997 + }, + { + "Row": 445, + "Name": "Bonsly", + "Pokedex Number": 438, + "Img name": 438, + "Generation": 4, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 379, + "ATK": 124, + "DEF": 155, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1213, + "100% CP @ 39": 1196 + }, + { + "Row": 446, + "Name": "Mime Jr.", + "Pokedex Number": 439, + "Img name": 439, + "Generation": 4, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fairy", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 329, + "ATK": 125, + "DEF": 164, + "STA": 40, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 867, + "100% CP @ 39": 855 + }, + { + "Row": 447, + "Name": "Happiny", + "Pokedex Number": 440, + "Img name": 440, + "Generation": 4, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 330, + "ATK": 25, + "DEF": 105, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 401, + "100% CP @ 39": 395 + }, + { + "Row": 448, + "Name": "Chatot", + "Pokedex Number": 441, + "Img name": 441, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 427, + "ATK": 183, + "DEF": 92, + "STA": 152, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1653, + "100% CP @ 39": 1629 + }, + { + "Row": 449, + "Name": "Spiritomb", + "Pokedex Number": 442, + "Img name": 442, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "dark", + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 468, + "ATK": 169, + "DEF": 199, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1802, + "100% CP @ 39": 1777 + }, + { + "Row": 450, + "Name": "Gible", + "Pokedex Number": 443, + "Img name": 443, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ground", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 324, + "ATK": 124, + "DEF": 84, + "STA": 116, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 988, + "100% CP @ 39": 974 + }, + { + "Row": 451, + "Name": "Gabite", + "Pokedex Number": 444, + "Img name": 444, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ground", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 438, + "ATK": 172, + "DEF": 130, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1728, + "100% CP @ 39": 1703 + }, + { + "Row": 452, + "Name": "Garchomp", + "Pokedex Number": 445, + "Img name": 445, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ground", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 675, + "ATK": 261, + "DEF": 198, + "STA": 216, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3823, + "100% CP @ 39": 3769 + }, + { + "Row": 453, + "Name": "Munchlax", + "Pokedex Number": 446, + "Img name": 446, + "Generation": 4, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 544, + "ATK": 137, + "DEF": 137, + "STA": 270, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1975, + "100% CP @ 39": 1947 + }, + { + "Row": 454, + "Name": "Riolu", + "Pokedex Number": 447, + "Img name": 447, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 285, + "ATK": 127, + "DEF": 78, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 833, + "100% CP @ 39": 821 + }, + { + "Row": 455, + "Name": "Lucario", + "Pokedex Number": 448, + "Img name": 448, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": "steel", + "Weather 1": "Cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 520, + "ATK": 236, + "DEF": 144, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2461, + "100% CP @ 39": 2425 + }, + { + "Row": 456, + "Name": "Hippopotas", + "Pokedex Number": 449, + "Img name": 449, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 394, + "ATK": 124, + "DEF": 134, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1302, + "100% CP @ 39": 1283 + }, + { + "Row": 457, + "Name": "Hippowdon", + "Pokedex Number": 450, + "Img name": 450, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 629, + "ATK": 201, + "DEF": 212, + "STA": 216, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3089, + "100% CP @ 39": 3045 + }, + { + "Row": 458, + "Name": "Skorupi", + "Pokedex Number": 451, + "Img name": 451, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "bug", + "Weather 1": "Cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 341, + "ATK": 93, + "DEF": 168, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 889, + "100% CP @ 39": 876 + }, + { + "Row": 459, + "Name": "Drapion", + "Pokedex Number": 452, + "Img name": 452, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "dark", + "Weather 1": "Cloudy", + "Weather 2": "Fog", + "STAT TOTAL": 539, + "ATK": 180, + "DEF": 219, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2319, + "100% CP @ 39": 2286 + }, + { + "Row": 460, + "Name": "Croagunk", + "Pokedex Number": 453, + "Img name": 453, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "fighting", + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 288, + "ATK": 116, + "DEF": 76, + "STA": 96, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 822, + "100% CP @ 39": 810 + }, + { + "Row": 461, + "Name": "Toxicroak", + "Pokedex Number": 454, + "Img name": 454, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "fighting", + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 510, + "ATK": 211, + "DEF": 133, + "STA": 166, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2310, + "100% CP @ 39": 2277 + }, + { + "Row": 462, + "Name": "Carnivine", + "Pokedex Number": 455, + "Img name": 455, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 471, + "ATK": 187, + "DEF": 136, + "STA": 148, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1979, + "100% CP @ 39": 1951 + }, + { + "Row": 463, + "Name": "Finneon", + "Pokedex Number": 456, + "Img name": 456, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 313, + "ATK": 96, + "DEF": 119, + "STA": 98, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 853, + "100% CP @ 39": 840 + }, + { + "Row": 464, + "Name": "Lumineon", + "Pokedex Number": 457, + "Img name": 457, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 455, + "ATK": 142, + "DEF": 175, + "STA": 138, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1671, + "100% CP @ 39": 1648 + }, + { + "Row": 465, + "Name": "Mantyke", + "Pokedex Number": 458, + "Img name": 458, + "Generation": 4, + "Evolution Stage": 0, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 407, + "ATK": 105, + "DEF": 212, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1157, + "100% CP @ 39": 1140 + }, + { + "Row": 466, + "Name": "Snover", + "Pokedex Number": 459, + "Img name": 459, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "ice", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 345, + "ATK": 115, + "DEF": 110, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1054, + "100% CP @ 39": 1039 + }, + { + "Row": 467, + "Name": "Abomasnow", + "Pokedex Number": 460, + "Img name": 460, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "ice", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 521, + "ATK": 178, + "DEF": 163, + "STA": 180, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2245, + "100% CP @ 39": 2213 + }, + { + "Row": 468, + "Name": "Weavile", + "Pokedex Number": 461, + "Img name": 461, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "ice", + "Weather 1": "Fog", + "Weather 2": "Snow", + "STAT TOTAL": 565, + "ATK": 243, + "DEF": 182, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2815, + "100% CP @ 39": 2775 + }, + { + "Row": 469, + "Name": "Magnezone", + "Pokedex Number": 462, + "Img name": 462, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 595, + "ATK": 238, + "DEF": 217, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2996, + "100% CP @ 39": 2953 + }, + { + "Row": 470, + "Name": "Lickilicky", + "Pokedex Number": 463, + "Img name": 463, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 1, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 562, + "ATK": 161, + "DEF": 181, + "STA": 220, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2359, + "100% CP @ 39": 2325 + }, + { + "Row": 471, + "Name": "Rhyperior", + "Pokedex Number": 464, + "Img name": 464, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "rock", + "Weather 1": "Sunny/clear", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 695, + "ATK": 241, + "DEF": 224, + "STA": 230, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3869, + "100% CP @ 39": 3813 + }, + { + "Row": 472, + "Name": "Tangrowth", + "Pokedex Number": 465, + "Img name": 465, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 626, + "ATK": 207, + "DEF": 219, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3110, + "100% CP @ 39": 3065 + }, + { + "Row": 473, + "Name": "Electivire", + "Pokedex Number": 466, + "Img name": 466, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 1, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 572, + "ATK": 249, + "DEF": 173, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2904, + "100% CP @ 39": 2862 + }, + { + "Row": 474, + "Name": "Magmortar", + "Pokedex Number": 467, + "Img name": 467, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": 62, + "Cross Gen": 1, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 583, + "ATK": 247, + "DEF": 186, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2980, + "100% CP @ 39": 2937 + }, + { + "Row": 475, + "Name": "Togekiss", + "Pokedex Number": 468, + "Img name": 468, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": "flying", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 622, + "ATK": 225, + "DEF": 227, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3171, + "100% CP @ 39": 3126 + }, + { + "Row": 476, + "Name": "Yanmega", + "Pokedex Number": 469, + "Img name": 469, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 575, + "ATK": 231, + "DEF": 172, + "STA": 172, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2873, + "100% CP @ 39": 2832 + }, + { + "Row": 477, + "Name": "Leafeon", + "Pokedex Number": 470, + "Img name": 470, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 1, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 600, + "ATK": 216, + "DEF": 254, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2849, + "100% CP @ 39": 2808 + }, + { + "Row": 478, + "Name": "Glaceon", + "Pokedex Number": 471, + "Img name": 471, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 1, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 580, + "ATK": 238, + "DEF": 212, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2866, + "100% CP @ 39": 2825 + }, + { + "Row": 479, + "Name": "Gliscor", + "Pokedex Number": 472, + "Img name": 472, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 583, + "ATK": 185, + "DEF": 248, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2602, + "100% CP @ 39": 2565 + }, + { + "Row": 480, + "Name": "Mamoswine", + "Pokedex Number": 473, + "Img name": 473, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "ground", + "Weather 1": "Snow", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 624, + "ATK": 247, + "DEF": 157, + "STA": 220, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3289, + "100% CP @ 39": 3242 + }, + { + "Row": 481, + "Name": "Porygon-Z", + "Pokedex Number": 474, + "Img name": 474, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 587, + "ATK": 264, + "DEF": 153, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3072, + "100% CP @ 39": 3028 + }, + { + "Row": 482, + "Name": "Gallade", + "Pokedex Number": 475, + "Img name": 475, + "Generation": 4, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fighting", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 593, + "ATK": 237, + "DEF": 220, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2964, + "100% CP @ 39": 2922 + }, + { + "Row": 483, + "Name": "Probopass", + "Pokedex Number": 476, + "Img name": 476, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "steel", + "Weather 1": "Partly cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 533, + "ATK": 135, + "DEF": 278, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1863, + "100% CP @ 39": 1836 + }, + { + "Row": 484, + "Name": "Dusknoir", + "Pokedex Number": 477, + "Img name": 477, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 524, + "ATK": 180, + "DEF": 254, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2046, + "100% CP @ 39": 2017 + }, + { + "Row": 485, + "Name": "Froslass", + "Pokedex Number": 478, + "Img name": 478, + "Generation": 4, + "Evolution Stage": 3, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": "ghost", + "Weather 1": "Snow", + "Weather 2": "Fog", + "STAT TOTAL": 461, + "ATK": 171, + "DEF": 150, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1857, + "100% CP @ 39": 1831 + }, + { + "Row": 486, + "Name": "Rotom (Heat Rotom)", + "Pokedex Number": 479, + "Img name": "479-heat", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 444, + "ATK": 185, + "DEF": 159, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1767, + "100% CP @ 39": 1741 + }, + { + "Row": 487, + "Name": "Rotom (Wash Rotom)", + "Pokedex Number": 479, + "Img name": "479-wash", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 444, + "ATK": 185, + "DEF": 159, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1767, + "100% CP @ 39": 1741 + }, + { + "Row": 488, + "Name": "Rotom (Frost Rotom)", + "Pokedex Number": 479, + "Img name": "479-frost", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 444, + "ATK": 185, + "DEF": 159, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1767, + "100% CP @ 39": 1741 + }, + { + "Row": 489, + "Name": "Rotom (Fan Rotom)", + "Pokedex Number": 479, + "Img name": "479-spin", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 444, + "ATK": 185, + "DEF": 159, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1767, + "100% CP @ 39": 1741 + }, + { + "Row": 490, + "Name": "Rotom (Mow Rotom)", + "Pokedex Number": 479, + "Img name": "479-mow", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 444, + "ATK": 185, + "DEF": 159, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1767, + "100% CP @ 39": 1741 + }, + { + "Row": 491, + "Name": "Rotom (Normal Rotom)", + "Pokedex Number": 479, + "Img name": 479, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 444, + "ATK": 185, + "DEF": 159, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1767, + "100% CP @ 39": 1741 + }, + { + "Row": 492, + "Name": "Uxie", + "Pokedex Number": 480, + "Img name": 480, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 576, + "ATK": 156, + "DEF": 270, + "STA": 150, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2316, + "100% CP @ 39": 2282 + }, + { + "Row": 493, + "Name": "Mesprit", + "Pokedex Number": 481, + "Img name": 481, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 584, + "ATK": 212, + "DEF": 212, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2825, + "100% CP @ 39": 2785 + }, + { + "Row": 494, + "Name": "Azelf", + "Pokedex Number": 482, + "Img name": 482, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 571, + "ATK": 270, + "DEF": 151, + "STA": 150, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2945, + "100% CP @ 39": 2903 + }, + { + "Row": 495, + "Name": "Dialga", + "Pokedex Number": 483, + "Img name": 483, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "dragon", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 744, + "ATK": 302, + "DEF": 242, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4654, + "100% CP @ 39": 4587 + }, + { + "Row": 496, + "Name": "Palkia", + "Pokedex Number": 484, + "Img name": 484, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "dragon", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 735, + "ATK": 308, + "DEF": 247, + "STA": 180, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4559, + "100% CP @ 39": 4494 + }, + { + "Row": 497, + "Name": "Heatran", + "Pokedex Number": 485, + "Img name": 485, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "steel", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 646, + "ATK": 251, + "DEF": 213, + "STA": 182, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3521, + "100% CP @ 39": 3470 + }, + { + "Row": 498, + "Name": "Regigigas", + "Pokedex Number": 486, + "Img name": 486, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 766, + "ATK": 315, + "DEF": 231, + "STA": 220, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4955, + "100% CP @ 39": 4884 + }, + { + "Row": 499, + "Name": "Giratina (Altered Forme)", + "Pokedex Number": 487, + "Img name": 487, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "dragon", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 753, + "ATK": 206, + "DEF": 247, + "STA": 300, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3965, + "100% CP @ 39": 3908 + }, + { + "Row": 500, + "Name": "Giratina (Origin Forme)", + "Pokedex Number": 487, + "Img name": "487-origin", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "dragon", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 753, + "ATK": 206, + "DEF": 247, + "STA": 300, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3965, + "100% CP @ 39": 3908 + }, + { + "Row": 501, + "Name": "Cresselia", + "Pokedex Number": 488, + "Img name": 488, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 655, + "ATK": 152, + "DEF": 263, + "STA": 240, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2777, + "100% CP @ 39": 2737 + }, + { + "Row": 502, + "Name": "Phione", + "Pokedex Number": 489, + "Img name": 489, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 484, + "ATK": 162, + "DEF": 162, + "STA": 160, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1945, + "100% CP @ 39": 1917 + }, + { + "Row": 503, + "Name": "Manaphy", + "Pokedex Number": 490, + "Img name": 490, + "Generation": 4, + "Evolution Stage": 2, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 2, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 504, + "Name": "Darkrai", + "Pokedex Number": 491, + "Img name": 491, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 623, + "ATK": 285, + "DEF": 198, + "STA": 140, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3404, + "100% CP @ 39": 3355 + }, + { + "Row": 505, + "Name": "Shaymin (Land Forme)", + "Pokedex Number": 492, + "Img name": 492, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 506, + "Name": "Shaymin (Sky Forme)", + "Pokedex Number": 492, + "Img name": "492-sky", + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 507, + "Name": "Arceus", + "Pokedex Number": 493, + "Img name": 493, + "Generation": 4, + "Evolution Stage": 1, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 764, + "ATK": 262, + "DEF": 262, + "STA": 240, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4598, + "100% CP @ 39": 4532 + }, + { + "Row": 508, + "Name": "Victini", + "Pokedex Number": 494, + "Img name": 494, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fire", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 620, + "ATK": 210, + "DEF": 210, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3090, + "100% CP @ 39": 3046 + }, + { + "Row": 509, + "Name": "Snivy", + "Pokedex Number": 495, + "Img name": 495, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 285, + "ATK": 88, + "DEF": 107, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 728, + "100% CP @ 39": 717 + }, + { + "Row": 510, + "Name": "Servine", + "Pokedex Number": 496, + "Img name": 496, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 394, + "ATK": 122, + "DEF": 152, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1284, + "100% CP @ 39": 1266 + }, + { + "Row": 511, + "Name": "Serperior", + "Pokedex Number": 497, + "Img name": 497, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 515, + "ATK": 161, + "DEF": 204, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2089, + "100% CP @ 39": 2059 + }, + { + "Row": 512, + "Name": "Tepig", + "Pokedex Number": 498, + "Img name": 498, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 330, + "ATK": 115, + "DEF": 85, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 977, + "100% CP @ 39": 963 + }, + { + "Row": 513, + "Name": "Pignite", + "Pokedex Number": 499, + "Img name": 499, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 459, + "ATK": 173, + "DEF": 106, + "STA": 180, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1803, + "100% CP @ 39": 1777 + }, + { + "Row": 514, + "Name": "Emboar", + "Pokedex Number": 500, + "Img name": 500, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 582, + "ATK": 235, + "DEF": 127, + "STA": 220, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2852, + "100% CP @ 39": 2811 + }, + { + "Row": 515, + "Name": "Oshawott", + "Pokedex Number": 501, + "Img name": 501, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 312, + "ATK": 117, + "DEF": 85, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 921, + "100% CP @ 39": 908 + }, + { + "Row": 516, + "Name": "Dewott", + "Pokedex Number": 502, + "Img name": 502, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 425, + "ATK": 159, + "DEF": 116, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1597, + "100% CP @ 39": 1574 + }, + { + "Row": 517, + "Name": "Samurott", + "Pokedex Number": 503, + "Img name": 503, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 566, + "ATK": 212, + "DEF": 164, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2715, + "100% CP @ 39": 2677 + }, + { + "Row": 518, + "Name": "Patrat", + "Pokedex Number": 504, + "Img name": 504, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 261, + "ATK": 98, + "DEF": 73, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 678, + "100% CP @ 39": 668 + }, + { + "Row": 519, + "Name": "Watchog", + "Pokedex Number": 505, + "Img name": 505, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 424, + "ATK": 165, + "DEF": 139, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1621, + "100% CP @ 39": 1597 + }, + { + "Row": 520, + "Name": "Lillipup", + "Pokedex Number": 506, + "Img name": 506, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 283, + "ATK": 107, + "DEF": 86, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 784, + "100% CP @ 39": 773 + }, + { + "Row": 521, + "Name": "Herdier", + "Pokedex Number": 507, + "Img name": 507, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 401, + "ATK": 145, + "DEF": 126, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1428, + "100% CP @ 39": 1408 + }, + { + "Row": 522, + "Name": "Stoutland", + "Pokedex Number": 508, + "Img name": 508, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 558, + "ATK": 206, + "DEF": 182, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2635, + "100% CP @ 39": 2597 + }, + { + "Row": 523, + "Name": "Purrloin", + "Pokedex Number": 509, + "Img name": 509, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 253, + "ATK": 98, + "DEF": 73, + "STA": 82, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 652, + "100% CP @ 39": 642 + }, + { + "Row": 524, + "Name": "Liepard", + "Pokedex Number": 510, + "Img name": 510, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 421, + "ATK": 187, + "DEF": 106, + "STA": 128, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1659, + "100% CP @ 39": 1635 + }, + { + "Row": 525, + "Name": "Pansage", + "Pokedex Number": 511, + "Img name": 511, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 298, + "ATK": 104, + "DEF": 94, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 832, + "100% CP @ 39": 820 + }, + { + "Row": 526, + "Name": "Simisage", + "Pokedex Number": 512, + "Img name": 512, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 489, + "ATK": 206, + "DEF": 133, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2156, + "100% CP @ 39": 2126 + }, + { + "Row": 527, + "Name": "Pansear", + "Pokedex Number": 513, + "Img name": 513, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 298, + "ATK": 104, + "DEF": 94, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 832, + "100% CP @ 39": 820 + }, + { + "Row": 528, + "Name": "Simisear", + "Pokedex Number": 514, + "Img name": 514, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 489, + "ATK": 206, + "DEF": 133, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2156, + "100% CP @ 39": 2126 + }, + { + "Row": 529, + "Name": "Panpour", + "Pokedex Number": 515, + "Img name": 515, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 298, + "ATK": 104, + "DEF": 94, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 832, + "100% CP @ 39": 820 + }, + { + "Row": 530, + "Name": "Simipour", + "Pokedex Number": 516, + "Img name": 516, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 489, + "ATK": 206, + "DEF": 133, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2156, + "100% CP @ 39": 2126 + }, + { + "Row": 531, + "Name": "Munna", + "Pokedex Number": 517, + "Img name": 517, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 360, + "ATK": 111, + "DEF": 97, + "STA": 152, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1076, + "100% CP @ 39": 1060 + }, + { + "Row": 532, + "Name": "Musharna", + "Pokedex Number": 518, + "Img name": 518, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 586, + "ATK": 183, + "DEF": 171, + "STA": 232, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2650, + "100% CP @ 39": 2612 + }, + { + "Row": 533, + "Name": "Pidove", + "Pokedex Number": 519, + "Img name": 519, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 287, + "ATK": 98, + "DEF": 89, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 771, + "100% CP @ 39": 760 + }, + { + "Row": 534, + "Name": "Tranquill", + "Pokedex Number": 520, + "Img name": 520, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 385, + "ATK": 144, + "DEF": 117, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1345, + "100% CP @ 39": 1325 + }, + { + "Row": 535, + "Name": "Unfezant", + "Pokedex Number": 521, + "Img name": 521, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 546, + "ATK": 226, + "DEF": 160, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2634, + "100% CP @ 39": 2596 + }, + { + "Row": 536, + "Name": "Blitzle", + "Pokedex Number": 522, + "Img name": 522, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 272, + "ATK": 118, + "DEF": 64, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 756, + "100% CP @ 39": 745 + }, + { + "Row": 537, + "Name": "Zebstrika", + "Pokedex Number": 523, + "Img name": 523, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 497, + "ATK": 211, + "DEF": 136, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2228, + "100% CP @ 39": 2196 + }, + { + "Row": 538, + "Name": "Roggenrola", + "Pokedex Number": 524, + "Img name": 524, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 367, + "ATK": 121, + "DEF": 136, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1166, + "100% CP @ 39": 1150 + }, + { + "Row": 539, + "Name": "Boldore", + "Pokedex Number": 525, + "Img name": 525, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 487, + "ATK": 174, + "DEF": 173, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2015, + "100% CP @ 39": 1986 + }, + { + "Row": 540, + "Name": "Gigalith", + "Pokedex Number": 526, + "Img name": 526, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 619, + "ATK": 226, + "DEF": 223, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3158, + "100% CP @ 39": 3113 + }, + { + "Row": 541, + "Name": "Woobat", + "Pokedex Number": 527, + "Img name": 527, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 322, + "ATK": 107, + "DEF": 85, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 917, + "100% CP @ 39": 904 + }, + { + "Row": 542, + "Name": "Swoobat", + "Pokedex Number": 528, + "Img name": 528, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 414, + "ATK": 161, + "DEF": 119, + "STA": 134, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1553, + "100% CP @ 39": 1531 + }, + { + "Row": 543, + "Name": "Drilbur", + "Pokedex Number": 529, + "Img name": 529, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 362, + "ATK": 154, + "DEF": 88, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1244, + "100% CP @ 39": 1226 + }, + { + "Row": 544, + "Name": "Excadrill", + "Pokedex Number": 530, + "Img name": 530, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "steel", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 607, + "ATK": 255, + "DEF": 132, + "STA": 220, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3134, + "100% CP @ 39": 3089 + }, + { + "Row": 545, + "Name": "Audino", + "Pokedex Number": 531, + "Img name": 531, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 483, + "ATK": 114, + "DEF": 163, + "STA": 206, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1598, + "100% CP @ 39": 1575 + }, + { + "Row": 546, + "Name": "Timburr", + "Pokedex Number": 532, + "Img name": 532, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 381, + "ATK": 134, + "DEF": 97, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1265, + "100% CP @ 39": 1247 + }, + { + "Row": 547, + "Name": "Gurdurr", + "Pokedex Number": 533, + "Img name": 533, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 500, + "ATK": 180, + "DEF": 150, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2127, + "100% CP @ 39": 2097 + }, + { + "Row": 548, + "Name": "Conkeldurr", + "Pokedex Number": 534, + "Img name": 534, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 625, + "ATK": 243, + "DEF": 172, + "STA": 210, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3305, + "100% CP @ 39": 3258 + }, + { + "Row": 549, + "Name": "Tympole", + "Pokedex Number": 535, + "Img name": 535, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 276, + "ATK": 98, + "DEF": 78, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 729, + "100% CP @ 39": 719 + }, + { + "Row": 550, + "Name": "Palpitoad", + "Pokedex Number": 536, + "Img name": 536, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 387, + "ATK": 128, + "DEF": 109, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1277, + "100% CP @ 39": 1259 + }, + { + "Row": 551, + "Name": "Seismitoad", + "Pokedex Number": 537, + "Img name": 537, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ground", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 548, + "ATK": 188, + "DEF": 150, + "STA": 210, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2442, + "100% CP @ 39": 2408 + }, + { + "Row": 552, + "Name": "Throh", + "Pokedex Number": 538, + "Img name": 538, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 572, + "ATK": 172, + "DEF": 160, + "STA": 240, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2467, + "100% CP @ 39": 2432 + }, + { + "Row": 553, + "Name": "Sawk", + "Pokedex Number": 539, + "Img name": 539, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 534, + "ATK": 231, + "DEF": 153, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2558, + "100% CP @ 39": 2521 + }, + { + "Row": 554, + "Name": "Sewaddle", + "Pokedex Number": 540, + "Img name": 540, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 315, + "ATK": 96, + "DEF": 129, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 852, + "100% CP @ 39": 840 + }, + { + "Row": 555, + "Name": "Swadloon", + "Pokedex Number": 541, + "Img name": 541, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 391, + "ATK": 115, + "DEF": 166, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1221, + "100% CP @ 39": 1203 + }, + { + "Row": 556, + "Name": "Leavanny", + "Pokedex Number": 542, + "Img name": 542, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "grass", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 520, + "ATK": 205, + "DEF": 165, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2368, + "100% CP @ 39": 2334 + }, + { + "Row": 557, + "Name": "Venipede", + "Pokedex Number": 543, + "Img name": 543, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 252, + "ATK": 83, + "DEF": 109, + "STA": 60, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 590, + "100% CP @ 39": 581 + }, + { + "Row": 558, + "Name": "Whirlipede", + "Pokedex Number": 544, + "Img name": 544, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 362, + "ATK": 100, + "DEF": 182, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 982, + "100% CP @ 39": 968 + }, + { + "Row": 559, + "Name": "Scolipede", + "Pokedex Number": 545, + "Img name": 545, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "poison", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 509, + "ATK": 203, + "DEF": 186, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2242, + "100% CP @ 39": 2210 + }, + { + "Row": 560, + "Name": "Cottonee", + "Pokedex Number": 546, + "Img name": 546, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fairy", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 267, + "ATK": 71, + "DEF": 116, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 599, + "100% CP @ 39": 590 + }, + { + "Row": 561, + "Name": "Whimsicott", + "Pokedex Number": 547, + "Img name": 547, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fairy", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 466, + "ATK": 164, + "DEF": 182, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1823, + "100% CP @ 39": 1797 + }, + { + "Row": 562, + "Name": "Petilil", + "Pokedex Number": 548, + "Img name": 548, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 300, + "ATK": 119, + "DEF": 91, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 882, + "100% CP @ 39": 870 + }, + { + "Row": 563, + "Name": "Lilligant", + "Pokedex Number": 549, + "Img name": 549, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 509, + "ATK": 214, + "DEF": 155, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2321, + "100% CP @ 39": 2288 + }, + { + "Row": 564, + "Name": "Basculin", + "Pokedex Number": 550, + "Img name": 550, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 463, + "ATK": 189, + "DEF": 134, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1936, + "100% CP @ 39": 1908 + }, + { + "Row": 565, + "Name": "Sandile", + "Pokedex Number": 551, + "Img name": 551, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 301, + "ATK": 132, + "DEF": 69, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 902, + "100% CP @ 39": 889 + }, + { + "Row": 566, + "Name": "Krokorok", + "Pokedex Number": 552, + "Img name": 552, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 365, + "ATK": 155, + "DEF": 90, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1264, + "100% CP @ 39": 1246 + }, + { + "Row": 567, + "Name": "Krookodile", + "Pokedex Number": 553, + "Img name": 553, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 582, + "ATK": 229, + "DEF": 163, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2911, + "100% CP @ 39": 2869 + }, + { + "Row": 568, + "Name": "Darumaka", + "Pokedex Number": 554, + "Img name": 554, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 379, + "ATK": 153, + "DEF": 86, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1312, + "100% CP @ 39": 1294 + }, + { + "Row": 569, + "Name": "Darmanitan (Zen Mode)", + "Pokedex Number": 555, + "Img name": 555, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 587, + "ATK": 263, + "DEF": 114, + "STA": 210, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2958, + "100% CP @ 39": 2915 + }, + { + "Row": 570, + "Name": "Darmanitan (Standard Mode)", + "Pokedex Number": 555, + "Img name": 555, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 587, + "ATK": 263, + "DEF": 114, + "STA": 210, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2958, + "100% CP @ 39": 2915 + }, + { + "Row": 571, + "Name": "Maractus", + "Pokedex Number": 556, + "Img name": 556, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 481, + "ATK": 201, + "DEF": 130, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2086, + "100% CP @ 39": 2056 + }, + { + "Row": 572, + "Name": "Dwebble", + "Pokedex Number": 557, + "Img name": 557, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 370, + "ATK": 118, + "DEF": 152, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1151, + "100% CP @ 39": 1134 + }, + { + "Row": 573, + "Name": "Crustle", + "Pokedex Number": 558, + "Img name": 558, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 552, + "ATK": 188, + "DEF": 224, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2440, + "100% CP @ 39": 2405 + }, + { + "Row": 574, + "Name": "Scraggy", + "Pokedex Number": 559, + "Img name": 559, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "fighting", + "Weather 1": "Fog", + "Weather 2": "Cloudy", + "STAT TOTAL": 364, + "ATK": 132, + "DEF": 132, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1193, + "100% CP @ 39": 1176 + }, + { + "Row": 575, + "Name": "Scrafty", + "Pokedex Number": 560, + "Img name": 560, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "fighting", + "Weather 1": "Fog", + "Weather 2": "Cloudy", + "STAT TOTAL": 515, + "ATK": 163, + "DEF": 222, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2060, + "100% CP @ 39": 2031 + }, + { + "Row": 576, + "Name": "Sigilyph", + "Pokedex Number": 561, + "Img name": 561, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "flying", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 515, + "ATK": 204, + "DEF": 167, + "STA": 144, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2326, + "100% CP @ 39": 2293 + }, + { + "Row": 577, + "Name": "Yamask", + "Pokedex Number": 562, + "Img name": 562, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 321, + "ATK": 95, + "DEF": 150, + "STA": 76, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 841, + "100% CP @ 39": 829 + }, + { + "Row": 578, + "Name": "Cofagrigus", + "Pokedex Number": 563, + "Img name": 563, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 534, + "ATK": 163, + "DEF": 255, + "STA": 116, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2090, + "100% CP @ 39": 2060 + }, + { + "Row": 579, + "Name": "Tirtouga", + "Pokedex Number": 564, + "Img name": 564, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 414, + "ATK": 134, + "DEF": 172, + "STA": 108, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1411, + "100% CP @ 39": 1391 + }, + { + "Row": 580, + "Name": "Carracosta", + "Pokedex Number": 565, + "Img name": 565, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "rock", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 568, + "ATK": 192, + "DEF": 228, + "STA": 148, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2573, + "100% CP @ 39": 2536 + }, + { + "Row": 581, + "Name": "Archen", + "Pokedex Number": 566, + "Img name": 566, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 412, + "ATK": 213, + "DEF": 89, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1623, + "100% CP @ 39": 1600 + }, + { + "Row": 582, + "Name": "Archeops", + "Pokedex Number": 567, + "Img name": 567, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 581, + "ATK": 292, + "DEF": 139, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3056, + "100% CP @ 39": 3012 + }, + { + "Row": 583, + "Name": "Trubbish", + "Pokedex Number": 568, + "Img name": 568, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 318, + "ATK": 96, + "DEF": 122, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 870, + "100% CP @ 39": 857 + }, + { + "Row": 584, + "Name": "Garbodor", + "Pokedex Number": 569, + "Img name": 569, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 505, + "ATK": 181, + "DEF": 164, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2166, + "100% CP @ 39": 2135 + }, + { + "Row": 585, + "Name": "Zorua", + "Pokedex Number": 570, + "Img name": 570, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 311, + "ATK": 153, + "DEF": 78, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 986, + "100% CP @ 39": 972 + }, + { + "Row": 586, + "Name": "Zoroark", + "Pokedex Number": 571, + "Img name": 571, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": null, + "Weather 1": "Fog", + "Weather 2": null, + "STAT TOTAL": 497, + "ATK": 250, + "DEF": 127, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2291, + "100% CP @ 39": 2258 + }, + { + "Row": 587, + "Name": "Minccino", + "Pokedex Number": 572, + "Img name": 572, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 288, + "ATK": 98, + "DEF": 80, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 769, + "100% CP @ 39": 758 + }, + { + "Row": 588, + "Name": "Cinccino", + "Pokedex Number": 573, + "Img name": 573, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 478, + "ATK": 198, + "DEF": 130, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2057, + "100% CP @ 39": 2028 + }, + { + "Row": 589, + "Name": "Gothita", + "Pokedex Number": 574, + "Img name": 574, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 306, + "ATK": 98, + "DEF": 118, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 834, + "100% CP @ 39": 822 + }, + { + "Row": 590, + "Name": "Gothorita", + "Pokedex Number": 575, + "Img name": 575, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 416, + "ATK": 137, + "DEF": 159, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1455, + "100% CP @ 39": 1434 + }, + { + "Row": 591, + "Name": "Gothitelle", + "Pokedex Number": 576, + "Img name": 576, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 528, + "ATK": 176, + "DEF": 212, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2237, + "100% CP @ 39": 2205 + }, + { + "Row": 592, + "Name": "Solosis", + "Pokedex Number": 577, + "Img name": 577, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 347, + "ATK": 170, + "DEF": 87, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1195, + "100% CP @ 39": 1178 + }, + { + "Row": 593, + "Name": "Duosion", + "Pokedex Number": 578, + "Img name": 578, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 445, + "ATK": 208, + "DEF": 107, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1852, + "100% CP @ 39": 1826 + }, + { + "Row": 594, + "Name": "Reuniclus", + "Pokedex Number": 579, + "Img name": 579, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 587, + "ATK": 214, + "DEF": 153, + "STA": 220, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2841, + "100% CP @ 39": 2801 + }, + { + "Row": 595, + "Name": "Ducklett", + "Pokedex Number": 580, + "Img name": 580, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 304, + "ATK": 84, + "DEF": 96, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 768, + "100% CP @ 39": 757 + }, + { + "Row": 596, + "Name": "Swanna", + "Pokedex Number": 581, + "Img name": 581, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 464, + "ATK": 182, + "DEF": 132, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1916, + "100% CP @ 39": 1888 + }, + { + "Row": 597, + "Name": "Vanillite", + "Pokedex Number": 582, + "Img name": 582, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 301, + "ATK": 118, + "DEF": 111, + "STA": 72, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 869, + "100% CP @ 39": 857 + }, + { + "Row": 598, + "Name": "Vanillish", + "Pokedex Number": 583, + "Img name": 583, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 396, + "ATK": 151, + "DEF": 143, + "STA": 102, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1409, + "100% CP @ 39": 1389 + }, + { + "Row": 599, + "Name": "Vanilluxe", + "Pokedex Number": 584, + "Img name": 584, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 550, + "ATK": 218, + "DEF": 190, + "STA": 142, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2610, + "100% CP @ 39": 2573 + }, + { + "Row": 600, + "Name": "Deerling", + "Pokedex Number": 585, + "Img name": 585, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "grass", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 335, + "ATK": 115, + "DEF": 100, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1011, + "100% CP @ 39": 997 + }, + { + "Row": 601, + "Name": "Sawsbuck", + "Pokedex Number": 586, + "Img name": 586, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "grass", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 504, + "ATK": 198, + "DEF": 146, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2233, + "100% CP @ 39": 2201 + }, + { + "Row": 602, + "Name": "Emolga", + "Pokedex Number": 587, + "Img name": 587, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 395, + "ATK": 158, + "DEF": 127, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1439, + "100% CP @ 39": 1419 + }, + { + "Row": 603, + "Name": "Karrablast", + "Pokedex Number": 588, + "Img name": 588, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 324, + "ATK": 137, + "DEF": 87, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1028, + "100% CP @ 39": 1013 + }, + { + "Row": 604, + "Name": "Escavalier", + "Pokedex Number": 589, + "Img name": 589, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 550, + "ATK": 223, + "DEF": 187, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2630, + "100% CP @ 39": 2592 + }, + { + "Row": 605, + "Name": "Foongus", + "Pokedex Number": 590, + "Img name": 590, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 330, + "ATK": 97, + "DEF": 95, + "STA": 138, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 907, + "100% CP @ 39": 894 + }, + { + "Row": 606, + "Name": "Amoonguss", + "Pokedex Number": 591, + "Img name": 591, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "poison", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 527, + "ATK": 155, + "DEF": 144, + "STA": 228, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2087, + "100% CP @ 39": 2057 + }, + { + "Row": 607, + "Name": "Frillish", + "Pokedex Number": 592, + "Img name": 592, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 375, + "ATK": 115, + "DEF": 150, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1166, + "100% CP @ 39": 1149 + }, + { + "Row": 608, + "Name": "Jellicent", + "Pokedex Number": 593, + "Img name": 593, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "ghost", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 554, + "ATK": 159, + "DEF": 195, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2309, + "100% CP @ 39": 2276 + }, + { + "Row": 609, + "Name": "Alomomola", + "Pokedex Number": 594, + "Img name": 594, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 616, + "ATK": 138, + "DEF": 148, + "STA": 330, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2266, + "100% CP @ 39": 2233 + }, + { + "Row": 610, + "Name": "Joltik", + "Pokedex Number": 595, + "Img name": 595, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "electric", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 308, + "ATK": 110, + "DEF": 98, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 889, + "100% CP @ 39": 877 + }, + { + "Row": 611, + "Name": "Galvantula", + "Pokedex Number": 596, + "Img name": 596, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "electric", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 469, + "ATK": 201, + "DEF": 128, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2008, + "100% CP @ 39": 1979 + }, + { + "Row": 612, + "Name": "Ferroseed", + "Pokedex Number": 597, + "Img name": 597, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "steel", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 327, + "ATK": 82, + "DEF": 157, + "STA": 88, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 806, + "100% CP @ 39": 794 + }, + { + "Row": 613, + "Name": "Ferrothorn", + "Pokedex Number": 598, + "Img name": 598, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "steel", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 536, + "ATK": 158, + "DEF": 230, + "STA": 148, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2159, + "100% CP @ 39": 2128 + }, + { + "Row": 614, + "Name": "Klink", + "Pokedex Number": 599, + "Img name": 599, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 304, + "ATK": 98, + "DEF": 126, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 816, + "100% CP @ 39": 805 + }, + { + "Row": 615, + "Name": "Klang", + "Pokedex Number": 600, + "Img name": 600, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 449, + "ATK": 150, + "DEF": 179, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1667, + "100% CP @ 39": 1643 + }, + { + "Row": 616, + "Name": "Klinklang", + "Pokedex Number": 601, + "Img name": 601, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 549, + "ATK": 199, + "DEF": 230, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2430, + "100% CP @ 39": 2396 + }, + { + "Row": 617, + "Name": "Tynamo", + "Pokedex Number": 602, + "Img name": 602, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 253, + "ATK": 105, + "DEF": 78, + "STA": 70, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 666, + "100% CP @ 39": 656 + }, + { + "Row": 618, + "Name": "Eelektrik", + "Pokedex Number": 603, + "Img name": 603, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 416, + "ATK": 156, + "DEF": 130, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1548, + "100% CP @ 39": 1526 + }, + { + "Row": 619, + "Name": "Eelektross", + "Pokedex Number": 604, + "Img name": 604, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 539, + "ATK": 217, + "DEF": 152, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2546, + "100% CP @ 39": 2510 + }, + { + "Row": 620, + "Name": "Elgyem", + "Pokedex Number": 605, + "Img name": 605, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 358, + "ATK": 148, + "DEF": 100, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1220, + "100% CP @ 39": 1203 + }, + { + "Row": 621, + "Name": "Beheeyem", + "Pokedex Number": 606, + "Img name": 606, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 543, + "ATK": 221, + "DEF": 172, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2589, + "100% CP @ 39": 2552 + }, + { + "Row": 622, + "Name": "Litwick", + "Pokedex Number": 607, + "Img name": 607, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "fire", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 306, + "ATK": 108, + "DEF": 98, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 875, + "100% CP @ 39": 863 + }, + { + "Row": 623, + "Name": "Lampent", + "Pokedex Number": 608, + "Img name": 608, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "fire", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 404, + "ATK": 169, + "DEF": 115, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1522, + "100% CP @ 39": 1500 + }, + { + "Row": 624, + "Name": "Chandelure", + "Pokedex Number": 609, + "Img name": 609, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "fire", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 573, + "ATK": 271, + "DEF": 182, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2913, + "100% CP @ 39": 2871 + }, + { + "Row": 625, + "Name": "Axew", + "Pokedex Number": 610, + "Img name": 610, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 357, + "ATK": 154, + "DEF": 111, + "STA": 92, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1225, + "100% CP @ 39": 1208 + }, + { + "Row": 626, + "Name": "Fraxure", + "Pokedex Number": 611, + "Img name": 611, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 477, + "ATK": 212, + "DEF": 133, + "STA": 132, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2091, + "100% CP @ 39": 2061 + }, + { + "Row": 627, + "Name": "Haxorus", + "Pokedex Number": 612, + "Img name": 612, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 619, + "ATK": 284, + "DEF": 183, + "STA": 152, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3395, + "100% CP @ 39": 3347 + }, + { + "Row": 628, + "Name": "Cubchoo", + "Pokedex Number": 613, + "Img name": 613, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 312, + "ATK": 128, + "DEF": 74, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 942, + "100% CP @ 39": 928 + }, + { + "Row": 629, + "Name": "Beartic", + "Pokedex Number": 614, + "Img name": 614, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 575, + "ATK": 233, + "DEF": 152, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2865, + "100% CP @ 39": 2825 + }, + { + "Row": 630, + "Name": "Cryogonal", + "Pokedex Number": 615, + "Img name": 615, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 614, + "ATK": 190, + "DEF": 264, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2829, + "100% CP @ 39": 2788 + }, + { + "Row": 631, + "Name": "Shelmet", + "Pokedex Number": 616, + "Img name": 616, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 321, + "ATK": 72, + "DEF": 149, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 746, + "100% CP @ 39": 735 + }, + { + "Row": 632, + "Name": "Accelgor", + "Pokedex Number": 617, + "Img name": 617, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 511, + "ATK": 220, + "DEF": 131, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2346, + "100% CP @ 39": 2312 + }, + { + "Row": 633, + "Name": "Stunfisk", + "Pokedex Number": 618, + "Img name": 618, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "electric", + "Weather 1": "Sunny/clear", + "Weather 2": "Rainy", + "STAT TOTAL": 539, + "ATK": 144, + "DEF": 177, + "STA": 218, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2100, + "100% CP @ 39": 2070 + }, + { + "Row": 634, + "Name": "Mienfoo", + "Pokedex Number": 619, + "Img name": 619, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 348, + "ATK": 160, + "DEF": 98, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1190, + "100% CP @ 39": 1173 + }, + { + "Row": 635, + "Name": "Mienshao", + "Pokedex Number": 620, + "Img name": 620, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 515, + "ATK": 258, + "DEF": 127, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2446, + "100% CP @ 39": 2411 + }, + { + "Row": 636, + "Name": "Druddigon", + "Pokedex Number": 621, + "Img name": 621, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 537, + "ATK": 213, + "DEF": 170, + "STA": 154, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2517, + "100% CP @ 39": 2481 + }, + { + "Row": 637, + "Name": "Golett", + "Pokedex Number": 622, + "Img name": 622, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "ghost", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 337, + "ATK": 127, + "DEF": 92, + "STA": 118, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1058, + "100% CP @ 39": 1042 + }, + { + "Row": 638, + "Name": "Golurk", + "Pokedex Number": 623, + "Img name": 623, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "ghost", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 554, + "ATK": 222, + "DEF": 154, + "STA": 178, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2673, + "100% CP @ 39": 2635 + }, + { + "Row": 639, + "Name": "Pawniard", + "Pokedex Number": 624, + "Img name": 624, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "steel", + "Weather 1": "Fog", + "Weather 2": "Snow", + "STAT TOTAL": 373, + "ATK": 154, + "DEF": 129, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1297, + "100% CP @ 39": 1279 + }, + { + "Row": 640, + "Name": "Bisharp", + "Pokedex Number": 625, + "Img name": 625, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "steel", + "Weather 1": "Fog", + "Weather 2": "Snow", + "STAT TOTAL": 553, + "ATK": 232, + "DEF": 191, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2666, + "100% CP @ 39": 2628 + }, + { + "Row": 641, + "Name": "Bouffalant", + "Pokedex Number": 626, + "Img name": 626, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 567, + "ATK": 195, + "DEF": 182, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2635, + "100% CP @ 39": 2598 + }, + { + "Row": 642, + "Name": "Rufflet", + "Pokedex Number": 627, + "Img name": 627, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 387, + "ATK": 150, + "DEF": 97, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1357, + "100% CP @ 39": 1338 + }, + { + "Row": 643, + "Name": "Braviary", + "Pokedex Number": 628, + "Img name": 628, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 584, + "ATK": 232, + "DEF": 152, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2923, + "100% CP @ 39": 2881 + }, + { + "Row": 644, + "Name": "Vullaby", + "Pokedex Number": 629, + "Img name": 629, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 389, + "ATK": 105, + "DEF": 144, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1176, + "100% CP @ 39": 1159 + }, + { + "Row": 645, + "Name": "Mandibuzz", + "Pokedex Number": 630, + "Img name": 630, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 559, + "ATK": 129, + "DEF": 210, + "STA": 220, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2068, + "100% CP @ 39": 2038 + }, + { + "Row": 646, + "Name": "Heatmor", + "Pokedex Number": 631, + "Img name": 631, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 503, + "ATK": 204, + "DEF": 129, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2232, + "100% CP @ 39": 2200 + }, + { + "Row": 647, + "Name": "Durant", + "Pokedex Number": 632, + "Img name": 632, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 555, + "ATK": 217, + "DEF": 222, + "STA": 116, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2553, + "100% CP @ 39": 2516 + }, + { + "Row": 648, + "Name": "Deino", + "Pokedex Number": 633, + "Img name": 633, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "dragon", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 313, + "ATK": 116, + "DEF": 93, + "STA": 104, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 927, + "100% CP @ 39": 914 + }, + { + "Row": 649, + "Name": "Zweilous", + "Pokedex Number": 634, + "Img name": 634, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "dragon", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 438, + "ATK": 159, + "DEF": 135, + "STA": 144, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1678, + "100% CP @ 39": 1654 + }, + { + "Row": 650, + "Name": "Hydreigon", + "Pokedex Number": 635, + "Img name": 635, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "dragon", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 628, + "ATK": 256, + "DEF": 188, + "STA": 184, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3401, + "100% CP @ 39": 3353 + }, + { + "Row": 651, + "Name": "Larvesta", + "Pokedex Number": 636, + "Img name": 636, + "Generation": 5, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fire", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 373, + "ATK": 156, + "DEF": 107, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1318, + "100% CP @ 39": 1300 + }, + { + "Row": 652, + "Name": "Volcarona", + "Pokedex Number": 637, + "Img name": 637, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fire", + "Weather 1": "Rainy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 644, + "ATK": 264, + "DEF": 210, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3555, + "100% CP @ 39": 3504 + }, + { + "Row": 653, + "Name": "Cobalion", + "Pokedex Number": 638, + "Img name": 638, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "fighting", + "Weather 1": "Snow", + "Weather 2": "Cloudy", + "STAT TOTAL": 634, + "ATK": 192, + "DEF": 260, + "STA": 182, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3009, + "100% CP @ 39": 2966 + }, + { + "Row": 654, + "Name": "Terrakion", + "Pokedex Number": 639, + "Img name": 639, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "fighting", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 634, + "ATK": 260, + "DEF": 192, + "STA": 182, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3468, + "100% CP @ 39": 3418 + }, + { + "Row": 655, + "Name": "Virizion", + "Pokedex Number": 640, + "Img name": 640, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 634, + "ATK": 192, + "DEF": 260, + "STA": 182, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3009, + "100% CP @ 39": 2966 + }, + { + "Row": 656, + "Name": "Tornadus (Therian Forme)", + "Pokedex Number": 641, + "Img name": 641, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "flying", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 593, + "ATK": 266, + "DEF": 169, + "STA": 158, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3131, + "100% CP @ 39": 3086 + }, + { + "Row": 657, + "Name": "Tornadus (Incarnate Forme)", + "Pokedex Number": 641, + "Img name": 641, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "flying", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 593, + "ATK": 266, + "DEF": 169, + "STA": 158, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3131, + "100% CP @ 39": 3086 + }, + { + "Row": 658, + "Name": "Thundurus (Incarnate Forme)", + "Pokedex Number": 642, + "Img name": 642, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 593, + "ATK": 266, + "DEF": 169, + "STA": 158, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3131, + "100% CP @ 39": 3086 + }, + { + "Row": 659, + "Name": "Thundurus (Therian Forme)", + "Pokedex Number": 642, + "Img name": 642, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 593, + "ATK": 266, + "DEF": 169, + "STA": 158, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3131, + "100% CP @ 39": 3086 + }, + { + "Row": 660, + "Name": "Reshiram", + "Pokedex Number": 643, + "Img name": 643, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "fire", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 744, + "ATK": 302, + "DEF": 242, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4654, + "100% CP @ 39": 4587 + }, + { + "Row": 661, + "Name": "Zekrom", + "Pokedex Number": 644, + "Img name": 644, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "electric", + "Weather 1": "Windy", + "Weather 2": "Rainy", + "STAT TOTAL": 744, + "ATK": 302, + "DEF": 242, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4654, + "100% CP @ 39": 4587 + }, + { + "Row": 662, + "Name": "Landorus (Incarnate Forme)", + "Pokedex Number": 645, + "Img name": 645, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 626, + "ATK": 261, + "DEF": 187, + "STA": 178, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3403, + "100% CP @ 39": 3355 + }, + { + "Row": 663, + "Name": "Landorus (Therian Forme)", + "Pokedex Number": 645, + "Img name": 645, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 626, + "ATK": 261, + "DEF": 187, + "STA": 178, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3403, + "100% CP @ 39": 3355 + }, + { + "Row": 664, + "Name": "Kyurem (Black Kyurem)", + "Pokedex Number": 646, + "Img name": 646, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ice", + "Weather 1": "Windy", + "Weather 2": "Snow", + "STAT TOTAL": 707, + "ATK": 270, + "DEF": 187, + "STA": 250, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4118, + "100% CP @ 39": 4059 + }, + { + "Row": 665, + "Name": "Kyurem (Normal Kyurem)", + "Pokedex Number": 646, + "Img name": 646, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ice", + "Weather 1": "Windy", + "Weather 2": "Snow", + "STAT TOTAL": 707, + "ATK": 270, + "DEF": 187, + "STA": 250, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4118, + "100% CP @ 39": 4059 + }, + { + "Row": 666, + "Name": "Kyurem (White Kyurem)", + "Pokedex Number": 646, + "Img name": 646, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ice", + "Weather 1": "Windy", + "Weather 2": "Snow", + "STAT TOTAL": 707, + "ATK": 270, + "DEF": 187, + "STA": 250, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4118, + "100% CP @ 39": 4059 + }, + { + "Row": 667, + "Name": "Keldeo", + "Pokedex Number": 647, + "Img name": 647, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "fighting", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 634, + "ATK": 260, + "DEF": 192, + "STA": 182, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3468, + "100% CP @ 39": 3418 + }, + { + "Row": 668, + "Name": "Meloetta (Pirouette Forme)", + "Pokedex Number": 648, + "Img name": 648, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "psychic", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 700, + "ATK": 250, + "DEF": 250, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3950, + "100% CP @ 39": 3894 + }, + { + "Row": 669, + "Name": "Meloetta (Aria Forme)", + "Pokedex Number": 648, + "Img name": 648, + "Generation": 5, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "psychic", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 700, + "ATK": 250, + "DEF": 250, + "STA": 200, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3950, + "100% CP @ 39": 3894 + }, + { + "Row": 670, + "Name": "Genesect", + "Pokedex Number": 649, + "Img name": 649, + "Generation": 5, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 593, + "ATK": 252, + "DEF": 199, + "STA": 142, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3056, + "100% CP @ 39": 3013 + }, + { + "Row": 671, + "Name": "Chespin", + "Pokedex Number": 650, + "Img name": 650, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 338, + "ATK": 110, + "DEF": 116, + "STA": 112, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1007, + "100% CP @ 39": 992 + }, + { + "Row": 672, + "Name": "Quilladin", + "Pokedex Number": 651, + "Img name": 651, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 442, + "ATK": 146, + "DEF": 174, + "STA": 122, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1618, + "100% CP @ 39": 1594 + }, + { + "Row": 673, + "Name": "Chesnaught", + "Pokedex Number": 652, + "Img name": 652, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fighting", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 604, + "ATK": 201, + "DEF": 227, + "STA": 176, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2900, + "100% CP @ 39": 2859 + }, + { + "Row": 674, + "Name": "Fennekin", + "Pokedex Number": 653, + "Img name": 653, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 308, + "ATK": 116, + "DEF": 112, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 898, + "100% CP @ 39": 885 + }, + { + "Row": 675, + "Name": "Braixen", + "Pokedex Number": 654, + "Img name": 654, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 425, + "ATK": 171, + "DEF": 136, + "STA": 118, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1646, + "100% CP @ 39": 1622 + }, + { + "Row": 676, + "Name": "Delphox", + "Pokedex Number": 655, + "Img name": 655, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "psychic", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 584, + "ATK": 230, + "DEF": 204, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2908, + "100% CP @ 39": 2867 + }, + { + "Row": 677, + "Name": "Froakie", + "Pokedex Number": 656, + "Img name": 656, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 290, + "ATK": 122, + "DEF": 86, + "STA": 82, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 846, + "100% CP @ 39": 834 + }, + { + "Row": 678, + "Name": "Frogadier", + "Pokedex Number": 657, + "Img name": 657, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 392, + "ATK": 168, + "DEF": 116, + "STA": 108, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1450, + "100% CP @ 39": 1430 + }, + { + "Row": 679, + "Name": "Greninja", + "Pokedex Number": 658, + "Img name": 658, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "dark", + "Weather 1": "Rainy", + "Weather 2": "Fog", + "STAT TOTAL": 521, + "ATK": 223, + "DEF": 154, + "STA": 144, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2436, + "100% CP @ 39": 2401 + }, + { + "Row": 680, + "Name": "Bunnelby", + "Pokedex Number": 659, + "Img name": 659, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 217, + "ATK": 68, + "DEF": 73, + "STA": 76, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 463, + "100% CP @ 39": 457 + }, + { + "Row": 681, + "Name": "Diggersby", + "Pokedex Number": 660, + "Img name": 660, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "ground", + "Weather 1": "Partly cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 437, + "ATK": 112, + "DEF": 155, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1406, + "100% CP @ 39": 1386 + }, + { + "Row": 682, + "Name": "Fletchling", + "Pokedex Number": 661, + "Img name": 661, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 268, + "ATK": 95, + "DEF": 83, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 696, + "100% CP @ 39": 686 + }, + { + "Row": 683, + "Name": "Fletchinder", + "Pokedex Number": 662, + "Img name": 662, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 380, + "ATK": 145, + "DEF": 111, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1322, + "100% CP @ 39": 1303 + }, + { + "Row": 684, + "Name": "Talonflame", + "Pokedex Number": 663, + "Img name": 663, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 488, + "ATK": 176, + "DEF": 156, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2039, + "100% CP @ 39": 2010 + }, + { + "Row": 685, + "Name": "Scatterbug", + "Pokedex Number": 664, + "Img name": 664, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 209, + "ATK": 63, + "DEF": 70, + "STA": 76, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 428, + "100% CP @ 39": 422 + }, + { + "Row": 686, + "Name": "Spewpa", + "Pokedex Number": 665, + "Img name": 665, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 241, + "ATK": 48, + "DEF": 103, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 437, + "100% CP @ 39": 431 + }, + { + "Row": 687, + "Name": "Vivillon", + "Pokedex Number": 666, + "Img name": 666, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "flying", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 439, + "ATK": 176, + "DEF": 103, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1714, + "100% CP @ 39": 1689 + }, + { + "Row": 688, + "Name": "Litleo", + "Pokedex Number": 667, + "Img name": 667, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "normal", + "Weather 1": "Sunny/clear", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 377, + "ATK": 139, + "DEF": 114, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1287, + "100% CP @ 39": 1269 + }, + { + "Row": 689, + "Name": "Pyroar", + "Pokedex Number": 668, + "Img name": 668, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "normal", + "Weather 1": "Sunny/clear", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 545, + "ATK": 221, + "DEF": 152, + "STA": 172, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2604, + "100% CP @ 39": 2567 + }, + { + "Row": 690, + "Name": "Flabã©Bã©", + "Pokedex Number": 669, + "Img name": 669, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 334, + "ATK": 108, + "DEF": 138, + "STA": 88, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 964, + "100% CP @ 39": 950 + }, + { + "Row": 691, + "Name": "Floette", + "Pokedex Number": 670, + "Img name": 670, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 419, + "ATK": 136, + "DEF": 175, + "STA": 108, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1441, + "100% CP @ 39": 1421 + }, + { + "Row": 692, + "Name": "Florges", + "Pokedex Number": 671, + "Img name": 671, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 655, + "ATK": 212, + "DEF": 287, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3221, + "100% CP @ 39": 3175 + }, + { + "Row": 693, + "Name": "Skiddo", + "Pokedex Number": 672, + "Img name": 672, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 362, + "ATK": 123, + "DEF": 107, + "STA": 132, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1154, + "100% CP @ 39": 1137 + }, + { + "Row": 694, + "Name": "Gogoat", + "Pokedex Number": 673, + "Img name": 673, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 597, + "ATK": 196, + "DEF": 155, + "STA": 246, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2775, + "100% CP @ 39": 2736 + }, + { + "Row": 695, + "Name": "Pancham", + "Pokedex Number": 674, + "Img name": 674, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 392, + "ATK": 145, + "DEF": 113, + "STA": 134, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1380, + "100% CP @ 39": 1360 + }, + { + "Row": 696, + "Name": "Pangoro", + "Pokedex Number": 675, + "Img name": 675, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": "dark", + "Weather 1": "Cloudy", + "Weather 2": "Fog", + "STAT TOTAL": 565, + "ATK": 226, + "DEF": 149, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2759, + "100% CP @ 39": 2720 + }, + { + "Row": 697, + "Name": "Furfrou", + "Pokedex Number": 676, + "Img name": 676, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 496, + "ATK": 164, + "DEF": 182, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2015, + "100% CP @ 39": 1986 + }, + { + "Row": 698, + "Name": "Espurr", + "Pokedex Number": 677, + "Img name": 677, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 361, + "ATK": 120, + "DEF": 117, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1142, + "100% CP @ 39": 1125 + }, + { + "Row": 699, + "Name": "Meowstic", + "Pokedex Number": 678, + "Img name": 678, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 484, + "ATK": 166, + "DEF": 170, + "STA": 148, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1963, + "100% CP @ 39": 1935 + }, + { + "Row": 700, + "Name": "Honedge", + "Pokedex Number": 679, + "Img name": 679, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "ghost", + "Weather 1": "Snow", + "Weather 2": "Fog", + "STAT TOTAL": 392, + "ATK": 135, + "DEF": 167, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1295, + "100% CP @ 39": 1276 + }, + { + "Row": 701, + "Name": "Doublade", + "Pokedex Number": 680, + "Img name": 680, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "ghost", + "Weather 1": "Snow", + "Weather 2": "Fog", + "STAT TOTAL": 559, + "ATK": 188, + "DEF": 253, + "STA": 118, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2393, + "100% CP @ 39": 2359 + }, + { + "Row": 702, + "Name": "Aegislash", + "Pokedex Number": 681, + "Img name": 681, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "ghost", + "Weather 1": "Snow", + "Weather 2": "Fog", + "STAT TOTAL": 508, + "ATK": 97, + "DEF": 291, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1421, + "100% CP @ 39": 1401 + }, + { + "Row": 703, + "Name": "Spritzee", + "Pokedex Number": 682, + "Img name": 682, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 382, + "ATK": 110, + "DEF": 116, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1168, + "100% CP @ 39": 1151 + }, + { + "Row": 704, + "Name": "Aromatisse", + "Pokedex Number": 683, + "Img name": 683, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 533, + "ATK": 173, + "DEF": 158, + "STA": 202, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2275, + "100% CP @ 39": 2242 + }, + { + "Row": 705, + "Name": "Swirlix", + "Pokedex Number": 684, + "Img name": 684, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 356, + "ATK": 109, + "DEF": 123, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1072, + "100% CP @ 39": 1057 + }, + { + "Row": 706, + "Name": "Slurpuff", + "Pokedex Number": 685, + "Img name": 685, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 500, + "ATK": 168, + "DEF": 168, + "STA": 164, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2068, + "100% CP @ 39": 2039 + }, + { + "Row": 707, + "Name": "Inkay", + "Pokedex Number": 686, + "Img name": 686, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "psychic", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 302, + "ATK": 98, + "DEF": 98, + "STA": 106, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 825, + "100% CP @ 39": 813 + }, + { + "Row": 708, + "Name": "Malamar", + "Pokedex Number": 687, + "Img name": 687, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "psychic", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 521, + "ATK": 177, + "DEF": 172, + "STA": 172, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2242, + "100% CP @ 39": 2210 + }, + { + "Row": 709, + "Name": "Binacle", + "Pokedex Number": 688, + "Img name": 688, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 304, + "ATK": 96, + "DEF": 124, + "STA": 84, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 813, + "100% CP @ 39": 801 + }, + { + "Row": 710, + "Name": "Barbaracle", + "Pokedex Number": 689, + "Img name": 689, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "water", + "Weather 1": "Partly cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 558, + "ATK": 194, + "DEF": 220, + "STA": 144, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2523, + "100% CP @ 39": 2487 + }, + { + "Row": 711, + "Name": "Skrelp", + "Pokedex Number": 690, + "Img name": 690, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "water", + "Weather 1": "Cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 318, + "ATK": 109, + "DEF": 109, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 924, + "100% CP @ 39": 911 + }, + { + "Row": 712, + "Name": "Dragalge", + "Pokedex Number": 691, + "Img name": 691, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "dragon", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 530, + "ATK": 177, + "DEF": 223, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2227, + "100% CP @ 39": 2195 + }, + { + "Row": 713, + "Name": "Clauncher", + "Pokedex Number": 692, + "Img name": 692, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 326, + "ATK": 108, + "DEF": 118, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 950, + "100% CP @ 39": 936 + }, + { + "Row": 714, + "Name": "Clawitzer", + "Pokedex Number": 693, + "Img name": 693, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 535, + "ATK": 221, + "DEF": 172, + "STA": 142, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2525, + "100% CP @ 39": 2489 + }, + { + "Row": 715, + "Name": "Helioptile", + "Pokedex Number": 694, + "Img name": 694, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "normal", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 286, + "ATK": 115, + "DEF": 83, + "STA": 88, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 815, + "100% CP @ 39": 804 + }, + { + "Row": 716, + "Name": "Heliolisk", + "Pokedex Number": 695, + "Img name": 695, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "normal", + "Weather 1": "Rainy", + "Weather 2": "Partly cloudy", + "STAT TOTAL": 533, + "ATK": 219, + "DEF": 190, + "STA": 124, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2467, + "100% CP @ 39": 2431 + }, + { + "Row": 717, + "Name": "Tyrunt", + "Pokedex Number": 696, + "Img name": 696, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "dragon", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 412, + "ATK": 158, + "DEF": 138, + "STA": 116, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1529, + "100% CP @ 39": 1507 + }, + { + "Row": 718, + "Name": "Tyrantrum", + "Pokedex Number": 697, + "Img name": 697, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "dragon", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 612, + "ATK": 227, + "DEF": 221, + "STA": 164, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3106, + "100% CP @ 39": 3062 + }, + { + "Row": 719, + "Name": "Amaura", + "Pokedex Number": 698, + "Img name": 698, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ice", + "Weather 1": "Partly cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 394, + "ATK": 124, + "DEF": 116, + "STA": 154, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1291, + "100% CP @ 39": 1273 + }, + { + "Row": 720, + "Name": "Aurorus", + "Pokedex Number": 699, + "Img name": 699, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "ice", + "Weather 1": "Partly cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 605, + "ATK": 186, + "DEF": 173, + "STA": 246, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2780, + "100% CP @ 39": 2741 + }, + { + "Row": 721, + "Name": "Sylveon", + "Pokedex Number": 700, + "Img name": 700, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 1, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 630, + "ATK": 203, + "DEF": 237, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3094, + "100% CP @ 39": 3050 + }, + { + "Row": 722, + "Name": "Hawlucha", + "Pokedex Number": 701, + "Img name": 701, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": "flying", + "Weather 1": "Cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 511, + "ATK": 195, + "DEF": 160, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2268, + "100% CP @ 39": 2236 + }, + { + "Row": 723, + "Name": "Dedenne", + "Pokedex Number": 702, + "Img name": 702, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 437, + "ATK": 164, + "DEF": 139, + "STA": 134, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1693, + "100% CP @ 39": 1669 + }, + { + "Row": 724, + "Name": "Carbink", + "Pokedex Number": 703, + "Img name": 703, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "fairy", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 480, + "ATK": 95, + "DEF": 285, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1276, + "100% CP @ 39": 1257 + }, + { + "Row": 725, + "Name": "Goomy", + "Pokedex Number": 704, + "Img name": 704, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 321, + "ATK": 101, + "DEF": 130, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 893, + "100% CP @ 39": 881 + }, + { + "Row": 726, + "Name": "Sliggoo", + "Pokedex Number": 705, + "Img name": 705, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 500, + "ATK": 159, + "DEF": 205, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1980, + "100% CP @ 39": 1952 + }, + { + "Row": 727, + "Name": "Goodra", + "Pokedex Number": 706, + "Img name": 706, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 683, + "ATK": 220, + "DEF": 283, + "STA": 180, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3538, + "100% CP @ 39": 3487 + }, + { + "Row": 728, + "Name": "Klefki", + "Pokedex Number": 707, + "Img name": 707, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "fairy", + "Weather 1": "Snow", + "Weather 2": "Cloudy", + "STAT TOTAL": 455, + "ATK": 160, + "DEF": 181, + "STA": 114, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1737, + "100% CP @ 39": 1713 + }, + { + "Row": 729, + "Name": "Phantump", + "Pokedex Number": 708, + "Img name": 708, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "grass", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 319, + "ATK": 125, + "DEF": 108, + "STA": 86, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 974, + "100% CP @ 39": 960 + }, + { + "Row": 730, + "Name": "Trevenant", + "Pokedex Number": 709, + "Img name": 709, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "grass", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 528, + "ATK": 201, + "DEF": 157, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2406, + "100% CP @ 39": 2372 + }, + { + "Row": 731, + "Name": "Pumpkaboo", + "Pokedex Number": 710, + "Img name": 710, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "grass", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 348, + "ATK": 121, + "DEF": 129, + "STA": 98, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1083, + "100% CP @ 39": 1068 + }, + { + "Row": 732, + "Name": "Gourgeist", + "Pokedex Number": 711, + "Img name": 711, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "grass", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 541, + "ATK": 175, + "DEF": 236, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2263, + "100% CP @ 39": 2231 + }, + { + "Row": 733, + "Name": "Bergmite", + "Pokedex Number": 712, + "Img name": 712, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 370, + "ATK": 117, + "DEF": 143, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1158, + "100% CP @ 39": 1142 + }, + { + "Row": 734, + "Name": "Avalugg", + "Pokedex Number": 713, + "Img name": 713, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ice", + "Type 2": null, + "Weather 1": "Snow", + "Weather 2": null, + "STAT TOTAL": 689, + "ATK": 196, + "DEF": 303, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3364, + "100% CP @ 39": 3316 + }, + { + "Row": 735, + "Name": "Noibat", + "Pokedex Number": 714, + "Img name": 714, + "Generation": 6, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "flying", + "Type 2": "dragon", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 239, + "ATK": 83, + "DEF": 76, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 569, + "100% CP @ 39": 560 + }, + { + "Row": 736, + "Name": "Noivern", + "Pokedex Number": 715, + "Img name": 715, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "flying", + "Type 2": "dragon", + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 550, + "ATK": 205, + "DEF": 175, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2576, + "100% CP @ 39": 2539 + }, + { + "Row": 737, + "Name": "Xerneas", + "Pokedex Number": 716, + "Img name": 716, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 731, + "ATK": 275, + "DEF": 204, + "STA": 252, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4379, + "100% CP @ 39": 4317 + }, + { + "Row": 738, + "Name": "Yveltal", + "Pokedex Number": 717, + "Img name": 717, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "flying", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 731, + "ATK": 275, + "DEF": 204, + "STA": 252, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4379, + "100% CP @ 39": 4317 + }, + { + "Row": 739, + "Name": "Zygarde", + "Pokedex Number": 718, + "Img name": 718, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "ground", + "Weather 1": "Windy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 664, + "ATK": 203, + "DEF": 245, + "STA": 216, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3336, + "100% CP @ 39": 3289 + }, + { + "Row": 740, + "Name": "Diancie", + "Pokedex Number": 719, + "Img name": 719, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "fairy", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 575, + "ATK": 190, + "DEF": 285, + "STA": 100, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2378, + "100% CP @ 39": 2344 + }, + { + "Row": 741, + "Name": "Hoopa", + "Pokedex Number": 720, + "Img name": 720, + "Generation": 6, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "ghost", + "Weather 1": "Windy", + "Weather 2": "Fog", + "STAT TOTAL": 688, + "ATK": 287, + "DEF": 241, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3992, + "100% CP @ 39": 3935 + }, + { + "Row": 742, + "Name": "Volcanion", + "Pokedex Number": 721, + "Img name": 721, + "Generation": 6, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "water", + "Weather 1": "Sunny/clear", + "Weather 2": "Rainy", + "STAT TOTAL": 643, + "ATK": 252, + "DEF": 231, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3460, + "100% CP @ 39": 3410 + }, + { + "Row": 743, + "Name": "Rowlet", + "Pokedex Number": 722, + "Img name": 722, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 340, + "ATK": 102, + "DEF": 102, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 971, + "100% CP @ 39": 957 + }, + { + "Row": 744, + "Name": "Dartrix", + "Pokedex Number": 723, + "Img name": 723, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 440, + "ATK": 142, + "DEF": 142, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1606, + "100% CP @ 39": 1583 + }, + { + "Row": 745, + "Name": "Decidueye", + "Pokedex Number": 724, + "Img name": 724, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "ghost", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 558, + "ATK": 210, + "DEF": 192, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2643, + "100% CP @ 39": 2606 + }, + { + "Row": 746, + "Name": "Litten", + "Pokedex Number": 725, + "Img name": 725, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 297, + "ATK": 128, + "DEF": 79, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 887, + "100% CP @ 39": 874 + }, + { + "Row": 747, + "Name": "Torracat", + "Pokedex Number": 726, + "Img name": 726, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 407, + "ATK": 174, + "DEF": 103, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1544, + "100% CP @ 39": 1522 + }, + { + "Row": 748, + "Name": "Incineroar", + "Pokedex Number": 727, + "Img name": 727, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "dark", + "Weather 1": "Sunny/clear", + "Weather 2": "Fog", + "STAT TOTAL": 579, + "ATK": 214, + "DEF": 175, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2822, + "100% CP @ 39": 2782 + }, + { + "Row": 749, + "Name": "Popplio", + "Pokedex Number": 728, + "Img name": 728, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 324, + "ATK": 120, + "DEF": 104, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 986, + "100% CP @ 39": 972 + }, + { + "Row": 750, + "Name": "Brionne", + "Pokedex Number": 729, + "Img name": 729, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 439, + "ATK": 168, + "DEF": 151, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1711, + "100% CP @ 39": 1686 + }, + { + "Row": 751, + "Name": "Primarina", + "Pokedex Number": 730, + "Img name": 730, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 607, + "ATK": 232, + "DEF": 215, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3095, + "100% CP @ 39": 3050 + }, + { + "Row": 752, + "Name": "Pikipek", + "Pokedex Number": 731, + "Img name": 731, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 265, + "ATK": 136, + "DEF": 59, + "STA": 70, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 747, + "100% CP @ 39": 737 + }, + { + "Row": 753, + "Name": "Trumbeak", + "Pokedex Number": 732, + "Img name": 732, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 369, + "ATK": 159, + "DEF": 100, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1302, + "100% CP @ 39": 1284 + }, + { + "Row": 754, + "Name": "Toucannon", + "Pokedex Number": 733, + "Img name": 733, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 528, + "ATK": 222, + "DEF": 146, + "STA": 160, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2484, + "100% CP @ 39": 2449 + }, + { + "Row": 755, + "Name": "Yungoos", + "Pokedex Number": 734, + "Img name": 734, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 274, + "ATK": 122, + "DEF": 56, + "STA": 96, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 759, + "100% CP @ 39": 748 + }, + { + "Row": 756, + "Name": "Gumshoos", + "Pokedex Number": 735, + "Img name": 735, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 483, + "ATK": 194, + "DEF": 113, + "STA": 176, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2041, + "100% CP @ 39": 2011 + }, + { + "Row": 757, + "Name": "Grubbin", + "Pokedex Number": 736, + "Img name": 736, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 294, + "ATK": 115, + "DEF": 85, + "STA": 94, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 847, + "100% CP @ 39": 835 + }, + { + "Row": 758, + "Name": "Charjabug", + "Pokedex Number": 737, + "Img name": 737, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "electric", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 430, + "ATK": 145, + "DEF": 171, + "STA": 114, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1547, + "100% CP @ 39": 1525 + }, + { + "Row": 759, + "Name": "Vikavolt", + "Pokedex Number": 738, + "Img name": 738, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "electric", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 573, + "ATK": 254, + "DEF": 165, + "STA": 154, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2930, + "100% CP @ 39": 2888 + }, + { + "Row": 760, + "Name": "Crabrawler", + "Pokedex Number": 739, + "Img name": 739, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 353, + "ATK": 150, + "DEF": 109, + "STA": 94, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1198, + "100% CP @ 39": 1180 + }, + { + "Row": 761, + "Name": "Crabominable", + "Pokedex Number": 740, + "Img name": 740, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": "ice", + "Weather 1": "Cloudy", + "Weather 2": "Snow", + "STAT TOTAL": 567, + "ATK": 231, + "DEF": 142, + "STA": 194, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2783, + "100% CP @ 39": 2743 + }, + { + "Row": 762, + "Name": "Oricorio", + "Pokedex Number": 741, + "Img name": 741, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "flying", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 491, + "ATK": 196, + "DEF": 145, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2141, + "100% CP @ 39": 2110 + }, + { + "Row": 763, + "Name": "Cutiefly", + "Pokedex Number": 742, + "Img name": 742, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 271, + "ATK": 110, + "DEF": 81, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 745, + "100% CP @ 39": 734 + }, + { + "Row": 764, + "Name": "Ribombee", + "Pokedex Number": 743, + "Img name": 743, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 470, + "ATK": 198, + "DEF": 152, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1997, + "100% CP @ 39": 1968 + }, + { + "Row": 765, + "Name": "Rockruff", + "Pokedex Number": 744, + "Img name": 744, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 285, + "ATK": 117, + "DEF": 78, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 814, + "100% CP @ 39": 803 + }, + { + "Row": 766, + "Name": "Lycanroc", + "Pokedex Number": 745, + "Img name": 745, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 521, + "ATK": 231, + "DEF": 140, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2457, + "100% CP @ 39": 2422 + }, + { + "Row": 767, + "Name": "Wishiwashi", + "Pokedex Number": 746, + "Img name": 746, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 182, + "ATK": 46, + "DEF": 46, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 304, + "100% CP @ 39": 300 + }, + { + "Row": 768, + "Name": "Mareanie", + "Pokedex Number": 747, + "Img name": 747, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "water", + "Weather 1": "Cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 313, + "ATK": 98, + "DEF": 115, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 862, + "100% CP @ 39": 850 + }, + { + "Row": 769, + "Name": "Toxapex", + "Pokedex Number": 748, + "Img name": 748, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "water", + "Weather 1": "Cloudy", + "Weather 2": "Rainy", + "STAT TOTAL": 492, + "ATK": 114, + "DEF": 278, + "STA": 100, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1478, + "100% CP @ 39": 1457 + }, + { + "Row": 770, + "Name": "Mudbray", + "Pokedex Number": 749, + "Img name": 749, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 443, + "ATK": 175, + "DEF": 128, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1766, + "100% CP @ 39": 1741 + }, + { + "Row": 771, + "Name": "Mudsdale", + "Pokedex Number": 750, + "Img name": 750, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ground", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 594, + "ATK": 214, + "DEF": 180, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2928, + "100% CP @ 39": 2886 + }, + { + "Row": 772, + "Name": "Dewpider", + "Pokedex Number": 751, + "Img name": 751, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "bug", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 274, + "ATK": 72, + "DEF": 126, + "STA": 76, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 615, + "100% CP @ 39": 606 + }, + { + "Row": 773, + "Name": "Araquanid", + "Pokedex Number": 752, + "Img name": 752, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "bug", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 499, + "ATK": 126, + "DEF": 237, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1717, + "100% CP @ 39": 1693 + }, + { + "Row": 774, + "Name": "Fomantis", + "Pokedex Number": 753, + "Img name": 753, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 244, + "ATK": 100, + "DEF": 64, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 622, + "100% CP @ 39": 613 + }, + { + "Row": 775, + "Name": "Lurantis", + "Pokedex Number": 754, + "Img name": 754, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 501, + "ATK": 192, + "DEF": 169, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2183, + "100% CP @ 39": 2152 + }, + { + "Row": 776, + "Name": "Morelull", + "Pokedex Number": 755, + "Img name": 755, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fairy", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 316, + "ATK": 108, + "DEF": 128, + "STA": 80, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 895, + "100% CP @ 39": 882 + }, + { + "Row": 777, + "Name": "Shiinotic", + "Pokedex Number": 756, + "Img name": 756, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fairy", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 451, + "ATK": 154, + "DEF": 177, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1699, + "100% CP @ 39": 1675 + }, + { + "Row": 778, + "Name": "Salandit", + "Pokedex Number": 757, + "Img name": 757, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "fire", + "Weather 1": "Cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 312, + "ATK": 136, + "DEF": 80, + "STA": 96, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 968, + "100% CP @ 39": 954 + }, + { + "Row": 779, + "Name": "Salazzle", + "Pokedex Number": 758, + "Img name": 758, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "poison", + "Type 2": "fire", + "Weather 1": "Cloudy", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 494, + "ATK": 228, + "DEF": 130, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2245, + "100% CP @ 39": 2213 + }, + { + "Row": 780, + "Name": "Stufful", + "Pokedex Number": 759, + "Img name": 759, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "fighting", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 371, + "ATK": 136, + "DEF": 95, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1231, + "100% CP @ 39": 1213 + }, + { + "Row": 781, + "Name": "Bewear", + "Pokedex Number": 760, + "Img name": 760, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "fighting", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 616, + "ATK": 226, + "DEF": 150, + "STA": 240, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3087, + "100% CP @ 39": 3043 + }, + { + "Row": 782, + "Name": "Bounsweet", + "Pokedex Number": 761, + "Img name": 761, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 208, + "ATK": 55, + "DEF": 69, + "STA": 84, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 398, + "100% CP @ 39": 393 + }, + { + "Row": 783, + "Name": "Steenee", + "Pokedex Number": 762, + "Img name": 762, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 276, + "ATK": 78, + "DEF": 94, + "STA": 104, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 661, + "100% CP @ 39": 652 + }, + { + "Row": 784, + "Name": "Tsareena", + "Pokedex Number": 763, + "Img name": 763, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": null, + "Weather 1": "Sunny/clear", + "Weather 2": null, + "STAT TOTAL": 561, + "ATK": 222, + "DEF": 195, + "STA": 144, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2704, + "100% CP @ 39": 2666 + }, + { + "Row": 785, + "Name": "Comfey", + "Pokedex Number": 764, + "Img name": 764, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fairy", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 493, + "ATK": 165, + "DEF": 226, + "STA": 102, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1887, + "100% CP @ 39": 1860 + }, + { + "Row": 786, + "Name": "Oranguru", + "Pokedex Number": 765, + "Img name": 765, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "psychic", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 555, + "ATK": 168, + "DEF": 207, + "STA": 180, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2378, + "100% CP @ 39": 2344 + }, + { + "Row": 787, + "Name": "Passimian", + "Pokedex Number": 766, + "Img name": 766, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fighting", + "Type 2": null, + "Weather 1": "Cloudy", + "Weather 2": null, + "STAT TOTAL": 597, + "ATK": 222, + "DEF": 175, + "STA": 200, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2991, + "100% CP @ 39": 2949 + }, + { + "Row": 788, + "Name": "Wimpod", + "Pokedex Number": 767, + "Img name": 767, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "water", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 196, + "ATK": 67, + "DEF": 79, + "STA": 50, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 400, + "100% CP @ 39": 394 + }, + { + "Row": 789, + "Name": "Golisopod", + "Pokedex Number": 768, + "Img name": 768, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "water", + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 617, + "ATK": 218, + "DEF": 249, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3037, + "100% CP @ 39": 2993 + }, + { + "Row": 790, + "Name": "Sandygast", + "Pokedex Number": 769, + "Img name": 769, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "ground", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 363, + "ATK": 120, + "DEF": 133, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1146, + "100% CP @ 39": 1130 + }, + { + "Row": 791, + "Name": "Palossand", + "Pokedex Number": 770, + "Img name": 770, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "ground", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 542, + "ATK": 178, + "DEF": 194, + "STA": 170, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2370, + "100% CP @ 39": 2336 + }, + { + "Row": 792, + "Name": "Pyukumuku", + "Pokedex Number": 771, + "Img name": 771, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 431, + "ATK": 97, + "DEF": 224, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1209, + "100% CP @ 39": 1191 + }, + { + "Row": 793, + "Name": "Type: Null", + "Pokedex Number": 772, + "Img name": 772, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 558, + "ATK": 184, + "DEF": 184, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2510, + "100% CP @ 39": 2474 + }, + { + "Row": 794, + "Name": "Silvally", + "Pokedex Number": 773, + "Img name": 773, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 586, + "ATK": 198, + "DEF": 198, + "STA": 190, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2779, + "100% CP @ 39": 2740 + }, + { + "Row": 795, + "Name": "Minior", + "Pokedex Number": 774, + "Img name": 774, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "flying", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 430, + "ATK": 116, + "DEF": 194, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1374, + "100% CP @ 39": 1354 + }, + { + "Row": 796, + "Name": "Komala", + "Pokedex Number": 775, + "Img name": 775, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": null, + "Weather 1": "Partly cloudy", + "Weather 2": null, + "STAT TOTAL": 525, + "ATK": 216, + "DEF": 179, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2419, + "100% CP @ 39": 2385 + }, + { + "Row": 797, + "Name": "Turtonator", + "Pokedex Number": 776, + "Img name": 776, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "fire", + "Type 2": "dragon", + "Weather 1": "Sunny/clear", + "Weather 2": "Windy", + "STAT TOTAL": 523, + "ATK": 165, + "DEF": 238, + "STA": 120, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2077, + "100% CP @ 39": 2048 + }, + { + "Row": 798, + "Name": "Togedemaru", + "Pokedex Number": 777, + "Img name": 777, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "steel", + "Weather 1": "Rainy", + "Weather 2": "Snow", + "STAT TOTAL": 470, + "ATK": 190, + "DEF": 150, + "STA": 130, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1980, + "100% CP @ 39": 1952 + }, + { + "Row": 799, + "Name": "Mimikyu", + "Pokedex Number": 778, + "Img name": 778, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "fairy", + "Weather 1": "Fog", + "Weather 2": "Cloudy", + "STAT TOTAL": 500, + "ATK": 177, + "DEF": 213, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2024, + "100% CP @ 39": 1995 + }, + { + "Row": 800, + "Name": "Bruxish", + "Pokedex Number": 779, + "Img name": 779, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "psychic", + "Weather 1": "Rainy", + "Weather 2": "Windy", + "STAT TOTAL": 489, + "ATK": 208, + "DEF": 145, + "STA": 136, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2164, + "100% CP @ 39": 2133 + }, + { + "Row": 801, + "Name": "Drampa", + "Pokedex Number": 780, + "Img name": 780, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "normal", + "Type 2": "dragon", + "Weather 1": "Partly cloudy", + "Weather 2": "Windy", + "STAT TOTAL": 554, + "ATK": 231, + "DEF": 167, + "STA": 156, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2710, + "100% CP @ 39": 2671 + }, + { + "Row": 802, + "Name": "Dhelmise", + "Pokedex Number": 781, + "Img name": 781, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "ghost", + "Type 2": "grass", + "Weather 1": "Fog", + "Weather 2": "Sunny/clear", + "STAT TOTAL": 557, + "ATK": 233, + "DEF": 184, + "STA": 140, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2720, + "100% CP @ 39": 2681 + }, + { + "Row": 803, + "Name": "Jangmo-O", + "Pokedex Number": 782, + "Img name": 782, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 310, + "ATK": 102, + "DEF": 118, + "STA": 90, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 863, + "100% CP @ 39": 851 + }, + { + "Row": 804, + "Name": "Hakamo-O", + "Pokedex Number": 783, + "Img name": 783, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "fighting", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 427, + "ATK": 145, + "DEF": 172, + "STA": 110, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 1527, + "100% CP @ 39": 1506 + }, + { + "Row": 805, + "Name": "Kommo-O", + "Pokedex Number": 784, + "Img name": 784, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dragon", + "Type 2": "fighting", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 622, + "ATK": 222, + "DEF": 250, + "STA": 150, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3095, + "100% CP @ 39": 3051 + }, + { + "Row": 806, + "Name": "Tapu Koko", + "Pokedex Number": 785, + "Img name": 785, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 576, + "ATK": 250, + "DEF": 186, + "STA": 140, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2921, + "100% CP @ 39": 2879 + }, + { + "Row": 807, + "Name": "Tapu Lele", + "Pokedex Number": 786, + "Img name": 786, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "fairy", + "Weather 1": "Windy", + "Weather 2": "Cloudy", + "STAT TOTAL": 628, + "ATK": 259, + "DEF": 229, + "STA": 140, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3328, + "100% CP @ 39": 3280 + }, + { + "Row": 808, + "Name": "Tapu Bulu", + "Pokedex Number": 787, + "Img name": 787, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "fairy", + "Weather 1": "Sunny/clear", + "Weather 2": "Cloudy", + "STAT TOTAL": 614, + "ATK": 249, + "DEF": 225, + "STA": 140, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3180, + "100% CP @ 39": 3134 + }, + { + "Row": 809, + "Name": "Tapu Fini", + "Pokedex Number": 788, + "Img name": 788, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "water", + "Type 2": "fairy", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 590, + "ATK": 189, + "DEF": 261, + "STA": 140, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2635, + "100% CP @ 39": 2597 + }, + { + "Row": 810, + "Name": "Cosmog", + "Pokedex Number": 789, + "Img name": 789, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 197, + "ATK": 54, + "DEF": 57, + "STA": 86, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 367, + "100% CP @ 39": 362 + }, + { + "Row": 811, + "Name": "Cosmoem", + "Pokedex Number": 790, + "Img name": 790, + "Generation": 7, + "Evolution Stage": null, + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 382, + "ATK": 54, + "DEF": 242, + "STA": 86, + "Legendary": 0, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 694, + "100% CP @ 39": 684 + }, + { + "Row": 812, + "Name": "Solgaleo", + "Pokedex Number": 791, + "Img name": 791, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "steel", + "Weather 1": "Windy", + "Weather 2": "Snow", + "STAT TOTAL": 773, + "ATK": 280, + "DEF": 219, + "STA": 274, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4791, + "100% CP @ 39": 4722 + }, + { + "Row": 813, + "Name": "Lunala", + "Pokedex Number": 792, + "Img name": 792, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": "ghost", + "Weather 1": "Windy", + "Weather 2": "Fog", + "STAT TOTAL": 773, + "ATK": 280, + "DEF": 219, + "STA": 274, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4791, + "100% CP @ 39": 4722 + }, + { + "Row": 814, + "Name": "Nihilego", + "Pokedex Number": 793, + "Img name": 793, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "rock", + "Type 2": "poison", + "Weather 1": "Partly cloudy", + "Weather 2": "Cloudy", + "STAT TOTAL": 721, + "ATK": 249, + "DEF": 254, + "STA": 218, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4128, + "100% CP @ 39": 4069 + }, + { + "Row": 815, + "Name": "Buzzwole", + "Pokedex Number": 794, + "Img name": 794, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fighting", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 732, + "ATK": 259, + "DEF": 259, + "STA": 214, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4286, + "100% CP @ 39": 4225 + }, + { + "Row": 816, + "Name": "Pheromosa", + "Pokedex Number": 795, + "Img name": 795, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "bug", + "Type 2": "fighting", + "Weather 1": "Rainy", + "Weather 2": "Cloudy", + "STAT TOTAL": 543, + "ATK": 316, + "DEF": 85, + "STA": 142, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2590, + "100% CP @ 39": 2553 + }, + { + "Row": 817, + "Name": "Xurkitree", + "Pokedex Number": 796, + "Img name": 796, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "electric", + "Type 2": null, + "Weather 1": "Rainy", + "Weather 2": null, + "STAT TOTAL": 640, + "ATK": 330, + "DEF": 144, + "STA": 166, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3655, + "100% CP @ 39": 3603 + }, + { + "Row": 818, + "Name": "Celesteela", + "Pokedex Number": 797, + "Img name": 797, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "flying", + "Weather 1": "Snow", + "Weather 2": "Windy", + "STAT TOTAL": 601, + "ATK": 207, + "DEF": 200, + "STA": 194, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2939, + "100% CP @ 39": 2897 + }, + { + "Row": 819, + "Name": "Kartana", + "Pokedex Number": 798, + "Img name": 798, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "grass", + "Type 2": "steel", + "Weather 1": "Sunny/clear", + "Weather 2": "Snow", + "STAT TOTAL": 726, + "ATK": 355, + "DEF": 253, + "STA": 118, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 4362, + "100% CP @ 39": 4300 + }, + { + "Row": 820, + "Name": "Guzzlord", + "Pokedex Number": 799, + "Img name": 799, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "dark", + "Type 2": "dragon", + "Weather 1": "Fog", + "Weather 2": "Windy", + "STAT TOTAL": 733, + "ATK": 188, + "DEF": 99, + "STA": 446, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 2906, + "100% CP @ 39": 2865 + }, + { + "Row": 821, + "Name": "Necrozma", + "Pokedex Number": 800, + "Img name": 800, + "Generation": 7, + "Evolution Stage": "Lower", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "psychic", + "Type 2": null, + "Weather 1": "Windy", + "Weather 2": null, + "STAT TOTAL": 646, + "ATK": 251, + "DEF": 201, + "STA": 194, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3529, + "100% CP @ 39": 3479 + }, + { + "Row": 822, + "Name": "Magearna", + "Pokedex Number": 801, + "Img name": 801, + "Generation": 7, + "Evolution Stage": "Evolved", + "Evolved": 0, + "FamilyID": null, + "Cross Gen": 0, + "Type 1": "steel", + "Type 2": "fairy", + "Weather 1": "Snow", + "Weather 2": "Cloudy", + "STAT TOTAL": 631, + "ATK": 246, + "DEF": 225, + "STA": 160, + "Legendary": 1, + "Aquireable": 0, + "Spawns": 0, + "Regional": 0, + "Raidable": 0, + "Hatchable": 0, + "Shiny": 0, + "Nest": 0, + "New": 0, + "Not-Gettable": 0, + "Future Evolve": 0, + "100% CP @ 40": 3340, + "100% CP @ 39": 3293 + } + ] +} \ No newline at end of file diff --git a/back-end/projeto-case/src/data/connection.ts b/back-end/projeto-case/src/data/connection.ts new file mode 100644 index 0000000..8f0a5cc --- /dev/null +++ b/back-end/projeto-case/src/data/connection.ts @@ -0,0 +1,15 @@ +import knex from 'knex' +import dotenv from 'dotenv' + +dotenv.config() + +export const connection = knex({ + client: 'mysql', + connection: { + host: process.env.DB_HOST, + port: 3306, + user: process.env.DB_USER, + password: process.env.DB_PASS, + database: process.env.DB_NAME + } +}) \ No newline at end of file diff --git a/back-end/projeto-case/src/data/migrations.ts b/back-end/projeto-case/src/data/migrations.ts new file mode 100644 index 0000000..507d66d --- /dev/null +++ b/back-end/projeto-case/src/data/migrations.ts @@ -0,0 +1,58 @@ +import { connection } from "./connection"; +import pokemonGo from "./PokemonGo.json" + +const main = async ()=>{ + + try{ + await connection.raw(` + CREATE TABLE IF NOT EXISTS pokemonGo( + id INT PRIMARY KEY AUTO_INCREMENT, + name VARCHAR(255) NOT NULL, + pokedex VARCHAR(255), + Img VARCHAR(255), + generation VARCHAR(255), + evolution VARCHAR(255), + evolved VARCHAR(255), + family VARCHAR(255), + cros VARCHAR(255), + type1 VARCHAR(255), + type2 VARCHAR(255), + weather VARCHAR(255), + weather2 VARCHAR(255), + stat VARCHAR(255), + atk VARCHAR(255), + def VARCHAR(255), + sta VARCHAR(255), + legendary VARCHAR(255), + aquiareable VARCHAR(255), + spawns VARCHAR(255), + Regional VARCHAR(255), + Raidabl VARCHAR(255), + Hatchale VARCHAR(255), + Shiny VARCHAR(255), + Nest VARCHAR(255), + New VARCHAR(255), + Gettable VARCHAR(255), + Future VARCHAR(255), + life VARCHAR(255), + life2 VARCHAR(255) + ); + + ) + `) + console.log("tabela criada") + + pokemonGo.forEach((pokemonGo:any) => { + pokemonGo.tags=pokemonGo.tags[0] + }); + + await connection("pokemonGo").insert(pokemonsGo.map(()=>{ + + }) + + }catch(error){ + console.log(error) + }finally{ + connection.destroy() + } +} \ No newline at end of file diff --git a/back-end/projeto-case/src/index.ts b/back-end/projeto-case/src/index.ts new file mode 100644 index 0000000..49e5bf4 --- /dev/null +++ b/back-end/projeto-case/src/index.ts @@ -0,0 +1,16 @@ +import { app } from './app' + + +// EndPoint para testarmos servidor +//(pode e deve ser deletado na hora de entregar o case) +app.get('/ping', (req, res) => { + try { + res.send('pong') + } catch (error: any) { + console.log(error.message) + } +}) + +app.get("/pokemonGo") + +app.post("/pokemonGo") \ No newline at end of file diff --git a/back-end/projeto-case/tsconfig.json b/back-end/projeto-case/tsconfig.json new file mode 100644 index 0000000..9caaa9b --- /dev/null +++ b/back-end/projeto-case/tsconfig.json @@ -0,0 +1,100 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Projects */ + // "incremental": true, /* Enable incremental compilation */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + + /* Language and Environment */ + "target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "jsx": "preserve", /* Specify what JSX code is generated. */ + // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */ + // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + + /* Modules */ + "module": "commonjs", /* Specify what module code is generated. */ + "rootDir": "./src", /* Specify the root folder within your source files. */ + // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */ + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + "resolveJsonModule": true, /* Enable importing .json files */ + // "noResolve": true, /* Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. */ + + /* JavaScript Support */ + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */ + + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ + "outDir": "./build", /* Specify an output folder for all emitted files. */ + "removeComments": true, /* Disable emitting comments. */ + // "noEmit": true, /* Disable emitting files from a compilation. */ + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */ + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + + /* Interop Constraints */ + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + + /* Type Checking */ + "strict": true, /* Enable all strict type-checking options. */ + "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ + // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */ + // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + } +}