pokemon-showdown/data/pokedex.js
Guangcong Luo 6884c7ee81 Remove unnecessarily quoted keys in data/
(By pulling this out from the rest of the TypeScript refactor, this
should make the diffs for the TypeScript refactor more readable.)
2020-04-16 01:32:18 -07:00

16267 lines
394 KiB
JavaScript

'use strict';
/**@type {{[k: string]: SpeciesData}} */
let BattlePokedex = {
bulbasaur: {
num: 1,
name: "Bulbasaur",
types: ["Grass", "Poison"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 45, atk: 49, def: 49, spa: 65, spd: 65, spe: 45},
abilities: {0: "Overgrow", H: "Chlorophyll"},
heightm: 0.7,
weightkg: 6.9,
color: "Green",
evos: ["ivysaur"],
eggGroups: ["Monster", "Grass"],
},
ivysaur: {
num: 2,
name: "Ivysaur",
types: ["Grass", "Poison"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 62, def: 63, spa: 80, spd: 80, spe: 60},
abilities: {0: "Overgrow", H: "Chlorophyll"},
heightm: 1,
weightkg: 13,
color: "Green",
prevo: "bulbasaur",
evoLevel: 16,
evos: ["venusaur"],
eggGroups: ["Monster", "Grass"],
},
venusaur: {
num: 3,
name: "Venusaur",
types: ["Grass", "Poison"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 82, def: 83, spa: 100, spd: 100, spe: 80},
abilities: {0: "Overgrow", H: "Chlorophyll"},
heightm: 2,
weightkg: 100,
color: "Green",
prevo: "ivysaur",
evoLevel: 32,
eggGroups: ["Monster", "Grass"],
otherFormes: ["venusaurmega"],
},
venusaurmega: {
num: 3,
name: "Venusaur-Mega",
baseSpecies: "Venusaur",
forme: "Mega",
types: ["Grass", "Poison"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 100, def: 123, spa: 122, spd: 120, spe: 80},
abilities: {0: "Thick Fat"},
heightm: 2.4,
weightkg: 155.5,
color: "Green",
eggGroups: ["Monster", "Grass"],
requiredItem: "Venusaurite",
},
charmander: {
num: 4,
name: "Charmander",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 39, atk: 52, def: 43, spa: 60, spd: 50, spe: 65},
abilities: {0: "Blaze", H: "Solar Power"},
heightm: 0.6,
weightkg: 8.5,
color: "Red",
evos: ["charmeleon"],
eggGroups: ["Monster", "Dragon"],
},
charmeleon: {
num: 5,
name: "Charmeleon",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 58, atk: 64, def: 58, spa: 80, spd: 65, spe: 80},
abilities: {0: "Blaze", H: "Solar Power"},
heightm: 1.1,
weightkg: 19,
color: "Red",
prevo: "charmander",
evoLevel: 16,
evos: ["charizard"],
eggGroups: ["Monster", "Dragon"],
},
charizard: {
num: 6,
name: "Charizard",
types: ["Fire", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 84, def: 78, spa: 109, spd: 85, spe: 100},
abilities: {0: "Blaze", H: "Solar Power"},
heightm: 1.7,
weightkg: 90.5,
color: "Red",
prevo: "charmeleon",
evoLevel: 36,
eggGroups: ["Monster", "Dragon"],
otherFormes: ["charizardmegax", "charizardmegay", "charizardgmax"],
},
charizardmegax: {
num: 6,
name: "Charizard-Mega-X",
baseSpecies: "Charizard",
forme: "Mega-X",
types: ["Fire", "Dragon"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 130, def: 111, spa: 130, spd: 85, spe: 100},
abilities: {0: "Tough Claws"},
heightm: 1.7,
weightkg: 110.5,
color: "Black",
eggGroups: ["Monster", "Dragon"],
requiredItem: "Charizardite X",
},
charizardmegay: {
num: 6,
name: "Charizard-Mega-Y",
baseSpecies: "Charizard",
forme: "Mega-Y",
types: ["Fire", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 104, def: 78, spa: 159, spd: 115, spe: 100},
abilities: {0: "Drought"},
heightm: 1.7,
weightkg: 100.5,
color: "Red",
eggGroups: ["Monster", "Dragon"],
requiredItem: "Charizardite Y",
},
charizardgmax: {
num: 6,
name: "Charizard-Gmax",
baseSpecies: "Charizard",
forme: "Gmax",
types: ["Fire", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 84, def: 78, spa: 109, spd: 85, spe: 100},
abilities: {0: "Blaze", H: "Solar Power"},
heightm: 28,
weightkg: 0,
color: "Red",
eggGroups: ["Monster", "Dragon"],
isGigantamax: "G-Max Wildfire",
},
squirtle: {
num: 7,
name: "Squirtle",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 44, atk: 48, def: 65, spa: 50, spd: 64, spe: 43},
abilities: {0: "Torrent", H: "Rain Dish"},
heightm: 0.5,
weightkg: 9,
color: "Blue",
evos: ["wartortle"],
eggGroups: ["Monster", "Water 1"],
},
wartortle: {
num: 8,
name: "Wartortle",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 59, atk: 63, def: 80, spa: 65, spd: 80, spe: 58},
abilities: {0: "Torrent", H: "Rain Dish"},
heightm: 1,
weightkg: 22.5,
color: "Blue",
prevo: "squirtle",
evoLevel: 16,
evos: ["blastoise"],
eggGroups: ["Monster", "Water 1"],
},
blastoise: {
num: 9,
name: "Blastoise",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 79, atk: 83, def: 100, spa: 85, spd: 105, spe: 78},
abilities: {0: "Torrent", H: "Rain Dish"},
heightm: 1.6,
weightkg: 85.5,
color: "Blue",
prevo: "wartortle",
evoLevel: 36,
eggGroups: ["Monster", "Water 1"],
otherFormes: ["blastoisemega"],
},
blastoisemega: {
num: 9,
name: "Blastoise-Mega",
baseSpecies: "Blastoise",
forme: "Mega",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 79, atk: 103, def: 120, spa: 135, spd: 115, spe: 78},
abilities: {0: "Mega Launcher"},
heightm: 1.6,
weightkg: 101.1,
color: "Blue",
eggGroups: ["Monster", "Water 1"],
requiredItem: "Blastoisinite",
},
caterpie: {
num: 10,
name: "Caterpie",
types: ["Bug"],
baseStats: {hp: 45, atk: 30, def: 35, spa: 20, spd: 20, spe: 45},
abilities: {0: "Shield Dust", H: "Run Away"},
heightm: 0.3,
weightkg: 2.9,
color: "Green",
evos: ["metapod"],
eggGroups: ["Bug"],
},
metapod: {
num: 11,
name: "Metapod",
types: ["Bug"],
baseStats: {hp: 50, atk: 20, def: 55, spa: 25, spd: 25, spe: 30},
abilities: {0: "Shed Skin"},
heightm: 0.7,
weightkg: 9.9,
color: "Green",
prevo: "caterpie",
evoLevel: 7,
evos: ["butterfree"],
eggGroups: ["Bug"],
},
butterfree: {
num: 12,
name: "Butterfree",
types: ["Bug", "Flying"],
baseStats: {hp: 60, atk: 45, def: 50, spa: 90, spd: 80, spe: 70},
abilities: {0: "Compound Eyes", H: "Tinted Lens"},
heightm: 1.1,
weightkg: 32,
color: "White",
prevo: "metapod",
evoLevel: 10,
eggGroups: ["Bug"],
otherFormes: ["butterfreegmax"],
},
butterfreegmax: {
num: 12,
name: "Butterfree-Gmax",
baseSpecies: "Butterfree",
forme: "Gmax",
types: ["Bug", "Flying"],
baseStats: {hp: 60, atk: 45, def: 50, spa: 90, spd: 80, spe: 70},
abilities: {0: "Compound Eyes", H: "Tinted Lens"},
heightm: 17,
weightkg: 0,
color: "White",
eggGroups: ["Bug"],
isGigantamax: "G-Max Befuddle",
},
weedle: {
num: 13,
name: "Weedle",
types: ["Bug", "Poison"],
baseStats: {hp: 40, atk: 35, def: 30, spa: 20, spd: 20, spe: 50},
abilities: {0: "Shield Dust", H: "Run Away"},
heightm: 0.3,
weightkg: 3.2,
color: "Brown",
evos: ["kakuna"],
eggGroups: ["Bug"],
},
kakuna: {
num: 14,
name: "Kakuna",
types: ["Bug", "Poison"],
baseStats: {hp: 45, atk: 25, def: 50, spa: 25, spd: 25, spe: 35},
abilities: {0: "Shed Skin"},
heightm: 0.6,
weightkg: 10,
color: "Yellow",
prevo: "weedle",
evoLevel: 7,
evos: ["beedrill"],
eggGroups: ["Bug"],
},
beedrill: {
num: 15,
name: "Beedrill",
types: ["Bug", "Poison"],
baseStats: {hp: 65, atk: 90, def: 40, spa: 45, spd: 80, spe: 75},
abilities: {0: "Swarm", H: "Sniper"},
heightm: 1,
weightkg: 29.5,
color: "Yellow",
prevo: "kakuna",
evoLevel: 10,
eggGroups: ["Bug"],
otherFormes: ["beedrillmega"],
},
beedrillmega: {
num: 15,
name: "Beedrill-Mega",
baseSpecies: "Beedrill",
forme: "Mega",
types: ["Bug", "Poison"],
baseStats: {hp: 65, atk: 150, def: 40, spa: 15, spd: 80, spe: 145},
abilities: {0: "Adaptability"},
heightm: 1.4,
weightkg: 40.5,
color: "Yellow",
eggGroups: ["Bug"],
requiredItem: "Beedrillite",
},
pidgey: {
num: 16,
name: "Pidgey",
types: ["Normal", "Flying"],
baseStats: {hp: 40, atk: 45, def: 40, spa: 35, spd: 35, spe: 56},
abilities: {0: "Keen Eye", 1: "Tangled Feet", H: "Big Pecks"},
heightm: 0.3,
weightkg: 1.8,
color: "Brown",
evos: ["pidgeotto"],
eggGroups: ["Flying"],
},
pidgeotto: {
num: 17,
name: "Pidgeotto",
types: ["Normal", "Flying"],
baseStats: {hp: 63, atk: 60, def: 55, spa: 50, spd: 50, spe: 71},
abilities: {0: "Keen Eye", 1: "Tangled Feet", H: "Big Pecks"},
heightm: 1.1,
weightkg: 30,
color: "Brown",
prevo: "pidgey",
evoLevel: 18,
evos: ["pidgeot"],
eggGroups: ["Flying"],
},
pidgeot: {
num: 18,
name: "Pidgeot",
types: ["Normal", "Flying"],
baseStats: {hp: 83, atk: 80, def: 75, spa: 70, spd: 70, spe: 101},
abilities: {0: "Keen Eye", 1: "Tangled Feet", H: "Big Pecks"},
heightm: 1.5,
weightkg: 39.5,
color: "Brown",
prevo: "pidgeotto",
evoLevel: 36,
eggGroups: ["Flying"],
otherFormes: ["pidgeotmega"],
},
pidgeotmega: {
num: 18,
name: "Pidgeot-Mega",
baseSpecies: "Pidgeot",
forme: "Mega",
types: ["Normal", "Flying"],
baseStats: {hp: 83, atk: 80, def: 80, spa: 135, spd: 80, spe: 121},
abilities: {0: "No Guard"},
heightm: 2.2,
weightkg: 50.5,
color: "Brown",
eggGroups: ["Flying"],
requiredItem: "Pidgeotite",
},
rattata: {
num: 19,
name: "Rattata",
types: ["Normal"],
baseStats: {hp: 30, atk: 56, def: 35, spa: 25, spd: 35, spe: 72},
abilities: {0: "Run Away", 1: "Guts", H: "Hustle"},
heightm: 0.3,
weightkg: 3.5,
color: "Purple",
evos: ["raticate"],
eggGroups: ["Field"],
otherFormes: ["rattataalola"],
},
rattataalola: {
num: 19,
name: "Rattata-Alola",
baseSpecies: "Rattata",
forme: "Alola",
types: ["Dark", "Normal"],
baseStats: {hp: 30, atk: 56, def: 35, spa: 25, spd: 35, spe: 72},
abilities: {0: "Gluttony", 1: "Hustle", H: "Thick Fat"},
heightm: 0.3,
weightkg: 3.8,
color: "Black",
evos: ["raticatealola"],
eggGroups: ["Field"],
},
raticate: {
num: 20,
name: "Raticate",
types: ["Normal"],
baseStats: {hp: 55, atk: 81, def: 60, spa: 50, spd: 70, spe: 97},
abilities: {0: "Run Away", 1: "Guts", H: "Hustle"},
heightm: 0.7,
weightkg: 18.5,
color: "Brown",
prevo: "rattata",
evoLevel: 20,
eggGroups: ["Field"],
otherFormes: ["raticatealola", "raticatealolatotem"],
},
raticatealola: {
num: 20,
name: "Raticate-Alola",
baseSpecies: "Raticate",
forme: "Alola",
types: ["Dark", "Normal"],
baseStats: {hp: 75, atk: 71, def: 70, spa: 40, spd: 80, spe: 77},
abilities: {0: "Gluttony", 1: "Hustle", H: "Thick Fat"},
heightm: 0.7,
weightkg: 25.5,
color: "Black",
prevo: "rattataalola",
evoLevel: 20,
eggGroups: ["Field"],
},
raticatealolatotem: {
num: 20,
name: "Raticate-Alola-Totem",
baseSpecies: "Raticate",
forme: "Alola-Totem",
types: ["Dark", "Normal"],
baseStats: {hp: 75, atk: 71, def: 70, spa: 40, spd: 80, spe: 77},
abilities: {0: "Thick Fat"},
heightm: 1.4,
weightkg: 105,
color: "Black",
eggGroups: ["Field"],
},
spearow: {
num: 21,
name: "Spearow",
types: ["Normal", "Flying"],
baseStats: {hp: 40, atk: 60, def: 30, spa: 31, spd: 31, spe: 70},
abilities: {0: "Keen Eye", H: "Sniper"},
heightm: 0.3,
weightkg: 2,
color: "Brown",
evos: ["fearow"],
eggGroups: ["Flying"],
},
fearow: {
num: 22,
name: "Fearow",
types: ["Normal", "Flying"],
baseStats: {hp: 65, atk: 90, def: 65, spa: 61, spd: 61, spe: 100},
abilities: {0: "Keen Eye", H: "Sniper"},
heightm: 1.2,
weightkg: 38,
color: "Brown",
prevo: "spearow",
evoLevel: 20,
eggGroups: ["Flying"],
},
ekans: {
num: 23,
name: "Ekans",
types: ["Poison"],
baseStats: {hp: 35, atk: 60, def: 44, spa: 40, spd: 54, spe: 55},
abilities: {0: "Intimidate", 1: "Shed Skin", H: "Unnerve"},
heightm: 2,
weightkg: 6.9,
color: "Purple",
evos: ["arbok"],
eggGroups: ["Field", "Dragon"],
},
arbok: {
num: 24,
name: "Arbok",
types: ["Poison"],
baseStats: {hp: 60, atk: 95, def: 69, spa: 65, spd: 79, spe: 80},
abilities: {0: "Intimidate", 1: "Shed Skin", H: "Unnerve"},
heightm: 3.5,
weightkg: 65,
color: "Purple",
prevo: "ekans",
evoLevel: 22,
eggGroups: ["Field", "Dragon"],
},
pikachu: {
num: 25,
name: "Pikachu",
types: ["Electric"],
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
prevo: "pichu",
evoType: "levelFriendship",
evos: ["raichu", "raichualola"],
eggGroups: ["Field", "Fairy"],
otherFormes: ["pikachucosplay", "pikachurockstar", "pikachubelle", "pikachupopstar", "pikachuphd", "pikachulibre", "pikachuoriginal", "pikachuhoenn", "pikachusinnoh", "pikachuunova", "pikachukalos", "pikachualola", "pikachupartner", "pikachustarter", "pikachugmax"],
},
pikachucosplay: {
num: 25,
name: "Pikachu-Cosplay",
baseSpecies: "Pikachu",
forme: "Cosplay",
types: ["Electric"],
gender: "F",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 6,
},
pikachurockstar: {
num: 25,
name: "Pikachu-Rock-Star",
baseSpecies: "Pikachu",
forme: "Rock-Star",
types: ["Electric"],
gender: "F",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 6,
},
pikachubelle: {
num: 25,
name: "Pikachu-Belle",
baseSpecies: "Pikachu",
forme: "Belle",
types: ["Electric"],
gender: "F",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 6,
},
pikachupopstar: {
num: 25,
name: "Pikachu-Pop-Star",
baseSpecies: "Pikachu",
forme: "Pop-Star",
types: ["Electric"],
gender: "F",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 6,
},
pikachuphd: {
num: 25,
name: "Pikachu-PhD",
baseSpecies: "Pikachu",
forme: "PhD",
types: ["Electric"],
gender: "F",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 6,
},
pikachulibre: {
num: 25,
name: "Pikachu-Libre",
baseSpecies: "Pikachu",
forme: "Libre",
types: ["Electric"],
gender: "F",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 6,
},
pikachuoriginal: {
num: 25,
name: "Pikachu-Original",
baseSpecies: "Pikachu",
forme: "Original",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachuhoenn: {
num: 25,
name: "Pikachu-Hoenn",
baseSpecies: "Pikachu",
forme: "Hoenn",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachusinnoh: {
num: 25,
name: "Pikachu-Sinnoh",
baseSpecies: "Pikachu",
forme: "Sinnoh",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachuunova: {
num: 25,
name: "Pikachu-Unova",
baseSpecies: "Pikachu",
forme: "Unova",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachukalos: {
num: 25,
name: "Pikachu-Kalos",
baseSpecies: "Pikachu",
forme: "Kalos",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachualola: {
num: 25,
name: "Pikachu-Alola",
baseSpecies: "Pikachu",
forme: "Alola",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachupartner: {
num: 25,
name: "Pikachu-Partner",
baseSpecies: "Pikachu",
forme: "Partner",
types: ["Electric"],
gender: "M",
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 7,
},
pikachustarter: {
num: 25,
name: "Pikachu-Starter",
baseSpecies: "Pikachu",
forme: "Starter",
types: ["Electric"],
baseStats: {hp: 45, atk: 80, def: 50, spa: 75, spd: 60, spe: 120},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 6,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
pikachugmax: {
num: 25,
name: "Pikachu-Gmax",
baseSpecies: "Pikachu",
forme: "Gmax",
types: ["Electric"],
baseStats: {hp: 35, atk: 55, def: 40, spa: 50, spd: 50, spe: 90},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 21,
weightkg: 0,
color: "Yellow",
eggGroups: ["Field", "Fairy"],
isGigantamax: "G-Max Volt Crash",
},
raichu: {
num: 26,
name: "Raichu",
types: ["Electric"],
baseStats: {hp: 60, atk: 90, def: 55, spa: 90, spd: 80, spe: 110},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.8,
weightkg: 30,
color: "Yellow",
prevo: "pikachu",
evoItem: "Thunder Stone",
evoType: "useItem",
eggGroups: ["Field", "Fairy"],
otherFormes: ["raichualola"],
},
raichualola: {
num: 26,
name: "Raichu-Alola",
baseSpecies: "Raichu",
forme: "Alola",
types: ["Electric", "Psychic"],
baseStats: {hp: 60, atk: 85, def: 50, spa: 95, spd: 85, spe: 110},
abilities: {0: "Surge Surfer"},
heightm: 0.7,
weightkg: 21,
color: "Brown",
prevo: "pikachu",
evoType: "useItem",
evoItem: "Thunder Stone",
eggGroups: ["Field", "Fairy"],
},
sandshrew: {
num: 27,
name: "Sandshrew",
types: ["Ground"],
baseStats: {hp: 50, atk: 75, def: 85, spa: 20, spd: 30, spe: 40},
abilities: {0: "Sand Veil", H: "Sand Rush"},
heightm: 0.6,
weightkg: 12,
color: "Yellow",
evos: ["sandslash"],
eggGroups: ["Field"],
otherFormes: ["sandshrewalola"],
},
sandshrewalola: {
num: 27,
name: "Sandshrew-Alola",
baseSpecies: "Sandshrew",
forme: "Alola",
types: ["Ice", "Steel"],
baseStats: {hp: 50, atk: 75, def: 90, spa: 10, spd: 35, spe: 40},
abilities: {0: "Snow Cloak", H: "Slush Rush"},
heightm: 0.7,
weightkg: 40,
color: "White",
evos: ["sandslashalola"],
eggGroups: ["Field"],
},
sandslash: {
num: 28,
name: "Sandslash",
types: ["Ground"],
baseStats: {hp: 75, atk: 100, def: 110, spa: 45, spd: 55, spe: 65},
abilities: {0: "Sand Veil", H: "Sand Rush"},
heightm: 1,
weightkg: 29.5,
color: "Yellow",
prevo: "sandshrew",
evoLevel: 22,
eggGroups: ["Field"],
otherFormes: ["sandslashalola"],
},
sandslashalola: {
num: 28,
name: "Sandslash-Alola",
baseSpecies: "Sandslash",
forme: "Alola",
types: ["Ice", "Steel"],
baseStats: {hp: 75, atk: 100, def: 120, spa: 25, spd: 65, spe: 65},
abilities: {0: "Snow Cloak", H: "Slush Rush"},
heightm: 1.2,
weightkg: 55,
color: "Blue",
prevo: "sandshrewalola",
evoType: "useItem",
evoItem: "Ice Stone",
eggGroups: ["Field"],
},
nidoranf: {
num: 29,
name: "Nidoran-F",
types: ["Poison"],
gender: "F",
baseStats: {hp: 55, atk: 47, def: 52, spa: 40, spd: 40, spe: 41},
abilities: {0: "Poison Point", 1: "Rivalry", H: "Hustle"},
heightm: 0.4,
weightkg: 7,
color: "Blue",
evos: ["nidorina"],
eggGroups: ["Monster", "Field"],
},
nidorina: {
num: 30,
name: "Nidorina",
types: ["Poison"],
gender: "F",
baseStats: {hp: 70, atk: 62, def: 67, spa: 55, spd: 55, spe: 56},
abilities: {0: "Poison Point", 1: "Rivalry", H: "Hustle"},
heightm: 0.8,
weightkg: 20,
color: "Blue",
prevo: "nidoranf",
evoLevel: 16,
evos: ["nidoqueen"],
eggGroups: ["Undiscovered"],
},
nidoqueen: {
num: 31,
name: "Nidoqueen",
types: ["Poison", "Ground"],
gender: "F",
baseStats: {hp: 90, atk: 92, def: 87, spa: 75, spd: 85, spe: 76},
abilities: {0: "Poison Point", 1: "Rivalry", H: "Sheer Force"},
heightm: 1.3,
weightkg: 60,
color: "Blue",
prevo: "nidorina",
evoType: "useItem",
evoItem: "Moon Stone",
eggGroups: ["Undiscovered"],
},
nidoranm: {
num: 32,
name: "Nidoran-M",
types: ["Poison"],
gender: "M",
baseStats: {hp: 46, atk: 57, def: 40, spa: 40, spd: 40, spe: 50},
abilities: {0: "Poison Point", 1: "Rivalry", H: "Hustle"},
heightm: 0.5,
weightkg: 9,
color: "Purple",
evos: ["nidorino"],
eggGroups: ["Monster", "Field"],
},
nidorino: {
num: 33,
name: "Nidorino",
types: ["Poison"],
gender: "M",
baseStats: {hp: 61, atk: 72, def: 57, spa: 55, spd: 55, spe: 65},
abilities: {0: "Poison Point", 1: "Rivalry", H: "Hustle"},
heightm: 0.9,
weightkg: 19.5,
color: "Purple",
prevo: "nidoranm",
evoLevel: 16,
evos: ["nidoking"],
eggGroups: ["Monster", "Field"],
},
nidoking: {
num: 34,
name: "Nidoking",
types: ["Poison", "Ground"],
gender: "M",
baseStats: {hp: 81, atk: 102, def: 77, spa: 85, spd: 75, spe: 85},
abilities: {0: "Poison Point", 1: "Rivalry", H: "Sheer Force"},
heightm: 1.4,
weightkg: 62,
color: "Purple",
prevo: "nidorino",
evoType: "useItem",
evoItem: "Moon Stone",
eggGroups: ["Monster", "Field"],
},
clefairy: {
num: 35,
name: "Clefairy",
types: ["Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 70, atk: 45, def: 48, spa: 60, spd: 65, spe: 35},
abilities: {0: "Cute Charm", 1: "Magic Guard", H: "Friend Guard"},
heightm: 0.6,
weightkg: 7.5,
color: "Pink",
prevo: "cleffa",
evoType: "levelFriendship",
evos: ["clefable"],
eggGroups: ["Fairy"],
},
clefable: {
num: 36,
name: "Clefable",
types: ["Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 95, atk: 70, def: 73, spa: 95, spd: 90, spe: 60},
abilities: {0: "Cute Charm", 1: "Magic Guard", H: "Unaware"},
heightm: 1.3,
weightkg: 40,
color: "Pink",
prevo: "clefairy",
evoType: "useItem",
evoItem: "Moon Stone",
eggGroups: ["Fairy"],
},
vulpix: {
num: 37,
name: "Vulpix",
types: ["Fire"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 38, atk: 41, def: 40, spa: 50, spd: 65, spe: 65},
abilities: {0: "Flash Fire", H: "Drought"},
heightm: 0.6,
weightkg: 9.9,
color: "Brown",
evos: ["ninetales"],
eggGroups: ["Field"],
otherFormes: ["vulpixalola"],
},
vulpixalola: {
num: 37,
name: "Vulpix-Alola",
baseSpecies: "Vulpix",
forme: "Alola",
types: ["Ice"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 38, atk: 41, def: 40, spa: 50, spd: 65, spe: 65},
abilities: {0: "Snow Cloak", H: "Snow Warning"},
heightm: 0.6,
weightkg: 9.9,
color: "White",
evos: ["ninetalesalola"],
eggGroups: ["Field"],
},
ninetales: {
num: 38,
name: "Ninetales",
types: ["Fire"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 73, atk: 76, def: 75, spa: 81, spd: 100, spe: 100},
abilities: {0: "Flash Fire", H: "Drought"},
heightm: 1.1,
weightkg: 19.9,
color: "Yellow",
prevo: "vulpix",
evoType: "useItem",
evoItem: "Fire Stone",
eggGroups: ["Field"],
otherFormes: ["ninetalesalola"],
},
ninetalesalola: {
num: 38,
name: "Ninetales-Alola",
baseSpecies: "Ninetales",
forme: "Alola",
types: ["Ice", "Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 73, atk: 67, def: 75, spa: 81, spd: 100, spe: 109},
abilities: {0: "Snow Cloak", H: "Snow Warning"},
heightm: 1.1,
weightkg: 19.9,
color: "Blue",
prevo: "vulpixalola",
evoType: "useItem",
evoItem: "Ice Stone",
eggGroups: ["Field"],
},
jigglypuff: {
num: 39,
name: "Jigglypuff",
types: ["Normal", "Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 115, atk: 45, def: 20, spa: 45, spd: 25, spe: 20},
abilities: {0: "Cute Charm", 1: "Competitive", H: "Friend Guard"},
heightm: 0.5,
weightkg: 5.5,
color: "Pink",
prevo: "igglybuff",
evoType: "levelFriendship",
evos: ["wigglytuff"],
eggGroups: ["Fairy"],
},
wigglytuff: {
num: 40,
name: "Wigglytuff",
types: ["Normal", "Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 140, atk: 70, def: 45, spa: 85, spd: 50, spe: 45},
abilities: {0: "Cute Charm", 1: "Competitive", H: "Frisk"},
heightm: 1,
weightkg: 12,
color: "Pink",
prevo: "jigglypuff",
evoType: "useItem",
evoItem: "Moon Stone",
eggGroups: ["Fairy"],
},
zubat: {
num: 41,
name: "Zubat",
types: ["Poison", "Flying"],
baseStats: {hp: 40, atk: 45, def: 35, spa: 30, spd: 40, spe: 55},
abilities: {0: "Inner Focus", H: "Infiltrator"},
heightm: 0.8,
weightkg: 7.5,
color: "Purple",
evos: ["golbat"],
eggGroups: ["Flying"],
},
golbat: {
num: 42,
name: "Golbat",
types: ["Poison", "Flying"],
baseStats: {hp: 75, atk: 80, def: 70, spa: 65, spd: 75, spe: 90},
abilities: {0: "Inner Focus", H: "Infiltrator"},
heightm: 1.6,
weightkg: 55,
color: "Purple",
prevo: "zubat",
evoLevel: 22,
evos: ["crobat"],
eggGroups: ["Flying"],
},
oddish: {
num: 43,
name: "Oddish",
types: ["Grass", "Poison"],
baseStats: {hp: 45, atk: 50, def: 55, spa: 75, spd: 65, spe: 30},
abilities: {0: "Chlorophyll", H: "Run Away"},
heightm: 0.5,
weightkg: 5.4,
color: "Blue",
evos: ["gloom"],
eggGroups: ["Grass"],
},
gloom: {
num: 44,
name: "Gloom",
types: ["Grass", "Poison"],
baseStats: {hp: 60, atk: 65, def: 70, spa: 85, spd: 75, spe: 40},
abilities: {0: "Chlorophyll", H: "Stench"},
heightm: 0.8,
weightkg: 8.6,
color: "Blue",
prevo: "oddish",
evoLevel: 21,
evos: ["vileplume", "bellossom"],
eggGroups: ["Grass"],
},
vileplume: {
num: 45,
name: "Vileplume",
types: ["Grass", "Poison"],
baseStats: {hp: 75, atk: 80, def: 85, spa: 110, spd: 90, spe: 50},
abilities: {0: "Chlorophyll", H: "Effect Spore"},
heightm: 1.2,
weightkg: 18.6,
color: "Red",
prevo: "gloom",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Grass"],
},
paras: {
num: 46,
name: "Paras",
types: ["Bug", "Grass"],
baseStats: {hp: 35, atk: 70, def: 55, spa: 45, spd: 55, spe: 25},
abilities: {0: "Effect Spore", 1: "Dry Skin", H: "Damp"},
heightm: 0.3,
weightkg: 5.4,
color: "Red",
evos: ["parasect"],
eggGroups: ["Bug", "Grass"],
},
parasect: {
num: 47,
name: "Parasect",
types: ["Bug", "Grass"],
baseStats: {hp: 60, atk: 95, def: 80, spa: 60, spd: 80, spe: 30},
abilities: {0: "Effect Spore", 1: "Dry Skin", H: "Damp"},
heightm: 1,
weightkg: 29.5,
color: "Red",
prevo: "paras",
evoLevel: 24,
eggGroups: ["Bug", "Grass"],
},
venonat: {
num: 48,
name: "Venonat",
types: ["Bug", "Poison"],
baseStats: {hp: 60, atk: 55, def: 50, spa: 40, spd: 55, spe: 45},
abilities: {0: "Compound Eyes", 1: "Tinted Lens", H: "Run Away"},
heightm: 1,
weightkg: 30,
color: "Purple",
evos: ["venomoth"],
eggGroups: ["Bug"],
},
venomoth: {
num: 49,
name: "Venomoth",
types: ["Bug", "Poison"],
baseStats: {hp: 70, atk: 65, def: 60, spa: 90, spd: 75, spe: 90},
abilities: {0: "Shield Dust", 1: "Tinted Lens", H: "Wonder Skin"},
heightm: 1.5,
weightkg: 12.5,
color: "Purple",
prevo: "venonat",
evoLevel: 31,
eggGroups: ["Bug"],
},
diglett: {
num: 50,
name: "Diglett",
types: ["Ground"],
baseStats: {hp: 10, atk: 55, def: 25, spa: 35, spd: 45, spe: 95},
abilities: {0: "Sand Veil", 1: "Arena Trap", H: "Sand Force"},
heightm: 0.2,
weightkg: 0.8,
color: "Brown",
evos: ["dugtrio"],
eggGroups: ["Field"],
otherFormes: ["diglettalola"],
},
diglettalola: {
num: 50,
name: "Diglett-Alola",
baseSpecies: "Diglett",
forme: "Alola",
types: ["Ground", "Steel"],
baseStats: {hp: 10, atk: 55, def: 30, spa: 35, spd: 45, spe: 90},
abilities: {0: "Sand Veil", 1: "Tangling Hair", H: "Sand Force"},
heightm: 0.2,
weightkg: 1,
color: "Brown",
evos: ["dugtrioalola"],
eggGroups: ["Field"],
},
dugtrio: {
num: 51,
name: "Dugtrio",
types: ["Ground"],
baseStats: {hp: 35, atk: 100, def: 50, spa: 50, spd: 70, spe: 120},
abilities: {0: "Sand Veil", 1: "Arena Trap", H: "Sand Force"},
heightm: 0.7,
weightkg: 33.3,
color: "Brown",
prevo: "diglett",
evoLevel: 26,
eggGroups: ["Field"],
otherFormes: ["dugtrioalola"],
},
dugtrioalola: {
num: 51,
name: "Dugtrio-Alola",
baseSpecies: "Dugtrio",
forme: "Alola",
types: ["Ground", "Steel"],
baseStats: {hp: 35, atk: 100, def: 60, spa: 50, spd: 70, spe: 110},
abilities: {0: "Sand Veil", 1: "Tangling Hair", H: "Sand Force"},
heightm: 0.7,
weightkg: 66.6,
color: "Brown",
prevo: "diglettalola",
evoLevel: 26,
eggGroups: ["Field"],
},
meowth: {
num: 52,
name: "Meowth",
types: ["Normal"],
baseStats: {hp: 40, atk: 45, def: 35, spa: 40, spd: 40, spe: 90},
abilities: {0: "Pickup", 1: "Technician", H: "Unnerve"},
heightm: 0.4,
weightkg: 4.2,
color: "Yellow",
evos: ["persian"],
eggGroups: ["Field"],
otherFormes: ["meowthalola", "meowthgalar", "meowthgmax"],
},
meowthalola: {
num: 52,
name: "Meowth-Alola",
baseSpecies: "Meowth",
forme: "Alola",
types: ["Dark"],
baseStats: {hp: 40, atk: 35, def: 35, spa: 50, spd: 40, spe: 90},
abilities: {0: "Pickup", 1: "Technician", H: "Rattled"},
heightm: 0.4,
weightkg: 4.2,
color: "Blue",
evos: ["persianalola"],
eggGroups: ["Field"],
},
meowthgalar: {
num: 52,
name: "Meowth-Galar",
baseSpecies: "Meowth",
forme: "Galar",
types: ["Steel"],
baseStats: {hp: 50, atk: 65, def: 55, spa: 40, spd: 40, spe: 40},
abilities: {0: "Pickup", 1: "Tough Claws", H: "Unnerve"},
heightm: 0.4,
weightkg: 7.5,
color: "Brown",
evos: ["perrserker"],
eggGroups: ["Field"],
},
meowthgmax: {
num: 52,
name: "Meowth-Gmax",
baseSpecies: "Meowth",
forme: "Gmax",
types: ["Normal"],
baseStats: {hp: 40, atk: 45, def: 35, spa: 40, spd: 40, spe: 90},
abilities: {0: "Pickup", 1: "Technician", H: "Unnerve"},
heightm: 33,
weightkg: 0,
color: "Yellow",
eggGroups: ["Field"],
isGigantamax: "G-Max Gold Rush",
},
persian: {
num: 53,
name: "Persian",
types: ["Normal"],
baseStats: {hp: 65, atk: 70, def: 60, spa: 65, spd: 65, spe: 115},
abilities: {0: "Limber", 1: "Technician", H: "Unnerve"},
heightm: 1,
weightkg: 32,
color: "Yellow",
prevo: "meowth",
evoLevel: 28,
eggGroups: ["Field"],
otherFormes: ["persianalola"],
},
persianalola: {
num: 53,
name: "Persian-Alola",
baseSpecies: "Persian",
forme: "Alola",
types: ["Dark"],
baseStats: {hp: 65, atk: 60, def: 60, spa: 75, spd: 65, spe: 115},
abilities: {0: "Fur Coat", 1: "Technician", H: "Rattled"},
heightm: 1.1,
weightkg: 33,
color: "Blue",
prevo: "meowthalola",
evoType: "levelFriendship",
eggGroups: ["Field"],
},
psyduck: {
num: 54,
name: "Psyduck",
types: ["Water"],
baseStats: {hp: 50, atk: 52, def: 48, spa: 65, spd: 50, spe: 55},
abilities: {0: "Damp", 1: "Cloud Nine", H: "Swift Swim"},
heightm: 0.8,
weightkg: 19.6,
color: "Yellow",
evos: ["golduck"],
eggGroups: ["Water 1", "Field"],
},
golduck: {
num: 55,
name: "Golduck",
types: ["Water"],
baseStats: {hp: 80, atk: 82, def: 78, spa: 95, spd: 80, spe: 85},
abilities: {0: "Damp", 1: "Cloud Nine", H: "Swift Swim"},
heightm: 1.7,
weightkg: 76.6,
color: "Blue",
prevo: "psyduck",
evoLevel: 33,
eggGroups: ["Water 1", "Field"],
},
mankey: {
num: 56,
name: "Mankey",
types: ["Fighting"],
baseStats: {hp: 40, atk: 80, def: 35, spa: 35, spd: 45, spe: 70},
abilities: {0: "Vital Spirit", 1: "Anger Point", H: "Defiant"},
heightm: 0.5,
weightkg: 28,
color: "Brown",
evos: ["primeape"],
eggGroups: ["Field"],
},
primeape: {
num: 57,
name: "Primeape",
types: ["Fighting"],
baseStats: {hp: 65, atk: 105, def: 60, spa: 60, spd: 70, spe: 95},
abilities: {0: "Vital Spirit", 1: "Anger Point", H: "Defiant"},
heightm: 1,
weightkg: 32,
color: "Brown",
prevo: "mankey",
evoLevel: 28,
eggGroups: ["Field"],
},
growlithe: {
num: 58,
name: "Growlithe",
types: ["Fire"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 55, atk: 70, def: 45, spa: 70, spd: 50, spe: 60},
abilities: {0: "Intimidate", 1: "Flash Fire", H: "Justified"},
heightm: 0.7,
weightkg: 19,
color: "Brown",
evos: ["arcanine"],
eggGroups: ["Field"],
},
arcanine: {
num: 59,
name: "Arcanine",
types: ["Fire"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 90, atk: 110, def: 80, spa: 100, spd: 80, spe: 95},
abilities: {0: "Intimidate", 1: "Flash Fire", H: "Justified"},
heightm: 1.9,
weightkg: 155,
color: "Brown",
prevo: "growlithe",
evoType: "useItem",
evoItem: "Fire Stone",
eggGroups: ["Field"],
},
poliwag: {
num: 60,
name: "Poliwag",
types: ["Water"],
baseStats: {hp: 40, atk: 50, def: 40, spa: 40, spd: 40, spe: 90},
abilities: {0: "Water Absorb", 1: "Damp", H: "Swift Swim"},
heightm: 0.6,
weightkg: 12.4,
color: "Blue",
evos: ["poliwhirl"],
eggGroups: ["Water 1"],
},
poliwhirl: {
num: 61,
name: "Poliwhirl",
types: ["Water"],
baseStats: {hp: 65, atk: 65, def: 65, spa: 50, spd: 50, spe: 90},
abilities: {0: "Water Absorb", 1: "Damp", H: "Swift Swim"},
heightm: 1,
weightkg: 20,
color: "Blue",
prevo: "poliwag",
evoLevel: 25,
evos: ["poliwrath", "politoed"],
eggGroups: ["Water 1"],
},
poliwrath: {
num: 62,
name: "Poliwrath",
types: ["Water", "Fighting"],
baseStats: {hp: 90, atk: 95, def: 95, spa: 70, spd: 90, spe: 70},
abilities: {0: "Water Absorb", 1: "Damp", H: "Swift Swim"},
heightm: 1.3,
weightkg: 54,
color: "Blue",
prevo: "poliwhirl",
evoType: "useItem",
evoItem: "Water Stone",
eggGroups: ["Water 1"],
},
abra: {
num: 63,
name: "Abra",
types: ["Psychic"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 25, atk: 20, def: 15, spa: 105, spd: 55, spe: 90},
abilities: {0: "Synchronize", 1: "Inner Focus", H: "Magic Guard"},
heightm: 0.9,
weightkg: 19.5,
color: "Brown",
evos: ["kadabra"],
eggGroups: ["Human-Like"],
},
kadabra: {
num: 64,
name: "Kadabra",
types: ["Psychic"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 40, atk: 35, def: 30, spa: 120, spd: 70, spe: 105},
abilities: {0: "Synchronize", 1: "Inner Focus", H: "Magic Guard"},
heightm: 1.3,
weightkg: 56.5,
color: "Brown",
prevo: "abra",
evoLevel: 16,
evos: ["alakazam"],
eggGroups: ["Human-Like"],
},
alakazam: {
num: 65,
name: "Alakazam",
types: ["Psychic"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 55, atk: 50, def: 45, spa: 135, spd: 95, spe: 120},
abilities: {0: "Synchronize", 1: "Inner Focus", H: "Magic Guard"},
heightm: 1.5,
weightkg: 48,
color: "Brown",
prevo: "kadabra",
evoType: "trade",
eggGroups: ["Human-Like"],
otherFormes: ["alakazammega"],
},
alakazammega: {
num: 65,
name: "Alakazam-Mega",
baseSpecies: "Alakazam",
forme: "Mega",
types: ["Psychic"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 55, atk: 50, def: 65, spa: 175, spd: 105, spe: 150},
abilities: {0: "Trace"},
heightm: 1.2,
weightkg: 48,
color: "Brown",
eggGroups: ["Human-Like"],
requiredItem: "Alakazite",
},
machop: {
num: 66,
name: "Machop",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 70, atk: 80, def: 50, spa: 35, spd: 35, spe: 35},
abilities: {0: "Guts", 1: "No Guard", H: "Steadfast"},
heightm: 0.8,
weightkg: 19.5,
color: "Gray",
evos: ["machoke"],
eggGroups: ["Human-Like"],
},
machoke: {
num: 67,
name: "Machoke",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 80, atk: 100, def: 70, spa: 50, spd: 60, spe: 45},
abilities: {0: "Guts", 1: "No Guard", H: "Steadfast"},
heightm: 1.5,
weightkg: 70.5,
color: "Gray",
prevo: "machop",
evoLevel: 28,
evos: ["machamp"],
eggGroups: ["Human-Like"],
},
machamp: {
num: 68,
name: "Machamp",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 90, atk: 130, def: 80, spa: 65, spd: 85, spe: 55},
abilities: {0: "Guts", 1: "No Guard", H: "Steadfast"},
heightm: 1.6,
weightkg: 130,
color: "Gray",
prevo: "machoke",
evoType: "trade",
eggGroups: ["Human-Like"],
otherFormes: ["machampgmax"],
},
machampgmax: {
num: 68,
name: "Machamp-Gmax",
baseSpecies: "Machamp",
forme: "Gmax",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 90, atk: 130, def: 80, spa: 65, spd: 85, spe: 55},
abilities: {0: "Guts", 1: "No Guard", H: "Steadfast"},
heightm: 25,
weightkg: 0,
color: "Gray",
eggGroups: ["Human-Like"],
isGigantamax: "G-Max Chi Strike",
},
bellsprout: {
num: 69,
name: "Bellsprout",
types: ["Grass", "Poison"],
baseStats: {hp: 50, atk: 75, def: 35, spa: 70, spd: 30, spe: 40},
abilities: {0: "Chlorophyll", H: "Gluttony"},
heightm: 0.7,
weightkg: 4,
color: "Green",
evos: ["weepinbell"],
eggGroups: ["Grass"],
},
weepinbell: {
num: 70,
name: "Weepinbell",
types: ["Grass", "Poison"],
baseStats: {hp: 65, atk: 90, def: 50, spa: 85, spd: 45, spe: 55},
abilities: {0: "Chlorophyll", H: "Gluttony"},
heightm: 1,
weightkg: 6.4,
color: "Green",
prevo: "bellsprout",
evoLevel: 21,
evos: ["victreebel"],
eggGroups: ["Grass"],
},
victreebel: {
num: 71,
name: "Victreebel",
types: ["Grass", "Poison"],
baseStats: {hp: 80, atk: 105, def: 65, spa: 100, spd: 70, spe: 70},
abilities: {0: "Chlorophyll", H: "Gluttony"},
heightm: 1.7,
weightkg: 15.5,
color: "Green",
prevo: "weepinbell",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Grass"],
},
tentacool: {
num: 72,
name: "Tentacool",
types: ["Water", "Poison"],
baseStats: {hp: 40, atk: 40, def: 35, spa: 50, spd: 100, spe: 70},
abilities: {0: "Clear Body", 1: "Liquid Ooze", H: "Rain Dish"},
heightm: 0.9,
weightkg: 45.5,
color: "Blue",
evos: ["tentacruel"],
eggGroups: ["Water 3"],
},
tentacruel: {
num: 73,
name: "Tentacruel",
types: ["Water", "Poison"],
baseStats: {hp: 80, atk: 70, def: 65, spa: 80, spd: 120, spe: 100},
abilities: {0: "Clear Body", 1: "Liquid Ooze", H: "Rain Dish"},
heightm: 1.6,
weightkg: 55,
color: "Blue",
prevo: "tentacool",
evoLevel: 30,
eggGroups: ["Water 3"],
},
geodude: {
num: 74,
name: "Geodude",
types: ["Rock", "Ground"],
baseStats: {hp: 40, atk: 80, def: 100, spa: 30, spd: 30, spe: 20},
abilities: {0: "Rock Head", 1: "Sturdy", H: "Sand Veil"},
heightm: 0.4,
weightkg: 20,
color: "Brown",
evos: ["graveler"],
eggGroups: ["Mineral"],
otherFormes: ["geodudealola"],
},
geodudealola: {
num: 74,
name: "Geodude-Alola",
baseSpecies: "Geodude",
forme: "Alola",
types: ["Rock", "Electric"],
baseStats: {hp: 40, atk: 80, def: 100, spa: 30, spd: 30, spe: 20},
abilities: {0: "Magnet Pull", 1: "Sturdy", H: "Galvanize"},
heightm: 0.4,
weightkg: 20.3,
color: "Gray",
evos: ["graveleralola"],
eggGroups: ["Mineral"],
},
graveler: {
num: 75,
name: "Graveler",
types: ["Rock", "Ground"],
baseStats: {hp: 55, atk: 95, def: 115, spa: 45, spd: 45, spe: 35},
abilities: {0: "Rock Head", 1: "Sturdy", H: "Sand Veil"},
heightm: 1,
weightkg: 105,
color: "Brown",
prevo: "geodude",
evoLevel: 25,
evos: ["golem"],
eggGroups: ["Mineral"],
otherFormes: ["graveleralola"],
},
graveleralola: {
num: 75,
name: "Graveler-Alola",
baseSpecies: "Graveler",
forme: "Alola",
types: ["Rock", "Electric"],
baseStats: {hp: 55, atk: 95, def: 115, spa: 45, spd: 45, spe: 35},
abilities: {0: "Magnet Pull", 1: "Sturdy", H: "Galvanize"},
heightm: 1,
weightkg: 110,
color: "Gray",
prevo: "geodudealola",
evoLevel: 25,
evos: ["golemalola"],
eggGroups: ["Mineral"],
},
golem: {
num: 76,
name: "Golem",
types: ["Rock", "Ground"],
baseStats: {hp: 80, atk: 120, def: 130, spa: 55, spd: 65, spe: 45},
abilities: {0: "Rock Head", 1: "Sturdy", H: "Sand Veil"},
heightm: 1.4,
weightkg: 300,
color: "Brown",
prevo: "graveler",
evoType: "trade",
eggGroups: ["Mineral"],
otherFormes: ["golemalola"],
},
golemalola: {
num: 76,
name: "Golem-Alola",
baseSpecies: "Golem",
forme: "Alola",
types: ["Rock", "Electric"],
baseStats: {hp: 80, atk: 120, def: 130, spa: 55, spd: 65, spe: 45},
abilities: {0: "Magnet Pull", 1: "Sturdy", H: "Galvanize"},
heightm: 1.7,
weightkg: 316,
color: "Gray",
prevo: "graveleralola",
evoType: "trade",
eggGroups: ["Mineral"],
},
ponyta: {
num: 77,
name: "Ponyta",
types: ["Fire"],
baseStats: {hp: 50, atk: 85, def: 55, spa: 65, spd: 65, spe: 90},
abilities: {0: "Run Away", 1: "Flash Fire", H: "Flame Body"},
heightm: 1,
weightkg: 30,
color: "Yellow",
evos: ["rapidash"],
eggGroups: ["Field"],
otherFormes: ["ponytagalar"],
},
ponytagalar: {
num: 77,
name: "Ponyta-Galar",
baseSpecies: "Ponyta",
forme: "Galar",
types: ["Psychic"],
baseStats: {hp: 50, atk: 85, def: 55, spa: 65, spd: 65, spe: 90},
abilities: {0: "Run Away", 1: "Pastel Veil", H: "Anticipation"},
heightm: 0.8,
weightkg: 24,
color: "White",
evos: ["rapidashgalar"],
eggGroups: ["Field"],
},
rapidash: {
num: 78,
name: "Rapidash",
types: ["Fire"],
baseStats: {hp: 65, atk: 100, def: 70, spa: 80, spd: 80, spe: 105},
abilities: {0: "Run Away", 1: "Flash Fire", H: "Flame Body"},
heightm: 1.7,
weightkg: 95,
color: "Yellow",
prevo: "ponyta",
evoLevel: 40,
eggGroups: ["Field"],
otherFormes: ["rapidashgalar"],
},
rapidashgalar: {
num: 78,
name: "Rapidash-Galar",
baseSpecies: "Rapidash",
forme: "Galar",
types: ["Psychic", "Fairy"],
baseStats: {hp: 65, atk: 100, def: 70, spa: 80, spd: 80, spe: 105},
abilities: {0: "Run Away", 1: "Pastel Veil", H: "Anticipation"},
heightm: 1.7,
weightkg: 80,
color: "White",
prevo: "ponytagalar",
evoLevel: 40,
eggGroups: ["Field"],
},
slowpoke: {
num: 79,
name: "Slowpoke",
types: ["Water", "Psychic"],
baseStats: {hp: 90, atk: 65, def: 65, spa: 40, spd: 40, spe: 15},
abilities: {0: "Oblivious", 1: "Own Tempo", H: "Regenerator"},
heightm: 1.2,
weightkg: 36,
color: "Pink",
evos: ["slowbro", "slowking"],
eggGroups: ["Monster", "Water 1"],
otherFormes: ["slowpokegalar"],
},
slowpokegalar: {
num: 79,
name: "Slowpoke-Galar",
baseSpecies: "Slowpoke",
forme: "Galar",
types: ["Psychic"],
baseStats: {hp: 90, atk: 65, def: 65, spa: 40, spd: 40, spe: 15},
abilities: {0: "Gluttony", 1: "Own Tempo", H: "Regenerator"},
heightm: 1.2,
weightkg: 36,
color: "Pink",
eggGroups: ["Monster", "Water 1"],
},
slowbro: {
num: 80,
name: "Slowbro",
types: ["Water", "Psychic"],
baseStats: {hp: 95, atk: 75, def: 110, spa: 100, spd: 80, spe: 30},
abilities: {0: "Oblivious", 1: "Own Tempo", H: "Regenerator"},
heightm: 1.6,
weightkg: 78.5,
color: "Pink",
prevo: "slowpoke",
evoLevel: 37,
eggGroups: ["Monster", "Water 1"],
otherFormes: ["slowbromega"],
},
slowbromega: {
num: 80,
name: "Slowbro-Mega",
baseSpecies: "Slowbro",
forme: "Mega",
types: ["Water", "Psychic"],
baseStats: {hp: 95, atk: 75, def: 180, spa: 130, spd: 80, spe: 30},
abilities: {0: "Shell Armor"},
heightm: 2,
weightkg: 120,
color: "Pink",
eggGroups: ["Monster", "Water 1"],
requiredItem: "Slowbronite",
},
magnemite: {
num: 81,
name: "Magnemite",
types: ["Electric", "Steel"],
gender: "N",
baseStats: {hp: 25, atk: 35, def: 70, spa: 95, spd: 55, spe: 45},
abilities: {0: "Magnet Pull", 1: "Sturdy", H: "Analytic"},
heightm: 0.3,
weightkg: 6,
color: "Gray",
evos: ["magneton"],
eggGroups: ["Mineral"],
},
magneton: {
num: 82,
name: "Magneton",
types: ["Electric", "Steel"],
gender: "N",
baseStats: {hp: 50, atk: 60, def: 95, spa: 120, spd: 70, spe: 70},
abilities: {0: "Magnet Pull", 1: "Sturdy", H: "Analytic"},
heightm: 1,
weightkg: 60,
color: "Gray",
prevo: "magnemite",
evoLevel: 30,
evos: ["magnezone"],
eggGroups: ["Mineral"],
},
farfetchd: {
num: 83,
name: "Farfetch'd",
types: ["Normal", "Flying"],
baseStats: {hp: 52, atk: 90, def: 55, spa: 58, spd: 62, spe: 60},
abilities: {0: "Keen Eye", 1: "Inner Focus", H: "Defiant"},
heightm: 0.8,
weightkg: 15,
color: "Brown",
eggGroups: ["Flying", "Field"],
otherFormes: ["farfetchdgalar"],
},
farfetchdgalar: {
num: 83,
name: "Farfetch'd-Galar",
baseSpecies: "Farfetch'd",
forme: "Galar",
types: ["Fighting"],
baseStats: {hp: 52, atk: 95, def: 55, spa: 58, spd: 62, spe: 55},
abilities: {0: "Steadfast", H: "Scrappy"},
heightm: 0.8,
weightkg: 15,
color: "Brown",
evos: ["sirfetchd"],
eggGroups: ["Flying", "Field"],
},
doduo: {
num: 84,
name: "Doduo",
types: ["Normal", "Flying"],
baseStats: {hp: 35, atk: 85, def: 45, spa: 35, spd: 35, spe: 75},
abilities: {0: "Run Away", 1: "Early Bird", H: "Tangled Feet"},
heightm: 1.4,
weightkg: 39.2,
color: "Brown",
evos: ["dodrio"],
eggGroups: ["Flying"],
},
dodrio: {
num: 85,
name: "Dodrio",
types: ["Normal", "Flying"],
baseStats: {hp: 60, atk: 110, def: 70, spa: 60, spd: 60, spe: 110},
abilities: {0: "Run Away", 1: "Early Bird", H: "Tangled Feet"},
heightm: 1.8,
weightkg: 85.2,
color: "Brown",
prevo: "doduo",
evoLevel: 31,
eggGroups: ["Flying"],
},
seel: {
num: 86,
name: "Seel",
types: ["Water"],
baseStats: {hp: 65, atk: 45, def: 55, spa: 45, spd: 70, spe: 45},
abilities: {0: "Thick Fat", 1: "Hydration", H: "Ice Body"},
heightm: 1.1,
weightkg: 90,
color: "White",
evos: ["dewgong"],
eggGroups: ["Water 1", "Field"],
},
dewgong: {
num: 87,
name: "Dewgong",
types: ["Water", "Ice"],
baseStats: {hp: 90, atk: 70, def: 80, spa: 70, spd: 95, spe: 70},
abilities: {0: "Thick Fat", 1: "Hydration", H: "Ice Body"},
heightm: 1.7,
weightkg: 120,
color: "White",
prevo: "seel",
evoLevel: 34,
eggGroups: ["Water 1", "Field"],
},
grimer: {
num: 88,
name: "Grimer",
types: ["Poison"],
baseStats: {hp: 80, atk: 80, def: 50, spa: 40, spd: 50, spe: 25},
abilities: {0: "Stench", 1: "Sticky Hold", H: "Poison Touch"},
heightm: 0.9,
weightkg: 30,
color: "Purple",
evos: ["muk"],
eggGroups: ["Amorphous"],
otherFormes: ["grimeralola"],
},
grimeralola: {
num: 88,
name: "Grimer-Alola",
baseSpecies: "Grimer",
forme: "Alola",
types: ["Poison", "Dark"],
baseStats: {hp: 80, atk: 80, def: 50, spa: 40, spd: 50, spe: 25},
abilities: {0: "Poison Touch", 1: "Gluttony", H: "Power of Alchemy"},
heightm: 0.7,
weightkg: 42,
color: "Green",
evos: ["mukalola"],
eggGroups: ["Amorphous"],
},
muk: {
num: 89,
name: "Muk",
types: ["Poison"],
baseStats: {hp: 105, atk: 105, def: 75, spa: 65, spd: 100, spe: 50},
abilities: {0: "Stench", 1: "Sticky Hold", H: "Poison Touch"},
heightm: 1.2,
weightkg: 30,
color: "Purple",
prevo: "grimer",
evoLevel: 38,
eggGroups: ["Amorphous"],
otherFormes: ["mukalola"],
},
mukalola: {
num: 89,
name: "Muk-Alola",
baseSpecies: "Muk",
forme: "Alola",
types: ["Poison", "Dark"],
baseStats: {hp: 105, atk: 105, def: 75, spa: 65, spd: 100, spe: 50},
abilities: {0: "Poison Touch", 1: "Gluttony", H: "Power of Alchemy"},
heightm: 1,
weightkg: 52,
color: "Green",
prevo: "grimeralola",
evoLevel: 38,
eggGroups: ["Amorphous"],
},
shellder: {
num: 90,
name: "Shellder",
types: ["Water"],
baseStats: {hp: 30, atk: 65, def: 100, spa: 45, spd: 25, spe: 40},
abilities: {0: "Shell Armor", 1: "Skill Link", H: "Overcoat"},
heightm: 0.3,
weightkg: 4,
color: "Purple",
evos: ["cloyster"],
eggGroups: ["Water 3"],
},
cloyster: {
num: 91,
name: "Cloyster",
types: ["Water", "Ice"],
baseStats: {hp: 50, atk: 95, def: 180, spa: 85, spd: 45, spe: 70},
abilities: {0: "Shell Armor", 1: "Skill Link", H: "Overcoat"},
heightm: 1.5,
weightkg: 132.5,
color: "Purple",
prevo: "shellder",
evoType: "useItem",
evoItem: "Water Stone",
eggGroups: ["Water 3"],
},
gastly: {
num: 92,
name: "Gastly",
types: ["Ghost", "Poison"],
baseStats: {hp: 30, atk: 35, def: 30, spa: 100, spd: 35, spe: 80},
abilities: {0: "Levitate"},
heightm: 1.3,
weightkg: 0.1,
color: "Purple",
evos: ["haunter"],
eggGroups: ["Amorphous"],
},
haunter: {
num: 93,
name: "Haunter",
types: ["Ghost", "Poison"],
baseStats: {hp: 45, atk: 50, def: 45, spa: 115, spd: 55, spe: 95},
abilities: {0: "Levitate"},
heightm: 1.6,
weightkg: 0.1,
color: "Purple",
prevo: "gastly",
evoLevel: 25,
evos: ["gengar"],
eggGroups: ["Amorphous"],
},
gengar: {
num: 94,
name: "Gengar",
types: ["Ghost", "Poison"],
baseStats: {hp: 60, atk: 65, def: 60, spa: 130, spd: 75, spe: 110},
abilities: {0: "Cursed Body"},
heightm: 1.5,
weightkg: 40.5,
color: "Purple",
prevo: "haunter",
evoType: "trade",
eggGroups: ["Amorphous"],
otherFormes: ["gengarmega", "gengargmax"],
},
gengarmega: {
num: 94,
name: "Gengar-Mega",
baseSpecies: "Gengar",
forme: "Mega",
types: ["Ghost", "Poison"],
baseStats: {hp: 60, atk: 65, def: 80, spa: 170, spd: 95, spe: 130},
abilities: {0: "Shadow Tag"},
heightm: 1.4,
weightkg: 40.5,
color: "Purple",
eggGroups: ["Amorphous"],
requiredItem: "Gengarite",
},
gengargmax: {
num: 94,
name: "Gengar-Gmax",
baseSpecies: "Gengar",
forme: "Gmax",
types: ["Ghost", "Poison"],
baseStats: {hp: 60, atk: 65, def: 60, spa: 130, spd: 75, spe: 110},
abilities: {0: "Cursed Body"},
heightm: 20,
weightkg: 0,
color: "Purple",
eggGroups: ["Amorphous"],
isGigantamax: "G-Max Terror",
},
onix: {
num: 95,
name: "Onix",
types: ["Rock", "Ground"],
baseStats: {hp: 35, atk: 45, def: 160, spa: 30, spd: 45, spe: 70},
abilities: {0: "Rock Head", 1: "Sturdy", H: "Weak Armor"},
heightm: 8.8,
weightkg: 210,
color: "Gray",
evos: ["steelix"],
eggGroups: ["Mineral"],
},
drowzee: {
num: 96,
name: "Drowzee",
types: ["Psychic"],
baseStats: {hp: 60, atk: 48, def: 45, spa: 43, spd: 90, spe: 42},
abilities: {0: "Insomnia", 1: "Forewarn", H: "Inner Focus"},
heightm: 1,
weightkg: 32.4,
color: "Yellow",
evos: ["hypno"],
eggGroups: ["Human-Like"],
},
hypno: {
num: 97,
name: "Hypno",
types: ["Psychic"],
baseStats: {hp: 85, atk: 73, def: 70, spa: 73, spd: 115, spe: 67},
abilities: {0: "Insomnia", 1: "Forewarn", H: "Inner Focus"},
heightm: 1.6,
weightkg: 75.6,
color: "Yellow",
prevo: "drowzee",
evoLevel: 26,
eggGroups: ["Human-Like"],
},
krabby: {
num: 98,
name: "Krabby",
types: ["Water"],
baseStats: {hp: 30, atk: 105, def: 90, spa: 25, spd: 25, spe: 50},
abilities: {0: "Hyper Cutter", 1: "Shell Armor", H: "Sheer Force"},
heightm: 0.4,
weightkg: 6.5,
color: "Red",
evos: ["kingler"],
eggGroups: ["Water 3"],
},
kingler: {
num: 99,
name: "Kingler",
types: ["Water"],
baseStats: {hp: 55, atk: 130, def: 115, spa: 50, spd: 50, spe: 75},
abilities: {0: "Hyper Cutter", 1: "Shell Armor", H: "Sheer Force"},
heightm: 1.3,
weightkg: 60,
color: "Red",
prevo: "krabby",
evoLevel: 28,
eggGroups: ["Water 3"],
otherFormes: ["kinglergmax"],
},
kinglergmax: {
num: 99,
name: "Kingler-Gmax",
baseSpecies: "Kingler",
forme: "Gmax",
types: ["Water"],
baseStats: {hp: 55, atk: 130, def: 115, spa: 50, spd: 50, spe: 75},
abilities: {0: "Hyper Cutter", 1: "Shell Armor", H: "Sheer Force"},
heightm: 19,
weightkg: 0,
color: "Red",
eggGroups: ["Water 3"],
isGigantamax: "G-Max Foam Burst",
},
voltorb: {
num: 100,
name: "Voltorb",
types: ["Electric"],
gender: "N",
baseStats: {hp: 40, atk: 30, def: 50, spa: 55, spd: 55, spe: 100},
abilities: {0: "Soundproof", 1: "Static", H: "Aftermath"},
heightm: 0.5,
weightkg: 10.4,
color: "Red",
evos: ["electrode"],
eggGroups: ["Mineral"],
},
electrode: {
num: 101,
name: "Electrode",
types: ["Electric"],
gender: "N",
baseStats: {hp: 60, atk: 50, def: 70, spa: 80, spd: 80, spe: 150},
abilities: {0: "Soundproof", 1: "Static", H: "Aftermath"},
heightm: 1.2,
weightkg: 66.6,
color: "Red",
prevo: "voltorb",
evoLevel: 30,
eggGroups: ["Mineral"],
},
exeggcute: {
num: 102,
name: "Exeggcute",
types: ["Grass", "Psychic"],
baseStats: {hp: 60, atk: 40, def: 80, spa: 60, spd: 45, spe: 40},
abilities: {0: "Chlorophyll", H: "Harvest"},
heightm: 0.4,
weightkg: 2.5,
color: "Pink",
evos: ["exeggutor", "exeggutoralola"],
eggGroups: ["Grass"],
},
exeggutor: {
num: 103,
name: "Exeggutor",
types: ["Grass", "Psychic"],
baseStats: {hp: 95, atk: 95, def: 85, spa: 125, spd: 75, spe: 55},
abilities: {0: "Chlorophyll", H: "Harvest"},
heightm: 2,
weightkg: 120,
color: "Yellow",
prevo: "exeggcute",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Grass"],
otherFormes: ["exeggutoralola"],
},
exeggutoralola: {
num: 103,
name: "Exeggutor-Alola",
baseSpecies: "Exeggutor",
forme: "Alola",
types: ["Grass", "Dragon"],
baseStats: {hp: 95, atk: 105, def: 85, spa: 125, spd: 75, spe: 45},
abilities: {0: "Frisk", H: "Harvest"},
heightm: 10.9,
weightkg: 415.6,
color: "Yellow",
prevo: "exeggcute",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Grass"],
},
cubone: {
num: 104,
name: "Cubone",
types: ["Ground"],
baseStats: {hp: 50, atk: 50, def: 95, spa: 40, spd: 50, spe: 35},
abilities: {0: "Rock Head", 1: "Lightning Rod", H: "Battle Armor"},
heightm: 0.4,
weightkg: 6.5,
color: "Brown",
evos: ["marowak", "marowakalola"],
eggGroups: ["Monster"],
},
marowak: {
num: 105,
name: "Marowak",
types: ["Ground"],
baseStats: {hp: 60, atk: 80, def: 110, spa: 50, spd: 80, spe: 45},
abilities: {0: "Rock Head", 1: "Lightning Rod", H: "Battle Armor"},
heightm: 1,
weightkg: 45,
color: "Brown",
prevo: "cubone",
evoLevel: 28,
eggGroups: ["Monster"],
otherFormes: ["marowakalola", "marowakalolatotem"],
},
marowakalola: {
num: 105,
name: "Marowak-Alola",
baseSpecies: "Marowak",
forme: "Alola",
types: ["Fire", "Ghost"],
baseStats: {hp: 60, atk: 80, def: 110, spa: 50, spd: 80, spe: 45},
abilities: {0: "Cursed Body", 1: "Lightning Rod", H: "Rock Head"},
heightm: 1,
weightkg: 34,
color: "Purple",
prevo: "cubone",
evoLevel: 28,
eggGroups: ["Monster"],
},
marowakalolatotem: {
num: 105,
name: "Marowak-Alola-Totem",
baseSpecies: "Marowak",
forme: "Alola-Totem",
types: ["Fire", "Ghost"],
baseStats: {hp: 60, atk: 80, def: 110, spa: 50, spd: 80, spe: 45},
abilities: {0: "Rock Head"},
heightm: 1.7,
weightkg: 98,
color: "Purple",
eggGroups: ["Monster"],
},
hitmonlee: {
num: 106,
name: "Hitmonlee",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 50, atk: 120, def: 53, spa: 35, spd: 110, spe: 87},
abilities: {0: "Limber", 1: "Reckless", H: "Unburden"},
heightm: 1.5,
weightkg: 49.8,
color: "Brown",
prevo: "tyrogue",
evoLevel: 20,
eggGroups: ["Human-Like"],
},
hitmonchan: {
num: 107,
name: "Hitmonchan",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 50, atk: 105, def: 79, spa: 35, spd: 110, spe: 76},
abilities: {0: "Keen Eye", 1: "Iron Fist", H: "Inner Focus"},
heightm: 1.4,
weightkg: 50.2,
color: "Brown",
prevo: "tyrogue",
evoLevel: 20,
eggGroups: ["Human-Like"],
},
lickitung: {
num: 108,
name: "Lickitung",
types: ["Normal"],
baseStats: {hp: 90, atk: 55, def: 75, spa: 60, spd: 75, spe: 30},
abilities: {0: "Own Tempo", 1: "Oblivious", H: "Cloud Nine"},
heightm: 1.2,
weightkg: 65.5,
color: "Pink",
evos: ["lickilicky"],
eggGroups: ["Monster"],
},
koffing: {
num: 109,
name: "Koffing",
types: ["Poison"],
baseStats: {hp: 40, atk: 65, def: 95, spa: 60, spd: 45, spe: 35},
abilities: {0: "Levitate", 1: "Neutralizing Gas", H: "Stench"},
heightm: 0.6,
weightkg: 1,
color: "Purple",
evos: ["weezing", "weezinggalar"],
eggGroups: ["Amorphous"],
},
weezing: {
num: 110,
name: "Weezing",
types: ["Poison"],
baseStats: {hp: 65, atk: 90, def: 120, spa: 85, spd: 70, spe: 60},
abilities: {0: "Levitate", 1: "Neutralizing Gas", H: "Stench"},
heightm: 1.2,
weightkg: 9.5,
color: "Purple",
prevo: "koffing",
evoLevel: 35,
eggGroups: ["Amorphous"],
otherFormes: ["Weezing-Galar"],
},
weezinggalar: {
num: 110,
name: "Weezing-Galar",
baseSpecies: "Weezing",
forme: "Galar",
types: ["Poison", "Fairy"],
baseStats: {hp: 65, atk: 90, def: 120, spa: 85, spd: 70, spe: 60},
abilities: {0: "Levitate", 1: "Neutralizing Gas", H: "Misty Surge"},
heightm: 3,
weightkg: 16,
color: "Gray",
prevo: "koffing",
evoLevel: 35,
eggGroups: ["Amorphous"],
},
rhyhorn: {
num: 111,
name: "Rhyhorn",
types: ["Ground", "Rock"],
baseStats: {hp: 80, atk: 85, def: 95, spa: 30, spd: 30, spe: 25},
abilities: {0: "Lightning Rod", 1: "Rock Head", H: "Reckless"},
heightm: 1,
weightkg: 115,
color: "Gray",
evos: ["rhydon"],
eggGroups: ["Monster", "Field"],
},
rhydon: {
num: 112,
name: "Rhydon",
types: ["Ground", "Rock"],
baseStats: {hp: 105, atk: 130, def: 120, spa: 45, spd: 45, spe: 40},
abilities: {0: "Lightning Rod", 1: "Rock Head", H: "Reckless"},
heightm: 1.9,
weightkg: 120,
color: "Gray",
prevo: "rhyhorn",
evoLevel: 42,
evos: ["rhyperior"],
eggGroups: ["Monster", "Field"],
},
chansey: {
num: 113,
name: "Chansey",
types: ["Normal"],
gender: "F",
baseStats: {hp: 250, atk: 5, def: 5, spa: 35, spd: 105, spe: 50},
abilities: {0: "Natural Cure", 1: "Serene Grace", H: "Healer"},
heightm: 1.1,
weightkg: 34.6,
color: "Pink",
prevo: "happiny",
evoType: "levelHold",
evoItem: "Oval Stone",
evoCondition: "during the day",
evos: ["blissey"],
eggGroups: ["Fairy"],
canHatch: true,
},
tangela: {
num: 114,
name: "Tangela",
types: ["Grass"],
baseStats: {hp: 65, atk: 55, def: 115, spa: 100, spd: 40, spe: 60},
abilities: {0: "Chlorophyll", 1: "Leaf Guard", H: "Regenerator"},
heightm: 1,
weightkg: 35,
color: "Blue",
evos: ["tangrowth"],
eggGroups: ["Grass"],
},
kangaskhan: {
num: 115,
name: "Kangaskhan",
types: ["Normal"],
gender: "F",
baseStats: {hp: 105, atk: 95, def: 80, spa: 40, spd: 80, spe: 90},
abilities: {0: "Early Bird", 1: "Scrappy", H: "Inner Focus"},
heightm: 2.2,
weightkg: 80,
color: "Brown",
eggGroups: ["Monster"],
otherFormes: ["kangaskhanmega"],
},
kangaskhanmega: {
num: 115,
name: "Kangaskhan-Mega",
baseSpecies: "Kangaskhan",
forme: "Mega",
types: ["Normal"],
gender: "F",
baseStats: {hp: 105, atk: 125, def: 100, spa: 60, spd: 100, spe: 100},
abilities: {0: "Parental Bond"},
heightm: 2.2,
weightkg: 100,
color: "Brown",
eggGroups: ["Monster"],
requiredItem: "Kangaskhanite",
},
horsea: {
num: 116,
name: "Horsea",
types: ["Water"],
baseStats: {hp: 30, atk: 40, def: 70, spa: 70, spd: 25, spe: 60},
abilities: {0: "Swift Swim", 1: "Sniper", H: "Damp"},
heightm: 0.4,
weightkg: 8,
color: "Blue",
evos: ["seadra"],
eggGroups: ["Water 1", "Dragon"],
},
seadra: {
num: 117,
name: "Seadra",
types: ["Water"],
baseStats: {hp: 55, atk: 65, def: 95, spa: 95, spd: 45, spe: 85},
abilities: {0: "Poison Point", 1: "Sniper", H: "Damp"},
heightm: 1.2,
weightkg: 25,
color: "Blue",
prevo: "horsea",
evoLevel: 32,
evos: ["kingdra"],
eggGroups: ["Water 1", "Dragon"],
},
goldeen: {
num: 118,
name: "Goldeen",
types: ["Water"],
baseStats: {hp: 45, atk: 67, def: 60, spa: 35, spd: 50, spe: 63},
abilities: {0: "Swift Swim", 1: "Water Veil", H: "Lightning Rod"},
heightm: 0.6,
weightkg: 15,
color: "Red",
evos: ["seaking"],
eggGroups: ["Water 2"],
},
seaking: {
num: 119,
name: "Seaking",
types: ["Water"],
baseStats: {hp: 80, atk: 92, def: 65, spa: 65, spd: 80, spe: 68},
abilities: {0: "Swift Swim", 1: "Water Veil", H: "Lightning Rod"},
heightm: 1.3,
weightkg: 39,
color: "Red",
prevo: "goldeen",
evoLevel: 33,
eggGroups: ["Water 2"],
},
staryu: {
num: 120,
name: "Staryu",
types: ["Water"],
gender: "N",
baseStats: {hp: 30, atk: 45, def: 55, spa: 70, spd: 55, spe: 85},
abilities: {0: "Illuminate", 1: "Natural Cure", H: "Analytic"},
heightm: 0.8,
weightkg: 34.5,
color: "Brown",
evos: ["starmie"],
eggGroups: ["Water 3"],
},
starmie: {
num: 121,
name: "Starmie",
types: ["Water", "Psychic"],
gender: "N",
baseStats: {hp: 60, atk: 75, def: 85, spa: 100, spd: 85, spe: 115},
abilities: {0: "Illuminate", 1: "Natural Cure", H: "Analytic"},
heightm: 1.1,
weightkg: 80,
color: "Purple",
prevo: "staryu",
evoType: "useItem",
evoItem: "Water Stone",
eggGroups: ["Water 3"],
},
mrmime: {
num: 122,
name: "Mr. Mime",
types: ["Psychic", "Fairy"],
baseStats: {hp: 40, atk: 45, def: 65, spa: 100, spd: 120, spe: 90},
abilities: {0: "Soundproof", 1: "Filter", H: "Technician"},
heightm: 1.3,
weightkg: 54.5,
color: "Pink",
prevo: "mimejr",
evoType: "levelMove",
evoMove: "Mimic",
eggGroups: ["Human-Like"],
canHatch: true,
otherFormes: ["mrmimegalar"],
},
mrmimegalar: {
num: 122,
name: "Mr. Mime-Galar",
baseSpecies: "Mr. Mime",
forme: "Galar",
types: ["Ice", "Psychic"],
baseStats: {hp: 50, atk: 65, def: 65, spa: 90, spd: 90, spe: 100},
abilities: {0: "Vital Spirit", 1: "Screen Cleaner", H: "Ice Body"},
heightm: 1.4,
weightkg: 56.8,
color: "White",
prevo: "mimejr",
evoType: "levelMove",
evoMove: "Mimic",
evos: ["mrrime"],
eggGroups: ["Human-Like"],
canHatch: true,
},
scyther: {
num: 123,
name: "Scyther",
types: ["Bug", "Flying"],
baseStats: {hp: 70, atk: 110, def: 80, spa: 55, spd: 80, spe: 105},
abilities: {0: "Swarm", 1: "Technician", H: "Steadfast"},
heightm: 1.5,
weightkg: 56,
color: "Green",
evos: ["scizor"],
eggGroups: ["Bug"],
},
jynx: {
num: 124,
name: "Jynx",
types: ["Ice", "Psychic"],
gender: "F",
baseStats: {hp: 65, atk: 50, def: 35, spa: 115, spd: 95, spe: 95},
abilities: {0: "Oblivious", 1: "Forewarn", H: "Dry Skin"},
heightm: 1.4,
weightkg: 40.6,
color: "Red",
prevo: "smoochum",
evoLevel: 30,
eggGroups: ["Human-Like"],
},
electabuzz: {
num: 125,
name: "Electabuzz",
types: ["Electric"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 65, atk: 83, def: 57, spa: 95, spd: 85, spe: 105},
abilities: {0: "Static", H: "Vital Spirit"},
heightm: 1.1,
weightkg: 30,
color: "Yellow",
prevo: "elekid",
evoLevel: 30,
evos: ["electivire"],
eggGroups: ["Human-Like"],
},
magmar: {
num: 126,
name: "Magmar",
types: ["Fire"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 65, atk: 95, def: 57, spa: 100, spd: 85, spe: 93},
abilities: {0: "Flame Body", H: "Vital Spirit"},
heightm: 1.3,
weightkg: 44.5,
color: "Red",
prevo: "magby",
evoLevel: 30,
evos: ["magmortar"],
eggGroups: ["Human-Like"],
},
pinsir: {
num: 127,
name: "Pinsir",
types: ["Bug"],
baseStats: {hp: 65, atk: 125, def: 100, spa: 55, spd: 70, spe: 85},
abilities: {0: "Hyper Cutter", 1: "Mold Breaker", H: "Moxie"},
heightm: 1.5,
weightkg: 55,
color: "Brown",
eggGroups: ["Bug"],
otherFormes: ["pinsirmega"],
},
pinsirmega: {
num: 127,
name: "Pinsir-Mega",
baseSpecies: "Pinsir",
forme: "Mega",
types: ["Bug", "Flying"],
baseStats: {hp: 65, atk: 155, def: 120, spa: 65, spd: 90, spe: 105},
abilities: {0: "Aerilate"},
heightm: 1.7,
weightkg: 59,
color: "Brown",
eggGroups: ["Bug"],
requiredItem: "Pinsirite",
},
tauros: {
num: 128,
name: "Tauros",
types: ["Normal"],
gender: "M",
baseStats: {hp: 75, atk: 100, def: 95, spa: 40, spd: 70, spe: 110},
abilities: {0: "Intimidate", 1: "Anger Point", H: "Sheer Force"},
heightm: 1.4,
weightkg: 88.4,
color: "Brown",
eggGroups: ["Field"],
},
magikarp: {
num: 129,
name: "Magikarp",
types: ["Water"],
baseStats: {hp: 20, atk: 10, def: 55, spa: 15, spd: 20, spe: 80},
abilities: {0: "Swift Swim", H: "Rattled"},
heightm: 0.9,
weightkg: 10,
color: "Red",
evos: ["gyarados"],
eggGroups: ["Water 2", "Dragon"],
},
gyarados: {
num: 130,
name: "Gyarados",
types: ["Water", "Flying"],
baseStats: {hp: 95, atk: 125, def: 79, spa: 60, spd: 100, spe: 81},
abilities: {0: "Intimidate", H: "Moxie"},
heightm: 6.5,
weightkg: 235,
color: "Blue",
prevo: "magikarp",
evoLevel: 20,
eggGroups: ["Water 2", "Dragon"],
otherFormes: ["gyaradosmega"],
},
gyaradosmega: {
num: 130,
name: "Gyarados-Mega",
baseSpecies: "Gyarados",
forme: "Mega",
types: ["Water", "Dark"],
baseStats: {hp: 95, atk: 155, def: 109, spa: 70, spd: 130, spe: 81},
abilities: {0: "Mold Breaker"},
heightm: 6.5,
weightkg: 305,
color: "Blue",
eggGroups: ["Water 2", "Dragon"],
requiredItem: "Gyaradosite",
},
lapras: {
num: 131,
name: "Lapras",
types: ["Water", "Ice"],
baseStats: {hp: 130, atk: 85, def: 80, spa: 85, spd: 95, spe: 60},
abilities: {0: "Water Absorb", 1: "Shell Armor", H: "Hydration"},
heightm: 2.5,
weightkg: 220,
color: "Blue",
eggGroups: ["Monster", "Water 1"],
otherFormes: ["laprasgmax"],
},
laprasgmax: {
num: 131,
name: "Lapras-Gmax",
baseSpecies: "Lapras",
forme: "Gmax",
types: ["Water", "Ice"],
baseStats: {hp: 130, atk: 85, def: 80, spa: 85, spd: 95, spe: 60},
abilities: {0: "Water Absorb", 1: "Shell Armor", H: "Hydration"},
heightm: 24,
weightkg: 0,
color: "Blue",
eggGroups: ["Monster", "Water 1"],
isGigantamax: "G-Max Resonance",
},
ditto: {
num: 132,
name: "Ditto",
types: ["Normal"],
gender: "N",
baseStats: {hp: 48, atk: 48, def: 48, spa: 48, spd: 48, spe: 48},
abilities: {0: "Limber", H: "Imposter"},
heightm: 0.3,
weightkg: 4,
color: "Purple",
eggGroups: ["Ditto"],
},
eevee: {
num: 133,
name: "Eevee",
types: ["Normal"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 55, atk: 55, def: 50, spa: 45, spd: 65, spe: 55},
abilities: {0: "Run Away", 1: "Adaptability", H: "Anticipation"},
heightm: 0.3,
weightkg: 6.5,
color: "Brown",
evos: ["vaporeon", "jolteon", "flareon", "espeon", "umbreon", "leafeon", "glaceon", "sylveon"],
eggGroups: ["Field"],
otherFormes: ["eeveestarter", "eeveegmax"],
},
eeveestarter: {
num: 133,
name: "Eevee-Starter",
baseSpecies: "Eevee",
forme: "Starter",
types: ["Normal"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 75, def: 70, spa: 65, spd: 85, spe: 75},
abilities: {0: "Run Away", 1: "Adaptability", H: "Anticipation"},
heightm: 0.3,
weightkg: 6.5,
color: "Brown",
eggGroups: ["Undiscovered"],
},
eeveegmax: {
num: 133,
name: "Eevee-Gmax",
baseSpecies: "Eevee",
forme: "Gmax",
types: ["Normal"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 55, atk: 55, def: 50, spa: 45, spd: 65, spe: 55},
abilities: {0: "Run Away", 1: "Adaptability", H: "Anticipation"},
heightm: 18,
weightkg: 0,
color: "Brown",
eggGroups: ["Field"],
isGigantamax: "G-Max Cuddle",
},
vaporeon: {
num: 134,
name: "Vaporeon",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 130, atk: 65, def: 60, spa: 110, spd: 95, spe: 65},
abilities: {0: "Water Absorb", H: "Hydration"},
heightm: 1,
weightkg: 29,
color: "Blue",
prevo: "eevee",
evoType: "useItem",
evoItem: "Water Stone",
eggGroups: ["Field"],
},
jolteon: {
num: 135,
name: "Jolteon",
types: ["Electric"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 65, def: 60, spa: 110, spd: 95, spe: 130},
abilities: {0: "Volt Absorb", H: "Quick Feet"},
heightm: 0.8,
weightkg: 24.5,
color: "Yellow",
prevo: "eevee",
evoType: "useItem",
evoItem: "Thunder Stone",
eggGroups: ["Field"],
},
flareon: {
num: 136,
name: "Flareon",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 130, def: 60, spa: 95, spd: 110, spe: 65},
abilities: {0: "Flash Fire", H: "Guts"},
heightm: 0.9,
weightkg: 25,
color: "Red",
prevo: "eevee",
evoType: "useItem",
evoItem: "Fire Stone",
eggGroups: ["Field"],
},
porygon: {
num: 137,
name: "Porygon",
types: ["Normal"],
gender: "N",
baseStats: {hp: 65, atk: 60, def: 70, spa: 85, spd: 75, spe: 40},
abilities: {0: "Trace", 1: "Download", H: "Analytic"},
heightm: 0.8,
weightkg: 36.5,
color: "Pink",
evos: ["porygon2"],
eggGroups: ["Mineral"],
},
omanyte: {
num: 138,
name: "Omanyte",
types: ["Rock", "Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 35, atk: 40, def: 100, spa: 90, spd: 55, spe: 35},
abilities: {0: "Swift Swim", 1: "Shell Armor", H: "Weak Armor"},
heightm: 0.4,
weightkg: 7.5,
color: "Blue",
evos: ["omastar"],
eggGroups: ["Water 1", "Water 3"],
},
omastar: {
num: 139,
name: "Omastar",
types: ["Rock", "Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 60, def: 125, spa: 115, spd: 70, spe: 55},
abilities: {0: "Swift Swim", 1: "Shell Armor", H: "Weak Armor"},
heightm: 1,
weightkg: 35,
color: "Blue",
prevo: "omanyte",
evoLevel: 40,
eggGroups: ["Water 1", "Water 3"],
},
kabuto: {
num: 140,
name: "Kabuto",
types: ["Rock", "Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 30, atk: 80, def: 90, spa: 55, spd: 45, spe: 55},
abilities: {0: "Swift Swim", 1: "Battle Armor", H: "Weak Armor"},
heightm: 0.5,
weightkg: 11.5,
color: "Brown",
evos: ["kabutops"],
eggGroups: ["Water 1", "Water 3"],
},
kabutops: {
num: 141,
name: "Kabutops",
types: ["Rock", "Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 115, def: 105, spa: 65, spd: 70, spe: 80},
abilities: {0: "Swift Swim", 1: "Battle Armor", H: "Weak Armor"},
heightm: 1.3,
weightkg: 40.5,
color: "Brown",
prevo: "kabuto",
evoLevel: 40,
eggGroups: ["Water 1", "Water 3"],
},
aerodactyl: {
num: 142,
name: "Aerodactyl",
types: ["Rock", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 105, def: 65, spa: 60, spd: 75, spe: 130},
abilities: {0: "Rock Head", 1: "Pressure", H: "Unnerve"},
heightm: 1.8,
weightkg: 59,
color: "Purple",
eggGroups: ["Flying"],
otherFormes: ["aerodactylmega"],
},
aerodactylmega: {
num: 142,
name: "Aerodactyl-Mega",
baseSpecies: "Aerodactyl",
forme: "Mega",
types: ["Rock", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 135, def: 85, spa: 70, spd: 95, spe: 150},
abilities: {0: "Tough Claws"},
heightm: 2.1,
weightkg: 79,
color: "Purple",
eggGroups: ["Flying"],
requiredItem: "Aerodactylite",
},
snorlax: {
num: 143,
name: "Snorlax",
types: ["Normal"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 160, atk: 110, def: 65, spa: 65, spd: 110, spe: 30},
abilities: {0: "Immunity", 1: "Thick Fat", H: "Gluttony"},
heightm: 2.1,
weightkg: 460,
color: "Black",
prevo: "munchlax",
evoType: "levelFriendship",
eggGroups: ["Monster"],
canHatch: true,
otherFormes: ["snorlaxgmax"],
},
snorlaxgmax: {
num: 143,
name: "Snorlax-Gmax",
baseSpecies: "Snorlax",
forme: "Gmax",
types: ["Normal"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 160, atk: 110, def: 65, spa: 65, spd: 110, spe: 30},
abilities: {0: "Immunity", 1: "Thick Fat", H: "Gluttony"},
heightm: 35,
weightkg: 0,
color: "Black",
eggGroups: ["Monster"],
isGigantamax: "G-Max Replenish",
},
articuno: {
num: 144,
name: "Articuno",
types: ["Ice", "Flying"],
gender: "N",
baseStats: {hp: 90, atk: 85, def: 100, spa: 95, spd: 125, spe: 85},
abilities: {0: "Pressure", H: "Snow Cloak"},
heightm: 1.7,
weightkg: 55.4,
color: "Blue",
eggGroups: ["Undiscovered"],
},
zapdos: {
num: 145,
name: "Zapdos",
types: ["Electric", "Flying"],
gender: "N",
baseStats: {hp: 90, atk: 90, def: 85, spa: 125, spd: 90, spe: 100},
abilities: {0: "Pressure", H: "Static"},
heightm: 1.6,
weightkg: 52.6,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
moltres: {
num: 146,
name: "Moltres",
types: ["Fire", "Flying"],
gender: "N",
baseStats: {hp: 90, atk: 100, def: 90, spa: 125, spd: 85, spe: 90},
abilities: {0: "Pressure", H: "Flame Body"},
heightm: 2,
weightkg: 60,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
dratini: {
num: 147,
name: "Dratini",
types: ["Dragon"],
baseStats: {hp: 41, atk: 64, def: 45, spa: 50, spd: 50, spe: 50},
abilities: {0: "Shed Skin", H: "Marvel Scale"},
heightm: 1.8,
weightkg: 3.3,
color: "Blue",
evos: ["dragonair"],
eggGroups: ["Water 1", "Dragon"],
},
dragonair: {
num: 148,
name: "Dragonair",
types: ["Dragon"],
baseStats: {hp: 61, atk: 84, def: 65, spa: 70, spd: 70, spe: 70},
abilities: {0: "Shed Skin", H: "Marvel Scale"},
heightm: 4,
weightkg: 16.5,
color: "Blue",
prevo: "dratini",
evoLevel: 30,
evos: ["dragonite"],
eggGroups: ["Water 1", "Dragon"],
},
dragonite: {
num: 149,
name: "Dragonite",
types: ["Dragon", "Flying"],
baseStats: {hp: 91, atk: 134, def: 95, spa: 100, spd: 100, spe: 80},
abilities: {0: "Inner Focus", H: "Multiscale"},
heightm: 2.2,
weightkg: 210,
color: "Brown",
prevo: "dragonair",
evoLevel: 55,
eggGroups: ["Water 1", "Dragon"],
},
mewtwo: {
num: 150,
name: "Mewtwo",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 106, atk: 110, def: 90, spa: 154, spd: 90, spe: 130},
abilities: {0: "Pressure", H: "Unnerve"},
heightm: 2,
weightkg: 122,
color: "Purple",
eggGroups: ["Undiscovered"],
otherFormes: ["mewtwomegax", "mewtwomegay"],
},
mewtwomegax: {
num: 150,
name: "Mewtwo-Mega-X",
baseSpecies: "Mewtwo",
forme: "Mega-X",
types: ["Psychic", "Fighting"],
gender: "N",
baseStats: {hp: 106, atk: 190, def: 100, spa: 154, spd: 100, spe: 130},
abilities: {0: "Steadfast"},
heightm: 2.3,
weightkg: 127,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Mewtwonite X",
},
mewtwomegay: {
num: 150,
name: "Mewtwo-Mega-Y",
baseSpecies: "Mewtwo",
forme: "Mega-Y",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 106, atk: 150, def: 70, spa: 194, spd: 120, spe: 140},
abilities: {0: "Insomnia"},
heightm: 1.5,
weightkg: 33,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Mewtwonite Y",
},
mew: {
num: 151,
name: "Mew",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Synchronize"},
heightm: 0.4,
weightkg: 4,
color: "Pink",
eggGroups: ["Undiscovered"],
},
chikorita: {
num: 152,
name: "Chikorita",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 45, atk: 49, def: 65, spa: 49, spd: 65, spe: 45},
abilities: {0: "Overgrow", H: "Leaf Guard"},
heightm: 0.9,
weightkg: 6.4,
color: "Green",
evos: ["bayleef"],
eggGroups: ["Monster", "Grass"],
},
bayleef: {
num: 153,
name: "Bayleef",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 62, def: 80, spa: 63, spd: 80, spe: 60},
abilities: {0: "Overgrow", H: "Leaf Guard"},
heightm: 1.2,
weightkg: 15.8,
color: "Green",
prevo: "chikorita",
evoLevel: 16,
evos: ["meganium"],
eggGroups: ["Monster", "Grass"],
},
meganium: {
num: 154,
name: "Meganium",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 82, def: 100, spa: 83, spd: 100, spe: 80},
abilities: {0: "Overgrow", H: "Leaf Guard"},
heightm: 1.8,
weightkg: 100.5,
color: "Green",
prevo: "bayleef",
evoLevel: 32,
eggGroups: ["Monster", "Grass"],
},
cyndaquil: {
num: 155,
name: "Cyndaquil",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 39, atk: 52, def: 43, spa: 60, spd: 50, spe: 65},
abilities: {0: "Blaze", H: "Flash Fire"},
heightm: 0.5,
weightkg: 7.9,
color: "Yellow",
evos: ["quilava"],
eggGroups: ["Field"],
},
quilava: {
num: 156,
name: "Quilava",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 58, atk: 64, def: 58, spa: 80, spd: 65, spe: 80},
abilities: {0: "Blaze", H: "Flash Fire"},
heightm: 0.9,
weightkg: 19,
color: "Yellow",
prevo: "cyndaquil",
evoLevel: 14,
evos: ["typhlosion"],
eggGroups: ["Field"],
},
typhlosion: {
num: 157,
name: "Typhlosion",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 84, def: 78, spa: 109, spd: 85, spe: 100},
abilities: {0: "Blaze", H: "Flash Fire"},
heightm: 1.7,
weightkg: 79.5,
color: "Yellow",
prevo: "quilava",
evoLevel: 36,
eggGroups: ["Field"],
},
totodile: {
num: 158,
name: "Totodile",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 65, def: 64, spa: 44, spd: 48, spe: 43},
abilities: {0: "Torrent", H: "Sheer Force"},
heightm: 0.6,
weightkg: 9.5,
color: "Blue",
evos: ["croconaw"],
eggGroups: ["Monster", "Water 1"],
},
croconaw: {
num: 159,
name: "Croconaw",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 80, def: 80, spa: 59, spd: 63, spe: 58},
abilities: {0: "Torrent", H: "Sheer Force"},
heightm: 1.1,
weightkg: 25,
color: "Blue",
prevo: "totodile",
evoLevel: 18,
evos: ["feraligatr"],
eggGroups: ["Monster", "Water 1"],
},
feraligatr: {
num: 160,
name: "Feraligatr",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 85, atk: 105, def: 100, spa: 79, spd: 83, spe: 78},
abilities: {0: "Torrent", H: "Sheer Force"},
heightm: 2.3,
weightkg: 88.8,
color: "Blue",
prevo: "croconaw",
evoLevel: 30,
eggGroups: ["Monster", "Water 1"],
},
sentret: {
num: 161,
name: "Sentret",
types: ["Normal"],
baseStats: {hp: 35, atk: 46, def: 34, spa: 35, spd: 45, spe: 20},
abilities: {0: "Run Away", 1: "Keen Eye", H: "Frisk"},
heightm: 0.8,
weightkg: 6,
color: "Brown",
evos: ["furret"],
eggGroups: ["Field"],
},
furret: {
num: 162,
name: "Furret",
types: ["Normal"],
baseStats: {hp: 85, atk: 76, def: 64, spa: 45, spd: 55, spe: 90},
abilities: {0: "Run Away", 1: "Keen Eye", H: "Frisk"},
heightm: 1.8,
weightkg: 32.5,
color: "Brown",
prevo: "sentret",
evoLevel: 15,
eggGroups: ["Field"],
},
hoothoot: {
num: 163,
name: "Hoothoot",
types: ["Normal", "Flying"],
baseStats: {hp: 60, atk: 30, def: 30, spa: 36, spd: 56, spe: 50},
abilities: {0: "Insomnia", 1: "Keen Eye", H: "Tinted Lens"},
heightm: 0.7,
weightkg: 21.2,
color: "Brown",
evos: ["noctowl"],
eggGroups: ["Flying"],
},
noctowl: {
num: 164,
name: "Noctowl",
types: ["Normal", "Flying"],
baseStats: {hp: 100, atk: 50, def: 50, spa: 86, spd: 96, spe: 70},
abilities: {0: "Insomnia", 1: "Keen Eye", H: "Tinted Lens"},
heightm: 1.6,
weightkg: 40.8,
color: "Brown",
prevo: "hoothoot",
evoLevel: 20,
eggGroups: ["Flying"],
},
ledyba: {
num: 165,
name: "Ledyba",
types: ["Bug", "Flying"],
baseStats: {hp: 40, atk: 20, def: 30, spa: 40, spd: 80, spe: 55},
abilities: {0: "Swarm", 1: "Early Bird", H: "Rattled"},
heightm: 1,
weightkg: 10.8,
color: "Red",
evos: ["ledian"],
eggGroups: ["Bug"],
},
ledian: {
num: 166,
name: "Ledian",
types: ["Bug", "Flying"],
baseStats: {hp: 55, atk: 35, def: 50, spa: 55, spd: 110, spe: 85},
abilities: {0: "Swarm", 1: "Early Bird", H: "Iron Fist"},
heightm: 1.4,
weightkg: 35.6,
color: "Red",
prevo: "ledyba",
evoLevel: 18,
eggGroups: ["Bug"],
},
spinarak: {
num: 167,
name: "Spinarak",
types: ["Bug", "Poison"],
baseStats: {hp: 40, atk: 60, def: 40, spa: 40, spd: 40, spe: 30},
abilities: {0: "Swarm", 1: "Insomnia", H: "Sniper"},
heightm: 0.5,
weightkg: 8.5,
color: "Green",
evos: ["ariados"],
eggGroups: ["Bug"],
},
ariados: {
num: 168,
name: "Ariados",
types: ["Bug", "Poison"],
baseStats: {hp: 70, atk: 90, def: 70, spa: 60, spd: 70, spe: 40},
abilities: {0: "Swarm", 1: "Insomnia", H: "Sniper"},
heightm: 1.1,
weightkg: 33.5,
color: "Red",
prevo: "spinarak",
evoLevel: 22,
eggGroups: ["Bug"],
},
crobat: {
num: 169,
name: "Crobat",
types: ["Poison", "Flying"],
baseStats: {hp: 85, atk: 90, def: 80, spa: 70, spd: 80, spe: 130},
abilities: {0: "Inner Focus", H: "Infiltrator"},
heightm: 1.8,
weightkg: 75,
color: "Purple",
prevo: "golbat",
evoType: "levelFriendship",
eggGroups: ["Flying"],
},
chinchou: {
num: 170,
name: "Chinchou",
types: ["Water", "Electric"],
baseStats: {hp: 75, atk: 38, def: 38, spa: 56, spd: 56, spe: 67},
abilities: {0: "Volt Absorb", 1: "Illuminate", H: "Water Absorb"},
heightm: 0.5,
weightkg: 12,
color: "Blue",
evos: ["lanturn"],
eggGroups: ["Water 2"],
},
lanturn: {
num: 171,
name: "Lanturn",
types: ["Water", "Electric"],
baseStats: {hp: 125, atk: 58, def: 58, spa: 76, spd: 76, spe: 67},
abilities: {0: "Volt Absorb", 1: "Illuminate", H: "Water Absorb"},
heightm: 1.2,
weightkg: 22.5,
color: "Blue",
prevo: "chinchou",
evoLevel: 27,
eggGroups: ["Water 2"],
},
pichu: {
num: 172,
name: "Pichu",
types: ["Electric"],
baseStats: {hp: 20, atk: 40, def: 15, spa: 35, spd: 35, spe: 60},
abilities: {0: "Static", H: "Lightning Rod"},
heightm: 0.3,
weightkg: 2,
color: "Yellow",
evos: ["pikachu"],
eggGroups: ["Undiscovered"],
canHatch: true,
otherFormes: ["pichuspikyeared"],
},
pichuspikyeared: {
num: 172,
name: "Pichu-Spiky-eared",
baseSpecies: "Pichu",
forme: "Spiky-eared",
types: ["Electric"],
baseStats: {hp: 20, atk: 40, def: 15, spa: 35, spd: 35, spe: 60},
abilities: {0: "Static"},
heightm: 0.3,
weightkg: 2,
color: "Yellow",
eggGroups: ["Undiscovered"],
gen: 4,
},
cleffa: {
num: 173,
name: "Cleffa",
types: ["Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 50, atk: 25, def: 28, spa: 45, spd: 55, spe: 15},
abilities: {0: "Cute Charm", 1: "Magic Guard", H: "Friend Guard"},
heightm: 0.3,
weightkg: 3,
color: "Pink",
evos: ["clefairy"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
igglybuff: {
num: 174,
name: "Igglybuff",
types: ["Normal", "Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 90, atk: 30, def: 15, spa: 40, spd: 20, spe: 15},
abilities: {0: "Cute Charm", 1: "Competitive", H: "Friend Guard"},
heightm: 0.3,
weightkg: 1,
color: "Pink",
evos: ["jigglypuff"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
togepi: {
num: 175,
name: "Togepi",
types: ["Fairy"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 35, atk: 20, def: 65, spa: 40, spd: 65, spe: 20},
abilities: {0: "Hustle", 1: "Serene Grace", H: "Super Luck"},
heightm: 0.3,
weightkg: 1.5,
color: "White",
evos: ["togetic"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
togetic: {
num: 176,
name: "Togetic",
types: ["Fairy", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 55, atk: 40, def: 85, spa: 80, spd: 105, spe: 40},
abilities: {0: "Hustle", 1: "Serene Grace", H: "Super Luck"},
heightm: 0.6,
weightkg: 3.2,
color: "White",
prevo: "togepi",
evos: ["togekiss"],
evoType: "levelFriendship",
eggGroups: ["Flying", "Fairy"],
},
natu: {
num: 177,
name: "Natu",
types: ["Psychic", "Flying"],
baseStats: {hp: 40, atk: 50, def: 45, spa: 70, spd: 45, spe: 70},
abilities: {0: "Synchronize", 1: "Early Bird", H: "Magic Bounce"},
heightm: 0.2,
weightkg: 2,
color: "Green",
evos: ["xatu"],
eggGroups: ["Flying"],
},
xatu: {
num: 178,
name: "Xatu",
types: ["Psychic", "Flying"],
baseStats: {hp: 65, atk: 75, def: 70, spa: 95, spd: 70, spe: 95},
abilities: {0: "Synchronize", 1: "Early Bird", H: "Magic Bounce"},
heightm: 1.5,
weightkg: 15,
color: "Green",
prevo: "natu",
evoLevel: 25,
eggGroups: ["Flying"],
},
mareep: {
num: 179,
name: "Mareep",
types: ["Electric"],
baseStats: {hp: 55, atk: 40, def: 40, spa: 65, spd: 45, spe: 35},
abilities: {0: "Static", H: "Plus"},
heightm: 0.6,
weightkg: 7.8,
color: "White",
evos: ["flaaffy"],
eggGroups: ["Monster", "Field"],
},
flaaffy: {
num: 180,
name: "Flaaffy",
types: ["Electric"],
baseStats: {hp: 70, atk: 55, def: 55, spa: 80, spd: 60, spe: 45},
abilities: {0: "Static", H: "Plus"},
heightm: 0.8,
weightkg: 13.3,
color: "Pink",
prevo: "mareep",
evoLevel: 15,
evos: ["ampharos"],
eggGroups: ["Monster", "Field"],
},
ampharos: {
num: 181,
name: "Ampharos",
types: ["Electric"],
baseStats: {hp: 90, atk: 75, def: 85, spa: 115, spd: 90, spe: 55},
abilities: {0: "Static", H: "Plus"},
heightm: 1.4,
weightkg: 61.5,
color: "Yellow",
prevo: "flaaffy",
evoLevel: 30,
eggGroups: ["Monster", "Field"],
otherFormes: ["ampharosmega"],
},
ampharosmega: {
num: 181,
name: "Ampharos-Mega",
baseSpecies: "Ampharos",
forme: "Mega",
types: ["Electric", "Dragon"],
baseStats: {hp: 90, atk: 95, def: 105, spa: 165, spd: 110, spe: 45},
abilities: {0: "Mold Breaker"},
heightm: 1.4,
weightkg: 61.5,
color: "Yellow",
eggGroups: ["Monster", "Field"],
requiredItem: "Ampharosite",
},
bellossom: {
num: 182,
name: "Bellossom",
types: ["Grass"],
baseStats: {hp: 75, atk: 80, def: 95, spa: 90, spd: 100, spe: 50},
abilities: {0: "Chlorophyll", H: "Healer"},
heightm: 0.4,
weightkg: 5.8,
color: "Green",
prevo: "gloom",
evoType: "useItem",
evoItem: "Sun Stone",
eggGroups: ["Grass"],
},
marill: {
num: 183,
name: "Marill",
types: ["Water", "Fairy"],
baseStats: {hp: 70, atk: 20, def: 50, spa: 20, spd: 50, spe: 40},
abilities: {0: "Thick Fat", 1: "Huge Power", H: "Sap Sipper"},
heightm: 0.4,
weightkg: 8.5,
color: "Blue",
prevo: "azurill",
evos: ["azumarill"],
evoType: "levelFriendship",
eggGroups: ["Water 1", "Fairy"],
canHatch: true,
},
azumarill: {
num: 184,
name: "Azumarill",
types: ["Water", "Fairy"],
baseStats: {hp: 100, atk: 50, def: 80, spa: 60, spd: 80, spe: 50},
abilities: {0: "Thick Fat", 1: "Huge Power", H: "Sap Sipper"},
heightm: 0.8,
weightkg: 28.5,
color: "Blue",
prevo: "marill",
evoLevel: 18,
eggGroups: ["Water 1", "Fairy"],
},
sudowoodo: {
num: 185,
name: "Sudowoodo",
types: ["Rock"],
baseStats: {hp: 70, atk: 100, def: 115, spa: 30, spd: 65, spe: 30},
abilities: {0: "Sturdy", 1: "Rock Head", H: "Rattled"},
heightm: 1.2,
weightkg: 38,
color: "Brown",
prevo: "bonsly",
evoType: "levelMove",
evoMove: "Mimic",
eggGroups: ["Mineral"],
canHatch: true,
},
politoed: {
num: 186,
name: "Politoed",
types: ["Water"],
baseStats: {hp: 90, atk: 75, def: 75, spa: 90, spd: 100, spe: 70},
abilities: {0: "Water Absorb", 1: "Damp", H: "Drizzle"},
heightm: 1.1,
weightkg: 33.9,
color: "Green",
prevo: "poliwhirl",
evoType: "trade",
evoItem: "King's Rock",
eggGroups: ["Water 1"],
},
hoppip: {
num: 187,
name: "Hoppip",
types: ["Grass", "Flying"],
baseStats: {hp: 35, atk: 35, def: 40, spa: 35, spd: 55, spe: 50},
abilities: {0: "Chlorophyll", 1: "Leaf Guard", H: "Infiltrator"},
heightm: 0.4,
weightkg: 0.5,
color: "Pink",
evos: ["skiploom"],
eggGroups: ["Fairy", "Grass"],
},
skiploom: {
num: 188,
name: "Skiploom",
types: ["Grass", "Flying"],
baseStats: {hp: 55, atk: 45, def: 50, spa: 45, spd: 65, spe: 80},
abilities: {0: "Chlorophyll", 1: "Leaf Guard", H: "Infiltrator"},
heightm: 0.6,
weightkg: 1,
color: "Green",
prevo: "hoppip",
evoLevel: 18,
evos: ["jumpluff"],
eggGroups: ["Fairy", "Grass"],
},
jumpluff: {
num: 189,
name: "Jumpluff",
types: ["Grass", "Flying"],
baseStats: {hp: 75, atk: 55, def: 70, spa: 55, spd: 95, spe: 110},
abilities: {0: "Chlorophyll", 1: "Leaf Guard", H: "Infiltrator"},
heightm: 0.8,
weightkg: 3,
color: "Blue",
prevo: "skiploom",
evoLevel: 27,
eggGroups: ["Fairy", "Grass"],
},
aipom: {
num: 190,
name: "Aipom",
types: ["Normal"],
baseStats: {hp: 55, atk: 70, def: 55, spa: 40, spd: 55, spe: 85},
abilities: {0: "Run Away", 1: "Pickup", H: "Skill Link"},
heightm: 0.8,
weightkg: 11.5,
color: "Purple",
evos: ["ambipom"],
eggGroups: ["Field"],
},
sunkern: {
num: 191,
name: "Sunkern",
types: ["Grass"],
baseStats: {hp: 30, atk: 30, def: 30, spa: 30, spd: 30, spe: 30},
abilities: {0: "Chlorophyll", 1: "Solar Power", H: "Early Bird"},
heightm: 0.3,
weightkg: 1.8,
color: "Yellow",
evos: ["sunflora"],
eggGroups: ["Grass"],
},
sunflora: {
num: 192,
name: "Sunflora",
types: ["Grass"],
baseStats: {hp: 75, atk: 75, def: 55, spa: 105, spd: 85, spe: 30},
abilities: {0: "Chlorophyll", 1: "Solar Power", H: "Early Bird"},
heightm: 0.8,
weightkg: 8.5,
color: "Yellow",
prevo: "sunkern",
evoType: "useItem",
evoItem: "Sun Stone",
eggGroups: ["Grass"],
},
yanma: {
num: 193,
name: "Yanma",
types: ["Bug", "Flying"],
baseStats: {hp: 65, atk: 65, def: 45, spa: 75, spd: 45, spe: 95},
abilities: {0: "Speed Boost", 1: "Compound Eyes", H: "Frisk"},
heightm: 1.2,
weightkg: 38,
color: "Red",
evos: ["yanmega"],
eggGroups: ["Bug"],
},
wooper: {
num: 194,
name: "Wooper",
types: ["Water", "Ground"],
baseStats: {hp: 55, atk: 45, def: 45, spa: 25, spd: 25, spe: 15},
abilities: {0: "Damp", 1: "Water Absorb", H: "Unaware"},
heightm: 0.4,
weightkg: 8.5,
color: "Blue",
evos: ["quagsire"],
eggGroups: ["Water 1", "Field"],
},
quagsire: {
num: 195,
name: "Quagsire",
types: ["Water", "Ground"],
baseStats: {hp: 95, atk: 85, def: 85, spa: 65, spd: 65, spe: 35},
abilities: {0: "Damp", 1: "Water Absorb", H: "Unaware"},
heightm: 1.4,
weightkg: 75,
color: "Blue",
prevo: "wooper",
evoLevel: 20,
eggGroups: ["Water 1", "Field"],
},
espeon: {
num: 196,
name: "Espeon",
types: ["Psychic"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 65, def: 60, spa: 130, spd: 95, spe: 110},
abilities: {0: "Synchronize", H: "Magic Bounce"},
heightm: 0.9,
weightkg: 26.5,
color: "Purple",
prevo: "eevee",
evoType: "levelFriendship",
evoCondition: "during the day",
eggGroups: ["Field"],
},
umbreon: {
num: 197,
name: "Umbreon",
types: ["Dark"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 95, atk: 65, def: 110, spa: 60, spd: 130, spe: 65},
abilities: {0: "Synchronize", H: "Inner Focus"},
heightm: 1,
weightkg: 27,
color: "Black",
prevo: "eevee",
evoType: "levelFriendship",
evoCondition: "at night",
eggGroups: ["Field"],
},
murkrow: {
num: 198,
name: "Murkrow",
types: ["Dark", "Flying"],
baseStats: {hp: 60, atk: 85, def: 42, spa: 85, spd: 42, spe: 91},
abilities: {0: "Insomnia", 1: "Super Luck", H: "Prankster"},
heightm: 0.5,
weightkg: 2.1,
color: "Black",
evos: ["honchkrow"],
eggGroups: ["Flying"],
},
slowking: {
num: 199,
name: "Slowking",
types: ["Water", "Psychic"],
baseStats: {hp: 95, atk: 75, def: 80, spa: 100, spd: 110, spe: 30},
abilities: {0: "Oblivious", 1: "Own Tempo", H: "Regenerator"},
heightm: 2,
weightkg: 79.5,
color: "Pink",
prevo: "slowpoke",
evoType: "trade",
evoItem: "King's Rock",
eggGroups: ["Monster", "Water 1"],
},
misdreavus: {
num: 200,
name: "Misdreavus",
types: ["Ghost"],
baseStats: {hp: 60, atk: 60, def: 60, spa: 85, spd: 85, spe: 85},
abilities: {0: "Levitate"},
heightm: 0.7,
weightkg: 1,
color: "Gray",
evos: ["mismagius"],
eggGroups: ["Amorphous"],
},
unown: {
num: 201,
name: "Unown",
baseForme: "A",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 48, atk: 72, def: 48, spa: 72, spd: 48, spe: 48},
abilities: {0: "Levitate"},
heightm: 0.5,
weightkg: 5,
color: "Black",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["unownb", "unownc", "unownd", "unowne", "unownf", "unowng", "unownh", "unowni", "unownj", "unownk", "unownl", "unownm", "unownn", "unowno", "unownp", "unownq", "unownr", "unowns", "unownt", "unownu", "unownv", "unownw", "unownx", "unowny", "unownz", "unownexclamation", "unownquestion"],
},
wobbuffet: {
num: 202,
name: "Wobbuffet",
types: ["Psychic"],
baseStats: {hp: 190, atk: 33, def: 58, spa: 33, spd: 58, spe: 33},
abilities: {0: "Shadow Tag", H: "Telepathy"},
heightm: 1.3,
weightkg: 28.5,
color: "Blue",
prevo: "wynaut",
evoLevel: 15,
eggGroups: ["Amorphous"],
},
girafarig: {
num: 203,
name: "Girafarig",
types: ["Normal", "Psychic"],
baseStats: {hp: 70, atk: 80, def: 65, spa: 90, spd: 65, spe: 85},
abilities: {0: "Inner Focus", 1: "Early Bird", H: "Sap Sipper"},
heightm: 1.5,
weightkg: 41.5,
color: "Yellow",
eggGroups: ["Field"],
},
pineco: {
num: 204,
name: "Pineco",
types: ["Bug"],
baseStats: {hp: 50, atk: 65, def: 90, spa: 35, spd: 35, spe: 15},
abilities: {0: "Sturdy", H: "Overcoat"},
heightm: 0.6,
weightkg: 7.2,
color: "Gray",
evos: ["forretress"],
eggGroups: ["Bug"],
},
forretress: {
num: 205,
name: "Forretress",
types: ["Bug", "Steel"],
baseStats: {hp: 75, atk: 90, def: 140, spa: 60, spd: 60, spe: 40},
abilities: {0: "Sturdy", H: "Overcoat"},
heightm: 1.2,
weightkg: 125.8,
color: "Purple",
prevo: "pineco",
evoLevel: 31,
eggGroups: ["Bug"],
},
dunsparce: {
num: 206,
name: "Dunsparce",
types: ["Normal"],
baseStats: {hp: 100, atk: 70, def: 70, spa: 65, spd: 65, spe: 45},
abilities: {0: "Serene Grace", 1: "Run Away", H: "Rattled"},
heightm: 1.5,
weightkg: 14,
color: "Yellow",
eggGroups: ["Field"],
},
gligar: {
num: 207,
name: "Gligar",
types: ["Ground", "Flying"],
baseStats: {hp: 65, atk: 75, def: 105, spa: 35, spd: 65, spe: 85},
abilities: {0: "Hyper Cutter", 1: "Sand Veil", H: "Immunity"},
heightm: 1.1,
weightkg: 64.8,
color: "Purple",
evos: ["gliscor"],
eggGroups: ["Bug"],
},
steelix: {
num: 208,
name: "Steelix",
types: ["Steel", "Ground"],
baseStats: {hp: 75, atk: 85, def: 200, spa: 55, spd: 65, spe: 30},
abilities: {0: "Rock Head", 1: "Sturdy", H: "Sheer Force"},
heightm: 9.2,
weightkg: 400,
color: "Gray",
prevo: "onix",
evoType: "trade",
evoItem: "Metal Coat",
eggGroups: ["Mineral"],
otherFormes: ["steelixmega"],
},
steelixmega: {
num: 208,
name: "Steelix-Mega",
baseSpecies: "Steelix",
forme: "Mega",
types: ["Steel", "Ground"],
baseStats: {hp: 75, atk: 125, def: 230, spa: 55, spd: 95, spe: 30},
abilities: {0: "Sand Force"},
heightm: 10.5,
weightkg: 740,
color: "Gray",
eggGroups: ["Mineral"],
requiredItem: "Steelixite",
},
snubbull: {
num: 209,
name: "Snubbull",
types: ["Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 60, atk: 80, def: 50, spa: 40, spd: 40, spe: 30},
abilities: {0: "Intimidate", 1: "Run Away", H: "Rattled"},
heightm: 0.6,
weightkg: 7.8,
color: "Pink",
evos: ["granbull"],
eggGroups: ["Field", "Fairy"],
},
granbull: {
num: 210,
name: "Granbull",
types: ["Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 90, atk: 120, def: 75, spa: 60, spd: 60, spe: 45},
abilities: {0: "Intimidate", 1: "Quick Feet", H: "Rattled"},
heightm: 1.4,
weightkg: 48.7,
color: "Purple",
prevo: "snubbull",
evoLevel: 23,
eggGroups: ["Field", "Fairy"],
},
qwilfish: {
num: 211,
name: "Qwilfish",
types: ["Water", "Poison"],
baseStats: {hp: 65, atk: 95, def: 85, spa: 55, spd: 55, spe: 85},
abilities: {0: "Poison Point", 1: "Swift Swim", H: "Intimidate"},
heightm: 0.5,
weightkg: 3.9,
color: "Gray",
eggGroups: ["Water 2"],
},
scizor: {
num: 212,
name: "Scizor",
types: ["Bug", "Steel"],
baseStats: {hp: 70, atk: 130, def: 100, spa: 55, spd: 80, spe: 65},
abilities: {0: "Swarm", 1: "Technician", H: "Light Metal"},
heightm: 1.8,
weightkg: 118,
color: "Red",
prevo: "scyther",
evoType: "trade",
evoItem: "Metal Coat",
eggGroups: ["Bug"],
otherFormes: ["scizormega"],
},
scizormega: {
num: 212,
name: "Scizor-Mega",
baseSpecies: "Scizor",
forme: "Mega",
types: ["Bug", "Steel"],
baseStats: {hp: 70, atk: 150, def: 140, spa: 65, spd: 100, spe: 75},
abilities: {0: "Technician"},
heightm: 2,
weightkg: 125,
color: "Red",
eggGroups: ["Bug"],
requiredItem: "Scizorite",
},
shuckle: {
num: 213,
name: "Shuckle",
types: ["Bug", "Rock"],
baseStats: {hp: 20, atk: 10, def: 230, spa: 10, spd: 230, spe: 5},
abilities: {0: "Sturdy", 1: "Gluttony", H: "Contrary"},
heightm: 0.6,
weightkg: 20.5,
color: "Yellow",
eggGroups: ["Bug"],
},
heracross: {
num: 214,
name: "Heracross",
types: ["Bug", "Fighting"],
baseStats: {hp: 80, atk: 125, def: 75, spa: 40, spd: 95, spe: 85},
abilities: {0: "Swarm", 1: "Guts", H: "Moxie"},
heightm: 1.5,
weightkg: 54,
color: "Blue",
eggGroups: ["Bug"],
otherFormes: ["heracrossmega"],
},
heracrossmega: {
num: 214,
name: "Heracross-Mega",
baseSpecies: "Heracross",
forme: "Mega",
types: ["Bug", "Fighting"],
baseStats: {hp: 80, atk: 185, def: 115, spa: 40, spd: 105, spe: 75},
abilities: {0: "Skill Link"},
heightm: 1.7,
weightkg: 62.5,
color: "Blue",
eggGroups: ["Bug"],
requiredItem: "Heracronite",
},
sneasel: {
num: 215,
name: "Sneasel",
types: ["Dark", "Ice"],
baseStats: {hp: 55, atk: 95, def: 55, spa: 35, spd: 75, spe: 115},
abilities: {0: "Inner Focus", 1: "Keen Eye", H: "Pickpocket"},
heightm: 0.9,
weightkg: 28,
color: "Black",
evos: ["weavile"],
eggGroups: ["Field"],
},
teddiursa: {
num: 216,
name: "Teddiursa",
types: ["Normal"],
baseStats: {hp: 60, atk: 80, def: 50, spa: 50, spd: 50, spe: 40},
abilities: {0: "Pickup", 1: "Quick Feet", H: "Honey Gather"},
heightm: 0.6,
weightkg: 8.8,
color: "Brown",
evos: ["ursaring"],
eggGroups: ["Field"],
},
ursaring: {
num: 217,
name: "Ursaring",
types: ["Normal"],
baseStats: {hp: 90, atk: 130, def: 75, spa: 75, spd: 75, spe: 55},
abilities: {0: "Guts", 1: "Quick Feet", H: "Unnerve"},
heightm: 1.8,
weightkg: 125.8,
color: "Brown",
prevo: "teddiursa",
evoLevel: 30,
eggGroups: ["Field"],
},
slugma: {
num: 218,
name: "Slugma",
types: ["Fire"],
baseStats: {hp: 40, atk: 40, def: 40, spa: 70, spd: 40, spe: 20},
abilities: {0: "Magma Armor", 1: "Flame Body", H: "Weak Armor"},
heightm: 0.7,
weightkg: 35,
color: "Red",
evos: ["magcargo"],
eggGroups: ["Amorphous"],
},
magcargo: {
num: 219,
name: "Magcargo",
types: ["Fire", "Rock"],
baseStats: {hp: 60, atk: 50, def: 120, spa: 90, spd: 80, spe: 30},
abilities: {0: "Magma Armor", 1: "Flame Body", H: "Weak Armor"},
heightm: 0.8,
weightkg: 55,
color: "Red",
prevo: "slugma",
evoLevel: 38,
eggGroups: ["Amorphous"],
},
swinub: {
num: 220,
name: "Swinub",
types: ["Ice", "Ground"],
baseStats: {hp: 50, atk: 50, def: 40, spa: 30, spd: 30, spe: 50},
abilities: {0: "Oblivious", 1: "Snow Cloak", H: "Thick Fat"},
heightm: 0.4,
weightkg: 6.5,
color: "Brown",
evos: ["piloswine"],
eggGroups: ["Field"],
},
piloswine: {
num: 221,
name: "Piloswine",
types: ["Ice", "Ground"],
baseStats: {hp: 100, atk: 100, def: 80, spa: 60, spd: 60, spe: 50},
abilities: {0: "Oblivious", 1: "Snow Cloak", H: "Thick Fat"},
heightm: 1.1,
weightkg: 55.8,
color: "Brown",
prevo: "swinub",
evoLevel: 33,
evos: ["mamoswine"],
eggGroups: ["Field"],
},
corsola: {
num: 222,
name: "Corsola",
types: ["Water", "Rock"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 65, atk: 55, def: 95, spa: 65, spd: 95, spe: 35},
abilities: {0: "Hustle", 1: "Natural Cure", H: "Regenerator"},
heightm: 0.6,
weightkg: 5,
color: "Pink",
eggGroups: ["Water 1", "Water 3"],
otherFormes: ["corsolagalar"],
},
corsolagalar: {
num: 222,
name: "Corsola-Galar",
baseSpecies: "Corsola",
forme: "Galar",
types: ["Ghost"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 60, atk: 55, def: 100, spa: 65, spd: 100, spe: 30},
abilities: {0: "Weak Armor", H: "Cursed Body"},
heightm: 0.6,
weightkg: 0.5,
color: "White",
evos: ["cursola"],
eggGroups: ["Water 1", "Water 3"],
},
remoraid: {
num: 223,
name: "Remoraid",
types: ["Water"],
baseStats: {hp: 35, atk: 65, def: 35, spa: 65, spd: 35, spe: 65},
abilities: {0: "Hustle", 1: "Sniper", H: "Moody"},
heightm: 0.6,
weightkg: 12,
color: "Gray",
evos: ["octillery"],
eggGroups: ["Water 1", "Water 2"],
},
octillery: {
num: 224,
name: "Octillery",
types: ["Water"],
baseStats: {hp: 75, atk: 105, def: 75, spa: 105, spd: 75, spe: 45},
abilities: {0: "Suction Cups", 1: "Sniper", H: "Moody"},
heightm: 0.9,
weightkg: 28.5,
color: "Red",
prevo: "remoraid",
evoLevel: 25,
eggGroups: ["Water 1", "Water 2"],
},
delibird: {
num: 225,
name: "Delibird",
types: ["Ice", "Flying"],
baseStats: {hp: 45, atk: 55, def: 45, spa: 65, spd: 45, spe: 75},
abilities: {0: "Vital Spirit", 1: "Hustle", H: "Insomnia"},
heightm: 0.9,
weightkg: 16,
color: "Red",
eggGroups: ["Water 1", "Field"],
},
mantine: {
num: 226,
name: "Mantine",
types: ["Water", "Flying"],
baseStats: {hp: 85, atk: 40, def: 70, spa: 80, spd: 140, spe: 70},
abilities: {0: "Swift Swim", 1: "Water Absorb", H: "Water Veil"},
heightm: 2.1,
weightkg: 220,
color: "Purple",
prevo: "mantyke",
evoType: "levelExtra",
evoCondition: "with a Remoraid in party",
eggGroups: ["Water 1"],
canHatch: true,
},
skarmory: {
num: 227,
name: "Skarmory",
types: ["Steel", "Flying"],
baseStats: {hp: 65, atk: 80, def: 140, spa: 40, spd: 70, spe: 70},
abilities: {0: "Keen Eye", 1: "Sturdy", H: "Weak Armor"},
heightm: 1.7,
weightkg: 50.5,
color: "Gray",
eggGroups: ["Flying"],
},
houndour: {
num: 228,
name: "Houndour",
types: ["Dark", "Fire"],
baseStats: {hp: 45, atk: 60, def: 30, spa: 80, spd: 50, spe: 65},
abilities: {0: "Early Bird", 1: "Flash Fire", H: "Unnerve"},
heightm: 0.6,
weightkg: 10.8,
color: "Black",
evos: ["houndoom"],
eggGroups: ["Field"],
},
houndoom: {
num: 229,
name: "Houndoom",
types: ["Dark", "Fire"],
baseStats: {hp: 75, atk: 90, def: 50, spa: 110, spd: 80, spe: 95},
abilities: {0: "Early Bird", 1: "Flash Fire", H: "Unnerve"},
heightm: 1.4,
weightkg: 35,
color: "Black",
prevo: "houndour",
evoLevel: 24,
eggGroups: ["Field"],
otherFormes: ["houndoommega"],
},
houndoommega: {
num: 229,
name: "Houndoom-Mega",
baseSpecies: "Houndoom",
forme: "Mega",
types: ["Dark", "Fire"],
baseStats: {hp: 75, atk: 90, def: 90, spa: 140, spd: 90, spe: 115},
abilities: {0: "Solar Power"},
heightm: 1.9,
weightkg: 49.5,
color: "Black",
eggGroups: ["Field"],
requiredItem: "Houndoominite",
},
kingdra: {
num: 230,
name: "Kingdra",
types: ["Water", "Dragon"],
baseStats: {hp: 75, atk: 95, def: 95, spa: 95, spd: 95, spe: 85},
abilities: {0: "Swift Swim", 1: "Sniper", H: "Damp"},
heightm: 1.8,
weightkg: 152,
color: "Blue",
prevo: "seadra",
evoType: "trade",
evoItem: "Dragon Scale",
eggGroups: ["Water 1", "Dragon"],
},
phanpy: {
num: 231,
name: "Phanpy",
types: ["Ground"],
baseStats: {hp: 90, atk: 60, def: 60, spa: 40, spd: 40, spe: 40},
abilities: {0: "Pickup", H: "Sand Veil"},
heightm: 0.5,
weightkg: 33.5,
color: "Blue",
evos: ["donphan"],
eggGroups: ["Field"],
},
donphan: {
num: 232,
name: "Donphan",
types: ["Ground"],
baseStats: {hp: 90, atk: 120, def: 120, spa: 60, spd: 60, spe: 50},
abilities: {0: "Sturdy", H: "Sand Veil"},
heightm: 1.1,
weightkg: 120,
color: "Gray",
prevo: "phanpy",
evoLevel: 25,
eggGroups: ["Field"],
},
porygon2: {
num: 233,
name: "Porygon2",
types: ["Normal"],
gender: "N",
baseStats: {hp: 85, atk: 80, def: 90, spa: 105, spd: 95, spe: 60},
abilities: {0: "Trace", 1: "Download", H: "Analytic"},
heightm: 0.6,
weightkg: 32.5,
color: "Red",
prevo: "porygon",
evoType: "trade",
evoItem: "Up-Grade",
evos: ["porygonz"],
eggGroups: ["Mineral"],
},
stantler: {
num: 234,
name: "Stantler",
types: ["Normal"],
baseStats: {hp: 73, atk: 95, def: 62, spa: 85, spd: 65, spe: 85},
abilities: {0: "Intimidate", 1: "Frisk", H: "Sap Sipper"},
heightm: 1.4,
weightkg: 71.2,
color: "Brown",
eggGroups: ["Field"],
},
smeargle: {
num: 235,
name: "Smeargle",
types: ["Normal"],
baseStats: {hp: 55, atk: 20, def: 35, spa: 20, spd: 45, spe: 75},
abilities: {0: "Own Tempo", 1: "Technician", H: "Moody"},
heightm: 1.2,
weightkg: 58,
color: "White",
eggGroups: ["Field"],
},
tyrogue: {
num: 236,
name: "Tyrogue",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 35, atk: 35, def: 35, spa: 35, spd: 35, spe: 35},
abilities: {0: "Guts", 1: "Steadfast", H: "Vital Spirit"},
heightm: 0.7,
weightkg: 21,
color: "Purple",
evos: ["hitmonlee", "hitmonchan", "hitmontop"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
hitmontop: {
num: 237,
name: "Hitmontop",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 50, atk: 95, def: 95, spa: 35, spd: 110, spe: 70},
abilities: {0: "Intimidate", 1: "Technician", H: "Steadfast"},
heightm: 1.4,
weightkg: 48,
color: "Brown",
prevo: "tyrogue",
evoLevel: 20,
eggGroups: ["Human-Like"],
},
smoochum: {
num: 238,
name: "Smoochum",
types: ["Ice", "Psychic"],
gender: "F",
baseStats: {hp: 45, atk: 30, def: 15, spa: 85, spd: 65, spe: 65},
abilities: {0: "Oblivious", 1: "Forewarn", H: "Hydration"},
heightm: 0.4,
weightkg: 6,
color: "Pink",
evos: ["jynx"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
elekid: {
num: 239,
name: "Elekid",
types: ["Electric"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 45, atk: 63, def: 37, spa: 65, spd: 55, spe: 95},
abilities: {0: "Static", H: "Vital Spirit"},
heightm: 0.6,
weightkg: 23.5,
color: "Yellow",
evos: ["electabuzz"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
magby: {
num: 240,
name: "Magby",
types: ["Fire"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 45, atk: 75, def: 37, spa: 70, spd: 55, spe: 83},
abilities: {0: "Flame Body", H: "Vital Spirit"},
heightm: 0.7,
weightkg: 21.4,
color: "Red",
evos: ["magmar"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
miltank: {
num: 241,
name: "Miltank",
types: ["Normal"],
gender: "F",
baseStats: {hp: 95, atk: 80, def: 105, spa: 40, spd: 70, spe: 100},
abilities: {0: "Thick Fat", 1: "Scrappy", H: "Sap Sipper"},
heightm: 1.2,
weightkg: 75.5,
color: "Pink",
eggGroups: ["Field"],
},
blissey: {
num: 242,
name: "Blissey",
types: ["Normal"],
gender: "F",
baseStats: {hp: 255, atk: 10, def: 10, spa: 75, spd: 135, spe: 55},
abilities: {0: "Natural Cure", 1: "Serene Grace", H: "Healer"},
heightm: 1.5,
weightkg: 46.8,
color: "Pink",
prevo: "chansey",
evoType: "levelFriendship",
eggGroups: ["Fairy"],
},
raikou: {
num: 243,
name: "Raikou",
types: ["Electric"],
gender: "N",
baseStats: {hp: 90, atk: 85, def: 75, spa: 115, spd: 100, spe: 115},
abilities: {0: "Pressure", H: "Inner Focus"},
heightm: 1.9,
weightkg: 178,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
entei: {
num: 244,
name: "Entei",
types: ["Fire"],
gender: "N",
baseStats: {hp: 115, atk: 115, def: 85, spa: 90, spd: 75, spe: 100},
abilities: {0: "Pressure", H: "Inner Focus"},
heightm: 2.1,
weightkg: 198,
color: "Brown",
eggGroups: ["Undiscovered"],
},
suicune: {
num: 245,
name: "Suicune",
types: ["Water"],
gender: "N",
baseStats: {hp: 100, atk: 75, def: 115, spa: 90, spd: 115, spe: 85},
abilities: {0: "Pressure", H: "Inner Focus"},
heightm: 2,
weightkg: 187,
color: "Blue",
eggGroups: ["Undiscovered"],
},
larvitar: {
num: 246,
name: "Larvitar",
types: ["Rock", "Ground"],
baseStats: {hp: 50, atk: 64, def: 50, spa: 45, spd: 50, spe: 41},
abilities: {0: "Guts", H: "Sand Veil"},
heightm: 0.6,
weightkg: 72,
color: "Green",
evos: ["pupitar"],
eggGroups: ["Monster"],
},
pupitar: {
num: 247,
name: "Pupitar",
types: ["Rock", "Ground"],
baseStats: {hp: 70, atk: 84, def: 70, spa: 65, spd: 70, spe: 51},
abilities: {0: "Shed Skin"},
heightm: 1.2,
weightkg: 152,
color: "Gray",
prevo: "larvitar",
evoLevel: 30,
evos: ["tyranitar"],
eggGroups: ["Monster"],
},
tyranitar: {
num: 248,
name: "Tyranitar",
types: ["Rock", "Dark"],
baseStats: {hp: 100, atk: 134, def: 110, spa: 95, spd: 100, spe: 61},
abilities: {0: "Sand Stream", H: "Unnerve"},
heightm: 2,
weightkg: 202,
color: "Green",
prevo: "pupitar",
evoLevel: 55,
eggGroups: ["Monster"],
otherFormes: ["tyranitarmega"],
},
tyranitarmega: {
num: 248,
name: "Tyranitar-Mega",
baseSpecies: "Tyranitar",
forme: "Mega",
types: ["Rock", "Dark"],
baseStats: {hp: 100, atk: 164, def: 150, spa: 95, spd: 120, spe: 71},
abilities: {0: "Sand Stream"},
heightm: 2.5,
weightkg: 255,
color: "Green",
eggGroups: ["Monster"],
requiredItem: "Tyranitarite",
},
lugia: {
num: 249,
name: "Lugia",
types: ["Psychic", "Flying"],
gender: "N",
baseStats: {hp: 106, atk: 90, def: 130, spa: 90, spd: 154, spe: 110},
abilities: {0: "Pressure", H: "Multiscale"},
heightm: 5.2,
weightkg: 216,
color: "White",
eggGroups: ["Undiscovered"],
},
hooh: {
num: 250,
name: "Ho-Oh",
types: ["Fire", "Flying"],
gender: "N",
baseStats: {hp: 106, atk: 130, def: 90, spa: 110, spd: 154, spe: 90},
abilities: {0: "Pressure", H: "Regenerator"},
heightm: 3.8,
weightkg: 199,
color: "Red",
eggGroups: ["Undiscovered"],
},
celebi: {
num: 251,
name: "Celebi",
types: ["Psychic", "Grass"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Natural Cure"},
heightm: 0.6,
weightkg: 5,
color: "Green",
eggGroups: ["Undiscovered"],
},
treecko: {
num: 252,
name: "Treecko",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 40, atk: 45, def: 35, spa: 65, spd: 55, spe: 70},
abilities: {0: "Overgrow", H: "Unburden"},
heightm: 0.5,
weightkg: 5,
color: "Green",
evos: ["grovyle"],
eggGroups: ["Monster", "Dragon"],
},
grovyle: {
num: 253,
name: "Grovyle",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 65, def: 45, spa: 85, spd: 65, spe: 95},
abilities: {0: "Overgrow", H: "Unburden"},
heightm: 0.9,
weightkg: 21.6,
color: "Green",
prevo: "treecko",
evoLevel: 16,
evos: ["sceptile"],
eggGroups: ["Monster", "Dragon"],
},
sceptile: {
num: 254,
name: "Sceptile",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 85, def: 65, spa: 105, spd: 85, spe: 120},
abilities: {0: "Overgrow", H: "Unburden"},
heightm: 1.7,
weightkg: 52.2,
color: "Green",
prevo: "grovyle",
evoLevel: 36,
eggGroups: ["Monster", "Dragon"],
otherFormes: ["sceptilemega"],
},
sceptilemega: {
num: 254,
name: "Sceptile-Mega",
baseSpecies: "Sceptile",
forme: "Mega",
types: ["Grass", "Dragon"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 110, def: 75, spa: 145, spd: 85, spe: 145},
abilities: {0: "Lightning Rod"},
heightm: 1.9,
weightkg: 55.2,
color: "Green",
eggGroups: ["Monster", "Dragon"],
requiredItem: "Sceptilite",
},
torchic: {
num: 255,
name: "Torchic",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 45, atk: 60, def: 40, spa: 70, spd: 50, spe: 45},
abilities: {0: "Blaze", H: "Speed Boost"},
heightm: 0.4,
weightkg: 2.5,
color: "Red",
evos: ["combusken"],
eggGroups: ["Field"],
},
combusken: {
num: 256,
name: "Combusken",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 85, def: 60, spa: 85, spd: 60, spe: 55},
abilities: {0: "Blaze", H: "Speed Boost"},
heightm: 0.9,
weightkg: 19.5,
color: "Red",
prevo: "torchic",
evoLevel: 16,
evos: ["blaziken"],
eggGroups: ["Field"],
},
blaziken: {
num: 257,
name: "Blaziken",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 120, def: 70, spa: 110, spd: 70, spe: 80},
abilities: {0: "Blaze", H: "Speed Boost"},
heightm: 1.9,
weightkg: 52,
color: "Red",
prevo: "combusken",
evoLevel: 36,
eggGroups: ["Field"],
otherFormes: ["blazikenmega"],
},
blazikenmega: {
num: 257,
name: "Blaziken-Mega",
baseSpecies: "Blaziken",
forme: "Mega",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 160, def: 80, spa: 130, spd: 80, spe: 100},
abilities: {0: "Speed Boost"},
heightm: 1.9,
weightkg: 52,
color: "Red",
eggGroups: ["Field"],
requiredItem: "Blazikenite",
},
mudkip: {
num: 258,
name: "Mudkip",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 70, def: 50, spa: 50, spd: 50, spe: 40},
abilities: {0: "Torrent", H: "Damp"},
heightm: 0.4,
weightkg: 7.6,
color: "Blue",
evos: ["marshtomp"],
eggGroups: ["Monster", "Water 1"],
},
marshtomp: {
num: 259,
name: "Marshtomp",
types: ["Water", "Ground"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 85, def: 70, spa: 60, spd: 70, spe: 50},
abilities: {0: "Torrent", H: "Damp"},
heightm: 0.7,
weightkg: 28,
color: "Blue",
prevo: "mudkip",
evoLevel: 16,
evos: ["swampert"],
eggGroups: ["Monster", "Water 1"],
},
swampert: {
num: 260,
name: "Swampert",
types: ["Water", "Ground"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 100, atk: 110, def: 90, spa: 85, spd: 90, spe: 60},
abilities: {0: "Torrent", H: "Damp"},
heightm: 1.5,
weightkg: 81.9,
color: "Blue",
prevo: "marshtomp",
evoLevel: 36,
eggGroups: ["Monster", "Water 1"],
otherFormes: ["swampertmega"],
},
swampertmega: {
num: 260,
name: "Swampert-Mega",
baseSpecies: "Swampert",
forme: "Mega",
types: ["Water", "Ground"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 100, atk: 150, def: 110, spa: 95, spd: 110, spe: 70},
abilities: {0: "Swift Swim"},
heightm: 1.9,
weightkg: 102,
color: "Blue",
eggGroups: ["Monster", "Water 1"],
requiredItem: "Swampertite",
},
poochyena: {
num: 261,
name: "Poochyena",
types: ["Dark"],
baseStats: {hp: 35, atk: 55, def: 35, spa: 30, spd: 30, spe: 35},
abilities: {0: "Run Away", 1: "Quick Feet", H: "Rattled"},
heightm: 0.5,
weightkg: 13.6,
color: "Gray",
evos: ["mightyena"],
eggGroups: ["Field"],
},
mightyena: {
num: 262,
name: "Mightyena",
types: ["Dark"],
baseStats: {hp: 70, atk: 90, def: 70, spa: 60, spd: 60, spe: 70},
abilities: {0: "Intimidate", 1: "Quick Feet", H: "Moxie"},
heightm: 1,
weightkg: 37,
color: "Gray",
prevo: "poochyena",
evoLevel: 18,
eggGroups: ["Field"],
},
zigzagoon: {
num: 263,
name: "Zigzagoon",
types: ["Normal"],
baseStats: {hp: 38, atk: 30, def: 41, spa: 30, spd: 41, spe: 60},
abilities: {0: "Pickup", 1: "Gluttony", H: "Quick Feet"},
heightm: 0.4,
weightkg: 17.5,
color: "Brown",
evos: ["linoone"],
eggGroups: ["Field"],
otherFormes: ["zigzagoongalar"],
},
zigzagoongalar: {
num: 263,
name: "Zigzagoon-Galar",
baseSpecies: "Zigzagoon",
forme: "Galar",
types: ["Dark", "Normal"],
baseStats: {hp: 38, atk: 30, def: 41, spa: 30, spd: 41, spe: 60},
abilities: {0: "Pickup", 1: "Gluttony", H: "Quick Feet"},
heightm: 0.4,
weightkg: 17.5,
color: "White",
evos: ["linoonegalar"],
eggGroups: ["Field"],
},
linoone: {
num: 264,
name: "Linoone",
types: ["Normal"],
baseStats: {hp: 78, atk: 70, def: 61, spa: 50, spd: 61, spe: 100},
abilities: {0: "Pickup", 1: "Gluttony", H: "Quick Feet"},
heightm: 0.5,
weightkg: 32.5,
color: "White",
prevo: "zigzagoon",
evoLevel: 20,
eggGroups: ["Field"],
otherFormes: ["linoonegalar"],
},
linoonegalar: {
num: 264,
name: "Linoone-Galar",
baseSpecies: "Linoone",
forme: "Galar",
types: ["Dark", "Normal"],
baseStats: {hp: 78, atk: 70, def: 61, spa: 50, spd: 61, spe: 100},
abilities: {0: "Pickup", 1: "Gluttony", H: "Quick Feet"},
heightm: 0.5,
weightkg: 32.5,
color: "White",
prevo: "zigzagoongalar",
evoLevel: 20,
evos: ["obstagoon"],
eggGroups: ["Field"],
},
wurmple: {
num: 265,
name: "Wurmple",
types: ["Bug"],
baseStats: {hp: 45, atk: 45, def: 35, spa: 20, spd: 30, spe: 20},
abilities: {0: "Shield Dust", H: "Run Away"},
heightm: 0.3,
weightkg: 3.6,
color: "Red",
evos: ["silcoon", "cascoon"],
eggGroups: ["Bug"],
},
silcoon: {
num: 266,
name: "Silcoon",
types: ["Bug"],
baseStats: {hp: 50, atk: 35, def: 55, spa: 25, spd: 25, spe: 15},
abilities: {0: "Shed Skin"},
heightm: 0.6,
weightkg: 10,
color: "White",
prevo: "wurmple",
evoLevel: 7,
evos: ["beautifly"],
eggGroups: ["Bug"],
},
beautifly: {
num: 267,
name: "Beautifly",
types: ["Bug", "Flying"],
baseStats: {hp: 60, atk: 70, def: 50, spa: 100, spd: 50, spe: 65},
abilities: {0: "Swarm", H: "Rivalry"},
heightm: 1,
weightkg: 28.4,
color: "Yellow",
prevo: "silcoon",
evoLevel: 10,
eggGroups: ["Bug"],
},
cascoon: {
num: 268,
name: "Cascoon",
types: ["Bug"],
baseStats: {hp: 50, atk: 35, def: 55, spa: 25, spd: 25, spe: 15},
abilities: {0: "Shed Skin"},
heightm: 0.7,
weightkg: 11.5,
color: "Purple",
prevo: "wurmple",
evoLevel: 7,
evos: ["dustox"],
eggGroups: ["Bug"],
},
dustox: {
num: 269,
name: "Dustox",
types: ["Bug", "Poison"],
baseStats: {hp: 60, atk: 50, def: 70, spa: 50, spd: 90, spe: 65},
abilities: {0: "Shield Dust", H: "Compound Eyes"},
heightm: 1.2,
weightkg: 31.6,
color: "Green",
prevo: "cascoon",
evoLevel: 10,
eggGroups: ["Bug"],
},
lotad: {
num: 270,
name: "Lotad",
types: ["Water", "Grass"],
baseStats: {hp: 40, atk: 30, def: 30, spa: 40, spd: 50, spe: 30},
abilities: {0: "Swift Swim", 1: "Rain Dish", H: "Own Tempo"},
heightm: 0.5,
weightkg: 2.6,
color: "Green",
evos: ["lombre"],
eggGroups: ["Water 1", "Grass"],
},
lombre: {
num: 271,
name: "Lombre",
types: ["Water", "Grass"],
baseStats: {hp: 60, atk: 50, def: 50, spa: 60, spd: 70, spe: 50},
abilities: {0: "Swift Swim", 1: "Rain Dish", H: "Own Tempo"},
heightm: 1.2,
weightkg: 32.5,
color: "Green",
prevo: "lotad",
evoLevel: 14,
evos: ["ludicolo"],
eggGroups: ["Water 1", "Grass"],
},
ludicolo: {
num: 272,
name: "Ludicolo",
types: ["Water", "Grass"],
baseStats: {hp: 80, atk: 70, def: 70, spa: 90, spd: 100, spe: 70},
abilities: {0: "Swift Swim", 1: "Rain Dish", H: "Own Tempo"},
heightm: 1.5,
weightkg: 55,
color: "Green",
prevo: "lombre",
evoType: "useItem",
evoItem: "Water Stone",
eggGroups: ["Water 1", "Grass"],
},
seedot: {
num: 273,
name: "Seedot",
types: ["Grass"],
baseStats: {hp: 40, atk: 40, def: 50, spa: 30, spd: 30, spe: 30},
abilities: {0: "Chlorophyll", 1: "Early Bird", H: "Pickpocket"},
heightm: 0.5,
weightkg: 4,
color: "Brown",
evos: ["nuzleaf"],
eggGroups: ["Field", "Grass"],
},
nuzleaf: {
num: 274,
name: "Nuzleaf",
types: ["Grass", "Dark"],
baseStats: {hp: 70, atk: 70, def: 40, spa: 60, spd: 40, spe: 60},
abilities: {0: "Chlorophyll", 1: "Early Bird", H: "Pickpocket"},
heightm: 1,
weightkg: 28,
color: "Brown",
prevo: "seedot",
evoLevel: 14,
evos: ["shiftry"],
eggGroups: ["Field", "Grass"],
},
shiftry: {
num: 275,
name: "Shiftry",
types: ["Grass", "Dark"],
baseStats: {hp: 90, atk: 100, def: 60, spa: 90, spd: 60, spe: 80},
abilities: {0: "Chlorophyll", 1: "Early Bird", H: "Pickpocket"},
heightm: 1.3,
weightkg: 59.6,
color: "Brown",
prevo: "nuzleaf",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Field", "Grass"],
},
taillow: {
num: 276,
name: "Taillow",
types: ["Normal", "Flying"],
baseStats: {hp: 40, atk: 55, def: 30, spa: 30, spd: 30, spe: 85},
abilities: {0: "Guts", H: "Scrappy"},
heightm: 0.3,
weightkg: 2.3,
color: "Blue",
evos: ["swellow"],
eggGroups: ["Flying"],
},
swellow: {
num: 277,
name: "Swellow",
types: ["Normal", "Flying"],
baseStats: {hp: 60, atk: 85, def: 60, spa: 75, spd: 50, spe: 125},
abilities: {0: "Guts", H: "Scrappy"},
heightm: 0.7,
weightkg: 19.8,
color: "Blue",
prevo: "taillow",
evoLevel: 22,
eggGroups: ["Flying"],
},
wingull: {
num: 278,
name: "Wingull",
types: ["Water", "Flying"],
baseStats: {hp: 40, atk: 30, def: 30, spa: 55, spd: 30, spe: 85},
abilities: {0: "Keen Eye", 1: "Hydration", H: "Rain Dish"},
heightm: 0.6,
weightkg: 9.5,
color: "White",
evos: ["pelipper"],
eggGroups: ["Water 1", "Flying"],
},
pelipper: {
num: 279,
name: "Pelipper",
types: ["Water", "Flying"],
baseStats: {hp: 60, atk: 50, def: 100, spa: 95, spd: 70, spe: 65},
abilities: {0: "Keen Eye", 1: "Drizzle", H: "Rain Dish"},
heightm: 1.2,
weightkg: 28,
color: "Yellow",
prevo: "wingull",
evoLevel: 25,
eggGroups: ["Water 1", "Flying"],
},
ralts: {
num: 280,
name: "Ralts",
types: ["Psychic", "Fairy"],
baseStats: {hp: 28, atk: 25, def: 25, spa: 45, spd: 35, spe: 40},
abilities: {0: "Synchronize", 1: "Trace", H: "Telepathy"},
heightm: 0.4,
weightkg: 6.6,
color: "White",
evos: ["kirlia"],
eggGroups: ["Human-Like", "Amorphous"],
},
kirlia: {
num: 281,
name: "Kirlia",
types: ["Psychic", "Fairy"],
baseStats: {hp: 38, atk: 35, def: 35, spa: 65, spd: 55, spe: 50},
abilities: {0: "Synchronize", 1: "Trace", H: "Telepathy"},
heightm: 0.8,
weightkg: 20.2,
color: "White",
prevo: "ralts",
evoLevel: 20,
evos: ["gardevoir", "gallade"],
eggGroups: ["Human-Like", "Amorphous"],
},
gardevoir: {
num: 282,
name: "Gardevoir",
types: ["Psychic", "Fairy"],
baseStats: {hp: 68, atk: 65, def: 65, spa: 125, spd: 115, spe: 80},
abilities: {0: "Synchronize", 1: "Trace", H: "Telepathy"},
heightm: 1.6,
weightkg: 48.4,
color: "White",
prevo: "kirlia",
evoLevel: 30,
eggGroups: ["Human-Like", "Amorphous"],
otherFormes: ["gardevoirmega"],
},
gardevoirmega: {
num: 282,
name: "Gardevoir-Mega",
baseSpecies: "Gardevoir",
forme: "Mega",
types: ["Psychic", "Fairy"],
baseStats: {hp: 68, atk: 85, def: 65, spa: 165, spd: 135, spe: 100},
abilities: {0: "Pixilate"},
heightm: 1.6,
weightkg: 48.4,
color: "White",
eggGroups: ["Amorphous"],
requiredItem: "Gardevoirite",
},
surskit: {
num: 283,
name: "Surskit",
types: ["Bug", "Water"],
baseStats: {hp: 40, atk: 30, def: 32, spa: 50, spd: 52, spe: 65},
abilities: {0: "Swift Swim", H: "Rain Dish"},
heightm: 0.5,
weightkg: 1.7,
color: "Blue",
evos: ["masquerain"],
eggGroups: ["Water 1", "Bug"],
},
masquerain: {
num: 284,
name: "Masquerain",
types: ["Bug", "Flying"],
baseStats: {hp: 70, atk: 60, def: 62, spa: 100, spd: 82, spe: 80},
abilities: {0: "Intimidate", H: "Unnerve"},
heightm: 0.8,
weightkg: 3.6,
color: "Blue",
prevo: "surskit",
evoLevel: 22,
eggGroups: ["Water 1", "Bug"],
},
shroomish: {
num: 285,
name: "Shroomish",
types: ["Grass"],
baseStats: {hp: 60, atk: 40, def: 60, spa: 40, spd: 60, spe: 35},
abilities: {0: "Effect Spore", 1: "Poison Heal", H: "Quick Feet"},
heightm: 0.4,
weightkg: 4.5,
color: "Brown",
evos: ["breloom"],
eggGroups: ["Fairy", "Grass"],
},
breloom: {
num: 286,
name: "Breloom",
types: ["Grass", "Fighting"],
baseStats: {hp: 60, atk: 130, def: 80, spa: 60, spd: 60, spe: 70},
abilities: {0: "Effect Spore", 1: "Poison Heal", H: "Technician"},
heightm: 1.2,
weightkg: 39.2,
color: "Green",
prevo: "shroomish",
evoLevel: 23,
eggGroups: ["Fairy", "Grass"],
},
slakoth: {
num: 287,
name: "Slakoth",
types: ["Normal"],
baseStats: {hp: 60, atk: 60, def: 60, spa: 35, spd: 35, spe: 30},
abilities: {0: "Truant"},
heightm: 0.8,
weightkg: 24,
color: "Brown",
evos: ["vigoroth"],
eggGroups: ["Field"],
},
vigoroth: {
num: 288,
name: "Vigoroth",
types: ["Normal"],
baseStats: {hp: 80, atk: 80, def: 80, spa: 55, spd: 55, spe: 90},
abilities: {0: "Vital Spirit"},
heightm: 1.4,
weightkg: 46.5,
color: "White",
prevo: "slakoth",
evoLevel: 18,
evos: ["slaking"],
eggGroups: ["Field"],
},
slaking: {
num: 289,
name: "Slaking",
types: ["Normal"],
baseStats: {hp: 150, atk: 160, def: 100, spa: 95, spd: 65, spe: 100},
abilities: {0: "Truant"},
heightm: 2,
weightkg: 130.5,
color: "Brown",
prevo: "vigoroth",
evoLevel: 36,
eggGroups: ["Field"],
},
nincada: {
num: 290,
name: "Nincada",
types: ["Bug", "Ground"],
baseStats: {hp: 31, atk: 45, def: 90, spa: 30, spd: 30, spe: 40},
abilities: {0: "Compound Eyes", H: "Run Away"},
heightm: 0.5,
weightkg: 5.5,
color: "Gray",
evos: ["ninjask", "shedinja"],
eggGroups: ["Bug"],
},
ninjask: {
num: 291,
name: "Ninjask",
types: ["Bug", "Flying"],
baseStats: {hp: 61, atk: 90, def: 45, spa: 50, spd: 50, spe: 160},
abilities: {0: "Speed Boost", H: "Infiltrator"},
heightm: 0.8,
weightkg: 12,
color: "Yellow",
prevo: "nincada",
evoLevel: 20,
eggGroups: ["Bug"],
},
shedinja: {
num: 292,
name: "Shedinja",
types: ["Bug", "Ghost"],
gender: "N",
baseStats: {hp: 1, atk: 90, def: 45, spa: 30, spd: 30, spe: 40},
maxHP: 1,
abilities: {0: "Wonder Guard"},
heightm: 0.8,
weightkg: 1.2,
color: "Brown",
prevo: "nincada",
evoLevel: 20,
eggGroups: ["Mineral"],
},
whismur: {
num: 293,
name: "Whismur",
types: ["Normal"],
baseStats: {hp: 64, atk: 51, def: 23, spa: 51, spd: 23, spe: 28},
abilities: {0: "Soundproof", H: "Rattled"},
heightm: 0.6,
weightkg: 16.3,
color: "Pink",
evos: ["loudred"],
eggGroups: ["Monster", "Field"],
},
loudred: {
num: 294,
name: "Loudred",
types: ["Normal"],
baseStats: {hp: 84, atk: 71, def: 43, spa: 71, spd: 43, spe: 48},
abilities: {0: "Soundproof", H: "Scrappy"},
heightm: 1,
weightkg: 40.5,
color: "Blue",
prevo: "whismur",
evoLevel: 20,
evos: ["exploud"],
eggGroups: ["Monster", "Field"],
},
exploud: {
num: 295,
name: "Exploud",
types: ["Normal"],
baseStats: {hp: 104, atk: 91, def: 63, spa: 91, spd: 73, spe: 68},
abilities: {0: "Soundproof", H: "Scrappy"},
heightm: 1.5,
weightkg: 84,
color: "Blue",
prevo: "loudred",
evoLevel: 40,
eggGroups: ["Monster", "Field"],
},
makuhita: {
num: 296,
name: "Makuhita",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 72, atk: 60, def: 30, spa: 20, spd: 30, spe: 25},
abilities: {0: "Thick Fat", 1: "Guts", H: "Sheer Force"},
heightm: 1,
weightkg: 86.4,
color: "Yellow",
evos: ["hariyama"],
eggGroups: ["Human-Like"],
},
hariyama: {
num: 297,
name: "Hariyama",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 144, atk: 120, def: 60, spa: 40, spd: 60, spe: 50},
abilities: {0: "Thick Fat", 1: "Guts", H: "Sheer Force"},
heightm: 2.3,
weightkg: 253.8,
color: "Brown",
prevo: "makuhita",
evoLevel: 24,
eggGroups: ["Human-Like"],
},
azurill: {
num: 298,
name: "Azurill",
types: ["Normal", "Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 50, atk: 20, def: 40, spa: 20, spd: 40, spe: 20},
abilities: {0: "Thick Fat", 1: "Huge Power", H: "Sap Sipper"},
heightm: 0.2,
weightkg: 2,
color: "Blue",
evos: ["marill"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
nosepass: {
num: 299,
name: "Nosepass",
types: ["Rock"],
baseStats: {hp: 30, atk: 45, def: 135, spa: 45, spd: 90, spe: 30},
abilities: {0: "Sturdy", 1: "Magnet Pull", H: "Sand Force"},
heightm: 1,
weightkg: 97,
color: "Gray",
evos: ["probopass"],
eggGroups: ["Mineral"],
},
skitty: {
num: 300,
name: "Skitty",
types: ["Normal"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 50, atk: 45, def: 45, spa: 35, spd: 35, spe: 50},
abilities: {0: "Cute Charm", 1: "Normalize", H: "Wonder Skin"},
heightm: 0.6,
weightkg: 11,
color: "Pink",
evos: ["delcatty"],
eggGroups: ["Field", "Fairy"],
},
delcatty: {
num: 301,
name: "Delcatty",
types: ["Normal"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 70, atk: 65, def: 65, spa: 55, spd: 55, spe: 90},
abilities: {0: "Cute Charm", 1: "Normalize", H: "Wonder Skin"},
heightm: 1.1,
weightkg: 32.6,
color: "Purple",
prevo: "skitty",
evoType: "useItem",
evoItem: "Moon Stone",
eggGroups: ["Field", "Fairy"],
},
sableye: {
num: 302,
name: "Sableye",
types: ["Dark", "Ghost"],
baseStats: {hp: 50, atk: 75, def: 75, spa: 65, spd: 65, spe: 50},
abilities: {0: "Keen Eye", 1: "Stall", H: "Prankster"},
heightm: 0.5,
weightkg: 11,
color: "Purple",
eggGroups: ["Human-Like"],
otherFormes: ["sableyemega"],
},
sableyemega: {
num: 302,
name: "Sableye-Mega",
baseSpecies: "Sableye",
forme: "Mega",
types: ["Dark", "Ghost"],
baseStats: {hp: 50, atk: 85, def: 125, spa: 85, spd: 115, spe: 20},
abilities: {0: "Magic Bounce"},
heightm: 0.5,
weightkg: 161,
color: "Purple",
eggGroups: ["Human-Like"],
requiredItem: "Sablenite",
},
mawile: {
num: 303,
name: "Mawile",
types: ["Steel", "Fairy"],
baseStats: {hp: 50, atk: 85, def: 85, spa: 55, spd: 55, spe: 50},
abilities: {0: "Hyper Cutter", 1: "Intimidate", H: "Sheer Force"},
heightm: 0.6,
weightkg: 11.5,
color: "Black",
eggGroups: ["Field", "Fairy"],
otherFormes: ["mawilemega"],
},
mawilemega: {
num: 303,
name: "Mawile-Mega",
baseSpecies: "Mawile",
forme: "Mega",
types: ["Steel", "Fairy"],
baseStats: {hp: 50, atk: 105, def: 125, spa: 55, spd: 95, spe: 50},
abilities: {0: "Huge Power"},
heightm: 1,
weightkg: 23.5,
color: "Black",
eggGroups: ["Field", "Fairy"],
requiredItem: "Mawilite",
},
aron: {
num: 304,
name: "Aron",
types: ["Steel", "Rock"],
baseStats: {hp: 50, atk: 70, def: 100, spa: 40, spd: 40, spe: 30},
abilities: {0: "Sturdy", 1: "Rock Head", H: "Heavy Metal"},
heightm: 0.4,
weightkg: 60,
color: "Gray",
evos: ["lairon"],
eggGroups: ["Monster"],
},
lairon: {
num: 305,
name: "Lairon",
types: ["Steel", "Rock"],
baseStats: {hp: 60, atk: 90, def: 140, spa: 50, spd: 50, spe: 40},
abilities: {0: "Sturdy", 1: "Rock Head", H: "Heavy Metal"},
heightm: 0.9,
weightkg: 120,
color: "Gray",
prevo: "aron",
evoLevel: 32,
evos: ["aggron"],
eggGroups: ["Monster"],
},
aggron: {
num: 306,
name: "Aggron",
types: ["Steel", "Rock"],
baseStats: {hp: 70, atk: 110, def: 180, spa: 60, spd: 60, spe: 50},
abilities: {0: "Sturdy", 1: "Rock Head", H: "Heavy Metal"},
heightm: 2.1,
weightkg: 360,
color: "Gray",
prevo: "lairon",
evoLevel: 42,
eggGroups: ["Monster"],
otherFormes: ["aggronmega"],
},
aggronmega: {
num: 306,
name: "Aggron-Mega",
baseSpecies: "Aggron",
forme: "Mega",
types: ["Steel"],
baseStats: {hp: 70, atk: 140, def: 230, spa: 60, spd: 80, spe: 50},
abilities: {0: "Filter"},
heightm: 2.2,
weightkg: 395,
color: "Gray",
eggGroups: ["Monster"],
requiredItem: "Aggronite",
},
meditite: {
num: 307,
name: "Meditite",
types: ["Fighting", "Psychic"],
baseStats: {hp: 30, atk: 40, def: 55, spa: 40, spd: 55, spe: 60},
abilities: {0: "Pure Power", H: "Telepathy"},
heightm: 0.6,
weightkg: 11.2,
color: "Blue",
evos: ["medicham"],
eggGroups: ["Human-Like"],
},
medicham: {
num: 308,
name: "Medicham",
types: ["Fighting", "Psychic"],
baseStats: {hp: 60, atk: 60, def: 75, spa: 60, spd: 75, spe: 80},
abilities: {0: "Pure Power", H: "Telepathy"},
heightm: 1.3,
weightkg: 31.5,
color: "Red",
prevo: "meditite",
evoLevel: 37,
eggGroups: ["Human-Like"],
otherFormes: ["medichammega"],
},
medichammega: {
num: 308,
name: "Medicham-Mega",
baseSpecies: "Medicham",
forme: "Mega",
types: ["Fighting", "Psychic"],
baseStats: {hp: 60, atk: 100, def: 85, spa: 80, spd: 85, spe: 100},
abilities: {0: "Pure Power"},
heightm: 1.3,
weightkg: 31.5,
color: "Red",
eggGroups: ["Human-Like"],
requiredItem: "Medichamite",
},
electrike: {
num: 309,
name: "Electrike",
types: ["Electric"],
baseStats: {hp: 40, atk: 45, def: 40, spa: 65, spd: 40, spe: 65},
abilities: {0: "Static", 1: "Lightning Rod", H: "Minus"},
heightm: 0.6,
weightkg: 15.2,
color: "Green",
evos: ["manectric"],
eggGroups: ["Field"],
},
manectric: {
num: 310,
name: "Manectric",
types: ["Electric"],
baseStats: {hp: 70, atk: 75, def: 60, spa: 105, spd: 60, spe: 105},
abilities: {0: "Static", 1: "Lightning Rod", H: "Minus"},
heightm: 1.5,
weightkg: 40.2,
color: "Yellow",
prevo: "electrike",
evoLevel: 26,
eggGroups: ["Field"],
otherFormes: ["manectricmega"],
},
manectricmega: {
num: 310,
name: "Manectric-Mega",
baseSpecies: "Manectric",
forme: "Mega",
types: ["Electric"],
baseStats: {hp: 70, atk: 75, def: 80, spa: 135, spd: 80, spe: 135},
abilities: {0: "Intimidate"},
heightm: 1.8,
weightkg: 44,
color: "Yellow",
eggGroups: ["Field"],
requiredItem: "Manectite",
},
plusle: {
num: 311,
name: "Plusle",
types: ["Electric"],
baseStats: {hp: 60, atk: 50, def: 40, spa: 85, spd: 75, spe: 95},
abilities: {0: "Plus", H: "Lightning Rod"},
heightm: 0.4,
weightkg: 4.2,
color: "Yellow",
eggGroups: ["Fairy"],
},
minun: {
num: 312,
name: "Minun",
types: ["Electric"],
baseStats: {hp: 60, atk: 40, def: 50, spa: 75, spd: 85, spe: 95},
abilities: {0: "Minus", H: "Volt Absorb"},
heightm: 0.4,
weightkg: 4.2,
color: "Yellow",
eggGroups: ["Fairy"],
},
volbeat: {
num: 313,
name: "Volbeat",
types: ["Bug"],
gender: "M",
baseStats: {hp: 65, atk: 73, def: 75, spa: 47, spd: 85, spe: 85},
abilities: {0: "Illuminate", 1: "Swarm", H: "Prankster"},
heightm: 0.7,
weightkg: 17.7,
color: "Gray",
eggGroups: ["Bug", "Human-Like"],
},
illumise: {
num: 314,
name: "Illumise",
types: ["Bug"],
gender: "F",
baseStats: {hp: 65, atk: 47, def: 75, spa: 73, spd: 85, spe: 85},
abilities: {0: "Oblivious", 1: "Tinted Lens", H: "Prankster"},
heightm: 0.6,
weightkg: 17.7,
color: "Purple",
eggGroups: ["Bug", "Human-Like"],
},
roselia: {
num: 315,
name: "Roselia",
types: ["Grass", "Poison"],
baseStats: {hp: 50, atk: 60, def: 45, spa: 100, spd: 80, spe: 65},
abilities: {0: "Natural Cure", 1: "Poison Point", H: "Leaf Guard"},
heightm: 0.3,
weightkg: 2,
color: "Green",
prevo: "budew",
evoType: "levelFriendship",
evoCondition: "during the day",
evos: ["roserade"],
eggGroups: ["Fairy", "Grass"],
canHatch: true,
},
gulpin: {
num: 316,
name: "Gulpin",
types: ["Poison"],
baseStats: {hp: 70, atk: 43, def: 53, spa: 43, spd: 53, spe: 40},
abilities: {0: "Liquid Ooze", 1: "Sticky Hold", H: "Gluttony"},
heightm: 0.4,
weightkg: 10.3,
color: "Green",
evos: ["swalot"],
eggGroups: ["Amorphous"],
},
swalot: {
num: 317,
name: "Swalot",
types: ["Poison"],
baseStats: {hp: 100, atk: 73, def: 83, spa: 73, spd: 83, spe: 55},
abilities: {0: "Liquid Ooze", 1: "Sticky Hold", H: "Gluttony"},
heightm: 1.7,
weightkg: 80,
color: "Purple",
prevo: "gulpin",
evoLevel: 26,
eggGroups: ["Amorphous"],
},
carvanha: {
num: 318,
name: "Carvanha",
types: ["Water", "Dark"],
baseStats: {hp: 45, atk: 90, def: 20, spa: 65, spd: 20, spe: 65},
abilities: {0: "Rough Skin", H: "Speed Boost"},
heightm: 0.8,
weightkg: 20.8,
color: "Red",
evos: ["sharpedo"],
eggGroups: ["Water 2"],
},
sharpedo: {
num: 319,
name: "Sharpedo",
types: ["Water", "Dark"],
baseStats: {hp: 70, atk: 120, def: 40, spa: 95, spd: 40, spe: 95},
abilities: {0: "Rough Skin", H: "Speed Boost"},
heightm: 1.8,
weightkg: 88.8,
color: "Blue",
prevo: "carvanha",
evoLevel: 30,
eggGroups: ["Water 2"],
otherFormes: ["sharpedomega"],
},
sharpedomega: {
num: 319,
name: "Sharpedo-Mega",
baseSpecies: "Sharpedo",
forme: "Mega",
types: ["Water", "Dark"],
baseStats: {hp: 70, atk: 140, def: 70, spa: 110, spd: 65, spe: 105},
abilities: {0: "Strong Jaw"},
heightm: 2.5,
weightkg: 130.3,
color: "Blue",
eggGroups: ["Water 2"],
requiredItem: "Sharpedonite",
},
wailmer: {
num: 320,
name: "Wailmer",
types: ["Water"],
baseStats: {hp: 130, atk: 70, def: 35, spa: 70, spd: 35, spe: 60},
abilities: {0: "Water Veil", 1: "Oblivious", H: "Pressure"},
heightm: 2,
weightkg: 130,
color: "Blue",
evos: ["wailord"],
eggGroups: ["Field", "Water 2"],
},
wailord: {
num: 321,
name: "Wailord",
types: ["Water"],
baseStats: {hp: 170, atk: 90, def: 45, spa: 90, spd: 45, spe: 60},
abilities: {0: "Water Veil", 1: "Oblivious", H: "Pressure"},
heightm: 14.5,
weightkg: 398,
color: "Blue",
prevo: "wailmer",
evoLevel: 40,
eggGroups: ["Field", "Water 2"],
},
numel: {
num: 322,
name: "Numel",
types: ["Fire", "Ground"],
baseStats: {hp: 60, atk: 60, def: 40, spa: 65, spd: 45, spe: 35},
abilities: {0: "Oblivious", 1: "Simple", H: "Own Tempo"},
heightm: 0.7,
weightkg: 24,
color: "Yellow",
evos: ["camerupt"],
eggGroups: ["Field"],
},
camerupt: {
num: 323,
name: "Camerupt",
types: ["Fire", "Ground"],
baseStats: {hp: 70, atk: 100, def: 70, spa: 105, spd: 75, spe: 40},
abilities: {0: "Magma Armor", 1: "Solid Rock", H: "Anger Point"},
heightm: 1.9,
weightkg: 220,
color: "Red",
prevo: "numel",
evoLevel: 33,
eggGroups: ["Field"],
otherFormes: ["cameruptmega"],
},
cameruptmega: {
num: 323,
name: "Camerupt-Mega",
baseSpecies: "Camerupt",
forme: "Mega",
types: ["Fire", "Ground"],
baseStats: {hp: 70, atk: 120, def: 100, spa: 145, spd: 105, spe: 20},
abilities: {0: "Sheer Force"},
heightm: 2.5,
weightkg: 320.5,
color: "Red",
eggGroups: ["Field"],
requiredItem: "Cameruptite",
},
torkoal: {
num: 324,
name: "Torkoal",
types: ["Fire"],
baseStats: {hp: 70, atk: 85, def: 140, spa: 85, spd: 70, spe: 20},
abilities: {0: "White Smoke", 1: "Drought", H: "Shell Armor"},
heightm: 0.5,
weightkg: 80.4,
color: "Brown",
eggGroups: ["Field"],
},
spoink: {
num: 325,
name: "Spoink",
types: ["Psychic"],
baseStats: {hp: 60, atk: 25, def: 35, spa: 70, spd: 80, spe: 60},
abilities: {0: "Thick Fat", 1: "Own Tempo", H: "Gluttony"},
heightm: 0.7,
weightkg: 30.6,
color: "Black",
evos: ["grumpig"],
eggGroups: ["Field"],
},
grumpig: {
num: 326,
name: "Grumpig",
types: ["Psychic"],
baseStats: {hp: 80, atk: 45, def: 65, spa: 90, spd: 110, spe: 80},
abilities: {0: "Thick Fat", 1: "Own Tempo", H: "Gluttony"},
heightm: 0.9,
weightkg: 71.5,
color: "Purple",
prevo: "spoink",
evoLevel: 32,
eggGroups: ["Field"],
},
spinda: {
num: 327,
name: "Spinda",
types: ["Normal"],
baseStats: {hp: 60, atk: 60, def: 60, spa: 60, spd: 60, spe: 60},
abilities: {0: "Own Tempo", 1: "Tangled Feet", H: "Contrary"},
heightm: 1.1,
weightkg: 5,
color: "Brown",
eggGroups: ["Field", "Human-Like"],
},
trapinch: {
num: 328,
name: "Trapinch",
types: ["Ground"],
baseStats: {hp: 45, atk: 100, def: 45, spa: 45, spd: 45, spe: 10},
abilities: {0: "Hyper Cutter", 1: "Arena Trap", H: "Sheer Force"},
heightm: 0.7,
weightkg: 15,
color: "Brown",
evos: ["vibrava"],
eggGroups: ["Bug", "Dragon"],
},
vibrava: {
num: 329,
name: "Vibrava",
types: ["Ground", "Dragon"],
baseStats: {hp: 50, atk: 70, def: 50, spa: 50, spd: 50, spe: 70},
abilities: {0: "Levitate"},
heightm: 1.1,
weightkg: 15.3,
color: "Green",
prevo: "trapinch",
evos: ["flygon"],
evoLevel: 35,
eggGroups: ["Bug", "Dragon"],
},
flygon: {
num: 330,
name: "Flygon",
types: ["Ground", "Dragon"],
baseStats: {hp: 80, atk: 100, def: 80, spa: 80, spd: 80, spe: 100},
abilities: {0: "Levitate"},
heightm: 2,
weightkg: 82,
color: "Green",
prevo: "vibrava",
evoLevel: 45,
eggGroups: ["Bug", "Dragon"],
},
cacnea: {
num: 331,
name: "Cacnea",
types: ["Grass"],
baseStats: {hp: 50, atk: 85, def: 40, spa: 85, spd: 40, spe: 35},
abilities: {0: "Sand Veil", H: "Water Absorb"},
heightm: 0.4,
weightkg: 51.3,
color: "Green",
evos: ["cacturne"],
eggGroups: ["Grass", "Human-Like"],
},
cacturne: {
num: 332,
name: "Cacturne",
types: ["Grass", "Dark"],
baseStats: {hp: 70, atk: 115, def: 60, spa: 115, spd: 60, spe: 55},
abilities: {0: "Sand Veil", H: "Water Absorb"},
heightm: 1.3,
weightkg: 77.4,
color: "Green",
prevo: "cacnea",
evoLevel: 32,
eggGroups: ["Grass", "Human-Like"],
},
swablu: {
num: 333,
name: "Swablu",
types: ["Normal", "Flying"],
baseStats: {hp: 45, atk: 40, def: 60, spa: 40, spd: 75, spe: 50},
abilities: {0: "Natural Cure", H: "Cloud Nine"},
heightm: 0.4,
weightkg: 1.2,
color: "Blue",
evos: ["altaria"],
eggGroups: ["Flying", "Dragon"],
},
altaria: {
num: 334,
name: "Altaria",
types: ["Dragon", "Flying"],
baseStats: {hp: 75, atk: 70, def: 90, spa: 70, spd: 105, spe: 80},
abilities: {0: "Natural Cure", H: "Cloud Nine"},
heightm: 1.1,
weightkg: 20.6,
color: "Blue",
prevo: "swablu",
evoLevel: 35,
eggGroups: ["Flying", "Dragon"],
otherFormes: ["altariamega"],
},
altariamega: {
num: 334,
name: "Altaria-Mega",
baseSpecies: "Altaria",
forme: "Mega",
types: ["Dragon", "Fairy"],
baseStats: {hp: 75, atk: 110, def: 110, spa: 110, spd: 105, spe: 80},
abilities: {0: "Pixilate"},
heightm: 1.5,
weightkg: 20.6,
color: "Blue",
eggGroups: ["Flying", "Dragon"],
requiredItem: "Altarianite",
},
zangoose: {
num: 335,
name: "Zangoose",
types: ["Normal"],
baseStats: {hp: 73, atk: 115, def: 60, spa: 60, spd: 60, spe: 90},
abilities: {0: "Immunity", H: "Toxic Boost"},
heightm: 1.3,
weightkg: 40.3,
color: "White",
eggGroups: ["Field"],
},
seviper: {
num: 336,
name: "Seviper",
types: ["Poison"],
baseStats: {hp: 73, atk: 100, def: 60, spa: 100, spd: 60, spe: 65},
abilities: {0: "Shed Skin", H: "Infiltrator"},
heightm: 2.7,
weightkg: 52.5,
color: "Black",
eggGroups: ["Field", "Dragon"],
},
lunatone: {
num: 337,
name: "Lunatone",
types: ["Rock", "Psychic"],
gender: "N",
baseStats: {hp: 90, atk: 55, def: 65, spa: 95, spd: 85, spe: 70},
abilities: {0: "Levitate"},
heightm: 1,
weightkg: 168,
color: "Yellow",
eggGroups: ["Mineral"],
},
solrock: {
num: 338,
name: "Solrock",
types: ["Rock", "Psychic"],
gender: "N",
baseStats: {hp: 90, atk: 95, def: 85, spa: 55, spd: 65, spe: 70},
abilities: {0: "Levitate"},
heightm: 1.2,
weightkg: 154,
color: "Red",
eggGroups: ["Mineral"],
},
barboach: {
num: 339,
name: "Barboach",
types: ["Water", "Ground"],
baseStats: {hp: 50, atk: 48, def: 43, spa: 46, spd: 41, spe: 60},
abilities: {0: "Oblivious", 1: "Anticipation", H: "Hydration"},
heightm: 0.4,
weightkg: 1.9,
color: "Gray",
evos: ["whiscash"],
eggGroups: ["Water 2"],
},
whiscash: {
num: 340,
name: "Whiscash",
types: ["Water", "Ground"],
baseStats: {hp: 110, atk: 78, def: 73, spa: 76, spd: 71, spe: 60},
abilities: {0: "Oblivious", 1: "Anticipation", H: "Hydration"},
heightm: 0.9,
weightkg: 23.6,
color: "Blue",
prevo: "barboach",
evoLevel: 30,
eggGroups: ["Water 2"],
},
corphish: {
num: 341,
name: "Corphish",
types: ["Water"],
baseStats: {hp: 43, atk: 80, def: 65, spa: 50, spd: 35, spe: 35},
abilities: {0: "Hyper Cutter", 1: "Shell Armor", H: "Adaptability"},
heightm: 0.6,
weightkg: 11.5,
color: "Red",
evos: ["crawdaunt"],
eggGroups: ["Water 1", "Water 3"],
},
crawdaunt: {
num: 342,
name: "Crawdaunt",
types: ["Water", "Dark"],
baseStats: {hp: 63, atk: 120, def: 85, spa: 90, spd: 55, spe: 55},
abilities: {0: "Hyper Cutter", 1: "Shell Armor", H: "Adaptability"},
heightm: 1.1,
weightkg: 32.8,
color: "Red",
prevo: "corphish",
evoLevel: 30,
eggGroups: ["Water 1", "Water 3"],
},
baltoy: {
num: 343,
name: "Baltoy",
types: ["Ground", "Psychic"],
gender: "N",
baseStats: {hp: 40, atk: 40, def: 55, spa: 40, spd: 70, spe: 55},
abilities: {0: "Levitate"},
heightm: 0.5,
weightkg: 21.5,
color: "Brown",
evos: ["claydol"],
eggGroups: ["Mineral"],
},
claydol: {
num: 344,
name: "Claydol",
types: ["Ground", "Psychic"],
gender: "N",
baseStats: {hp: 60, atk: 70, def: 105, spa: 70, spd: 120, spe: 75},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 108,
color: "Black",
prevo: "baltoy",
evoLevel: 36,
eggGroups: ["Mineral"],
},
lileep: {
num: 345,
name: "Lileep",
types: ["Rock", "Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 66, atk: 41, def: 77, spa: 61, spd: 87, spe: 23},
abilities: {0: "Suction Cups", H: "Storm Drain"},
heightm: 1,
weightkg: 23.8,
color: "Purple",
evos: ["cradily"],
eggGroups: ["Water 3"],
},
cradily: {
num: 346,
name: "Cradily",
types: ["Rock", "Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 86, atk: 81, def: 97, spa: 81, spd: 107, spe: 43},
abilities: {0: "Suction Cups", H: "Storm Drain"},
heightm: 1.5,
weightkg: 60.4,
color: "Green",
prevo: "lileep",
evoLevel: 40,
eggGroups: ["Water 3"],
},
anorith: {
num: 347,
name: "Anorith",
types: ["Rock", "Bug"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 45, atk: 95, def: 50, spa: 40, spd: 50, spe: 75},
abilities: {0: "Battle Armor", H: "Swift Swim"},
heightm: 0.7,
weightkg: 12.5,
color: "Gray",
evos: ["armaldo"],
eggGroups: ["Water 3"],
},
armaldo: {
num: 348,
name: "Armaldo",
types: ["Rock", "Bug"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 125, def: 100, spa: 70, spd: 80, spe: 45},
abilities: {0: "Battle Armor", H: "Swift Swim"},
heightm: 1.5,
weightkg: 68.2,
color: "Gray",
prevo: "anorith",
evoLevel: 40,
eggGroups: ["Water 3"],
},
feebas: {
num: 349,
name: "Feebas",
types: ["Water"],
baseStats: {hp: 20, atk: 15, def: 20, spa: 10, spd: 55, spe: 80},
abilities: {0: "Swift Swim", 1: "Oblivious", H: "Adaptability"},
heightm: 0.6,
weightkg: 7.4,
color: "Brown",
evos: ["milotic"],
eggGroups: ["Water 1", "Dragon"],
},
milotic: {
num: 350,
name: "Milotic",
types: ["Water"],
baseStats: {hp: 95, atk: 60, def: 79, spa: 100, spd: 125, spe: 81},
abilities: {0: "Marvel Scale", 1: "Competitive", H: "Cute Charm"},
heightm: 6.2,
weightkg: 162,
color: "Pink",
prevo: "feebas",
evoType: "trade",
evoItem: "Prism Scale",
eggGroups: ["Water 1", "Dragon"],
},
castform: {
num: 351,
name: "Castform",
types: ["Normal"],
baseStats: {hp: 70, atk: 70, def: 70, spa: 70, spd: 70, spe: 70},
abilities: {0: "Forecast"},
heightm: 0.3,
weightkg: 0.8,
color: "Gray",
eggGroups: ["Fairy", "Amorphous"],
otherFormes: ["castformsunny", "castformrainy", "castformsnowy"],
},
castformsunny: {
num: 351,
name: "Castform-Sunny",
baseSpecies: "Castform",
forme: "Sunny",
types: ["Fire"],
baseStats: {hp: 70, atk: 70, def: 70, spa: 70, spd: 70, spe: 70},
abilities: {0: "Forecast"},
heightm: 0.3,
weightkg: 0.8,
color: "Red",
eggGroups: ["Fairy", "Amorphous"],
requiredAbility: "Forecast",
battleOnly: "Castform",
},
castformrainy: {
num: 351,
name: "Castform-Rainy",
baseSpecies: "Castform",
forme: "Rainy",
types: ["Water"],
baseStats: {hp: 70, atk: 70, def: 70, spa: 70, spd: 70, spe: 70},
abilities: {0: "Forecast"},
heightm: 0.3,
weightkg: 0.8,
color: "Blue",
eggGroups: ["Fairy", "Amorphous"],
requiredAbility: "Forecast",
battleOnly: "Castform",
},
castformsnowy: {
num: 351,
name: "Castform-Snowy",
baseSpecies: "Castform",
forme: "Snowy",
types: ["Ice"],
baseStats: {hp: 70, atk: 70, def: 70, spa: 70, spd: 70, spe: 70},
abilities: {0: "Forecast"},
heightm: 0.3,
weightkg: 0.8,
color: "White",
eggGroups: ["Fairy", "Amorphous"],
requiredAbility: "Forecast",
battleOnly: "Castform",
},
kecleon: {
num: 352,
name: "Kecleon",
types: ["Normal"],
baseStats: {hp: 60, atk: 90, def: 70, spa: 60, spd: 120, spe: 40},
abilities: {0: "Color Change", H: "Protean"},
heightm: 1,
weightkg: 22,
color: "Green",
eggGroups: ["Field"],
},
shuppet: {
num: 353,
name: "Shuppet",
types: ["Ghost"],
baseStats: {hp: 44, atk: 75, def: 35, spa: 63, spd: 33, spe: 45},
abilities: {0: "Insomnia", 1: "Frisk", H: "Cursed Body"},
heightm: 0.6,
weightkg: 2.3,
color: "Black",
evos: ["banette"],
eggGroups: ["Amorphous"],
},
banette: {
num: 354,
name: "Banette",
types: ["Ghost"],
baseStats: {hp: 64, atk: 115, def: 65, spa: 83, spd: 63, spe: 65},
abilities: {0: "Insomnia", 1: "Frisk", H: "Cursed Body"},
heightm: 1.1,
weightkg: 12.5,
color: "Black",
prevo: "shuppet",
evoLevel: 37,
eggGroups: ["Amorphous"],
otherFormes: ["banettemega"],
},
banettemega: {
num: 354,
name: "Banette-Mega",
baseSpecies: "Banette",
forme: "Mega",
types: ["Ghost"],
baseStats: {hp: 64, atk: 165, def: 75, spa: 93, spd: 83, spe: 75},
abilities: {0: "Prankster"},
heightm: 1.2,
weightkg: 13,
color: "Black",
eggGroups: ["Amorphous"],
requiredItem: "Banettite",
},
duskull: {
num: 355,
name: "Duskull",
types: ["Ghost"],
baseStats: {hp: 20, atk: 40, def: 90, spa: 30, spd: 90, spe: 25},
abilities: {0: "Levitate", H: "Frisk"},
heightm: 0.8,
weightkg: 15,
color: "Black",
evos: ["dusclops"],
eggGroups: ["Amorphous"],
},
dusclops: {
num: 356,
name: "Dusclops",
types: ["Ghost"],
baseStats: {hp: 40, atk: 70, def: 130, spa: 60, spd: 130, spe: 25},
abilities: {0: "Pressure", H: "Frisk"},
heightm: 1.6,
weightkg: 30.6,
color: "Black",
prevo: "duskull",
evoLevel: 37,
evos: ["dusknoir"],
eggGroups: ["Amorphous"],
},
tropius: {
num: 357,
name: "Tropius",
types: ["Grass", "Flying"],
baseStats: {hp: 99, atk: 68, def: 83, spa: 72, spd: 87, spe: 51},
abilities: {0: "Chlorophyll", 1: "Solar Power", H: "Harvest"},
heightm: 2,
weightkg: 100,
color: "Green",
eggGroups: ["Monster", "Grass"],
},
chimecho: {
num: 358,
name: "Chimecho",
types: ["Psychic"],
baseStats: {hp: 75, atk: 50, def: 80, spa: 95, spd: 90, spe: 65},
abilities: {0: "Levitate"},
heightm: 0.6,
weightkg: 1,
color: "Blue",
prevo: "chingling",
evoType: "levelFriendship",
evoCondition: "at night",
eggGroups: ["Amorphous"],
canHatch: true,
},
absol: {
num: 359,
name: "Absol",
types: ["Dark"],
baseStats: {hp: 65, atk: 130, def: 60, spa: 75, spd: 60, spe: 75},
abilities: {0: "Pressure", 1: "Super Luck", H: "Justified"},
heightm: 1.2,
weightkg: 47,
color: "White",
eggGroups: ["Field"],
otherFormes: ["absolmega"],
},
absolmega: {
num: 359,
name: "Absol-Mega",
baseSpecies: "Absol",
forme: "Mega",
types: ["Dark"],
baseStats: {hp: 65, atk: 150, def: 60, spa: 115, spd: 60, spe: 115},
abilities: {0: "Magic Bounce"},
heightm: 1.2,
weightkg: 49,
color: "White",
eggGroups: ["Field"],
requiredItem: "Absolite",
},
wynaut: {
num: 360,
name: "Wynaut",
types: ["Psychic"],
baseStats: {hp: 95, atk: 23, def: 48, spa: 23, spd: 48, spe: 23},
abilities: {0: "Shadow Tag", H: "Telepathy"},
heightm: 0.6,
weightkg: 14,
color: "Blue",
evos: ["wobbuffet"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
snorunt: {
num: 361,
name: "Snorunt",
types: ["Ice"],
baseStats: {hp: 50, atk: 50, def: 50, spa: 50, spd: 50, spe: 50},
abilities: {0: "Inner Focus", 1: "Ice Body", H: "Moody"},
heightm: 0.7,
weightkg: 16.8,
color: "Gray",
evos: ["glalie", "froslass"],
eggGroups: ["Fairy", "Mineral"],
},
glalie: {
num: 362,
name: "Glalie",
types: ["Ice"],
baseStats: {hp: 80, atk: 80, def: 80, spa: 80, spd: 80, spe: 80},
abilities: {0: "Inner Focus", 1: "Ice Body", H: "Moody"},
heightm: 1.5,
weightkg: 256.5,
color: "Gray",
prevo: "snorunt",
evoLevel: 42,
eggGroups: ["Fairy", "Mineral"],
otherFormes: ["glaliemega"],
},
glaliemega: {
num: 362,
name: "Glalie-Mega",
baseSpecies: "Glalie",
forme: "Mega",
types: ["Ice"],
baseStats: {hp: 80, atk: 120, def: 80, spa: 120, spd: 80, spe: 100},
abilities: {0: "Refrigerate"},
heightm: 2.1,
weightkg: 350.2,
color: "Gray",
eggGroups: ["Fairy", "Mineral"],
requiredItem: "Glalitite",
},
spheal: {
num: 363,
name: "Spheal",
types: ["Ice", "Water"],
baseStats: {hp: 70, atk: 40, def: 50, spa: 55, spd: 50, spe: 25},
abilities: {0: "Thick Fat", 1: "Ice Body", H: "Oblivious"},
heightm: 0.8,
weightkg: 39.5,
color: "Blue",
evos: ["sealeo"],
eggGroups: ["Water 1", "Field"],
},
sealeo: {
num: 364,
name: "Sealeo",
types: ["Ice", "Water"],
baseStats: {hp: 90, atk: 60, def: 70, spa: 75, spd: 70, spe: 45},
abilities: {0: "Thick Fat", 1: "Ice Body", H: "Oblivious"},
heightm: 1.1,
weightkg: 87.6,
color: "Blue",
prevo: "spheal",
evoLevel: 32,
evos: ["walrein"],
eggGroups: ["Water 1", "Field"],
},
walrein: {
num: 365,
name: "Walrein",
types: ["Ice", "Water"],
baseStats: {hp: 110, atk: 80, def: 90, spa: 95, spd: 90, spe: 65},
abilities: {0: "Thick Fat", 1: "Ice Body", H: "Oblivious"},
heightm: 1.4,
weightkg: 150.6,
color: "Blue",
prevo: "sealeo",
evoLevel: 44,
eggGroups: ["Water 1", "Field"],
},
clamperl: {
num: 366,
name: "Clamperl",
types: ["Water"],
baseStats: {hp: 35, atk: 64, def: 85, spa: 74, spd: 55, spe: 32},
abilities: {0: "Shell Armor", H: "Rattled"},
heightm: 0.4,
weightkg: 52.5,
color: "Blue",
evos: ["huntail", "gorebyss"],
eggGroups: ["Water 1"],
},
huntail: {
num: 367,
name: "Huntail",
types: ["Water"],
baseStats: {hp: 55, atk: 104, def: 105, spa: 94, spd: 75, spe: 52},
abilities: {0: "Swift Swim", H: "Water Veil"},
heightm: 1.7,
weightkg: 27,
color: "Blue",
prevo: "clamperl",
evoType: "trade",
evoItem: "Deep Sea Tooth",
eggGroups: ["Water 1"],
},
gorebyss: {
num: 368,
name: "Gorebyss",
types: ["Water"],
baseStats: {hp: 55, atk: 84, def: 105, spa: 114, spd: 75, spe: 52},
abilities: {0: "Swift Swim", H: "Hydration"},
heightm: 1.8,
weightkg: 22.6,
color: "Pink",
prevo: "clamperl",
evoType: "trade",
evoItem: "Deep Sea Scale",
eggGroups: ["Water 1"],
},
relicanth: {
num: 369,
name: "Relicanth",
types: ["Water", "Rock"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 100, atk: 90, def: 130, spa: 45, spd: 65, spe: 55},
abilities: {0: "Swift Swim", 1: "Rock Head", H: "Sturdy"},
heightm: 1,
weightkg: 23.4,
color: "Gray",
eggGroups: ["Water 1", "Water 2"],
},
luvdisc: {
num: 370,
name: "Luvdisc",
types: ["Water"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 43, atk: 30, def: 55, spa: 40, spd: 65, spe: 97},
abilities: {0: "Swift Swim", H: "Hydration"},
heightm: 0.6,
weightkg: 8.7,
color: "Pink",
eggGroups: ["Water 2"],
},
bagon: {
num: 371,
name: "Bagon",
types: ["Dragon"],
baseStats: {hp: 45, atk: 75, def: 60, spa: 40, spd: 30, spe: 50},
abilities: {0: "Rock Head", H: "Sheer Force"},
heightm: 0.6,
weightkg: 42.1,
color: "Blue",
evos: ["shelgon"],
eggGroups: ["Dragon"],
},
shelgon: {
num: 372,
name: "Shelgon",
types: ["Dragon"],
baseStats: {hp: 65, atk: 95, def: 100, spa: 60, spd: 50, spe: 50},
abilities: {0: "Rock Head", H: "Overcoat"},
heightm: 1.1,
weightkg: 110.5,
color: "White",
prevo: "bagon",
evoLevel: 30,
evos: ["salamence"],
eggGroups: ["Dragon"],
},
salamence: {
num: 373,
name: "Salamence",
types: ["Dragon", "Flying"],
baseStats: {hp: 95, atk: 135, def: 80, spa: 110, spd: 80, spe: 100},
abilities: {0: "Intimidate", H: "Moxie"},
heightm: 1.5,
weightkg: 102.6,
color: "Blue",
prevo: "shelgon",
evoLevel: 50,
eggGroups: ["Dragon"],
otherFormes: ["salamencemega"],
},
salamencemega: {
num: 373,
name: "Salamence-Mega",
baseSpecies: "Salamence",
forme: "Mega",
types: ["Dragon", "Flying"],
baseStats: {hp: 95, atk: 145, def: 130, spa: 120, spd: 90, spe: 120},
abilities: {0: "Aerilate"},
heightm: 1.8,
weightkg: 112.6,
color: "Blue",
eggGroups: ["Dragon"],
requiredItem: "Salamencite",
},
beldum: {
num: 374,
name: "Beldum",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 40, atk: 55, def: 80, spa: 35, spd: 60, spe: 30},
abilities: {0: "Clear Body", H: "Light Metal"},
heightm: 0.6,
weightkg: 95.2,
color: "Blue",
evos: ["metang"],
eggGroups: ["Mineral"],
},
metang: {
num: 375,
name: "Metang",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 60, atk: 75, def: 100, spa: 55, spd: 80, spe: 50},
abilities: {0: "Clear Body", H: "Light Metal"},
heightm: 1.2,
weightkg: 202.5,
color: "Blue",
prevo: "beldum",
evos: ["metagross"],
evoLevel: 20,
eggGroups: ["Mineral"],
},
metagross: {
num: 376,
name: "Metagross",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 80, atk: 135, def: 130, spa: 95, spd: 90, spe: 70},
abilities: {0: "Clear Body", H: "Light Metal"},
heightm: 1.6,
weightkg: 550,
color: "Blue",
prevo: "metang",
evoLevel: 45,
eggGroups: ["Mineral"],
otherFormes: ["metagrossmega"],
},
metagrossmega: {
num: 376,
name: "Metagross-Mega",
baseSpecies: "Metagross",
forme: "Mega",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 80, atk: 145, def: 150, spa: 105, spd: 110, spe: 110},
abilities: {0: "Tough Claws"},
heightm: 2.5,
weightkg: 942.9,
color: "Blue",
eggGroups: ["Mineral"],
requiredItem: "Metagrossite",
},
regirock: {
num: 377,
name: "Regirock",
types: ["Rock"],
gender: "N",
baseStats: {hp: 80, atk: 100, def: 200, spa: 50, spd: 100, spe: 50},
abilities: {0: "Clear Body", H: "Sturdy"},
heightm: 1.7,
weightkg: 230,
color: "Brown",
eggGroups: ["Undiscovered"],
},
regice: {
num: 378,
name: "Regice",
types: ["Ice"],
gender: "N",
baseStats: {hp: 80, atk: 50, def: 100, spa: 100, spd: 200, spe: 50},
abilities: {0: "Clear Body", H: "Ice Body"},
heightm: 1.8,
weightkg: 175,
color: "Blue",
eggGroups: ["Undiscovered"],
},
registeel: {
num: 379,
name: "Registeel",
types: ["Steel"],
gender: "N",
baseStats: {hp: 80, atk: 75, def: 150, spa: 75, spd: 150, spe: 50},
abilities: {0: "Clear Body", H: "Light Metal"},
heightm: 1.9,
weightkg: 205,
color: "Gray",
eggGroups: ["Undiscovered"],
},
latias: {
num: 380,
name: "Latias",
types: ["Dragon", "Psychic"],
gender: "F",
baseStats: {hp: 80, atk: 80, def: 90, spa: 110, spd: 130, spe: 110},
abilities: {0: "Levitate"},
heightm: 1.4,
weightkg: 40,
color: "Red",
eggGroups: ["Undiscovered"],
otherFormes: ["latiasmega"],
},
latiasmega: {
num: 380,
name: "Latias-Mega",
baseSpecies: "Latias",
forme: "Mega",
types: ["Dragon", "Psychic"],
gender: "F",
baseStats: {hp: 80, atk: 100, def: 120, spa: 140, spd: 150, spe: 110},
abilities: {0: "Levitate"},
heightm: 1.8,
weightkg: 52,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Latiasite",
},
latios: {
num: 381,
name: "Latios",
types: ["Dragon", "Psychic"],
gender: "M",
baseStats: {hp: 80, atk: 90, def: 80, spa: 130, spd: 110, spe: 110},
abilities: {0: "Levitate"},
heightm: 2,
weightkg: 60,
color: "Blue",
eggGroups: ["Undiscovered"],
otherFormes: ["latiosmega"],
},
latiosmega: {
num: 381,
name: "Latios-Mega",
baseSpecies: "Latios",
forme: "Mega",
types: ["Dragon", "Psychic"],
gender: "M",
baseStats: {hp: 80, atk: 130, def: 100, spa: 160, spd: 120, spe: 110},
abilities: {0: "Levitate"},
heightm: 2.3,
weightkg: 70,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Latiosite",
},
kyogre: {
num: 382,
name: "Kyogre",
types: ["Water"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 90, spa: 150, spd: 140, spe: 90},
abilities: {0: "Drizzle"},
heightm: 4.5,
weightkg: 352,
color: "Blue",
eggGroups: ["Undiscovered"],
otherFormes: ["kyogreprimal"],
},
kyogreprimal: {
num: 382,
name: "Kyogre-Primal",
baseSpecies: "Kyogre",
forme: "Primal",
types: ["Water"],
gender: "N",
baseStats: {hp: 100, atk: 150, def: 90, spa: 180, spd: 160, spe: 90},
abilities: {0: "Primordial Sea"},
heightm: 9.8,
weightkg: 430,
color: "Blue",
eggGroups: ["Undiscovered"],
requiredItem: "Blue Orb",
},
groudon: {
num: 383,
name: "Groudon",
types: ["Ground"],
gender: "N",
baseStats: {hp: 100, atk: 150, def: 140, spa: 100, spd: 90, spe: 90},
abilities: {0: "Drought"},
heightm: 3.5,
weightkg: 950,
color: "Red",
eggGroups: ["Undiscovered"],
otherFormes: ["groudonprimal"],
},
groudonprimal: {
num: 383,
name: "Groudon-Primal",
baseSpecies: "Groudon",
forme: "Primal",
types: ["Ground", "Fire"],
gender: "N",
baseStats: {hp: 100, atk: 180, def: 160, spa: 150, spd: 90, spe: 90},
abilities: {0: "Desolate Land"},
heightm: 5,
weightkg: 999.7,
color: "Red",
eggGroups: ["Undiscovered"],
requiredItem: "Red Orb",
},
rayquaza: {
num: 384,
name: "Rayquaza",
types: ["Dragon", "Flying"],
gender: "N",
baseStats: {hp: 105, atk: 150, def: 90, spa: 150, spd: 90, spe: 95},
abilities: {0: "Air Lock"},
heightm: 7,
weightkg: 206.5,
color: "Green",
eggGroups: ["Undiscovered"],
otherFormes: ["rayquazamega"],
},
rayquazamega: {
num: 384,
name: "Rayquaza-Mega",
baseSpecies: "Rayquaza",
forme: "Mega",
types: ["Dragon", "Flying"],
gender: "N",
baseStats: {hp: 105, atk: 180, def: 100, spa: 180, spd: 100, spe: 115},
abilities: {0: "Delta Stream"},
heightm: 10.8,
weightkg: 392,
color: "Green",
eggGroups: ["Undiscovered"],
requiredMove: "Dragon Ascent",
},
jirachi: {
num: 385,
name: "Jirachi",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Serene Grace"},
heightm: 0.3,
weightkg: 1.1,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
deoxys: {
num: 386,
name: "Deoxys",
baseForme: "Normal",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 50, atk: 150, def: 50, spa: 150, spd: 50, spe: 150},
abilities: {0: "Pressure"},
heightm: 1.7,
weightkg: 60.8,
color: "Red",
eggGroups: ["Undiscovered"],
otherFormes: ["deoxysattack", "deoxysdefense", "deoxysspeed"],
},
deoxysattack: {
num: 386,
name: "Deoxys-Attack",
baseSpecies: "Deoxys",
forme: "Attack",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 50, atk: 180, def: 20, spa: 180, spd: 20, spe: 150},
abilities: {0: "Pressure"},
heightm: 1.7,
weightkg: 60.8,
color: "Red",
eggGroups: ["Undiscovered"],
inheritsFrom: "deoxys",
},
deoxysdefense: {
num: 386,
name: "Deoxys-Defense",
baseSpecies: "Deoxys",
forme: "Defense",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 50, atk: 70, def: 160, spa: 70, spd: 160, spe: 90},
abilities: {0: "Pressure"},
heightm: 1.7,
weightkg: 60.8,
color: "Red",
eggGroups: ["Undiscovered"],
inheritsFrom: "deoxys",
},
deoxysspeed: {
num: 386,
name: "Deoxys-Speed",
baseSpecies: "Deoxys",
forme: "Speed",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 50, atk: 95, def: 90, spa: 95, spd: 90, spe: 180},
abilities: {0: "Pressure"},
heightm: 1.7,
weightkg: 60.8,
color: "Red",
eggGroups: ["Undiscovered"],
inheritsFrom: "deoxys",
},
turtwig: {
num: 387,
name: "Turtwig",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 55, atk: 68, def: 64, spa: 45, spd: 55, spe: 31},
abilities: {0: "Overgrow", H: "Shell Armor"},
heightm: 0.4,
weightkg: 10.2,
color: "Green",
evos: ["grotle"],
eggGroups: ["Monster", "Grass"],
},
grotle: {
num: 388,
name: "Grotle",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 89, def: 85, spa: 55, spd: 65, spe: 36},
abilities: {0: "Overgrow", H: "Shell Armor"},
heightm: 1.1,
weightkg: 97,
color: "Green",
prevo: "turtwig",
evoLevel: 18,
evos: ["torterra"],
eggGroups: ["Monster", "Grass"],
},
torterra: {
num: 389,
name: "Torterra",
types: ["Grass", "Ground"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 95, atk: 109, def: 105, spa: 75, spd: 85, spe: 56},
abilities: {0: "Overgrow", H: "Shell Armor"},
heightm: 2.2,
weightkg: 310,
color: "Green",
prevo: "grotle",
evoLevel: 32,
eggGroups: ["Monster", "Grass"],
},
chimchar: {
num: 390,
name: "Chimchar",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 44, atk: 58, def: 44, spa: 58, spd: 44, spe: 61},
abilities: {0: "Blaze", H: "Iron Fist"},
heightm: 0.5,
weightkg: 6.2,
color: "Brown",
evos: ["monferno"],
eggGroups: ["Field", "Human-Like"],
},
monferno: {
num: 391,
name: "Monferno",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 64, atk: 78, def: 52, spa: 78, spd: 52, spe: 81},
abilities: {0: "Blaze", H: "Iron Fist"},
heightm: 0.9,
weightkg: 22,
color: "Brown",
prevo: "chimchar",
evoLevel: 14,
evos: ["infernape"],
eggGroups: ["Field", "Human-Like"],
},
infernape: {
num: 392,
name: "Infernape",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 76, atk: 104, def: 71, spa: 104, spd: 71, spe: 108},
abilities: {0: "Blaze", H: "Iron Fist"},
heightm: 1.2,
weightkg: 55,
color: "Brown",
prevo: "monferno",
evoLevel: 36,
eggGroups: ["Field", "Human-Like"],
},
piplup: {
num: 393,
name: "Piplup",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 53, atk: 51, def: 53, spa: 61, spd: 56, spe: 40},
abilities: {0: "Torrent", H: "Defiant"},
heightm: 0.4,
weightkg: 5.2,
color: "Blue",
evos: ["prinplup"],
eggGroups: ["Water 1", "Field"],
},
prinplup: {
num: 394,
name: "Prinplup",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 64, atk: 66, def: 68, spa: 81, spd: 76, spe: 50},
abilities: {0: "Torrent", H: "Defiant"},
heightm: 0.8,
weightkg: 23,
color: "Blue",
prevo: "piplup",
evoLevel: 16,
evos: ["empoleon"],
eggGroups: ["Water 1", "Field"],
},
empoleon: {
num: 395,
name: "Empoleon",
types: ["Water", "Steel"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 84, atk: 86, def: 88, spa: 111, spd: 101, spe: 60},
abilities: {0: "Torrent", H: "Defiant"},
heightm: 1.7,
weightkg: 84.5,
color: "Blue",
prevo: "prinplup",
evoLevel: 36,
eggGroups: ["Water 1", "Field"],
},
starly: {
num: 396,
name: "Starly",
types: ["Normal", "Flying"],
baseStats: {hp: 40, atk: 55, def: 30, spa: 30, spd: 30, spe: 60},
abilities: {0: "Keen Eye", H: "Reckless"},
heightm: 0.3,
weightkg: 2,
color: "Brown",
evos: ["staravia"],
eggGroups: ["Flying"],
},
staravia: {
num: 397,
name: "Staravia",
types: ["Normal", "Flying"],
baseStats: {hp: 55, atk: 75, def: 50, spa: 40, spd: 40, spe: 80},
abilities: {0: "Intimidate", H: "Reckless"},
heightm: 0.6,
weightkg: 15.5,
color: "Brown",
prevo: "starly",
evoLevel: 14,
evos: ["staraptor"],
eggGroups: ["Flying"],
},
staraptor: {
num: 398,
name: "Staraptor",
types: ["Normal", "Flying"],
baseStats: {hp: 85, atk: 120, def: 70, spa: 50, spd: 60, spe: 100},
abilities: {0: "Intimidate", H: "Reckless"},
heightm: 1.2,
weightkg: 24.9,
color: "Brown",
prevo: "staravia",
evoLevel: 34,
eggGroups: ["Flying"],
},
bidoof: {
num: 399,
name: "Bidoof",
types: ["Normal"],
baseStats: {hp: 59, atk: 45, def: 40, spa: 35, spd: 40, spe: 31},
abilities: {0: "Simple", 1: "Unaware", H: "Moody"},
heightm: 0.5,
weightkg: 20,
color: "Brown",
evos: ["bibarel"],
eggGroups: ["Water 1", "Field"],
},
bibarel: {
num: 400,
name: "Bibarel",
types: ["Normal", "Water"],
baseStats: {hp: 79, atk: 85, def: 60, spa: 55, spd: 60, spe: 71},
abilities: {0: "Simple", 1: "Unaware", H: "Moody"},
heightm: 1,
weightkg: 31.5,
color: "Brown",
prevo: "bidoof",
evoLevel: 15,
eggGroups: ["Water 1", "Field"],
},
kricketot: {
num: 401,
name: "Kricketot",
types: ["Bug"],
baseStats: {hp: 37, atk: 25, def: 41, spa: 25, spd: 41, spe: 25},
abilities: {0: "Shed Skin", H: "Run Away"},
heightm: 0.3,
weightkg: 2.2,
color: "Red",
evos: ["kricketune"],
eggGroups: ["Bug"],
},
kricketune: {
num: 402,
name: "Kricketune",
types: ["Bug"],
baseStats: {hp: 77, atk: 85, def: 51, spa: 55, spd: 51, spe: 65},
abilities: {0: "Swarm", H: "Technician"},
heightm: 1,
weightkg: 25.5,
color: "Red",
prevo: "kricketot",
evoLevel: 10,
eggGroups: ["Bug"],
},
shinx: {
num: 403,
name: "Shinx",
types: ["Electric"],
baseStats: {hp: 45, atk: 65, def: 34, spa: 40, spd: 34, spe: 45},
abilities: {0: "Rivalry", 1: "Intimidate", H: "Guts"},
heightm: 0.5,
weightkg: 9.5,
color: "Blue",
evos: ["luxio"],
eggGroups: ["Field"],
},
luxio: {
num: 404,
name: "Luxio",
types: ["Electric"],
baseStats: {hp: 60, atk: 85, def: 49, spa: 60, spd: 49, spe: 60},
abilities: {0: "Rivalry", 1: "Intimidate", H: "Guts"},
heightm: 0.9,
weightkg: 30.5,
color: "Blue",
prevo: "shinx",
evoLevel: 15,
evos: ["luxray"],
eggGroups: ["Field"],
},
luxray: {
num: 405,
name: "Luxray",
types: ["Electric"],
baseStats: {hp: 80, atk: 120, def: 79, spa: 95, spd: 79, spe: 70},
abilities: {0: "Rivalry", 1: "Intimidate", H: "Guts"},
heightm: 1.4,
weightkg: 42,
color: "Blue",
prevo: "luxio",
evoLevel: 30,
eggGroups: ["Field"],
},
budew: {
num: 406,
name: "Budew",
types: ["Grass", "Poison"],
baseStats: {hp: 40, atk: 30, def: 35, spa: 50, spd: 70, spe: 55},
abilities: {0: "Natural Cure", 1: "Poison Point", H: "Leaf Guard"},
heightm: 0.2,
weightkg: 1.2,
color: "Green",
evos: ["roselia"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
roserade: {
num: 407,
name: "Roserade",
types: ["Grass", "Poison"],
baseStats: {hp: 60, atk: 70, def: 65, spa: 125, spd: 105, spe: 90},
abilities: {0: "Natural Cure", 1: "Poison Point", H: "Technician"},
heightm: 0.9,
weightkg: 14.5,
color: "Green",
prevo: "roselia",
evoType: "useItem",
evoItem: "Shiny Stone",
eggGroups: ["Fairy", "Grass"],
},
cranidos: {
num: 408,
name: "Cranidos",
types: ["Rock"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 67, atk: 125, def: 40, spa: 30, spd: 30, spe: 58},
abilities: {0: "Mold Breaker", H: "Sheer Force"},
heightm: 0.9,
weightkg: 31.5,
color: "Blue",
evos: ["rampardos"],
eggGroups: ["Monster"],
},
rampardos: {
num: 409,
name: "Rampardos",
types: ["Rock"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 97, atk: 165, def: 60, spa: 65, spd: 50, spe: 58},
abilities: {0: "Mold Breaker", H: "Sheer Force"},
heightm: 1.6,
weightkg: 102.5,
color: "Blue",
prevo: "cranidos",
evoLevel: 30,
eggGroups: ["Monster"],
},
shieldon: {
num: 410,
name: "Shieldon",
types: ["Rock", "Steel"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 30, atk: 42, def: 118, spa: 42, spd: 88, spe: 30},
abilities: {0: "Sturdy", H: "Soundproof"},
heightm: 0.5,
weightkg: 57,
color: "Gray",
evos: ["bastiodon"],
eggGroups: ["Monster"],
},
bastiodon: {
num: 411,
name: "Bastiodon",
types: ["Rock", "Steel"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 52, def: 168, spa: 47, spd: 138, spe: 30},
abilities: {0: "Sturdy", H: "Soundproof"},
heightm: 1.3,
weightkg: 149.5,
color: "Gray",
prevo: "shieldon",
evoLevel: 30,
eggGroups: ["Monster"],
},
burmy: {
num: 412,
name: "Burmy",
baseForme: "Plant",
types: ["Bug"],
baseStats: {hp: 40, atk: 29, def: 45, spa: 29, spd: 45, spe: 36},
abilities: {0: "Shed Skin", H: "Overcoat"},
heightm: 0.2,
weightkg: 3.4,
color: "Green",
evos: ["wormadam", "wormadamsandy", "wormadamtrash", "mothim"],
eggGroups: ["Bug"],
cosmeticFormes: ["burmysandy", "burmytrash"],
},
wormadam: {
num: 413,
name: "Wormadam",
baseForme: "Plant",
types: ["Bug", "Grass"],
gender: "F",
baseStats: {hp: 60, atk: 59, def: 85, spa: 79, spd: 105, spe: 36},
abilities: {0: "Anticipation", H: "Overcoat"},
heightm: 0.5,
weightkg: 6.5,
color: "Green",
prevo: "burmy",
evoLevel: 20,
eggGroups: ["Bug"],
otherFormes: ["wormadamsandy", "wormadamtrash"],
},
wormadamsandy: {
num: 413,
name: "Wormadam-Sandy",
baseSpecies: "Wormadam",
forme: "Sandy",
types: ["Bug", "Ground"],
gender: "F",
baseStats: {hp: 60, atk: 79, def: 105, spa: 59, spd: 85, spe: 36},
abilities: {0: "Anticipation", H: "Overcoat"},
heightm: 0.5,
weightkg: 6.5,
color: "Brown",
prevo: "burmy",
evoLevel: 20,
eggGroups: ["Bug"],
},
wormadamtrash: {
num: 413,
name: "Wormadam-Trash",
baseSpecies: "Wormadam",
forme: "Trash",
types: ["Bug", "Steel"],
gender: "F",
baseStats: {hp: 60, atk: 69, def: 95, spa: 69, spd: 95, spe: 36},
abilities: {0: "Anticipation", H: "Overcoat"},
heightm: 0.5,
weightkg: 6.5,
color: "Red",
prevo: "burmy",
evoLevel: 20,
eggGroups: ["Bug"],
},
mothim: {
num: 414,
name: "Mothim",
types: ["Bug", "Flying"],
gender: "M",
baseStats: {hp: 70, atk: 94, def: 50, spa: 94, spd: 50, spe: 66},
abilities: {0: "Swarm", H: "Tinted Lens"},
heightm: 0.9,
weightkg: 23.3,
color: "Yellow",
prevo: "burmy",
evoLevel: 20,
eggGroups: ["Bug"],
},
combee: {
num: 415,
name: "Combee",
types: ["Bug", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 30, atk: 30, def: 42, spa: 30, spd: 42, spe: 70},
abilities: {0: "Honey Gather", H: "Hustle"},
heightm: 0.3,
weightkg: 5.5,
color: "Yellow",
evos: ["vespiquen"],
eggGroups: ["Bug"],
},
vespiquen: {
num: 416,
name: "Vespiquen",
types: ["Bug", "Flying"],
gender: "F",
baseStats: {hp: 70, atk: 80, def: 102, spa: 80, spd: 102, spe: 40},
abilities: {0: "Pressure", H: "Unnerve"},
heightm: 1.2,
weightkg: 38.5,
color: "Yellow",
prevo: "combee",
evoLevel: 21,
eggGroups: ["Bug"],
},
pachirisu: {
num: 417,
name: "Pachirisu",
types: ["Electric"],
baseStats: {hp: 60, atk: 45, def: 70, spa: 45, spd: 90, spe: 95},
abilities: {0: "Run Away", 1: "Pickup", H: "Volt Absorb"},
heightm: 0.4,
weightkg: 3.9,
color: "White",
eggGroups: ["Field", "Fairy"],
},
buizel: {
num: 418,
name: "Buizel",
types: ["Water"],
baseStats: {hp: 55, atk: 65, def: 35, spa: 60, spd: 30, spe: 85},
abilities: {0: "Swift Swim", H: "Water Veil"},
heightm: 0.7,
weightkg: 29.5,
color: "Brown",
evos: ["floatzel"],
eggGroups: ["Water 1", "Field"],
},
floatzel: {
num: 419,
name: "Floatzel",
types: ["Water"],
baseStats: {hp: 85, atk: 105, def: 55, spa: 85, spd: 50, spe: 115},
abilities: {0: "Swift Swim", H: "Water Veil"},
heightm: 1.1,
weightkg: 33.5,
color: "Brown",
prevo: "buizel",
evoLevel: 26,
eggGroups: ["Water 1", "Field"],
},
cherubi: {
num: 420,
name: "Cherubi",
types: ["Grass"],
baseStats: {hp: 45, atk: 35, def: 45, spa: 62, spd: 53, spe: 35},
abilities: {0: "Chlorophyll"},
heightm: 0.4,
weightkg: 3.3,
color: "Pink",
evos: ["cherrim"],
eggGroups: ["Fairy", "Grass"],
},
cherrim: {
num: 421,
name: "Cherrim",
baseForme: "Overcast",
types: ["Grass"],
baseStats: {hp: 70, atk: 60, def: 70, spa: 87, spd: 78, spe: 85},
abilities: {0: "Flower Gift"},
heightm: 0.5,
weightkg: 9.3,
color: "Purple",
prevo: "cherubi",
evoLevel: 25,
eggGroups: ["Fairy", "Grass"],
otherFormes: ["cherrimsunshine"],
},
cherrimsunshine: {
num: 421,
name: "Cherrim-Sunshine",
baseSpecies: "Cherrim",
forme: "Sunshine",
types: ["Grass"],
baseStats: {hp: 70, atk: 60, def: 70, spa: 87, spd: 78, spe: 85},
abilities: {0: "Flower Gift"},
heightm: 0.5,
weightkg: 9.3,
color: "Pink",
prevo: "cherubi",
evoLevel: 25,
eggGroups: ["Fairy", "Grass"],
requiredAbility: "Flower Gift",
battleOnly: "Cherrim",
},
shellos: {
num: 422,
name: "Shellos",
baseForme: "West",
types: ["Water"],
baseStats: {hp: 76, atk: 48, def: 48, spa: 57, spd: 62, spe: 34},
abilities: {0: "Sticky Hold", 1: "Storm Drain", H: "Sand Force"},
heightm: 0.3,
weightkg: 6.3,
color: "Purple",
evos: ["gastrodon"],
eggGroups: ["Water 1", "Amorphous"],
cosmeticFormes: ["shelloseast"],
},
gastrodon: {
num: 423,
name: "Gastrodon",
baseForme: "West",
types: ["Water", "Ground"],
baseStats: {hp: 111, atk: 83, def: 68, spa: 92, spd: 82, spe: 39},
abilities: {0: "Sticky Hold", 1: "Storm Drain", H: "Sand Force"},
heightm: 0.9,
weightkg: 29.9,
color: "Purple",
prevo: "shellos",
evoLevel: 30,
eggGroups: ["Water 1", "Amorphous"],
cosmeticFormes: ["gastrodoneast"],
},
ambipom: {
num: 424,
name: "Ambipom",
types: ["Normal"],
baseStats: {hp: 75, atk: 100, def: 66, spa: 60, spd: 66, spe: 115},
abilities: {0: "Technician", 1: "Pickup", H: "Skill Link"},
heightm: 1.2,
weightkg: 20.3,
color: "Purple",
prevo: "aipom",
evoType: "levelMove",
evoMove: "Double Hit",
eggGroups: ["Field"],
},
drifloon: {
num: 425,
name: "Drifloon",
types: ["Ghost", "Flying"],
baseStats: {hp: 90, atk: 50, def: 34, spa: 60, spd: 44, spe: 70},
abilities: {0: "Aftermath", 1: "Unburden", H: "Flare Boost"},
heightm: 0.4,
weightkg: 1.2,
color: "Purple",
evos: ["drifblim"],
eggGroups: ["Amorphous"],
},
drifblim: {
num: 426,
name: "Drifblim",
types: ["Ghost", "Flying"],
baseStats: {hp: 150, atk: 80, def: 44, spa: 90, spd: 54, spe: 80},
abilities: {0: "Aftermath", 1: "Unburden", H: "Flare Boost"},
heightm: 1.2,
weightkg: 15,
color: "Purple",
prevo: "drifloon",
evoLevel: 28,
eggGroups: ["Amorphous"],
},
buneary: {
num: 427,
name: "Buneary",
types: ["Normal"],
baseStats: {hp: 55, atk: 66, def: 44, spa: 44, spd: 56, spe: 85},
abilities: {0: "Run Away", 1: "Klutz", H: "Limber"},
heightm: 0.4,
weightkg: 5.5,
color: "Brown",
evos: ["lopunny"],
eggGroups: ["Field", "Human-Like"],
},
lopunny: {
num: 428,
name: "Lopunny",
types: ["Normal"],
baseStats: {hp: 65, atk: 76, def: 84, spa: 54, spd: 96, spe: 105},
abilities: {0: "Cute Charm", 1: "Klutz", H: "Limber"},
heightm: 1.2,
weightkg: 33.3,
color: "Brown",
prevo: "buneary",
evoType: "levelFriendship",
eggGroups: ["Field", "Human-Like"],
otherFormes: ["lopunnymega"],
},
lopunnymega: {
num: 428,
name: "Lopunny-Mega",
baseSpecies: "Lopunny",
forme: "Mega",
types: ["Normal", "Fighting"],
baseStats: {hp: 65, atk: 136, def: 94, spa: 54, spd: 96, spe: 135},
abilities: {0: "Scrappy"},
heightm: 1.3,
weightkg: 28.3,
color: "Brown",
eggGroups: ["Field", "Human-Like"],
requiredItem: "Lopunnite",
},
mismagius: {
num: 429,
name: "Mismagius",
types: ["Ghost"],
baseStats: {hp: 60, atk: 60, def: 60, spa: 105, spd: 105, spe: 105},
abilities: {0: "Levitate"},
heightm: 0.9,
weightkg: 4.4,
color: "Purple",
prevo: "misdreavus",
evoType: "useItem",
evoItem: "Dusk Stone",
eggGroups: ["Amorphous"],
},
honchkrow: {
num: 430,
name: "Honchkrow",
types: ["Dark", "Flying"],
baseStats: {hp: 100, atk: 125, def: 52, spa: 105, spd: 52, spe: 71},
abilities: {0: "Insomnia", 1: "Super Luck", H: "Moxie"},
heightm: 0.9,
weightkg: 27.3,
color: "Black",
prevo: "murkrow",
evoType: "useItem",
evoItem: "Dusk Stone",
eggGroups: ["Flying"],
},
glameow: {
num: 431,
name: "Glameow",
types: ["Normal"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 49, atk: 55, def: 42, spa: 42, spd: 37, spe: 85},
abilities: {0: "Limber", 1: "Own Tempo", H: "Keen Eye"},
heightm: 0.5,
weightkg: 3.9,
color: "Gray",
evos: ["purugly"],
eggGroups: ["Field"],
},
purugly: {
num: 432,
name: "Purugly",
types: ["Normal"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 71, atk: 82, def: 64, spa: 64, spd: 59, spe: 112},
abilities: {0: "Thick Fat", 1: "Own Tempo", H: "Defiant"},
heightm: 1,
weightkg: 43.8,
color: "Gray",
prevo: "glameow",
evoLevel: 38,
eggGroups: ["Field"],
},
chingling: {
num: 433,
name: "Chingling",
types: ["Psychic"],
baseStats: {hp: 45, atk: 30, def: 50, spa: 65, spd: 50, spe: 45},
abilities: {0: "Levitate"},
heightm: 0.2,
weightkg: 0.6,
color: "Yellow",
evos: ["chimecho"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
stunky: {
num: 434,
name: "Stunky",
types: ["Poison", "Dark"],
baseStats: {hp: 63, atk: 63, def: 47, spa: 41, spd: 41, spe: 74},
abilities: {0: "Stench", 1: "Aftermath", H: "Keen Eye"},
heightm: 0.4,
weightkg: 19.2,
color: "Purple",
evos: ["skuntank"],
eggGroups: ["Field"],
},
skuntank: {
num: 435,
name: "Skuntank",
types: ["Poison", "Dark"],
baseStats: {hp: 103, atk: 93, def: 67, spa: 71, spd: 61, spe: 84},
abilities: {0: "Stench", 1: "Aftermath", H: "Keen Eye"},
heightm: 1,
weightkg: 38,
color: "Purple",
prevo: "stunky",
evoLevel: 34,
eggGroups: ["Field"],
},
bronzor: {
num: 436,
name: "Bronzor",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 57, atk: 24, def: 86, spa: 24, spd: 86, spe: 23},
abilities: {0: "Levitate", 1: "Heatproof", H: "Heavy Metal"},
heightm: 0.5,
weightkg: 60.5,
color: "Green",
evos: ["bronzong"],
eggGroups: ["Mineral"],
},
bronzong: {
num: 437,
name: "Bronzong",
types: ["Steel", "Psychic"],
gender: "N",
baseStats: {hp: 67, atk: 89, def: 116, spa: 79, spd: 116, spe: 33},
abilities: {0: "Levitate", 1: "Heatproof", H: "Heavy Metal"},
heightm: 1.3,
weightkg: 187,
color: "Green",
prevo: "bronzor",
evoLevel: 33,
eggGroups: ["Mineral"],
},
bonsly: {
num: 438,
name: "Bonsly",
types: ["Rock"],
baseStats: {hp: 50, atk: 80, def: 95, spa: 10, spd: 45, spe: 10},
abilities: {0: "Sturdy", 1: "Rock Head", H: "Rattled"},
heightm: 0.5,
weightkg: 15,
color: "Brown",
evos: ["sudowoodo"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
mimejr: {
num: 439,
name: "Mime Jr.",
types: ["Psychic", "Fairy"],
baseStats: {hp: 20, atk: 25, def: 45, spa: 70, spd: 90, spe: 60},
abilities: {0: "Soundproof", 1: "Filter", H: "Technician"},
heightm: 0.6,
weightkg: 13,
color: "Pink",
evos: ["mrmime", "mrmimegalar"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
happiny: {
num: 440,
name: "Happiny",
types: ["Normal"],
gender: "F",
baseStats: {hp: 100, atk: 5, def: 5, spa: 15, spd: 65, spe: 30},
abilities: {0: "Natural Cure", 1: "Serene Grace", H: "Friend Guard"},
heightm: 0.6,
weightkg: 24.4,
color: "Pink",
evos: ["chansey"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
chatot: {
num: 441,
name: "Chatot",
types: ["Normal", "Flying"],
baseStats: {hp: 76, atk: 65, def: 45, spa: 92, spd: 42, spe: 91},
abilities: {0: "Keen Eye", 1: "Tangled Feet", H: "Big Pecks"},
heightm: 0.5,
weightkg: 1.9,
color: "Black",
eggGroups: ["Flying"],
},
spiritomb: {
num: 442,
name: "Spiritomb",
types: ["Ghost", "Dark"],
baseStats: {hp: 50, atk: 92, def: 108, spa: 92, spd: 108, spe: 35},
abilities: {0: "Pressure", H: "Infiltrator"},
heightm: 1,
weightkg: 108,
color: "Purple",
eggGroups: ["Amorphous"],
},
gible: {
num: 443,
name: "Gible",
types: ["Dragon", "Ground"],
baseStats: {hp: 58, atk: 70, def: 45, spa: 40, spd: 45, spe: 42},
abilities: {0: "Sand Veil", H: "Rough Skin"},
heightm: 0.7,
weightkg: 20.5,
color: "Blue",
evos: ["gabite"],
eggGroups: ["Monster", "Dragon"],
},
gabite: {
num: 444,
name: "Gabite",
types: ["Dragon", "Ground"],
baseStats: {hp: 68, atk: 90, def: 65, spa: 50, spd: 55, spe: 82},
abilities: {0: "Sand Veil", H: "Rough Skin"},
heightm: 1.4,
weightkg: 56,
color: "Blue",
prevo: "gible",
evoLevel: 24,
evos: ["garchomp"],
eggGroups: ["Monster", "Dragon"],
},
garchomp: {
num: 445,
name: "Garchomp",
types: ["Dragon", "Ground"],
baseStats: {hp: 108, atk: 130, def: 95, spa: 80, spd: 85, spe: 102},
abilities: {0: "Sand Veil", H: "Rough Skin"},
heightm: 1.9,
weightkg: 95,
color: "Blue",
prevo: "gabite",
evoLevel: 48,
eggGroups: ["Monster", "Dragon"],
otherFormes: ["garchompmega"],
},
garchompmega: {
num: 445,
name: "Garchomp-Mega",
baseSpecies: "Garchomp",
forme: "Mega",
types: ["Dragon", "Ground"],
baseStats: {hp: 108, atk: 170, def: 115, spa: 120, spd: 95, spe: 92},
abilities: {0: "Sand Force"},
heightm: 1.9,
weightkg: 95,
color: "Blue",
eggGroups: ["Monster", "Dragon"],
requiredItem: "Garchompite",
},
munchlax: {
num: 446,
name: "Munchlax",
types: ["Normal"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 135, atk: 85, def: 40, spa: 40, spd: 85, spe: 5},
abilities: {0: "Pickup", 1: "Thick Fat", H: "Gluttony"},
heightm: 0.6,
weightkg: 105,
color: "Black",
evos: ["snorlax"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
riolu: {
num: 447,
name: "Riolu",
types: ["Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 40, atk: 70, def: 40, spa: 35, spd: 40, spe: 60},
abilities: {0: "Steadfast", 1: "Inner Focus", H: "Prankster"},
heightm: 0.7,
weightkg: 20.2,
color: "Blue",
evos: ["lucario"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
lucario: {
num: 448,
name: "Lucario",
types: ["Fighting", "Steel"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 110, def: 70, spa: 115, spd: 70, spe: 90},
abilities: {0: "Steadfast", 1: "Inner Focus", H: "Justified"},
heightm: 1.2,
weightkg: 54,
color: "Blue",
prevo: "riolu",
evoType: "levelFriendship",
evoCondition: "during the day",
eggGroups: ["Field", "Human-Like"],
otherFormes: ["lucariomega"],
},
lucariomega: {
num: 448,
name: "Lucario-Mega",
baseSpecies: "Lucario",
forme: "Mega",
types: ["Fighting", "Steel"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 145, def: 88, spa: 140, spd: 70, spe: 112},
abilities: {0: "Adaptability"},
heightm: 1.3,
weightkg: 57.5,
color: "Blue",
eggGroups: ["Field", "Human-Like"],
requiredItem: "Lucarionite",
},
hippopotas: {
num: 449,
name: "Hippopotas",
types: ["Ground"],
baseStats: {hp: 68, atk: 72, def: 78, spa: 38, spd: 42, spe: 32},
abilities: {0: "Sand Stream", H: "Sand Force"},
heightm: 0.8,
weightkg: 49.5,
color: "Brown",
evos: ["hippowdon"],
eggGroups: ["Field"],
},
hippowdon: {
num: 450,
name: "Hippowdon",
types: ["Ground"],
baseStats: {hp: 108, atk: 112, def: 118, spa: 68, spd: 72, spe: 47},
abilities: {0: "Sand Stream", H: "Sand Force"},
heightm: 2,
weightkg: 300,
color: "Brown",
prevo: "hippopotas",
evoLevel: 34,
eggGroups: ["Field"],
},
skorupi: {
num: 451,
name: "Skorupi",
types: ["Poison", "Bug"],
baseStats: {hp: 40, atk: 50, def: 90, spa: 30, spd: 55, spe: 65},
abilities: {0: "Battle Armor", 1: "Sniper", H: "Keen Eye"},
heightm: 0.8,
weightkg: 12,
color: "Purple",
evos: ["drapion"],
eggGroups: ["Bug", "Water 3"],
},
drapion: {
num: 452,
name: "Drapion",
types: ["Poison", "Dark"],
baseStats: {hp: 70, atk: 90, def: 110, spa: 60, spd: 75, spe: 95},
abilities: {0: "Battle Armor", 1: "Sniper", H: "Keen Eye"},
heightm: 1.3,
weightkg: 61.5,
color: "Purple",
prevo: "skorupi",
evoLevel: 40,
eggGroups: ["Bug", "Water 3"],
},
croagunk: {
num: 453,
name: "Croagunk",
types: ["Poison", "Fighting"],
baseStats: {hp: 48, atk: 61, def: 40, spa: 61, spd: 40, spe: 50},
abilities: {0: "Anticipation", 1: "Dry Skin", H: "Poison Touch"},
heightm: 0.7,
weightkg: 23,
color: "Blue",
evos: ["toxicroak"],
eggGroups: ["Human-Like"],
},
toxicroak: {
num: 454,
name: "Toxicroak",
types: ["Poison", "Fighting"],
baseStats: {hp: 83, atk: 106, def: 65, spa: 86, spd: 65, spe: 85},
abilities: {0: "Anticipation", 1: "Dry Skin", H: "Poison Touch"},
heightm: 1.3,
weightkg: 44.4,
color: "Blue",
prevo: "croagunk",
evoLevel: 37,
eggGroups: ["Human-Like"],
},
carnivine: {
num: 455,
name: "Carnivine",
types: ["Grass"],
baseStats: {hp: 74, atk: 100, def: 72, spa: 90, spd: 72, spe: 46},
abilities: {0: "Levitate"},
heightm: 1.4,
weightkg: 27,
color: "Green",
eggGroups: ["Grass"],
},
finneon: {
num: 456,
name: "Finneon",
types: ["Water"],
baseStats: {hp: 49, atk: 49, def: 56, spa: 49, spd: 61, spe: 66},
abilities: {0: "Swift Swim", 1: "Storm Drain", H: "Water Veil"},
heightm: 0.4,
weightkg: 7,
color: "Blue",
evos: ["lumineon"],
eggGroups: ["Water 2"],
},
lumineon: {
num: 457,
name: "Lumineon",
types: ["Water"],
baseStats: {hp: 69, atk: 69, def: 76, spa: 69, spd: 86, spe: 91},
abilities: {0: "Swift Swim", 1: "Storm Drain", H: "Water Veil"},
heightm: 1.2,
weightkg: 24,
color: "Blue",
prevo: "finneon",
evoLevel: 31,
eggGroups: ["Water 2"],
},
mantyke: {
num: 458,
name: "Mantyke",
types: ["Water", "Flying"],
baseStats: {hp: 45, atk: 20, def: 50, spa: 60, spd: 120, spe: 50},
abilities: {0: "Swift Swim", 1: "Water Absorb", H: "Water Veil"},
heightm: 1,
weightkg: 65,
color: "Blue",
evos: ["mantine"],
eggGroups: ["Undiscovered"],
canHatch: true,
},
snover: {
num: 459,
name: "Snover",
types: ["Grass", "Ice"],
baseStats: {hp: 60, atk: 62, def: 50, spa: 62, spd: 60, spe: 40},
abilities: {0: "Snow Warning", H: "Soundproof"},
heightm: 1,
weightkg: 50.5,
color: "White",
evos: ["abomasnow"],
eggGroups: ["Monster", "Grass"],
},
abomasnow: {
num: 460,
name: "Abomasnow",
types: ["Grass", "Ice"],
baseStats: {hp: 90, atk: 92, def: 75, spa: 92, spd: 85, spe: 60},
abilities: {0: "Snow Warning", H: "Soundproof"},
heightm: 2.2,
weightkg: 135.5,
color: "White",
prevo: "snover",
evoLevel: 40,
eggGroups: ["Monster", "Grass"],
otherFormes: ["abomasnowmega"],
},
abomasnowmega: {
num: 460,
name: "Abomasnow-Mega",
baseSpecies: "Abomasnow",
forme: "Mega",
types: ["Grass", "Ice"],
baseStats: {hp: 90, atk: 132, def: 105, spa: 132, spd: 105, spe: 30},
abilities: {0: "Snow Warning"},
heightm: 2.7,
weightkg: 185,
color: "White",
eggGroups: ["Monster", "Grass"],
requiredItem: "Abomasite",
},
weavile: {
num: 461,
name: "Weavile",
types: ["Dark", "Ice"],
baseStats: {hp: 70, atk: 120, def: 65, spa: 45, spd: 85, spe: 125},
abilities: {0: "Pressure", H: "Pickpocket"},
heightm: 1.1,
weightkg: 34,
color: "Black",
prevo: "sneasel",
evoType: "levelHold",
evoItem: "Razor Claw",
eggGroups: ["Field"],
},
magnezone: {
num: 462,
name: "Magnezone",
types: ["Electric", "Steel"],
gender: "N",
baseStats: {hp: 70, atk: 70, def: 115, spa: 130, spd: 90, spe: 60},
abilities: {0: "Magnet Pull", 1: "Sturdy", H: "Analytic"},
heightm: 1.2,
weightkg: 180,
color: "Gray",
prevo: "magneton",
evoType: "levelExtra",
evoCondition: "in a special magnetic field",
eggGroups: ["Mineral"],
},
lickilicky: {
num: 463,
name: "Lickilicky",
types: ["Normal"],
baseStats: {hp: 110, atk: 85, def: 95, spa: 80, spd: 95, spe: 50},
abilities: {0: "Own Tempo", 1: "Oblivious", H: "Cloud Nine"},
heightm: 1.7,
weightkg: 140,
color: "Pink",
prevo: "lickitung",
evoType: "levelMove",
evoMove: "Rollout",
eggGroups: ["Monster"],
},
rhyperior: {
num: 464,
name: "Rhyperior",
types: ["Ground", "Rock"],
baseStats: {hp: 115, atk: 140, def: 130, spa: 55, spd: 55, spe: 40},
abilities: {0: "Lightning Rod", 1: "Solid Rock", H: "Reckless"},
heightm: 2.4,
weightkg: 282.8,
color: "Gray",
prevo: "rhydon",
evoType: "trade",
evoItem: "Protector",
eggGroups: ["Monster", "Field"],
},
tangrowth: {
num: 465,
name: "Tangrowth",
types: ["Grass"],
baseStats: {hp: 100, atk: 100, def: 125, spa: 110, spd: 50, spe: 50},
abilities: {0: "Chlorophyll", 1: "Leaf Guard", H: "Regenerator"},
heightm: 2,
weightkg: 128.6,
color: "Blue",
prevo: "tangela",
evoType: "levelMove",
evoMove: "Ancient Power",
eggGroups: ["Grass"],
},
electivire: {
num: 466,
name: "Electivire",
types: ["Electric"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 75, atk: 123, def: 67, spa: 95, spd: 85, spe: 95},
abilities: {0: "Motor Drive", H: "Vital Spirit"},
heightm: 1.8,
weightkg: 138.6,
color: "Yellow",
prevo: "electabuzz",
evoType: "trade",
evoItem: "Electrizer",
eggGroups: ["Human-Like"],
},
magmortar: {
num: 467,
name: "Magmortar",
types: ["Fire"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 75, atk: 95, def: 67, spa: 125, spd: 95, spe: 83},
abilities: {0: "Flame Body", H: "Vital Spirit"},
heightm: 1.6,
weightkg: 68,
color: "Red",
prevo: "magmar",
evoType: "trade",
evoItem: "Magmarizer",
eggGroups: ["Human-Like"],
},
togekiss: {
num: 468,
name: "Togekiss",
types: ["Fairy", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 85, atk: 50, def: 95, spa: 120, spd: 115, spe: 80},
abilities: {0: "Hustle", 1: "Serene Grace", H: "Super Luck"},
heightm: 1.5,
weightkg: 38,
color: "White",
prevo: "togetic",
evoType: "useItem",
evoItem: "Shiny Stone",
eggGroups: ["Flying", "Fairy"],
},
yanmega: {
num: 469,
name: "Yanmega",
types: ["Bug", "Flying"],
baseStats: {hp: 86, atk: 76, def: 86, spa: 116, spd: 56, spe: 95},
abilities: {0: "Speed Boost", 1: "Tinted Lens", H: "Frisk"},
heightm: 1.9,
weightkg: 51.5,
color: "Green",
prevo: "yanma",
evoType: "levelMove",
evoMove: "Ancient Power",
eggGroups: ["Bug"],
},
leafeon: {
num: 470,
name: "Leafeon",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 110, def: 130, spa: 60, spd: 65, spe: 95},
abilities: {0: "Leaf Guard", H: "Chlorophyll"},
heightm: 1,
weightkg: 25.5,
color: "Green",
prevo: "eevee",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Field"],
},
glaceon: {
num: 471,
name: "Glaceon",
types: ["Ice"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 60, def: 110, spa: 130, spd: 95, spe: 65},
abilities: {0: "Snow Cloak", H: "Ice Body"},
heightm: 0.8,
weightkg: 25.9,
color: "Blue",
prevo: "eevee",
evoType: "useItem",
evoItem: "Ice Stone",
eggGroups: ["Field"],
},
gliscor: {
num: 472,
name: "Gliscor",
types: ["Ground", "Flying"],
baseStats: {hp: 75, atk: 95, def: 125, spa: 45, spd: 75, spe: 95},
abilities: {0: "Hyper Cutter", 1: "Sand Veil", H: "Poison Heal"},
heightm: 2,
weightkg: 42.5,
color: "Purple",
prevo: "gligar",
evoType: "levelHold",
evoItem: "Razor Fang",
evoCondition: "at night",
eggGroups: ["Bug"],
},
mamoswine: {
num: 473,
name: "Mamoswine",
types: ["Ice", "Ground"],
baseStats: {hp: 110, atk: 130, def: 80, spa: 70, spd: 60, spe: 80},
abilities: {0: "Oblivious", 1: "Snow Cloak", H: "Thick Fat"},
heightm: 2.5,
weightkg: 291,
color: "Brown",
prevo: "piloswine",
evoType: "levelMove",
evoMove: "Ancient Power",
eggGroups: ["Field"],
},
porygonz: {
num: 474,
name: "Porygon-Z",
types: ["Normal"],
gender: "N",
baseStats: {hp: 85, atk: 80, def: 70, spa: 135, spd: 75, spe: 90},
abilities: {0: "Adaptability", 1: "Download", H: "Analytic"},
heightm: 0.9,
weightkg: 34,
color: "Red",
prevo: "porygon2",
evoType: "trade",
evoItem: "Dubious Disk",
eggGroups: ["Mineral"],
},
gallade: {
num: 475,
name: "Gallade",
types: ["Psychic", "Fighting"],
gender: "M",
baseStats: {hp: 68, atk: 125, def: 65, spa: 65, spd: 115, spe: 80},
abilities: {0: "Steadfast", H: "Justified"},
heightm: 1.6,
weightkg: 52,
color: "White",
prevo: "kirlia",
evoType: "useItem",
evoItem: "Dawn Stone",
eggGroups: ["Human-Like", "Amorphous"],
otherFormes: ["gallademega"],
},
gallademega: {
num: 475,
name: "Gallade-Mega",
baseSpecies: "Gallade",
forme: "Mega",
types: ["Psychic", "Fighting"],
gender: "M",
baseStats: {hp: 68, atk: 165, def: 95, spa: 65, spd: 115, spe: 110},
abilities: {0: "Inner Focus"},
heightm: 1.6,
weightkg: 56.4,
color: "White",
eggGroups: ["Amorphous"],
requiredItem: "Galladite",
},
probopass: {
num: 476,
name: "Probopass",
types: ["Rock", "Steel"],
baseStats: {hp: 60, atk: 55, def: 145, spa: 75, spd: 150, spe: 40},
abilities: {0: "Sturdy", 1: "Magnet Pull", H: "Sand Force"},
heightm: 1.4,
weightkg: 340,
color: "Gray",
prevo: "nosepass",
evoType: "levelExtra",
evoCondition: "near a special magnetic field",
eggGroups: ["Mineral"],
},
dusknoir: {
num: 477,
name: "Dusknoir",
types: ["Ghost"],
baseStats: {hp: 45, atk: 100, def: 135, spa: 65, spd: 135, spe: 45},
abilities: {0: "Pressure", H: "Frisk"},
heightm: 2.2,
weightkg: 106.6,
color: "Black",
prevo: "dusclops",
evoType: "trade",
evoItem: "Reaper Cloth",
eggGroups: ["Amorphous"],
},
froslass: {
num: 478,
name: "Froslass",
types: ["Ice", "Ghost"],
gender: "F",
baseStats: {hp: 70, atk: 80, def: 70, spa: 80, spd: 70, spe: 110},
abilities: {0: "Snow Cloak", H: "Cursed Body"},
heightm: 1.3,
weightkg: 26.6,
color: "White",
prevo: "snorunt",
evoType: "useItem",
evoItem: "Dawn Stone",
eggGroups: ["Fairy", "Mineral"],
},
rotom: {
num: 479,
name: "Rotom",
types: ["Electric", "Ghost"],
gender: "N",
baseStats: {hp: 50, atk: 50, def: 77, spa: 95, spd: 77, spe: 91},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Amorphous"],
otherFormes: ["rotomheat", "rotomwash", "rotomfrost", "rotomfan", "rotommow"],
},
rotomheat: {
num: 479,
name: "Rotom-Heat",
baseSpecies: "Rotom",
forme: "Heat",
types: ["Electric", "Fire"],
gender: "N",
baseStats: {hp: 50, atk: 65, def: 107, spa: 105, spd: 107, spe: 86},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Amorphous"],
inheritsFrom: "rotom",
},
rotomwash: {
num: 479,
name: "Rotom-Wash",
baseSpecies: "Rotom",
forme: "Wash",
types: ["Electric", "Water"],
gender: "N",
baseStats: {hp: 50, atk: 65, def: 107, spa: 105, spd: 107, spe: 86},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Amorphous"],
inheritsFrom: "rotom",
},
rotomfrost: {
num: 479,
name: "Rotom-Frost",
baseSpecies: "Rotom",
forme: "Frost",
types: ["Electric", "Ice"],
gender: "N",
baseStats: {hp: 50, atk: 65, def: 107, spa: 105, spd: 107, spe: 86},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Amorphous"],
inheritsFrom: "rotom",
},
rotomfan: {
num: 479,
name: "Rotom-Fan",
baseSpecies: "Rotom",
forme: "Fan",
types: ["Electric", "Flying"],
gender: "N",
baseStats: {hp: 50, atk: 65, def: 107, spa: 105, spd: 107, spe: 86},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Amorphous"],
inheritsFrom: "rotom",
},
rotommow: {
num: 479,
name: "Rotom-Mow",
baseSpecies: "Rotom",
forme: "Mow",
types: ["Electric", "Grass"],
gender: "N",
baseStats: {hp: 50, atk: 65, def: 107, spa: 105, spd: 107, spe: 86},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Amorphous"],
inheritsFrom: "rotom",
},
uxie: {
num: 480,
name: "Uxie",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 75, atk: 75, def: 130, spa: 75, spd: 130, spe: 95},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
mesprit: {
num: 481,
name: "Mesprit",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 80, atk: 105, def: 105, spa: 105, spd: 105, spe: 80},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Pink",
eggGroups: ["Undiscovered"],
},
azelf: {
num: 482,
name: "Azelf",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 75, atk: 125, def: 70, spa: 125, spd: 70, spe: 115},
abilities: {0: "Levitate"},
heightm: 0.3,
weightkg: 0.3,
color: "Blue",
eggGroups: ["Undiscovered"],
},
dialga: {
num: 483,
name: "Dialga",
types: ["Steel", "Dragon"],
gender: "N",
baseStats: {hp: 100, atk: 120, def: 120, spa: 150, spd: 100, spe: 90},
abilities: {0: "Pressure", H: "Telepathy"},
heightm: 5.4,
weightkg: 683,
color: "White",
eggGroups: ["Undiscovered"],
},
palkia: {
num: 484,
name: "Palkia",
types: ["Water", "Dragon"],
gender: "N",
baseStats: {hp: 90, atk: 120, def: 100, spa: 150, spd: 120, spe: 100},
abilities: {0: "Pressure", H: "Telepathy"},
heightm: 4.2,
weightkg: 336,
color: "Purple",
eggGroups: ["Undiscovered"],
},
heatran: {
num: 485,
name: "Heatran",
types: ["Fire", "Steel"],
baseStats: {hp: 91, atk: 90, def: 106, spa: 130, spd: 106, spe: 77},
abilities: {0: "Flash Fire", H: "Flame Body"},
heightm: 1.7,
weightkg: 430,
color: "Brown",
eggGroups: ["Undiscovered"],
},
regigigas: {
num: 486,
name: "Regigigas",
types: ["Normal"],
gender: "N",
baseStats: {hp: 110, atk: 160, def: 110, spa: 80, spd: 110, spe: 100},
abilities: {0: "Slow Start"},
heightm: 3.7,
weightkg: 420,
color: "White",
eggGroups: ["Undiscovered"],
},
giratina: {
num: 487,
name: "Giratina",
baseForme: "Altered",
types: ["Ghost", "Dragon"],
gender: "N",
baseStats: {hp: 150, atk: 100, def: 120, spa: 100, spd: 120, spe: 90},
abilities: {0: "Pressure", H: "Telepathy"},
heightm: 4.5,
weightkg: 750,
color: "Black",
eggGroups: ["Undiscovered"],
otherFormes: ["giratinaorigin"],
},
giratinaorigin: {
num: 487,
name: "Giratina-Origin",
baseSpecies: "Giratina",
forme: "Origin",
types: ["Ghost", "Dragon"],
gender: "N",
baseStats: {hp: 150, atk: 120, def: 100, spa: 120, spd: 100, spe: 90},
abilities: {0: "Levitate"},
heightm: 6.9,
weightkg: 650,
color: "Black",
eggGroups: ["Undiscovered"],
requiredItem: "Griseous Orb",
},
cresselia: {
num: 488,
name: "Cresselia",
types: ["Psychic"],
gender: "F",
baseStats: {hp: 120, atk: 70, def: 120, spa: 75, spd: 130, spe: 85},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 85.6,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
phione: {
num: 489,
name: "Phione",
types: ["Water"],
gender: "N",
baseStats: {hp: 80, atk: 80, def: 80, spa: 80, spd: 80, spe: 80},
abilities: {0: "Hydration"},
heightm: 0.4,
weightkg: 3.1,
color: "Blue",
eggGroups: ["Water 1", "Fairy"],
},
manaphy: {
num: 490,
name: "Manaphy",
types: ["Water"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Hydration"},
heightm: 0.3,
weightkg: 1.4,
color: "Blue",
eggGroups: ["Water 1", "Fairy"],
canHatch: false,
},
darkrai: {
num: 491,
name: "Darkrai",
types: ["Dark"],
gender: "N",
baseStats: {hp: 70, atk: 90, def: 90, spa: 135, spd: 90, spe: 125},
abilities: {0: "Bad Dreams"},
heightm: 1.5,
weightkg: 50.5,
color: "Black",
eggGroups: ["Undiscovered"],
},
shaymin: {
num: 492,
name: "Shaymin",
baseForme: "Land",
types: ["Grass"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Natural Cure"},
heightm: 0.2,
weightkg: 2.1,
color: "Green",
eggGroups: ["Undiscovered"],
otherFormes: ["shayminsky"],
},
shayminsky: {
num: 492,
name: "Shaymin-Sky",
baseSpecies: "Shaymin",
forme: "Sky",
types: ["Grass", "Flying"],
gender: "N",
baseStats: {hp: 100, atk: 103, def: 75, spa: 120, spd: 75, spe: 127},
abilities: {0: "Serene Grace"},
heightm: 0.4,
weightkg: 5.2,
color: "Green",
eggGroups: ["Undiscovered"],
},
arceus: {
num: 493,
name: "Arceus",
baseForme: "Normal",
types: ["Normal"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "White",
eggGroups: ["Undiscovered"],
otherFormes: ["arceusbug", "arceusdark", "arceusdragon", "arceuselectric", "arceusfairy", "arceusfighting", "arceusfire", "arceusflying", "arceusghost", "arceusgrass", "arceusground", "arceusice", "arceuspoison", "arceuspsychic", "arceusrock", "arceussteel", "arceuswater"],
},
arceusbug: {
num: 493,
name: "Arceus-Bug",
baseSpecies: "Arceus",
forme: "Bug",
types: ["Bug"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Insect Plate", "Buginium Z"],
},
arceusdark: {
num: 493,
name: "Arceus-Dark",
baseSpecies: "Arceus",
forme: "Dark",
types: ["Dark"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Dread Plate", "Darkinium Z"],
},
arceusdragon: {
num: 493,
name: "Arceus-Dragon",
baseSpecies: "Arceus",
forme: "Dragon",
types: ["Dragon"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Draco Plate", "Dragonium Z"],
},
arceuselectric: {
num: 493,
name: "Arceus-Electric",
baseSpecies: "Arceus",
forme: "Electric",
types: ["Electric"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Zap Plate", "Electrium Z"],
},
arceusfairy: {
num: 493,
name: "Arceus-Fairy",
baseSpecies: "Arceus",
forme: "Fairy",
types: ["Fairy"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
gen: 6,
requiredItems: ["Pixie Plate", "Fairium Z"],
},
arceusfighting: {
num: 493,
name: "Arceus-Fighting",
baseSpecies: "Arceus",
forme: "Fighting",
types: ["Fighting"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Fist Plate", "Fightinium Z"],
},
arceusfire: {
num: 493,
name: "Arceus-Fire",
baseSpecies: "Arceus",
forme: "Fire",
types: ["Fire"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Flame Plate", "Firium Z"],
},
arceusflying: {
num: 493,
name: "Arceus-Flying",
baseSpecies: "Arceus",
forme: "Flying",
types: ["Flying"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Sky Plate", "Flyinium Z"],
},
arceusghost: {
num: 493,
name: "Arceus-Ghost",
baseSpecies: "Arceus",
forme: "Ghost",
types: ["Ghost"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Spooky Plate", "Ghostium Z"],
},
arceusgrass: {
num: 493,
name: "Arceus-Grass",
baseSpecies: "Arceus",
forme: "Grass",
types: ["Grass"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Meadow Plate", "Grassium Z"],
},
arceusground: {
num: 493,
name: "Arceus-Ground",
baseSpecies: "Arceus",
forme: "Ground",
types: ["Ground"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Earth Plate", "Groundium Z"],
},
arceusice: {
num: 493,
name: "Arceus-Ice",
baseSpecies: "Arceus",
forme: "Ice",
types: ["Ice"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Icicle Plate", "Icium Z"],
},
arceuspoison: {
num: 493,
name: "Arceus-Poison",
baseSpecies: "Arceus",
forme: "Poison",
types: ["Poison"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Toxic Plate", "Poisonium Z"],
},
arceuspsychic: {
num: 493,
name: "Arceus-Psychic",
baseSpecies: "Arceus",
forme: "Psychic",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Mind Plate", "Psychium Z"],
},
arceusrock: {
num: 493,
name: "Arceus-Rock",
baseSpecies: "Arceus",
forme: "Rock",
types: ["Rock"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Stone Plate", "Rockium Z"],
},
arceussteel: {
num: 493,
name: "Arceus-Steel",
baseSpecies: "Arceus",
forme: "Steel",
types: ["Steel"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Iron Plate", "Steelium Z"],
},
arceuswater: {
num: 493,
name: "Arceus-Water",
baseSpecies: "Arceus",
forme: "Water",
types: ["Water"],
gender: "N",
baseStats: {hp: 120, atk: 120, def: 120, spa: 120, spd: 120, spe: 120},
abilities: {0: "Multitype"},
heightm: 3.2,
weightkg: 320,
color: "Gray",
eggGroups: ["Undiscovered"],
requiredItems: ["Splash Plate", "Waterium Z"],
},
victini: {
num: 494,
name: "Victini",
types: ["Psychic", "Fire"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Victory Star"},
heightm: 0.4,
weightkg: 4,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
snivy: {
num: 495,
name: "Snivy",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 45, atk: 45, def: 55, spa: 45, spd: 55, spe: 63},
abilities: {0: "Overgrow", H: "Contrary"},
heightm: 0.6,
weightkg: 8.1,
color: "Green",
evos: ["servine"],
eggGroups: ["Field", "Grass"],
},
servine: {
num: 496,
name: "Servine",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 60, def: 75, spa: 60, spd: 75, spe: 83},
abilities: {0: "Overgrow", H: "Contrary"},
heightm: 0.8,
weightkg: 16,
color: "Green",
prevo: "snivy",
evoLevel: 17,
evos: ["serperior"],
eggGroups: ["Field", "Grass"],
},
serperior: {
num: 497,
name: "Serperior",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 75, def: 95, spa: 75, spd: 95, spe: 113},
abilities: {0: "Overgrow", H: "Contrary"},
heightm: 3.3,
weightkg: 63,
color: "Green",
prevo: "servine",
evoLevel: 36,
eggGroups: ["Field", "Grass"],
},
tepig: {
num: 498,
name: "Tepig",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 63, def: 45, spa: 45, spd: 45, spe: 45},
abilities: {0: "Blaze", H: "Thick Fat"},
heightm: 0.5,
weightkg: 9.9,
color: "Red",
evos: ["pignite"],
eggGroups: ["Field"],
},
pignite: {
num: 499,
name: "Pignite",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 90, atk: 93, def: 55, spa: 70, spd: 55, spe: 55},
abilities: {0: "Blaze", H: "Thick Fat"},
heightm: 1,
weightkg: 55.5,
color: "Red",
prevo: "tepig",
evoLevel: 17,
evos: ["emboar"],
eggGroups: ["Field"],
},
emboar: {
num: 500,
name: "Emboar",
types: ["Fire", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 110, atk: 123, def: 65, spa: 100, spd: 65, spe: 65},
abilities: {0: "Blaze", H: "Reckless"},
heightm: 1.6,
weightkg: 150,
color: "Red",
prevo: "pignite",
evoLevel: 36,
eggGroups: ["Field"],
},
oshawott: {
num: 501,
name: "Oshawott",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 55, atk: 55, def: 45, spa: 63, spd: 45, spe: 45},
abilities: {0: "Torrent", H: "Shell Armor"},
heightm: 0.5,
weightkg: 5.9,
color: "Blue",
evos: ["dewott"],
eggGroups: ["Field"],
},
dewott: {
num: 502,
name: "Dewott",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 75, def: 60, spa: 83, spd: 60, spe: 60},
abilities: {0: "Torrent", H: "Shell Armor"},
heightm: 0.8,
weightkg: 24.5,
color: "Blue",
prevo: "oshawott",
evoLevel: 17,
evos: ["samurott"],
eggGroups: ["Field"],
},
samurott: {
num: 503,
name: "Samurott",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 95, atk: 100, def: 85, spa: 108, spd: 70, spe: 70},
abilities: {0: "Torrent", H: "Shell Armor"},
heightm: 1.5,
weightkg: 94.6,
color: "Blue",
prevo: "dewott",
evoLevel: 36,
eggGroups: ["Field"],
},
patrat: {
num: 504,
name: "Patrat",
types: ["Normal"],
baseStats: {hp: 45, atk: 55, def: 39, spa: 35, spd: 39, spe: 42},
abilities: {0: "Run Away", 1: "Keen Eye", H: "Analytic"},
heightm: 0.5,
weightkg: 11.6,
color: "Brown",
evos: ["watchog"],
eggGroups: ["Field"],
},
watchog: {
num: 505,
name: "Watchog",
types: ["Normal"],
baseStats: {hp: 60, atk: 85, def: 69, spa: 60, spd: 69, spe: 77},
abilities: {0: "Illuminate", 1: "Keen Eye", H: "Analytic"},
heightm: 1.1,
weightkg: 27,
color: "Brown",
prevo: "patrat",
evoLevel: 20,
eggGroups: ["Field"],
},
lillipup: {
num: 506,
name: "Lillipup",
types: ["Normal"],
baseStats: {hp: 45, atk: 60, def: 45, spa: 25, spd: 45, spe: 55},
abilities: {0: "Vital Spirit", 1: "Pickup", H: "Run Away"},
heightm: 0.4,
weightkg: 4.1,
color: "Brown",
evos: ["herdier"],
eggGroups: ["Field"],
},
herdier: {
num: 507,
name: "Herdier",
types: ["Normal"],
baseStats: {hp: 65, atk: 80, def: 65, spa: 35, spd: 65, spe: 60},
abilities: {0: "Intimidate", 1: "Sand Rush", H: "Scrappy"},
heightm: 0.9,
weightkg: 14.7,
color: "Gray",
prevo: "lillipup",
evoLevel: 16,
evos: ["stoutland"],
eggGroups: ["Field"],
},
stoutland: {
num: 508,
name: "Stoutland",
types: ["Normal"],
baseStats: {hp: 85, atk: 110, def: 90, spa: 45, spd: 90, spe: 80},
abilities: {0: "Intimidate", 1: "Sand Rush", H: "Scrappy"},
heightm: 1.2,
weightkg: 61,
color: "Gray",
prevo: "herdier",
evoLevel: 32,
eggGroups: ["Field"],
},
purrloin: {
num: 509,
name: "Purrloin",
types: ["Dark"],
baseStats: {hp: 41, atk: 50, def: 37, spa: 50, spd: 37, spe: 66},
abilities: {0: "Limber", 1: "Unburden", H: "Prankster"},
heightm: 0.4,
weightkg: 10.1,
color: "Purple",
evos: ["liepard"],
eggGroups: ["Field"],
},
liepard: {
num: 510,
name: "Liepard",
types: ["Dark"],
baseStats: {hp: 64, atk: 88, def: 50, spa: 88, spd: 50, spe: 106},
abilities: {0: "Limber", 1: "Unburden", H: "Prankster"},
heightm: 1.1,
weightkg: 37.5,
color: "Purple",
prevo: "purrloin",
evoLevel: 20,
eggGroups: ["Field"],
},
pansage: {
num: 511,
name: "Pansage",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 53, def: 48, spa: 53, spd: 48, spe: 64},
abilities: {0: "Gluttony", H: "Overgrow"},
heightm: 0.6,
weightkg: 10.5,
color: "Green",
evos: ["simisage"],
eggGroups: ["Field"],
},
simisage: {
num: 512,
name: "Simisage",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 98, def: 63, spa: 98, spd: 63, spe: 101},
abilities: {0: "Gluttony", H: "Overgrow"},
heightm: 1.1,
weightkg: 30.5,
color: "Green",
prevo: "pansage",
evoType: "useItem",
evoItem: "Leaf Stone",
eggGroups: ["Field"],
},
pansear: {
num: 513,
name: "Pansear",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 53, def: 48, spa: 53, spd: 48, spe: 64},
abilities: {0: "Gluttony", H: "Blaze"},
heightm: 0.6,
weightkg: 11,
color: "Red",
evos: ["simisear"],
eggGroups: ["Field"],
},
simisear: {
num: 514,
name: "Simisear",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 98, def: 63, spa: 98, spd: 63, spe: 101},
abilities: {0: "Gluttony", H: "Blaze"},
heightm: 1,
weightkg: 28,
color: "Red",
prevo: "pansear",
evoType: "useItem",
evoItem: "Fire Stone",
eggGroups: ["Field"],
},
panpour: {
num: 515,
name: "Panpour",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 53, def: 48, spa: 53, spd: 48, spe: 64},
abilities: {0: "Gluttony", H: "Torrent"},
heightm: 0.6,
weightkg: 13.5,
color: "Blue",
evos: ["simipour"],
eggGroups: ["Field"],
},
simipour: {
num: 516,
name: "Simipour",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 98, def: 63, spa: 98, spd: 63, spe: 101},
abilities: {0: "Gluttony", H: "Torrent"},
heightm: 1,
weightkg: 29,
color: "Blue",
prevo: "panpour",
evoType: "useItem",
evoItem: "Water Stone",
eggGroups: ["Field"],
},
munna: {
num: 517,
name: "Munna",
types: ["Psychic"],
baseStats: {hp: 76, atk: 25, def: 45, spa: 67, spd: 55, spe: 24},
abilities: {0: "Forewarn", 1: "Synchronize", H: "Telepathy"},
heightm: 0.6,
weightkg: 23.3,
color: "Pink",
evos: ["musharna"],
eggGroups: ["Field"],
},
musharna: {
num: 518,
name: "Musharna",
types: ["Psychic"],
baseStats: {hp: 116, atk: 55, def: 85, spa: 107, spd: 95, spe: 29},
abilities: {0: "Forewarn", 1: "Synchronize", H: "Telepathy"},
heightm: 1.1,
weightkg: 60.5,
color: "Pink",
prevo: "munna",
evoType: "useItem",
evoItem: "Moon Stone",
eggGroups: ["Field"],
},
pidove: {
num: 519,
name: "Pidove",
types: ["Normal", "Flying"],
baseStats: {hp: 50, atk: 55, def: 50, spa: 36, spd: 30, spe: 43},
abilities: {0: "Big Pecks", 1: "Super Luck", H: "Rivalry"},
heightm: 0.3,
weightkg: 2.1,
color: "Gray",
evos: ["tranquill"],
eggGroups: ["Flying"],
},
tranquill: {
num: 520,
name: "Tranquill",
types: ["Normal", "Flying"],
baseStats: {hp: 62, atk: 77, def: 62, spa: 50, spd: 42, spe: 65},
abilities: {0: "Big Pecks", 1: "Super Luck", H: "Rivalry"},
heightm: 0.6,
weightkg: 15,
color: "Gray",
prevo: "pidove",
evoLevel: 21,
evos: ["unfezant"],
eggGroups: ["Flying"],
},
unfezant: {
num: 521,
name: "Unfezant",
types: ["Normal", "Flying"],
baseStats: {hp: 80, atk: 115, def: 80, spa: 65, spd: 55, spe: 93},
abilities: {0: "Big Pecks", 1: "Super Luck", H: "Rivalry"},
heightm: 1.2,
weightkg: 29,
color: "Gray",
prevo: "tranquill",
evoLevel: 32,
eggGroups: ["Flying"],
},
blitzle: {
num: 522,
name: "Blitzle",
types: ["Electric"],
baseStats: {hp: 45, atk: 60, def: 32, spa: 50, spd: 32, spe: 76},
abilities: {0: "Lightning Rod", 1: "Motor Drive", H: "Sap Sipper"},
heightm: 0.8,
weightkg: 29.8,
color: "Black",
evos: ["zebstrika"],
eggGroups: ["Field"],
},
zebstrika: {
num: 523,
name: "Zebstrika",
types: ["Electric"],
baseStats: {hp: 75, atk: 100, def: 63, spa: 80, spd: 63, spe: 116},
abilities: {0: "Lightning Rod", 1: "Motor Drive", H: "Sap Sipper"},
heightm: 1.6,
weightkg: 79.5,
color: "Black",
prevo: "blitzle",
evoLevel: 27,
eggGroups: ["Field"],
},
roggenrola: {
num: 524,
name: "Roggenrola",
types: ["Rock"],
baseStats: {hp: 55, atk: 75, def: 85, spa: 25, spd: 25, spe: 15},
abilities: {0: "Sturdy", 1: "Weak Armor", H: "Sand Force"},
heightm: 0.4,
weightkg: 18,
color: "Blue",
evos: ["boldore"],
eggGroups: ["Mineral"],
},
boldore: {
num: 525,
name: "Boldore",
types: ["Rock"],
baseStats: {hp: 70, atk: 105, def: 105, spa: 50, spd: 40, spe: 20},
abilities: {0: "Sturdy", 1: "Weak Armor", H: "Sand Force"},
heightm: 0.9,
weightkg: 102,
color: "Blue",
prevo: "roggenrola",
evoLevel: 25,
evos: ["gigalith"],
eggGroups: ["Mineral"],
},
gigalith: {
num: 526,
name: "Gigalith",
types: ["Rock"],
baseStats: {hp: 85, atk: 135, def: 130, spa: 60, spd: 80, spe: 25},
abilities: {0: "Sturdy", 1: "Sand Stream", H: "Sand Force"},
heightm: 1.7,
weightkg: 260,
color: "Blue",
prevo: "boldore",
evoType: "trade",
eggGroups: ["Mineral"],
},
woobat: {
num: 527,
name: "Woobat",
types: ["Psychic", "Flying"],
baseStats: {hp: 65, atk: 45, def: 43, spa: 55, spd: 43, spe: 72},
abilities: {0: "Unaware", 1: "Klutz", H: "Simple"},
heightm: 0.4,
weightkg: 2.1,
color: "Blue",
evos: ["swoobat"],
eggGroups: ["Flying", "Field"],
},
swoobat: {
num: 528,
name: "Swoobat",
types: ["Psychic", "Flying"],
baseStats: {hp: 67, atk: 57, def: 55, spa: 77, spd: 55, spe: 114},
abilities: {0: "Unaware", 1: "Klutz", H: "Simple"},
heightm: 0.9,
weightkg: 10.5,
color: "Blue",
prevo: "woobat",
evoType: "levelFriendship",
eggGroups: ["Flying", "Field"],
},
drilbur: {
num: 529,
name: "Drilbur",
types: ["Ground"],
baseStats: {hp: 60, atk: 85, def: 40, spa: 30, spd: 45, spe: 68},
abilities: {0: "Sand Rush", 1: "Sand Force", H: "Mold Breaker"},
heightm: 0.3,
weightkg: 8.5,
color: "Gray",
evos: ["excadrill"],
eggGroups: ["Field"],
},
excadrill: {
num: 530,
name: "Excadrill",
types: ["Ground", "Steel"],
baseStats: {hp: 110, atk: 135, def: 60, spa: 50, spd: 65, spe: 88},
abilities: {0: "Sand Rush", 1: "Sand Force", H: "Mold Breaker"},
heightm: 0.7,
weightkg: 40.4,
color: "Gray",
prevo: "drilbur",
evoLevel: 31,
eggGroups: ["Field"],
},
audino: {
num: 531,
name: "Audino",
types: ["Normal"],
baseStats: {hp: 103, atk: 60, def: 86, spa: 60, spd: 86, spe: 50},
abilities: {0: "Healer", 1: "Regenerator", H: "Klutz"},
heightm: 1.1,
weightkg: 31,
color: "Pink",
eggGroups: ["Fairy"],
otherFormes: ["audinomega"],
},
audinomega: {
num: 531,
name: "Audino-Mega",
baseSpecies: "Audino",
forme: "Mega",
types: ["Normal", "Fairy"],
baseStats: {hp: 103, atk: 60, def: 126, spa: 80, spd: 126, spe: 50},
abilities: {0: "Healer"},
heightm: 1.5,
weightkg: 32,
color: "White",
eggGroups: ["Fairy"],
requiredItem: "Audinite",
},
timburr: {
num: 532,
name: "Timburr",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 75, atk: 80, def: 55, spa: 25, spd: 35, spe: 35},
abilities: {0: "Guts", 1: "Sheer Force", H: "Iron Fist"},
heightm: 0.6,
weightkg: 12.5,
color: "Gray",
evos: ["gurdurr"],
eggGroups: ["Human-Like"],
},
gurdurr: {
num: 533,
name: "Gurdurr",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 85, atk: 105, def: 85, spa: 40, spd: 50, spe: 40},
abilities: {0: "Guts", 1: "Sheer Force", H: "Iron Fist"},
heightm: 1.2,
weightkg: 40,
color: "Gray",
prevo: "timburr",
evoLevel: 25,
evos: ["conkeldurr"],
eggGroups: ["Human-Like"],
},
conkeldurr: {
num: 534,
name: "Conkeldurr",
types: ["Fighting"],
genderRatio: {M: 0.75, F: 0.25},
baseStats: {hp: 105, atk: 140, def: 95, spa: 55, spd: 65, spe: 45},
abilities: {0: "Guts", 1: "Sheer Force", H: "Iron Fist"},
heightm: 1.4,
weightkg: 87,
color: "Brown",
prevo: "gurdurr",
evoType: "trade",
eggGroups: ["Human-Like"],
},
tympole: {
num: 535,
name: "Tympole",
types: ["Water"],
baseStats: {hp: 50, atk: 50, def: 40, spa: 50, spd: 40, spe: 64},
abilities: {0: "Swift Swim", 1: "Hydration", H: "Water Absorb"},
heightm: 0.5,
weightkg: 4.5,
color: "Blue",
evos: ["palpitoad"],
eggGroups: ["Water 1"],
},
palpitoad: {
num: 536,
name: "Palpitoad",
types: ["Water", "Ground"],
baseStats: {hp: 75, atk: 65, def: 55, spa: 65, spd: 55, spe: 69},
abilities: {0: "Swift Swim", 1: "Hydration", H: "Water Absorb"},
heightm: 0.8,
weightkg: 17,
color: "Blue",
prevo: "tympole",
evoLevel: 25,
evos: ["seismitoad"],
eggGroups: ["Water 1"],
},
seismitoad: {
num: 537,
name: "Seismitoad",
types: ["Water", "Ground"],
baseStats: {hp: 105, atk: 95, def: 75, spa: 85, spd: 75, spe: 74},
abilities: {0: "Swift Swim", 1: "Poison Touch", H: "Water Absorb"},
heightm: 1.5,
weightkg: 62,
color: "Blue",
prevo: "palpitoad",
evoLevel: 36,
eggGroups: ["Water 1"],
},
throh: {
num: 538,
name: "Throh",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 120, atk: 100, def: 85, spa: 30, spd: 85, spe: 45},
abilities: {0: "Guts", 1: "Inner Focus", H: "Mold Breaker"},
heightm: 1.3,
weightkg: 55.5,
color: "Red",
eggGroups: ["Human-Like"],
},
sawk: {
num: 539,
name: "Sawk",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 75, atk: 125, def: 75, spa: 30, spd: 75, spe: 85},
abilities: {0: "Sturdy", 1: "Inner Focus", H: "Mold Breaker"},
heightm: 1.4,
weightkg: 51,
color: "Blue",
eggGroups: ["Human-Like"],
},
sewaddle: {
num: 540,
name: "Sewaddle",
types: ["Bug", "Grass"],
baseStats: {hp: 45, atk: 53, def: 70, spa: 40, spd: 60, spe: 42},
abilities: {0: "Swarm", 1: "Chlorophyll", H: "Overcoat"},
heightm: 0.3,
weightkg: 2.5,
color: "Yellow",
evos: ["swadloon"],
eggGroups: ["Bug"],
},
swadloon: {
num: 541,
name: "Swadloon",
types: ["Bug", "Grass"],
baseStats: {hp: 55, atk: 63, def: 90, spa: 50, spd: 80, spe: 42},
abilities: {0: "Leaf Guard", 1: "Chlorophyll", H: "Overcoat"},
heightm: 0.5,
weightkg: 7.3,
color: "Green",
prevo: "sewaddle",
evoLevel: 20,
evos: ["leavanny"],
eggGroups: ["Bug"],
},
leavanny: {
num: 542,
name: "Leavanny",
types: ["Bug", "Grass"],
baseStats: {hp: 75, atk: 103, def: 80, spa: 70, spd: 80, spe: 92},
abilities: {0: "Swarm", 1: "Chlorophyll", H: "Overcoat"},
heightm: 1.2,
weightkg: 20.5,
color: "Yellow",
prevo: "swadloon",
evoType: "levelFriendship",
eggGroups: ["Bug"],
},
venipede: {
num: 543,
name: "Venipede",
types: ["Bug", "Poison"],
baseStats: {hp: 30, atk: 45, def: 59, spa: 30, spd: 39, spe: 57},
abilities: {0: "Poison Point", 1: "Swarm", H: "Speed Boost"},
heightm: 0.4,
weightkg: 5.3,
color: "Red",
evos: ["whirlipede"],
eggGroups: ["Bug"],
},
whirlipede: {
num: 544,
name: "Whirlipede",
types: ["Bug", "Poison"],
baseStats: {hp: 40, atk: 55, def: 99, spa: 40, spd: 79, spe: 47},
abilities: {0: "Poison Point", 1: "Swarm", H: "Speed Boost"},
heightm: 1.2,
weightkg: 58.5,
color: "Gray",
prevo: "venipede",
evoLevel: 22,
evos: ["scolipede"],
eggGroups: ["Bug"],
},
scolipede: {
num: 545,
name: "Scolipede",
types: ["Bug", "Poison"],
baseStats: {hp: 60, atk: 100, def: 89, spa: 55, spd: 69, spe: 112},
abilities: {0: "Poison Point", 1: "Swarm", H: "Speed Boost"},
heightm: 2.5,
weightkg: 200.5,
color: "Red",
prevo: "whirlipede",
evoLevel: 30,
eggGroups: ["Bug"],
},
cottonee: {
num: 546,
name: "Cottonee",
types: ["Grass", "Fairy"],
baseStats: {hp: 40, atk: 27, def: 60, spa: 37, spd: 50, spe: 66},
abilities: {0: "Prankster", 1: "Infiltrator", H: "Chlorophyll"},
heightm: 0.3,
weightkg: 0.6,
color: "Green",
evos: ["whimsicott"],
eggGroups: ["Fairy", "Grass"],
},
whimsicott: {
num: 547,
name: "Whimsicott",
types: ["Grass", "Fairy"],
baseStats: {hp: 60, atk: 67, def: 85, spa: 77, spd: 75, spe: 116},
abilities: {0: "Prankster", 1: "Infiltrator", H: "Chlorophyll"},
heightm: 0.7,
weightkg: 6.6,
color: "Green",
prevo: "cottonee",
evoType: "useItem",
evoItem: "Sun Stone",
eggGroups: ["Fairy", "Grass"],
},
petilil: {
num: 548,
name: "Petilil",
types: ["Grass"],
gender: "F",
baseStats: {hp: 45, atk: 35, def: 50, spa: 70, spd: 50, spe: 30},
abilities: {0: "Chlorophyll", 1: "Own Tempo", H: "Leaf Guard"},
heightm: 0.5,
weightkg: 6.6,
color: "Green",
evos: ["lilligant"],
eggGroups: ["Grass"],
},
lilligant: {
num: 549,
name: "Lilligant",
types: ["Grass"],
gender: "F",
baseStats: {hp: 70, atk: 60, def: 75, spa: 110, spd: 75, spe: 90},
abilities: {0: "Chlorophyll", 1: "Own Tempo", H: "Leaf Guard"},
heightm: 1.1,
weightkg: 16.3,
color: "Green",
prevo: "petilil",
evoType: "useItem",
evoItem: "Sun Stone",
eggGroups: ["Grass"],
},
basculin: {
num: 550,
name: "Basculin",
baseForme: "Red-Striped",
types: ["Water"],
baseStats: {hp: 70, atk: 92, def: 65, spa: 80, spd: 55, spe: 98},
abilities: {0: "Reckless", 1: "Adaptability", H: "Mold Breaker"},
heightm: 1,
weightkg: 18,
color: "Green",
eggGroups: ["Water 2"],
otherFormes: ["basculinbluestriped"],
},
basculinbluestriped: {
num: 550,
name: "Basculin-Blue-Striped",
baseSpecies: "Basculin",
forme: "Blue-Striped",
types: ["Water"],
baseStats: {hp: 70, atk: 92, def: 65, spa: 80, spd: 55, spe: 98},
abilities: {0: "Rock Head", 1: "Adaptability", H: "Mold Breaker"},
heightm: 1,
weightkg: 18,
color: "Green",
eggGroups: ["Water 2"],
},
sandile: {
num: 551,
name: "Sandile",
types: ["Ground", "Dark"],
baseStats: {hp: 50, atk: 72, def: 35, spa: 35, spd: 35, spe: 65},
abilities: {0: "Intimidate", 1: "Moxie", H: "Anger Point"},
heightm: 0.7,
weightkg: 15.2,
color: "Brown",
evos: ["krokorok"],
eggGroups: ["Field"],
},
krokorok: {
num: 552,
name: "Krokorok",
types: ["Ground", "Dark"],
baseStats: {hp: 60, atk: 82, def: 45, spa: 45, spd: 45, spe: 74},
abilities: {0: "Intimidate", 1: "Moxie", H: "Anger Point"},
heightm: 1,
weightkg: 33.4,
color: "Brown",
prevo: "sandile",
evoLevel: 29,
evos: ["krookodile"],
eggGroups: ["Field"],
},
krookodile: {
num: 553,
name: "Krookodile",
types: ["Ground", "Dark"],
baseStats: {hp: 95, atk: 117, def: 80, spa: 65, spd: 70, spe: 92},
abilities: {0: "Intimidate", 1: "Moxie", H: "Anger Point"},
heightm: 1.5,
weightkg: 96.3,
color: "Red",
prevo: "krokorok",
evoLevel: 40,
eggGroups: ["Field"],
},
darumaka: {
num: 554,
name: "Darumaka",
types: ["Fire"],
baseStats: {hp: 70, atk: 90, def: 45, spa: 15, spd: 45, spe: 50},
abilities: {0: "Hustle", H: "Inner Focus"},
heightm: 0.6,
weightkg: 37.5,
color: "Red",
evos: ["darmanitan"],
eggGroups: ["Field"],
otherFormes: ["darumakagalar"],
},
darumakagalar: {
num: 554,
name: "Darumaka-Galar",
baseSpecies: "Darumaka",
forme: "Galar",
types: ["Ice"],
baseStats: {hp: 70, atk: 90, def: 45, spa: 15, spd: 45, spe: 50},
abilities: {0: "Hustle", H: "Inner Focus"},
heightm: 0.7,
weightkg: 40,
color: "White",
evos: ["darmanitangalar"],
eggGroups: ["Field"],
},
darmanitan: {
num: 555,
name: "Darmanitan",
baseForme: "Standard",
types: ["Fire"],
baseStats: {hp: 105, atk: 140, def: 55, spa: 30, spd: 55, spe: 95},
abilities: {0: "Sheer Force", H: "Zen Mode"},
heightm: 1.3,
weightkg: 92.9,
color: "Red",
prevo: "darumaka",
evoLevel: 35,
eggGroups: ["Field"],
otherFormes: ["darmanitanzen", "darmanitangalar", "darmanitangalarzen"],
},
darmanitanzen: {
num: 555,
name: "Darmanitan-Zen",
baseSpecies: "Darmanitan",
forme: "Zen",
types: ["Fire", "Psychic"],
baseStats: {hp: 105, atk: 30, def: 105, spa: 140, spd: 105, spe: 55},
abilities: {0: "Zen Mode"},
heightm: 1.3,
weightkg: 92.9,
color: "Blue",
prevo: "darumaka",
evoLevel: 35,
eggGroups: ["Field"],
requiredAbility: "Zen Mode",
battleOnly: "Darmanitan",
},
darmanitangalar: {
num: 555,
name: "Darmanitan-Galar",
baseSpecies: "Darmanitan",
forme: "Galar",
types: ["Ice"],
baseStats: {hp: 105, atk: 140, def: 55, spa: 30, spd: 55, spe: 95},
abilities: {0: "Gorilla Tactics", H: "Zen Mode"},
heightm: 1.7,
weightkg: 120,
color: "White",
prevo: "darumakagalar",
evoType: "useItem",
evoItem: "Ice Stone",
eggGroups: ["Field"],
},
darmanitangalarzen: {
num: 555,
name: "Darmanitan-Galar-Zen",
baseSpecies: "Darmanitan",
forme: "Galar-Zen",
types: ["Ice", "Fire"],
baseStats: {hp: 105, atk: 160, def: 55, spa: 30, spd: 55, spe: 135},
abilities: {0: "Zen Mode"},
heightm: 1.7,
weightkg: 120,
color: "White",
prevo: "darumakagalar",
evoType: "useItem",
evoItem: "Ice Stone",
eggGroups: ["Field"],
requiredAbility: "Zen Mode",
battleOnly: "Darmanitan-Galar",
},
maractus: {
num: 556,
name: "Maractus",
types: ["Grass"],
baseStats: {hp: 75, atk: 86, def: 67, spa: 106, spd: 67, spe: 60},
abilities: {0: "Water Absorb", 1: "Chlorophyll", H: "Storm Drain"},
heightm: 1,
weightkg: 28,
color: "Green",
eggGroups: ["Grass"],
},
dwebble: {
num: 557,
name: "Dwebble",
types: ["Bug", "Rock"],
baseStats: {hp: 50, atk: 65, def: 85, spa: 35, spd: 35, spe: 55},
abilities: {0: "Sturdy", 1: "Shell Armor", H: "Weak Armor"},
heightm: 0.3,
weightkg: 14.5,
color: "Red",
evos: ["crustle"],
eggGroups: ["Bug", "Mineral"],
},
crustle: {
num: 558,
name: "Crustle",
types: ["Bug", "Rock"],
baseStats: {hp: 70, atk: 105, def: 125, spa: 65, spd: 75, spe: 45},
abilities: {0: "Sturdy", 1: "Shell Armor", H: "Weak Armor"},
heightm: 1.4,
weightkg: 200,
color: "Red",
prevo: "dwebble",
evoLevel: 34,
eggGroups: ["Bug", "Mineral"],
},
scraggy: {
num: 559,
name: "Scraggy",
types: ["Dark", "Fighting"],
baseStats: {hp: 50, atk: 75, def: 70, spa: 35, spd: 70, spe: 48},
abilities: {0: "Shed Skin", 1: "Moxie", H: "Intimidate"},
heightm: 0.6,
weightkg: 11.8,
color: "Yellow",
evos: ["scrafty"],
eggGroups: ["Field", "Dragon"],
},
scrafty: {
num: 560,
name: "Scrafty",
types: ["Dark", "Fighting"],
baseStats: {hp: 65, atk: 90, def: 115, spa: 45, spd: 115, spe: 58},
abilities: {0: "Shed Skin", 1: "Moxie", H: "Intimidate"},
heightm: 1.1,
weightkg: 30,
color: "Red",
prevo: "scraggy",
evoLevel: 39,
eggGroups: ["Field", "Dragon"],
},
sigilyph: {
num: 561,
name: "Sigilyph",
types: ["Psychic", "Flying"],
baseStats: {hp: 72, atk: 58, def: 80, spa: 103, spd: 80, spe: 97},
abilities: {0: "Wonder Skin", 1: "Magic Guard", H: "Tinted Lens"},
heightm: 1.4,
weightkg: 14,
color: "Black",
eggGroups: ["Flying"],
},
yamask: {
num: 562,
name: "Yamask",
types: ["Ghost"],
baseStats: {hp: 38, atk: 30, def: 85, spa: 55, spd: 65, spe: 30},
abilities: {0: "Mummy"},
heightm: 0.5,
weightkg: 1.5,
color: "Black",
evos: ["cofagrigus"],
eggGroups: ["Mineral", "Amorphous"],
otherFormes: ["yamaskgalar"],
},
yamaskgalar: {
num: 562,
name: "Yamask-Galar",
baseSpecies: "Yamask",
forme: "Galar",
types: ["Ground", "Ghost"],
baseStats: {hp: 38, atk: 55, def: 85, spa: 30, spd: 65, spe: 30},
abilities: {0: "Wandering Spirit"},
heightm: 0.5,
weightkg: 1.5,
color: "Black",
evos: ["runerigus"],
eggGroups: ["Mineral", "Amorphous"],
},
cofagrigus: {
num: 563,
name: "Cofagrigus",
types: ["Ghost"],
baseStats: {hp: 58, atk: 50, def: 145, spa: 95, spd: 105, spe: 30},
abilities: {0: "Mummy"},
heightm: 1.7,
weightkg: 76.5,
color: "Yellow",
prevo: "yamask",
evoLevel: 34,
eggGroups: ["Mineral", "Amorphous"],
},
tirtouga: {
num: 564,
name: "Tirtouga",
types: ["Water", "Rock"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 54, atk: 78, def: 103, spa: 53, spd: 45, spe: 22},
abilities: {0: "Solid Rock", 1: "Sturdy", H: "Swift Swim"},
heightm: 0.7,
weightkg: 16.5,
color: "Blue",
evos: ["carracosta"],
eggGroups: ["Water 1", "Water 3"],
},
carracosta: {
num: 565,
name: "Carracosta",
types: ["Water", "Rock"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 74, atk: 108, def: 133, spa: 83, spd: 65, spe: 32},
abilities: {0: "Solid Rock", 1: "Sturdy", H: "Swift Swim"},
heightm: 1.2,
weightkg: 81,
color: "Blue",
prevo: "tirtouga",
evoLevel: 37,
eggGroups: ["Water 1", "Water 3"],
},
archen: {
num: 566,
name: "Archen",
types: ["Rock", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 55, atk: 112, def: 45, spa: 74, spd: 45, spe: 70},
abilities: {0: "Defeatist"},
heightm: 0.5,
weightkg: 9.5,
color: "Yellow",
evos: ["archeops"],
eggGroups: ["Flying", "Water 3"],
},
archeops: {
num: 567,
name: "Archeops",
types: ["Rock", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 140, def: 65, spa: 112, spd: 65, spe: 110},
abilities: {0: "Defeatist"},
heightm: 1.4,
weightkg: 32,
color: "Yellow",
prevo: "archen",
evoLevel: 37,
eggGroups: ["Flying", "Water 3"],
},
trubbish: {
num: 568,
name: "Trubbish",
types: ["Poison"],
baseStats: {hp: 50, atk: 50, def: 62, spa: 40, spd: 62, spe: 65},
abilities: {0: "Stench", 1: "Sticky Hold", H: "Aftermath"},
heightm: 0.6,
weightkg: 31,
color: "Green",
evos: ["garbodor"],
eggGroups: ["Mineral"],
},
garbodor: {
num: 569,
name: "Garbodor",
types: ["Poison"],
baseStats: {hp: 80, atk: 95, def: 82, spa: 60, spd: 82, spe: 75},
abilities: {0: "Stench", 1: "Weak Armor", H: "Aftermath"},
heightm: 1.9,
weightkg: 107.3,
color: "Green",
prevo: "trubbish",
evoLevel: 36,
eggGroups: ["Mineral"],
otherFormes: ["garbodorgmax"],
},
garbodorgmax: {
num: 569,
name: "Garbodor-Gmax",
baseSpecies: "Garbodor",
forme: "Gmax",
types: ["Poison"],
baseStats: {hp: 80, atk: 95, def: 82, spa: 60, spd: 82, spe: 75},
abilities: {0: "Stench", 1: "Weak Armor", H: "Aftermath"},
heightm: 21,
weightkg: 0,
color: "Green",
eggGroups: ["Mineral"],
isGigantamax: "G-Max Malodor",
},
zorua: {
num: 570,
name: "Zorua",
types: ["Dark"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 40, atk: 65, def: 40, spa: 80, spd: 40, spe: 65},
abilities: {0: "Illusion"},
heightm: 0.7,
weightkg: 12.5,
color: "Gray",
evos: ["zoroark"],
eggGroups: ["Field"],
},
zoroark: {
num: 571,
name: "Zoroark",
types: ["Dark"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 105, def: 60, spa: 120, spd: 60, spe: 105},
abilities: {0: "Illusion"},
heightm: 1.6,
weightkg: 81.1,
color: "Gray",
prevo: "zorua",
evoLevel: 30,
eggGroups: ["Field"],
},
minccino: {
num: 572,
name: "Minccino",
types: ["Normal"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 55, atk: 50, def: 40, spa: 40, spd: 40, spe: 75},
abilities: {0: "Cute Charm", 1: "Technician", H: "Skill Link"},
heightm: 0.4,
weightkg: 5.8,
color: "Gray",
evos: ["cinccino"],
eggGroups: ["Field"],
},
cinccino: {
num: 573,
name: "Cinccino",
types: ["Normal"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 75, atk: 95, def: 60, spa: 65, spd: 60, spe: 115},
abilities: {0: "Cute Charm", 1: "Technician", H: "Skill Link"},
heightm: 0.5,
weightkg: 7.5,
color: "Gray",
prevo: "minccino",
evoType: "useItem",
evoItem: "Shiny Stone",
eggGroups: ["Field"],
},
gothita: {
num: 574,
name: "Gothita",
types: ["Psychic"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 45, atk: 30, def: 50, spa: 55, spd: 65, spe: 45},
abilities: {0: "Frisk", 1: "Competitive", H: "Shadow Tag"},
heightm: 0.4,
weightkg: 5.8,
color: "Purple",
evos: ["gothorita"],
eggGroups: ["Human-Like"],
},
gothorita: {
num: 575,
name: "Gothorita",
types: ["Psychic"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 60, atk: 45, def: 70, spa: 75, spd: 85, spe: 55},
abilities: {0: "Frisk", 1: "Competitive", H: "Shadow Tag"},
heightm: 0.7,
weightkg: 18,
color: "Purple",
prevo: "gothita",
evoLevel: 32,
evos: ["gothitelle"],
eggGroups: ["Human-Like"],
},
gothitelle: {
num: 576,
name: "Gothitelle",
types: ["Psychic"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 70, atk: 55, def: 95, spa: 95, spd: 110, spe: 65},
abilities: {0: "Frisk", 1: "Competitive", H: "Shadow Tag"},
heightm: 1.5,
weightkg: 44,
color: "Purple",
prevo: "gothorita",
evoLevel: 41,
eggGroups: ["Human-Like"],
},
solosis: {
num: 577,
name: "Solosis",
types: ["Psychic"],
baseStats: {hp: 45, atk: 30, def: 40, spa: 105, spd: 50, spe: 20},
abilities: {0: "Overcoat", 1: "Magic Guard", H: "Regenerator"},
heightm: 0.3,
weightkg: 1,
color: "Green",
evos: ["duosion"],
eggGroups: ["Amorphous"],
},
duosion: {
num: 578,
name: "Duosion",
types: ["Psychic"],
baseStats: {hp: 65, atk: 40, def: 50, spa: 125, spd: 60, spe: 30},
abilities: {0: "Overcoat", 1: "Magic Guard", H: "Regenerator"},
heightm: 0.6,
weightkg: 8,
color: "Green",
prevo: "solosis",
evoLevel: 32,
evos: ["reuniclus"],
eggGroups: ["Amorphous"],
},
reuniclus: {
num: 579,
name: "Reuniclus",
types: ["Psychic"],
baseStats: {hp: 110, atk: 65, def: 75, spa: 125, spd: 85, spe: 30},
abilities: {0: "Overcoat", 1: "Magic Guard", H: "Regenerator"},
heightm: 1,
weightkg: 20.1,
color: "Green",
prevo: "duosion",
evoLevel: 41,
eggGroups: ["Amorphous"],
},
ducklett: {
num: 580,
name: "Ducklett",
types: ["Water", "Flying"],
baseStats: {hp: 62, atk: 44, def: 50, spa: 44, spd: 50, spe: 55},
abilities: {0: "Keen Eye", 1: "Big Pecks", H: "Hydration"},
heightm: 0.5,
weightkg: 5.5,
color: "Blue",
evos: ["swanna"],
eggGroups: ["Water 1", "Flying"],
},
swanna: {
num: 581,
name: "Swanna",
types: ["Water", "Flying"],
baseStats: {hp: 75, atk: 87, def: 63, spa: 87, spd: 63, spe: 98},
abilities: {0: "Keen Eye", 1: "Big Pecks", H: "Hydration"},
heightm: 1.3,
weightkg: 24.2,
color: "White",
prevo: "ducklett",
evoLevel: 35,
eggGroups: ["Water 1", "Flying"],
},
vanillite: {
num: 582,
name: "Vanillite",
types: ["Ice"],
baseStats: {hp: 36, atk: 50, def: 50, spa: 65, spd: 60, spe: 44},
abilities: {0: "Ice Body", 1: "Snow Cloak", H: "Weak Armor"},
heightm: 0.4,
weightkg: 5.7,
color: "White",
evos: ["vanillish"],
eggGroups: ["Mineral"],
},
vanillish: {
num: 583,
name: "Vanillish",
types: ["Ice"],
baseStats: {hp: 51, atk: 65, def: 65, spa: 80, spd: 75, spe: 59},
abilities: {0: "Ice Body", 1: "Snow Cloak", H: "Weak Armor"},
heightm: 1.1,
weightkg: 41,
color: "White",
prevo: "vanillite",
evoLevel: 35,
evos: ["vanilluxe"],
eggGroups: ["Mineral"],
},
vanilluxe: {
num: 584,
name: "Vanilluxe",
types: ["Ice"],
baseStats: {hp: 71, atk: 95, def: 85, spa: 110, spd: 95, spe: 79},
abilities: {0: "Ice Body", 1: "Snow Warning", H: "Weak Armor"},
heightm: 1.3,
weightkg: 57.5,
color: "White",
prevo: "vanillish",
evoLevel: 47,
eggGroups: ["Mineral"],
},
deerling: {
num: 585,
name: "Deerling",
baseForme: "Spring",
types: ["Normal", "Grass"],
baseStats: {hp: 60, atk: 60, def: 50, spa: 40, spd: 50, spe: 75},
abilities: {0: "Chlorophyll", 1: "Sap Sipper", H: "Serene Grace"},
heightm: 0.6,
weightkg: 19.5,
color: "Pink",
evos: ["sawsbuck"],
eggGroups: ["Field"],
cosmeticFormes: ["deerlingsummer", "deerlingautumn", "deerlingwinter"],
},
sawsbuck: {
num: 586,
name: "Sawsbuck",
baseForme: "Spring",
types: ["Normal", "Grass"],
baseStats: {hp: 80, atk: 100, def: 70, spa: 60, spd: 70, spe: 95},
abilities: {0: "Chlorophyll", 1: "Sap Sipper", H: "Serene Grace"},
heightm: 1.9,
weightkg: 92.5,
color: "Brown",
prevo: "deerling",
evoLevel: 34,
eggGroups: ["Field"],
cosmeticFormes: ["sawsbucksummer", "sawsbuckautumn", "sawsbuckwinter"],
},
emolga: {
num: 587,
name: "Emolga",
types: ["Electric", "Flying"],
baseStats: {hp: 55, atk: 75, def: 60, spa: 75, spd: 60, spe: 103},
abilities: {0: "Static", H: "Motor Drive"},
heightm: 0.4,
weightkg: 5,
color: "White",
eggGroups: ["Field"],
},
karrablast: {
num: 588,
name: "Karrablast",
types: ["Bug"],
baseStats: {hp: 50, atk: 75, def: 45, spa: 40, spd: 45, spe: 60},
abilities: {0: "Swarm", 1: "Shed Skin", H: "No Guard"},
heightm: 0.5,
weightkg: 5.9,
color: "Blue",
evos: ["escavalier"],
eggGroups: ["Bug"],
},
escavalier: {
num: 589,
name: "Escavalier",
types: ["Bug", "Steel"],
baseStats: {hp: 70, atk: 135, def: 105, spa: 60, spd: 105, spe: 20},
abilities: {0: "Swarm", 1: "Shell Armor", H: "Overcoat"},
heightm: 1,
weightkg: 33,
color: "Gray",
prevo: "karrablast",
evoType: "trade",
evoCondition: "with a Shelmet",
eggGroups: ["Bug"],
},
foongus: {
num: 590,
name: "Foongus",
types: ["Grass", "Poison"],
baseStats: {hp: 69, atk: 55, def: 45, spa: 55, spd: 55, spe: 15},
abilities: {0: "Effect Spore", H: "Regenerator"},
heightm: 0.2,
weightkg: 1,
color: "White",
evos: ["amoonguss"],
eggGroups: ["Grass"],
},
amoonguss: {
num: 591,
name: "Amoonguss",
types: ["Grass", "Poison"],
baseStats: {hp: 114, atk: 85, def: 70, spa: 85, spd: 80, spe: 30},
abilities: {0: "Effect Spore", H: "Regenerator"},
heightm: 0.6,
weightkg: 10.5,
color: "White",
prevo: "foongus",
evoLevel: 39,
eggGroups: ["Grass"],
},
frillish: {
num: 592,
name: "Frillish",
types: ["Water", "Ghost"],
baseStats: {hp: 55, atk: 40, def: 50, spa: 65, spd: 85, spe: 40},
abilities: {0: "Water Absorb", 1: "Cursed Body", H: "Damp"},
heightm: 1.2,
weightkg: 33,
color: "White",
evos: ["jellicent"],
eggGroups: ["Amorphous"],
},
jellicent: {
num: 593,
name: "Jellicent",
types: ["Water", "Ghost"],
baseStats: {hp: 100, atk: 60, def: 70, spa: 85, spd: 105, spe: 60},
abilities: {0: "Water Absorb", 1: "Cursed Body", H: "Damp"},
heightm: 2.2,
weightkg: 135,
color: "White",
prevo: "frillish",
evoLevel: 40,
eggGroups: ["Amorphous"],
},
alomomola: {
num: 594,
name: "Alomomola",
types: ["Water"],
baseStats: {hp: 165, atk: 75, def: 80, spa: 40, spd: 45, spe: 65},
abilities: {0: "Healer", 1: "Hydration", H: "Regenerator"},
heightm: 1.2,
weightkg: 31.6,
color: "Pink",
eggGroups: ["Water 1", "Water 2"],
},
joltik: {
num: 595,
name: "Joltik",
types: ["Bug", "Electric"],
baseStats: {hp: 50, atk: 47, def: 50, spa: 57, spd: 50, spe: 65},
abilities: {0: "Compound Eyes", 1: "Unnerve", H: "Swarm"},
heightm: 0.1,
weightkg: 0.6,
color: "Yellow",
evos: ["galvantula"],
eggGroups: ["Bug"],
},
galvantula: {
num: 596,
name: "Galvantula",
types: ["Bug", "Electric"],
baseStats: {hp: 70, atk: 77, def: 60, spa: 97, spd: 60, spe: 108},
abilities: {0: "Compound Eyes", 1: "Unnerve", H: "Swarm"},
heightm: 0.8,
weightkg: 14.3,
color: "Yellow",
prevo: "joltik",
evoLevel: 36,
eggGroups: ["Bug"],
},
ferroseed: {
num: 597,
name: "Ferroseed",
types: ["Grass", "Steel"],
baseStats: {hp: 44, atk: 50, def: 91, spa: 24, spd: 86, spe: 10},
abilities: {0: "Iron Barbs"},
heightm: 0.6,
weightkg: 18.8,
color: "Gray",
evos: ["ferrothorn"],
eggGroups: ["Grass", "Mineral"],
},
ferrothorn: {
num: 598,
name: "Ferrothorn",
types: ["Grass", "Steel"],
baseStats: {hp: 74, atk: 94, def: 131, spa: 54, spd: 116, spe: 20},
abilities: {0: "Iron Barbs", H: "Anticipation"},
heightm: 1,
weightkg: 110,
color: "Gray",
prevo: "ferroseed",
evoLevel: 40,
eggGroups: ["Grass", "Mineral"],
},
klink: {
num: 599,
name: "Klink",
types: ["Steel"],
gender: "N",
baseStats: {hp: 40, atk: 55, def: 70, spa: 45, spd: 60, spe: 30},
abilities: {0: "Plus", 1: "Minus", H: "Clear Body"},
heightm: 0.3,
weightkg: 21,
color: "Gray",
evos: ["klang"],
eggGroups: ["Mineral"],
},
klang: {
num: 600,
name: "Klang",
types: ["Steel"],
gender: "N",
baseStats: {hp: 60, atk: 80, def: 95, spa: 70, spd: 85, spe: 50},
abilities: {0: "Plus", 1: "Minus", H: "Clear Body"},
heightm: 0.6,
weightkg: 51,
color: "Gray",
prevo: "klink",
evoLevel: 38,
evos: ["klinklang"],
eggGroups: ["Mineral"],
},
klinklang: {
num: 601,
name: "Klinklang",
types: ["Steel"],
gender: "N",
baseStats: {hp: 60, atk: 100, def: 115, spa: 70, spd: 85, spe: 90},
abilities: {0: "Plus", 1: "Minus", H: "Clear Body"},
heightm: 0.6,
weightkg: 81,
color: "Gray",
prevo: "klang",
evoLevel: 49,
eggGroups: ["Mineral"],
},
tynamo: {
num: 602,
name: "Tynamo",
types: ["Electric"],
baseStats: {hp: 35, atk: 55, def: 40, spa: 45, spd: 40, spe: 60},
abilities: {0: "Levitate"},
heightm: 0.2,
weightkg: 0.3,
color: "White",
evos: ["eelektrik"],
eggGroups: ["Amorphous"],
},
eelektrik: {
num: 603,
name: "Eelektrik",
types: ["Electric"],
baseStats: {hp: 65, atk: 85, def: 70, spa: 75, spd: 70, spe: 40},
abilities: {0: "Levitate"},
heightm: 1.2,
weightkg: 22,
color: "Blue",
prevo: "tynamo",
evoLevel: 39,
evos: ["eelektross"],
eggGroups: ["Amorphous"],
},
eelektross: {
num: 604,
name: "Eelektross",
types: ["Electric"],
baseStats: {hp: 85, atk: 115, def: 80, spa: 105, spd: 80, spe: 50},
abilities: {0: "Levitate"},
heightm: 2.1,
weightkg: 80.5,
color: "Blue",
prevo: "eelektrik",
evoType: "useItem",
evoItem: "Thunder Stone",
eggGroups: ["Amorphous"],
},
elgyem: {
num: 605,
name: "Elgyem",
types: ["Psychic"],
baseStats: {hp: 55, atk: 55, def: 55, spa: 85, spd: 55, spe: 30},
abilities: {0: "Telepathy", 1: "Synchronize", H: "Analytic"},
heightm: 0.5,
weightkg: 9,
color: "Blue",
evos: ["beheeyem"],
eggGroups: ["Human-Like"],
},
beheeyem: {
num: 606,
name: "Beheeyem",
types: ["Psychic"],
baseStats: {hp: 75, atk: 75, def: 75, spa: 125, spd: 95, spe: 40},
abilities: {0: "Telepathy", 1: "Synchronize", H: "Analytic"},
heightm: 1,
weightkg: 34.5,
color: "Brown",
prevo: "elgyem",
evoLevel: 42,
eggGroups: ["Human-Like"],
},
litwick: {
num: 607,
name: "Litwick",
types: ["Ghost", "Fire"],
baseStats: {hp: 50, atk: 30, def: 55, spa: 65, spd: 55, spe: 20},
abilities: {0: "Flash Fire", 1: "Flame Body", H: "Infiltrator"},
heightm: 0.3,
weightkg: 3.1,
color: "White",
evos: ["lampent"],
eggGroups: ["Amorphous"],
},
lampent: {
num: 608,
name: "Lampent",
types: ["Ghost", "Fire"],
baseStats: {hp: 60, atk: 40, def: 60, spa: 95, spd: 60, spe: 55},
abilities: {0: "Flash Fire", 1: "Flame Body", H: "Infiltrator"},
heightm: 0.6,
weightkg: 13,
color: "Black",
prevo: "litwick",
evoLevel: 41,
evos: ["chandelure"],
eggGroups: ["Amorphous"],
},
chandelure: {
num: 609,
name: "Chandelure",
types: ["Ghost", "Fire"],
baseStats: {hp: 60, atk: 55, def: 90, spa: 145, spd: 90, spe: 80},
abilities: {0: "Flash Fire", 1: "Flame Body", H: "Infiltrator"},
heightm: 1,
weightkg: 34.3,
color: "Black",
prevo: "lampent",
evoType: "useItem",
evoItem: "Dusk Stone",
eggGroups: ["Amorphous"],
},
axew: {
num: 610,
name: "Axew",
types: ["Dragon"],
baseStats: {hp: 46, atk: 87, def: 60, spa: 30, spd: 40, spe: 57},
abilities: {0: "Rivalry", 1: "Mold Breaker", H: "Unnerve"},
heightm: 0.6,
weightkg: 18,
color: "Green",
evos: ["fraxure"],
eggGroups: ["Monster", "Dragon"],
},
fraxure: {
num: 611,
name: "Fraxure",
types: ["Dragon"],
baseStats: {hp: 66, atk: 117, def: 70, spa: 40, spd: 50, spe: 67},
abilities: {0: "Rivalry", 1: "Mold Breaker", H: "Unnerve"},
heightm: 1,
weightkg: 36,
color: "Green",
prevo: "axew",
evoLevel: 38,
evos: ["haxorus"],
eggGroups: ["Monster", "Dragon"],
},
haxorus: {
num: 612,
name: "Haxorus",
types: ["Dragon"],
baseStats: {hp: 76, atk: 147, def: 90, spa: 60, spd: 70, spe: 97},
abilities: {0: "Rivalry", 1: "Mold Breaker", H: "Unnerve"},
heightm: 1.8,
weightkg: 105.5,
color: "Yellow",
prevo: "fraxure",
evoLevel: 48,
eggGroups: ["Monster", "Dragon"],
},
cubchoo: {
num: 613,
name: "Cubchoo",
types: ["Ice"],
baseStats: {hp: 55, atk: 70, def: 40, spa: 60, spd: 40, spe: 40},
abilities: {0: "Snow Cloak", 1: "Slush Rush", H: "Rattled"},
heightm: 0.5,
weightkg: 8.5,
color: "White",
evos: ["beartic"],
eggGroups: ["Field"],
},
beartic: {
num: 614,
name: "Beartic",
types: ["Ice"],
baseStats: {hp: 95, atk: 130, def: 80, spa: 70, spd: 80, spe: 50},
abilities: {0: "Snow Cloak", 1: "Slush Rush", H: "Swift Swim"},
heightm: 2.6,
weightkg: 260,
color: "White",
prevo: "cubchoo",
evoLevel: 37,
eggGroups: ["Field"],
},
cryogonal: {
num: 615,
name: "Cryogonal",
types: ["Ice"],
gender: "N",
baseStats: {hp: 80, atk: 50, def: 50, spa: 95, spd: 135, spe: 105},
abilities: {0: "Levitate"},
heightm: 1.1,
weightkg: 148,
color: "Blue",
eggGroups: ["Mineral"],
},
shelmet: {
num: 616,
name: "Shelmet",
types: ["Bug"],
baseStats: {hp: 50, atk: 40, def: 85, spa: 40, spd: 65, spe: 25},
abilities: {0: "Hydration", 1: "Shell Armor", H: "Overcoat"},
heightm: 0.4,
weightkg: 7.7,
color: "Red",
evos: ["accelgor"],
eggGroups: ["Bug"],
},
accelgor: {
num: 617,
name: "Accelgor",
types: ["Bug"],
baseStats: {hp: 80, atk: 70, def: 40, spa: 100, spd: 60, spe: 145},
abilities: {0: "Hydration", 1: "Sticky Hold", H: "Unburden"},
heightm: 0.8,
weightkg: 25.3,
color: "Red",
prevo: "shelmet",
evoType: "trade",
evoCondition: "with a Karrablast",
eggGroups: ["Bug"],
},
stunfisk: {
num: 618,
name: "Stunfisk",
types: ["Ground", "Electric"],
baseStats: {hp: 109, atk: 66, def: 84, spa: 81, spd: 99, spe: 32},
abilities: {0: "Static", 1: "Limber", H: "Sand Veil"},
heightm: 0.7,
weightkg: 11,
color: "Brown",
eggGroups: ["Water 1", "Amorphous"],
otherFormes: ["stunfiskgalar"],
},
stunfiskgalar: {
num: 618,
name: "Stunfisk-Galar",
baseSpecies: "Stunfisk",
forme: "Galar",
types: ["Ground", "Steel"],
baseStats: {hp: 109, atk: 81, def: 99, spa: 66, spd: 84, spe: 32},
abilities: {0: "Mimicry"},
heightm: 0.7,
weightkg: 20.5,
color: "Green",
eggGroups: ["Water 1", "Amorphous"],
},
mienfoo: {
num: 619,
name: "Mienfoo",
types: ["Fighting"],
baseStats: {hp: 45, atk: 85, def: 50, spa: 55, spd: 50, spe: 65},
abilities: {0: "Inner Focus", 1: "Regenerator", H: "Reckless"},
heightm: 0.9,
weightkg: 20,
color: "Yellow",
evos: ["mienshao"],
eggGroups: ["Field", "Human-Like"],
},
mienshao: {
num: 620,
name: "Mienshao",
types: ["Fighting"],
baseStats: {hp: 65, atk: 125, def: 60, spa: 95, spd: 60, spe: 105},
abilities: {0: "Inner Focus", 1: "Regenerator", H: "Reckless"},
heightm: 1.4,
weightkg: 35.5,
color: "Purple",
prevo: "mienfoo",
evoLevel: 50,
eggGroups: ["Field", "Human-Like"],
},
druddigon: {
num: 621,
name: "Druddigon",
types: ["Dragon"],
baseStats: {hp: 77, atk: 120, def: 90, spa: 60, spd: 90, spe: 48},
abilities: {0: "Rough Skin", 1: "Sheer Force", H: "Mold Breaker"},
heightm: 1.6,
weightkg: 139,
color: "Red",
eggGroups: ["Monster", "Dragon"],
},
golett: {
num: 622,
name: "Golett",
types: ["Ground", "Ghost"],
gender: "N",
baseStats: {hp: 59, atk: 74, def: 50, spa: 35, spd: 50, spe: 35},
abilities: {0: "Iron Fist", 1: "Klutz", H: "No Guard"},
heightm: 1,
weightkg: 92,
color: "Green",
evos: ["golurk"],
eggGroups: ["Mineral"],
},
golurk: {
num: 623,
name: "Golurk",
types: ["Ground", "Ghost"],
gender: "N",
baseStats: {hp: 89, atk: 124, def: 80, spa: 55, spd: 80, spe: 55},
abilities: {0: "Iron Fist", 1: "Klutz", H: "No Guard"},
heightm: 2.8,
weightkg: 330,
color: "Green",
prevo: "golett",
evoLevel: 43,
eggGroups: ["Mineral"],
},
pawniard: {
num: 624,
name: "Pawniard",
types: ["Dark", "Steel"],
baseStats: {hp: 45, atk: 85, def: 70, spa: 40, spd: 40, spe: 60},
abilities: {0: "Defiant", 1: "Inner Focus", H: "Pressure"},
heightm: 0.5,
weightkg: 10.2,
color: "Red",
evos: ["bisharp"],
eggGroups: ["Human-Like"],
},
bisharp: {
num: 625,
name: "Bisharp",
types: ["Dark", "Steel"],
baseStats: {hp: 65, atk: 125, def: 100, spa: 60, spd: 70, spe: 70},
abilities: {0: "Defiant", 1: "Inner Focus", H: "Pressure"},
heightm: 1.6,
weightkg: 70,
color: "Red",
prevo: "pawniard",
evoLevel: 52,
eggGroups: ["Human-Like"],
},
bouffalant: {
num: 626,
name: "Bouffalant",
types: ["Normal"],
baseStats: {hp: 95, atk: 110, def: 95, spa: 40, spd: 95, spe: 55},
abilities: {0: "Reckless", 1: "Sap Sipper", H: "Soundproof"},
heightm: 1.6,
weightkg: 94.6,
color: "Brown",
eggGroups: ["Field"],
},
rufflet: {
num: 627,
name: "Rufflet",
types: ["Normal", "Flying"],
gender: "M",
baseStats: {hp: 70, atk: 83, def: 50, spa: 37, spd: 50, spe: 60},
abilities: {0: "Keen Eye", 1: "Sheer Force", H: "Hustle"},
heightm: 0.5,
weightkg: 10.5,
color: "White",
evos: ["braviary"],
eggGroups: ["Flying"],
},
braviary: {
num: 628,
name: "Braviary",
types: ["Normal", "Flying"],
gender: "M",
baseStats: {hp: 100, atk: 123, def: 75, spa: 57, spd: 75, spe: 80},
abilities: {0: "Keen Eye", 1: "Sheer Force", H: "Defiant"},
heightm: 1.5,
weightkg: 41,
color: "Red",
prevo: "rufflet",
evoLevel: 54,
eggGroups: ["Flying"],
},
vullaby: {
num: 629,
name: "Vullaby",
types: ["Dark", "Flying"],
gender: "F",
baseStats: {hp: 70, atk: 55, def: 75, spa: 45, spd: 65, spe: 60},
abilities: {0: "Big Pecks", 1: "Overcoat", H: "Weak Armor"},
heightm: 0.5,
weightkg: 9,
color: "Brown",
evos: ["mandibuzz"],
eggGroups: ["Flying"],
},
mandibuzz: {
num: 630,
name: "Mandibuzz",
types: ["Dark", "Flying"],
gender: "F",
baseStats: {hp: 110, atk: 65, def: 105, spa: 55, spd: 95, spe: 80},
abilities: {0: "Big Pecks", 1: "Overcoat", H: "Weak Armor"},
heightm: 1.2,
weightkg: 39.5,
color: "Brown",
prevo: "vullaby",
evoLevel: 54,
eggGroups: ["Flying"],
},
heatmor: {
num: 631,
name: "Heatmor",
types: ["Fire"],
baseStats: {hp: 85, atk: 97, def: 66, spa: 105, spd: 66, spe: 65},
abilities: {0: "Gluttony", 1: "Flash Fire", H: "White Smoke"},
heightm: 1.4,
weightkg: 58,
color: "Red",
eggGroups: ["Field"],
},
durant: {
num: 632,
name: "Durant",
types: ["Bug", "Steel"],
baseStats: {hp: 58, atk: 109, def: 112, spa: 48, spd: 48, spe: 109},
abilities: {0: "Swarm", 1: "Hustle", H: "Truant"},
heightm: 0.3,
weightkg: 33,
color: "Gray",
eggGroups: ["Bug"],
},
deino: {
num: 633,
name: "Deino",
types: ["Dark", "Dragon"],
baseStats: {hp: 52, atk: 65, def: 50, spa: 45, spd: 50, spe: 38},
abilities: {0: "Hustle"},
heightm: 0.8,
weightkg: 17.3,
color: "Blue",
evos: ["zweilous"],
eggGroups: ["Dragon"],
},
zweilous: {
num: 634,
name: "Zweilous",
types: ["Dark", "Dragon"],
baseStats: {hp: 72, atk: 85, def: 70, spa: 65, spd: 70, spe: 58},
abilities: {0: "Hustle"},
heightm: 1.4,
weightkg: 50,
color: "Blue",
prevo: "deino",
evoLevel: 50,
evos: ["hydreigon"],
eggGroups: ["Dragon"],
},
hydreigon: {
num: 635,
name: "Hydreigon",
types: ["Dark", "Dragon"],
baseStats: {hp: 92, atk: 105, def: 90, spa: 125, spd: 90, spe: 98},
abilities: {0: "Levitate"},
heightm: 1.8,
weightkg: 160,
color: "Blue",
prevo: "zweilous",
evoLevel: 64,
eggGroups: ["Dragon"],
},
larvesta: {
num: 636,
name: "Larvesta",
types: ["Bug", "Fire"],
baseStats: {hp: 55, atk: 85, def: 55, spa: 50, spd: 55, spe: 60},
abilities: {0: "Flame Body", H: "Swarm"},
heightm: 1.1,
weightkg: 28.8,
color: "White",
evos: ["volcarona"],
eggGroups: ["Bug"],
},
volcarona: {
num: 637,
name: "Volcarona",
types: ["Bug", "Fire"],
baseStats: {hp: 85, atk: 60, def: 65, spa: 135, spd: 105, spe: 100},
abilities: {0: "Flame Body", H: "Swarm"},
heightm: 1.6,
weightkg: 46,
color: "White",
prevo: "larvesta",
evoLevel: 59,
eggGroups: ["Bug"],
},
cobalion: {
num: 638,
name: "Cobalion",
types: ["Steel", "Fighting"],
gender: "N",
baseStats: {hp: 91, atk: 90, def: 129, spa: 90, spd: 72, spe: 108},
abilities: {0: "Justified"},
heightm: 2.1,
weightkg: 250,
color: "Blue",
eggGroups: ["Undiscovered"],
},
terrakion: {
num: 639,
name: "Terrakion",
types: ["Rock", "Fighting"],
gender: "N",
baseStats: {hp: 91, atk: 129, def: 90, spa: 72, spd: 90, spe: 108},
abilities: {0: "Justified"},
heightm: 1.9,
weightkg: 260,
color: "Gray",
eggGroups: ["Undiscovered"],
},
virizion: {
num: 640,
name: "Virizion",
types: ["Grass", "Fighting"],
gender: "N",
baseStats: {hp: 91, atk: 90, def: 72, spa: 90, spd: 129, spe: 108},
abilities: {0: "Justified"},
heightm: 2,
weightkg: 200,
color: "Green",
eggGroups: ["Undiscovered"],
},
tornadus: {
num: 641,
name: "Tornadus",
baseForme: "Incarnate",
types: ["Flying"],
gender: "M",
baseStats: {hp: 79, atk: 115, def: 70, spa: 125, spd: 80, spe: 111},
abilities: {0: "Prankster", H: "Defiant"},
heightm: 1.5,
weightkg: 63,
color: "Green",
eggGroups: ["Undiscovered"],
otherFormes: ["tornadustherian"],
},
tornadustherian: {
num: 641,
name: "Tornadus-Therian",
baseSpecies: "Tornadus",
forme: "Therian",
types: ["Flying"],
gender: "M",
baseStats: {hp: 79, atk: 100, def: 80, spa: 110, spd: 90, spe: 121},
abilities: {0: "Regenerator"},
heightm: 1.4,
weightkg: 63,
color: "Green",
eggGroups: ["Undiscovered"],
},
thundurus: {
num: 642,
name: "Thundurus",
baseForme: "Incarnate",
types: ["Electric", "Flying"],
gender: "M",
baseStats: {hp: 79, atk: 115, def: 70, spa: 125, spd: 80, spe: 111},
abilities: {0: "Prankster", H: "Defiant"},
heightm: 1.5,
weightkg: 61,
color: "Blue",
eggGroups: ["Undiscovered"],
otherFormes: ["thundurustherian"],
},
thundurustherian: {
num: 642,
name: "Thundurus-Therian",
baseSpecies: "Thundurus",
forme: "Therian",
types: ["Electric", "Flying"],
gender: "M",
baseStats: {hp: 79, atk: 105, def: 70, spa: 145, spd: 80, spe: 101},
abilities: {0: "Volt Absorb"},
heightm: 3,
weightkg: 61,
color: "Blue",
eggGroups: ["Undiscovered"],
},
reshiram: {
num: 643,
name: "Reshiram",
types: ["Dragon", "Fire"],
gender: "N",
baseStats: {hp: 100, atk: 120, def: 100, spa: 150, spd: 120, spe: 90},
abilities: {0: "Turboblaze"},
heightm: 3.2,
weightkg: 330,
color: "White",
eggGroups: ["Undiscovered"],
},
zekrom: {
num: 644,
name: "Zekrom",
types: ["Dragon", "Electric"],
gender: "N",
baseStats: {hp: 100, atk: 150, def: 120, spa: 120, spd: 100, spe: 90},
abilities: {0: "Teravolt"},
heightm: 2.9,
weightkg: 345,
color: "Black",
eggGroups: ["Undiscovered"],
},
landorus: {
num: 645,
name: "Landorus",
baseForme: "Incarnate",
types: ["Ground", "Flying"],
gender: "M",
baseStats: {hp: 89, atk: 125, def: 90, spa: 115, spd: 80, spe: 101},
abilities: {0: "Sand Force", H: "Sheer Force"},
heightm: 1.5,
weightkg: 68,
color: "Brown",
eggGroups: ["Undiscovered"],
otherFormes: ["landorustherian"],
},
landorustherian: {
num: 645,
name: "Landorus-Therian",
baseSpecies: "Landorus",
forme: "Therian",
types: ["Ground", "Flying"],
gender: "M",
baseStats: {hp: 89, atk: 145, def: 90, spa: 105, spd: 80, spe: 91},
abilities: {0: "Intimidate"},
heightm: 1.3,
weightkg: 68,
color: "Brown",
eggGroups: ["Undiscovered"],
},
kyurem: {
num: 646,
name: "Kyurem",
types: ["Dragon", "Ice"],
gender: "N",
baseStats: {hp: 125, atk: 130, def: 90, spa: 130, spd: 90, spe: 95},
abilities: {0: "Pressure"},
heightm: 3,
weightkg: 325,
color: "Gray",
eggGroups: ["Undiscovered"],
otherFormes: ["kyuremblack", "kyuremwhite"],
},
kyuremblack: {
num: 646,
name: "Kyurem-Black",
baseSpecies: "Kyurem",
forme: "Black",
types: ["Dragon", "Ice"],
gender: "N",
baseStats: {hp: 125, atk: 170, def: 100, spa: 120, spd: 90, spe: 95},
abilities: {0: "Teravolt"},
heightm: 3.3,
weightkg: 325,
color: "Gray",
eggGroups: ["Undiscovered"],
},
kyuremwhite: {
num: 646,
name: "Kyurem-White",
baseSpecies: "Kyurem",
forme: "White",
types: ["Dragon", "Ice"],
gender: "N",
baseStats: {hp: 125, atk: 120, def: 90, spa: 170, spd: 100, spe: 95},
abilities: {0: "Turboblaze"},
heightm: 3.6,
weightkg: 325,
color: "Gray",
eggGroups: ["Undiscovered"],
},
keldeo: {
num: 647,
name: "Keldeo",
baseForme: "Ordinary",
types: ["Water", "Fighting"],
gender: "N",
baseStats: {hp: 91, atk: 72, def: 90, spa: 129, spd: 90, spe: 108},
abilities: {0: "Justified"},
heightm: 1.4,
weightkg: 48.5,
color: "Yellow",
eggGroups: ["Undiscovered"],
otherFormes: ["keldeoresolute"],
},
keldeoresolute: {
num: 647,
name: "Keldeo-Resolute",
baseSpecies: "Keldeo",
forme: "Resolute",
types: ["Water", "Fighting"],
gender: "N",
baseStats: {hp: 91, atk: 72, def: 90, spa: 129, spd: 90, spe: 108},
abilities: {0: "Justified"},
heightm: 1.4,
weightkg: 48.5,
color: "Yellow",
eggGroups: ["Undiscovered"],
requiredMove: "Secret Sword",
},
meloetta: {
num: 648,
name: "Meloetta",
baseForme: "Aria",
types: ["Normal", "Psychic"],
gender: "N",
baseStats: {hp: 100, atk: 77, def: 77, spa: 128, spd: 128, spe: 90},
abilities: {0: "Serene Grace"},
heightm: 0.6,
weightkg: 6.5,
color: "White",
eggGroups: ["Undiscovered"],
otherFormes: ["meloettapirouette"],
},
meloettapirouette: {
num: 648,
name: "Meloetta-Pirouette",
baseSpecies: "Meloetta",
forme: "Pirouette",
types: ["Normal", "Fighting"],
gender: "N",
baseStats: {hp: 100, atk: 128, def: 90, spa: 77, spd: 77, spe: 128},
abilities: {0: "Serene Grace"},
heightm: 0.6,
weightkg: 6.5,
color: "White",
eggGroups: ["Undiscovered"],
requiredMove: "Relic Song",
battleOnly: "Meloetta",
},
genesect: {
num: 649,
name: "Genesect",
types: ["Bug", "Steel"],
gender: "N",
baseStats: {hp: 71, atk: 120, def: 95, spa: 120, spd: 95, spe: 99},
abilities: {0: "Download"},
heightm: 1.5,
weightkg: 82.5,
color: "Purple",
eggGroups: ["Undiscovered"],
otherFormes: ["genesectdouse", "genesectshock", "genesectburn", "genesectchill"],
},
genesectdouse: {
num: 649,
name: "Genesect-Douse",
baseSpecies: "Genesect",
forme: "Douse",
types: ["Bug", "Steel"],
gender: "N",
baseStats: {hp: 71, atk: 120, def: 95, spa: 120, spd: 95, spe: 99},
abilities: {0: "Download"},
heightm: 1.5,
weightkg: 82.5,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Douse Drive",
},
genesectshock: {
num: 649,
name: "Genesect-Shock",
baseSpecies: "Genesect",
forme: "Shock",
types: ["Bug", "Steel"],
gender: "N",
baseStats: {hp: 71, atk: 120, def: 95, spa: 120, spd: 95, spe: 99},
abilities: {0: "Download"},
heightm: 1.5,
weightkg: 82.5,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Shock Drive",
},
genesectburn: {
num: 649,
name: "Genesect-Burn",
baseSpecies: "Genesect",
forme: "Burn",
types: ["Bug", "Steel"],
gender: "N",
baseStats: {hp: 71, atk: 120, def: 95, spa: 120, spd: 95, spe: 99},
abilities: {0: "Download"},
heightm: 1.5,
weightkg: 82.5,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Burn Drive",
},
genesectchill: {
num: 649,
name: "Genesect-Chill",
baseSpecies: "Genesect",
forme: "Chill",
types: ["Bug", "Steel"],
gender: "N",
baseStats: {hp: 71, atk: 120, def: 95, spa: 120, spd: 95, spe: 99},
abilities: {0: "Download"},
heightm: 1.5,
weightkg: 82.5,
color: "Purple",
eggGroups: ["Undiscovered"],
requiredItem: "Chill Drive",
},
chespin: {
num: 650,
name: "Chespin",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 56, atk: 61, def: 65, spa: 48, spd: 45, spe: 38},
abilities: {0: "Overgrow", H: "Bulletproof"},
heightm: 0.4,
weightkg: 9,
color: "Green",
evos: ["quilladin"],
eggGroups: ["Field"],
},
quilladin: {
num: 651,
name: "Quilladin",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 61, atk: 78, def: 95, spa: 56, spd: 58, spe: 57},
abilities: {0: "Overgrow", H: "Bulletproof"},
heightm: 0.7,
weightkg: 29,
color: "Green",
prevo: "chespin",
evoLevel: 16,
evos: ["chesnaught"],
eggGroups: ["Field"],
},
chesnaught: {
num: 652,
name: "Chesnaught",
types: ["Grass", "Fighting"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 88, atk: 107, def: 122, spa: 74, spd: 75, spe: 64},
abilities: {0: "Overgrow", H: "Bulletproof"},
heightm: 1.6,
weightkg: 90,
color: "Green",
prevo: "quilladin",
evoLevel: 36,
eggGroups: ["Field"],
},
fennekin: {
num: 653,
name: "Fennekin",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 40, atk: 45, def: 40, spa: 62, spd: 60, spe: 60},
abilities: {0: "Blaze", H: "Magician"},
heightm: 0.4,
weightkg: 9.4,
color: "Red",
evos: ["braixen"],
eggGroups: ["Field"],
},
braixen: {
num: 654,
name: "Braixen",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 59, atk: 59, def: 58, spa: 90, spd: 70, spe: 73},
abilities: {0: "Blaze", H: "Magician"},
heightm: 1,
weightkg: 14.5,
color: "Red",
prevo: "fennekin",
evoLevel: 16,
evos: ["delphox"],
eggGroups: ["Field"],
},
delphox: {
num: 655,
name: "Delphox",
types: ["Fire", "Psychic"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 75, atk: 69, def: 72, spa: 114, spd: 100, spe: 104},
abilities: {0: "Blaze", H: "Magician"},
heightm: 1.5,
weightkg: 39,
color: "Red",
prevo: "braixen",
evoLevel: 36,
eggGroups: ["Field"],
},
froakie: {
num: 656,
name: "Froakie",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 41, atk: 56, def: 40, spa: 62, spd: 44, spe: 71},
abilities: {0: "Torrent", H: "Protean"},
heightm: 0.3,
weightkg: 7,
color: "Blue",
evos: ["frogadier"],
eggGroups: ["Water 1"],
},
frogadier: {
num: 657,
name: "Frogadier",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 54, atk: 63, def: 52, spa: 83, spd: 56, spe: 97},
abilities: {0: "Torrent", H: "Protean"},
heightm: 0.6,
weightkg: 10.9,
color: "Blue",
prevo: "froakie",
evoLevel: 16,
evos: ["greninja"],
eggGroups: ["Water 1"],
},
greninja: {
num: 658,
name: "Greninja",
types: ["Water", "Dark"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 72, atk: 95, def: 67, spa: 103, spd: 71, spe: 122},
abilities: {0: "Torrent", H: "Protean", S: "Battle Bond"},
heightm: 1.5,
weightkg: 40,
color: "Blue",
prevo: "frogadier",
evoLevel: 36,
eggGroups: ["Water 1"],
otherFormes: ["greninjaash"],
},
greninjaash: {
num: 658,
name: "Greninja-Ash",
baseSpecies: "Greninja",
forme: "Ash",
types: ["Water", "Dark"],
gender: "M",
baseStats: {hp: 72, atk: 145, def: 67, spa: 153, spd: 71, spe: 132},
abilities: {0: "Battle Bond"},
heightm: 1.5,
weightkg: 40,
color: "Blue",
eggGroups: ["Undiscovered"],
gen: 7,
requiredAbility: "Battle Bond",
battleOnly: "Greninja",
},
bunnelby: {
num: 659,
name: "Bunnelby",
types: ["Normal"],
baseStats: {hp: 38, atk: 36, def: 38, spa: 32, spd: 36, spe: 57},
abilities: {0: "Pickup", 1: "Cheek Pouch", H: "Huge Power"},
heightm: 0.4,
weightkg: 5,
color: "Brown",
evos: ["diggersby"],
eggGroups: ["Field"],
},
diggersby: {
num: 660,
name: "Diggersby",
types: ["Normal", "Ground"],
baseStats: {hp: 85, atk: 56, def: 77, spa: 50, spd: 77, spe: 78},
abilities: {0: "Pickup", 1: "Cheek Pouch", H: "Huge Power"},
heightm: 1,
weightkg: 42.4,
color: "Brown",
prevo: "bunnelby",
evoLevel: 20,
eggGroups: ["Field"],
},
fletchling: {
num: 661,
name: "Fletchling",
types: ["Normal", "Flying"],
baseStats: {hp: 45, atk: 50, def: 43, spa: 40, spd: 38, spe: 62},
abilities: {0: "Big Pecks", H: "Gale Wings"},
heightm: 0.3,
weightkg: 1.7,
color: "Red",
evos: ["fletchinder"],
eggGroups: ["Flying"],
},
fletchinder: {
num: 662,
name: "Fletchinder",
types: ["Fire", "Flying"],
baseStats: {hp: 62, atk: 73, def: 55, spa: 56, spd: 52, spe: 84},
abilities: {0: "Flame Body", H: "Gale Wings"},
heightm: 0.7,
weightkg: 16,
color: "Red",
prevo: "fletchling",
evoLevel: 17,
evos: ["talonflame"],
eggGroups: ["Flying"],
},
talonflame: {
num: 663,
name: "Talonflame",
types: ["Fire", "Flying"],
baseStats: {hp: 78, atk: 81, def: 71, spa: 74, spd: 69, spe: 126},
abilities: {0: "Flame Body", H: "Gale Wings"},
heightm: 1.2,
weightkg: 24.5,
color: "Red",
prevo: "fletchinder",
evoLevel: 35,
eggGroups: ["Flying"],
},
scatterbug: {
num: 664,
name: "Scatterbug",
types: ["Bug"],
baseStats: {hp: 38, atk: 35, def: 40, spa: 27, spd: 25, spe: 35},
abilities: {0: "Shield Dust", 1: "Compound Eyes", H: "Friend Guard"},
heightm: 0.3,
weightkg: 2.5,
color: "Black",
evos: ["spewpa"],
eggGroups: ["Bug"],
},
spewpa: {
num: 665,
name: "Spewpa",
types: ["Bug"],
baseStats: {hp: 45, atk: 22, def: 60, spa: 27, spd: 30, spe: 29},
abilities: {0: "Shed Skin", H: "Friend Guard"},
heightm: 0.3,
weightkg: 8.4,
color: "Black",
prevo: "scatterbug",
evoLevel: 9,
evos: ["vivillon"],
eggGroups: ["Bug"],
},
vivillon: {
num: 666,
name: "Vivillon",
types: ["Bug", "Flying"],
baseStats: {hp: 80, atk: 52, def: 50, spa: 90, spd: 50, spe: 89},
abilities: {0: "Shield Dust", 1: "Compound Eyes", H: "Friend Guard"},
heightm: 1.2,
weightkg: 17,
color: "White",
prevo: "spewpa",
evoLevel: 12,
eggGroups: ["Bug"],
cosmeticFormes: ["vivillonarchipelago", "vivilloncontinental", "vivillonelegant", "vivillongarden", "vivillonhighplains", "vivillonicysnow", "vivillonjungle", "vivillonmarine", "vivillonmodern", "vivillonmonsoon", "vivillonocean", "vivillonpolar", "vivillonriver", "vivillonsandstorm", "vivillonsavanna", "vivillonsun", "vivillontundra"],
otherFormes: ["vivillonfancy", "vivillonpokeball"],
},
vivillonfancy: {
num: 666,
name: "Vivillon-Fancy",
baseSpecies: "Vivillon",
forme: "Fancy",
types: ["Bug", "Flying"],
baseStats: {hp: 80, atk: 52, def: 50, spa: 90, spd: 50, spe: 89},
abilities: {0: "Shield Dust", 1: "Compound Eyes"},
heightm: 1.2,
weightkg: 17,
color: "Black",
eggGroups: ["Bug"],
},
vivillonpokeball: {
num: 666,
name: "Vivillon-Pokeball",
baseSpecies: "Vivillon",
forme: "Pokeball",
types: ["Bug", "Flying"],
baseStats: {hp: 80, atk: 52, def: 50, spa: 90, spd: 50, spe: 89},
abilities: {0: "Shield Dust", 1: "Compound Eyes"},
heightm: 1.2,
weightkg: 17,
color: "Black",
eggGroups: ["Bug"],
},
litleo: {
num: 667,
name: "Litleo",
types: ["Fire", "Normal"],
genderRatio: {M: 0.125, F: 0.875},
baseStats: {hp: 62, atk: 50, def: 58, spa: 73, spd: 54, spe: 72},
abilities: {0: "Rivalry", 1: "Unnerve", H: "Moxie"},
heightm: 0.6,
weightkg: 13.5,
color: "Brown",
evos: ["pyroar"],
eggGroups: ["Field"],
},
pyroar: {
num: 668,
name: "Pyroar",
types: ["Fire", "Normal"],
genderRatio: {M: 0.125, F: 0.875},
baseStats: {hp: 86, atk: 68, def: 72, spa: 109, spd: 66, spe: 106},
abilities: {0: "Rivalry", 1: "Unnerve", H: "Moxie"},
heightm: 1.5,
weightkg: 81.5,
color: "Brown",
prevo: "litleo",
evoLevel: 35,
eggGroups: ["Field"],
},
flabebe: {
num: 669,
name: "Flabe\u0301be\u0301",
baseForme: "Red",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 44, atk: 38, def: 39, spa: 61, spd: 79, spe: 42},
abilities: {0: "Flower Veil", H: "Symbiosis"},
heightm: 0.1,
weightkg: 0.1,
color: "White",
evos: ["floette"],
eggGroups: ["Fairy"],
cosmeticFormes: ["flabebeblue", "flabebeorange", "flabebewhite", "flabebeyellow"],
},
floette: {
num: 670,
name: "Floette",
baseForme: "Red",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 54, atk: 45, def: 47, spa: 75, spd: 98, spe: 52},
abilities: {0: "Flower Veil", H: "Symbiosis"},
heightm: 0.2,
weightkg: 0.9,
color: "White",
prevo: "flabebe",
evoLevel: 19,
evos: ["florges"],
eggGroups: ["Fairy"],
cosmeticFormes: ["floetteblue", "floetteorange", "floettewhite", "floetteyellow"],
otherFormes: ["floetteeternal"],
},
floetteeternal: {
num: 670,
name: "Floette-Eternal",
baseSpecies: "Floette",
forme: "Eternal",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 74, atk: 65, def: 67, spa: 125, spd: 128, spe: 92},
abilities: {0: "Flower Veil"},
heightm: 0.2,
weightkg: 0.9,
color: "White",
eggGroups: ["Undiscovered"],
},
florges: {
num: 671,
name: "Florges",
baseForme: "Red",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 78, atk: 65, def: 68, spa: 112, spd: 154, spe: 75},
abilities: {0: "Flower Veil", H: "Symbiosis"},
heightm: 1.1,
weightkg: 10,
color: "White",
prevo: "floette",
evoType: "useItem",
evoItem: "Shiny Stone",
eggGroups: ["Fairy"],
cosmeticFormes: ["florgesblue", "florgesorange", "florgeswhite", "florgesyellow"],
},
skiddo: {
num: 672,
name: "Skiddo",
types: ["Grass"],
baseStats: {hp: 66, atk: 65, def: 48, spa: 62, spd: 57, spe: 52},
abilities: {0: "Sap Sipper", H: "Grass Pelt"},
heightm: 0.9,
weightkg: 31,
color: "Brown",
evos: ["gogoat"],
eggGroups: ["Field"],
},
gogoat: {
num: 673,
name: "Gogoat",
types: ["Grass"],
baseStats: {hp: 123, atk: 100, def: 62, spa: 97, spd: 81, spe: 68},
abilities: {0: "Sap Sipper", H: "Grass Pelt"},
heightm: 1.7,
weightkg: 91,
color: "Brown",
prevo: "skiddo",
evoLevel: 32,
eggGroups: ["Field"],
},
pancham: {
num: 674,
name: "Pancham",
types: ["Fighting"],
baseStats: {hp: 67, atk: 82, def: 62, spa: 46, spd: 48, spe: 43},
abilities: {0: "Iron Fist", 1: "Mold Breaker", H: "Scrappy"},
heightm: 0.6,
weightkg: 8,
color: "White",
evos: ["pangoro"],
eggGroups: ["Field", "Human-Like"],
},
pangoro: {
num: 675,
name: "Pangoro",
types: ["Fighting", "Dark"],
baseStats: {hp: 95, atk: 124, def: 78, spa: 69, spd: 71, spe: 58},
abilities: {0: "Iron Fist", 1: "Mold Breaker", H: "Scrappy"},
heightm: 2.1,
weightkg: 136,
color: "White",
prevo: "pancham",
evoLevel: 32,
eggGroups: ["Field", "Human-Like"],
},
furfrou: {
num: 676,
name: "Furfrou",
types: ["Normal"],
baseStats: {hp: 75, atk: 80, def: 60, spa: 65, spd: 90, spe: 102},
abilities: {0: "Fur Coat"},
heightm: 1.2,
weightkg: 28,
color: "White",
eggGroups: ["Field"],
cosmeticFormes: ["furfroudandy", "furfroudebutante", "furfroudiamond", "furfrouheart", "furfroukabuki", "furfroulareine", "furfroumatron", "furfroupharaoh", "furfroustar"],
},
espurr: {
num: 677,
name: "Espurr",
types: ["Psychic"],
baseStats: {hp: 62, atk: 48, def: 54, spa: 63, spd: 60, spe: 68},
abilities: {0: "Keen Eye", 1: "Infiltrator", H: "Own Tempo"},
heightm: 0.3,
weightkg: 3.5,
color: "Gray",
evos: ["meowstic"],
eggGroups: ["Field"],
},
meowstic: {
num: 678,
name: "Meowstic",
baseForme: "M",
types: ["Psychic"],
gender: "M",
baseStats: {hp: 74, atk: 48, def: 76, spa: 83, spd: 81, spe: 104},
abilities: {0: "Keen Eye", 1: "Infiltrator", H: "Prankster"},
heightm: 0.6,
weightkg: 8.5,
color: "Blue",
prevo: "espurr",
evoLevel: 25,
eggGroups: ["Field"],
otherFormes: ["meowsticf"],
},
meowsticf: {
num: 678,
name: "Meowstic-F",
baseSpecies: "Meowstic",
forme: "F",
types: ["Psychic"],
gender: "F",
baseStats: {hp: 74, atk: 48, def: 76, spa: 83, spd: 81, spe: 104},
abilities: {0: "Keen Eye", 1: "Infiltrator", H: "Competitive"},
heightm: 0.6,
weightkg: 8.5,
color: "White",
prevo: "espurr",
evoLevel: 25,
eggGroups: ["Field"],
},
honedge: {
num: 679,
name: "Honedge",
types: ["Steel", "Ghost"],
baseStats: {hp: 45, atk: 80, def: 100, spa: 35, spd: 37, spe: 28},
abilities: {0: "No Guard"},
heightm: 0.8,
weightkg: 2,
color: "Brown",
evos: ["doublade"],
eggGroups: ["Mineral"],
},
doublade: {
num: 680,
name: "Doublade",
types: ["Steel", "Ghost"],
baseStats: {hp: 59, atk: 110, def: 150, spa: 45, spd: 49, spe: 35},
abilities: {0: "No Guard"},
heightm: 0.8,
weightkg: 4.5,
color: "Brown",
prevo: "honedge",
evoLevel: 35,
evos: ["aegislash"],
eggGroups: ["Mineral"],
},
aegislash: {
num: 681,
name: "Aegislash",
baseForme: "Shield",
types: ["Steel", "Ghost"],
baseStats: {hp: 60, atk: 50, def: 140, spa: 50, spd: 140, spe: 60},
abilities: {0: "Stance Change"},
heightm: 1.7,
weightkg: 53,
color: "Brown",
prevo: "doublade",
evoType: "useItem",
evoItem: "Dusk Stone",
eggGroups: ["Mineral"],
otherFormes: ["aegislashblade"],
},
aegislashblade: {
num: 681,
name: "Aegislash-Blade",
baseSpecies: "Aegislash",
forme: "Blade",
types: ["Steel", "Ghost"],
baseStats: {hp: 60, atk: 140, def: 50, spa: 140, spd: 50, spe: 60},
abilities: {0: "Stance Change"},
heightm: 1.7,
weightkg: 53,
color: "Brown",
prevo: "doublade",
evoType: "useItem",
evoItem: "Dusk Stone",
eggGroups: ["Mineral"],
requiredAbility: "Stance Change",
battleOnly: "Aegislash",
},
spritzee: {
num: 682,
name: "Spritzee",
types: ["Fairy"],
baseStats: {hp: 78, atk: 52, def: 60, spa: 63, spd: 65, spe: 23},
abilities: {0: "Healer", H: "Aroma Veil"},
heightm: 0.2,
weightkg: 0.5,
color: "Pink",
evos: ["aromatisse"],
eggGroups: ["Fairy"],
},
aromatisse: {
num: 683,
name: "Aromatisse",
types: ["Fairy"],
baseStats: {hp: 101, atk: 72, def: 72, spa: 99, spd: 89, spe: 29},
abilities: {0: "Healer", H: "Aroma Veil"},
heightm: 0.8,
weightkg: 15.5,
color: "Pink",
prevo: "spritzee",
evoType: "trade",
evoItem: "Sachet",
eggGroups: ["Fairy"],
},
swirlix: {
num: 684,
name: "Swirlix",
types: ["Fairy"],
baseStats: {hp: 62, atk: 48, def: 66, spa: 59, spd: 57, spe: 49},
abilities: {0: "Sweet Veil", H: "Unburden"},
heightm: 0.4,
weightkg: 3.5,
color: "White",
evos: ["slurpuff"],
eggGroups: ["Fairy"],
},
slurpuff: {
num: 685,
name: "Slurpuff",
types: ["Fairy"],
baseStats: {hp: 82, atk: 80, def: 86, spa: 85, spd: 75, spe: 72},
abilities: {0: "Sweet Veil", H: "Unburden"},
heightm: 0.8,
weightkg: 5,
color: "White",
prevo: "swirlix",
evoType: "trade",
evoItem: "Whipped Dream",
eggGroups: ["Fairy"],
},
inkay: {
num: 686,
name: "Inkay",
types: ["Dark", "Psychic"],
baseStats: {hp: 53, atk: 54, def: 53, spa: 37, spd: 46, spe: 45},
abilities: {0: "Contrary", 1: "Suction Cups", H: "Infiltrator"},
heightm: 0.4,
weightkg: 3.5,
color: "Blue",
evos: ["malamar"],
eggGroups: ["Water 1", "Water 2"],
},
malamar: {
num: 687,
name: "Malamar",
types: ["Dark", "Psychic"],
baseStats: {hp: 86, atk: 92, def: 88, spa: 68, spd: 75, spe: 73},
abilities: {0: "Contrary", 1: "Suction Cups", H: "Infiltrator"},
heightm: 1.5,
weightkg: 47,
color: "Blue",
prevo: "inkay",
evoLevel: 30,
eggGroups: ["Water 1", "Water 2"],
},
binacle: {
num: 688,
name: "Binacle",
types: ["Rock", "Water"],
baseStats: {hp: 42, atk: 52, def: 67, spa: 39, spd: 56, spe: 50},
abilities: {0: "Tough Claws", 1: "Sniper", H: "Pickpocket"},
heightm: 0.5,
weightkg: 31,
color: "Brown",
evos: ["barbaracle"],
eggGroups: ["Water 3"],
},
barbaracle: {
num: 689,
name: "Barbaracle",
types: ["Rock", "Water"],
baseStats: {hp: 72, atk: 105, def: 115, spa: 54, spd: 86, spe: 68},
abilities: {0: "Tough Claws", 1: "Sniper", H: "Pickpocket"},
heightm: 1.3,
weightkg: 96,
color: "Brown",
prevo: "binacle",
evoLevel: 39,
eggGroups: ["Water 3"],
},
skrelp: {
num: 690,
name: "Skrelp",
types: ["Poison", "Water"],
baseStats: {hp: 50, atk: 60, def: 60, spa: 60, spd: 60, spe: 30},
abilities: {0: "Poison Point", 1: "Poison Touch", H: "Adaptability"},
heightm: 0.5,
weightkg: 7.3,
color: "Brown",
evos: ["dragalge"],
eggGroups: ["Water 1", "Dragon"],
},
dragalge: {
num: 691,
name: "Dragalge",
types: ["Poison", "Dragon"],
baseStats: {hp: 65, atk: 75, def: 90, spa: 97, spd: 123, spe: 44},
abilities: {0: "Poison Point", 1: "Poison Touch", H: "Adaptability"},
heightm: 1.8,
weightkg: 81.5,
color: "Brown",
prevo: "skrelp",
evoLevel: 48,
eggGroups: ["Water 1", "Dragon"],
},
clauncher: {
num: 692,
name: "Clauncher",
types: ["Water"],
baseStats: {hp: 50, atk: 53, def: 62, spa: 58, spd: 63, spe: 44},
abilities: {0: "Mega Launcher"},
heightm: 0.5,
weightkg: 8.3,
color: "Blue",
evos: ["clawitzer"],
eggGroups: ["Water 1", "Water 3"],
},
clawitzer: {
num: 693,
name: "Clawitzer",
types: ["Water"],
baseStats: {hp: 71, atk: 73, def: 88, spa: 120, spd: 89, spe: 59},
abilities: {0: "Mega Launcher"},
heightm: 1.3,
weightkg: 35.3,
color: "Blue",
prevo: "clauncher",
evoLevel: 37,
eggGroups: ["Water 1", "Water 3"],
},
helioptile: {
num: 694,
name: "Helioptile",
types: ["Electric", "Normal"],
baseStats: {hp: 44, atk: 38, def: 33, spa: 61, spd: 43, spe: 70},
abilities: {0: "Dry Skin", 1: "Sand Veil", H: "Solar Power"},
heightm: 0.5,
weightkg: 6,
color: "Yellow",
evos: ["heliolisk"],
eggGroups: ["Monster", "Dragon"],
},
heliolisk: {
num: 695,
name: "Heliolisk",
types: ["Electric", "Normal"],
baseStats: {hp: 62, atk: 55, def: 52, spa: 109, spd: 94, spe: 109},
abilities: {0: "Dry Skin", 1: "Sand Veil", H: "Solar Power"},
heightm: 1,
weightkg: 21,
color: "Yellow",
prevo: "helioptile",
evoType: "useItem",
evoItem: "Sun Stone",
eggGroups: ["Monster", "Dragon"],
},
tyrunt: {
num: 696,
name: "Tyrunt",
types: ["Rock", "Dragon"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 58, atk: 89, def: 77, spa: 45, spd: 45, spe: 48},
abilities: {0: "Strong Jaw", H: "Sturdy"},
heightm: 0.8,
weightkg: 26,
color: "Brown",
evos: ["tyrantrum"],
eggGroups: ["Monster", "Dragon"],
},
tyrantrum: {
num: 697,
name: "Tyrantrum",
types: ["Rock", "Dragon"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 82, atk: 121, def: 119, spa: 69, spd: 59, spe: 71},
abilities: {0: "Strong Jaw", H: "Rock Head"},
heightm: 2.5,
weightkg: 270,
color: "Red",
prevo: "tyrunt",
evoLevel: 39,
eggGroups: ["Monster", "Dragon"],
},
amaura: {
num: 698,
name: "Amaura",
types: ["Rock", "Ice"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 77, atk: 59, def: 50, spa: 67, spd: 63, spe: 46},
abilities: {0: "Refrigerate", H: "Snow Warning"},
heightm: 1.3,
weightkg: 25.2,
color: "Blue",
evos: ["aurorus"],
eggGroups: ["Monster"],
},
aurorus: {
num: 699,
name: "Aurorus",
types: ["Rock", "Ice"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 123, atk: 77, def: 72, spa: 99, spd: 92, spe: 58},
abilities: {0: "Refrigerate", H: "Snow Warning"},
heightm: 2.7,
weightkg: 225,
color: "Blue",
prevo: "amaura",
evoLevel: 39,
eggGroups: ["Monster"],
},
sylveon: {
num: 700,
name: "Sylveon",
types: ["Fairy"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 95, atk: 65, def: 65, spa: 110, spd: 130, spe: 60},
abilities: {0: "Cute Charm", H: "Pixilate"},
heightm: 1,
weightkg: 23.5,
color: "Pink",
prevo: "eevee",
evoType: "levelExtra",
evoCondition: "with a Fairy-type move and two levels of Affection",
eggGroups: ["Field"],
},
hawlucha: {
num: 701,
name: "Hawlucha",
types: ["Fighting", "Flying"],
baseStats: {hp: 78, atk: 92, def: 75, spa: 74, spd: 63, spe: 118},
abilities: {0: "Limber", 1: "Unburden", H: "Mold Breaker"},
heightm: 0.8,
weightkg: 21.5,
color: "Green",
eggGroups: ["Flying", "Human-Like"],
},
dedenne: {
num: 702,
name: "Dedenne",
types: ["Electric", "Fairy"],
baseStats: {hp: 67, atk: 58, def: 57, spa: 81, spd: 67, spe: 101},
abilities: {0: "Cheek Pouch", 1: "Pickup", H: "Plus"},
heightm: 0.2,
weightkg: 2.2,
color: "Yellow",
eggGroups: ["Field", "Fairy"],
},
carbink: {
num: 703,
name: "Carbink",
types: ["Rock", "Fairy"],
gender: "N",
baseStats: {hp: 50, atk: 50, def: 150, spa: 50, spd: 150, spe: 50},
abilities: {0: "Clear Body", H: "Sturdy"},
heightm: 0.3,
weightkg: 5.7,
color: "Gray",
eggGroups: ["Fairy", "Mineral"],
},
goomy: {
num: 704,
name: "Goomy",
types: ["Dragon"],
baseStats: {hp: 45, atk: 50, def: 35, spa: 55, spd: 75, spe: 40},
abilities: {0: "Sap Sipper", 1: "Hydration", H: "Gooey"},
heightm: 0.3,
weightkg: 2.8,
color: "Purple",
evos: ["sliggoo"],
eggGroups: ["Dragon"],
},
sliggoo: {
num: 705,
name: "Sliggoo",
types: ["Dragon"],
baseStats: {hp: 68, atk: 75, def: 53, spa: 83, spd: 113, spe: 60},
abilities: {0: "Sap Sipper", 1: "Hydration", H: "Gooey"},
heightm: 0.8,
weightkg: 17.5,
color: "Purple",
prevo: "goomy",
evoLevel: 40,
evos: ["goodra"],
eggGroups: ["Dragon"],
},
goodra: {
num: 706,
name: "Goodra",
types: ["Dragon"],
baseStats: {hp: 90, atk: 100, def: 70, spa: 110, spd: 150, spe: 80},
abilities: {0: "Sap Sipper", 1: "Hydration", H: "Gooey"},
heightm: 2,
weightkg: 150.5,
color: "Purple",
prevo: "sliggoo",
evoLevel: 50,
eggGroups: ["Dragon"],
},
klefki: {
num: 707,
name: "Klefki",
types: ["Steel", "Fairy"],
baseStats: {hp: 57, atk: 80, def: 91, spa: 80, spd: 87, spe: 75},
abilities: {0: "Prankster", H: "Magician"},
heightm: 0.2,
weightkg: 3,
color: "Gray",
eggGroups: ["Mineral"],
},
phantump: {
num: 708,
name: "Phantump",
types: ["Ghost", "Grass"],
baseStats: {hp: 43, atk: 70, def: 48, spa: 50, spd: 60, spe: 38},
abilities: {0: "Natural Cure", 1: "Frisk", H: "Harvest"},
heightm: 0.4,
weightkg: 7,
color: "Brown",
evos: ["trevenant"],
eggGroups: ["Grass", "Amorphous"],
},
trevenant: {
num: 709,
name: "Trevenant",
types: ["Ghost", "Grass"],
baseStats: {hp: 85, atk: 110, def: 76, spa: 65, spd: 82, spe: 56},
abilities: {0: "Natural Cure", 1: "Frisk", H: "Harvest"},
heightm: 1.5,
weightkg: 71,
color: "Brown",
prevo: "phantump",
evoType: "trade",
eggGroups: ["Grass", "Amorphous"],
},
pumpkaboo: {
num: 710,
name: "Pumpkaboo",
baseForme: "Average",
types: ["Ghost", "Grass"],
baseStats: {hp: 49, atk: 66, def: 70, spa: 44, spd: 55, spe: 51},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 0.4,
weightkg: 5,
color: "Brown",
evos: ["gourgeist"],
eggGroups: ["Amorphous"],
otherFormes: ["pumpkaboosmall", "pumpkaboolarge", "pumpkaboosuper"],
},
pumpkaboosmall: {
num: 710,
name: "Pumpkaboo-Small",
baseSpecies: "Pumpkaboo",
forme: "Small",
types: ["Ghost", "Grass"],
baseStats: {hp: 44, atk: 66, def: 70, spa: 44, spd: 55, spe: 56},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 0.3,
weightkg: 3.5,
color: "Brown",
evos: ["gourgeistsmall"],
eggGroups: ["Amorphous"],
},
pumpkaboolarge: {
num: 710,
name: "Pumpkaboo-Large",
baseSpecies: "Pumpkaboo",
forme: "Large",
types: ["Ghost", "Grass"],
baseStats: {hp: 54, atk: 66, def: 70, spa: 44, spd: 55, spe: 46},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 0.5,
weightkg: 7.5,
color: "Brown",
evos: ["gourgeistlarge"],
eggGroups: ["Amorphous"],
},
pumpkaboosuper: {
num: 710,
name: "Pumpkaboo-Super",
baseSpecies: "Pumpkaboo",
forme: "Super",
types: ["Ghost", "Grass"],
baseStats: {hp: 59, atk: 66, def: 70, spa: 44, spd: 55, spe: 41},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 0.8,
weightkg: 15,
color: "Brown",
evos: ["gourgeistsuper"],
eggGroups: ["Amorphous"],
},
gourgeist: {
num: 711,
name: "Gourgeist",
baseForme: "Average",
types: ["Ghost", "Grass"],
baseStats: {hp: 65, atk: 90, def: 122, spa: 58, spd: 75, spe: 84},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 0.9,
weightkg: 12.5,
color: "Brown",
prevo: "pumpkaboo",
evoType: "trade",
eggGroups: ["Amorphous"],
otherFormes: ["gourgeistsmall", "gourgeistlarge", "gourgeistsuper"],
},
gourgeistsmall: {
num: 711,
name: "Gourgeist-Small",
baseSpecies: "Gourgeist",
forme: "Small",
types: ["Ghost", "Grass"],
baseStats: {hp: 55, atk: 85, def: 122, spa: 58, spd: 75, spe: 99},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 0.7,
weightkg: 9.5,
color: "Brown",
prevo: "pumpkaboosmall",
evoType: "trade",
eggGroups: ["Amorphous"],
},
gourgeistlarge: {
num: 711,
name: "Gourgeist-Large",
baseSpecies: "Gourgeist",
forme: "Large",
types: ["Ghost", "Grass"],
baseStats: {hp: 75, atk: 95, def: 122, spa: 58, spd: 75, spe: 69},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 1.1,
weightkg: 14,
color: "Brown",
prevo: "pumpkaboolarge",
evoType: "trade",
eggGroups: ["Amorphous"],
},
gourgeistsuper: {
num: 711,
name: "Gourgeist-Super",
baseSpecies: "Gourgeist",
forme: "Super",
types: ["Ghost", "Grass"],
baseStats: {hp: 85, atk: 100, def: 122, spa: 58, spd: 75, spe: 54},
abilities: {0: "Pickup", 1: "Frisk", H: "Insomnia"},
heightm: 1.7,
weightkg: 39,
color: "Brown",
prevo: "pumpkaboosuper",
evoType: "trade",
eggGroups: ["Amorphous"],
},
bergmite: {
num: 712,
name: "Bergmite",
types: ["Ice"],
baseStats: {hp: 55, atk: 69, def: 85, spa: 32, spd: 35, spe: 28},
abilities: {0: "Own Tempo", 1: "Ice Body", H: "Sturdy"},
heightm: 1,
weightkg: 99.5,
color: "Blue",
evos: ["avalugg"],
eggGroups: ["Monster", "Mineral"],
},
avalugg: {
num: 713,
name: "Avalugg",
types: ["Ice"],
baseStats: {hp: 95, atk: 117, def: 184, spa: 44, spd: 46, spe: 28},
abilities: {0: "Own Tempo", 1: "Ice Body", H: "Sturdy"},
heightm: 2,
weightkg: 505,
color: "Blue",
prevo: "bergmite",
evoLevel: 37,
eggGroups: ["Monster", "Mineral"],
},
noibat: {
num: 714,
name: "Noibat",
types: ["Flying", "Dragon"],
baseStats: {hp: 40, atk: 30, def: 35, spa: 45, spd: 40, spe: 55},
abilities: {0: "Frisk", 1: "Infiltrator", H: "Telepathy"},
heightm: 0.5,
weightkg: 8,
color: "Purple",
evos: ["noivern"],
eggGroups: ["Flying", "Dragon"],
},
noivern: {
num: 715,
name: "Noivern",
types: ["Flying", "Dragon"],
baseStats: {hp: 85, atk: 70, def: 80, spa: 97, spd: 80, spe: 123},
abilities: {0: "Frisk", 1: "Infiltrator", H: "Telepathy"},
heightm: 1.5,
weightkg: 85,
color: "Purple",
prevo: "noibat",
evoLevel: 48,
eggGroups: ["Flying", "Dragon"],
},
xerneas: {
num: 716,
name: "Xerneas",
types: ["Fairy"],
gender: "N",
baseStats: {hp: 126, atk: 131, def: 95, spa: 131, spd: 98, spe: 99},
abilities: {0: "Fairy Aura"},
heightm: 3,
weightkg: 215,
color: "Blue",
eggGroups: ["Undiscovered"],
},
yveltal: {
num: 717,
name: "Yveltal",
types: ["Dark", "Flying"],
gender: "N",
baseStats: {hp: 126, atk: 131, def: 95, spa: 131, spd: 98, spe: 99},
abilities: {0: "Dark Aura"},
heightm: 5.8,
weightkg: 203,
color: "Red",
eggGroups: ["Undiscovered"],
},
zygarde: {
num: 718,
name: "Zygarde",
baseForme: "50%",
types: ["Dragon", "Ground"],
gender: "N",
baseStats: {hp: 108, atk: 100, def: 121, spa: 81, spd: 95, spe: 95},
abilities: {0: "Aura Break", S: "Power Construct"},
heightm: 5,
weightkg: 305,
color: "Green",
eggGroups: ["Undiscovered"],
otherFormes: ["zygarde10", "zygardecomplete"],
},
zygarde10: {
num: 718,
name: "Zygarde-10%",
baseSpecies: "Zygarde",
forme: "10%",
types: ["Dragon", "Ground"],
gender: "N",
baseStats: {hp: 54, atk: 100, def: 71, spa: 61, spd: 85, spe: 115},
abilities: {0: "Aura Break", S: "Power Construct"},
heightm: 1.2,
weightkg: 33.5,
color: "Green",
eggGroups: ["Undiscovered"],
gen: 7,
},
zygardecomplete: {
num: 718,
name: "Zygarde-Complete",
baseSpecies: "Zygarde",
forme: "Complete",
types: ["Dragon", "Ground"],
gender: "N",
baseStats: {hp: 216, atk: 100, def: 121, spa: 91, spd: 95, spe: 85},
abilities: {0: "Power Construct"},
heightm: 4.5,
weightkg: 610,
color: "Green",
eggGroups: ["Undiscovered"],
gen: 7,
requiredAbility: "Power Construct",
battleOnly: ["Zygarde", "Zygarde10"],
},
diancie: {
num: 719,
name: "Diancie",
types: ["Rock", "Fairy"],
gender: "N",
baseStats: {hp: 50, atk: 100, def: 150, spa: 100, spd: 150, spe: 50},
abilities: {0: "Clear Body"},
heightm: 0.7,
weightkg: 8.8,
color: "Pink",
eggGroups: ["Undiscovered"],
otherFormes: ["dianciemega"],
},
dianciemega: {
num: 719,
name: "Diancie-Mega",
baseSpecies: "Diancie",
forme: "Mega",
types: ["Rock", "Fairy"],
gender: "N",
baseStats: {hp: 50, atk: 160, def: 110, spa: 160, spd: 110, spe: 110},
abilities: {0: "Magic Bounce"},
heightm: 1.1,
weightkg: 27.8,
color: "Pink",
eggGroups: ["Undiscovered"],
requiredItem: "Diancite",
},
hoopa: {
num: 720,
name: "Hoopa",
baseForme: "Confined",
types: ["Psychic", "Ghost"],
gender: "N",
baseStats: {hp: 80, atk: 110, def: 60, spa: 150, spd: 130, spe: 70},
abilities: {0: "Magician"},
heightm: 0.5,
weightkg: 9,
color: "Purple",
eggGroups: ["Undiscovered"],
otherFormes: ["hoopaunbound"],
},
hoopaunbound: {
num: 720,
name: "Hoopa-Unbound",
baseSpecies: "Hoopa",
forme: "Unbound",
types: ["Psychic", "Dark"],
gender: "N",
baseStats: {hp: 80, atk: 160, def: 60, spa: 170, spd: 130, spe: 80},
abilities: {0: "Magician"},
heightm: 6.5,
weightkg: 490,
color: "Purple",
eggGroups: ["Undiscovered"],
},
volcanion: {
num: 721,
name: "Volcanion",
types: ["Fire", "Water"],
gender: "N",
baseStats: {hp: 80, atk: 110, def: 120, spa: 130, spd: 90, spe: 70},
abilities: {0: "Water Absorb"},
heightm: 1.7,
weightkg: 195,
color: "Brown",
eggGroups: ["Undiscovered"],
},
rowlet: {
num: 722,
name: "Rowlet",
types: ["Grass", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 68, atk: 55, def: 55, spa: 50, spd: 50, spe: 42},
abilities: {0: "Overgrow", H: "Long Reach"},
heightm: 0.3,
weightkg: 1.5,
color: "Brown",
evos: ["dartrix"],
eggGroups: ["Flying"],
},
dartrix: {
num: 723,
name: "Dartrix",
types: ["Grass", "Flying"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 75, def: 75, spa: 70, spd: 70, spe: 52},
abilities: {0: "Overgrow", H: "Long Reach"},
heightm: 0.7,
weightkg: 16,
color: "Brown",
prevo: "rowlet",
evoLevel: 17,
evos: ["decidueye"],
eggGroups: ["Flying"],
},
decidueye: {
num: 724,
name: "Decidueye",
types: ["Grass", "Ghost"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 78, atk: 107, def: 75, spa: 100, spd: 100, spe: 70},
abilities: {0: "Overgrow", H: "Long Reach"},
heightm: 1.6,
weightkg: 36.6,
color: "Brown",
prevo: "dartrix",
evoLevel: 34,
eggGroups: ["Flying"],
},
litten: {
num: 725,
name: "Litten",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 45, atk: 65, def: 40, spa: 60, spd: 40, spe: 70},
abilities: {0: "Blaze", H: "Intimidate"},
heightm: 0.4,
weightkg: 4.3,
color: "Red",
evos: ["torracat"],
eggGroups: ["Field"],
},
torracat: {
num: 726,
name: "Torracat",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 85, def: 50, spa: 80, spd: 50, spe: 90},
abilities: {0: "Blaze", H: "Intimidate"},
heightm: 0.7,
weightkg: 25,
color: "Red",
prevo: "litten",
evoLevel: 17,
evos: ["incineroar"],
eggGroups: ["Field"],
},
incineroar: {
num: 727,
name: "Incineroar",
types: ["Fire", "Dark"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 95, atk: 115, def: 90, spa: 80, spd: 90, spe: 60},
abilities: {0: "Blaze", H: "Intimidate"},
heightm: 1.8,
weightkg: 83,
color: "Red",
prevo: "torracat",
evoLevel: 34,
eggGroups: ["Field"],
},
popplio: {
num: 728,
name: "Popplio",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 54, def: 54, spa: 66, spd: 56, spe: 40},
abilities: {0: "Torrent", H: "Liquid Voice"},
heightm: 0.4,
weightkg: 7.5,
color: "Blue",
evos: ["brionne"],
eggGroups: ["Water 1", "Field"],
},
brionne: {
num: 729,
name: "Brionne",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 60, atk: 69, def: 69, spa: 91, spd: 81, spe: 50},
abilities: {0: "Torrent", H: "Liquid Voice"},
heightm: 0.6,
weightkg: 17.5,
color: "Blue",
prevo: "popplio",
evoLevel: 17,
evos: ["primarina"],
eggGroups: ["Water 1", "Field"],
},
primarina: {
num: 730,
name: "Primarina",
types: ["Water", "Fairy"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 74, def: 74, spa: 126, spd: 116, spe: 60},
abilities: {0: "Torrent", H: "Liquid Voice"},
heightm: 1.8,
weightkg: 44,
color: "Blue",
prevo: "brionne",
evoLevel: 34,
eggGroups: ["Water 1", "Field"],
},
pikipek: {
num: 731,
name: "Pikipek",
types: ["Normal", "Flying"],
baseStats: {hp: 35, atk: 75, def: 30, spa: 30, spd: 30, spe: 65},
abilities: {0: "Keen Eye", 1: "Skill Link", H: "Pickup"},
heightm: 0.3,
weightkg: 1.2,
color: "Black",
evos: ["trumbeak"],
eggGroups: ["Flying"],
},
trumbeak: {
num: 732,
name: "Trumbeak",
types: ["Normal", "Flying"],
baseStats: {hp: 55, atk: 85, def: 50, spa: 40, spd: 50, spe: 75},
abilities: {0: "Keen Eye", 1: "Skill Link", H: "Pickup"},
heightm: 0.6,
weightkg: 14.8,
color: "Black",
prevo: "pikipek",
evoLevel: 14,
evos: ["toucannon"],
eggGroups: ["Flying"],
},
toucannon: {
num: 733,
name: "Toucannon",
types: ["Normal", "Flying"],
baseStats: {hp: 80, atk: 120, def: 75, spa: 75, spd: 75, spe: 60},
abilities: {0: "Keen Eye", 1: "Skill Link", H: "Sheer Force"},
heightm: 1.1,
weightkg: 26,
color: "Black",
prevo: "trumbeak",
evoLevel: 28,
eggGroups: ["Flying"],
},
yungoos: {
num: 734,
name: "Yungoos",
types: ["Normal"],
baseStats: {hp: 48, atk: 70, def: 30, spa: 30, spd: 30, spe: 45},
abilities: {0: "Stakeout", 1: "Strong Jaw", H: "Adaptability"},
heightm: 0.4,
weightkg: 6,
color: "Brown",
evos: ["gumshoos"],
eggGroups: ["Field"],
},
gumshoos: {
num: 735,
name: "Gumshoos",
types: ["Normal"],
baseStats: {hp: 88, atk: 110, def: 60, spa: 55, spd: 60, spe: 45},
abilities: {0: "Stakeout", 1: "Strong Jaw", H: "Adaptability"},
heightm: 0.7,
weightkg: 14.2,
color: "Brown",
prevo: "yungoos",
evoLevel: 20,
eggGroups: ["Field"],
otherFormes: ["gumshoostotem"],
},
gumshoostotem: {
num: 735,
name: "Gumshoos-Totem",
baseSpecies: "Gumshoos",
forme: "Totem",
types: ["Normal"],
baseStats: {hp: 88, atk: 110, def: 60, spa: 55, spd: 60, spe: 45},
abilities: {0: "Adaptability"},
heightm: 1.4,
weightkg: 60,
color: "Brown",
eggGroups: ["Field"],
},
grubbin: {
num: 736,
name: "Grubbin",
types: ["Bug"],
baseStats: {hp: 47, atk: 62, def: 45, spa: 55, spd: 45, spe: 46},
abilities: {0: "Swarm"},
heightm: 0.4,
weightkg: 4.4,
color: "Gray",
evos: ["charjabug"],
eggGroups: ["Bug"],
},
charjabug: {
num: 737,
name: "Charjabug",
types: ["Bug", "Electric"],
baseStats: {hp: 57, atk: 82, def: 95, spa: 55, spd: 75, spe: 36},
abilities: {0: "Battery"},
heightm: 0.5,
weightkg: 10.5,
color: "Green",
prevo: "grubbin",
evoLevel: 20,
evos: ["vikavolt"],
eggGroups: ["Bug"],
},
vikavolt: {
num: 738,
name: "Vikavolt",
types: ["Bug", "Electric"],
baseStats: {hp: 77, atk: 70, def: 90, spa: 145, spd: 75, spe: 43},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 45,
color: "Blue",
prevo: "charjabug",
evoType: "useItem",
evoItem: "Thunder Stone",
eggGroups: ["Bug"],
otherFormes: ["vikavolttotem"],
},
vikavolttotem: {
num: 738,
name: "Vikavolt-Totem",
baseSpecies: "Vikavolt",
forme: "Totem",
types: ["Bug", "Electric"],
baseStats: {hp: 77, atk: 70, def: 90, spa: 145, spd: 75, spe: 43},
abilities: {0: "Levitate"},
heightm: 2.6,
weightkg: 147.5,
color: "Blue",
eggGroups: ["Bug"],
},
crabrawler: {
num: 739,
name: "Crabrawler",
types: ["Fighting"],
baseStats: {hp: 47, atk: 82, def: 57, spa: 42, spd: 47, spe: 63},
abilities: {0: "Hyper Cutter", 1: "Iron Fist", H: "Anger Point"},
heightm: 0.6,
weightkg: 7,
color: "Purple",
evos: ["crabominable"],
eggGroups: ["Water 3"],
},
crabominable: {
num: 740,
name: "Crabominable",
types: ["Fighting", "Ice"],
baseStats: {hp: 97, atk: 132, def: 77, spa: 62, spd: 67, spe: 43},
abilities: {0: "Hyper Cutter", 1: "Iron Fist", H: "Anger Point"},
heightm: 1.7,
weightkg: 180,
color: "White",
prevo: "crabrawler",
evoType: "levelExtra",
evoCondition: "at Mount Lanakila",
eggGroups: ["Water 3"],
},
oricorio: {
num: 741,
name: "Oricorio",
baseForme: "Baile",
types: ["Fire", "Flying"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 75, atk: 70, def: 70, spa: 98, spd: 70, spe: 93},
abilities: {0: "Dancer"},
heightm: 0.6,
weightkg: 3.4,
color: "Red",
eggGroups: ["Flying"],
otherFormes: ["oricoriopompom", "oricoriopau", "oricoriosensu"],
},
oricoriopompom: {
num: 741,
name: "Oricorio-Pom-Pom",
baseSpecies: "Oricorio",
forme: "Pom-Pom",
types: ["Electric", "Flying"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 75, atk: 70, def: 70, spa: 98, spd: 70, spe: 93},
abilities: {0: "Dancer"},
heightm: 0.6,
weightkg: 3.4,
color: "Yellow",
eggGroups: ["Flying"],
},
oricoriopau: {
num: 741,
name: "Oricorio-Pa'u",
baseSpecies: "Oricorio",
forme: "Pa'u",
types: ["Psychic", "Flying"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 75, atk: 70, def: 70, spa: 98, spd: 70, spe: 93},
abilities: {0: "Dancer"},
heightm: 0.6,
weightkg: 3.4,
color: "Pink",
eggGroups: ["Flying"],
},
oricoriosensu: {
num: 741,
name: "Oricorio-Sensu",
baseSpecies: "Oricorio",
forme: "Sensu",
types: ["Ghost", "Flying"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 75, atk: 70, def: 70, spa: 98, spd: 70, spe: 93},
abilities: {0: "Dancer"},
heightm: 0.6,
weightkg: 3.4,
color: "Purple",
eggGroups: ["Flying"],
},
cutiefly: {
num: 742,
name: "Cutiefly",
types: ["Bug", "Fairy"],
baseStats: {hp: 40, atk: 45, def: 40, spa: 55, spd: 40, spe: 84},
abilities: {0: "Honey Gather", 1: "Shield Dust", H: "Sweet Veil"},
heightm: 0.1,
weightkg: 0.2,
color: "Yellow",
evos: ["ribombee"],
eggGroups: ["Bug", "Fairy"],
},
ribombee: {
num: 743,
name: "Ribombee",
types: ["Bug", "Fairy"],
baseStats: {hp: 60, atk: 55, def: 60, spa: 95, spd: 70, spe: 124},
abilities: {0: "Honey Gather", 1: "Shield Dust", H: "Sweet Veil"},
heightm: 0.2,
weightkg: 0.5,
color: "Yellow",
prevo: "cutiefly",
evoLevel: 25,
eggGroups: ["Bug", "Fairy"],
otherFormes: ["ribombeetotem"],
},
ribombeetotem: {
num: 743,
name: "Ribombee-Totem",
baseSpecies: "Ribombee",
forme: "Totem",
types: ["Bug", "Fairy"],
baseStats: {hp: 60, atk: 55, def: 60, spa: 95, spd: 70, spe: 124},
abilities: {0: "Sweet Veil"},
heightm: 0.4,
weightkg: 2,
color: "Yellow",
eggGroups: ["Bug", "Fairy"],
},
rockruff: {
num: 744,
name: "Rockruff",
baseForme: "Midday",
types: ["Rock"],
baseStats: {hp: 45, atk: 65, def: 40, spa: 30, spd: 40, spe: 60},
abilities: {0: "Keen Eye", 1: "Vital Spirit", H: "Steadfast", S: "Own Tempo"},
heightm: 0.5,
weightkg: 9.2,
color: "Brown",
evos: ["lycanroc", "lycanrocmidnight", "lycanrocdusk"],
eggGroups: ["Field"],
},
lycanroc: {
num: 745,
name: "Lycanroc",
baseForme: "Midday",
types: ["Rock"],
baseStats: {hp: 75, atk: 115, def: 65, spa: 55, spd: 65, spe: 112},
abilities: {0: "Keen Eye", 1: "Sand Rush", H: "Steadfast"},
heightm: 0.8,
weightkg: 25,
color: "Brown",
prevo: "rockruff",
evoLevel: 25,
eggGroups: ["Field"],
otherFormes: ["lycanrocmidnight", "lycanrocdusk"],
},
lycanrocmidnight: {
num: 745,
name: "Lycanroc-Midnight",
baseSpecies: "Lycanroc",
forme: "Midnight",
types: ["Rock"],
baseStats: {hp: 85, atk: 115, def: 75, spa: 55, spd: 75, spe: 82},
abilities: {0: "Keen Eye", 1: "Vital Spirit", H: "No Guard"},
heightm: 1.1,
weightkg: 25,
color: "Red",
prevo: "rockruff",
evoLevel: 25,
eggGroups: ["Field"],
},
lycanrocdusk: {
num: 745,
name: "Lycanroc-Dusk",
baseSpecies: "Lycanroc",
forme: "Dusk",
types: ["Rock"],
baseStats: {hp: 75, atk: 117, def: 65, spa: 55, spd: 65, spe: 110},
abilities: {0: "Tough Claws"},
heightm: 0.8,
weightkg: 25,
color: "Brown",
prevo: "rockruff",
evoLevel: 25,
eggGroups: ["Field"],
},
wishiwashi: {
num: 746,
name: "Wishiwashi",
baseForme: "Solo",
types: ["Water"],
baseStats: {hp: 45, atk: 20, def: 20, spa: 25, spd: 25, spe: 40},
abilities: {0: "Schooling"},
heightm: 0.2,
weightkg: 0.3,
color: "Blue",
eggGroups: ["Water 2"],
otherFormes: ["wishiwashischool"],
},
wishiwashischool: {
num: 746,
name: "Wishiwashi-School",
baseSpecies: "Wishiwashi",
forme: "School",
types: ["Water"],
baseStats: {hp: 45, atk: 140, def: 130, spa: 140, spd: 135, spe: 30},
abilities: {0: "Schooling"},
heightm: 8.2,
weightkg: 78.6,
color: "Blue",
eggGroups: ["Water 2"],
requiredAbility: "Schooling",
battleOnly: "Wishiwashi",
},
mareanie: {
num: 747,
name: "Mareanie",
types: ["Poison", "Water"],
baseStats: {hp: 50, atk: 53, def: 62, spa: 43, spd: 52, spe: 45},
abilities: {0: "Merciless", 1: "Limber", H: "Regenerator"},
heightm: 0.4,
weightkg: 8,
color: "Blue",
evos: ["toxapex"],
eggGroups: ["Water 1"],
},
toxapex: {
num: 748,
name: "Toxapex",
types: ["Poison", "Water"],
baseStats: {hp: 50, atk: 63, def: 152, spa: 53, spd: 142, spe: 35},
abilities: {0: "Merciless", 1: "Limber", H: "Regenerator"},
heightm: 0.7,
weightkg: 14.5,
color: "Blue",
prevo: "mareanie",
evoLevel: 38,
eggGroups: ["Water 1"],
},
mudbray: {
num: 749,
name: "Mudbray",
types: ["Ground"],
baseStats: {hp: 70, atk: 100, def: 70, spa: 45, spd: 55, spe: 45},
abilities: {0: "Own Tempo", 1: "Stamina", H: "Inner Focus"},
heightm: 1,
weightkg: 110,
color: "Brown",
evos: ["mudsdale"],
eggGroups: ["Field"],
},
mudsdale: {
num: 750,
name: "Mudsdale",
types: ["Ground"],
baseStats: {hp: 100, atk: 125, def: 100, spa: 55, spd: 85, spe: 35},
abilities: {0: "Own Tempo", 1: "Stamina", H: "Inner Focus"},
heightm: 2.5,
weightkg: 920,
color: "Brown",
prevo: "mudbray",
evoLevel: 30,
eggGroups: ["Field"],
},
dewpider: {
num: 751,
name: "Dewpider",
types: ["Water", "Bug"],
baseStats: {hp: 38, atk: 40, def: 52, spa: 40, spd: 72, spe: 27},
abilities: {0: "Water Bubble", H: "Water Absorb"},
heightm: 0.3,
weightkg: 4,
color: "Green",
evos: ["araquanid"],
eggGroups: ["Water 1", "Bug"],
},
araquanid: {
num: 752,
name: "Araquanid",
types: ["Water", "Bug"],
baseStats: {hp: 68, atk: 70, def: 92, spa: 50, spd: 132, spe: 42},
abilities: {0: "Water Bubble", H: "Water Absorb"},
heightm: 1.8,
weightkg: 82,
color: "Green",
prevo: "dewpider",
evoLevel: 22,
eggGroups: ["Water 1", "Bug"],
otherFormes: ["araquanidtotem"],
},
araquanidtotem: {
num: 752,
name: "Araquanid-Totem",
baseSpecies: "Araquanid",
forme: "Totem",
types: ["Water", "Bug"],
baseStats: {hp: 68, atk: 70, def: 92, spa: 50, spd: 132, spe: 42},
abilities: {0: "Water Bubble"},
heightm: 3.1,
weightkg: 217.5,
color: "Green",
eggGroups: ["Water 1", "Bug"],
},
fomantis: {
num: 753,
name: "Fomantis",
types: ["Grass"],
baseStats: {hp: 40, atk: 55, def: 35, spa: 50, spd: 35, spe: 35},
abilities: {0: "Leaf Guard", H: "Contrary"},
heightm: 0.3,
weightkg: 1.5,
color: "Pink",
evos: ["lurantis"],
eggGroups: ["Grass"],
},
lurantis: {
num: 754,
name: "Lurantis",
types: ["Grass"],
baseStats: {hp: 70, atk: 105, def: 90, spa: 80, spd: 90, spe: 45},
abilities: {0: "Leaf Guard", H: "Contrary"},
heightm: 0.9,
weightkg: 18.5,
color: "Pink",
prevo: "fomantis",
evoLevel: 34,
eggGroups: ["Grass"],
otherFormes: ["lurantistotem"],
},
lurantistotem: {
num: 754,
name: "Lurantis-Totem",
baseSpecies: "Lurantis",
forme: "Totem",
types: ["Grass"],
baseStats: {hp: 70, atk: 105, def: 90, spa: 80, spd: 90, spe: 45},
abilities: {0: "Leaf Guard"},
heightm: 1.5,
weightkg: 58,
color: "Pink",
eggGroups: ["Grass"],
},
morelull: {
num: 755,
name: "Morelull",
types: ["Grass", "Fairy"],
baseStats: {hp: 40, atk: 35, def: 55, spa: 65, spd: 75, spe: 15},
abilities: {0: "Illuminate", 1: "Effect Spore", H: "Rain Dish"},
heightm: 0.2,
weightkg: 1.5,
color: "Purple",
evos: ["shiinotic"],
eggGroups: ["Grass"],
},
shiinotic: {
num: 756,
name: "Shiinotic",
types: ["Grass", "Fairy"],
baseStats: {hp: 60, atk: 45, def: 80, spa: 90, spd: 100, spe: 30},
abilities: {0: "Illuminate", 1: "Effect Spore", H: "Rain Dish"},
heightm: 1,
weightkg: 11.5,
color: "Purple",
prevo: "morelull",
evoLevel: 24,
eggGroups: ["Grass"],
},
salandit: {
num: 757,
name: "Salandit",
types: ["Poison", "Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 48, atk: 44, def: 40, spa: 71, spd: 40, spe: 77},
abilities: {0: "Corrosion", H: "Oblivious"},
heightm: 0.6,
weightkg: 4.8,
color: "Black",
evos: ["salazzle"],
eggGroups: ["Monster", "Dragon"],
},
salazzle: {
num: 758,
name: "Salazzle",
types: ["Poison", "Fire"],
gender: "F",
baseStats: {hp: 68, atk: 64, def: 60, spa: 111, spd: 60, spe: 117},
abilities: {0: "Corrosion", H: "Oblivious"},
heightm: 1.2,
weightkg: 22.2,
color: "Black",
prevo: "salandit",
evoLevel: 33,
eggGroups: ["Monster", "Dragon"],
otherFormes: ["salazzletotem"],
},
salazzletotem: {
num: 758,
name: "Salazzle-Totem",
baseSpecies: "Salazzle",
forme: "Totem",
types: ["Poison", "Fire"],
gender: "F",
baseStats: {hp: 68, atk: 64, def: 60, spa: 111, spd: 60, spe: 117},
abilities: {0: "Corrosion"},
heightm: 2.1,
weightkg: 81,
color: "Black",
eggGroups: ["Monster", "Dragon"],
},
stufful: {
num: 759,
name: "Stufful",
types: ["Normal", "Fighting"],
baseStats: {hp: 70, atk: 75, def: 50, spa: 45, spd: 50, spe: 50},
abilities: {0: "Fluffy", 1: "Klutz", H: "Cute Charm"},
heightm: 0.5,
weightkg: 6.8,
color: "Pink",
evos: ["bewear"],
eggGroups: ["Field"],
},
bewear: {
num: 760,
name: "Bewear",
types: ["Normal", "Fighting"],
baseStats: {hp: 120, atk: 125, def: 80, spa: 55, spd: 60, spe: 60},
abilities: {0: "Fluffy", 1: "Klutz", H: "Unnerve"},
heightm: 2.1,
weightkg: 135,
color: "Pink",
prevo: "stufful",
evoLevel: 27,
eggGroups: ["Field"],
},
bounsweet: {
num: 761,
name: "Bounsweet",
types: ["Grass"],
gender: "F",
baseStats: {hp: 42, atk: 30, def: 38, spa: 30, spd: 38, spe: 32},
abilities: {0: "Leaf Guard", 1: "Oblivious", H: "Sweet Veil"},
heightm: 0.3,
weightkg: 3.2,
color: "Purple",
evos: ["steenee"],
eggGroups: ["Grass"],
},
steenee: {
num: 762,
name: "Steenee",
types: ["Grass"],
gender: "F",
baseStats: {hp: 52, atk: 40, def: 48, spa: 40, spd: 48, spe: 62},
abilities: {0: "Leaf Guard", 1: "Oblivious", H: "Sweet Veil"},
heightm: 0.7,
weightkg: 8.2,
color: "Purple",
prevo: "bounsweet",
evoLevel: 18,
evos: ["tsareena"],
eggGroups: ["Grass"],
},
tsareena: {
num: 763,
name: "Tsareena",
types: ["Grass"],
gender: "F",
baseStats: {hp: 72, atk: 120, def: 98, spa: 50, spd: 98, spe: 72},
abilities: {0: "Leaf Guard", 1: "Queenly Majesty", H: "Sweet Veil"},
heightm: 1.2,
weightkg: 21.4,
color: "Purple",
prevo: "steenee",
evoType: "levelMove",
evoMove: "Stomp",
eggGroups: ["Grass"],
},
comfey: {
num: 764,
name: "Comfey",
types: ["Fairy"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 51, atk: 52, def: 90, spa: 82, spd: 110, spe: 100},
abilities: {0: "Flower Veil", 1: "Triage", H: "Natural Cure"},
heightm: 0.1,
weightkg: 0.3,
color: "Green",
eggGroups: ["Grass"],
},
oranguru: {
num: 765,
name: "Oranguru",
types: ["Normal", "Psychic"],
baseStats: {hp: 90, atk: 60, def: 80, spa: 90, spd: 110, spe: 60},
abilities: {0: "Inner Focus", 1: "Telepathy", H: "Symbiosis"},
heightm: 1.5,
weightkg: 76,
color: "White",
eggGroups: ["Field"],
},
passimian: {
num: 766,
name: "Passimian",
types: ["Fighting"],
baseStats: {hp: 100, atk: 120, def: 90, spa: 40, spd: 60, spe: 80},
abilities: {0: "Receiver", H: "Defiant"},
heightm: 2,
weightkg: 82.8,
color: "White",
eggGroups: ["Field"],
},
wimpod: {
num: 767,
name: "Wimpod",
types: ["Bug", "Water"],
baseStats: {hp: 25, atk: 35, def: 40, spa: 20, spd: 30, spe: 80},
abilities: {0: "Wimp Out"},
heightm: 0.5,
weightkg: 12,
color: "Gray",
evos: ["golisopod"],
eggGroups: ["Bug", "Water 3"],
},
golisopod: {
num: 768,
name: "Golisopod",
types: ["Bug", "Water"],
baseStats: {hp: 75, atk: 125, def: 140, spa: 60, spd: 90, spe: 40},
abilities: {0: "Emergency Exit"},
heightm: 2,
weightkg: 108,
color: "Gray",
prevo: "wimpod",
evoLevel: 30,
eggGroups: ["Bug", "Water 3"],
},
sandygast: {
num: 769,
name: "Sandygast",
types: ["Ghost", "Ground"],
baseStats: {hp: 55, atk: 55, def: 80, spa: 70, spd: 45, spe: 15},
abilities: {0: "Water Compaction", H: "Sand Veil"},
heightm: 0.5,
weightkg: 70,
color: "Brown",
evos: ["palossand"],
eggGroups: ["Amorphous"],
},
palossand: {
num: 770,
name: "Palossand",
types: ["Ghost", "Ground"],
baseStats: {hp: 85, atk: 75, def: 110, spa: 100, spd: 75, spe: 35},
abilities: {0: "Water Compaction", H: "Sand Veil"},
heightm: 1.3,
weightkg: 250,
color: "Brown",
prevo: "sandygast",
evoLevel: 42,
eggGroups: ["Amorphous"],
},
pyukumuku: {
num: 771,
name: "Pyukumuku",
types: ["Water"],
baseStats: {hp: 55, atk: 60, def: 130, spa: 30, spd: 130, spe: 5},
abilities: {0: "Innards Out", H: "Unaware"},
heightm: 0.3,
weightkg: 1.2,
color: "Black",
eggGroups: ["Water 1"],
},
typenull: {
num: 772,
name: "Type: Null",
types: ["Normal"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 59},
abilities: {0: "Battle Armor"},
heightm: 1.9,
weightkg: 120.5,
color: "Gray",
evos: ["silvally"],
eggGroups: ["Undiscovered"],
},
silvally: {
num: 773,
name: "Silvally",
types: ["Normal"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
otherFormes: ["silvallybug", "silvallydark", "silvallydragon", "silvallyelectric", "silvallyfairy", "silvallyfighting", "silvallyfire", "silvallyflying", "silvallyghost", "silvallygrass", "silvallyground", "silvallyice", "silvallypoison", "silvallypsychic", "silvallyrock", "silvallysteel", "silvallywater"],
},
silvallybug: {
num: 773,
name: "Silvally-Bug",
baseSpecies: "Silvally",
forme: "Bug",
types: ["Bug"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Bug Memory",
},
silvallydark: {
num: 773,
name: "Silvally-Dark",
baseSpecies: "Silvally",
forme: "Dark",
types: ["Dark"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Dark Memory",
},
silvallydragon: {
num: 773,
name: "Silvally-Dragon",
baseSpecies: "Silvally",
forme: "Dragon",
types: ["Dragon"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Dragon Memory",
},
silvallyelectric: {
num: 773,
name: "Silvally-Electric",
baseSpecies: "Silvally",
forme: "Electric",
types: ["Electric"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Electric Memory",
},
silvallyfairy: {
num: 773,
name: "Silvally-Fairy",
baseSpecies: "Silvally",
forme: "Fairy",
types: ["Fairy"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Fairy Memory",
},
silvallyfighting: {
num: 773,
name: "Silvally-Fighting",
baseSpecies: "Silvally",
forme: "Fighting",
types: ["Fighting"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Fighting Memory",
},
silvallyfire: {
num: 773,
name: "Silvally-Fire",
baseSpecies: "Silvally",
forme: "Fire",
types: ["Fire"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Fire Memory",
},
silvallyflying: {
num: 773,
name: "Silvally-Flying",
baseSpecies: "Silvally",
forme: "Flying",
types: ["Flying"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Flying Memory",
},
silvallyghost: {
num: 773,
name: "Silvally-Ghost",
baseSpecies: "Silvally",
forme: "Ghost",
types: ["Ghost"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Ghost Memory",
},
silvallygrass: {
num: 773,
name: "Silvally-Grass",
baseSpecies: "Silvally",
forme: "Grass",
types: ["Grass"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Grass Memory",
},
silvallyground: {
num: 773,
name: "Silvally-Ground",
baseSpecies: "Silvally",
forme: "Ground",
types: ["Ground"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Ground Memory",
},
silvallyice: {
num: 773,
name: "Silvally-Ice",
baseSpecies: "Silvally",
forme: "Ice",
types: ["Ice"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Ice Memory",
},
silvallypoison: {
num: 773,
name: "Silvally-Poison",
baseSpecies: "Silvally",
forme: "Poison",
types: ["Poison"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Poison Memory",
},
silvallypsychic: {
num: 773,
name: "Silvally-Psychic",
baseSpecies: "Silvally",
forme: "Psychic",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Psychic Memory",
},
silvallyrock: {
num: 773,
name: "Silvally-Rock",
baseSpecies: "Silvally",
forme: "Rock",
types: ["Rock"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Rock Memory",
},
silvallysteel: {
num: 773,
name: "Silvally-Steel",
baseSpecies: "Silvally",
forme: "Steel",
types: ["Steel"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Steel Memory",
},
silvallywater: {
num: 773,
name: "Silvally-Water",
baseSpecies: "Silvally",
forme: "Water",
types: ["Water"],
gender: "N",
baseStats: {hp: 95, atk: 95, def: 95, spa: 95, spd: 95, spe: 95},
abilities: {0: "RKS System"},
heightm: 2.3,
weightkg: 100.5,
color: "Gray",
prevo: "typenull",
evoType: "levelFriendship",
eggGroups: ["Undiscovered"],
requiredItem: "Water Memory",
},
minior: {
num: 774,
name: "Minior",
baseForme: "Red",
types: ["Rock", "Flying"],
gender: "N",
baseStats: {hp: 60, atk: 100, def: 60, spa: 100, spd: 60, spe: 120},
abilities: {0: "Shields Down"},
heightm: 0.3,
weightkg: 0.3,
color: "Red",
eggGroups: ["Mineral"],
otherFormes: ["miniormeteor"],
cosmeticFormes: ["miniororange", "minioryellow", "miniorgreen", "miniorblue", "miniorindigo", "miniorviolet"],
},
miniormeteor: {
num: 774,
name: "Minior-Meteor",
baseSpecies: "Minior",
forme: "Meteor",
types: ["Rock", "Flying"],
gender: "N",
baseStats: {hp: 60, atk: 60, def: 100, spa: 60, spd: 100, spe: 60},
abilities: {0: "Shields Down"},
heightm: 0.3,
weightkg: 40,
color: "Brown",
eggGroups: ["Mineral"],
requiredAbility: "Shields Down",
battleOnly: "Minior",
},
komala: {
num: 775,
name: "Komala",
types: ["Normal"],
baseStats: {hp: 65, atk: 115, def: 65, spa: 75, spd: 95, spe: 65},
abilities: {0: "Comatose"},
heightm: 0.4,
weightkg: 19.9,
color: "Blue",
eggGroups: ["Field"],
},
turtonator: {
num: 776,
name: "Turtonator",
types: ["Fire", "Dragon"],
baseStats: {hp: 60, atk: 78, def: 135, spa: 91, spd: 85, spe: 36},
abilities: {0: "Shell Armor"},
heightm: 2,
weightkg: 212,
color: "Red",
eggGroups: ["Monster", "Dragon"],
},
togedemaru: {
num: 777,
name: "Togedemaru",
types: ["Electric", "Steel"],
baseStats: {hp: 65, atk: 98, def: 63, spa: 40, spd: 73, spe: 96},
abilities: {0: "Iron Barbs", 1: "Lightning Rod", H: "Sturdy"},
heightm: 0.3,
weightkg: 3.3,
color: "Gray",
eggGroups: ["Field", "Fairy"],
otherFormes: ["togedemarutotem"],
},
togedemarutotem: {
num: 777,
name: "Togedemaru-Totem",
baseSpecies: "Togedemaru",
forme: "Totem",
types: ["Electric", "Steel"],
baseStats: {hp: 65, atk: 98, def: 63, spa: 40, spd: 73, spe: 96},
abilities: {0: "Sturdy"},
heightm: 0.6,
weightkg: 13,
color: "Gray",
eggGroups: ["Field", "Fairy"],
},
mimikyu: {
num: 778,
name: "Mimikyu",
types: ["Ghost", "Fairy"],
baseStats: {hp: 55, atk: 90, def: 80, spa: 50, spd: 105, spe: 96},
abilities: {0: "Disguise"},
heightm: 0.2,
weightkg: 0.7,
color: "Yellow",
eggGroups: ["Amorphous"],
otherFormes: ["mimikyubusted", "mimikyutotem", "mimikyubustedtotem"],
},
mimikyubusted: {
num: 778,
name: "Mimikyu-Busted",
baseSpecies: "Mimikyu",
forme: "Busted",
types: ["Ghost", "Fairy"],
baseStats: {hp: 55, atk: 90, def: 80, spa: 50, spd: 105, spe: 96},
abilities: {0: "Disguise"},
heightm: 0.2,
weightkg: 0.7,
color: "Yellow",
eggGroups: ["Amorphous"],
requiredAbility: "Disguise",
battleOnly: "Mimikyu",
},
mimikyutotem: {
num: 778,
name: "Mimikyu-Totem",
baseSpecies: "Mimikyu",
forme: "Totem",
types: ["Ghost", "Fairy"],
baseStats: {hp: 55, atk: 90, def: 80, spa: 50, spd: 105, spe: 96},
abilities: {0: "Disguise"},
heightm: 0.4,
weightkg: 2.8,
color: "Yellow",
eggGroups: ["Amorphous"],
},
mimikyubustedtotem: {
num: 778,
name: "Mimikyu-Busted-Totem",
baseSpecies: "Mimikyu",
forme: "Busted-Totem",
types: ["Ghost", "Fairy"],
baseStats: {hp: 55, atk: 90, def: 80, spa: 50, spd: 105, spe: 96},
abilities: {0: "Disguise"},
heightm: 0.4,
weightkg: 2.8,
color: "Yellow",
eggGroups: ["Amorphous"],
requiredAbility: "Disguise",
battleOnly: "Mimikyu-Totem",
},
bruxish: {
num: 779,
name: "Bruxish",
types: ["Water", "Psychic"],
baseStats: {hp: 68, atk: 105, def: 70, spa: 70, spd: 70, spe: 92},
abilities: {0: "Dazzling", 1: "Strong Jaw", H: "Wonder Skin"},
heightm: 0.9,
weightkg: 19,
color: "Pink",
eggGroups: ["Water 2"],
},
drampa: {
num: 780,
name: "Drampa",
types: ["Normal", "Dragon"],
baseStats: {hp: 78, atk: 60, def: 85, spa: 135, spd: 91, spe: 36},
abilities: {0: "Berserk", 1: "Sap Sipper", H: "Cloud Nine"},
heightm: 3,
weightkg: 185,
color: "White",
eggGroups: ["Monster", "Dragon"],
},
dhelmise: {
num: 781,
name: "Dhelmise",
types: ["Ghost", "Grass"],
gender: "N",
baseStats: {hp: 70, atk: 131, def: 100, spa: 86, spd: 90, spe: 40},
abilities: {0: "Steelworker"},
heightm: 3.9,
weightkg: 210,
color: "Green",
eggGroups: ["Mineral"],
},
jangmoo: {
num: 782,
name: "Jangmo-o",
types: ["Dragon"],
baseStats: {hp: 45, atk: 55, def: 65, spa: 45, spd: 45, spe: 45},
abilities: {0: "Bulletproof", 1: "Soundproof", H: "Overcoat"},
heightm: 0.6,
weightkg: 29.7,
color: "Gray",
evos: ["hakamoo"],
eggGroups: ["Dragon"],
},
hakamoo: {
num: 783,
name: "Hakamo-o",
types: ["Dragon", "Fighting"],
baseStats: {hp: 55, atk: 75, def: 90, spa: 65, spd: 70, spe: 65},
abilities: {0: "Bulletproof", 1: "Soundproof", H: "Overcoat"},
heightm: 1.2,
weightkg: 47,
color: "Gray",
prevo: "jangmoo",
evoLevel: 35,
evos: ["kommoo"],
eggGroups: ["Dragon"],
},
kommoo: {
num: 784,
name: "Kommo-o",
types: ["Dragon", "Fighting"],
baseStats: {hp: 75, atk: 110, def: 125, spa: 100, spd: 105, spe: 85},
abilities: {0: "Bulletproof", 1: "Soundproof", H: "Overcoat"},
heightm: 1.6,
weightkg: 78.2,
color: "Gray",
prevo: "hakamoo",
evoLevel: 45,
eggGroups: ["Dragon"],
otherFormes: ["kommoototem"],
},
kommoototem: {
num: 784,
name: "Kommo-o-Totem",
baseSpecies: "Kommo-o",
forme: "Totem",
types: ["Dragon", "Fighting"],
baseStats: {hp: 75, atk: 110, def: 125, spa: 100, spd: 105, spe: 85},
abilities: {0: "Overcoat"},
heightm: 2.4,
weightkg: 207.5,
color: "Gray",
eggGroups: ["Dragon"],
},
tapukoko: {
num: 785,
name: "Tapu Koko",
types: ["Electric", "Fairy"],
gender: "N",
baseStats: {hp: 70, atk: 115, def: 85, spa: 95, spd: 75, spe: 130},
abilities: {0: "Electric Surge", H: "Telepathy"},
heightm: 1.8,
weightkg: 20.5,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
tapulele: {
num: 786,
name: "Tapu Lele",
types: ["Psychic", "Fairy"],
gender: "N",
baseStats: {hp: 70, atk: 85, def: 75, spa: 130, spd: 115, spe: 95},
abilities: {0: "Psychic Surge", H: "Telepathy"},
heightm: 1.2,
weightkg: 18.6,
color: "Pink",
eggGroups: ["Undiscovered"],
},
tapubulu: {
num: 787,
name: "Tapu Bulu",
types: ["Grass", "Fairy"],
gender: "N",
baseStats: {hp: 70, atk: 130, def: 115, spa: 85, spd: 95, spe: 75},
abilities: {0: "Grassy Surge", H: "Telepathy"},
heightm: 1.9,
weightkg: 45.5,
color: "Red",
eggGroups: ["Undiscovered"],
},
tapufini: {
num: 788,
name: "Tapu Fini",
types: ["Water", "Fairy"],
gender: "N",
baseStats: {hp: 70, atk: 75, def: 115, spa: 95, spd: 130, spe: 85},
abilities: {0: "Misty Surge", H: "Telepathy"},
heightm: 1.3,
weightkg: 21.2,
color: "Purple",
eggGroups: ["Undiscovered"],
},
cosmog: {
num: 789,
name: "Cosmog",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 43, atk: 29, def: 31, spa: 29, spd: 31, spe: 37},
abilities: {0: "Unaware"},
heightm: 0.2,
weightkg: 0.1,
color: "Blue",
evos: ["cosmoem"],
eggGroups: ["Undiscovered"],
},
cosmoem: {
num: 790,
name: "Cosmoem",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 43, atk: 29, def: 131, spa: 29, spd: 131, spe: 37},
abilities: {0: "Sturdy"},
heightm: 0.1,
weightkg: 999.9,
color: "Blue",
prevo: "cosmog",
evoLevel: 43,
evos: ["solgaleo", "lunala"],
eggGroups: ["Undiscovered"],
},
solgaleo: {
num: 791,
name: "Solgaleo",
types: ["Psychic", "Steel"],
gender: "N",
baseStats: {hp: 137, atk: 137, def: 107, spa: 113, spd: 89, spe: 97},
abilities: {0: "Full Metal Body"},
heightm: 3.4,
weightkg: 230,
color: "White",
prevo: "cosmoem",
evoLevel: 53,
eggGroups: ["Undiscovered"],
},
lunala: {
num: 792,
name: "Lunala",
types: ["Psychic", "Ghost"],
gender: "N",
baseStats: {hp: 137, atk: 113, def: 89, spa: 137, spd: 107, spe: 97},
abilities: {0: "Shadow Shield"},
heightm: 4,
weightkg: 120,
color: "Purple",
prevo: "cosmoem",
evoLevel: 53,
eggGroups: ["Undiscovered"],
},
nihilego: {
num: 793,
name: "Nihilego",
types: ["Rock", "Poison"],
gender: "N",
baseStats: {hp: 109, atk: 53, def: 47, spa: 127, spd: 131, spe: 103},
abilities: {0: "Beast Boost"},
heightm: 1.2,
weightkg: 55.5,
color: "White",
eggGroups: ["Undiscovered"],
},
buzzwole: {
num: 794,
name: "Buzzwole",
types: ["Bug", "Fighting"],
gender: "N",
baseStats: {hp: 107, atk: 139, def: 139, spa: 53, spd: 53, spe: 79},
abilities: {0: "Beast Boost"},
heightm: 2.4,
weightkg: 333.6,
color: "Red",
eggGroups: ["Undiscovered"],
},
pheromosa: {
num: 795,
name: "Pheromosa",
types: ["Bug", "Fighting"],
gender: "N",
baseStats: {hp: 71, atk: 137, def: 37, spa: 137, spd: 37, spe: 151},
abilities: {0: "Beast Boost"},
heightm: 1.8,
weightkg: 25,
color: "White",
eggGroups: ["Undiscovered"],
},
xurkitree: {
num: 796,
name: "Xurkitree",
types: ["Electric"],
gender: "N",
baseStats: {hp: 83, atk: 89, def: 71, spa: 173, spd: 71, spe: 83},
abilities: {0: "Beast Boost"},
heightm: 3.8,
weightkg: 100,
color: "Black",
eggGroups: ["Undiscovered"],
},
celesteela: {
num: 797,
name: "Celesteela",
types: ["Steel", "Flying"],
gender: "N",
baseStats: {hp: 97, atk: 101, def: 103, spa: 107, spd: 101, spe: 61},
abilities: {0: "Beast Boost"},
heightm: 9.2,
weightkg: 999.9,
color: "Green",
eggGroups: ["Undiscovered"],
},
kartana: {
num: 798,
name: "Kartana",
types: ["Grass", "Steel"],
gender: "N",
baseStats: {hp: 59, atk: 181, def: 131, spa: 59, spd: 31, spe: 109},
abilities: {0: "Beast Boost"},
heightm: 0.3,
weightkg: 0.1,
color: "White",
eggGroups: ["Undiscovered"],
},
guzzlord: {
num: 799,
name: "Guzzlord",
types: ["Dark", "Dragon"],
gender: "N",
baseStats: {hp: 223, atk: 101, def: 53, spa: 97, spd: 53, spe: 43},
abilities: {0: "Beast Boost"},
heightm: 5.5,
weightkg: 888,
color: "Black",
eggGroups: ["Undiscovered"],
},
necrozma: {
num: 800,
name: "Necrozma",
types: ["Psychic"],
gender: "N",
baseStats: {hp: 97, atk: 107, def: 101, spa: 127, spd: 89, spe: 79},
abilities: {0: "Prism Armor"},
heightm: 2.4,
weightkg: 230,
color: "Black",
eggGroups: ["Undiscovered"],
otherFormes: ["necrozmaduskmane", "necrozmadawnwings", "necrozmaultra"],
},
necrozmaduskmane: {
num: 800,
name: "Necrozma-Dusk-Mane",
baseSpecies: "Necrozma",
forme: "Dusk-Mane",
types: ["Psychic", "Steel"],
gender: "N",
baseStats: {hp: 97, atk: 157, def: 127, spa: 113, spd: 109, spe: 77},
abilities: {0: "Prism Armor"},
heightm: 3.8,
weightkg: 460,
color: "Yellow",
eggGroups: ["Undiscovered"],
inheritsFrom: "necrozma",
},
necrozmadawnwings: {
num: 800,
name: "Necrozma-Dawn-Wings",
baseSpecies: "Necrozma",
forme: "Dawn-Wings",
types: ["Psychic", "Ghost"],
gender: "N",
baseStats: {hp: 97, atk: 113, def: 109, spa: 157, spd: 127, spe: 77},
abilities: {0: "Prism Armor"},
heightm: 4.2,
weightkg: 350,
color: "Blue",
eggGroups: ["Undiscovered"],
inheritsFrom: "necrozma",
},
necrozmaultra: {
num: 800,
name: "Necrozma-Ultra",
baseSpecies: "Necrozma",
forme: "Ultra",
types: ["Psychic", "Dragon"],
gender: "N",
baseStats: {hp: 97, atk: 167, def: 97, spa: 167, spd: 97, spe: 129},
abilities: {0: "Neuroforce"},
heightm: 7.5,
weightkg: 230,
color: "Blue",
eggGroups: ["Undiscovered"],
requiredItem: "Ultranecrozium Z",
battleOnly: ["Necrozma-Dawn-Wings", "Necrozma-Dusk-Mane"],
},
magearna: {
num: 801,
name: "Magearna",
types: ["Steel", "Fairy"],
gender: "N",
baseStats: {hp: 80, atk: 95, def: 115, spa: 130, spd: 115, spe: 65},
abilities: {0: "Soul-Heart"},
heightm: 1,
weightkg: 80.5,
color: "Gray",
eggGroups: ["Undiscovered"],
otherFormes: ["magearnaoriginal"],
},
magearnaoriginal: {
num: 801,
name: "Magearna-Original",
baseSpecies: "Magearna",
forme: "Original",
types: ["Steel", "Fairy"],
gender: "N",
baseStats: {hp: 80, atk: 95, def: 115, spa: 130, spd: 115, spe: 65},
abilities: {0: "Soul-Heart"},
heightm: 1,
weightkg: 80.5,
color: "Red",
eggGroups: ["Undiscovered"],
},
marshadow: {
num: 802,
name: "Marshadow",
types: ["Fighting", "Ghost"],
gender: "N",
baseStats: {hp: 90, atk: 125, def: 80, spa: 90, spd: 90, spe: 125},
abilities: {0: "Technician"},
heightm: 0.7,
weightkg: 22.2,
color: "Gray",
eggGroups: ["Undiscovered"],
},
poipole: {
num: 803,
name: "Poipole",
types: ["Poison"],
gender: "N",
baseStats: {hp: 67, atk: 73, def: 67, spa: 73, spd: 67, spe: 73},
abilities: {0: "Beast Boost"},
heightm: 0.6,
weightkg: 1.8,
color: "Purple",
evos: ["naganadel"],
eggGroups: ["Undiscovered"],
},
naganadel: {
num: 804,
name: "Naganadel",
types: ["Poison", "Dragon"],
gender: "N",
baseStats: {hp: 73, atk: 73, def: 73, spa: 127, spd: 73, spe: 121},
abilities: {0: "Beast Boost"},
heightm: 3.6,
weightkg: 150,
color: "Purple",
prevo: "poipole",
evoType: "levelMove",
evoMove: "Dragon Pulse",
eggGroups: ["Undiscovered"],
},
stakataka: {
num: 805,
name: "Stakataka",
types: ["Rock", "Steel"],
gender: "N",
baseStats: {hp: 61, atk: 131, def: 211, spa: 53, spd: 101, spe: 13},
abilities: {0: "Beast Boost"},
heightm: 5.5,
weightkg: 820,
color: "Gray",
eggGroups: ["Undiscovered"],
},
blacephalon: {
num: 806,
name: "Blacephalon",
types: ["Fire", "Ghost"],
gender: "N",
baseStats: {hp: 53, atk: 127, def: 53, spa: 151, spd: 79, spe: 107},
abilities: {0: "Beast Boost"},
heightm: 1.8,
weightkg: 13,
color: "White",
eggGroups: ["Undiscovered"],
},
zeraora: {
num: 807,
name: "Zeraora",
types: ["Electric"],
gender: "N",
baseStats: {hp: 88, atk: 112, def: 75, spa: 102, spd: 80, spe: 143},
abilities: {0: "Volt Absorb"},
heightm: 1.5,
weightkg: 44.5,
color: "Yellow",
eggGroups: ["Undiscovered"],
},
meltan: {
num: 808,
name: "Meltan",
types: ["Steel"],
gender: "N",
baseStats: {hp: 46, atk: 65, def: 65, spa: 55, spd: 35, spe: 34},
abilities: {0: "Magnet Pull"},
heightm: 0.2,
weightkg: 8,
color: "Gray",
eggGroups: ["Undiscovered"],
},
melmetal: {
num: 809,
name: "Melmetal",
types: ["Steel"],
gender: "N",
baseStats: {hp: 135, atk: 143, def: 143, spa: 80, spd: 65, spe: 34},
abilities: {0: "Iron Fist"},
heightm: 2.5,
weightkg: 800,
color: "Gray",
eggGroups: ["Undiscovered"],
otherFormes: ["melmetalgmax"],
},
melmetalgmax: {
num: 809,
name: "Melmetal-Gmax",
baseSpecies: "Melmetal",
forme: "Gmax",
types: ["Steel"],
gender: "N",
baseStats: {hp: 135, atk: 143, def: 143, spa: 80, spd: 65, spe: 34},
abilities: {0: "Iron Fist"},
heightm: 25,
weightkg: 0,
color: "Gray",
eggGroups: ["Undiscovered"],
isGigantamax: "G-Max Meltdown",
},
grookey: {
num: 810,
name: "Grookey",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 65, def: 50, spa: 40, spd: 40, spe: 65},
abilities: {0: "Overgrow", H: "Grassy Surge"},
heightm: 0.3,
weightkg: 5,
color: "Green",
evos: ["thwackey"],
eggGroups: ["Field", "Grass"],
},
thwackey: {
num: 811,
name: "Thwackey",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 85, def: 70, spa: 55, spd: 60, spe: 80},
abilities: {0: "Overgrow", H: "Grassy Surge"},
heightm: 0.7,
weightkg: 14,
color: "Green",
prevo: "grookey",
evoLevel: 16,
evos: ["rillaboom"],
eggGroups: ["Field", "Grass"],
},
rillaboom: {
num: 812,
name: "Rillaboom",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 100, atk: 125, def: 90, spa: 60, spd: 70, spe: 85},
abilities: {0: "Overgrow", H: "Grassy Surge"},
heightm: 2.1,
weightkg: 90,
color: "Green",
prevo: "thwackey",
evoLevel: 35,
eggGroups: ["Field", "Grass"],
},
scorbunny: {
num: 813,
name: "Scorbunny",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 71, def: 40, spa: 40, spd: 40, spe: 69},
abilities: {0: "Blaze", H: "Libero"},
heightm: 0.3,
weightkg: 4.5,
color: "White",
evos: ["raboot"],
eggGroups: ["Field", "Human-Like"],
},
raboot: {
num: 814,
name: "Raboot",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 86, def: 60, spa: 55, spd: 60, spe: 94},
abilities: {0: "Blaze", H: "Libero"},
heightm: 0.6,
weightkg: 9,
color: "Gray",
prevo: "scorbunny",
evoLevel: 16,
evos: ["cinderace"],
eggGroups: ["Field", "Human-Like"],
},
cinderace: {
num: 815,
name: "Cinderace",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 80, atk: 116, def: 75, spa: 65, spd: 75, spe: 119},
abilities: {0: "Blaze", H: "Libero"},
heightm: 1.4,
weightkg: 33,
color: "White",
evoLevel: 35,
prevo: "raboot",
eggGroups: ["Field", "Human-Like"],
},
sobble: {
num: 816,
name: "Sobble",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 50, atk: 40, def: 40, spa: 70, spd: 40, spe: 70},
abilities: {0: "Torrent", H: "Sniper"},
heightm: 0.3,
weightkg: 4,
color: "Blue",
evos: ["drizzile"],
eggGroups: ["Water 1", "Field"],
},
drizzile: {
num: 817,
name: "Drizzile",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 65, atk: 60, def: 55, spa: 95, spd: 55, spe: 90},
abilities: {0: "Torrent", H: "Sniper"},
heightm: 0.7,
weightkg: 11.5,
color: "Blue",
prevo: "sobble",
evoLevel: 16,
evos: ["inteleon"],
eggGroups: ["Water 1", "Field"],
},
inteleon: {
num: 818,
name: "Inteleon",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 70, atk: 85, def: 65, spa: 125, spd: 65, spe: 120},
abilities: {0: "Torrent", H: "Sniper"},
heightm: 1.9,
weightkg: 45.2,
color: "Blue",
prevo: "drizzile",
evoLevel: 35,
eggGroups: ["Water 1", "Field"],
},
skwovet: {
num: 819,
name: "Skwovet",
types: ["Normal"],
baseStats: {hp: 70, atk: 55, def: 55, spa: 35, spd: 35, spe: 25},
abilities: {0: "Cheek Pouch", H: "Gluttony"},
heightm: 0.3,
weightkg: 2.5,
color: "Brown",
evos: ["greedent"],
eggGroups: ["Field"],
},
greedent: {
num: 820,
name: "Greedent",
types: ["Normal"],
baseStats: {hp: 120, atk: 95, def: 95, spa: 55, spd: 75, spe: 20},
abilities: {0: "Cheek Pouch", H: "Gluttony"},
heightm: 0.6,
weightkg: 6,
color: "Brown",
prevo: "skwovet",
evoLevel: 24,
eggGroups: ["Field"],
},
rookidee: {
num: 821,
name: "Rookidee",
types: ["Flying"],
baseStats: {hp: 38, atk: 47, def: 35, spa: 33, spd: 35, spe: 57},
abilities: {0: "Keen Eye", 1: "Unnerve", H: "Big Pecks"},
heightm: 0.2,
weightkg: 1.8,
color: "Blue",
evos: ["corvisquire"],
eggGroups: ["Flying"],
},
corvisquire: {
num: 822,
name: "Corvisquire",
types: ["Flying"],
baseStats: {hp: 68, atk: 67, def: 55, spa: 43, spd: 55, spe: 77},
abilities: {0: "Keen Eye", 1: "Unnerve", H: "Big Pecks"},
heightm: 0.8,
weightkg: 16,
color: "Blue",
prevo: "rookidee",
evoLevel: 18,
evos: ["corviknight"],
eggGroups: ["Flying"],
},
corviknight: {
num: 823,
name: "Corviknight",
types: ["Flying", "Steel"],
baseStats: {hp: 98, atk: 87, def: 105, spa: 53, spd: 85, spe: 67},
abilities: {0: "Pressure", 1: "Unnerve", H: "Mirror Armor"},
heightm: 2.2,
weightkg: 75,
color: "Purple",
prevo: "corvisquire",
evoLevel: 38,
eggGroups: ["Flying"],
otherFormes: ["corviknightgmax"],
},
corviknightgmax: {
num: 823,
name: "Corviknight-Gmax",
baseSpecies: "Corviknight",
forme: "Gmax",
types: ["Flying", "Steel"],
baseStats: {hp: 98, atk: 87, def: 105, spa: 53, spd: 85, spe: 67},
abilities: {0: "Pressure", 1: "Unnerve", H: "Mirror Armor"},
heightm: 14,
weightkg: 0,
color: "Purple",
eggGroups: ["Flying"],
isGigantamax: "G-Max Wind Rage",
},
blipbug: {
num: 824,
name: "Blipbug",
types: ["Bug"],
baseStats: {hp: 25, atk: 20, def: 20, spa: 25, spd: 45, spe: 45},
abilities: {0: "Swarm", 1: "Compound Eyes", H: "Telepathy"},
heightm: 0.4,
weightkg: 8,
color: "Blue",
evos: ["dottler"],
eggGroups: ["Bug"],
},
dottler: {
num: 825,
name: "Dottler",
types: ["Bug", "Psychic"],
baseStats: {hp: 50, atk: 35, def: 80, spa: 50, spd: 90, spe: 30},
abilities: {0: "Swarm", 1: "Compound Eyes", H: "Telepathy"},
heightm: 0.4,
weightkg: 19.5,
color: "Yellow",
prevo: "blipbug",
evoLevel: 10,
evos: ["orbeetle"],
eggGroups: ["Bug"],
},
orbeetle: {
num: 826,
name: "Orbeetle",
types: ["Bug", "Psychic"],
baseStats: {hp: 60, atk: 45, def: 110, spa: 80, spd: 120, spe: 90},
abilities: {0: "Swarm", 1: "Frisk", H: "Telepathy"},
heightm: 0.4,
weightkg: 40.8,
color: "Red",
prevo: "dottler",
evoLevel: 30,
eggGroups: ["Bug"],
otherFormes: ["orbeetlegmax"],
},
orbeetlegmax: {
num: 826,
name: "Orbeetle-Gmax",
baseSpecies: "Orbeetle",
forme: "Gmax",
types: ["Bug", "Psychic"],
baseStats: {hp: 60, atk: 45, def: 110, spa: 80, spd: 120, spe: 90},
abilities: {0: "Swarm", 1: "Frisk", H: "Telepathy"},
heightm: 14,
weightkg: 0,
color: "Red",
eggGroups: ["Bug"],
isGigantamax: "G-Max Gravitas",
},
nickit: {
num: 827,
name: "Nickit",
types: ["Dark"],
baseStats: {hp: 40, atk: 28, def: 28, spa: 47, spd: 52, spe: 50},
abilities: {0: "Run Away", 1: "Unburden", H: "Stakeout"},
heightm: 0.6,
weightkg: 8.9,
color: "Brown",
evos: ["thievul"],
eggGroups: ["Field"],
},
thievul: {
num: 828,
name: "Thievul",
types: ["Dark"],
baseStats: {hp: 70, atk: 58, def: 58, spa: 87, spd: 92, spe: 90},
abilities: {0: "Run Away", 1: "Unburden", H: "Stakeout"},
heightm: 1.2,
weightkg: 19.9,
color: "Brown",
prevo: "nickit",
evoLevel: 18,
eggGroups: ["Field"],
},
gossifleur: {
num: 829,
name: "Gossifleur",
types: ["Grass"],
baseStats: {hp: 40, atk: 40, def: 60, spa: 40, spd: 60, spe: 10},
abilities: {0: "Cotton Down", 1: "Regenerator", H: "Effect Spore"},
heightm: 0.4,
weightkg: 2.2,
color: "Green",
evos: ["eldegoss"],
eggGroups: ["Grass"],
},
eldegoss: {
num: 830,
name: "Eldegoss",
types: ["Grass"],
baseStats: {hp: 60, atk: 50, def: 90, spa: 80, spd: 120, spe: 60},
abilities: {0: "Cotton Down", 1: "Regenerator", H: "Effect Spore"},
heightm: 0.5,
weightkg: 2.5,
color: "Green",
prevo: "gossifleur",
evoLevel: 20,
eggGroups: ["Grass"],
},
wooloo: {
num: 831,
name: "Wooloo",
types: ["Normal"],
baseStats: {hp: 42, atk: 40, def: 55, spa: 40, spd: 45, spe: 48},
abilities: {0: "Fluffy", 1: "Run Away", H: "Bulletproof"},
heightm: 0.6,
weightkg: 6,
color: "White",
evos: ["dubwool"],
eggGroups: ["Field"],
},
dubwool: {
num: 832,
name: "Dubwool",
types: ["Normal"],
baseStats: {hp: 72, atk: 80, def: 100, spa: 60, spd: 90, spe: 88},
abilities: {0: "Fluffy", 1: "Steadfast", H: "Bulletproof"},
heightm: 1.3,
weightkg: 43,
color: "White",
prevo: "wooloo",
evoLevel: 24,
eggGroups: ["Field"],
},
chewtle: {
num: 833,
name: "Chewtle",
types: ["Water"],
baseStats: {hp: 50, atk: 64, def: 50, spa: 38, spd: 38, spe: 44},
abilities: {0: "Strong Jaw", 1: "Shell Armor", H: "Swift Swim"},
heightm: 0.3,
weightkg: 8.5,
color: "Green",
evos: ["drednaw"],
eggGroups: ["Monster", "Water 1"],
},
drednaw: {
num: 834,
name: "Drednaw",
types: ["Water", "Rock"],
baseStats: {hp: 90, atk: 115, def: 90, spa: 48, spd: 68, spe: 74},
abilities: {0: "Strong Jaw", 1: "Shell Armor", H: "Swift Swim"},
heightm: 1,
weightkg: 115.5,
color: "Green",
prevo: "chewtle",
evoLevel: 22,
eggGroups: ["Monster", "Water 1"],
otherFormes: ["drednawgmax"],
},
drednawgmax: {
num: 834,
name: "Drednaw-Gmax",
baseSpecies: "Drednaw",
forme: "Gmax",
types: ["Water", "Rock"],
baseStats: {hp: 90, atk: 115, def: 90, spa: 48, spd: 68, spe: 74},
abilities: {0: "Strong Jaw", 1: "Shell Armor", H: "Swift Swim"},
heightm: 24,
weightkg: 0,
color: "Green",
eggGroups: ["Monster", "Water 1"],
isGigantamax: "G-Max Stonesurge",
},
yamper: {
num: 835,
name: "Yamper",
types: ["Electric"],
baseStats: {hp: 59, atk: 45, def: 50, spa: 40, spd: 50, spe: 26},
abilities: {0: "Ball Fetch", H: "Rattled"},
heightm: 0.3,
weightkg: 13.5,
color: "Yellow",
evos: ["boltund"],
eggGroups: ["Field"],
},
boltund: {
num: 836,
name: "Boltund",
types: ["Electric"],
baseStats: {hp: 69, atk: 90, def: 60, spa: 90, spd: 60, spe: 121},
abilities: {0: "Strong Jaw", H: "Competitive"},
heightm: 1,
weightkg: 34,
color: "Yellow",
prevo: "yamper",
evoLevel: 25,
eggGroups: ["Field"],
},
rolycoly: {
num: 837,
name: "Rolycoly",
types: ["Rock"],
baseStats: {hp: 30, atk: 40, def: 50, spa: 40, spd: 50, spe: 30},
abilities: {0: "Steam Engine", 1: "Heatproof", H: "Flash Fire"},
heightm: 0.3,
weightkg: 12,
color: "Black",
evos: ["carkol"],
eggGroups: ["Mineral"],
},
carkol: {
num: 838,
name: "Carkol",
types: ["Rock", "Fire"],
baseStats: {hp: 80, atk: 60, def: 90, spa: 60, spd: 70, spe: 50},
abilities: {0: "Steam Engine", 1: "Flame Body", H: "Flash Fire"},
heightm: 1.1,
weightkg: 78,
color: "Black",
prevo: "rolycoly",
evoLevel: 18,
evos: ["coalossal"],
eggGroups: ["Mineral"],
},
coalossal: {
num: 839,
name: "Coalossal",
types: ["Rock", "Fire"],
baseStats: {hp: 110, atk: 80, def: 120, spa: 80, spd: 90, spe: 30},
abilities: {0: "Steam Engine", 1: "Flame Body", H: "Flash Fire"},
heightm: 2.8,
weightkg: 310.5,
color: "Black",
prevo: "carkol",
evoLevel: 34,
eggGroups: ["Mineral"],
otherFormes: ["coalossalgmax"],
},
coalossalgmax: {
num: 839,
name: "Coalossal-Gmax",
baseSpecies: "Coalossal",
forme: "Gmax",
types: ["Rock", "Fire"],
baseStats: {hp: 110, atk: 80, def: 120, spa: 80, spd: 90, spe: 30},
abilities: {0: "Steam Engine", 1: "Flame Body", H: "Flash Fire"},
heightm: 42,
weightkg: 0,
color: "Black",
eggGroups: ["Mineral"],
isGigantamax: "G-Max Volcalith",
},
applin: {
num: 840,
name: "Applin",
types: ["Grass", "Dragon"],
baseStats: {hp: 40, atk: 40, def: 80, spa: 40, spd: 40, spe: 20},
abilities: {0: "Ripen", 1: "Gluttony", H: "Bulletproof"},
heightm: 0.2,
weightkg: 0.5,
color: "Green",
evos: ["flapple", "appletun"],
eggGroups: ["Grass", "Dragon"],
},
flapple: {
num: 841,
name: "Flapple",
types: ["Grass", "Dragon"],
baseStats: {hp: 70, atk: 110, def: 80, spa: 95, spd: 60, spe: 70},
abilities: {0: "Ripen", 1: "Gluttony", H: "Hustle"},
heightm: 0.3,
weightkg: 1,
color: "Green",
prevo: "applin",
evoType: "useItem",
evoItem: "Tart Apple",
eggGroups: ["Grass", "Dragon"],
otherFormes: ["flapplegmax"],
},
flapplegmax: {
num: 841,
name: "Flapple-Gmax",
baseSpecies: "Flapple",
forme: "Gmax",
types: ["Grass", "Dragon"],
baseStats: {hp: 70, atk: 110, def: 80, spa: 95, spd: 60, spe: 70},
abilities: {0: "Ripen", 1: "Gluttony", H: "Hustle"},
heightm: 24,
weightkg: 0,
color: "Green",
eggGroups: ["Grass", "Dragon"],
isGigantamax: "G-Max Tartness",
},
appletun: {
num: 842,
name: "Appletun",
types: ["Grass", "Dragon"],
baseStats: {hp: 110, atk: 85, def: 80, spa: 100, spd: 80, spe: 30},
abilities: {0: "Ripen", 1: "Gluttony", H: "Thick Fat"},
heightm: 0.4,
weightkg: 13,
color: "Green",
prevo: "applin",
evoType: "useItem",
evoItem: "Sweet Apple",
eggGroups: ["Grass", "Dragon"],
otherFormes: ["appletungmax"],
},
appletungmax: {
num: 842,
name: "Appletun-Gmax",
baseSpecies: "Appletun",
forme: "Gmax",
types: ["Grass", "Dragon"],
baseStats: {hp: 110, atk: 85, def: 80, spa: 100, spd: 80, spe: 30},
abilities: {0: "Ripen", 1: "Gluttony", H: "Thick Fat"},
heightm: 24,
weightkg: 0,
color: "Green",
eggGroups: ["Grass", "Dragon"],
isGigantamax: "G-Max Sweetness",
},
silicobra: {
num: 843,
name: "Silicobra",
types: ["Ground"],
baseStats: {hp: 52, atk: 57, def: 75, spa: 35, spd: 50, spe: 46},
abilities: {0: "Sand Spit", 1: "Shed Skin", H: "Sand Veil"},
heightm: 2.2,
weightkg: 7.6,
color: "Green",
evos: ["sandaconda"],
eggGroups: ["Field", "Dragon"],
},
sandaconda: {
num: 844,
name: "Sandaconda",
types: ["Ground"],
baseStats: {hp: 72, atk: 107, def: 125, spa: 65, spd: 70, spe: 71},
abilities: {0: "Sand Spit", 1: "Shed Skin", H: "Sand Veil"},
heightm: 3.8,
weightkg: 65.5,
color: "Green",
prevo: "silicobra",
evoLevel: 36,
eggGroups: ["Field", "Dragon"],
otherFormes: ["sandacondagmax"],
},
sandacondagmax: {
num: 844,
name: "Sandaconda-Gmax",
baseSpecies: "Sandaconda",
forme: "Gmax",
types: ["Ground"],
baseStats: {hp: 72, atk: 107, def: 125, spa: 65, spd: 70, spe: 71},
abilities: {0: "Sand Spit", 1: "Shed Skin", H: "Sand Veil"},
heightm: 22,
weightkg: 0,
color: "Green",
eggGroups: ["Field", "Dragon"],
isGigantamax: "G-Max Sandblast",
},
cramorant: {
num: 845,
name: "Cramorant",
types: ["Flying", "Water"],
baseStats: {hp: 70, atk: 85, def: 55, spa: 85, spd: 95, spe: 85},
abilities: {0: "Gulp Missile"},
heightm: 0.8,
weightkg: 18,
color: "Blue",
eggGroups: ["Water 1", "Flying"],
otherFormes: ["cramorantgulping", "cramorantgorging"],
},
cramorantgulping: {
num: 845,
name: "Cramorant-Gulping",
baseSpecies: "Cramorant",
forme: "Gulping",
types: ["Flying", "Water"],
baseStats: {hp: 70, atk: 85, def: 55, spa: 85, spd: 95, spe: 85},
abilities: {0: "Gulp Missile"},
heightm: 0.8,
weightkg: 18,
color: "Blue",
eggGroups: ["Water 1", "Flying"],
requiredAbility: "Gulp Missile",
battleOnly: "Cramorant",
},
cramorantgorging: {
num: 845,
name: "Cramorant-Gorging",
baseSpecies: "Cramorant",
forme: "Gorging",
types: ["Flying", "Water"],
baseStats: {hp: 70, atk: 85, def: 55, spa: 85, spd: 95, spe: 85},
abilities: {0: "Gulp Missile"},
heightm: 0.8,
weightkg: 18,
color: "Blue",
eggGroups: ["Water 1", "Flying"],
requiredAbility: "Gulp Missile",
battleOnly: "Cramorant",
},
arrokuda: {
num: 846,
name: "Arrokuda",
types: ["Water"],
baseStats: {hp: 41, atk: 63, def: 40, spa: 40, spd: 30, spe: 66},
abilities: {0: "Swift Swim", H: "Propeller Tail"},
heightm: 0.5,
weightkg: 1,
color: "Brown",
evos: ["barraskewda"],
eggGroups: ["Water 2"],
},
barraskewda: {
num: 847,
name: "Barraskewda",
types: ["Water"],
baseStats: {hp: 61, atk: 123, def: 60, spa: 60, spd: 50, spe: 136},
abilities: {0: "Swift Swim", H: "Propeller Tail"},
heightm: 1.3,
weightkg: 30,
color: "Brown",
prevo: "arrokuda",
evoLevel: 26,
eggGroups: ["Water 2"],
},
toxel: {
num: 848,
name: "Toxel",
types: ["Electric", "Poison"],
baseStats: {hp: 40, atk: 38, def: 35, spa: 54, spd: 35, spe: 40},
abilities: {0: "Rattled", 1: "Static", H: "Klutz"},
heightm: 0.4,
weightkg: 11,
color: "Purple",
evos: ["toxtricity", "toxtricitylowkey"],
eggGroups: ["Undiscovered"],
},
toxtricity: {
num: 849,
name: "Toxtricity",
baseForme: "Amped",
types: ["Electric", "Poison"],
baseStats: {hp: 75, atk: 98, def: 70, spa: 114, spd: 70, spe: 75},
abilities: {0: "Punk Rock", 1: "Plus", H: "Technician"},
heightm: 1.6,
weightkg: 40,
color: "Purple",
prevo: "toxel",
evoLevel: 30,
eggGroups: ["Human-Like"],
otherFormes: ["toxtricitylowkey", "toxtricitygmax"],
},
toxtricitylowkey: {
num: 849,
name: "Toxtricity-Low-Key",
baseSpecies: "Toxtricity",
forme: "Low-Key",
types: ["Electric", "Poison"],
baseStats: {hp: 75, atk: 98, def: 70, spa: 114, spd: 70, spe: 75},
abilities: {0: "Punk Rock", 1: "Minus", H: "Technician"},
heightm: 1.6,
weightkg: 40,
color: "Purple",
prevo: "toxel",
evoLevel: 30,
eggGroups: ["Human-Like"],
otherFormes: ["toxtricitylowkeygmax"],
},
toxtricitygmax: {
num: 849,
name: "Toxtricity-Gmax",
baseSpecies: "Toxtricity",
forme: "Gmax",
types: ["Electric", "Poison"],
baseStats: {hp: 75, atk: 98, def: 70, spa: 114, spd: 70, spe: 75},
abilities: {0: "Punk Rock", 1: "Plus", H: "Technician"},
heightm: 24,
weightkg: 0,
color: "Purple",
eggGroups: ["Human-Like"],
isGigantamax: "G-Max Stun Shock",
},
toxtricitylowkeygmax: {
num: 849,
name: "Toxtricity-Low-Key-Gmax",
baseSpecies: "Toxtricity",
forme: "Gmax",
types: ["Electric", "Poison"],
baseStats: {hp: 75, atk: 98, def: 70, spa: 114, spd: 70, spe: 75},
abilities: {0: "Punk Rock", 1: "Minus", H: "Technician"},
heightm: 24,
weightkg: 0,
color: "Purple",
eggGroups: ["Human-Like"],
isGigantamax: "G-Max Stun Shock",
battleOnly: "Toxtricity-Low-Key",
},
sizzlipede: {
num: 850,
name: "Sizzlipede",
types: ["Fire", "Bug"],
baseStats: {hp: 50, atk: 65, def: 45, spa: 50, spd: 50, spe: 45},
abilities: {0: "Flash Fire", 1: "White Smoke", H: "Flame Body"},
heightm: 0.7,
weightkg: 1,
color: "Red",
evos: ["centiskorch"],
eggGroups: ["Bug"],
},
centiskorch: {
num: 851,
name: "Centiskorch",
types: ["Fire", "Bug"],
baseStats: {hp: 100, atk: 115, def: 65, spa: 90, spd: 90, spe: 65},
abilities: {0: "Flash Fire", 1: "White Smoke", H: "Flame Body"},
heightm: 3,
weightkg: 120,
color: "Red",
prevo: "sizzlipede",
evoLevel: 28,
eggGroups: ["Bug"],
otherFormes: ["centiskorchgmax"],
},
centiskorchgmax: {
num: 851,
name: "Centiskorch-Gmax",
baseSpecies: "Centiskorch",
forme: "Gmax",
types: ["Fire", "Bug"],
baseStats: {hp: 100, atk: 115, def: 65, spa: 90, spd: 90, spe: 65},
abilities: {0: "Flash Fire", 1: "White Smoke", H: "Flame Body"},
heightm: 75,
weightkg: 0,
color: "Red",
eggGroups: ["Bug"],
isGigantamax: "G-Max Centiferno",
},
clobbopus: {
num: 852,
name: "Clobbopus",
types: ["Fighting"],
baseStats: {hp: 50, atk: 68, def: 60, spa: 50, spd: 50, spe: 32},
abilities: {0: "Limber", H: "Technician"},
heightm: 0.6,
weightkg: 4,
color: "Brown",
evos: ["grapploct"],
eggGroups: ["Water 1", "Human-Like"],
},
grapploct: {
num: 853,
name: "Grapploct",
types: ["Fighting"],
baseStats: {hp: 80, atk: 118, def: 90, spa: 70, spd: 80, spe: 42},
abilities: {0: "Limber", H: "Technician"},
heightm: 1.6,
weightkg: 39,
color: "Blue",
prevo: "clobbopus",
evoType: "levelMove",
evoMove: "Taunt",
eggGroups: ["Water 1", "Human-Like"],
},
sinistea: {
num: 854,
name: "Sinistea",
baseForme: "Phony",
types: ["Ghost"],
gender: "N",
baseStats: {hp: 40, atk: 45, def: 45, spa: 74, spd: 54, spe: 50},
abilities: {0: "Weak Armor", H: "Cursed Body"},
heightm: 0.1,
weightkg: 0.2,
color: "Purple",
evos: ["polteageist"],
eggGroups: ["Mineral", "Amorphous"],
otherFormes: ["sinisteaantique"],
},
sinisteaantique: {
num: 854,
name: "Sinistea-Antique",
baseSpecies: "Sinistea",
forme: "Antique",
types: ["Ghost"],
gender: "N",
baseStats: {hp: 40, atk: 45, def: 45, spa: 74, spd: 54, spe: 50},
abilities: {0: "Weak Armor", H: "Cursed Body"},
heightm: 0.1,
weightkg: 0.2,
color: "Purple",
evos: ["polteageistantique"],
eggGroups: ["Undiscovered"],
},
polteageist: {
num: 855,
name: "Polteageist",
baseForme: "Phony",
types: ["Ghost"],
gender: "N",
baseStats: {hp: 60, atk: 65, def: 65, spa: 134, spd: 114, spe: 70},
abilities: {0: "Weak Armor", H: "Cursed Body"},
heightm: 0.2,
weightkg: 0.4,
color: "Purple",
prevo: "sinistea",
evoType: "useItem",
evoItem: "Cracked Pot",
eggGroups: ["Mineral", "Amorphous"],
otherFormes: ["polteageistantique"],
},
polteageistantique: {
num: 855,
name: "Polteageist-Antique",
baseSpecies: "Polteageist",
forme: "Antique",
types: ["Ghost"],
gender: "N",
baseStats: {hp: 60, atk: 65, def: 65, spa: 134, spd: 114, spe: 70},
abilities: {0: "Weak Armor", H: "Cursed Body"},
heightm: 0.2,
weightkg: 0.4,
color: "Purple",
prevo: "sinisteaantique",
evoType: "useItem",
evoItem: "Chipped Pot",
eggGroups: ["Undiscovered"],
},
hatenna: {
num: 856,
name: "Hatenna",
types: ["Psychic"],
gender: "F",
baseStats: {hp: 42, atk: 30, def: 45, spa: 56, spd: 53, spe: 39},
abilities: {0: "Healer", 1: "Anticipation", H: "Magic Bounce"},
heightm: 0.4,
weightkg: 3.4,
color: "Pink",
evos: ["hattrem"],
eggGroups: ["Fairy"],
},
hattrem: {
num: 857,
name: "Hattrem",
types: ["Psychic"],
gender: "F",
baseStats: {hp: 57, atk: 40, def: 65, spa: 86, spd: 73, spe: 49},
abilities: {0: "Healer", 1: "Anticipation", H: "Magic Bounce"},
heightm: 0.6,
weightkg: 4.8,
color: "Pink",
prevo: "hatenna",
evoLevel: 32,
evos: ["hatterene"],
eggGroups: ["Fairy"],
},
hatterene: {
num: 858,
name: "Hatterene",
types: ["Psychic", "Fairy"],
gender: "F",
baseStats: {hp: 57, atk: 90, def: 95, spa: 136, spd: 103, spe: 29},
abilities: {0: "Healer", 1: "Anticipation", H: "Magic Bounce"},
heightm: 2.1,
weightkg: 5.1,
color: "Pink",
prevo: "hattrem",
evoLevel: 42,
eggGroups: ["Fairy"],
otherFormes: ["hatterenegmax"],
},
hatterenegmax: {
num: 858,
name: "Hatterene-Gmax",
baseSpecies: "Hatterene",
forme: "Gmax",
types: ["Psychic", "Fairy"],
gender: "F",
baseStats: {hp: 57, atk: 90, def: 95, spa: 136, spd: 103, spe: 29},
abilities: {0: "Healer", 1: "Anticipation", H: "Magic Bounce"},
heightm: 26,
weightkg: 0,
color: "Pink",
eggGroups: ["Fairy"],
isGigantamax: "G-Max Smite",
},
impidimp: {
num: 859,
name: "Impidimp",
types: ["Dark", "Fairy"],
gender: "M",
baseStats: {hp: 45, atk: 45, def: 30, spa: 55, spd: 40, spe: 50},
abilities: {0: "Prankster", 1: "Frisk", H: "Pickpocket"},
heightm: 0.4,
weightkg: 5.5,
color: "Pink",
evos: ["morgrem"],
eggGroups: ["Fairy", "Human-Like"],
},
morgrem: {
num: 860,
name: "Morgrem",
types: ["Dark", "Fairy"],
gender: "M",
baseStats: {hp: 65, atk: 60, def: 45, spa: 75, spd: 55, spe: 70},
abilities: {0: "Prankster", 1: "Frisk", H: "Pickpocket"},
heightm: 0.8,
weightkg: 12.5,
color: "Pink",
prevo: "impidimp",
evoLevel: 32,
evos: ["grimmsnarl"],
eggGroups: ["Fairy", "Human-Like"],
},
grimmsnarl: {
num: 861,
name: "Grimmsnarl",
types: ["Dark", "Fairy"],
gender: "M",
baseStats: {hp: 95, atk: 120, def: 65, spa: 95, spd: 75, spe: 60},
abilities: {0: "Prankster", 1: "Frisk", H: "Pickpocket"},
heightm: 1.5,
weightkg: 61,
color: "Purple",
prevo: "morgrem",
evoLevel: 42,
eggGroups: ["Fairy", "Human-Like"],
otherFormes: ["grimmsnarlgmax"],
},
grimmsnarlgmax: {
num: 861,
name: "Grimmsnarl-Gmax",
baseSpecies: "Grimmsnarl",
forme: "Gmax",
types: ["Dark", "Fairy"],
gender: "M",
baseStats: {hp: 95, atk: 120, def: 65, spa: 95, spd: 75, spe: 60},
abilities: {0: "Prankster", 1: "Frisk", H: "Pickpocket"},
heightm: 32,
weightkg: 0,
color: "Purple",
eggGroups: ["Fairy", "Human-Like"],
isGigantamax: "G-Max Snooze",
},
obstagoon: {
num: 862,
name: "Obstagoon",
types: ["Dark", "Normal"],
baseStats: {hp: 93, atk: 90, def: 101, spa: 60, spd: 81, spe: 95},
abilities: {0: "Reckless", 1: "Guts", H: "Defiant"},
heightm: 1.6,
weightkg: 46,
color: "Gray",
prevo: "linoonegalar",
evoLevel: 35,
evoCondition: "at night",
eggGroups: ["Field"],
},
perrserker: {
num: 863,
name: "Perrserker",
types: ["Steel"],
baseStats: {hp: 70, atk: 110, def: 100, spa: 50, spd: 60, spe: 50},
abilities: {0: "Battle Armor", 1: "Tough Claws", H: "Steely Spirit"},
heightm: 0.8,
weightkg: 28,
color: "Brown",
prevo: "meowthgalar",
evoLevel: 28,
eggGroups: ["Field"],
},
cursola: {
num: 864,
name: "Cursola",
types: ["Ghost"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 60, atk: 95, def: 50, spa: 145, spd: 130, spe: 30},
abilities: {0: "Weak Armor", H: "Perish Body"},
heightm: 1,
weightkg: 0.4,
color: "White",
prevo: "corsolagalar",
evoLevel: 38,
eggGroups: ["Water 1", "Water 3"],
},
sirfetchd: {
num: 865,
name: "Sirfetch'd",
types: ["Fighting"],
baseStats: {hp: 62, atk: 135, def: 95, spa: 68, spd: 82, spe: 65},
abilities: {0: "Steadfast", H: "Scrappy"},
heightm: 0.8,
weightkg: 117,
color: "White",
prevo: "farfetchdgalar",
evoType: "other",
evoCondition: "Land 3 critical hits in 1 battle",
eggGroups: ["Flying", "Field"],
},
mrrime: {
num: 866,
name: "Mr. Rime",
types: ["Ice", "Psychic"],
baseStats: {hp: 80, atk: 85, def: 75, spa: 110, spd: 100, spe: 70},
abilities: {0: "Tangled Feet", 1: "Screen Cleaner", H: "Ice Body"},
heightm: 1.5,
weightkg: 58.2,
color: "Purple",
prevo: "mrmimegalar",
evoLevel: 42,
eggGroups: ["Human-Like"],
},
runerigus: {
num: 867,
name: "Runerigus",
types: ["Ground", "Ghost"],
baseStats: {hp: 58, atk: 95, def: 145, spa: 50, spd: 105, spe: 30},
abilities: {0: "Wandering Spirit"},
heightm: 1.6,
weightkg: 66.6,
color: "Gray",
prevo: "yamaskgalar",
evoType: "other",
evoCondition: "Have 49+ HP lost and walk under stone sculpture in Dusty Bowl",
eggGroups: ["Mineral", "Amorphous"],
},
milcery: {
num: 868,
name: "Milcery",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 45, atk: 40, def: 40, spa: 50, spd: 61, spe: 34},
abilities: {0: "Sweet Veil", H: "Aroma Veil"},
heightm: 0.2,
weightkg: 0.3,
color: "White",
evos: ["alcremie"],
eggGroups: ["Fairy", "Amorphous"],
},
alcremie: {
num: 869,
name: "Alcremie",
baseForme: "Vanilla Cream",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 65, atk: 60, def: 75, spa: 110, spd: 121, spe: 64},
abilities: {0: "Sweet Veil", H: "Aroma Veil"},
heightm: 0.3,
weightkg: 0.5,
color: "White",
prevo: "milcery",
evoType: "other",
evoCondition: "spin while holding a Sweet",
eggGroups: ["Fairy", "Amorphous"],
otherFormes: ["alcremiegmax"],
cosmeticFormes: ["alcremierubycream", "alcremiematchacream", "alcremiemintcream", "alcremielemoncream", "alcremiesaltedcream", "alcremierubyswirl", "alcremiecaramelswirl", "alcremierainbowswirl"],
},
alcremiegmax: {
num: 869,
name: "Alcremie-Gmax",
baseSpecies: "Alcremie",
forme: "Gmax",
types: ["Fairy"],
gender: "F",
baseStats: {hp: 65, atk: 60, def: 75, spa: 110, spd: 121, spe: 64},
abilities: {0: "Sweet Veil", H: "Aroma Veil"},
heightm: 30,
weightkg: 0,
color: "White",
eggGroups: ["Fairy", "Amorphous"],
isGigantamax: "G-Max Finale",
},
falinks: {
num: 870,
name: "Falinks",
types: ["Fighting"],
gender: "N",
baseStats: {hp: 65, atk: 100, def: 100, spa: 70, spd: 60, spe: 75},
abilities: {0: "Battle Armor", H: "Defiant"},
heightm: 3,
weightkg: 62,
color: "Yellow",
eggGroups: ["Fairy", "Mineral"],
},
pincurchin: {
num: 871,
name: "Pincurchin",
types: ["Electric"],
baseStats: {hp: 48, atk: 101, def: 95, spa: 91, spd: 85, spe: 15},
abilities: {0: "Lightning Rod", H: "Electric Surge"},
heightm: 0.3,
weightkg: 1,
color: "Purple",
eggGroups: ["Water 1", "Amorphous"],
},
snom: {
num: 872,
name: "Snom",
types: ["Ice", "Bug"],
baseStats: {hp: 30, atk: 25, def: 35, spa: 45, spd: 30, spe: 20},
abilities: {0: "Shield Dust", H: "Ice Scales"},
heightm: 0.3,
weightkg: 3.8,
color: "White",
evos: ["frosmoth"],
eggGroups: ["Bug"],
},
frosmoth: {
num: 873,
name: "Frosmoth",
types: ["Ice", "Bug"],
baseStats: {hp: 70, atk: 65, def: 60, spa: 125, spd: 90, spe: 65},
abilities: {0: "Shield Dust", H: "Ice Scales"},
heightm: 1.3,
weightkg: 42,
color: "White",
prevo: "snom",
evoType: "levelFriendship",
evoCondition: "at night",
eggGroups: ["Bug"],
},
stonjourner: {
num: 874,
name: "Stonjourner",
types: ["Rock"],
baseStats: {hp: 100, atk: 125, def: 135, spa: 20, spd: 20, spe: 70},
abilities: {0: "Power Spot"},
heightm: 2.5,
weightkg: 520,
color: "Gray",
eggGroups: ["Mineral"],
},
eiscue: {
num: 875,
name: "Eiscue",
types: ["Ice"],
baseStats: {hp: 75, atk: 80, def: 110, spa: 65, spd: 90, spe: 50},
abilities: {0: "Ice Face"},
heightm: 1.4,
weightkg: 89,
color: "Blue",
eggGroups: ["Water 1", "Field"],
otherFormes: ["eiscuenoice"],
},
eiscuenoice: {
num: 875,
name: "Eiscue-Noice",
baseSpecies: "Eiscue",
forme: "Noice",
types: ["Ice"],
baseStats: {hp: 75, atk: 80, def: 70, spa: 65, spd: 50, spe: 130},
abilities: {0: "Ice Face"},
heightm: 1.4,
weightkg: 89,
color: "Blue",
eggGroups: ["Water 1", "Field"],
requiredAbility: "Ice Face",
battleOnly: "Eiscue",
},
indeedee: {
num: 876,
name: "Indeedee",
baseForme: "M",
types: ["Psychic", "Normal"],
gender: "M",
baseStats: {hp: 60, atk: 65, def: 55, spa: 105, spd: 95, spe: 95},
abilities: {0: "Inner Focus", 1: "Synchronize", H: "Psychic Surge"},
heightm: 0.9,
weightkg: 28,
color: "Purple",
eggGroups: ["Fairy"],
otherFormes: ["indeedeef"],
},
indeedeef: {
num: 876,
name: "Indeedee-F",
baseSpecies: "Indeedee",
forme: "F",
types: ["Psychic", "Normal"],
gender: "F",
baseStats: {hp: 70, atk: 55, def: 65, spa: 95, spd: 105, spe: 85},
abilities: {0: "Own Tempo", 1: "Synchronize", H: "Psychic Surge"},
heightm: 0.9,
weightkg: 28,
color: "Purple",
eggGroups: ["Fairy"],
},
morpeko: {
num: 877,
name: "Morpeko",
types: ["Electric", "Dark"],
baseStats: {hp: 58, atk: 95, def: 58, spa: 70, spd: 58, spe: 97},
abilities: {0: "Hunger Switch"},
heightm: 0.3,
weightkg: 3,
color: "Yellow",
eggGroups: ["Field", "Fairy"],
otherFormes: ["morpekohangry"],
},
morpekohangry: {
num: 877,
name: "Morpeko-Hangry",
baseSpecies: "Morpeko",
forme: "Hangry",
types: ["Electric", "Dark"],
baseStats: {hp: 58, atk: 95, def: 58, spa: 70, spd: 58, spe: 97},
abilities: {0: "Hunger Switch"},
heightm: 0.3,
weightkg: 3,
color: "Yellow",
eggGroups: ["Field", "Fairy"],
requiredAbility: "Hunger Switch",
battleOnly: "Morpeko",
},
cufant: {
num: 878,
name: "Cufant",
types: ["Steel"],
baseStats: {hp: 72, atk: 80, def: 49, spa: 40, spd: 49, spe: 40},
abilities: {0: "Sheer Force", H: "Heavy Metal"},
heightm: 1.2,
weightkg: 100,
color: "Yellow",
evos: ["copperajah"],
eggGroups: ["Field", "Mineral"],
},
copperajah: {
num: 879,
name: "Copperajah",
types: ["Steel"],
baseStats: {hp: 122, atk: 130, def: 69, spa: 80, spd: 69, spe: 30},
abilities: {0: "Sheer Force", H: "Heavy Metal"},
heightm: 3,
weightkg: 650,
color: "Green",
prevo: "cufant",
evoLevel: 34,
eggGroups: ["Field", "Mineral"],
otherFormes: ["copperajahgmax"],
},
copperajahgmax: {
num: 879,
name: "Copperajah-Gmax",
baseSpecies: "Copperajah",
forme: "Gmax",
types: ["Steel"],
baseStats: {hp: 122, atk: 130, def: 69, spa: 80, spd: 69, spe: 30},
abilities: {0: "Sheer Force", H: "Heavy Metal"},
heightm: 23,
weightkg: 0,
color: "Green",
eggGroups: ["Field", "Mineral"],
isGigantamax: "G-Max Steelsurge",
},
dracozolt: {
num: 880,
name: "Dracozolt",
types: ["Electric", "Dragon"],
gender: "N",
baseStats: {hp: 90, atk: 100, def: 90, spa: 80, spd: 70, spe: 75},
abilities: {0: "Volt Absorb", 1: "Hustle", H: "Sand Rush"},
heightm: 1.8,
weightkg: 190,
color: "Green",
eggGroups: ["Undiscovered"],
},
arctozolt: {
num: 881,
name: "Arctozolt",
types: ["Electric", "Ice"],
gender: "N",
baseStats: {hp: 90, atk: 100, def: 90, spa: 90, spd: 80, spe: 55},
abilities: {0: "Volt Absorb", 1: "Static", H: "Slush Rush"},
heightm: 2.3,
weightkg: 150,
color: "Blue",
eggGroups: ["Undiscovered"],
},
dracovish: {
num: 882,
name: "Dracovish",
types: ["Water", "Dragon"],
gender: "N",
baseStats: {hp: 90, atk: 90, def: 100, spa: 70, spd: 80, spe: 75},
abilities: {0: "Water Absorb", 1: "Strong Jaw", H: "Sand Rush"},
heightm: 2.3,
weightkg: 215,
color: "Green",
eggGroups: ["Undiscovered"],
},
arctovish: {
num: 883,
name: "Arctovish",
types: ["Water", "Ice"],
gender: "N",
baseStats: {hp: 90, atk: 90, def: 100, spa: 80, spd: 90, spe: 55},
abilities: {0: "Water Absorb", 1: "Ice Body", H: "Slush Rush"},
heightm: 2,
weightkg: 175,
color: "Blue",
eggGroups: ["Undiscovered"],
},
duraludon: {
num: 884,
name: "Duraludon",
types: ["Steel", "Dragon"],
baseStats: {hp: 70, atk: 95, def: 115, spa: 120, spd: 50, spe: 85},
abilities: {0: "Light Metal", 1: "Heavy Metal", H: "Stalwart"},
heightm: 1.8,
weightkg: 40,
color: "White",
eggGroups: ["Mineral", "Dragon"],
otherFormes: ["duraludongmax"],
},
duraludongmax: {
num: 884,
name: "Duraludon-Gmax",
baseSpecies: "Duraludon",
forme: "Gmax",
types: ["Steel", "Dragon"],
baseStats: {hp: 70, atk: 95, def: 115, spa: 120, spd: 50, spe: 85},
abilities: {0: "Light Metal", 1: "Heavy Metal", H: "Stalwart"},
heightm: 43,
weightkg: 0,
color: "White",
eggGroups: ["Mineral", "Dragon"],
isGigantamax: "G-Max Depletion",
},
dreepy: {
num: 885,
name: "Dreepy",
types: ["Dragon", "Ghost"],
baseStats: {hp: 28, atk: 60, def: 30, spa: 40, spd: 30, spe: 82},
abilities: {0: "Clear Body", 1: "Infiltrator", H: "Cursed Body"},
heightm: 0.5,
weightkg: 2,
color: "Green",
evos: ["drakloak"],
eggGroups: ["Amorphous", "Dragon"],
},
drakloak: {
num: 886,
name: "Drakloak",
types: ["Dragon", "Ghost"],
baseStats: {hp: 68, atk: 80, def: 50, spa: 60, spd: 50, spe: 102},
abilities: {0: "Clear Body", 1: "Infiltrator", H: "Cursed Body"},
heightm: 1.4,
weightkg: 11,
color: "Green",
prevo: "dreepy",
evoLevel: 50,
evos: ["dragapult"],
eggGroups: ["Amorphous", "Dragon"],
},
dragapult: {
num: 887,
name: "Dragapult",
types: ["Dragon", "Ghost"],
baseStats: {hp: 88, atk: 120, def: 75, spa: 100, spd: 75, spe: 142},
abilities: {0: "Clear Body", 1: "Infiltrator", H: "Cursed Body"},
heightm: 3,
weightkg: 50,
color: "Green",
prevo: "drakloak",
evoLevel: 60,
eggGroups: ["Amorphous", "Dragon"],
},
zacian: {
num: 888,
name: "Zacian",
types: ["Fairy"],
gender: "N",
baseStats: {hp: 92, atk: 130, def: 115, spa: 80, spd: 115, spe: 138},
abilities: {0: "Intrepid Sword"},
heightm: 2.8,
weightkg: 110,
color: "Blue",
eggGroups: ["Undiscovered"],
otherFormes: ["zaciancrowned"],
},
zaciancrowned: {
num: 888,
name: "Zacian-Crowned",
baseSpecies: "Zacian",
forme: "Crowned",
types: ["Fairy", "Steel"],
gender: "N",
baseStats: {hp: 92, atk: 170, def: 115, spa: 80, spd: 115, spe: 148},
abilities: {0: "Intrepid Sword"},
heightm: 2.8,
weightkg: 355,
color: "Blue",
eggGroups: ["Undiscovered"],
requiredItem: "Rusted Sword",
inheritsFrom: "zacian",
},
zamazenta: {
num: 889,
name: "Zamazenta",
types: ["Fighting"],
gender: "N",
baseStats: {hp: 92, atk: 130, def: 115, spa: 80, spd: 115, spe: 138},
abilities: {0: "Dauntless Shield"},
heightm: 2.9,
weightkg: 210,
color: "Red",
eggGroups: ["Undiscovered"],
otherFormes: ["zamazentacrowned"],
},
zamazentacrowned: {
num: 889,
name: "Zamazenta-Crowned",
baseSpecies: "Zamazenta",
forme: "Crowned",
types: ["Fighting", "Steel"],
gender: "N",
baseStats: {hp: 92, atk: 130, def: 145, spa: 80, spd: 145, spe: 128},
abilities: {0: "Dauntless Shield"},
heightm: 2.9,
weightkg: 785,
color: "Red",
eggGroups: ["Undiscovered"],
requiredItem: "Rusted Shield",
inheritsFrom: "zamazenta",
},
eternatus: {
num: 890,
name: "Eternatus",
types: ["Poison", "Dragon"],
gender: "N",
baseStats: {hp: 140, atk: 85, def: 95, spa: 145, spd: 95, spe: 130},
abilities: {0: "Pressure"},
heightm: 20,
weightkg: 950,
color: "Purple",
eggGroups: ["Undiscovered"],
},
eternatuseternamax: {
num: 890,
name: "Eternatus-Eternamax",
baseSpecies: "Eternatus",
forme: "Eternamax",
types: ["Poison", "Dragon"],
gender: "N",
baseStats: {hp: 255, atk: 115, def: 250, spa: 125, spd: 250, spe: 130},
abilities: {0: "Pressure"},
heightm: 100,
weightkg: 0,
color: "Purple",
eggGroups: ["Undiscovered"],
},
missingno: {
num: 0,
name: "MissingNo.",
types: ["Bird", "Normal"],
baseStats: {hp: 33, atk: 136, def: 0, spa: 6, spd: 6, spe: 29},
abilities: {0: ""},
heightm: 3,
weightkg: 1590.8,
color: "Gray",
eggGroups: ["Undiscovered"],
},
syclar: {
num: -1,
name: "Syclar",
types: ["Ice", "Bug"],
baseStats: {hp: 40, atk: 76, def: 45, spa: 74, spd: 39, spe: 91},
abilities: {0: "Compound Eyes", 1: "Snow Cloak", H: "Ice Body"},
heightm: 0.2,
weightkg: 4.0,
color: "Blue",
evos: ["syclant"],
eggGroups: ["Bug"],
gen: 4,
},
syclant: {
num: -2,
name: "Syclant",
types: ["Ice", "Bug"],
baseStats: {hp: 70, atk: 116, def: 70, spa: 114, spd: 64, spe: 121},
abilities: {0: "Compound Eyes", 1: "Mountaineer", H: "Ice Body"},
heightm: 1.7,
weightkg: 52,
color: "Blue",
prevo: "syclar",
evoLevel: 30,
eggGroups: ["Bug"],
gen: 4,
},
revenankh: {
num: -3,
name: "Revenankh",
types: ["Ghost", "Fighting"],
baseStats: {hp: 90, atk: 105, def: 90, spa: 65, spd: 110, spe: 65},
abilities: {0: "Shed Skin", 1: "Air Lock", H: "Triage"},
heightm: 1.8,
weightkg: 44,
color: "White",
eggGroups: ["Amorphous", "Human-Like"],
gen: 4,
},
embirch: {
num: -4,
name: "Embirch",
types: ["Fire", "Grass"],
baseStats: {hp: 60, atk: 40, def: 55, spa: 65, spd: 40, spe: 60},
abilities: {0: "Reckless", 1: "Leaf Guard", H: "Chlorophyll"},
heightm: 0.6,
weightkg: 15,
color: "Brown",
evos: ["flarelm"],
eggGroups: ["Monster", "Dragon"],
gen: 4,
},
flarelm: {
num: -5,
name: "Flarelm",
types: ["Fire", "Grass"],
baseStats: {hp: 90, atk: 50, def: 95, spa: 75, spd: 70, spe: 40},
abilities: {0: "Rock Head", 1: "Battle Armor", H: "White Smoke"},
heightm: 1.4,
weightkg: 73,
color: "Brown",
prevo: "embirch",
evoLevel: 24,
evos: ["pyroak"],
eggGroups: ["Monster", "Dragon"],
gen: 4,
},
pyroak: {
num: -6,
name: "Pyroak",
types: ["Fire", "Grass"],
baseStats: {hp: 120, atk: 70, def: 105, spa: 95, spd: 90, spe: 60},
abilities: {0: "Rock Head", 1: "Battle Armor", H: "White Smoke"},
heightm: 2.1,
weightkg: 168,
color: "Brown",
prevo: "flarelm",
evoLevel: 38,
eggGroups: ["Monster", "Dragon"],
gen: 4,
},
breezi: {
num: -7,
name: "Breezi",
types: ["Poison", "Flying"],
baseStats: {hp: 50, atk: 46, def: 69, spa: 60, spd: 50, spe: 75},
abilities: {0: "Unburden", 1: "Own Tempo", H: "Frisk"},
heightm: 0.4,
weightkg: 0.6,
color: "Purple",
evos: ["fidgit"],
eggGroups: ["Field"],
gen: 4,
},
fidgit: {
num: -8,
name: "Fidgit",
types: ["Poison", "Ground"],
baseStats: {hp: 95, atk: 76, def: 109, spa: 90, spd: 80, spe: 105},
abilities: {0: "Persistent", 1: "Vital Spirit", H: "Frisk"},
heightm: 0.9,
weightkg: 53,
color: "Purple",
prevo: "breezi",
evoLevel: 33,
eggGroups: ["Field"],
gen: 4,
},
rebble: {
num: -9,
name: "Rebble",
types: ["Rock"],
gender: "N",
baseStats: {hp: 45, atk: 25, def: 65, spa: 75, spd: 55, spe: 80},
abilities: {0: "Levitate", 1: "Solid Rock", H: "Sniper"},
heightm: 0.3,
weightkg: 7,
color: "Gray",
evos: ["tactite"],
eggGroups: ["Undiscovered"],
gen: 4,
},
tactite: {
num: -10,
name: "Tactite",
types: ["Rock"],
gender: "N",
baseStats: {hp: 70, atk: 40, def: 65, spa: 100, spd: 65, spe: 95},
abilities: {0: "Levitate", 1: "Technician", H: "Sniper"},
heightm: 0.6,
weightkg: 16,
color: "Gray",
prevo: "rebble",
evoLevel: 28,
evos: ["stratagem"],
eggGroups: ["Undiscovered"],
gen: 4,
},
stratagem: {
num: -11,
name: "Stratagem",
types: ["Rock"],
gender: "N",
baseStats: {hp: 90, atk: 60, def: 65, spa: 120, spd: 70, spe: 130},
abilities: {0: "Levitate", 1: "Technician", H: "Sniper"},
heightm: 0.9,
weightkg: 45,
color: "Gray",
prevo: "tactite",
evoType: "trade",
eggGroups: ["Undiscovered"],
gen: 4,
},
privatyke: {
num: -12,
name: "Privatyke",
types: ["Water", "Fighting"],
baseStats: {hp: 65, atk: 75, def: 65, spa: 40, spd: 60, spe: 45},
abilities: {0: "Unaware", H: "Technician"},
heightm: 1,
weightkg: 35,
color: "Green",
evos: ["arghonaut"],
eggGroups: ["Water 1", "Water 3"],
gen: 4,
},
arghonaut: {
num: -13,
name: "Arghonaut",
types: ["Water", "Fighting"],
baseStats: {hp: 105, atk: 110, def: 95, spa: 70, spd: 100, spe: 75},
abilities: {0: "Unaware", H: "Technician"},
heightm: 1.7,
weightkg: 151,
color: "Green",
prevo: "privatyke",
evoLevel: 37,
eggGroups: ["Water 1", "Water 3"],
gen: 4,
},
kitsunoh: {
num: -14,
name: "Kitsunoh",
types: ["Steel", "Ghost"],
baseStats: {hp: 80, atk: 103, def: 85, spa: 55, spd: 80, spe: 110},
abilities: {0: "Frisk", 1: "Limber", H: "Iron Fist"},
heightm: 1.1,
weightkg: 51,
color: "Gray",
eggGroups: ["Field"],
gen: 4,
},
cyclohm: {
num: -15,
name: "Cyclohm",
types: ["Electric", "Dragon"],
baseStats: {hp: 108, atk: 60, def: 118, spa: 112, spd: 70, spe: 80},
abilities: {0: "Shield Dust", 1: "Static", H: "Damp"},
heightm: 1.6,
weightkg: 59,
color: "Yellow",
eggGroups: ["Dragon", "Monster"],
gen: 4,
},
colossoil: {
num: -16,
name: "Colossoil",
types: ["Dark", "Ground"],
baseStats: {hp: 133, atk: 122, def: 72, spa: 71, spd: 72, spe: 95},
abilities: {0: "Rebound", 1: "Guts", H: "Unnerve"},
heightm: 2.6,
weightkg: 683.6,
color: "Brown",
eggGroups: ["Water 2", "Field"],
gen: 4,
},
krilowatt: {
num: -17,
name: "Krilowatt",
types: ["Electric", "Water"],
baseStats: {hp: 151, atk: 84, def: 73, spa: 83, spd: 74, spe: 105},
abilities: {0: "Trace", 1: "Magic Guard", H: "Minus"},
heightm: 0.7,
weightkg: 10.6,
color: "Red",
eggGroups: ["Water 1", "Fairy"],
gen: 4,
},
voodoll: {
num: -18,
name: "Voodoll",
types: ["Normal", "Dark"],
baseStats: {hp: 55, atk: 40, def: 55, spa: 75, spd: 50, spe: 70},
abilities: {0: "Volt Absorb", 1: "Lightning Rod", H: "Cursed Body"},
heightm: 1,
weightkg: 25,
color: "Brown",
evos: ["voodoom"],
eggGroups: ["Human-Like", "Field"],
gen: 4,
},
voodoom: {
num: -19,
name: "Voodoom",
types: ["Fighting", "Dark"],
baseStats: {hp: 90, atk: 85, def: 80, spa: 105, spd: 80, spe: 110},
abilities: {0: "Volt Absorb", 1: "Lightning Rod", H: "Cursed Body"},
heightm: 2,
weightkg: 75.5,
color: "Brown",
prevo: "voodoll",
evoLevel: 32,
eggGroups: ["Human-Like", "Field"],
gen: 4,
},
scratchet: {
num: -20,
name: "Scratchet",
types: ["Normal", "Fighting"],
baseStats: {hp: 55, atk: 85, def: 80, spa: 20, spd: 70, spe: 40},
abilities: {0: "Scrappy", 1: "Prankster", H: "Vital Spirit"},
heightm: 0.5,
weightkg: 20,
color: "Brown",
evos: ["tomohawk"],
eggGroups: ["Field", "Flying"],
gen: 5,
},
tomohawk: {
num: -21,
name: "Tomohawk",
types: ["Flying", "Fighting"],
baseStats: {hp: 105, atk: 60, def: 90, spa: 115, spd: 80, spe: 85},
abilities: {0: "Intimidate", 1: "Prankster", H: "Justified"},
heightm: 1.27,
weightkg: 37.2,
color: "Red",
prevo: "scratchet",
evoLevel: 23,
eggGroups: ["Field", "Flying"],
gen: 5,
},
necturine: {
num: -22,
name: "Necturine",
types: ["Grass", "Ghost"],
gender: "F",
baseStats: {hp: 49, atk: 55, def: 60, spa: 50, spd: 75, spe: 51},
abilities: {0: "Anticipation", H: "Telepathy"},
heightm: 0.3,
weightkg: 1.8,
color: "White",
evos: ["necturna"],
eggGroups: ["Grass", "Field"],
gen: 5,
},
necturna: {
num: -23,
name: "Necturna",
types: ["Grass", "Ghost"],
gender: "F",
baseStats: {hp: 64, atk: 120, def: 100, spa: 85, spd: 120, spe: 58},
abilities: {0: "Forewarn", H: "Telepathy"},
heightm: 1.65,
weightkg: 49.6,
color: "Black",
prevo: "necturine",
evoLevel: 31,
eggGroups: ["Grass", "Field"],
gen: 5,
},
mollux: {
num: -24,
name: "Mollux",
types: ["Fire", "Poison"],
baseStats: {hp: 95, atk: 45, def: 83, spa: 131, spd: 105, spe: 76},
abilities: {0: "Dry Skin", H: "Illuminate"},
heightm: 1.2,
weightkg: 41,
color: "Pink",
eggGroups: ["Fairy", "Field"],
gen: 5,
},
cupra: {
num: -25,
name: "Cupra",
types: ["Bug", "Psychic"],
baseStats: {hp: 50, atk: 60, def: 49, spa: 67, spd: 30, spe: 44},
abilities: {0: "Shield Dust", 1: "Keen Eye", H: "Magic Guard"},
heightm: 0.5,
weightkg: 4.8,
color: "Brown",
evos: ["argalis"],
eggGroups: ["Bug"],
gen: 5,
},
argalis: {
num: -26,
name: "Argalis",
types: ["Bug", "Psychic"],
baseStats: {hp: 60, atk: 90, def: 89, spa: 87, spd: 40, spe: 54},
abilities: {0: "Shed Skin", 1: "Compound Eyes", H: "Overcoat"},
heightm: 1.3,
weightkg: 341.4,
color: "Gray",
prevo: "cupra",
evoLevel: 30,
evos: ["aurumoth"],
eggGroups: ["Bug"],
gen: 5,
},
aurumoth: {
num: -27,
name: "Aurumoth",
types: ["Bug", "Psychic"],
baseStats: {hp: 110, atk: 120, def: 99, spa: 117, spd: 60, spe: 94},
abilities: {0: "Weak Armor", 1: "No Guard", H: "Light Metal"},
heightm: 2.1,
weightkg: 193,
color: "Purple",
prevo: "argalis",
evoLevel: 50,
eggGroups: ["Bug"],
gen: 5,
},
brattler: {
num: -28,
name: "Brattler",
types: ["Dark", "Grass"],
baseStats: {hp: 80, atk: 70, def: 40, spa: 20, spd: 90, spe: 30},
abilities: {0: "Harvest", 1: "Infiltrator", H: "Rattled"},
heightm: 1.8,
weightkg: 11.5,
color: "Brown",
evos: ["malaconda"],
eggGroups: ["Grass", "Dragon"],
gen: 5,
},
malaconda: {
num: -29,
name: "Malaconda",
types: ["Dark", "Grass"],
baseStats: {hp: 115, atk: 100, def: 60, spa: 40, spd: 130, spe: 55},
abilities: {0: "Harvest", 1: "Infiltrator", H: "Drought"},
heightm: 5.5,
weightkg: 108.8,
color: "Brown",
prevo: "brattler",
evoLevel: 33,
eggGroups: ["Grass", "Dragon"],
gen: 5,
},
cawdet: {
num: -30,
name: "Cawdet",
types: ["Steel", "Flying"],
baseStats: {hp: 35, atk: 72, def: 85, spa: 40, spd: 55, spe: 88},
abilities: {0: "Keen Eye", 1: "Volt Absorb", H: "Big Pecks"},
heightm: 0.76,
weightkg: 25.0,
color: "Gray",
evos: ["cawmodore"],
eggGroups: ["Flying"],
gen: 5,
},
cawmodore: {
num: -31,
name: "Cawmodore",
types: ["Steel", "Flying"],
baseStats: {hp: 50, atk: 92, def: 130, spa: 65, spd: 75, spe: 118},
abilities: {0: "Intimidate", 1: "Volt Absorb", H: "Big Pecks"},
heightm: 1.7,
weightkg: 37,
color: "Black",
prevo: "cawdet",
evoLevel: 33,
eggGroups: ["Flying"],
gen: 5,
},
volkritter: {
num: -32,
name: "Volkritter",
types: ["Water", "Fire"],
baseStats: {hp: 60, atk: 30, def: 50, spa: 80, spd: 60, spe: 70},
abilities: {0: "Anticipation", 1: "Infiltrator", H: "Unnerve"},
heightm: 0.3,
weightkg: 15,
color: "Red",
evos: ["volkraken"],
eggGroups: ["Water 1", "Water 2"],
gen: 5,
},
volkraken: {
num: -33,
name: "Volkraken",
types: ["Water", "Fire"],
baseStats: {hp: 100, atk: 45, def: 80, spa: 135, spd: 100, spe: 95},
abilities: {0: "Analytic", 1: "Infiltrator", H: "Pressure"},
heightm: 1.3,
weightkg: 44.5,
color: "Red",
prevo: "volkritter",
evoLevel: 34,
eggGroups: ["Water 1", "Water 2"],
gen: 5,
},
snugglow: {
num: -34,
name: "Snugglow",
types: ["Electric", "Poison"],
baseStats: {hp: 40, atk: 37, def: 79, spa: 91, spd: 68, spe: 70},
abilities: {0: "Storm Drain", 1: "Vital Spirit", H: "Telepathy"},
heightm: 1.2,
weightkg: 6,
color: "Purple",
evos: ["plasmanta"],
eggGroups: ["Water 1", "Water 2"],
gen: 6,
},
plasmanta: {
num: -35,
name: "Plasmanta",
types: ["Electric", "Poison"],
baseStats: {hp: 60, atk: 57, def: 119, spa: 131, spd: 98, spe: 100},
abilities: {0: "Storm Drain", 1: "Vital Spirit", H: "Telepathy"},
heightm: 7,
weightkg: 460,
color: "Purple",
prevo: "snugglow",
evoLevel: 29,
eggGroups: ["Water 1", "Water 2"],
gen: 6,
},
floatoy: {
num: -36,
name: "Floatoy",
types: ["Water"],
baseStats: {hp: 48, atk: 70, def: 40, spa: 70, spd: 30, spe: 77},
abilities: {0: "Water Veil", 1: "Heatproof", H: "Swift Swim"},
heightm: 0.8,
weightkg: 1.9,
color: "White",
evos: ["caimanoe"],
eggGroups: ["Water 1", "Field"],
gen: 6,
},
caimanoe: {
num: -37,
name: "Caimanoe",
types: ["Water", "Steel"],
baseStats: {hp: 73, atk: 85, def: 65, spa: 80, spd: 40, spe: 87},
abilities: {0: "Water Veil", 1: "Heatproof", H: "Light Metal"},
heightm: 1.4,
weightkg: 72.5,
color: "Gray",
prevo: "floatoy",
evoLevel: 21,
evos: ["naviathan"],
eggGroups: ["Water 1", "Field"],
gen: 6,
},
naviathan: {
num: -38,
name: "Naviathan",
types: ["Water", "Steel"],
baseStats: {hp: 103, atk: 110, def: 90, spa: 95, spd: 65, spe: 97},
abilities: {0: "Guts", 1: "Heatproof", H: "Light Metal"},
heightm: 3,
weightkg: 510,
color: "Gray",
prevo: "caimanoe",
evoLevel: 40,
eggGroups: ["Water 1", "Field"],
gen: 6,
},
crucibelle: {
num: -39,
name: "Crucibelle",
types: ["Rock", "Poison"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 106, atk: 105, def: 65, spa: 75, spd: 85, spe: 104},
abilities: {0: "Regenerator", 1: "Mold Breaker", H: "Liquid Ooze"},
heightm: 1.3,
weightkg: 23.6,
color: "Purple",
eggGroups: ["Amorphous", "Mineral"],
otherFormes: ["crucibellemega"],
gen: 6,
},
crucibellemega: {
num: -39,
name: "Crucibelle-Mega",
baseSpecies: "Crucibelle",
forme: "Mega",
types: ["Rock", "Poison"],
genderRatio: {M: 0.25, F: 0.75},
baseStats: {hp: 106, atk: 135, def: 75, spa: 91, spd: 125, spe: 108},
abilities: {0: "Magic Guard"},
heightm: 1.4,
weightkg: 22.5,
color: "Purple",
eggGroups: ["Amorphous", "Mineral"],
gen: 6,
requiredItem: "Crucibellite",
},
pluffle: {
num: -40,
name: "Pluffle",
types: ["Fairy"],
baseStats: {hp: 74, atk: 38, def: 51, spa: 65, spd: 78, spe: 49},
abilities: {0: "Natural Cure", 1: "Aroma Veil", H: "Friend Guard"},
heightm: 0.8,
weightkg: 1.8,
color: "Pink",
evos: ["kerfluffle"],
eggGroups: ["Fairy", "Human-Like"],
gen: 6,
},
kerfluffle: {
num: -41,
name: "Kerfluffle",
types: ["Fairy", "Fighting"],
baseStats: {hp: 84, atk: 78, def: 86, spa: 115, spd: 88, spe: 119},
abilities: {0: "Natural Cure", 1: "Aroma Veil", H: "Friend Guard"},
heightm: 2.1,
weightkg: 24.2,
color: "Pink",
prevo: "pluffle",
evoType: "levelExtra",
eggGroups: ["Fairy", "Human-Like"],
gen: 6,
},
pajantom: {
num: -42,
name: "Pajantom",
types: ["Dragon", "Ghost"],
baseStats: {hp: 84, atk: 133, def: 71, spa: 51, spd: 111, spe: 101},
abilities: {0: "Comatose"},
heightm: 1.1,
weightkg: 3.1,
color: "Purple",
eggGroups: ["Dragon", "Monster"],
gen: 7,
},
mumbao: {
num: -43,
name: "Mumbao",
types: ["Grass", "Fairy"],
baseStats: {hp: 55, atk: 30, def: 64, spa: 87, spd: 73, spe: 66},
abilities: {0: "Solar Power", 1: "Trace", H: "Overcoat"},
heightm: 1,
weightkg: 250,
color: "Brown",
evos: ["jumbao"],
eggGroups: ["Grass"],
gen: 7,
},
jumbao: {
num: -44,
name: "Jumbao",
types: ["Grass", "Fairy"],
baseStats: {hp: 92, atk: 63, def: 97, spa: 124, spd: 104, spe: 96},
abilities: {0: "Drought", 1: "Trace", H: "Overcoat"},
heightm: 2.4,
weightkg: 600,
color: "Brown",
prevo: "mumbao",
evoType: "levelExtra",
eggGroups: ["Grass"],
gen: 7,
},
fawnifer: {
num: -45,
name: "Fawnifer",
types: ["Grass"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 49, atk: 61, def: 42, spa: 52, spd: 40, spe: 76},
abilities: {0: "Overgrow", H: "Lightning Rod"},
heightm: 0.7,
weightkg: 6.9,
color: "Green",
evos: ["electrelk"],
eggGroups: ["Field"],
gen: 7,
},
electrelk: {
num: -46,
name: "Electrelk",
types: ["Grass", "Electric"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 59, atk: 81, def: 67, spa: 57, spd: 55, spe: 101},
abilities: {0: "Overgrow", H: "Galvanize"},
heightm: 1.4,
weightkg: 41.5,
color: "Green",
prevo: "fawnifer",
evoLevel: 17,
evos: ["caribolt"],
eggGroups: ["Field"],
gen: 7,
},
caribolt: {
num: -47,
name: "Caribolt",
types: ["Grass", "Electric"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 84, atk: 106, def: 82, spa: 77, spd: 80, spe: 106},
abilities: {0: "Overgrow", H: "Galvanize"},
heightm: 2.5,
weightkg: 140,
color: "Green",
prevo: "electrelk",
evoLevel: 34,
eggGroups: ["Field"],
gen: 7,
},
smogecko: {
num: -48,
name: "Smogecko",
types: ["Fire"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 48, atk: 66, def: 43, spa: 58, spd: 48, spe: 56},
abilities: {0: "Blaze", H: "Technician"},
heightm: 0.5,
weightkg: 8.5,
color: "Red",
evos: ["smoguana"],
eggGroups: ["Field", "Monster"],
gen: 7,
},
smoguana: {
num: -49,
name: "Smoguana",
types: ["Fire", "Ground"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 68, atk: 86, def: 53, spa: 68, spd: 68, spe: 76},
abilities: {0: "Blaze", H: "Technician"},
heightm: 1.5,
weightkg: 22.2,
color: "Red",
prevo: "smogecko",
evoLevel: 15,
evos: ["smokomodo"],
eggGroups: ["Field", "Monster"],
gen: 7,
},
smokomodo: {
num: -50,
name: "Smokomodo",
types: ["Fire", "Ground"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 88, atk: 116, def: 67, spa: 88, spd: 78, spe: 97},
abilities: {0: "Blaze", H: "Technician"},
heightm: 2.2,
weightkg: 205,
color: "Red",
prevo: "smoguana",
evoLevel: 36,
eggGroups: ["Field", "Monster"],
gen: 7,
},
swirlpool: {
num: -51,
name: "Swirlpool",
types: ["Water"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 61, atk: 49, def: 70, spa: 50, spd: 62, spe: 28},
abilities: {0: "Torrent", H: "Poison Heal"},
heightm: 0.5,
weightkg: 7,
color: "Blue",
evos: ["coribalis"],
eggGroups: ["Water 1", "Fairy"],
gen: 7,
},
coribalis: {
num: -52,
name: "Coribalis",
types: ["Water", "Bug"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 76, atk: 69, def: 90, spa: 65, spd: 77, spe: 43},
abilities: {0: "Torrent", H: "Poison Heal"},
heightm: 1.4,
weightkg: 24.5,
color: "Blue",
prevo: "swirlpool",
evoLevel: 17,
evos: ["snaelstrom"],
eggGroups: ["Water 1", "Fairy"],
gen: 7,
},
snaelstrom: {
num: -53,
name: "Snaelstrom",
types: ["Water", "Bug"],
genderRatio: {M: 0.875, F: 0.125},
baseStats: {hp: 91, atk: 94, def: 110, spa: 80, spd: 97, spe: 63},
abilities: {0: "Torrent", H: "Poison Heal"},
heightm: 2,
weightkg: 120,
color: "Blue",
prevo: "coribalis",
evoLevel: 34,
eggGroups: ["Water 1", "Fairy"],
gen: 7,
},
equilibra: {
num: -54,
name: "Equilibra",
types: ["Steel", "Ground"],
gender: "N",
baseStats: {hp: 102, atk: 50, def: 96, spa: 133, spd: 118, spe: 60},
abilities: {0: "Levitate", 1: "Bulletproof", H: "Justified"},
heightm: 0.8,
weightkg: 51.3,
color: "Brown",
eggGroups: ["Mineral"],
gen: 7,
},
pokestarsmeargle: {
num: -5000,
name: "Pokestar Smeargle",
types: ["Normal"],
baseStats: {hp: 55, atk: 20, def: 35, spa: 20, spd: 45, spe: 75},
abilities: {0: "Own Tempo", 1: "Technician", H: "Moody"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Field"],
gen: 5,
},
pokestarufo: {
num: -5001,
name: "Pokestar UFO",
types: ["Flying", "Electric"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarufopropu1"],
otherFormes: ["pokestarufo2", "pokestarufopropu2"],
gen: 5,
},
pokestarufo2: {
num: -5001,
name: "Pokestar UFO-2",
baseSpecies: "Pokestar UFO",
forme: "2",
types: ["Psychic", "Electric"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
gen: 5,
},
pokestarbrycenman: {
num: -5002,
name: "Pokestar Brycen-Man",
types: ["Dark", "Psychic"],
gender: "M",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarbrycenmanprop"],
gen: 5,
},
pokestarmt: {
num: -5003,
name: "Pokestar MT",
types: ["Steel"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Analytic"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarmtprop"],
gen: 5,
},
pokestarmt2: {
num: -5004,
name: "Pokestar MT2",
types: ["Steel", "Electric"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Flash Fire"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarmt2prop"],
gen: 5,
},
pokestartransport: {
num: -5005,
name: "Pokestar Transport",
types: ["Steel"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Motor Drive"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestartransportprop"],
gen: 5,
},
pokestargiant: {
num: -5006,
name: "Pokestar Giant",
types: ["Normal"],
gender: "F",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Huge Power"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestargiant2", "pokestargiantpropo1", "pokestargiantpropo2"],
gen: 5,
},
pokestarhumanoid: {
num: -5007,
name: "Pokestar Humanoid",
types: ["Normal"],
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Insomnia"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarhumanoidprop"],
gen: 5,
},
pokestarmonster: {
num: -5008,
name: "Pokestar Monster",
types: ["Dark"],
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Pressure"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarmonsterprop"],
gen: 5,
},
pokestarf00: {
num: -5009,
name: "Pokestar F-00",
types: ["Steel", "Normal"],
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Volt Absorb"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarf00prop"],
gen: 5,
},
pokestarf002: {
num: -5010,
name: "Pokestar F-002",
types: ["Steel", "Normal"],
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Reckless"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarf002prop"],
gen: 5,
},
pokestarspirit: {
num: -5011,
name: "Pokestar Spirit",
types: ["Dark", "Ghost"],
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Wonder Guard"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarspiritprop"],
gen: 5,
},
pokestarblackdoor: {
num: -5012,
name: "Pokestar Black Door",
types: ["Grass"],
gender: "F",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Early Bird"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarblackdoorprop"],
gen: 5,
},
pokestarwhitedoor: {
num: -5013,
name: "Pokestar White Door",
types: ["Fire"],
gender: "M",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Blaze"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarwhitedoorprop"],
gen: 5,
},
pokestarblackbelt: {
num: -5014,
name: "Pokestar Black Belt",
types: ["Fighting"],
gender: "M",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Huge Power"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
cosmeticFormes: ["pokestarblackbeltprop"],
gen: 5,
},
pokestarufopropu2: {
num: -5001,
name: "Pokestar UFO-PropU2",
baseForme: "Pokestar UFO",
forme: "PropU2",
types: ["Psychic", "Electric"],
gender: "N",
baseStats: {hp: 100, atk: 100, def: 100, spa: 100, spd: 100, spe: 100},
abilities: {0: "Levitate"},
heightm: 1.5,
weightkg: 61,
color: "White",
eggGroups: ["Undiscovered"],
gen: 5,
},
};
exports.BattlePokedex = BattlePokedex;