Skip to content

Instantly share code, notes, and snippets.

@lukethacoder
Last active November 23, 2022 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukethacoder/04018d4427daf09a95ea34bde6c6a72a to your computer and use it in GitHub Desktop.
Save lukethacoder/04018d4427daf09a95ea34bde6c6a72a to your computer and use it in GitHub Desktop.
Pokemon Pokedex Test Data - handy for quickly testing searching/filtering/paginating things with "real" data

POKEMON TEST DATA

handy for quickly testing searching/filtering/paginating things with "real" data

const BASE_URL = 'https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/'

export const POKEMON_TYPE_COLORS = {
  normal: '#A8A77A',
  fire: '#EE8130',
  water: '#6390F0',
  electric: '#F7D02C',
  grass: '#7AC74C',
  ice: '#96D9D6',
  fighting: '#C22E28',
  poison: '#A33EA1',
  ground: '#E2BF65',
  flying: '#A98FF3',
  psychic: '#F95587',
  bug: '#A6B91A',
  rock: '#B6A136',
  ghost: '#735797',
  dragon: '#6F35FC',
  dark: '#705746',
  steel: '#B7B7CE',
  fairy: '#D685AD',
}
[
{
"id": 1,
"name": "bulbasaur",
"dex": 153,
"height": 7,
"weight": 69,
"hp": 45,
"attack": 49,
"defense": 49,
"types": ["grass", "poison"],
"images": {
"back_default": "back/1.png",
"front_default": "1.png",
"official": "other/official-artwork/1.png"
}
},
{
"id": 2,
"name": "ivysaur",
"dex": 9,
"height": 10,
"weight": 130,
"hp": 60,
"attack": 62,
"defense": 63,
"types": ["grass", "poison"],
"images": {
"back_default": "back/2.png",
"front_default": "2.png",
"official": "other/official-artwork/2.png"
}
},
{
"id": 3,
"name": "venusaur",
"dex": 154,
"height": 20,
"weight": 1000,
"hp": 80,
"attack": 82,
"defense": 83,
"types": ["grass", "poison"],
"images": {
"back_default": "back/3.png",
"front_default": "3.png",
"official": "other/official-artwork/3.png"
}
},
{
"id": 4,
"name": "charmander",
"dex": 176,
"height": 6,
"weight": 85,
"hp": 39,
"attack": 52,
"defense": 43,
"types": ["fire"],
"images": {
"back_default": "back/4.png",
"front_default": "4.png",
"official": "other/official-artwork/4.png"
}
},
{
"id": 5,
"name": "charmeleon",
"dex": 178,
"height": 11,
"weight": 190,
"hp": 58,
"attack": 64,
"defense": 58,
"types": ["fire"],
"images": {
"back_default": "back/5.png",
"front_default": "5.png",
"official": "other/official-artwork/5.png"
}
},
{
"id": 6,
"name": "charizard",
"dex": 180,
"height": 17,
"weight": 905,
"hp": 78,
"attack": 84,
"defense": 78,
"types": ["fire", "flying"],
"images": {
"back_default": "back/6.png",
"front_default": "6.png",
"official": "other/official-artwork/6.png"
}
},
{
"id": 7,
"name": "squirtle",
"dex": 177,
"height": 5,
"weight": 90,
"hp": 44,
"attack": 48,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/7.png",
"front_default": "7.png",
"official": "other/official-artwork/7.png"
}
},
{
"id": 8,
"name": "wartortle",
"dex": 179,
"height": 10,
"weight": 225,
"hp": 59,
"attack": 63,
"defense": 80,
"types": ["water"],
"images": {
"back_default": "back/8.png",
"front_default": "8.png",
"official": "other/official-artwork/8.png"
}
},
{
"id": 9,
"name": "blastoise",
"dex": 28,
"height": 16,
"weight": 855,
"hp": 79,
"attack": 83,
"defense": 100,
"types": ["water"],
"images": {
"back_default": "back/9.png",
"front_default": "9.png",
"official": "other/official-artwork/9.png"
}
},
{
"id": 10,
"name": "caterpie",
"dex": 123,
"height": 3,
"weight": 29,
"hp": 45,
"attack": 30,
"defense": 35,
"types": ["bug"],
"images": {
"back_default": "back/10.png",
"front_default": "10.png",
"official": "other/official-artwork/10.png"
}
},
{
"id": 11,
"name": "metapod",
"dex": 124,
"height": 7,
"weight": 99,
"hp": 50,
"attack": 20,
"defense": 55,
"types": ["bug"],
"images": {
"back_default": "back/11.png",
"front_default": "11.png",
"official": "other/official-artwork/11.png"
}
},
{
"id": 12,
"name": "butterfree",
"dex": 125,
"height": 11,
"weight": 320,
"hp": 60,
"attack": 45,
"defense": 50,
"types": ["bug", "flying"],
"images": {
"back_default": "back/12.png",
"front_default": "12.png",
"official": "other/official-artwork/12.png"
}
},
{
"id": 13,
"name": "weedle",
"dex": 112,
"height": 3,
"weight": 32,
"hp": 40,
"attack": 35,
"defense": 30,
"types": ["bug", "poison"],
"images": {
"back_default": "back/13.png",
"front_default": "13.png",
"official": "other/official-artwork/13.png"
}
},
{
"id": 14,
"name": "kakuna",
"dex": 113,
"height": 6,
"weight": 100,
"hp": 45,
"attack": 25,
"defense": 50,
"types": ["bug", "poison"],
"images": {
"back_default": "back/14.png",
"front_default": "14.png",
"official": "other/official-artwork/14.png"
}
},
{
"id": 15,
"name": "beedrill",
"dex": 114,
"height": 10,
"weight": 295,
"hp": 65,
"attack": 90,
"defense": 40,
"types": ["bug", "poison"],
"images": {
"back_default": "back/15.png",
"front_default": "15.png",
"official": "other/official-artwork/15.png"
}
},
{
"id": 16,
"name": "pidgey",
"dex": 36,
"height": 3,
"weight": 18,
"hp": 40,
"attack": 45,
"defense": 40,
"types": ["normal", "flying"],
"images": {
"back_default": "back/16.png",
"front_default": "16.png",
"official": "other/official-artwork/16.png"
}
},
{
"id": 17,
"name": "pidgeotto",
"dex": 150,
"height": 11,
"weight": 300,
"hp": 63,
"attack": 60,
"defense": 55,
"types": ["normal", "flying"],
"images": {
"back_default": "back/17.png",
"front_default": "17.png",
"official": "other/official-artwork/17.png"
}
},
{
"id": 18,
"name": "pidgeot",
"dex": 151,
"height": 15,
"weight": 395,
"hp": 83,
"attack": 80,
"defense": 75,
"types": ["normal", "flying"],
"images": {
"back_default": "back/18.png",
"front_default": "18.png",
"official": "other/official-artwork/18.png"
}
},
{
"id": 19,
"name": "rattata",
"dex": 165,
"height": 3,
"weight": 35,
"hp": 30,
"attack": 56,
"defense": 35,
"types": ["normal"],
"images": {
"back_default": "back/19.png",
"front_default": "19.png",
"official": "other/official-artwork/19.png"
}
},
{
"id": 20,
"name": "raticate",
"dex": 166,
"height": 7,
"weight": 185,
"hp": 55,
"attack": 81,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/20.png",
"front_default": "20.png",
"official": "other/official-artwork/20.png"
}
},
{
"id": 21,
"name": "spearow",
"dex": 5,
"height": 3,
"weight": 20,
"hp": 40,
"attack": 60,
"defense": 30,
"types": ["normal", "flying"],
"images": {
"back_default": "back/21.png",
"front_default": "21.png",
"official": "other/official-artwork/21.png"
}
},
{
"id": 22,
"name": "fearow",
"dex": 35,
"height": 12,
"weight": 380,
"hp": 65,
"attack": 90,
"defense": 65,
"types": ["normal", "flying"],
"images": {
"back_default": "back/22.png",
"front_default": "22.png",
"official": "other/official-artwork/22.png"
}
},
{
"id": 23,
"name": "ekans",
"dex": 108,
"height": 20,
"weight": 69,
"hp": 35,
"attack": 60,
"defense": 44,
"types": ["poison"],
"images": {
"back_default": "back/23.png",
"front_default": "23.png",
"official": "other/official-artwork/23.png"
}
},
{
"id": 24,
"name": "arbok",
"dex": 45,
"height": 35,
"weight": 650,
"hp": 60,
"attack": 95,
"defense": 69,
"types": ["poison"],
"images": {
"back_default": "back/24.png",
"front_default": "24.png",
"official": "other/official-artwork/24.png"
}
},
{
"id": 25,
"name": "pikachu",
"dex": 84,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/25.png",
"front_default": "25.png",
"official": "other/official-artwork/25.png"
}
},
{
"id": 26,
"name": "raichu",
"dex": 85,
"height": 8,
"weight": 300,
"hp": 60,
"attack": 90,
"defense": 55,
"types": ["electric"],
"images": {
"back_default": "back/26.png",
"front_default": "26.png",
"official": "other/official-artwork/26.png"
}
},
{
"id": 27,
"name": "sandshrew",
"dex": 96,
"height": 6,
"weight": 120,
"hp": 50,
"attack": 75,
"defense": 85,
"types": ["ground"],
"images": {
"back_default": "back/27.png",
"front_default": "27.png",
"official": "other/official-artwork/27.png"
}
},
{
"id": 28,
"name": "sandslash",
"dex": 97,
"height": 10,
"weight": 295,
"hp": 75,
"attack": 100,
"defense": 110,
"types": ["ground"],
"images": {
"back_default": "back/28.png",
"front_default": "28.png",
"official": "other/official-artwork/28.png"
}
},
{
"id": 29,
"name": "nidoran-f",
"dex": 15,
"height": 4,
"weight": 70,
"hp": 55,
"attack": 47,
"defense": 52,
"types": ["poison"],
"images": {
"back_default": "back/29.png",
"front_default": "29.png",
"official": "other/official-artwork/29.png"
}
},
{
"id": 30,
"name": "nidorina",
"dex": 168,
"height": 8,
"weight": 200,
"hp": 70,
"attack": 62,
"defense": 67,
"types": ["poison"],
"images": {
"back_default": "back/30.png",
"front_default": "30.png",
"official": "other/official-artwork/30.png"
}
},
{
"id": 31,
"name": "nidoqueen",
"dex": 16,
"height": 13,
"weight": 600,
"hp": 90,
"attack": 92,
"defense": 87,
"types": ["poison", "ground"],
"images": {
"back_default": "back/31.png",
"front_default": "31.png",
"official": "other/official-artwork/31.png"
}
},
{
"id": 32,
"name": "nidoran-m",
"dex": 3,
"height": 5,
"weight": 90,
"hp": 46,
"attack": 57,
"defense": 40,
"types": ["poison"],
"images": {
"back_default": "back/32.png",
"front_default": "32.png",
"official": "other/official-artwork/32.png"
}
},
{
"id": 33,
"name": "nidorino",
"dex": 167,
"height": 9,
"weight": 195,
"hp": 61,
"attack": 72,
"defense": 57,
"types": ["poison"],
"images": {
"back_default": "back/33.png",
"front_default": "33.png",
"official": "other/official-artwork/33.png"
}
},
{
"id": 34,
"name": "nidoking",
"dex": 7,
"height": 14,
"weight": 620,
"hp": 81,
"attack": 102,
"defense": 77,
"types": ["poison", "ground"],
"images": {
"back_default": "back/34.png",
"front_default": "34.png",
"official": "other/official-artwork/34.png"
}
},
{
"id": 35,
"name": "clefairy",
"dex": 4,
"height": 6,
"weight": 75,
"hp": 70,
"attack": 45,
"defense": 48,
"types": ["fairy"],
"images": {
"back_default": "back/35.png",
"front_default": "35.png",
"official": "other/official-artwork/35.png"
}
},
{
"id": 36,
"name": "clefable",
"dex": 142,
"height": 13,
"weight": 400,
"hp": 95,
"attack": 70,
"defense": 73,
"types": ["fairy"],
"images": {
"back_default": "back/36.png",
"front_default": "36.png",
"official": "other/official-artwork/36.png"
}
},
{
"id": 37,
"name": "vulpix",
"dex": 82,
"height": 6,
"weight": 99,
"hp": 38,
"attack": 41,
"defense": 40,
"types": ["fire"],
"images": {
"back_default": "back/37.png",
"front_default": "37.png",
"official": "other/official-artwork/37.png"
}
},
{
"id": 38,
"name": "ninetales",
"dex": 83,
"height": 11,
"weight": 199,
"hp": 73,
"attack": 76,
"defense": 75,
"types": ["fire"],
"images": {
"back_default": "back/38.png",
"front_default": "38.png",
"official": "other/official-artwork/38.png"
}
},
{
"id": 39,
"name": "jigglypuff",
"dex": 100,
"height": 5,
"weight": 55,
"hp": 115,
"attack": 45,
"defense": 20,
"types": ["normal", "fairy"],
"images": {
"back_default": "back/39.png",
"front_default": "39.png",
"official": "other/official-artwork/39.png"
}
},
{
"id": 40,
"name": "wigglytuff",
"dex": 101,
"height": 10,
"weight": 120,
"hp": 140,
"attack": 70,
"defense": 45,
"types": ["normal", "fairy"],
"images": {
"back_default": "back/40.png",
"front_default": "40.png",
"official": "other/official-artwork/40.png"
}
},
{
"id": 41,
"name": "zubat",
"dex": 107,
"height": 8,
"weight": 75,
"hp": 40,
"attack": 45,
"defense": 35,
"types": ["poison", "flying"],
"images": {
"back_default": "back/41.png",
"front_default": "41.png",
"official": "other/official-artwork/41.png"
}
},
{
"id": 42,
"name": "golbat",
"dex": 130,
"height": 16,
"weight": 550,
"hp": 75,
"attack": 80,
"defense": 70,
"types": ["poison", "flying"],
"images": {
"back_default": "back/42.png",
"front_default": "42.png",
"official": "other/official-artwork/42.png"
}
},
{
"id": 43,
"name": "oddish",
"dex": 185,
"height": 5,
"weight": 54,
"hp": 45,
"attack": 50,
"defense": 55,
"types": ["grass", "poison"],
"images": {
"back_default": "back/43.png",
"front_default": "43.png",
"official": "other/official-artwork/43.png"
}
},
{
"id": 44,
"name": "gloom",
"dex": 186,
"height": 8,
"weight": 86,
"hp": 60,
"attack": 65,
"defense": 70,
"types": ["grass", "poison"],
"images": {
"back_default": "back/44.png",
"front_default": "44.png",
"official": "other/official-artwork/44.png"
}
},
{
"id": 45,
"name": "vileplume",
"dex": 187,
"height": 12,
"weight": 186,
"hp": 75,
"attack": 80,
"defense": 85,
"types": ["grass", "poison"],
"images": {
"back_default": "back/45.png",
"front_default": "45.png",
"official": "other/official-artwork/45.png"
}
},
{
"id": 46,
"name": "paras",
"dex": 109,
"height": 3,
"weight": 54,
"hp": 35,
"attack": 70,
"defense": 55,
"types": ["bug", "grass"],
"images": {
"back_default": "back/46.png",
"front_default": "46.png",
"official": "other/official-artwork/46.png"
}
},
{
"id": 47,
"name": "parasect",
"dex": 46,
"height": 10,
"weight": 295,
"hp": 60,
"attack": 95,
"defense": 80,
"types": ["bug", "grass"],
"images": {
"back_default": "back/47.png",
"front_default": "47.png",
"official": "other/official-artwork/47.png"
}
},
{
"id": 48,
"name": "venonat",
"dex": 65,
"height": 10,
"weight": 300,
"hp": 60,
"attack": 55,
"defense": 50,
"types": ["bug", "poison"],
"images": {
"back_default": "back/48.png",
"front_default": "48.png",
"official": "other/official-artwork/48.png"
}
},
{
"id": 49,
"name": "venomoth",
"dex": 119,
"height": 15,
"weight": 125,
"hp": 70,
"attack": 65,
"defense": 60,
"types": ["bug", "poison"],
"images": {
"back_default": "back/49.png",
"front_default": "49.png",
"official": "other/official-artwork/49.png"
}
},
{
"id": 50,
"name": "diglett",
"dex": 59,
"height": 2,
"weight": 8,
"hp": 10,
"attack": 55,
"defense": 25,
"types": ["ground"],
"images": {
"back_default": "back/50.png",
"front_default": "50.png",
"official": "other/official-artwork/50.png"
}
},
{
"id": 51,
"name": "dugtrio",
"dex": 118,
"height": 7,
"weight": 333,
"hp": 35,
"attack": 100,
"defense": 50,
"types": ["ground"],
"images": {
"back_default": "back/51.png",
"front_default": "51.png",
"official": "other/official-artwork/51.png"
}
},
{
"id": 52,
"name": "meowth",
"dex": 77,
"height": 4,
"weight": 42,
"hp": 40,
"attack": 45,
"defense": 35,
"types": ["normal"],
"images": {
"back_default": "back/52.png",
"front_default": "52.png",
"official": "other/official-artwork/52.png"
}
},
{
"id": 53,
"name": "persian",
"dex": 144,
"height": 10,
"weight": 320,
"hp": 65,
"attack": 70,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/53.png",
"front_default": "53.png",
"official": "other/official-artwork/53.png"
}
},
{
"id": 54,
"name": "psyduck",
"dex": 47,
"height": 8,
"weight": 196,
"hp": 50,
"attack": 52,
"defense": 48,
"types": ["water"],
"images": {
"back_default": "back/54.png",
"front_default": "54.png",
"official": "other/official-artwork/54.png"
}
},
{
"id": 55,
"name": "golduck",
"dex": 128,
"height": 17,
"weight": 766,
"hp": 80,
"attack": 82,
"defense": 78,
"types": ["water"],
"images": {
"back_default": "back/55.png",
"front_default": "55.png",
"official": "other/official-artwork/55.png"
}
},
{
"id": 56,
"name": "mankey",
"dex": 57,
"height": 5,
"weight": 280,
"hp": 40,
"attack": 80,
"defense": 35,
"types": ["fighting"],
"images": {
"back_default": "back/56.png",
"front_default": "56.png",
"official": "other/official-artwork/56.png"
}
},
{
"id": 57,
"name": "primeape",
"dex": 117,
"height": 10,
"weight": 320,
"hp": 65,
"attack": 105,
"defense": 60,
"types": ["fighting"],
"images": {
"back_default": "back/57.png",
"front_default": "57.png",
"official": "other/official-artwork/57.png"
}
},
{
"id": 58,
"name": "growlithe",
"dex": 33,
"height": 7,
"weight": 190,
"hp": 55,
"attack": 70,
"defense": 45,
"types": ["fire"],
"images": {
"back_default": "back/58.png",
"front_default": "58.png",
"official": "other/official-artwork/58.png"
}
},
{
"id": 59,
"name": "arcanine",
"dex": 20,
"height": 19,
"weight": 1550,
"hp": 90,
"attack": 110,
"defense": 80,
"types": ["fire"],
"images": {
"back_default": "back/59.png",
"front_default": "59.png",
"official": "other/official-artwork/59.png"
}
},
{
"id": 60,
"name": "poliwag",
"dex": 71,
"height": 6,
"weight": 124,
"hp": 40,
"attack": 50,
"defense": 40,
"types": ["water"],
"images": {
"back_default": "back/60.png",
"front_default": "60.png",
"official": "other/official-artwork/60.png"
}
},
{
"id": 61,
"name": "poliwhirl",
"dex": 110,
"height": 10,
"weight": 200,
"hp": 65,
"attack": 65,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/61.png",
"front_default": "61.png",
"official": "other/official-artwork/61.png"
}
},
{
"id": 62,
"name": "poliwrath",
"dex": 111,
"height": 13,
"weight": 540,
"hp": 90,
"attack": 95,
"defense": 95,
"types": ["water", "fighting"],
"images": {
"back_default": "back/62.png",
"front_default": "62.png",
"official": "other/official-artwork/62.png"
}
},
{
"id": 63,
"name": "abra",
"dex": 148,
"height": 9,
"weight": 195,
"hp": 25,
"attack": 20,
"defense": 15,
"types": ["psychic"],
"images": {
"back_default": "back/63.png",
"front_default": "63.png",
"official": "other/official-artwork/63.png"
}
},
{
"id": 64,
"name": "kadabra",
"dex": 38,
"height": 13,
"weight": 565,
"hp": 40,
"attack": 35,
"defense": 30,
"types": ["psychic"],
"images": {
"back_default": "back/64.png",
"front_default": "64.png",
"official": "other/official-artwork/64.png"
}
},
{
"id": 65,
"name": "alakazam",
"dex": 149,
"height": 15,
"weight": 480,
"hp": 55,
"attack": 50,
"defense": 45,
"types": ["psychic"],
"images": {
"back_default": "back/65.png",
"front_default": "65.png",
"official": "other/official-artwork/65.png"
}
},
{
"id": 66,
"name": "machop",
"dex": 106,
"height": 8,
"weight": 195,
"hp": 70,
"attack": 80,
"defense": 50,
"types": ["fighting"],
"images": {
"back_default": "back/66.png",
"front_default": "66.png",
"official": "other/official-artwork/66.png"
}
},
{
"id": 67,
"name": "machoke",
"dex": 41,
"height": 15,
"weight": 705,
"hp": 80,
"attack": 100,
"defense": 70,
"types": ["fighting"],
"images": {
"back_default": "back/67.png",
"front_default": "67.png",
"official": "other/official-artwork/67.png"
}
},
{
"id": 68,
"name": "machamp",
"dex": 126,
"height": 16,
"weight": 1300,
"hp": 90,
"attack": 130,
"defense": 80,
"types": ["fighting"],
"images": {
"back_default": "back/68.png",
"front_default": "68.png",
"official": "other/official-artwork/68.png"
}
},
{
"id": 69,
"name": "bellsprout",
"dex": 188,
"height": 7,
"weight": 40,
"hp": 50,
"attack": 75,
"defense": 35,
"types": ["grass", "poison"],
"images": {
"back_default": "back/69.png",
"front_default": "69.png",
"official": "other/official-artwork/69.png"
}
},
{
"id": 70,
"name": "weepinbell",
"dex": 189,
"height": 10,
"weight": 64,
"hp": 65,
"attack": 90,
"defense": 50,
"types": ["grass", "poison"],
"images": {
"back_default": "back/70.png",
"front_default": "70.png",
"official": "other/official-artwork/70.png"
}
},
{
"id": 71,
"name": "victreebel",
"dex": 190,
"height": 17,
"weight": 155,
"hp": 80,
"attack": 105,
"defense": 65,
"types": ["grass", "poison"],
"images": {
"back_default": "back/71.png",
"front_default": "71.png",
"official": "other/official-artwork/71.png"
}
},
{
"id": 72,
"name": "tentacool",
"dex": 24,
"height": 9,
"weight": 455,
"hp": 40,
"attack": 40,
"defense": 35,
"types": ["water", "poison"],
"images": {
"back_default": "back/72.png",
"front_default": "72.png",
"official": "other/official-artwork/72.png"
}
},
{
"id": 73,
"name": "tentacruel",
"dex": 155,
"height": 16,
"weight": 550,
"hp": 80,
"attack": 70,
"defense": 65,
"types": ["water", "poison"],
"images": {
"back_default": "back/73.png",
"front_default": "73.png",
"official": "other/official-artwork/73.png"
}
},
{
"id": 74,
"name": "geodude",
"dex": 169,
"height": 4,
"weight": 200,
"hp": 40,
"attack": 80,
"defense": 100,
"types": ["rock", "ground"],
"images": {
"back_default": "back/74.png",
"front_default": "74.png",
"official": "other/official-artwork/74.png"
}
},
{
"id": 75,
"name": "graveler",
"dex": 39,
"height": 10,
"weight": 1050,
"hp": 55,
"attack": 95,
"defense": 115,
"types": ["rock", "ground"],
"images": {
"back_default": "back/75.png",
"front_default": "75.png",
"official": "other/official-artwork/75.png"
}
},
{
"id": 76,
"name": "golem",
"dex": 49,
"height": 14,
"weight": 3000,
"hp": 80,
"attack": 120,
"defense": 130,
"types": ["rock", "ground"],
"images": {
"back_default": "back/76.png",
"front_default": "76.png",
"official": "other/official-artwork/76.png"
}
},
{
"id": 77,
"name": "ponyta",
"dex": 163,
"height": 10,
"weight": 300,
"hp": 50,
"attack": 85,
"defense": 55,
"types": ["fire"],
"images": {
"back_default": "back/77.png",
"front_default": "77.png",
"official": "other/official-artwork/77.png"
}
},
{
"id": 78,
"name": "rapidash",
"dex": 164,
"height": 17,
"weight": 950,
"hp": 65,
"attack": 100,
"defense": 70,
"types": ["fire"],
"images": {
"back_default": "back/78.png",
"front_default": "78.png",
"official": "other/official-artwork/78.png"
}
},
{
"id": 79,
"name": "slowpoke",
"dex": 37,
"height": 12,
"weight": 360,
"hp": 90,
"attack": 65,
"defense": 65,
"types": ["water", "psychic"],
"images": {
"back_default": "back/79.png",
"front_default": "79.png",
"official": "other/official-artwork/79.png"
}
},
{
"id": 80,
"name": "slowbro",
"dex": 8,
"height": 16,
"weight": 785,
"hp": 95,
"attack": 75,
"defense": 110,
"types": ["water", "psychic"],
"images": {
"back_default": "back/80.png",
"front_default": "80.png",
"official": "other/official-artwork/80.png"
}
},
{
"id": 81,
"name": "magnemite",
"dex": 173,
"height": 3,
"weight": 60,
"hp": 25,
"attack": 35,
"defense": 70,
"types": ["electric", "steel"],
"images": {
"back_default": "back/81.png",
"front_default": "81.png",
"official": "other/official-artwork/81.png"
}
},
{
"id": 82,
"name": "magneton",
"dex": 54,
"height": 10,
"weight": 600,
"hp": 50,
"attack": 60,
"defense": 95,
"types": ["electric", "steel"],
"images": {
"back_default": "back/82.png",
"front_default": "82.png",
"official": "other/official-artwork/82.png"
}
},
{
"id": 83,
"name": "farfetchd",
"dex": 64,
"height": 8,
"weight": 150,
"hp": 52,
"attack": 90,
"defense": 55,
"types": ["normal", "flying"],
"images": {
"back_default": "back/83.png",
"front_default": "83.png",
"official": "other/official-artwork/83.png"
}
},
{
"id": 84,
"name": "doduo",
"dex": 70,
"height": 14,
"weight": 392,
"hp": 35,
"attack": 85,
"defense": 45,
"types": ["normal", "flying"],
"images": {
"back_default": "back/84.png",
"front_default": "84.png",
"official": "other/official-artwork/84.png"
}
},
{
"id": 85,
"name": "dodrio",
"dex": 116,
"height": 18,
"weight": 852,
"hp": 60,
"attack": 110,
"defense": 70,
"types": ["normal", "flying"],
"images": {
"back_default": "back/85.png",
"front_default": "85.png",
"official": "other/official-artwork/85.png"
}
},
{
"id": 86,
"name": "seel",
"dex": 58,
"height": 11,
"weight": 900,
"hp": 65,
"attack": 45,
"defense": 55,
"types": ["water"],
"images": {
"back_default": "back/86.png",
"front_default": "86.png",
"official": "other/official-artwork/86.png"
}
},
{
"id": 87,
"name": "dewgong",
"dex": 120,
"height": 17,
"weight": 1200,
"hp": 90,
"attack": 70,
"defense": 80,
"types": ["water", "ice"],
"images": {
"back_default": "back/87.png",
"front_default": "87.png",
"official": "other/official-artwork/87.png"
}
},
{
"id": 88,
"name": "grimer",
"dex": 13,
"height": 9,
"weight": 300,
"hp": 80,
"attack": 80,
"defense": 50,
"types": ["poison"],
"images": {
"back_default": "back/88.png",
"front_default": "88.png",
"official": "other/official-artwork/88.png"
}
},
{
"id": 89,
"name": "muk",
"dex": 136,
"height": 12,
"weight": 300,
"hp": 105,
"attack": 105,
"defense": 75,
"types": ["poison"],
"images": {
"back_default": "back/89.png",
"front_default": "89.png",
"official": "other/official-artwork/89.png"
}
},
{
"id": 90,
"name": "shellder",
"dex": 23,
"height": 3,
"weight": 40,
"hp": 30,
"attack": 65,
"defense": 100,
"types": ["water"],
"images": {
"back_default": "back/90.png",
"front_default": "90.png",
"official": "other/official-artwork/90.png"
}
},
{
"id": 91,
"name": "cloyster",
"dex": 139,
"height": 15,
"weight": 1325,
"hp": 50,
"attack": 95,
"defense": 180,
"types": ["water", "ice"],
"images": {
"back_default": "back/91.png",
"front_default": "91.png",
"official": "other/official-artwork/91.png"
}
},
{
"id": 92,
"name": "gastly",
"dex": 25,
"height": 13,
"weight": 1,
"hp": 30,
"attack": 35,
"defense": 30,
"types": ["ghost", "poison"],
"images": {
"back_default": "back/92.png",
"front_default": "92.png",
"official": "other/official-artwork/92.png"
}
},
{
"id": 93,
"name": "haunter",
"dex": 147,
"height": 16,
"weight": 1,
"hp": 45,
"attack": 50,
"defense": 45,
"types": ["ghost", "poison"],
"images": {
"back_default": "back/93.png",
"front_default": "93.png",
"official": "other/official-artwork/93.png"
}
},
{
"id": 94,
"name": "gengar",
"dex": 14,
"height": 15,
"weight": 405,
"hp": 60,
"attack": 65,
"defense": 60,
"types": ["ghost", "poison"],
"images": {
"back_default": "back/94.png",
"front_default": "94.png",
"official": "other/official-artwork/94.png"
}
},
{
"id": 95,
"name": "onix",
"dex": 34,
"height": 88,
"weight": 2100,
"hp": 35,
"attack": 45,
"defense": 160,
"types": ["rock", "ground"],
"images": {
"back_default": "back/95.png",
"front_default": "95.png",
"official": "other/official-artwork/95.png"
}
},
{
"id": 96,
"name": "drowzee",
"dex": 48,
"height": 10,
"weight": 324,
"hp": 60,
"attack": 48,
"defense": 45,
"types": ["psychic"],
"images": {
"back_default": "back/96.png",
"front_default": "96.png",
"official": "other/official-artwork/96.png"
}
},
{
"id": 97,
"name": "hypno",
"dex": 129,
"height": 16,
"weight": 756,
"hp": 85,
"attack": 73,
"defense": 70,
"types": ["psychic"],
"images": {
"back_default": "back/97.png",
"front_default": "97.png",
"official": "other/official-artwork/97.png"
}
},
{
"id": 98,
"name": "krabby",
"dex": 78,
"height": 4,
"weight": 65,
"hp": 30,
"attack": 105,
"defense": 90,
"types": ["water"],
"images": {
"back_default": "back/98.png",
"front_default": "98.png",
"official": "other/official-artwork/98.png"
}
},
{
"id": 99,
"name": "kingler",
"dex": 138,
"height": 13,
"weight": 600,
"hp": 55,
"attack": 130,
"defense": 115,
"types": ["water"],
"images": {
"back_default": "back/99.png",
"front_default": "99.png",
"official": "other/official-artwork/99.png"
}
},
{
"id": 100,
"name": "voltorb",
"dex": 6,
"height": 5,
"weight": 104,
"hp": 40,
"attack": 30,
"defense": 50,
"types": ["electric"],
"images": {
"back_default": "back/100.png",
"front_default": "100.png",
"official": "other/official-artwork/100.png"
}
},
{
"id": 101,
"name": "electrode",
"dex": 141,
"height": 12,
"weight": 666,
"hp": 60,
"attack": 50,
"defense": 70,
"types": ["electric"],
"images": {
"back_default": "back/101.png",
"front_default": "101.png",
"official": "other/official-artwork/101.png"
}
},
{
"id": 102,
"name": "exeggcute",
"dex": 12,
"height": 4,
"weight": 25,
"hp": 60,
"attack": 40,
"defense": 80,
"types": ["grass", "psychic"],
"images": {
"back_default": "back/102.png",
"front_default": "102.png",
"official": "other/official-artwork/102.png"
}
},
{
"id": 103,
"name": "exeggutor",
"dex": 10,
"height": 20,
"weight": 1200,
"hp": 95,
"attack": 95,
"defense": 85,
"types": ["grass", "psychic"],
"images": {
"back_default": "back/103.png",
"front_default": "103.png",
"official": "other/official-artwork/103.png"
}
},
{
"id": 104,
"name": "cubone",
"dex": 17,
"height": 4,
"weight": 65,
"hp": 50,
"attack": 50,
"defense": 95,
"types": ["ground"],
"images": {
"back_default": "back/104.png",
"front_default": "104.png",
"official": "other/official-artwork/104.png"
}
},
{
"id": 105,
"name": "marowak",
"dex": 145,
"height": 10,
"weight": 450,
"hp": 60,
"attack": 80,
"defense": 110,
"types": ["ground"],
"images": {
"back_default": "back/105.png",
"front_default": "105.png",
"official": "other/official-artwork/105.png"
}
},
{
"id": 106,
"name": "hitmonlee",
"dex": 43,
"height": 15,
"weight": 498,
"hp": 50,
"attack": 120,
"defense": 53,
"types": ["fighting"],
"images": {
"back_default": "back/106.png",
"front_default": "106.png",
"official": "other/official-artwork/106.png"
}
},
{
"id": 107,
"name": "hitmonchan",
"dex": 44,
"height": 14,
"weight": 502,
"hp": 50,
"attack": 105,
"defense": 79,
"types": ["fighting"],
"images": {
"back_default": "back/107.png",
"front_default": "107.png",
"official": "other/official-artwork/107.png"
}
},
{
"id": 108,
"name": "lickitung",
"dex": 11,
"height": 12,
"weight": 655,
"hp": 90,
"attack": 55,
"defense": 75,
"types": ["normal"],
"images": {
"back_default": "back/108.png",
"front_default": "108.png",
"official": "other/official-artwork/108.png"
}
},
{
"id": 109,
"name": "koffing",
"dex": 55,
"height": 6,
"weight": 10,
"hp": 40,
"attack": 65,
"defense": 95,
"types": ["poison"],
"images": {
"back_default": "back/109.png",
"front_default": "109.png",
"official": "other/official-artwork/109.png"
}
},
{
"id": 110,
"name": "weezing",
"dex": 143,
"height": 12,
"weight": 95,
"hp": 65,
"attack": 90,
"defense": 120,
"types": ["poison"],
"images": {
"back_default": "back/110.png",
"front_default": "110.png",
"official": "other/official-artwork/110.png"
}
},
{
"id": 111,
"name": "rhyhorn",
"dex": 18,
"height": 10,
"weight": 1150,
"hp": 80,
"attack": 85,
"defense": 95,
"types": ["ground", "rock"],
"images": {
"back_default": "back/111.png",
"front_default": "111.png",
"official": "other/official-artwork/111.png"
}
},
{
"id": 112,
"name": "rhydon",
"dex": 1,
"height": 19,
"weight": 1200,
"hp": 105,
"attack": 130,
"defense": 120,
"types": ["ground", "rock"],
"images": {
"back_default": "back/112.png",
"front_default": "112.png",
"official": "other/official-artwork/112.png"
}
},
{
"id": 113,
"name": "chansey",
"dex": 40,
"height": 11,
"weight": 346,
"hp": 250,
"attack": 5,
"defense": 5,
"types": ["normal"],
"images": {
"back_default": "back/113.png",
"front_default": "113.png",
"official": "other/official-artwork/113.png"
}
},
{
"id": 114,
"name": "tangela",
"dex": 30,
"height": 10,
"weight": 350,
"hp": 65,
"attack": 55,
"defense": 115,
"types": ["grass"],
"images": {
"back_default": "back/114.png",
"front_default": "114.png",
"official": "other/official-artwork/114.png"
}
},
{
"id": 115,
"name": "kangaskhan",
"dex": 2,
"height": 22,
"weight": 800,
"hp": 105,
"attack": 95,
"defense": 80,
"types": ["normal"],
"images": {
"back_default": "back/115.png",
"front_default": "115.png",
"official": "other/official-artwork/115.png"
}
},
{
"id": 116,
"name": "horsea",
"dex": 92,
"height": 4,
"weight": 80,
"hp": 30,
"attack": 40,
"defense": 70,
"types": ["water"],
"images": {
"back_default": "back/116.png",
"front_default": "116.png",
"official": "other/official-artwork/116.png"
}
},
{
"id": 117,
"name": "seadra",
"dex": 93,
"height": 12,
"weight": 250,
"hp": 55,
"attack": 65,
"defense": 95,
"types": ["water"],
"images": {
"back_default": "back/117.png",
"front_default": "117.png",
"official": "other/official-artwork/117.png"
}
},
{
"id": 118,
"name": "goldeen",
"dex": 157,
"height": 6,
"weight": 150,
"hp": 45,
"attack": 67,
"defense": 60,
"types": ["water"],
"images": {
"back_default": "back/118.png",
"front_default": "118.png",
"official": "other/official-artwork/118.png"
}
},
{
"id": 119,
"name": "seaking",
"dex": 158,
"height": 13,
"weight": 390,
"hp": 80,
"attack": 92,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/119.png",
"front_default": "119.png",
"official": "other/official-artwork/119.png"
}
},
{
"id": 120,
"name": "staryu",
"dex": 27,
"height": 8,
"weight": 345,
"hp": 30,
"attack": 45,
"defense": 55,
"types": ["water"],
"images": {
"back_default": "back/120.png",
"front_default": "120.png",
"official": "other/official-artwork/120.png"
}
},
{
"id": 121,
"name": "starmie",
"dex": 152,
"height": 11,
"weight": 800,
"hp": 60,
"attack": 75,
"defense": 85,
"types": ["water", "psychic"],
"images": {
"back_default": "back/121.png",
"front_default": "121.png",
"official": "other/official-artwork/121.png"
}
},
{
"id": 122,
"name": "mr-mime",
"dex": 42,
"height": 13,
"weight": 545,
"hp": 40,
"attack": 45,
"defense": 65,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/122.png",
"front_default": "122.png",
"official": "other/official-artwork/122.png"
}
},
{
"id": 123,
"name": "scyther",
"dex": 26,
"height": 15,
"weight": 560,
"hp": 70,
"attack": 110,
"defense": 80,
"types": ["bug", "flying"],
"images": {
"back_default": "back/123.png",
"front_default": "123.png",
"official": "other/official-artwork/123.png"
}
},
{
"id": 124,
"name": "jynx",
"dex": 72,
"height": 14,
"weight": 406,
"hp": 65,
"attack": 50,
"defense": 35,
"types": ["ice", "psychic"],
"images": {
"back_default": "back/124.png",
"front_default": "124.png",
"official": "other/official-artwork/124.png"
}
},
{
"id": 125,
"name": "electabuzz",
"dex": 53,
"height": 11,
"weight": 300,
"hp": 65,
"attack": 83,
"defense": 57,
"types": ["electric"],
"images": {
"back_default": "back/125.png",
"front_default": "125.png",
"official": "other/official-artwork/125.png"
}
},
{
"id": 126,
"name": "magmar",
"dex": 51,
"height": 13,
"weight": 445,
"hp": 65,
"attack": 95,
"defense": 57,
"types": ["fire"],
"images": {
"back_default": "back/126.png",
"front_default": "126.png",
"official": "other/official-artwork/126.png"
}
},
{
"id": 127,
"name": "pinsir",
"dex": 29,
"height": 15,
"weight": 550,
"hp": 65,
"attack": 125,
"defense": 100,
"types": ["bug"],
"images": {
"back_default": "back/127.png",
"front_default": "127.png",
"official": "other/official-artwork/127.png"
}
},
{
"id": 128,
"name": "tauros",
"dex": 60,
"height": 14,
"weight": 884,
"hp": 75,
"attack": 100,
"defense": 95,
"types": ["normal"],
"images": {
"back_default": "back/128.png",
"front_default": "128.png",
"official": "other/official-artwork/128.png"
}
},
{
"id": 129,
"name": "magikarp",
"dex": 133,
"height": 9,
"weight": 100,
"hp": 20,
"attack": 10,
"defense": 55,
"types": ["water"],
"images": {
"back_default": "back/129.png",
"front_default": "129.png",
"official": "other/official-artwork/129.png"
}
},
{
"id": 130,
"name": "gyarados",
"dex": 22,
"height": 65,
"weight": 2350,
"hp": 95,
"attack": 125,
"defense": 79,
"types": ["water", "flying"],
"images": {
"back_default": "back/130.png",
"front_default": "130.png",
"official": "other/official-artwork/130.png"
}
},
{
"id": 131,
"name": "lapras",
"dex": 19,
"height": 25,
"weight": 2200,
"hp": 130,
"attack": 85,
"defense": 80,
"types": ["water", "ice"],
"images": {
"back_default": "back/131.png",
"front_default": "131.png",
"official": "other/official-artwork/131.png"
}
},
{
"id": 132,
"name": "ditto",
"dex": 76,
"height": 3,
"weight": 40,
"hp": 48,
"attack": 48,
"defense": 48,
"types": ["normal"],
"images": {
"back_default": "back/132.png",
"front_default": "132.png",
"official": "other/official-artwork/132.png"
}
},
{
"id": 133,
"name": "eevee",
"dex": 102,
"height": 3,
"weight": 65,
"hp": 55,
"attack": 55,
"defense": 50,
"types": ["normal"],
"images": {
"back_default": "back/133.png",
"front_default": "133.png",
"official": "other/official-artwork/133.png"
}
},
{
"id": 134,
"name": "vaporeon",
"dex": 105,
"height": 10,
"weight": 290,
"hp": 130,
"attack": 65,
"defense": 60,
"types": ["water"],
"images": {
"back_default": "back/134.png",
"front_default": "134.png",
"official": "other/official-artwork/134.png"
}
},
{
"id": 135,
"name": "jolteon",
"dex": 104,
"height": 8,
"weight": 245,
"hp": 65,
"attack": 65,
"defense": 60,
"types": ["electric"],
"images": {
"back_default": "back/135.png",
"front_default": "135.png",
"official": "other/official-artwork/135.png"
}
},
{
"id": 136,
"name": "flareon",
"dex": 103,
"height": 9,
"weight": 250,
"hp": 65,
"attack": 130,
"defense": 60,
"types": ["fire"],
"images": {
"back_default": "back/136.png",
"front_default": "136.png",
"official": "other/official-artwork/136.png"
}
},
{
"id": 137,
"name": "porygon",
"dex": 170,
"height": 8,
"weight": 365,
"hp": 65,
"attack": 60,
"defense": 70,
"types": ["normal"],
"images": {
"back_default": "back/137.png",
"front_default": "137.png",
"official": "other/official-artwork/137.png"
}
},
{
"id": 138,
"name": "omanyte",
"dex": 98,
"height": 4,
"weight": 75,
"hp": 35,
"attack": 40,
"defense": 100,
"types": ["rock", "water"],
"images": {
"back_default": "back/138.png",
"front_default": "138.png",
"official": "other/official-artwork/138.png"
}
},
{
"id": 139,
"name": "omastar",
"dex": 99,
"height": 10,
"weight": 350,
"hp": 70,
"attack": 60,
"defense": 125,
"types": ["rock", "water"],
"images": {
"back_default": "back/139.png",
"front_default": "139.png",
"official": "other/official-artwork/139.png"
}
},
{
"id": 140,
"name": "kabuto",
"dex": 90,
"height": 5,
"weight": 115,
"hp": 30,
"attack": 80,
"defense": 90,
"types": ["rock", "water"],
"images": {
"back_default": "back/140.png",
"front_default": "140.png",
"official": "other/official-artwork/140.png"
}
},
{
"id": 141,
"name": "kabutops",
"dex": 91,
"height": 13,
"weight": 405,
"hp": 60,
"attack": 115,
"defense": 105,
"types": ["rock", "water"],
"images": {
"back_default": "back/141.png",
"front_default": "141.png",
"official": "other/official-artwork/141.png"
}
},
{
"id": 142,
"name": "aerodactyl",
"dex": 171,
"height": 18,
"weight": 590,
"hp": 80,
"attack": 105,
"defense": 65,
"types": ["rock", "flying"],
"images": {
"back_default": "back/142.png",
"front_default": "142.png",
"official": "other/official-artwork/142.png"
}
},
{
"id": 143,
"name": "snorlax",
"dex": 132,
"height": 21,
"weight": 4600,
"hp": 160,
"attack": 110,
"defense": 65,
"types": ["normal"],
"images": {
"back_default": "back/143.png",
"front_default": "143.png",
"official": "other/official-artwork/143.png"
}
},
{
"id": 144,
"name": "articuno",
"dex": 74,
"height": 17,
"weight": 554,
"hp": 90,
"attack": 85,
"defense": 100,
"types": ["ice", "flying"],
"images": {
"back_default": "back/144.png",
"front_default": "144.png",
"official": "other/official-artwork/144.png"
}
},
{
"id": 145,
"name": "zapdos",
"dex": 75,
"height": 16,
"weight": 526,
"hp": 90,
"attack": 90,
"defense": 85,
"types": ["electric", "flying"],
"images": {
"back_default": "back/145.png",
"front_default": "145.png",
"official": "other/official-artwork/145.png"
}
},
{
"id": 146,
"name": "moltres",
"dex": 73,
"height": 20,
"weight": 600,
"hp": 90,
"attack": 100,
"defense": 90,
"types": ["fire", "flying"],
"images": {
"back_default": "back/146.png",
"front_default": "146.png",
"official": "other/official-artwork/146.png"
}
},
{
"id": 147,
"name": "dratini",
"dex": 88,
"height": 18,
"weight": 33,
"hp": 41,
"attack": 64,
"defense": 45,
"types": ["dragon"],
"images": {
"back_default": "back/147.png",
"front_default": "147.png",
"official": "other/official-artwork/147.png"
}
},
{
"id": 148,
"name": "dragonair",
"dex": 89,
"height": 40,
"weight": 165,
"hp": 61,
"attack": 84,
"defense": 65,
"types": ["dragon"],
"images": {
"back_default": "back/148.png",
"front_default": "148.png",
"official": "other/official-artwork/148.png"
}
},
{
"id": 149,
"name": "dragonite",
"dex": 66,
"height": 22,
"weight": 2100,
"hp": 91,
"attack": 134,
"defense": 95,
"types": ["dragon", "flying"],
"images": {
"back_default": "back/149.png",
"front_default": "149.png",
"official": "other/official-artwork/149.png"
}
},
{
"id": 150,
"name": "mewtwo",
"dex": 131,
"height": 20,
"weight": 1220,
"hp": 106,
"attack": 110,
"defense": 90,
"types": ["psychic"],
"images": {
"back_default": "back/150.png",
"front_default": "150.png",
"official": "other/official-artwork/150.png"
}
},
{
"id": 151,
"name": "mew",
"dex": 21,
"height": 4,
"weight": 40,
"hp": 100,
"attack": 100,
"defense": 100,
"types": ["psychic"],
"images": {
"back_default": "back/151.png",
"front_default": "151.png",
"official": "other/official-artwork/151.png"
}
},
{
"id": 152,
"name": "chikorita",
"dex": 152,
"height": 9,
"weight": 64,
"hp": 45,
"attack": 49,
"defense": 65,
"types": ["grass"],
"images": {
"back_default": "back/152.png",
"front_default": "152.png",
"official": "other/official-artwork/152.png"
}
},
{
"id": 153,
"name": "bayleef",
"dex": 153,
"height": 12,
"weight": 158,
"hp": 60,
"attack": 62,
"defense": 80,
"types": ["grass"],
"images": {
"back_default": "back/153.png",
"front_default": "153.png",
"official": "other/official-artwork/153.png"
}
},
{
"id": 154,
"name": "meganium",
"dex": 154,
"height": 18,
"weight": 1005,
"hp": 80,
"attack": 82,
"defense": 100,
"types": ["grass"],
"images": {
"back_default": "back/154.png",
"front_default": "154.png",
"official": "other/official-artwork/154.png"
}
},
{
"id": 155,
"name": "cyndaquil",
"dex": 155,
"height": 5,
"weight": 79,
"hp": 39,
"attack": 52,
"defense": 43,
"types": ["fire"],
"images": {
"back_default": "back/155.png",
"front_default": "155.png",
"official": "other/official-artwork/155.png"
}
},
{
"id": 156,
"name": "quilava",
"dex": 156,
"height": 9,
"weight": 190,
"hp": 58,
"attack": 64,
"defense": 58,
"types": ["fire"],
"images": {
"back_default": "back/156.png",
"front_default": "156.png",
"official": "other/official-artwork/156.png"
}
},
{
"id": 157,
"name": "typhlosion",
"dex": 157,
"height": 17,
"weight": 795,
"hp": 78,
"attack": 84,
"defense": 78,
"types": ["fire"],
"images": {
"back_default": "back/157.png",
"front_default": "157.png",
"official": "other/official-artwork/157.png"
}
},
{
"id": 158,
"name": "totodile",
"dex": 158,
"height": 6,
"weight": 95,
"hp": 50,
"attack": 65,
"defense": 64,
"types": ["water"],
"images": {
"back_default": "back/158.png",
"front_default": "158.png",
"official": "other/official-artwork/158.png"
}
},
{
"id": 159,
"name": "croconaw",
"dex": 159,
"height": 11,
"weight": 250,
"hp": 65,
"attack": 80,
"defense": 80,
"types": ["water"],
"images": {
"back_default": "back/159.png",
"front_default": "159.png",
"official": "other/official-artwork/159.png"
}
},
{
"id": 160,
"name": "feraligatr",
"dex": 160,
"height": 23,
"weight": 888,
"hp": 85,
"attack": 105,
"defense": 100,
"types": ["water"],
"images": {
"back_default": "back/160.png",
"front_default": "160.png",
"official": "other/official-artwork/160.png"
}
},
{
"id": 161,
"name": "sentret",
"dex": 161,
"height": 8,
"weight": 60,
"hp": 35,
"attack": 46,
"defense": 34,
"types": ["normal"],
"images": {
"back_default": "back/161.png",
"front_default": "161.png",
"official": "other/official-artwork/161.png"
}
},
{
"id": 162,
"name": "furret",
"dex": 162,
"height": 18,
"weight": 325,
"hp": 85,
"attack": 76,
"defense": 64,
"types": ["normal"],
"images": {
"back_default": "back/162.png",
"front_default": "162.png",
"official": "other/official-artwork/162.png"
}
},
{
"id": 163,
"name": "hoothoot",
"dex": 163,
"height": 7,
"weight": 212,
"hp": 60,
"attack": 30,
"defense": 30,
"types": ["normal", "flying"],
"images": {
"back_default": "back/163.png",
"front_default": "163.png",
"official": "other/official-artwork/163.png"
}
},
{
"id": 164,
"name": "noctowl",
"dex": 164,
"height": 16,
"weight": 408,
"hp": 100,
"attack": 50,
"defense": 50,
"types": ["normal", "flying"],
"images": {
"back_default": "back/164.png",
"front_default": "164.png",
"official": "other/official-artwork/164.png"
}
},
{
"id": 165,
"name": "ledyba",
"dex": 165,
"height": 10,
"weight": 108,
"hp": 40,
"attack": 20,
"defense": 30,
"types": ["bug", "flying"],
"images": {
"back_default": "back/165.png",
"front_default": "165.png",
"official": "other/official-artwork/165.png"
}
},
{
"id": 166,
"name": "ledian",
"dex": 166,
"height": 14,
"weight": 356,
"hp": 55,
"attack": 35,
"defense": 50,
"types": ["bug", "flying"],
"images": {
"back_default": "back/166.png",
"front_default": "166.png",
"official": "other/official-artwork/166.png"
}
},
{
"id": 167,
"name": "spinarak",
"dex": 167,
"height": 5,
"weight": 85,
"hp": 40,
"attack": 60,
"defense": 40,
"types": ["bug", "poison"],
"images": {
"back_default": "back/167.png",
"front_default": "167.png",
"official": "other/official-artwork/167.png"
}
},
{
"id": 168,
"name": "ariados",
"dex": 168,
"height": 11,
"weight": 335,
"hp": 70,
"attack": 90,
"defense": 70,
"types": ["bug", "poison"],
"images": {
"back_default": "back/168.png",
"front_default": "168.png",
"official": "other/official-artwork/168.png"
}
},
{
"id": 169,
"name": "crobat",
"dex": 169,
"height": 18,
"weight": 750,
"hp": 85,
"attack": 90,
"defense": 80,
"types": ["poison", "flying"],
"images": {
"back_default": "back/169.png",
"front_default": "169.png",
"official": "other/official-artwork/169.png"
}
},
{
"id": 170,
"name": "chinchou",
"dex": 170,
"height": 5,
"weight": 120,
"hp": 75,
"attack": 38,
"defense": 38,
"types": ["water", "electric"],
"images": {
"back_default": "back/170.png",
"front_default": "170.png",
"official": "other/official-artwork/170.png"
}
},
{
"id": 171,
"name": "lanturn",
"dex": 171,
"height": 12,
"weight": 225,
"hp": 125,
"attack": 58,
"defense": 58,
"types": ["water", "electric"],
"images": {
"back_default": "back/171.png",
"front_default": "171.png",
"official": "other/official-artwork/171.png"
}
},
{
"id": 172,
"name": "pichu",
"dex": 172,
"height": 3,
"weight": 20,
"hp": 20,
"attack": 40,
"defense": 15,
"types": ["electric"],
"images": {
"back_default": "back/172.png",
"front_default": "172.png",
"official": "other/official-artwork/172.png"
}
},
{
"id": 173,
"name": "cleffa",
"dex": 173,
"height": 3,
"weight": 30,
"hp": 50,
"attack": 25,
"defense": 28,
"types": ["fairy"],
"images": {
"back_default": "back/173.png",
"front_default": "173.png",
"official": "other/official-artwork/173.png"
}
},
{
"id": 174,
"name": "igglybuff",
"dex": 174,
"height": 3,
"weight": 10,
"hp": 90,
"attack": 30,
"defense": 15,
"types": ["normal", "fairy"],
"images": {
"back_default": "back/174.png",
"front_default": "174.png",
"official": "other/official-artwork/174.png"
}
},
{
"id": 175,
"name": "togepi",
"dex": 175,
"height": 3,
"weight": 15,
"hp": 35,
"attack": 20,
"defense": 65,
"types": ["fairy"],
"images": {
"back_default": "back/175.png",
"front_default": "175.png",
"official": "other/official-artwork/175.png"
}
},
{
"id": 176,
"name": "togetic",
"dex": 176,
"height": 6,
"weight": 32,
"hp": 55,
"attack": 40,
"defense": 85,
"types": ["fairy", "flying"],
"images": {
"back_default": "back/176.png",
"front_default": "176.png",
"official": "other/official-artwork/176.png"
}
},
{
"id": 177,
"name": "natu",
"dex": 177,
"height": 2,
"weight": 20,
"hp": 40,
"attack": 50,
"defense": 45,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/177.png",
"front_default": "177.png",
"official": "other/official-artwork/177.png"
}
},
{
"id": 178,
"name": "xatu",
"dex": 178,
"height": 15,
"weight": 150,
"hp": 65,
"attack": 75,
"defense": 70,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/178.png",
"front_default": "178.png",
"official": "other/official-artwork/178.png"
}
},
{
"id": 179,
"name": "mareep",
"dex": 179,
"height": 6,
"weight": 78,
"hp": 55,
"attack": 40,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/179.png",
"front_default": "179.png",
"official": "other/official-artwork/179.png"
}
},
{
"id": 180,
"name": "flaaffy",
"dex": 180,
"height": 8,
"weight": 133,
"hp": 70,
"attack": 55,
"defense": 55,
"types": ["electric"],
"images": {
"back_default": "back/180.png",
"front_default": "180.png",
"official": "other/official-artwork/180.png"
}
},
{
"id": 181,
"name": "ampharos",
"dex": 181,
"height": 14,
"weight": 615,
"hp": 90,
"attack": 75,
"defense": 85,
"types": ["electric"],
"images": {
"back_default": "back/181.png",
"front_default": "181.png",
"official": "other/official-artwork/181.png"
}
},
{
"id": 182,
"name": "bellossom",
"dex": 182,
"height": 4,
"weight": 58,
"hp": 75,
"attack": 80,
"defense": 95,
"types": ["grass"],
"images": {
"back_default": "back/182.png",
"front_default": "182.png",
"official": "other/official-artwork/182.png"
}
},
{
"id": 183,
"name": "marill",
"dex": 183,
"height": 4,
"weight": 85,
"hp": 70,
"attack": 20,
"defense": 50,
"types": ["water", "fairy"],
"images": {
"back_default": "back/183.png",
"front_default": "183.png",
"official": "other/official-artwork/183.png"
}
},
{
"id": 184,
"name": "azumarill",
"dex": 184,
"height": 8,
"weight": 285,
"hp": 100,
"attack": 50,
"defense": 80,
"types": ["water", "fairy"],
"images": {
"back_default": "back/184.png",
"front_default": "184.png",
"official": "other/official-artwork/184.png"
}
},
{
"id": 185,
"name": "sudowoodo",
"dex": 185,
"height": 12,
"weight": 380,
"hp": 70,
"attack": 100,
"defense": 115,
"types": ["rock"],
"images": {
"back_default": "back/185.png",
"front_default": "185.png",
"official": "other/official-artwork/185.png"
}
},
{
"id": 186,
"name": "politoed",
"dex": 186,
"height": 11,
"weight": 339,
"hp": 90,
"attack": 75,
"defense": 75,
"types": ["water"],
"images": {
"back_default": "back/186.png",
"front_default": "186.png",
"official": "other/official-artwork/186.png"
}
},
{
"id": 187,
"name": "hoppip",
"dex": 187,
"height": 4,
"weight": 5,
"hp": 35,
"attack": 35,
"defense": 40,
"types": ["grass", "flying"],
"images": {
"back_default": "back/187.png",
"front_default": "187.png",
"official": "other/official-artwork/187.png"
}
},
{
"id": 188,
"name": "skiploom",
"dex": 188,
"height": 6,
"weight": 10,
"hp": 55,
"attack": 45,
"defense": 50,
"types": ["grass", "flying"],
"images": {
"back_default": "back/188.png",
"front_default": "188.png",
"official": "other/official-artwork/188.png"
}
},
{
"id": 189,
"name": "jumpluff",
"dex": 189,
"height": 8,
"weight": 30,
"hp": 75,
"attack": 55,
"defense": 70,
"types": ["grass", "flying"],
"images": {
"back_default": "back/189.png",
"front_default": "189.png",
"official": "other/official-artwork/189.png"
}
},
{
"id": 190,
"name": "aipom",
"dex": 190,
"height": 8,
"weight": 115,
"hp": 55,
"attack": 70,
"defense": 55,
"types": ["normal"],
"images": {
"back_default": "back/190.png",
"front_default": "190.png",
"official": "other/official-artwork/190.png"
}
},
{
"id": 191,
"name": "sunkern",
"dex": 191,
"height": 3,
"weight": 18,
"hp": 30,
"attack": 30,
"defense": 30,
"types": ["grass"],
"images": {
"back_default": "back/191.png",
"front_default": "191.png",
"official": "other/official-artwork/191.png"
}
},
{
"id": 192,
"name": "sunflora",
"dex": 192,
"height": 8,
"weight": 85,
"hp": 75,
"attack": 75,
"defense": 55,
"types": ["grass"],
"images": {
"back_default": "back/192.png",
"front_default": "192.png",
"official": "other/official-artwork/192.png"
}
},
{
"id": 193,
"name": "yanma",
"dex": 193,
"height": 12,
"weight": 380,
"hp": 65,
"attack": 65,
"defense": 45,
"types": ["bug", "flying"],
"images": {
"back_default": "back/193.png",
"front_default": "193.png",
"official": "other/official-artwork/193.png"
}
},
{
"id": 194,
"name": "wooper",
"dex": 194,
"height": 4,
"weight": 85,
"hp": 55,
"attack": 45,
"defense": 45,
"types": ["water", "ground"],
"images": {
"back_default": "back/194.png",
"front_default": "194.png",
"official": "other/official-artwork/194.png"
}
},
{
"id": 195,
"name": "quagsire",
"dex": 195,
"height": 14,
"weight": 750,
"hp": 95,
"attack": 85,
"defense": 85,
"types": ["water", "ground"],
"images": {
"back_default": "back/195.png",
"front_default": "195.png",
"official": "other/official-artwork/195.png"
}
},
{
"id": 196,
"name": "espeon",
"dex": 196,
"height": 9,
"weight": 265,
"hp": 65,
"attack": 65,
"defense": 60,
"types": ["psychic"],
"images": {
"back_default": "back/196.png",
"front_default": "196.png",
"official": "other/official-artwork/196.png"
}
},
{
"id": 197,
"name": "umbreon",
"dex": 197,
"height": 10,
"weight": 270,
"hp": 95,
"attack": 65,
"defense": 110,
"types": ["dark"],
"images": {
"back_default": "back/197.png",
"front_default": "197.png",
"official": "other/official-artwork/197.png"
}
},
{
"id": 198,
"name": "murkrow",
"dex": 198,
"height": 5,
"weight": 21,
"hp": 60,
"attack": 85,
"defense": 42,
"types": ["dark", "flying"],
"images": {
"back_default": "back/198.png",
"front_default": "198.png",
"official": "other/official-artwork/198.png"
}
},
{
"id": 199,
"name": "slowking",
"dex": 199,
"height": 20,
"weight": 795,
"hp": 95,
"attack": 75,
"defense": 80,
"types": ["water", "psychic"],
"images": {
"back_default": "back/199.png",
"front_default": "199.png",
"official": "other/official-artwork/199.png"
}
},
{
"id": 200,
"name": "misdreavus",
"dex": 200,
"height": 7,
"weight": 10,
"hp": 60,
"attack": 60,
"defense": 60,
"types": ["ghost"],
"images": {
"back_default": "back/200.png",
"front_default": "200.png",
"official": "other/official-artwork/200.png"
}
},
{
"id": 201,
"name": "unown",
"dex": 201,
"height": 5,
"weight": 50,
"hp": 48,
"attack": 72,
"defense": 48,
"types": ["psychic"],
"images": {
"back_default": "back/201.png",
"front_default": "201.png",
"official": "other/official-artwork/201.png"
}
},
{
"id": 202,
"name": "wobbuffet",
"dex": 202,
"height": 13,
"weight": 285,
"hp": 190,
"attack": 33,
"defense": 58,
"types": ["psychic"],
"images": {
"back_default": "back/202.png",
"front_default": "202.png",
"official": "other/official-artwork/202.png"
}
},
{
"id": 203,
"name": "girafarig",
"dex": 203,
"height": 15,
"weight": 415,
"hp": 70,
"attack": 80,
"defense": 65,
"types": ["normal", "psychic"],
"images": {
"back_default": "back/203.png",
"front_default": "203.png",
"official": "other/official-artwork/203.png"
}
},
{
"id": 204,
"name": "pineco",
"dex": 204,
"height": 6,
"weight": 72,
"hp": 50,
"attack": 65,
"defense": 90,
"types": ["bug"],
"images": {
"back_default": "back/204.png",
"front_default": "204.png",
"official": "other/official-artwork/204.png"
}
},
{
"id": 205,
"name": "forretress",
"dex": 205,
"height": 12,
"weight": 1258,
"hp": 75,
"attack": 90,
"defense": 140,
"types": ["bug", "steel"],
"images": {
"back_default": "back/205.png",
"front_default": "205.png",
"official": "other/official-artwork/205.png"
}
},
{
"id": 206,
"name": "dunsparce",
"dex": 206,
"height": 15,
"weight": 140,
"hp": 100,
"attack": 70,
"defense": 70,
"types": ["normal"],
"images": {
"back_default": "back/206.png",
"front_default": "206.png",
"official": "other/official-artwork/206.png"
}
},
{
"id": 207,
"name": "gligar",
"dex": 207,
"height": 11,
"weight": 648,
"hp": 65,
"attack": 75,
"defense": 105,
"types": ["ground", "flying"],
"images": {
"back_default": "back/207.png",
"front_default": "207.png",
"official": "other/official-artwork/207.png"
}
},
{
"id": 208,
"name": "steelix",
"dex": 208,
"height": 92,
"weight": 4000,
"hp": 75,
"attack": 85,
"defense": 200,
"types": ["steel", "ground"],
"images": {
"back_default": "back/208.png",
"front_default": "208.png",
"official": "other/official-artwork/208.png"
}
},
{
"id": 209,
"name": "snubbull",
"dex": 209,
"height": 6,
"weight": 78,
"hp": 60,
"attack": 80,
"defense": 50,
"types": ["fairy"],
"images": {
"back_default": "back/209.png",
"front_default": "209.png",
"official": "other/official-artwork/209.png"
}
},
{
"id": 210,
"name": "granbull",
"dex": 210,
"height": 14,
"weight": 487,
"hp": 90,
"attack": 120,
"defense": 75,
"types": ["fairy"],
"images": {
"back_default": "back/210.png",
"front_default": "210.png",
"official": "other/official-artwork/210.png"
}
},
{
"id": 211,
"name": "qwilfish",
"dex": 211,
"height": 5,
"weight": 39,
"hp": 65,
"attack": 95,
"defense": 85,
"types": ["water", "poison"],
"images": {
"back_default": "back/211.png",
"front_default": "211.png",
"official": "other/official-artwork/211.png"
}
},
{
"id": 212,
"name": "scizor",
"dex": 212,
"height": 18,
"weight": 1180,
"hp": 70,
"attack": 130,
"defense": 100,
"types": ["bug", "steel"],
"images": {
"back_default": "back/212.png",
"front_default": "212.png",
"official": "other/official-artwork/212.png"
}
},
{
"id": 213,
"name": "shuckle",
"dex": 213,
"height": 6,
"weight": 205,
"hp": 20,
"attack": 10,
"defense": 230,
"types": ["bug", "rock"],
"images": {
"back_default": "back/213.png",
"front_default": "213.png",
"official": "other/official-artwork/213.png"
}
},
{
"id": 214,
"name": "heracross",
"dex": 214,
"height": 15,
"weight": 540,
"hp": 80,
"attack": 125,
"defense": 75,
"types": ["bug", "fighting"],
"images": {
"back_default": "back/214.png",
"front_default": "214.png",
"official": "other/official-artwork/214.png"
}
},
{
"id": 215,
"name": "sneasel",
"dex": 215,
"height": 9,
"weight": 280,
"hp": 55,
"attack": 95,
"defense": 55,
"types": ["dark", "ice"],
"images": {
"back_default": "back/215.png",
"front_default": "215.png",
"official": "other/official-artwork/215.png"
}
},
{
"id": 216,
"name": "teddiursa",
"dex": 216,
"height": 6,
"weight": 88,
"hp": 60,
"attack": 80,
"defense": 50,
"types": ["normal"],
"images": {
"back_default": "back/216.png",
"front_default": "216.png",
"official": "other/official-artwork/216.png"
}
},
{
"id": 217,
"name": "ursaring",
"dex": 217,
"height": 18,
"weight": 1258,
"hp": 90,
"attack": 130,
"defense": 75,
"types": ["normal"],
"images": {
"back_default": "back/217.png",
"front_default": "217.png",
"official": "other/official-artwork/217.png"
}
},
{
"id": 218,
"name": "slugma",
"dex": 218,
"height": 7,
"weight": 350,
"hp": 40,
"attack": 40,
"defense": 40,
"types": ["fire"],
"images": {
"back_default": "back/218.png",
"front_default": "218.png",
"official": "other/official-artwork/218.png"
}
},
{
"id": 219,
"name": "magcargo",
"dex": 219,
"height": 8,
"weight": 550,
"hp": 60,
"attack": 50,
"defense": 120,
"types": ["fire", "rock"],
"images": {
"back_default": "back/219.png",
"front_default": "219.png",
"official": "other/official-artwork/219.png"
}
},
{
"id": 220,
"name": "swinub",
"dex": 220,
"height": 4,
"weight": 65,
"hp": 50,
"attack": 50,
"defense": 40,
"types": ["ice", "ground"],
"images": {
"back_default": "back/220.png",
"front_default": "220.png",
"official": "other/official-artwork/220.png"
}
},
{
"id": 221,
"name": "piloswine",
"dex": 221,
"height": 11,
"weight": 558,
"hp": 100,
"attack": 100,
"defense": 80,
"types": ["ice", "ground"],
"images": {
"back_default": "back/221.png",
"front_default": "221.png",
"official": "other/official-artwork/221.png"
}
},
{
"id": 222,
"name": "corsola",
"dex": 222,
"height": 6,
"weight": 50,
"hp": 65,
"attack": 55,
"defense": 95,
"types": ["water", "rock"],
"images": {
"back_default": "back/222.png",
"front_default": "222.png",
"official": "other/official-artwork/222.png"
}
},
{
"id": 223,
"name": "remoraid",
"dex": 223,
"height": 6,
"weight": 120,
"hp": 35,
"attack": 65,
"defense": 35,
"types": ["water"],
"images": {
"back_default": "back/223.png",
"front_default": "223.png",
"official": "other/official-artwork/223.png"
}
},
{
"id": 224,
"name": "octillery",
"dex": 224,
"height": 9,
"weight": 285,
"hp": 75,
"attack": 105,
"defense": 75,
"types": ["water"],
"images": {
"back_default": "back/224.png",
"front_default": "224.png",
"official": "other/official-artwork/224.png"
}
},
{
"id": 225,
"name": "delibird",
"dex": 225,
"height": 9,
"weight": 160,
"hp": 45,
"attack": 55,
"defense": 45,
"types": ["ice", "flying"],
"images": {
"back_default": "back/225.png",
"front_default": "225.png",
"official": "other/official-artwork/225.png"
}
},
{
"id": 226,
"name": "mantine",
"dex": 226,
"height": 21,
"weight": 2200,
"hp": 85,
"attack": 40,
"defense": 70,
"types": ["water", "flying"],
"images": {
"back_default": "back/226.png",
"front_default": "226.png",
"official": "other/official-artwork/226.png"
}
},
{
"id": 227,
"name": "skarmory",
"dex": 227,
"height": 17,
"weight": 505,
"hp": 65,
"attack": 80,
"defense": 140,
"types": ["steel", "flying"],
"images": {
"back_default": "back/227.png",
"front_default": "227.png",
"official": "other/official-artwork/227.png"
}
},
{
"id": 228,
"name": "houndour",
"dex": 228,
"height": 6,
"weight": 108,
"hp": 45,
"attack": 60,
"defense": 30,
"types": ["dark", "fire"],
"images": {
"back_default": "back/228.png",
"front_default": "228.png",
"official": "other/official-artwork/228.png"
}
},
{
"id": 229,
"name": "houndoom",
"dex": 229,
"height": 14,
"weight": 350,
"hp": 75,
"attack": 90,
"defense": 50,
"types": ["dark", "fire"],
"images": {
"back_default": "back/229.png",
"front_default": "229.png",
"official": "other/official-artwork/229.png"
}
},
{
"id": 230,
"name": "kingdra",
"dex": 230,
"height": 18,
"weight": 1520,
"hp": 75,
"attack": 95,
"defense": 95,
"types": ["water", "dragon"],
"images": {
"back_default": "back/230.png",
"front_default": "230.png",
"official": "other/official-artwork/230.png"
}
},
{
"id": 231,
"name": "phanpy",
"dex": 231,
"height": 5,
"weight": 335,
"hp": 90,
"attack": 60,
"defense": 60,
"types": ["ground"],
"images": {
"back_default": "back/231.png",
"front_default": "231.png",
"official": "other/official-artwork/231.png"
}
},
{
"id": 232,
"name": "donphan",
"dex": 232,
"height": 11,
"weight": 1200,
"hp": 90,
"attack": 120,
"defense": 120,
"types": ["ground"],
"images": {
"back_default": "back/232.png",
"front_default": "232.png",
"official": "other/official-artwork/232.png"
}
},
{
"id": 233,
"name": "porygon2",
"dex": 233,
"height": 6,
"weight": 325,
"hp": 85,
"attack": 80,
"defense": 90,
"types": ["normal"],
"images": {
"back_default": "back/233.png",
"front_default": "233.png",
"official": "other/official-artwork/233.png"
}
},
{
"id": 234,
"name": "stantler",
"dex": 234,
"height": 14,
"weight": 712,
"hp": 73,
"attack": 95,
"defense": 62,
"types": ["normal"],
"images": {
"back_default": "back/234.png",
"front_default": "234.png",
"official": "other/official-artwork/234.png"
}
},
{
"id": 235,
"name": "smeargle",
"dex": 235,
"height": 12,
"weight": 580,
"hp": 55,
"attack": 20,
"defense": 35,
"types": ["normal"],
"images": {
"back_default": "back/235.png",
"front_default": "235.png",
"official": "other/official-artwork/235.png"
}
},
{
"id": 236,
"name": "tyrogue",
"dex": 236,
"height": 7,
"weight": 210,
"hp": 35,
"attack": 35,
"defense": 35,
"types": ["fighting"],
"images": {
"back_default": "back/236.png",
"front_default": "236.png",
"official": "other/official-artwork/236.png"
}
},
{
"id": 237,
"name": "hitmontop",
"dex": 237,
"height": 14,
"weight": 480,
"hp": 50,
"attack": 95,
"defense": 95,
"types": ["fighting"],
"images": {
"back_default": "back/237.png",
"front_default": "237.png",
"official": "other/official-artwork/237.png"
}
},
{
"id": 238,
"name": "smoochum",
"dex": 238,
"height": 4,
"weight": 60,
"hp": 45,
"attack": 30,
"defense": 15,
"types": ["ice", "psychic"],
"images": {
"back_default": "back/238.png",
"front_default": "238.png",
"official": "other/official-artwork/238.png"
}
},
{
"id": 239,
"name": "elekid",
"dex": 239,
"height": 6,
"weight": 235,
"hp": 45,
"attack": 63,
"defense": 37,
"types": ["electric"],
"images": {
"back_default": "back/239.png",
"front_default": "239.png",
"official": "other/official-artwork/239.png"
}
},
{
"id": 240,
"name": "magby",
"dex": 240,
"height": 7,
"weight": 214,
"hp": 45,
"attack": 75,
"defense": 37,
"types": ["fire"],
"images": {
"back_default": "back/240.png",
"front_default": "240.png",
"official": "other/official-artwork/240.png"
}
},
{
"id": 241,
"name": "miltank",
"dex": 241,
"height": 12,
"weight": 755,
"hp": 95,
"attack": 80,
"defense": 105,
"types": ["normal"],
"images": {
"back_default": "back/241.png",
"front_default": "241.png",
"official": "other/official-artwork/241.png"
}
},
{
"id": 242,
"name": "blissey",
"dex": 242,
"height": 15,
"weight": 468,
"hp": 255,
"attack": 10,
"defense": 10,
"types": ["normal"],
"images": {
"back_default": "back/242.png",
"front_default": "242.png",
"official": "other/official-artwork/242.png"
}
},
{
"id": 243,
"name": "raikou",
"dex": 243,
"height": 19,
"weight": 1780,
"hp": 90,
"attack": 85,
"defense": 75,
"types": ["electric"],
"images": {
"back_default": "back/243.png",
"front_default": "243.png",
"official": "other/official-artwork/243.png"
}
},
{
"id": 244,
"name": "entei",
"dex": 244,
"height": 21,
"weight": 1980,
"hp": 115,
"attack": 115,
"defense": 85,
"types": ["fire"],
"images": {
"back_default": "back/244.png",
"front_default": "244.png",
"official": "other/official-artwork/244.png"
}
},
{
"id": 245,
"name": "suicune",
"dex": 245,
"height": 20,
"weight": 1870,
"hp": 100,
"attack": 75,
"defense": 115,
"types": ["water"],
"images": {
"back_default": "back/245.png",
"front_default": "245.png",
"official": "other/official-artwork/245.png"
}
},
{
"id": 246,
"name": "larvitar",
"dex": 246,
"height": 6,
"weight": 720,
"hp": 50,
"attack": 64,
"defense": 50,
"types": ["rock", "ground"],
"images": {
"back_default": "back/246.png",
"front_default": "246.png",
"official": "other/official-artwork/246.png"
}
},
{
"id": 247,
"name": "pupitar",
"dex": 247,
"height": 12,
"weight": 1520,
"hp": 70,
"attack": 84,
"defense": 70,
"types": ["rock", "ground"],
"images": {
"back_default": "back/247.png",
"front_default": "247.png",
"official": "other/official-artwork/247.png"
}
},
{
"id": 248,
"name": "tyranitar",
"dex": 248,
"height": 20,
"weight": 2020,
"hp": 100,
"attack": 134,
"defense": 110,
"types": ["rock", "dark"],
"images": {
"back_default": "back/248.png",
"front_default": "248.png",
"official": "other/official-artwork/248.png"
}
},
{
"id": 249,
"name": "lugia",
"dex": 249,
"height": 52,
"weight": 2160,
"hp": 106,
"attack": 90,
"defense": 130,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/249.png",
"front_default": "249.png",
"official": "other/official-artwork/249.png"
}
},
{
"id": 250,
"name": "ho-oh",
"dex": 250,
"height": 38,
"weight": 1990,
"hp": 106,
"attack": 130,
"defense": 90,
"types": ["fire", "flying"],
"images": {
"back_default": "back/250.png",
"front_default": "250.png",
"official": "other/official-artwork/250.png"
}
},
{
"id": 251,
"name": "celebi",
"dex": 251,
"height": 6,
"weight": 50,
"hp": 100,
"attack": 100,
"defense": 100,
"types": ["psychic", "grass"],
"images": {
"back_default": "back/251.png",
"front_default": "251.png",
"official": "other/official-artwork/251.png"
}
},
{
"id": 252,
"name": "treecko",
"dex": 277,
"height": 5,
"weight": 50,
"hp": 40,
"attack": 45,
"defense": 35,
"types": ["grass"],
"images": {
"back_default": "back/252.png",
"front_default": "252.png",
"official": "other/official-artwork/252.png"
}
},
{
"id": 253,
"name": "grovyle",
"dex": 278,
"height": 9,
"weight": 216,
"hp": 50,
"attack": 65,
"defense": 45,
"types": ["grass"],
"images": {
"back_default": "back/253.png",
"front_default": "253.png",
"official": "other/official-artwork/253.png"
}
},
{
"id": 254,
"name": "sceptile",
"dex": 279,
"height": 17,
"weight": 522,
"hp": 70,
"attack": 85,
"defense": 65,
"types": ["grass"],
"images": {
"back_default": "back/254.png",
"front_default": "254.png",
"official": "other/official-artwork/254.png"
}
},
{
"id": 255,
"name": "torchic",
"dex": 280,
"height": 4,
"weight": 25,
"hp": 45,
"attack": 60,
"defense": 40,
"types": ["fire"],
"images": {
"back_default": "back/255.png",
"front_default": "255.png",
"official": "other/official-artwork/255.png"
}
},
{
"id": 256,
"name": "combusken",
"dex": 281,
"height": 9,
"weight": 195,
"hp": 60,
"attack": 85,
"defense": 60,
"types": ["fire", "fighting"],
"images": {
"back_default": "back/256.png",
"front_default": "256.png",
"official": "other/official-artwork/256.png"
}
},
{
"id": 257,
"name": "blaziken",
"dex": 282,
"height": 19,
"weight": 520,
"hp": 80,
"attack": 120,
"defense": 70,
"types": ["fire", "fighting"],
"images": {
"back_default": "back/257.png",
"front_default": "257.png",
"official": "other/official-artwork/257.png"
}
},
{
"id": 258,
"name": "mudkip",
"dex": 283,
"height": 4,
"weight": 76,
"hp": 50,
"attack": 70,
"defense": 50,
"types": ["water"],
"images": {
"back_default": "back/258.png",
"front_default": "258.png",
"official": "other/official-artwork/258.png"
}
},
{
"id": 259,
"name": "marshtomp",
"dex": 284,
"height": 7,
"weight": 280,
"hp": 70,
"attack": 85,
"defense": 70,
"types": ["water", "ground"],
"images": {
"back_default": "back/259.png",
"front_default": "259.png",
"official": "other/official-artwork/259.png"
}
},
{
"id": 260,
"name": "swampert",
"dex": 285,
"height": 15,
"weight": 819,
"hp": 100,
"attack": 110,
"defense": 90,
"types": ["water", "ground"],
"images": {
"back_default": "back/260.png",
"front_default": "260.png",
"official": "other/official-artwork/260.png"
}
},
{
"id": 261,
"name": "poochyena",
"dex": 286,
"height": 5,
"weight": 136,
"hp": 35,
"attack": 55,
"defense": 35,
"types": ["dark"],
"images": {
"back_default": "back/261.png",
"front_default": "261.png",
"official": "other/official-artwork/261.png"
}
},
{
"id": 262,
"name": "mightyena",
"dex": 287,
"height": 10,
"weight": 370,
"hp": 70,
"attack": 90,
"defense": 70,
"types": ["dark"],
"images": {
"back_default": "back/262.png",
"front_default": "262.png",
"official": "other/official-artwork/262.png"
}
},
{
"id": 263,
"name": "zigzagoon",
"dex": 288,
"height": 4,
"weight": 175,
"hp": 38,
"attack": 30,
"defense": 41,
"types": ["normal"],
"images": {
"back_default": "back/263.png",
"front_default": "263.png",
"official": "other/official-artwork/263.png"
}
},
{
"id": 264,
"name": "linoone",
"dex": 289,
"height": 5,
"weight": 325,
"hp": 78,
"attack": 70,
"defense": 61,
"types": ["normal"],
"images": {
"back_default": "back/264.png",
"front_default": "264.png",
"official": "other/official-artwork/264.png"
}
},
{
"id": 265,
"name": "wurmple",
"dex": 290,
"height": 3,
"weight": 36,
"hp": 45,
"attack": 45,
"defense": 35,
"types": ["bug"],
"images": {
"back_default": "back/265.png",
"front_default": "265.png",
"official": "other/official-artwork/265.png"
}
},
{
"id": 266,
"name": "silcoon",
"dex": 291,
"height": 6,
"weight": 100,
"hp": 50,
"attack": 35,
"defense": 55,
"types": ["bug"],
"images": {
"back_default": "back/266.png",
"front_default": "266.png",
"official": "other/official-artwork/266.png"
}
},
{
"id": 267,
"name": "beautifly",
"dex": 292,
"height": 10,
"weight": 284,
"hp": 60,
"attack": 70,
"defense": 50,
"types": ["bug", "flying"],
"images": {
"back_default": "back/267.png",
"front_default": "267.png",
"official": "other/official-artwork/267.png"
}
},
{
"id": 268,
"name": "cascoon",
"dex": 293,
"height": 7,
"weight": 115,
"hp": 50,
"attack": 35,
"defense": 55,
"types": ["bug"],
"images": {
"back_default": "back/268.png",
"front_default": "268.png",
"official": "other/official-artwork/268.png"
}
},
{
"id": 269,
"name": "dustox",
"dex": 294,
"height": 12,
"weight": 316,
"hp": 60,
"attack": 50,
"defense": 70,
"types": ["bug", "poison"],
"images": {
"back_default": "back/269.png",
"front_default": "269.png",
"official": "other/official-artwork/269.png"
}
},
{
"id": 270,
"name": "lotad",
"dex": 295,
"height": 5,
"weight": 26,
"hp": 40,
"attack": 30,
"defense": 30,
"types": ["water", "grass"],
"images": {
"back_default": "back/270.png",
"front_default": "270.png",
"official": "other/official-artwork/270.png"
}
},
{
"id": 271,
"name": "lombre",
"dex": 296,
"height": 12,
"weight": 325,
"hp": 60,
"attack": 50,
"defense": 50,
"types": ["water", "grass"],
"images": {
"back_default": "back/271.png",
"front_default": "271.png",
"official": "other/official-artwork/271.png"
}
},
{
"id": 272,
"name": "ludicolo",
"dex": 297,
"height": 15,
"weight": 550,
"hp": 80,
"attack": 70,
"defense": 70,
"types": ["water", "grass"],
"images": {
"back_default": "back/272.png",
"front_default": "272.png",
"official": "other/official-artwork/272.png"
}
},
{
"id": 273,
"name": "seedot",
"dex": 298,
"height": 5,
"weight": 40,
"hp": 40,
"attack": 40,
"defense": 50,
"types": ["grass"],
"images": {
"back_default": "back/273.png",
"front_default": "273.png",
"official": "other/official-artwork/273.png"
}
},
{
"id": 274,
"name": "nuzleaf",
"dex": 299,
"height": 10,
"weight": 280,
"hp": 70,
"attack": 70,
"defense": 40,
"types": ["grass", "dark"],
"images": {
"back_default": "back/274.png",
"front_default": "274.png",
"official": "other/official-artwork/274.png"
}
},
{
"id": 275,
"name": "shiftry",
"dex": 300,
"height": 13,
"weight": 596,
"hp": 90,
"attack": 100,
"defense": 60,
"types": ["grass", "dark"],
"images": {
"back_default": "back/275.png",
"front_default": "275.png",
"official": "other/official-artwork/275.png"
}
},
{
"id": 276,
"name": "taillow",
"dex": 304,
"height": 3,
"weight": 23,
"hp": 40,
"attack": 55,
"defense": 30,
"types": ["normal", "flying"],
"images": {
"back_default": "back/276.png",
"front_default": "276.png",
"official": "other/official-artwork/276.png"
}
},
{
"id": 277,
"name": "swellow",
"dex": 305,
"height": 7,
"weight": 198,
"hp": 60,
"attack": 85,
"defense": 60,
"types": ["normal", "flying"],
"images": {
"back_default": "back/277.png",
"front_default": "277.png",
"official": "other/official-artwork/277.png"
}
},
{
"id": 278,
"name": "wingull",
"dex": 309,
"height": 6,
"weight": 95,
"hp": 40,
"attack": 30,
"defense": 30,
"types": ["water", "flying"],
"images": {
"back_default": "back/278.png",
"front_default": "278.png",
"official": "other/official-artwork/278.png"
}
},
{
"id": 279,
"name": "pelipper",
"dex": 310,
"height": 12,
"weight": 280,
"hp": 60,
"attack": 50,
"defense": 100,
"types": ["water", "flying"],
"images": {
"back_default": "back/279.png",
"front_default": "279.png",
"official": "other/official-artwork/279.png"
}
},
{
"id": 280,
"name": "ralts",
"dex": 392,
"height": 4,
"weight": 66,
"hp": 28,
"attack": 25,
"defense": 25,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/280.png",
"front_default": "280.png",
"official": "other/official-artwork/280.png"
}
},
{
"id": 281,
"name": "kirlia",
"dex": 393,
"height": 8,
"weight": 202,
"hp": 38,
"attack": 35,
"defense": 35,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/281.png",
"front_default": "281.png",
"official": "other/official-artwork/281.png"
}
},
{
"id": 282,
"name": "gardevoir",
"dex": 394,
"height": 16,
"weight": 484,
"hp": 68,
"attack": 65,
"defense": 65,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/282.png",
"front_default": "282.png",
"official": "other/official-artwork/282.png"
}
},
{
"id": 283,
"name": "surskit",
"dex": 311,
"height": 5,
"weight": 17,
"hp": 40,
"attack": 30,
"defense": 32,
"types": ["bug", "water"],
"images": {
"back_default": "back/283.png",
"front_default": "283.png",
"official": "other/official-artwork/283.png"
}
},
{
"id": 284,
"name": "masquerain",
"dex": 312,
"height": 8,
"weight": 36,
"hp": 70,
"attack": 60,
"defense": 62,
"types": ["bug", "flying"],
"images": {
"back_default": "back/284.png",
"front_default": "284.png",
"official": "other/official-artwork/284.png"
}
},
{
"id": 285,
"name": "shroomish",
"dex": 306,
"height": 4,
"weight": 45,
"hp": 60,
"attack": 40,
"defense": 60,
"types": ["grass"],
"images": {
"back_default": "back/285.png",
"front_default": "285.png",
"official": "other/official-artwork/285.png"
}
},
{
"id": 286,
"name": "breloom",
"dex": 307,
"height": 12,
"weight": 392,
"hp": 60,
"attack": 130,
"defense": 80,
"types": ["grass", "fighting"],
"images": {
"back_default": "back/286.png",
"front_default": "286.png",
"official": "other/official-artwork/286.png"
}
},
{
"id": 287,
"name": "slakoth",
"dex": 364,
"height": 8,
"weight": 240,
"hp": 60,
"attack": 60,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/287.png",
"front_default": "287.png",
"official": "other/official-artwork/287.png"
}
},
{
"id": 288,
"name": "vigoroth",
"dex": 365,
"height": 14,
"weight": 465,
"hp": 80,
"attack": 80,
"defense": 80,
"types": ["normal"],
"images": {
"back_default": "back/288.png",
"front_default": "288.png",
"official": "other/official-artwork/288.png"
}
},
{
"id": 289,
"name": "slaking",
"dex": 366,
"height": 20,
"weight": 1305,
"hp": 150,
"attack": 160,
"defense": 100,
"types": ["normal"],
"images": {
"back_default": "back/289.png",
"front_default": "289.png",
"official": "other/official-artwork/289.png"
}
},
{
"id": 290,
"name": "nincada",
"dex": 301,
"height": 5,
"weight": 55,
"hp": 31,
"attack": 45,
"defense": 90,
"types": ["bug", "ground"],
"images": {
"back_default": "back/290.png",
"front_default": "290.png",
"official": "other/official-artwork/290.png"
}
},
{
"id": 291,
"name": "ninjask",
"dex": 302,
"height": 8,
"weight": 120,
"hp": 61,
"attack": 90,
"defense": 45,
"types": ["bug", "flying"],
"images": {
"back_default": "back/291.png",
"front_default": "291.png",
"official": "other/official-artwork/291.png"
}
},
{
"id": 292,
"name": "shedinja",
"dex": 303,
"height": 8,
"weight": 12,
"hp": 1,
"attack": 90,
"defense": 45,
"types": ["bug", "ghost"],
"images": {
"back_default": "back/292.png",
"front_default": "292.png",
"official": "other/official-artwork/292.png"
}
},
{
"id": 293,
"name": "whismur",
"dex": 370,
"height": 6,
"weight": 163,
"hp": 64,
"attack": 51,
"defense": 23,
"types": ["normal"],
"images": {
"back_default": "back/293.png",
"front_default": "293.png",
"official": "other/official-artwork/293.png"
}
},
{
"id": 294,
"name": "loudred",
"dex": 371,
"height": 10,
"weight": 405,
"hp": 84,
"attack": 71,
"defense": 43,
"types": ["normal"],
"images": {
"back_default": "back/294.png",
"front_default": "294.png",
"official": "other/official-artwork/294.png"
}
},
{
"id": 295,
"name": "exploud",
"dex": 372,
"height": 15,
"weight": 840,
"hp": 104,
"attack": 91,
"defense": 63,
"types": ["normal"],
"images": {
"back_default": "back/295.png",
"front_default": "295.png",
"official": "other/official-artwork/295.png"
}
},
{
"id": 296,
"name": "makuhita",
"dex": 335,
"height": 10,
"weight": 864,
"hp": 72,
"attack": 60,
"defense": 30,
"types": ["fighting"],
"images": {
"back_default": "back/296.png",
"front_default": "296.png",
"official": "other/official-artwork/296.png"
}
},
{
"id": 297,
"name": "hariyama",
"dex": 336,
"height": 23,
"weight": 2538,
"hp": 144,
"attack": 120,
"defense": 60,
"types": ["fighting"],
"images": {
"back_default": "back/297.png",
"front_default": "297.png",
"official": "other/official-artwork/297.png"
}
},
{
"id": 298,
"name": "azurill",
"dex": 350,
"height": 2,
"weight": 20,
"hp": 50,
"attack": 20,
"defense": 40,
"types": ["normal", "fairy"],
"images": {
"back_default": "back/298.png",
"front_default": "298.png",
"official": "other/official-artwork/298.png"
}
},
{
"id": 299,
"name": "nosepass",
"dex": 320,
"height": 10,
"weight": 970,
"hp": 30,
"attack": 45,
"defense": 135,
"types": ["rock"],
"images": {
"back_default": "back/299.png",
"front_default": "299.png",
"official": "other/official-artwork/299.png"
}
},
{
"id": 300,
"name": "skitty",
"dex": 315,
"height": 6,
"weight": 110,
"hp": 50,
"attack": 45,
"defense": 45,
"types": ["normal"],
"images": {
"back_default": "back/300.png",
"front_default": "300.png",
"official": "other/official-artwork/300.png"
}
},
{
"id": 301,
"name": "delcatty",
"dex": 316,
"height": 11,
"weight": 326,
"hp": 70,
"attack": 65,
"defense": 65,
"types": ["normal"],
"images": {
"back_default": "back/301.png",
"front_default": "301.png",
"official": "other/official-artwork/301.png"
}
},
{
"id": 302,
"name": "sableye",
"dex": 322,
"height": 5,
"weight": 110,
"hp": 50,
"attack": 75,
"defense": 75,
"types": ["dark", "ghost"],
"images": {
"back_default": "back/302.png",
"front_default": "302.png",
"official": "other/official-artwork/302.png"
}
},
{
"id": 303,
"name": "mawile",
"dex": 355,
"height": 6,
"weight": 115,
"hp": 50,
"attack": 85,
"defense": 85,
"types": ["steel", "fairy"],
"images": {
"back_default": "back/303.png",
"front_default": "303.png",
"official": "other/official-artwork/303.png"
}
},
{
"id": 304,
"name": "aron",
"dex": 382,
"height": 4,
"weight": 600,
"hp": 50,
"attack": 70,
"defense": 100,
"types": ["steel", "rock"],
"images": {
"back_default": "back/304.png",
"front_default": "304.png",
"official": "other/official-artwork/304.png"
}
},
{
"id": 305,
"name": "lairon",
"dex": 383,
"height": 9,
"weight": 1200,
"hp": 60,
"attack": 90,
"defense": 140,
"types": ["steel", "rock"],
"images": {
"back_default": "back/305.png",
"front_default": "305.png",
"official": "other/official-artwork/305.png"
}
},
{
"id": 306,
"name": "aggron",
"dex": 384,
"height": 21,
"weight": 3600,
"hp": 70,
"attack": 110,
"defense": 180,
"types": ["steel", "rock"],
"images": {
"back_default": "back/306.png",
"front_default": "306.png",
"official": "other/official-artwork/306.png"
}
},
{
"id": 307,
"name": "meditite",
"dex": 356,
"height": 6,
"weight": 112,
"hp": 30,
"attack": 40,
"defense": 55,
"types": ["fighting", "psychic"],
"images": {
"back_default": "back/307.png",
"front_default": "307.png",
"official": "other/official-artwork/307.png"
}
},
{
"id": 308,
"name": "medicham",
"dex": 357,
"height": 13,
"weight": 315,
"hp": 60,
"attack": 60,
"defense": 75,
"types": ["fighting", "psychic"],
"images": {
"back_default": "back/308.png",
"front_default": "308.png",
"official": "other/official-artwork/308.png"
}
},
{
"id": 309,
"name": "electrike",
"dex": 337,
"height": 6,
"weight": 152,
"hp": 40,
"attack": 45,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/309.png",
"front_default": "309.png",
"official": "other/official-artwork/309.png"
}
},
{
"id": 310,
"name": "manectric",
"dex": 338,
"height": 15,
"weight": 402,
"hp": 70,
"attack": 75,
"defense": 60,
"types": ["electric"],
"images": {
"back_default": "back/310.png",
"front_default": "310.png",
"official": "other/official-artwork/310.png"
}
},
{
"id": 311,
"name": "plusle",
"dex": 353,
"height": 4,
"weight": 42,
"hp": 60,
"attack": 50,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/311.png",
"front_default": "311.png",
"official": "other/official-artwork/311.png"
}
},
{
"id": 312,
"name": "minun",
"dex": 354,
"height": 4,
"weight": 42,
"hp": 60,
"attack": 40,
"defense": 50,
"types": ["electric"],
"images": {
"back_default": "back/312.png",
"front_default": "312.png",
"official": "other/official-artwork/312.png"
}
},
{
"id": 313,
"name": "volbeat",
"dex": 386,
"height": 7,
"weight": 177,
"hp": 65,
"attack": 73,
"defense": 75,
"types": ["bug"],
"images": {
"back_default": "back/313.png",
"front_default": "313.png",
"official": "other/official-artwork/313.png"
}
},
{
"id": 314,
"name": "illumise",
"dex": 387,
"height": 6,
"weight": 177,
"hp": 65,
"attack": 47,
"defense": 75,
"types": ["bug"],
"images": {
"back_default": "back/314.png",
"front_default": "314.png",
"official": "other/official-artwork/314.png"
}
},
{
"id": 315,
"name": "roselia",
"dex": 363,
"height": 3,
"weight": 20,
"hp": 50,
"attack": 60,
"defense": 45,
"types": ["grass", "poison"],
"images": {
"back_default": "back/315.png",
"front_default": "315.png",
"official": "other/official-artwork/315.png"
}
},
{
"id": 316,
"name": "gulpin",
"dex": 367,
"height": 4,
"weight": 103,
"hp": 70,
"attack": 43,
"defense": 53,
"types": ["poison"],
"images": {
"back_default": "back/316.png",
"front_default": "316.png",
"official": "other/official-artwork/316.png"
}
},
{
"id": 317,
"name": "swalot",
"dex": 368,
"height": 17,
"weight": 800,
"hp": 100,
"attack": 73,
"defense": 83,
"types": ["poison"],
"images": {
"back_default": "back/317.png",
"front_default": "317.png",
"official": "other/official-artwork/317.png"
}
},
{
"id": 318,
"name": "carvanha",
"dex": 330,
"height": 8,
"weight": 208,
"hp": 45,
"attack": 90,
"defense": 20,
"types": ["water", "dark"],
"images": {
"back_default": "back/318.png",
"front_default": "318.png",
"official": "other/official-artwork/318.png"
}
},
{
"id": 319,
"name": "sharpedo",
"dex": 331,
"height": 18,
"weight": 888,
"hp": 70,
"attack": 120,
"defense": 40,
"types": ["water", "dark"],
"images": {
"back_default": "back/319.png",
"front_default": "319.png",
"official": "other/official-artwork/319.png"
}
},
{
"id": 320,
"name": "wailmer",
"dex": 313,
"height": 20,
"weight": 1300,
"hp": 130,
"attack": 70,
"defense": 35,
"types": ["water"],
"images": {
"back_default": "back/320.png",
"front_default": "320.png",
"official": "other/official-artwork/320.png"
}
},
{
"id": 321,
"name": "wailord",
"dex": 314,
"height": 145,
"weight": 3980,
"hp": 170,
"attack": 90,
"defense": 45,
"types": ["water"],
"images": {
"back_default": "back/321.png",
"front_default": "321.png",
"official": "other/official-artwork/321.png"
}
},
{
"id": 322,
"name": "numel",
"dex": 339,
"height": 7,
"weight": 240,
"hp": 60,
"attack": 60,
"defense": 40,
"types": ["fire", "ground"],
"images": {
"back_default": "back/322.png",
"front_default": "322.png",
"official": "other/official-artwork/322.png"
}
},
{
"id": 323,
"name": "camerupt",
"dex": 340,
"height": 19,
"weight": 2200,
"hp": 70,
"attack": 100,
"defense": 70,
"types": ["fire", "ground"],
"images": {
"back_default": "back/323.png",
"front_default": "323.png",
"official": "other/official-artwork/323.png"
}
},
{
"id": 324,
"name": "torkoal",
"dex": 321,
"height": 5,
"weight": 804,
"hp": 70,
"attack": 85,
"defense": 140,
"types": ["fire"],
"images": {
"back_default": "back/324.png",
"front_default": "324.png",
"official": "other/official-artwork/324.png"
}
},
{
"id": 325,
"name": "spoink",
"dex": 351,
"height": 7,
"weight": 306,
"hp": 60,
"attack": 25,
"defense": 35,
"types": ["psychic"],
"images": {
"back_default": "back/325.png",
"front_default": "325.png",
"official": "other/official-artwork/325.png"
}
},
{
"id": 326,
"name": "grumpig",
"dex": 352,
"height": 9,
"weight": 715,
"hp": 80,
"attack": 45,
"defense": 65,
"types": ["psychic"],
"images": {
"back_default": "back/326.png",
"front_default": "326.png",
"official": "other/official-artwork/326.png"
}
},
{
"id": 327,
"name": "spinda",
"dex": 308,
"height": 11,
"weight": 50,
"hp": 60,
"attack": 60,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/327.png",
"front_default": "327.png",
"official": "other/official-artwork/327.png"
}
},
{
"id": 328,
"name": "trapinch",
"dex": 332,
"height": 7,
"weight": 150,
"hp": 45,
"attack": 100,
"defense": 45,
"types": ["ground"],
"images": {
"back_default": "back/328.png",
"front_default": "328.png",
"official": "other/official-artwork/328.png"
}
},
{
"id": 329,
"name": "vibrava",
"dex": 333,
"height": 11,
"weight": 153,
"hp": 50,
"attack": 70,
"defense": 50,
"types": ["ground", "dragon"],
"images": {
"back_default": "back/329.png",
"front_default": "329.png",
"official": "other/official-artwork/329.png"
}
},
{
"id": 330,
"name": "flygon",
"dex": 334,
"height": 20,
"weight": 820,
"hp": 80,
"attack": 100,
"defense": 80,
"types": ["ground", "dragon"],
"images": {
"back_default": "back/330.png",
"front_default": "330.png",
"official": "other/official-artwork/330.png"
}
},
{
"id": 331,
"name": "cacnea",
"dex": 344,
"height": 4,
"weight": 513,
"hp": 50,
"attack": 85,
"defense": 40,
"types": ["grass"],
"images": {
"back_default": "back/331.png",
"front_default": "331.png",
"official": "other/official-artwork/331.png"
}
},
{
"id": 332,
"name": "cacturne",
"dex": 345,
"height": 13,
"weight": 774,
"hp": 70,
"attack": 115,
"defense": 60,
"types": ["grass", "dark"],
"images": {
"back_default": "back/332.png",
"front_default": "332.png",
"official": "other/official-artwork/332.png"
}
},
{
"id": 333,
"name": "swablu",
"dex": 358,
"height": 4,
"weight": 12,
"hp": 45,
"attack": 40,
"defense": 60,
"types": ["normal", "flying"],
"images": {
"back_default": "back/333.png",
"front_default": "333.png",
"official": "other/official-artwork/333.png"
}
},
{
"id": 334,
"name": "altaria",
"dex": 359,
"height": 11,
"weight": 206,
"hp": 75,
"attack": 70,
"defense": 90,
"types": ["dragon", "flying"],
"images": {
"back_default": "back/334.png",
"front_default": "334.png",
"official": "other/official-artwork/334.png"
}
},
{
"id": 335,
"name": "zangoose",
"dex": 380,
"height": 13,
"weight": 403,
"hp": 73,
"attack": 115,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/335.png",
"front_default": "335.png",
"official": "other/official-artwork/335.png"
}
},
{
"id": 336,
"name": "seviper",
"dex": 379,
"height": 27,
"weight": 525,
"hp": 73,
"attack": 100,
"defense": 60,
"types": ["poison"],
"images": {
"back_default": "back/336.png",
"front_default": "336.png",
"official": "other/official-artwork/336.png"
}
},
{
"id": 337,
"name": "lunatone",
"dex": 348,
"height": 10,
"weight": 1680,
"hp": 90,
"attack": 55,
"defense": 65,
"types": ["rock", "psychic"],
"images": {
"back_default": "back/337.png",
"front_default": "337.png",
"official": "other/official-artwork/337.png"
}
},
{
"id": 338,
"name": "solrock",
"dex": 349,
"height": 12,
"weight": 1540,
"hp": 90,
"attack": 95,
"defense": 85,
"types": ["rock", "psychic"],
"images": {
"back_default": "back/338.png",
"front_default": "338.png",
"official": "other/official-artwork/338.png"
}
},
{
"id": 339,
"name": "barboach",
"dex": 323,
"height": 4,
"weight": 19,
"hp": 50,
"attack": 48,
"defense": 43,
"types": ["water", "ground"],
"images": {
"back_default": "back/339.png",
"front_default": "339.png",
"official": "other/official-artwork/339.png"
}
},
{
"id": 340,
"name": "whiscash",
"dex": 324,
"height": 9,
"weight": 236,
"hp": 110,
"attack": 78,
"defense": 73,
"types": ["water", "ground"],
"images": {
"back_default": "back/340.png",
"front_default": "340.png",
"official": "other/official-artwork/340.png"
}
},
{
"id": 341,
"name": "corphish",
"dex": 326,
"height": 6,
"weight": 115,
"hp": 43,
"attack": 80,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/341.png",
"front_default": "341.png",
"official": "other/official-artwork/341.png"
}
},
{
"id": 342,
"name": "crawdaunt",
"dex": 327,
"height": 11,
"weight": 328,
"hp": 63,
"attack": 120,
"defense": 85,
"types": ["water", "dark"],
"images": {
"back_default": "back/342.png",
"front_default": "342.png",
"official": "other/official-artwork/342.png"
}
},
{
"id": 343,
"name": "baltoy",
"dex": 318,
"height": 5,
"weight": 215,
"hp": 40,
"attack": 40,
"defense": 55,
"types": ["ground", "psychic"],
"images": {
"back_default": "back/343.png",
"front_default": "343.png",
"official": "other/official-artwork/343.png"
}
},
{
"id": 344,
"name": "claydol",
"dex": 319,
"height": 15,
"weight": 1080,
"hp": 60,
"attack": 70,
"defense": 105,
"types": ["ground", "psychic"],
"images": {
"back_default": "back/344.png",
"front_default": "344.png",
"official": "other/official-artwork/344.png"
}
},
{
"id": 345,
"name": "lileep",
"dex": 388,
"height": 10,
"weight": 238,
"hp": 66,
"attack": 41,
"defense": 77,
"types": ["rock", "grass"],
"images": {
"back_default": "back/345.png",
"front_default": "345.png",
"official": "other/official-artwork/345.png"
}
},
{
"id": 346,
"name": "cradily",
"dex": 389,
"height": 15,
"weight": 604,
"hp": 86,
"attack": 81,
"defense": 97,
"types": ["rock", "grass"],
"images": {
"back_default": "back/346.png",
"front_default": "346.png",
"official": "other/official-artwork/346.png"
}
},
{
"id": 347,
"name": "anorith",
"dex": 390,
"height": 7,
"weight": 125,
"hp": 45,
"attack": 95,
"defense": 50,
"types": ["rock", "bug"],
"images": {
"back_default": "back/347.png",
"front_default": "347.png",
"official": "other/official-artwork/347.png"
}
},
{
"id": 348,
"name": "armaldo",
"dex": 391,
"height": 15,
"weight": 682,
"hp": 75,
"attack": 125,
"defense": 100,
"types": ["rock", "bug"],
"images": {
"back_default": "back/348.png",
"front_default": "348.png",
"official": "other/official-artwork/348.png"
}
},
{
"id": 349,
"name": "feebas",
"dex": 328,
"height": 6,
"weight": 74,
"hp": 20,
"attack": 15,
"defense": 20,
"types": ["water"],
"images": {
"back_default": "back/349.png",
"front_default": "349.png",
"official": "other/official-artwork/349.png"
}
},
{
"id": 350,
"name": "milotic",
"dex": 329,
"height": 62,
"weight": 1620,
"hp": 95,
"attack": 60,
"defense": 79,
"types": ["water"],
"images": {
"back_default": "back/350.png",
"front_default": "350.png",
"official": "other/official-artwork/350.png"
}
},
{
"id": 351,
"name": "castform",
"dex": 385,
"height": 3,
"weight": 8,
"hp": 70,
"attack": 70,
"defense": 70,
"types": ["normal"],
"images": {
"back_default": "back/351.png",
"front_default": "351.png",
"official": "other/official-artwork/351.png"
}
},
{
"id": 352,
"name": "kecleon",
"dex": 317,
"height": 10,
"weight": 220,
"hp": 60,
"attack": 90,
"defense": 70,
"types": ["normal"],
"images": {
"back_default": "back/352.png",
"front_default": "352.png",
"official": "other/official-artwork/352.png"
}
},
{
"id": 353,
"name": "shuppet",
"dex": 377,
"height": 6,
"weight": 23,
"hp": 44,
"attack": 75,
"defense": 35,
"types": ["ghost"],
"images": {
"back_default": "back/353.png",
"front_default": "353.png",
"official": "other/official-artwork/353.png"
}
},
{
"id": 354,
"name": "banette",
"dex": 378,
"height": 11,
"weight": 125,
"hp": 64,
"attack": 115,
"defense": 65,
"types": ["ghost"],
"images": {
"back_default": "back/354.png",
"front_default": "354.png",
"official": "other/official-artwork/354.png"
}
},
{
"id": 355,
"name": "duskull",
"dex": 361,
"height": 8,
"weight": 150,
"hp": 20,
"attack": 40,
"defense": 90,
"types": ["ghost"],
"images": {
"back_default": "back/355.png",
"front_default": "355.png",
"official": "other/official-artwork/355.png"
}
},
{
"id": 356,
"name": "dusclops",
"dex": 362,
"height": 16,
"weight": 306,
"hp": 40,
"attack": 70,
"defense": 130,
"types": ["ghost"],
"images": {
"back_default": "back/356.png",
"front_default": "356.png",
"official": "other/official-artwork/356.png"
}
},
{
"id": 357,
"name": "tropius",
"dex": 369,
"height": 20,
"weight": 1000,
"hp": 99,
"attack": 68,
"defense": 83,
"types": ["grass", "flying"],
"images": {
"back_default": "back/357.png",
"front_default": "357.png",
"official": "other/official-artwork/357.png"
}
},
{
"id": 358,
"name": "chimecho",
"dex": 411,
"height": 6,
"weight": 10,
"hp": 75,
"attack": 50,
"defense": 80,
"types": ["psychic"],
"images": {
"back_default": "back/358.png",
"front_default": "358.png",
"official": "other/official-artwork/358.png"
}
},
{
"id": 359,
"name": "absol",
"dex": 376,
"height": 12,
"weight": 470,
"hp": 65,
"attack": 130,
"defense": 60,
"types": ["dark"],
"images": {
"back_default": "back/359.png",
"front_default": "359.png",
"official": "other/official-artwork/359.png"
}
},
{
"id": 360,
"name": "wynaut",
"dex": 360,
"height": 6,
"weight": 140,
"hp": 95,
"attack": 23,
"defense": 48,
"types": ["psychic"],
"images": {
"back_default": "back/360.png",
"front_default": "360.png",
"official": "other/official-artwork/360.png"
}
},
{
"id": 361,
"name": "snorunt",
"dex": 346,
"height": 7,
"weight": 168,
"hp": 50,
"attack": 50,
"defense": 50,
"types": ["ice"],
"images": {
"back_default": "back/361.png",
"front_default": "361.png",
"official": "other/official-artwork/361.png"
}
},
{
"id": 362,
"name": "glalie",
"dex": 347,
"height": 15,
"weight": 2565,
"hp": 80,
"attack": 80,
"defense": 80,
"types": ["ice"],
"images": {
"back_default": "back/362.png",
"front_default": "362.png",
"official": "other/official-artwork/362.png"
}
},
{
"id": 363,
"name": "spheal",
"dex": 341,
"height": 8,
"weight": 395,
"hp": 70,
"attack": 40,
"defense": 50,
"types": ["ice", "water"],
"images": {
"back_default": "back/363.png",
"front_default": "363.png",
"official": "other/official-artwork/363.png"
}
},
{
"id": 364,
"name": "sealeo",
"dex": 342,
"height": 11,
"weight": 876,
"hp": 90,
"attack": 60,
"defense": 70,
"types": ["ice", "water"],
"images": {
"back_default": "back/364.png",
"front_default": "364.png",
"official": "other/official-artwork/364.png"
}
},
{
"id": 365,
"name": "walrein",
"dex": 343,
"height": 14,
"weight": 1506,
"hp": 110,
"attack": 80,
"defense": 90,
"types": ["ice", "water"],
"images": {
"back_default": "back/365.png",
"front_default": "365.png",
"official": "other/official-artwork/365.png"
}
},
{
"id": 366,
"name": "clamperl",
"dex": 373,
"height": 4,
"weight": 525,
"hp": 35,
"attack": 64,
"defense": 85,
"types": ["water"],
"images": {
"back_default": "back/366.png",
"front_default": "366.png",
"official": "other/official-artwork/366.png"
}
},
{
"id": 367,
"name": "huntail",
"dex": 374,
"height": 17,
"weight": 270,
"hp": 55,
"attack": 104,
"defense": 105,
"types": ["water"],
"images": {
"back_default": "back/367.png",
"front_default": "367.png",
"official": "other/official-artwork/367.png"
}
},
{
"id": 368,
"name": "gorebyss",
"dex": 375,
"height": 18,
"weight": 226,
"hp": 55,
"attack": 84,
"defense": 105,
"types": ["water"],
"images": {
"back_default": "back/368.png",
"front_default": "368.png",
"official": "other/official-artwork/368.png"
}
},
{
"id": 369,
"name": "relicanth",
"dex": 381,
"height": 10,
"weight": 234,
"hp": 100,
"attack": 90,
"defense": 130,
"types": ["water", "rock"],
"images": {
"back_default": "back/369.png",
"front_default": "369.png",
"official": "other/official-artwork/369.png"
}
},
{
"id": 370,
"name": "luvdisc",
"dex": 325,
"height": 6,
"weight": 87,
"hp": 43,
"attack": 30,
"defense": 55,
"types": ["water"],
"images": {
"back_default": "back/370.png",
"front_default": "370.png",
"official": "other/official-artwork/370.png"
}
},
{
"id": 371,
"name": "bagon",
"dex": 395,
"height": 6,
"weight": 421,
"hp": 45,
"attack": 75,
"defense": 60,
"types": ["dragon"],
"images": {
"back_default": "back/371.png",
"front_default": "371.png",
"official": "other/official-artwork/371.png"
}
},
{
"id": 372,
"name": "shelgon",
"dex": 396,
"height": 11,
"weight": 1105,
"hp": 65,
"attack": 95,
"defense": 100,
"types": ["dragon"],
"images": {
"back_default": "back/372.png",
"front_default": "372.png",
"official": "other/official-artwork/372.png"
}
},
{
"id": 373,
"name": "salamence",
"dex": 397,
"height": 15,
"weight": 1026,
"hp": 95,
"attack": 135,
"defense": 80,
"types": ["dragon", "flying"],
"images": {
"back_default": "back/373.png",
"front_default": "373.png",
"official": "other/official-artwork/373.png"
}
},
{
"id": 374,
"name": "beldum",
"dex": 398,
"height": 6,
"weight": 952,
"hp": 40,
"attack": 55,
"defense": 80,
"types": ["steel", "psychic"],
"images": {
"back_default": "back/374.png",
"front_default": "374.png",
"official": "other/official-artwork/374.png"
}
},
{
"id": 375,
"name": "metang",
"dex": 399,
"height": 12,
"weight": 2025,
"hp": 60,
"attack": 75,
"defense": 100,
"types": ["steel", "psychic"],
"images": {
"back_default": "back/375.png",
"front_default": "375.png",
"official": "other/official-artwork/375.png"
}
},
{
"id": 376,
"name": "metagross",
"dex": 400,
"height": 16,
"weight": 5500,
"hp": 80,
"attack": 135,
"defense": 130,
"types": ["steel", "psychic"],
"images": {
"back_default": "back/376.png",
"front_default": "376.png",
"official": "other/official-artwork/376.png"
}
},
{
"id": 377,
"name": "regirock",
"dex": 401,
"height": 17,
"weight": 2300,
"hp": 80,
"attack": 100,
"defense": 200,
"types": ["rock"],
"images": {
"back_default": "back/377.png",
"front_default": "377.png",
"official": "other/official-artwork/377.png"
}
},
{
"id": 378,
"name": "regice",
"dex": 402,
"height": 18,
"weight": 1750,
"hp": 80,
"attack": 50,
"defense": 100,
"types": ["ice"],
"images": {
"back_default": "back/378.png",
"front_default": "378.png",
"official": "other/official-artwork/378.png"
}
},
{
"id": 379,
"name": "registeel",
"dex": 403,
"height": 19,
"weight": 2050,
"hp": 80,
"attack": 75,
"defense": 150,
"types": ["steel"],
"images": {
"back_default": "back/379.png",
"front_default": "379.png",
"official": "other/official-artwork/379.png"
}
},
{
"id": 380,
"name": "latias",
"dex": 407,
"height": 14,
"weight": 400,
"hp": 80,
"attack": 80,
"defense": 90,
"types": ["dragon", "psychic"],
"images": {
"back_default": "back/380.png",
"front_default": "380.png",
"official": "other/official-artwork/380.png"
}
},
{
"id": 381,
"name": "latios",
"dex": 408,
"height": 20,
"weight": 600,
"hp": 80,
"attack": 90,
"defense": 80,
"types": ["dragon", "psychic"],
"images": {
"back_default": "back/381.png",
"front_default": "381.png",
"official": "other/official-artwork/381.png"
}
},
{
"id": 382,
"name": "kyogre",
"dex": 404,
"height": 45,
"weight": 3520,
"hp": 100,
"attack": 100,
"defense": 90,
"types": ["water"],
"images": {
"back_default": "back/382.png",
"front_default": "382.png",
"official": "other/official-artwork/382.png"
}
},
{
"id": 383,
"name": "groudon",
"dex": 405,
"height": 35,
"weight": 9500,
"hp": 100,
"attack": 150,
"defense": 140,
"types": ["ground"],
"images": {
"back_default": "back/383.png",
"front_default": "383.png",
"official": "other/official-artwork/383.png"
}
},
{
"id": 384,
"name": "rayquaza",
"dex": 406,
"height": 70,
"weight": 2065,
"hp": 105,
"attack": 150,
"defense": 90,
"types": ["dragon", "flying"],
"images": {
"back_default": "back/384.png",
"front_default": "384.png",
"official": "other/official-artwork/384.png"
}
},
{
"id": 385,
"name": "jirachi",
"dex": 409,
"height": 3,
"weight": 11,
"hp": 100,
"attack": 100,
"defense": 100,
"types": ["steel", "psychic"],
"images": {
"back_default": "back/385.png",
"front_default": "385.png",
"official": "other/official-artwork/385.png"
}
},
{
"id": 386,
"name": "deoxys-normal",
"dex": 410,
"height": 17,
"weight": 608,
"hp": 50,
"attack": 150,
"defense": 50,
"types": ["psychic"],
"images": {
"back_default": "back/386.png",
"front_default": "386.png",
"official": "other/official-artwork/386.png"
}
},
{
"id": 387,
"name": "turtwig",
"dex": 387,
"height": 4,
"weight": 102,
"hp": 55,
"attack": 68,
"defense": 64,
"types": ["grass"],
"images": {
"back_default": "back/387.png",
"front_default": "387.png",
"official": "other/official-artwork/387.png"
}
},
{
"id": 388,
"name": "grotle",
"dex": 388,
"height": 11,
"weight": 970,
"hp": 75,
"attack": 89,
"defense": 85,
"types": ["grass"],
"images": {
"back_default": "back/388.png",
"front_default": "388.png",
"official": "other/official-artwork/388.png"
}
},
{
"id": 389,
"name": "torterra",
"dex": 389,
"height": 22,
"weight": 3100,
"hp": 95,
"attack": 109,
"defense": 105,
"types": ["grass", "ground"],
"images": {
"back_default": "back/389.png",
"front_default": "389.png",
"official": "other/official-artwork/389.png"
}
},
{
"id": 390,
"name": "chimchar",
"dex": 390,
"height": 5,
"weight": 62,
"hp": 44,
"attack": 58,
"defense": 44,
"types": ["fire"],
"images": {
"back_default": "back/390.png",
"front_default": "390.png",
"official": "other/official-artwork/390.png"
}
},
{
"id": 391,
"name": "monferno",
"dex": 391,
"height": 9,
"weight": 220,
"hp": 64,
"attack": 78,
"defense": 52,
"types": ["fire", "fighting"],
"images": {
"back_default": "back/391.png",
"front_default": "391.png",
"official": "other/official-artwork/391.png"
}
},
{
"id": 392,
"name": "infernape",
"dex": 392,
"height": 12,
"weight": 550,
"hp": 76,
"attack": 104,
"defense": 71,
"types": ["fire", "fighting"],
"images": {
"back_default": "back/392.png",
"front_default": "392.png",
"official": "other/official-artwork/392.png"
}
},
{
"id": 393,
"name": "piplup",
"dex": 393,
"height": 4,
"weight": 52,
"hp": 53,
"attack": 51,
"defense": 53,
"types": ["water"],
"images": {
"back_default": "back/393.png",
"front_default": "393.png",
"official": "other/official-artwork/393.png"
}
},
{
"id": 394,
"name": "prinplup",
"dex": 394,
"height": 8,
"weight": 230,
"hp": 64,
"attack": 66,
"defense": 68,
"types": ["water"],
"images": {
"back_default": "back/394.png",
"front_default": "394.png",
"official": "other/official-artwork/394.png"
}
},
{
"id": 395,
"name": "empoleon",
"dex": 395,
"height": 17,
"weight": 845,
"hp": 84,
"attack": 86,
"defense": 88,
"types": ["water", "steel"],
"images": {
"back_default": "back/395.png",
"front_default": "395.png",
"official": "other/official-artwork/395.png"
}
},
{
"id": 396,
"name": "starly",
"dex": 396,
"height": 3,
"weight": 20,
"hp": 40,
"attack": 55,
"defense": 30,
"types": ["normal", "flying"],
"images": {
"back_default": "back/396.png",
"front_default": "396.png",
"official": "other/official-artwork/396.png"
}
},
{
"id": 397,
"name": "staravia",
"dex": 397,
"height": 6,
"weight": 155,
"hp": 55,
"attack": 75,
"defense": 50,
"types": ["normal", "flying"],
"images": {
"back_default": "back/397.png",
"front_default": "397.png",
"official": "other/official-artwork/397.png"
}
},
{
"id": 398,
"name": "staraptor",
"dex": 398,
"height": 12,
"weight": 249,
"hp": 85,
"attack": 120,
"defense": 70,
"types": ["normal", "flying"],
"images": {
"back_default": "back/398.png",
"front_default": "398.png",
"official": "other/official-artwork/398.png"
}
},
{
"id": 399,
"name": "bidoof",
"dex": 399,
"height": 5,
"weight": 200,
"hp": 59,
"attack": 45,
"defense": 40,
"types": ["normal"],
"images": {
"back_default": "back/399.png",
"front_default": "399.png",
"official": "other/official-artwork/399.png"
}
},
{
"id": 400,
"name": "bibarel",
"dex": 400,
"height": 10,
"weight": 315,
"hp": 79,
"attack": 85,
"defense": 60,
"types": ["normal", "water"],
"images": {
"back_default": "back/400.png",
"front_default": "400.png",
"official": "other/official-artwork/400.png"
}
},
{
"id": 401,
"name": "kricketot",
"dex": 401,
"height": 3,
"weight": 22,
"hp": 37,
"attack": 25,
"defense": 41,
"types": ["bug"],
"images": {
"back_default": "back/401.png",
"front_default": "401.png",
"official": "other/official-artwork/401.png"
}
},
{
"id": 402,
"name": "kricketune",
"dex": 402,
"height": 10,
"weight": 255,
"hp": 77,
"attack": 85,
"defense": 51,
"types": ["bug"],
"images": {
"back_default": "back/402.png",
"front_default": "402.png",
"official": "other/official-artwork/402.png"
}
},
{
"id": 403,
"name": "shinx",
"dex": 403,
"height": 5,
"weight": 95,
"hp": 45,
"attack": 65,
"defense": 34,
"types": ["electric"],
"images": {
"back_default": "back/403.png",
"front_default": "403.png",
"official": "other/official-artwork/403.png"
}
},
{
"id": 404,
"name": "luxio",
"dex": 404,
"height": 9,
"weight": 305,
"hp": 60,
"attack": 85,
"defense": 49,
"types": ["electric"],
"images": {
"back_default": "back/404.png",
"front_default": "404.png",
"official": "other/official-artwork/404.png"
}
},
{
"id": 405,
"name": "luxray",
"dex": 405,
"height": 14,
"weight": 420,
"hp": 80,
"attack": 120,
"defense": 79,
"types": ["electric"],
"images": {
"back_default": "back/405.png",
"front_default": "405.png",
"official": "other/official-artwork/405.png"
}
},
{
"id": 406,
"name": "budew",
"dex": 406,
"height": 2,
"weight": 12,
"hp": 40,
"attack": 30,
"defense": 35,
"types": ["grass", "poison"],
"images": {
"back_default": "back/406.png",
"front_default": "406.png",
"official": "other/official-artwork/406.png"
}
},
{
"id": 407,
"name": "roserade",
"dex": 407,
"height": 9,
"weight": 145,
"hp": 60,
"attack": 70,
"defense": 65,
"types": ["grass", "poison"],
"images": {
"back_default": "back/407.png",
"front_default": "407.png",
"official": "other/official-artwork/407.png"
}
},
{
"id": 408,
"name": "cranidos",
"dex": 408,
"height": 9,
"weight": 315,
"hp": 67,
"attack": 125,
"defense": 40,
"types": ["rock"],
"images": {
"back_default": "back/408.png",
"front_default": "408.png",
"official": "other/official-artwork/408.png"
}
},
{
"id": 409,
"name": "rampardos",
"dex": 409,
"height": 16,
"weight": 1025,
"hp": 97,
"attack": 165,
"defense": 60,
"types": ["rock"],
"images": {
"back_default": "back/409.png",
"front_default": "409.png",
"official": "other/official-artwork/409.png"
}
},
{
"id": 410,
"name": "shieldon",
"dex": 410,
"height": 5,
"weight": 570,
"hp": 30,
"attack": 42,
"defense": 118,
"types": ["rock", "steel"],
"images": {
"back_default": "back/410.png",
"front_default": "410.png",
"official": "other/official-artwork/410.png"
}
},
{
"id": 411,
"name": "bastiodon",
"dex": 411,
"height": 13,
"weight": 1495,
"hp": 60,
"attack": 52,
"defense": 168,
"types": ["rock", "steel"],
"images": {
"back_default": "back/411.png",
"front_default": "411.png",
"official": "other/official-artwork/411.png"
}
},
{
"id": 412,
"name": "burmy",
"dex": 412,
"height": 2,
"weight": 34,
"hp": 40,
"attack": 29,
"defense": 45,
"types": ["bug"],
"images": {
"back_default": "back/412.png",
"front_default": "412.png",
"official": "other/official-artwork/412.png"
}
},
{
"id": 413,
"name": "wormadam-plant",
"dex": 413,
"height": 5,
"weight": 65,
"hp": 60,
"attack": 59,
"defense": 85,
"types": ["bug", "grass"],
"images": {
"back_default": "back/413.png",
"front_default": "413.png",
"official": "other/official-artwork/413.png"
}
},
{
"id": 414,
"name": "mothim",
"dex": 414,
"height": 9,
"weight": 233,
"hp": 70,
"attack": 94,
"defense": 50,
"types": ["bug", "flying"],
"images": {
"back_default": "back/414.png",
"front_default": "414.png",
"official": "other/official-artwork/414.png"
}
},
{
"id": 415,
"name": "combee",
"dex": 415,
"height": 3,
"weight": 55,
"hp": 30,
"attack": 30,
"defense": 42,
"types": ["bug", "flying"],
"images": {
"back_default": "back/415.png",
"front_default": "415.png",
"official": "other/official-artwork/415.png"
}
},
{
"id": 416,
"name": "vespiquen",
"dex": 416,
"height": 12,
"weight": 385,
"hp": 70,
"attack": 80,
"defense": 102,
"types": ["bug", "flying"],
"images": {
"back_default": "back/416.png",
"front_default": "416.png",
"official": "other/official-artwork/416.png"
}
},
{
"id": 417,
"name": "pachirisu",
"dex": 417,
"height": 4,
"weight": 39,
"hp": 60,
"attack": 45,
"defense": 70,
"types": ["electric"],
"images": {
"back_default": "back/417.png",
"front_default": "417.png",
"official": "other/official-artwork/417.png"
}
},
{
"id": 418,
"name": "buizel",
"dex": 418,
"height": 7,
"weight": 295,
"hp": 55,
"attack": 65,
"defense": 35,
"types": ["water"],
"images": {
"back_default": "back/418.png",
"front_default": "418.png",
"official": "other/official-artwork/418.png"
}
},
{
"id": 419,
"name": "floatzel",
"dex": 419,
"height": 11,
"weight": 335,
"hp": 85,
"attack": 105,
"defense": 55,
"types": ["water"],
"images": {
"back_default": "back/419.png",
"front_default": "419.png",
"official": "other/official-artwork/419.png"
}
},
{
"id": 420,
"name": "cherubi",
"dex": 420,
"height": 4,
"weight": 33,
"hp": 45,
"attack": 35,
"defense": 45,
"types": ["grass"],
"images": {
"back_default": "back/420.png",
"front_default": "420.png",
"official": "other/official-artwork/420.png"
}
},
{
"id": 421,
"name": "cherrim",
"dex": 421,
"height": 5,
"weight": 93,
"hp": 70,
"attack": 60,
"defense": 70,
"types": ["grass"],
"images": {
"back_default": "back/421.png",
"front_default": "421.png",
"official": "other/official-artwork/421.png"
}
},
{
"id": 422,
"name": "shellos",
"dex": 422,
"height": 3,
"weight": 63,
"hp": 76,
"attack": 48,
"defense": 48,
"types": ["water"],
"images": {
"back_default": "back/422.png",
"front_default": "422.png",
"official": "other/official-artwork/422.png"
}
},
{
"id": 423,
"name": "gastrodon",
"dex": 423,
"height": 9,
"weight": 299,
"hp": 111,
"attack": 83,
"defense": 68,
"types": ["water", "ground"],
"images": {
"back_default": "back/423.png",
"front_default": "423.png",
"official": "other/official-artwork/423.png"
}
},
{
"id": 424,
"name": "ambipom",
"dex": 424,
"height": 12,
"weight": 203,
"hp": 75,
"attack": 100,
"defense": 66,
"types": ["normal"],
"images": {
"back_default": "back/424.png",
"front_default": "424.png",
"official": "other/official-artwork/424.png"
}
},
{
"id": 425,
"name": "drifloon",
"dex": 425,
"height": 4,
"weight": 12,
"hp": 90,
"attack": 50,
"defense": 34,
"types": ["ghost", "flying"],
"images": {
"back_default": "back/425.png",
"front_default": "425.png",
"official": "other/official-artwork/425.png"
}
},
{
"id": 426,
"name": "drifblim",
"dex": 426,
"height": 12,
"weight": 150,
"hp": 150,
"attack": 80,
"defense": 44,
"types": ["ghost", "flying"],
"images": {
"back_default": "back/426.png",
"front_default": "426.png",
"official": "other/official-artwork/426.png"
}
},
{
"id": 427,
"name": "buneary",
"dex": 427,
"height": 4,
"weight": 55,
"hp": 55,
"attack": 66,
"defense": 44,
"types": ["normal"],
"images": {
"back_default": "back/427.png",
"front_default": "427.png",
"official": "other/official-artwork/427.png"
}
},
{
"id": 428,
"name": "lopunny",
"dex": 428,
"height": 12,
"weight": 333,
"hp": 65,
"attack": 76,
"defense": 84,
"types": ["normal"],
"images": {
"back_default": "back/428.png",
"front_default": "428.png",
"official": "other/official-artwork/428.png"
}
},
{
"id": 429,
"name": "mismagius",
"dex": 429,
"height": 9,
"weight": 44,
"hp": 60,
"attack": 60,
"defense": 60,
"types": ["ghost"],
"images": {
"back_default": "back/429.png",
"front_default": "429.png",
"official": "other/official-artwork/429.png"
}
},
{
"id": 430,
"name": "honchkrow",
"dex": 430,
"height": 9,
"weight": 273,
"hp": 100,
"attack": 125,
"defense": 52,
"types": ["dark", "flying"],
"images": {
"back_default": "back/430.png",
"front_default": "430.png",
"official": "other/official-artwork/430.png"
}
},
{
"id": 431,
"name": "glameow",
"dex": 431,
"height": 5,
"weight": 39,
"hp": 49,
"attack": 55,
"defense": 42,
"types": ["normal"],
"images": {
"back_default": "back/431.png",
"front_default": "431.png",
"official": "other/official-artwork/431.png"
}
},
{
"id": 432,
"name": "purugly",
"dex": 432,
"height": 10,
"weight": 438,
"hp": 71,
"attack": 82,
"defense": 64,
"types": ["normal"],
"images": {
"back_default": "back/432.png",
"front_default": "432.png",
"official": "other/official-artwork/432.png"
}
},
{
"id": 433,
"name": "chingling",
"dex": 433,
"height": 2,
"weight": 6,
"hp": 45,
"attack": 30,
"defense": 50,
"types": ["psychic"],
"images": {
"back_default": "back/433.png",
"front_default": "433.png",
"official": "other/official-artwork/433.png"
}
},
{
"id": 434,
"name": "stunky",
"dex": 434,
"height": 4,
"weight": 192,
"hp": 63,
"attack": 63,
"defense": 47,
"types": ["poison", "dark"],
"images": {
"back_default": "back/434.png",
"front_default": "434.png",
"official": "other/official-artwork/434.png"
}
},
{
"id": 435,
"name": "skuntank",
"dex": 435,
"height": 10,
"weight": 380,
"hp": 103,
"attack": 93,
"defense": 67,
"types": ["poison", "dark"],
"images": {
"back_default": "back/435.png",
"front_default": "435.png",
"official": "other/official-artwork/435.png"
}
},
{
"id": 436,
"name": "bronzor",
"dex": 436,
"height": 5,
"weight": 605,
"hp": 57,
"attack": 24,
"defense": 86,
"types": ["steel", "psychic"],
"images": {
"back_default": "back/436.png",
"front_default": "436.png",
"official": "other/official-artwork/436.png"
}
},
{
"id": 437,
"name": "bronzong",
"dex": 437,
"height": 13,
"weight": 1870,
"hp": 67,
"attack": 89,
"defense": 116,
"types": ["steel", "psychic"],
"images": {
"back_default": "back/437.png",
"front_default": "437.png",
"official": "other/official-artwork/437.png"
}
},
{
"id": 438,
"name": "bonsly",
"dex": 438,
"height": 5,
"weight": 150,
"hp": 50,
"attack": 80,
"defense": 95,
"types": ["rock"],
"images": {
"back_default": "back/438.png",
"front_default": "438.png",
"official": "other/official-artwork/438.png"
}
},
{
"id": 439,
"name": "mime-jr",
"dex": 439,
"height": 6,
"weight": 130,
"hp": 20,
"attack": 25,
"defense": 45,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/439.png",
"front_default": "439.png",
"official": "other/official-artwork/439.png"
}
},
{
"id": 440,
"name": "happiny",
"dex": 440,
"height": 6,
"weight": 244,
"hp": 100,
"attack": 5,
"defense": 5,
"types": ["normal"],
"images": {
"back_default": "back/440.png",
"front_default": "440.png",
"official": "other/official-artwork/440.png"
}
},
{
"id": 441,
"name": "chatot",
"dex": 441,
"height": 5,
"weight": 19,
"hp": 76,
"attack": 65,
"defense": 45,
"types": ["normal", "flying"],
"images": {
"back_default": "back/441.png",
"front_default": "441.png",
"official": "other/official-artwork/441.png"
}
},
{
"id": 442,
"name": "spiritomb",
"dex": 442,
"height": 10,
"weight": 1080,
"hp": 50,
"attack": 92,
"defense": 108,
"types": ["ghost", "dark"],
"images": {
"back_default": "back/442.png",
"front_default": "442.png",
"official": "other/official-artwork/442.png"
}
},
{
"id": 443,
"name": "gible",
"dex": 443,
"height": 7,
"weight": 205,
"hp": 58,
"attack": 70,
"defense": 45,
"types": ["dragon", "ground"],
"images": {
"back_default": "back/443.png",
"front_default": "443.png",
"official": "other/official-artwork/443.png"
}
},
{
"id": 444,
"name": "gabite",
"dex": 444,
"height": 14,
"weight": 560,
"hp": 68,
"attack": 90,
"defense": 65,
"types": ["dragon", "ground"],
"images": {
"back_default": "back/444.png",
"front_default": "444.png",
"official": "other/official-artwork/444.png"
}
},
{
"id": 445,
"name": "garchomp",
"dex": 445,
"height": 19,
"weight": 950,
"hp": 108,
"attack": 130,
"defense": 95,
"types": ["dragon", "ground"],
"images": {
"back_default": "back/445.png",
"front_default": "445.png",
"official": "other/official-artwork/445.png"
}
},
{
"id": 446,
"name": "munchlax",
"dex": 446,
"height": 6,
"weight": 1050,
"hp": 135,
"attack": 85,
"defense": 40,
"types": ["normal"],
"images": {
"back_default": "back/446.png",
"front_default": "446.png",
"official": "other/official-artwork/446.png"
}
},
{
"id": 447,
"name": "riolu",
"dex": 447,
"height": 7,
"weight": 202,
"hp": 40,
"attack": 70,
"defense": 40,
"types": ["fighting"],
"images": {
"back_default": "back/447.png",
"front_default": "447.png",
"official": "other/official-artwork/447.png"
}
},
{
"id": 448,
"name": "lucario",
"dex": 448,
"height": 12,
"weight": 540,
"hp": 70,
"attack": 110,
"defense": 70,
"types": ["fighting", "steel"],
"images": {
"back_default": "back/448.png",
"front_default": "448.png",
"official": "other/official-artwork/448.png"
}
},
{
"id": 449,
"name": "hippopotas",
"dex": 449,
"height": 8,
"weight": 495,
"hp": 68,
"attack": 72,
"defense": 78,
"types": ["ground"],
"images": {
"back_default": "back/449.png",
"front_default": "449.png",
"official": "other/official-artwork/449.png"
}
},
{
"id": 450,
"name": "hippowdon",
"dex": 450,
"height": 20,
"weight": 3000,
"hp": 108,
"attack": 112,
"defense": 118,
"types": ["ground"],
"images": {
"back_default": "back/450.png",
"front_default": "450.png",
"official": "other/official-artwork/450.png"
}
},
{
"id": 451,
"name": "skorupi",
"dex": 451,
"height": 8,
"weight": 120,
"hp": 40,
"attack": 50,
"defense": 90,
"types": ["poison", "bug"],
"images": {
"back_default": "back/451.png",
"front_default": "451.png",
"official": "other/official-artwork/451.png"
}
},
{
"id": 452,
"name": "drapion",
"dex": 452,
"height": 13,
"weight": 615,
"hp": 70,
"attack": 90,
"defense": 110,
"types": ["poison", "dark"],
"images": {
"back_default": "back/452.png",
"front_default": "452.png",
"official": "other/official-artwork/452.png"
}
},
{
"id": 453,
"name": "croagunk",
"dex": 453,
"height": 7,
"weight": 230,
"hp": 48,
"attack": 61,
"defense": 40,
"types": ["poison", "fighting"],
"images": {
"back_default": "back/453.png",
"front_default": "453.png",
"official": "other/official-artwork/453.png"
}
},
{
"id": 454,
"name": "toxicroak",
"dex": 454,
"height": 13,
"weight": 444,
"hp": 83,
"attack": 106,
"defense": 65,
"types": ["poison", "fighting"],
"images": {
"back_default": "back/454.png",
"front_default": "454.png",
"official": "other/official-artwork/454.png"
}
},
{
"id": 455,
"name": "carnivine",
"dex": 455,
"height": 14,
"weight": 270,
"hp": 74,
"attack": 100,
"defense": 72,
"types": ["grass"],
"images": {
"back_default": "back/455.png",
"front_default": "455.png",
"official": "other/official-artwork/455.png"
}
},
{
"id": 456,
"name": "finneon",
"dex": 456,
"height": 4,
"weight": 70,
"hp": 49,
"attack": 49,
"defense": 56,
"types": ["water"],
"images": {
"back_default": "back/456.png",
"front_default": "456.png",
"official": "other/official-artwork/456.png"
}
},
{
"id": 457,
"name": "lumineon",
"dex": 457,
"height": 12,
"weight": 240,
"hp": 69,
"attack": 69,
"defense": 76,
"types": ["water"],
"images": {
"back_default": "back/457.png",
"front_default": "457.png",
"official": "other/official-artwork/457.png"
}
},
{
"id": 458,
"name": "mantyke",
"dex": 458,
"height": 10,
"weight": 650,
"hp": 45,
"attack": 20,
"defense": 50,
"types": ["water", "flying"],
"images": {
"back_default": "back/458.png",
"front_default": "458.png",
"official": "other/official-artwork/458.png"
}
},
{
"id": 459,
"name": "snover",
"dex": 459,
"height": 10,
"weight": 505,
"hp": 60,
"attack": 62,
"defense": 50,
"types": ["grass", "ice"],
"images": {
"back_default": "back/459.png",
"front_default": "459.png",
"official": "other/official-artwork/459.png"
}
},
{
"id": 460,
"name": "abomasnow",
"dex": 460,
"height": 22,
"weight": 1355,
"hp": 90,
"attack": 92,
"defense": 75,
"types": ["grass", "ice"],
"images": {
"back_default": "back/460.png",
"front_default": "460.png",
"official": "other/official-artwork/460.png"
}
},
{
"id": 461,
"name": "weavile",
"dex": 461,
"height": 11,
"weight": 340,
"hp": 70,
"attack": 120,
"defense": 65,
"types": ["dark", "ice"],
"images": {
"back_default": "back/461.png",
"front_default": "461.png",
"official": "other/official-artwork/461.png"
}
},
{
"id": 462,
"name": "magnezone",
"dex": 462,
"height": 12,
"weight": 1800,
"hp": 70,
"attack": 70,
"defense": 115,
"types": ["electric", "steel"],
"images": {
"back_default": "back/462.png",
"front_default": "462.png",
"official": "other/official-artwork/462.png"
}
},
{
"id": 463,
"name": "lickilicky",
"dex": 463,
"height": 17,
"weight": 1400,
"hp": 110,
"attack": 85,
"defense": 95,
"types": ["normal"],
"images": {
"back_default": "back/463.png",
"front_default": "463.png",
"official": "other/official-artwork/463.png"
}
},
{
"id": 464,
"name": "rhyperior",
"dex": 464,
"height": 24,
"weight": 2828,
"hp": 115,
"attack": 140,
"defense": 130,
"types": ["ground", "rock"],
"images": {
"back_default": "back/464.png",
"front_default": "464.png",
"official": "other/official-artwork/464.png"
}
},
{
"id": 465,
"name": "tangrowth",
"dex": 465,
"height": 20,
"weight": 1286,
"hp": 100,
"attack": 100,
"defense": 125,
"types": ["grass"],
"images": {
"back_default": "back/465.png",
"front_default": "465.png",
"official": "other/official-artwork/465.png"
}
},
{
"id": 466,
"name": "electivire",
"dex": 466,
"height": 18,
"weight": 1386,
"hp": 75,
"attack": 123,
"defense": 67,
"types": ["electric"],
"images": {
"back_default": "back/466.png",
"front_default": "466.png",
"official": "other/official-artwork/466.png"
}
},
{
"id": 467,
"name": "magmortar",
"dex": 467,
"height": 16,
"weight": 680,
"hp": 75,
"attack": 95,
"defense": 67,
"types": ["fire"],
"images": {
"back_default": "back/467.png",
"front_default": "467.png",
"official": "other/official-artwork/467.png"
}
},
{
"id": 468,
"name": "togekiss",
"dex": 468,
"height": 15,
"weight": 380,
"hp": 85,
"attack": 50,
"defense": 95,
"types": ["fairy", "flying"],
"images": {
"back_default": "back/468.png",
"front_default": "468.png",
"official": "other/official-artwork/468.png"
}
},
{
"id": 469,
"name": "yanmega",
"dex": 469,
"height": 19,
"weight": 515,
"hp": 86,
"attack": 76,
"defense": 86,
"types": ["bug", "flying"],
"images": {
"back_default": "back/469.png",
"front_default": "469.png",
"official": "other/official-artwork/469.png"
}
},
{
"id": 470,
"name": "leafeon",
"dex": 470,
"height": 10,
"weight": 255,
"hp": 65,
"attack": 110,
"defense": 130,
"types": ["grass"],
"images": {
"back_default": "back/470.png",
"front_default": "470.png",
"official": "other/official-artwork/470.png"
}
},
{
"id": 471,
"name": "glaceon",
"dex": 471,
"height": 8,
"weight": 259,
"hp": 65,
"attack": 60,
"defense": 110,
"types": ["ice"],
"images": {
"back_default": "back/471.png",
"front_default": "471.png",
"official": "other/official-artwork/471.png"
}
},
{
"id": 472,
"name": "gliscor",
"dex": 472,
"height": 20,
"weight": 425,
"hp": 75,
"attack": 95,
"defense": 125,
"types": ["ground", "flying"],
"images": {
"back_default": "back/472.png",
"front_default": "472.png",
"official": "other/official-artwork/472.png"
}
},
{
"id": 473,
"name": "mamoswine",
"dex": 473,
"height": 25,
"weight": 2910,
"hp": 110,
"attack": 130,
"defense": 80,
"types": ["ice", "ground"],
"images": {
"back_default": "back/473.png",
"front_default": "473.png",
"official": "other/official-artwork/473.png"
}
},
{
"id": 474,
"name": "porygon-z",
"dex": 474,
"height": 9,
"weight": 340,
"hp": 85,
"attack": 80,
"defense": 70,
"types": ["normal"],
"images": {
"back_default": "back/474.png",
"front_default": "474.png",
"official": "other/official-artwork/474.png"
}
},
{
"id": 475,
"name": "gallade",
"dex": 475,
"height": 16,
"weight": 520,
"hp": 68,
"attack": 125,
"defense": 65,
"types": ["psychic", "fighting"],
"images": {
"back_default": "back/475.png",
"front_default": "475.png",
"official": "other/official-artwork/475.png"
}
},
{
"id": 476,
"name": "probopass",
"dex": 476,
"height": 14,
"weight": 3400,
"hp": 60,
"attack": 55,
"defense": 145,
"types": ["rock", "steel"],
"images": {
"back_default": "back/476.png",
"front_default": "476.png",
"official": "other/official-artwork/476.png"
}
},
{
"id": 477,
"name": "dusknoir",
"dex": 477,
"height": 22,
"weight": 1066,
"hp": 45,
"attack": 100,
"defense": 135,
"types": ["ghost"],
"images": {
"back_default": "back/477.png",
"front_default": "477.png",
"official": "other/official-artwork/477.png"
}
},
{
"id": 478,
"name": "froslass",
"dex": 478,
"height": 13,
"weight": 266,
"hp": 70,
"attack": 80,
"defense": 70,
"types": ["ice", "ghost"],
"images": {
"back_default": "back/478.png",
"front_default": "478.png",
"official": "other/official-artwork/478.png"
}
},
{
"id": 479,
"name": "rotom",
"dex": 479,
"height": 3,
"weight": 3,
"hp": 50,
"attack": 50,
"defense": 77,
"types": ["electric", "ghost"],
"images": {
"back_default": "back/479.png",
"front_default": "479.png",
"official": "other/official-artwork/479.png"
}
},
{
"id": 480,
"name": "uxie",
"dex": 480,
"height": 3,
"weight": 3,
"hp": 75,
"attack": 75,
"defense": 130,
"types": ["psychic"],
"images": {
"back_default": "back/480.png",
"front_default": "480.png",
"official": "other/official-artwork/480.png"
}
},
{
"id": 481,
"name": "mesprit",
"dex": 481,
"height": 3,
"weight": 3,
"hp": 80,
"attack": 105,
"defense": 105,
"types": ["psychic"],
"images": {
"back_default": "back/481.png",
"front_default": "481.png",
"official": "other/official-artwork/481.png"
}
},
{
"id": 482,
"name": "azelf",
"dex": 482,
"height": 3,
"weight": 3,
"hp": 75,
"attack": 125,
"defense": 70,
"types": ["psychic"],
"images": {
"back_default": "back/482.png",
"front_default": "482.png",
"official": "other/official-artwork/482.png"
}
},
{
"id": 483,
"name": "dialga",
"dex": 483,
"height": 54,
"weight": 6830,
"hp": 100,
"attack": 120,
"defense": 120,
"types": ["steel", "dragon"],
"images": {
"back_default": "back/483.png",
"front_default": "483.png",
"official": "other/official-artwork/483.png"
}
},
{
"id": 484,
"name": "palkia",
"dex": 484,
"height": 42,
"weight": 3360,
"hp": 90,
"attack": 120,
"defense": 100,
"types": ["water", "dragon"],
"images": {
"back_default": "back/484.png",
"front_default": "484.png",
"official": "other/official-artwork/484.png"
}
},
{
"id": 485,
"name": "heatran",
"dex": 485,
"height": 17,
"weight": 4300,
"hp": 91,
"attack": 90,
"defense": 106,
"types": ["fire", "steel"],
"images": {
"back_default": "back/485.png",
"front_default": "485.png",
"official": "other/official-artwork/485.png"
}
},
{
"id": 486,
"name": "regigigas",
"dex": 486,
"height": 37,
"weight": 4200,
"hp": 110,
"attack": 160,
"defense": 110,
"types": ["normal"],
"images": {
"back_default": "back/486.png",
"front_default": "486.png",
"official": "other/official-artwork/486.png"
}
},
{
"id": 487,
"name": "giratina-altered",
"dex": 487,
"height": 45,
"weight": 7500,
"hp": 150,
"attack": 100,
"defense": 120,
"types": ["ghost", "dragon"],
"images": {
"back_default": "back/487.png",
"front_default": "487.png",
"official": "other/official-artwork/487.png"
}
},
{
"id": 488,
"name": "cresselia",
"dex": 488,
"height": 15,
"weight": 856,
"hp": 120,
"attack": 70,
"defense": 120,
"types": ["psychic"],
"images": {
"back_default": "back/488.png",
"front_default": "488.png",
"official": "other/official-artwork/488.png"
}
},
{
"id": 489,
"name": "phione",
"dex": 489,
"height": 4,
"weight": 31,
"hp": 80,
"attack": 80,
"defense": 80,
"types": ["water"],
"images": {
"back_default": "back/489.png",
"front_default": "489.png",
"official": "other/official-artwork/489.png"
}
},
{
"id": 490,
"name": "manaphy",
"dex": 490,
"height": 3,
"weight": 14,
"hp": 100,
"attack": 100,
"defense": 100,
"types": ["water"],
"images": {
"back_default": "back/490.png",
"front_default": "490.png",
"official": "other/official-artwork/490.png"
}
},
{
"id": 491,
"name": "darkrai",
"dex": 491,
"height": 15,
"weight": 505,
"hp": 70,
"attack": 90,
"defense": 90,
"types": ["dark"],
"images": {
"back_default": "back/491.png",
"front_default": "491.png",
"official": "other/official-artwork/491.png"
}
},
{
"id": 492,
"name": "shaymin-land",
"dex": 492,
"height": 2,
"weight": 21,
"hp": 100,
"attack": 100,
"defense": 100,
"types": ["grass"],
"images": {
"back_default": "back/492.png",
"front_default": "492.png",
"official": "other/official-artwork/492.png"
}
},
{
"id": 493,
"name": "arceus",
"dex": 493,
"height": 32,
"weight": 3200,
"hp": 120,
"attack": 120,
"defense": 120,
"types": ["normal"],
"images": {
"back_default": "back/493.png",
"front_default": "493.png",
"official": "other/official-artwork/493.png"
}
},
{
"id": 494,
"name": "victini",
"dex": 494,
"height": 4,
"weight": 40,
"hp": 100,
"attack": 100,
"defense": 100,
"types": ["psychic", "fire"],
"images": {
"back_default": "back/494.png",
"front_default": "494.png",
"official": "other/official-artwork/494.png"
}
},
{
"id": 495,
"name": "snivy",
"dex": 495,
"height": 6,
"weight": 81,
"hp": 45,
"attack": 45,
"defense": 55,
"types": ["grass"],
"images": {
"back_default": "back/495.png",
"front_default": "495.png",
"official": "other/official-artwork/495.png"
}
},
{
"id": 496,
"name": "servine",
"dex": 496,
"height": 8,
"weight": 160,
"hp": 60,
"attack": 60,
"defense": 75,
"types": ["grass"],
"images": {
"back_default": "back/496.png",
"front_default": "496.png",
"official": "other/official-artwork/496.png"
}
},
{
"id": 497,
"name": "serperior",
"dex": 497,
"height": 33,
"weight": 630,
"hp": 75,
"attack": 75,
"defense": 95,
"types": ["grass"],
"images": {
"back_default": "back/497.png",
"front_default": "497.png",
"official": "other/official-artwork/497.png"
}
},
{
"id": 498,
"name": "tepig",
"dex": 498,
"height": 5,
"weight": 99,
"hp": 65,
"attack": 63,
"defense": 45,
"types": ["fire"],
"images": {
"back_default": "back/498.png",
"front_default": "498.png",
"official": "other/official-artwork/498.png"
}
},
{
"id": 499,
"name": "pignite",
"dex": 499,
"height": 10,
"weight": 555,
"hp": 90,
"attack": 93,
"defense": 55,
"types": ["fire", "fighting"],
"images": {
"back_default": "back/499.png",
"front_default": "499.png",
"official": "other/official-artwork/499.png"
}
},
{
"id": 500,
"name": "emboar",
"dex": 500,
"height": 16,
"weight": 1500,
"hp": 110,
"attack": 123,
"defense": 65,
"types": ["fire", "fighting"],
"images": {
"back_default": "back/500.png",
"front_default": "500.png",
"official": "other/official-artwork/500.png"
}
},
{
"id": 501,
"name": "oshawott",
"dex": 501,
"height": 5,
"weight": 59,
"hp": 55,
"attack": 55,
"defense": 45,
"types": ["water"],
"images": {
"back_default": "back/501.png",
"front_default": "501.png",
"official": "other/official-artwork/501.png"
}
},
{
"id": 502,
"name": "dewott",
"dex": 502,
"height": 8,
"weight": 245,
"hp": 75,
"attack": 75,
"defense": 60,
"types": ["water"],
"images": {
"back_default": "back/502.png",
"front_default": "502.png",
"official": "other/official-artwork/502.png"
}
},
{
"id": 503,
"name": "samurott",
"dex": 503,
"height": 15,
"weight": 946,
"hp": 95,
"attack": 100,
"defense": 85,
"types": ["water"],
"images": {
"back_default": "back/503.png",
"front_default": "503.png",
"official": "other/official-artwork/503.png"
}
},
{
"id": 504,
"name": "patrat",
"dex": 504,
"height": 5,
"weight": 116,
"hp": 45,
"attack": 55,
"defense": 39,
"types": ["normal"],
"images": {
"back_default": "back/504.png",
"front_default": "504.png",
"official": "other/official-artwork/504.png"
}
},
{
"id": 505,
"name": "watchog",
"dex": 505,
"height": 11,
"weight": 270,
"hp": 60,
"attack": 85,
"defense": 69,
"types": ["normal"],
"images": {
"back_default": "back/505.png",
"front_default": "505.png",
"official": "other/official-artwork/505.png"
}
},
{
"id": 506,
"name": "lillipup",
"dex": 506,
"height": 4,
"weight": 41,
"hp": 45,
"attack": 60,
"defense": 45,
"types": ["normal"],
"images": {
"back_default": "back/506.png",
"front_default": "506.png",
"official": "other/official-artwork/506.png"
}
},
{
"id": 507,
"name": "herdier",
"dex": 507,
"height": 9,
"weight": 147,
"hp": 65,
"attack": 80,
"defense": 65,
"types": ["normal"],
"images": {
"back_default": "back/507.png",
"front_default": "507.png",
"official": "other/official-artwork/507.png"
}
},
{
"id": 508,
"name": "stoutland",
"dex": 508,
"height": 12,
"weight": 610,
"hp": 85,
"attack": 110,
"defense": 90,
"types": ["normal"],
"images": {
"back_default": "back/508.png",
"front_default": "508.png",
"official": "other/official-artwork/508.png"
}
},
{
"id": 509,
"name": "purrloin",
"dex": 509,
"height": 4,
"weight": 101,
"hp": 41,
"attack": 50,
"defense": 37,
"types": ["dark"],
"images": {
"back_default": "back/509.png",
"front_default": "509.png",
"official": "other/official-artwork/509.png"
}
},
{
"id": 510,
"name": "liepard",
"dex": 510,
"height": 11,
"weight": 375,
"hp": 64,
"attack": 88,
"defense": 50,
"types": ["dark"],
"images": {
"back_default": "back/510.png",
"front_default": "510.png",
"official": "other/official-artwork/510.png"
}
},
{
"id": 511,
"name": "pansage",
"dex": 511,
"height": 6,
"weight": 105,
"hp": 50,
"attack": 53,
"defense": 48,
"types": ["grass"],
"images": {
"back_default": "back/511.png",
"front_default": "511.png",
"official": "other/official-artwork/511.png"
}
},
{
"id": 512,
"name": "simisage",
"dex": 512,
"height": 11,
"weight": 305,
"hp": 75,
"attack": 98,
"defense": 63,
"types": ["grass"],
"images": {
"back_default": "back/512.png",
"front_default": "512.png",
"official": "other/official-artwork/512.png"
}
},
{
"id": 513,
"name": "pansear",
"dex": 513,
"height": 6,
"weight": 110,
"hp": 50,
"attack": 53,
"defense": 48,
"types": ["fire"],
"images": {
"back_default": "back/513.png",
"front_default": "513.png",
"official": "other/official-artwork/513.png"
}
},
{
"id": 514,
"name": "simisear",
"dex": 514,
"height": 10,
"weight": 280,
"hp": 75,
"attack": 98,
"defense": 63,
"types": ["fire"],
"images": {
"back_default": "back/514.png",
"front_default": "514.png",
"official": "other/official-artwork/514.png"
}
},
{
"id": 515,
"name": "panpour",
"dex": 515,
"height": 6,
"weight": 135,
"hp": 50,
"attack": 53,
"defense": 48,
"types": ["water"],
"images": {
"back_default": "back/515.png",
"front_default": "515.png",
"official": "other/official-artwork/515.png"
}
},
{
"id": 516,
"name": "simipour",
"dex": 516,
"height": 10,
"weight": 290,
"hp": 75,
"attack": 98,
"defense": 63,
"types": ["water"],
"images": {
"back_default": "back/516.png",
"front_default": "516.png",
"official": "other/official-artwork/516.png"
}
},
{
"id": 517,
"name": "munna",
"dex": 517,
"height": 6,
"weight": 233,
"hp": 76,
"attack": 25,
"defense": 45,
"types": ["psychic"],
"images": {
"back_default": "back/517.png",
"front_default": "517.png",
"official": "other/official-artwork/517.png"
}
},
{
"id": 518,
"name": "musharna",
"dex": 518,
"height": 11,
"weight": 605,
"hp": 116,
"attack": 55,
"defense": 85,
"types": ["psychic"],
"images": {
"back_default": "back/518.png",
"front_default": "518.png",
"official": "other/official-artwork/518.png"
}
},
{
"id": 519,
"name": "pidove",
"dex": 519,
"height": 3,
"weight": 21,
"hp": 50,
"attack": 55,
"defense": 50,
"types": ["normal", "flying"],
"images": {
"back_default": "back/519.png",
"front_default": "519.png",
"official": "other/official-artwork/519.png"
}
},
{
"id": 520,
"name": "tranquill",
"dex": 520,
"height": 6,
"weight": 150,
"hp": 62,
"attack": 77,
"defense": 62,
"types": ["normal", "flying"],
"images": {
"back_default": "back/520.png",
"front_default": "520.png",
"official": "other/official-artwork/520.png"
}
},
{
"id": 521,
"name": "unfezant",
"dex": 521,
"height": 12,
"weight": 290,
"hp": 80,
"attack": 115,
"defense": 80,
"types": ["normal", "flying"],
"images": {
"back_default": "back/521.png",
"front_default": "521.png",
"official": "other/official-artwork/521.png"
}
},
{
"id": 522,
"name": "blitzle",
"dex": 522,
"height": 8,
"weight": 298,
"hp": 45,
"attack": 60,
"defense": 32,
"types": ["electric"],
"images": {
"back_default": "back/522.png",
"front_default": "522.png",
"official": "other/official-artwork/522.png"
}
},
{
"id": 523,
"name": "zebstrika",
"dex": 523,
"height": 16,
"weight": 795,
"hp": 75,
"attack": 100,
"defense": 63,
"types": ["electric"],
"images": {
"back_default": "back/523.png",
"front_default": "523.png",
"official": "other/official-artwork/523.png"
}
},
{
"id": 524,
"name": "roggenrola",
"dex": 524,
"height": 4,
"weight": 180,
"hp": 55,
"attack": 75,
"defense": 85,
"types": ["rock"],
"images": {
"back_default": "back/524.png",
"front_default": "524.png",
"official": "other/official-artwork/524.png"
}
},
{
"id": 525,
"name": "boldore",
"dex": 525,
"height": 9,
"weight": 1020,
"hp": 70,
"attack": 105,
"defense": 105,
"types": ["rock"],
"images": {
"back_default": "back/525.png",
"front_default": "525.png",
"official": "other/official-artwork/525.png"
}
},
{
"id": 526,
"name": "gigalith",
"dex": 526,
"height": 17,
"weight": 2600,
"hp": 85,
"attack": 135,
"defense": 130,
"types": ["rock"],
"images": {
"back_default": "back/526.png",
"front_default": "526.png",
"official": "other/official-artwork/526.png"
}
},
{
"id": 527,
"name": "woobat",
"dex": 527,
"height": 4,
"weight": 21,
"hp": 65,
"attack": 45,
"defense": 43,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/527.png",
"front_default": "527.png",
"official": "other/official-artwork/527.png"
}
},
{
"id": 528,
"name": "swoobat",
"dex": 528,
"height": 9,
"weight": 105,
"hp": 67,
"attack": 57,
"defense": 55,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/528.png",
"front_default": "528.png",
"official": "other/official-artwork/528.png"
}
},
{
"id": 529,
"name": "drilbur",
"dex": 529,
"height": 3,
"weight": 85,
"hp": 60,
"attack": 85,
"defense": 40,
"types": ["ground"],
"images": {
"back_default": "back/529.png",
"front_default": "529.png",
"official": "other/official-artwork/529.png"
}
},
{
"id": 530,
"name": "excadrill",
"dex": 530,
"height": 7,
"weight": 404,
"hp": 110,
"attack": 135,
"defense": 60,
"types": ["ground", "steel"],
"images": {
"back_default": "back/530.png",
"front_default": "530.png",
"official": "other/official-artwork/530.png"
}
},
{
"id": 531,
"name": "audino",
"dex": 531,
"height": 11,
"weight": 310,
"hp": 103,
"attack": 60,
"defense": 86,
"types": ["normal"],
"images": {
"back_default": "back/531.png",
"front_default": "531.png",
"official": "other/official-artwork/531.png"
}
},
{
"id": 532,
"name": "timburr",
"dex": 532,
"height": 6,
"weight": 125,
"hp": 75,
"attack": 80,
"defense": 55,
"types": ["fighting"],
"images": {
"back_default": "back/532.png",
"front_default": "532.png",
"official": "other/official-artwork/532.png"
}
},
{
"id": 533,
"name": "gurdurr",
"dex": 533,
"height": 12,
"weight": 400,
"hp": 85,
"attack": 105,
"defense": 85,
"types": ["fighting"],
"images": {
"back_default": "back/533.png",
"front_default": "533.png",
"official": "other/official-artwork/533.png"
}
},
{
"id": 534,
"name": "conkeldurr",
"dex": 534,
"height": 14,
"weight": 870,
"hp": 105,
"attack": 140,
"defense": 95,
"types": ["fighting"],
"images": {
"back_default": "back/534.png",
"front_default": "534.png",
"official": "other/official-artwork/534.png"
}
},
{
"id": 535,
"name": "tympole",
"dex": 535,
"height": 5,
"weight": 45,
"hp": 50,
"attack": 50,
"defense": 40,
"types": ["water"],
"images": {
"back_default": "back/535.png",
"front_default": "535.png",
"official": "other/official-artwork/535.png"
}
},
{
"id": 536,
"name": "palpitoad",
"dex": 536,
"height": 8,
"weight": 170,
"hp": 75,
"attack": 65,
"defense": 55,
"types": ["water", "ground"],
"images": {
"back_default": "back/536.png",
"front_default": "536.png",
"official": "other/official-artwork/536.png"
}
},
{
"id": 537,
"name": "seismitoad",
"dex": 537,
"height": 15,
"weight": 620,
"hp": 105,
"attack": 95,
"defense": 75,
"types": ["water", "ground"],
"images": {
"back_default": "back/537.png",
"front_default": "537.png",
"official": "other/official-artwork/537.png"
}
},
{
"id": 538,
"name": "throh",
"dex": 538,
"height": 13,
"weight": 555,
"hp": 120,
"attack": 100,
"defense": 85,
"types": ["fighting"],
"images": {
"back_default": "back/538.png",
"front_default": "538.png",
"official": "other/official-artwork/538.png"
}
},
{
"id": 539,
"name": "sawk",
"dex": 539,
"height": 14,
"weight": 510,
"hp": 75,
"attack": 125,
"defense": 75,
"types": ["fighting"],
"images": {
"back_default": "back/539.png",
"front_default": "539.png",
"official": "other/official-artwork/539.png"
}
},
{
"id": 540,
"name": "sewaddle",
"dex": 540,
"height": 3,
"weight": 25,
"hp": 45,
"attack": 53,
"defense": 70,
"types": ["bug", "grass"],
"images": {
"back_default": "back/540.png",
"front_default": "540.png",
"official": "other/official-artwork/540.png"
}
},
{
"id": 541,
"name": "swadloon",
"dex": 541,
"height": 5,
"weight": 73,
"hp": 55,
"attack": 63,
"defense": 90,
"types": ["bug", "grass"],
"images": {
"back_default": "back/541.png",
"front_default": "541.png",
"official": "other/official-artwork/541.png"
}
},
{
"id": 542,
"name": "leavanny",
"dex": 542,
"height": 12,
"weight": 205,
"hp": 75,
"attack": 103,
"defense": 80,
"types": ["bug", "grass"],
"images": {
"back_default": "back/542.png",
"front_default": "542.png",
"official": "other/official-artwork/542.png"
}
},
{
"id": 543,
"name": "venipede",
"dex": 543,
"height": 4,
"weight": 53,
"hp": 30,
"attack": 45,
"defense": 59,
"types": ["bug", "poison"],
"images": {
"back_default": "back/543.png",
"front_default": "543.png",
"official": "other/official-artwork/543.png"
}
},
{
"id": 544,
"name": "whirlipede",
"dex": 544,
"height": 12,
"weight": 585,
"hp": 40,
"attack": 55,
"defense": 99,
"types": ["bug", "poison"],
"images": {
"back_default": "back/544.png",
"front_default": "544.png",
"official": "other/official-artwork/544.png"
}
},
{
"id": 545,
"name": "scolipede",
"dex": 545,
"height": 25,
"weight": 2005,
"hp": 60,
"attack": 100,
"defense": 89,
"types": ["bug", "poison"],
"images": {
"back_default": "back/545.png",
"front_default": "545.png",
"official": "other/official-artwork/545.png"
}
},
{
"id": 546,
"name": "cottonee",
"dex": 546,
"height": 3,
"weight": 6,
"hp": 40,
"attack": 27,
"defense": 60,
"types": ["grass", "fairy"],
"images": {
"back_default": "back/546.png",
"front_default": "546.png",
"official": "other/official-artwork/546.png"
}
},
{
"id": 547,
"name": "whimsicott",
"dex": 547,
"height": 7,
"weight": 66,
"hp": 60,
"attack": 67,
"defense": 85,
"types": ["grass", "fairy"],
"images": {
"back_default": "back/547.png",
"front_default": "547.png",
"official": "other/official-artwork/547.png"
}
},
{
"id": 548,
"name": "petilil",
"dex": 548,
"height": 5,
"weight": 66,
"hp": 45,
"attack": 35,
"defense": 50,
"types": ["grass"],
"images": {
"back_default": "back/548.png",
"front_default": "548.png",
"official": "other/official-artwork/548.png"
}
},
{
"id": 549,
"name": "lilligant",
"dex": 549,
"height": 11,
"weight": 163,
"hp": 70,
"attack": 60,
"defense": 75,
"types": ["grass"],
"images": {
"back_default": "back/549.png",
"front_default": "549.png",
"official": "other/official-artwork/549.png"
}
},
{
"id": 550,
"name": "basculin-red-striped",
"dex": 550,
"height": 10,
"weight": 180,
"hp": 70,
"attack": 92,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/550.png",
"front_default": "550.png",
"official": "other/official-artwork/550.png"
}
},
{
"id": 551,
"name": "sandile",
"dex": 551,
"height": 7,
"weight": 152,
"hp": 50,
"attack": 72,
"defense": 35,
"types": ["ground", "dark"],
"images": {
"back_default": "back/551.png",
"front_default": "551.png",
"official": "other/official-artwork/551.png"
}
},
{
"id": 552,
"name": "krokorok",
"dex": 552,
"height": 10,
"weight": 334,
"hp": 60,
"attack": 82,
"defense": 45,
"types": ["ground", "dark"],
"images": {
"back_default": "back/552.png",
"front_default": "552.png",
"official": "other/official-artwork/552.png"
}
},
{
"id": 553,
"name": "krookodile",
"dex": 553,
"height": 15,
"weight": 963,
"hp": 95,
"attack": 117,
"defense": 80,
"types": ["ground", "dark"],
"images": {
"back_default": "back/553.png",
"front_default": "553.png",
"official": "other/official-artwork/553.png"
}
},
{
"id": 554,
"name": "darumaka",
"dex": 554,
"height": 6,
"weight": 375,
"hp": 70,
"attack": 90,
"defense": 45,
"types": ["fire"],
"images": {
"back_default": "back/554.png",
"front_default": "554.png",
"official": "other/official-artwork/554.png"
}
},
{
"id": 555,
"name": "darmanitan-standard",
"dex": 555,
"height": 13,
"weight": 929,
"hp": 105,
"attack": 140,
"defense": 55,
"types": ["fire"],
"images": {
"back_default": "back/555.png",
"front_default": "555.png",
"official": "other/official-artwork/555.png"
}
},
{
"id": 556,
"name": "maractus",
"dex": 556,
"height": 10,
"weight": 280,
"hp": 75,
"attack": 86,
"defense": 67,
"types": ["grass"],
"images": {
"back_default": "back/556.png",
"front_default": "556.png",
"official": "other/official-artwork/556.png"
}
},
{
"id": 557,
"name": "dwebble",
"dex": 557,
"height": 3,
"weight": 145,
"hp": 50,
"attack": 65,
"defense": 85,
"types": ["bug", "rock"],
"images": {
"back_default": "back/557.png",
"front_default": "557.png",
"official": "other/official-artwork/557.png"
}
},
{
"id": 558,
"name": "crustle",
"dex": 558,
"height": 14,
"weight": 2000,
"hp": 70,
"attack": 105,
"defense": 125,
"types": ["bug", "rock"],
"images": {
"back_default": "back/558.png",
"front_default": "558.png",
"official": "other/official-artwork/558.png"
}
},
{
"id": 559,
"name": "scraggy",
"dex": 559,
"height": 6,
"weight": 118,
"hp": 50,
"attack": 75,
"defense": 70,
"types": ["dark", "fighting"],
"images": {
"back_default": "back/559.png",
"front_default": "559.png",
"official": "other/official-artwork/559.png"
}
},
{
"id": 560,
"name": "scrafty",
"dex": 560,
"height": 11,
"weight": 300,
"hp": 65,
"attack": 90,
"defense": 115,
"types": ["dark", "fighting"],
"images": {
"back_default": "back/560.png",
"front_default": "560.png",
"official": "other/official-artwork/560.png"
}
},
{
"id": 561,
"name": "sigilyph",
"dex": 561,
"height": 14,
"weight": 140,
"hp": 72,
"attack": 58,
"defense": 80,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/561.png",
"front_default": "561.png",
"official": "other/official-artwork/561.png"
}
},
{
"id": 562,
"name": "yamask",
"dex": 562,
"height": 5,
"weight": 15,
"hp": 38,
"attack": 30,
"defense": 85,
"types": ["ghost"],
"images": {
"back_default": "back/562.png",
"front_default": "562.png",
"official": "other/official-artwork/562.png"
}
},
{
"id": 563,
"name": "cofagrigus",
"dex": 563,
"height": 17,
"weight": 765,
"hp": 58,
"attack": 50,
"defense": 145,
"types": ["ghost"],
"images": {
"back_default": "back/563.png",
"front_default": "563.png",
"official": "other/official-artwork/563.png"
}
},
{
"id": 564,
"name": "tirtouga",
"dex": 564,
"height": 7,
"weight": 165,
"hp": 54,
"attack": 78,
"defense": 103,
"types": ["water", "rock"],
"images": {
"back_default": "back/564.png",
"front_default": "564.png",
"official": "other/official-artwork/564.png"
}
},
{
"id": 565,
"name": "carracosta",
"dex": 565,
"height": 12,
"weight": 810,
"hp": 74,
"attack": 108,
"defense": 133,
"types": ["water", "rock"],
"images": {
"back_default": "back/565.png",
"front_default": "565.png",
"official": "other/official-artwork/565.png"
}
},
{
"id": 566,
"name": "archen",
"dex": 566,
"height": 5,
"weight": 95,
"hp": 55,
"attack": 112,
"defense": 45,
"types": ["rock", "flying"],
"images": {
"back_default": "back/566.png",
"front_default": "566.png",
"official": "other/official-artwork/566.png"
}
},
{
"id": 567,
"name": "archeops",
"dex": 567,
"height": 14,
"weight": 320,
"hp": 75,
"attack": 140,
"defense": 65,
"types": ["rock", "flying"],
"images": {
"back_default": "back/567.png",
"front_default": "567.png",
"official": "other/official-artwork/567.png"
}
},
{
"id": 568,
"name": "trubbish",
"dex": 568,
"height": 6,
"weight": 310,
"hp": 50,
"attack": 50,
"defense": 62,
"types": ["poison"],
"images": {
"back_default": "back/568.png",
"front_default": "568.png",
"official": "other/official-artwork/568.png"
}
},
{
"id": 569,
"name": "garbodor",
"dex": 569,
"height": 19,
"weight": 1073,
"hp": 80,
"attack": 95,
"defense": 82,
"types": ["poison"],
"images": {
"back_default": "back/569.png",
"front_default": "569.png",
"official": "other/official-artwork/569.png"
}
},
{
"id": 570,
"name": "zorua",
"dex": 570,
"height": 7,
"weight": 125,
"hp": 40,
"attack": 65,
"defense": 40,
"types": ["dark"],
"images": {
"back_default": "back/570.png",
"front_default": "570.png",
"official": "other/official-artwork/570.png"
}
},
{
"id": 571,
"name": "zoroark",
"dex": 571,
"height": 16,
"weight": 811,
"hp": 60,
"attack": 105,
"defense": 60,
"types": ["dark"],
"images": {
"back_default": "back/571.png",
"front_default": "571.png",
"official": "other/official-artwork/571.png"
}
},
{
"id": 572,
"name": "minccino",
"dex": 572,
"height": 4,
"weight": 58,
"hp": 55,
"attack": 50,
"defense": 40,
"types": ["normal"],
"images": {
"back_default": "back/572.png",
"front_default": "572.png",
"official": "other/official-artwork/572.png"
}
},
{
"id": 573,
"name": "cinccino",
"dex": 573,
"height": 5,
"weight": 75,
"hp": 75,
"attack": 95,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/573.png",
"front_default": "573.png",
"official": "other/official-artwork/573.png"
}
},
{
"id": 574,
"name": "gothita",
"dex": 574,
"height": 4,
"weight": 58,
"hp": 45,
"attack": 30,
"defense": 50,
"types": ["psychic"],
"images": {
"back_default": "back/574.png",
"front_default": "574.png",
"official": "other/official-artwork/574.png"
}
},
{
"id": 575,
"name": "gothorita",
"dex": 575,
"height": 7,
"weight": 180,
"hp": 60,
"attack": 45,
"defense": 70,
"types": ["psychic"],
"images": {
"back_default": "back/575.png",
"front_default": "575.png",
"official": "other/official-artwork/575.png"
}
},
{
"id": 576,
"name": "gothitelle",
"dex": 576,
"height": 15,
"weight": 440,
"hp": 70,
"attack": 55,
"defense": 95,
"types": ["psychic"],
"images": {
"back_default": "back/576.png",
"front_default": "576.png",
"official": "other/official-artwork/576.png"
}
},
{
"id": 577,
"name": "solosis",
"dex": 577,
"height": 3,
"weight": 10,
"hp": 45,
"attack": 30,
"defense": 40,
"types": ["psychic"],
"images": {
"back_default": "back/577.png",
"front_default": "577.png",
"official": "other/official-artwork/577.png"
}
},
{
"id": 578,
"name": "duosion",
"dex": 578,
"height": 6,
"weight": 80,
"hp": 65,
"attack": 40,
"defense": 50,
"types": ["psychic"],
"images": {
"back_default": "back/578.png",
"front_default": "578.png",
"official": "other/official-artwork/578.png"
}
},
{
"id": 579,
"name": "reuniclus",
"dex": 579,
"height": 10,
"weight": 201,
"hp": 110,
"attack": 65,
"defense": 75,
"types": ["psychic"],
"images": {
"back_default": "back/579.png",
"front_default": "579.png",
"official": "other/official-artwork/579.png"
}
},
{
"id": 580,
"name": "ducklett",
"dex": 580,
"height": 5,
"weight": 55,
"hp": 62,
"attack": 44,
"defense": 50,
"types": ["water", "flying"],
"images": {
"back_default": "back/580.png",
"front_default": "580.png",
"official": "other/official-artwork/580.png"
}
},
{
"id": 581,
"name": "swanna",
"dex": 581,
"height": 13,
"weight": 242,
"hp": 75,
"attack": 87,
"defense": 63,
"types": ["water", "flying"],
"images": {
"back_default": "back/581.png",
"front_default": "581.png",
"official": "other/official-artwork/581.png"
}
},
{
"id": 582,
"name": "vanillite",
"dex": 582,
"height": 4,
"weight": 57,
"hp": 36,
"attack": 50,
"defense": 50,
"types": ["ice"],
"images": {
"back_default": "back/582.png",
"front_default": "582.png",
"official": "other/official-artwork/582.png"
}
},
{
"id": 583,
"name": "vanillish",
"dex": 583,
"height": 11,
"weight": 410,
"hp": 51,
"attack": 65,
"defense": 65,
"types": ["ice"],
"images": {
"back_default": "back/583.png",
"front_default": "583.png",
"official": "other/official-artwork/583.png"
}
},
{
"id": 584,
"name": "vanilluxe",
"dex": 584,
"height": 13,
"weight": 575,
"hp": 71,
"attack": 95,
"defense": 85,
"types": ["ice"],
"images": {
"back_default": "back/584.png",
"front_default": "584.png",
"official": "other/official-artwork/584.png"
}
},
{
"id": 585,
"name": "deerling",
"dex": 585,
"height": 6,
"weight": 195,
"hp": 60,
"attack": 60,
"defense": 50,
"types": ["normal", "grass"],
"images": {
"back_default": "back/585.png",
"front_default": "585.png",
"official": "other/official-artwork/585.png"
}
},
{
"id": 586,
"name": "sawsbuck",
"dex": 586,
"height": 19,
"weight": 925,
"hp": 80,
"attack": 100,
"defense": 70,
"types": ["normal", "grass"],
"images": {
"back_default": "back/586.png",
"front_default": "586.png",
"official": "other/official-artwork/586.png"
}
},
{
"id": 587,
"name": "emolga",
"dex": 587,
"height": 4,
"weight": 50,
"hp": 55,
"attack": 75,
"defense": 60,
"types": ["electric", "flying"],
"images": {
"back_default": "back/587.png",
"front_default": "587.png",
"official": "other/official-artwork/587.png"
}
},
{
"id": 588,
"name": "karrablast",
"dex": 588,
"height": 5,
"weight": 59,
"hp": 50,
"attack": 75,
"defense": 45,
"types": ["bug"],
"images": {
"back_default": "back/588.png",
"front_default": "588.png",
"official": "other/official-artwork/588.png"
}
},
{
"id": 589,
"name": "escavalier",
"dex": 589,
"height": 10,
"weight": 330,
"hp": 70,
"attack": 135,
"defense": 105,
"types": ["bug", "steel"],
"images": {
"back_default": "back/589.png",
"front_default": "589.png",
"official": "other/official-artwork/589.png"
}
},
{
"id": 590,
"name": "foongus",
"dex": 590,
"height": 2,
"weight": 10,
"hp": 69,
"attack": 55,
"defense": 45,
"types": ["grass", "poison"],
"images": {
"back_default": "back/590.png",
"front_default": "590.png",
"official": "other/official-artwork/590.png"
}
},
{
"id": 591,
"name": "amoonguss",
"dex": 591,
"height": 6,
"weight": 105,
"hp": 114,
"attack": 85,
"defense": 70,
"types": ["grass", "poison"],
"images": {
"back_default": "back/591.png",
"front_default": "591.png",
"official": "other/official-artwork/591.png"
}
},
{
"id": 592,
"name": "frillish",
"dex": 592,
"height": 12,
"weight": 330,
"hp": 55,
"attack": 40,
"defense": 50,
"types": ["water", "ghost"],
"images": {
"back_default": "back/592.png",
"front_default": "592.png",
"official": "other/official-artwork/592.png"
}
},
{
"id": 593,
"name": "jellicent",
"dex": 593,
"height": 22,
"weight": 1350,
"hp": 100,
"attack": 60,
"defense": 70,
"types": ["water", "ghost"],
"images": {
"back_default": "back/593.png",
"front_default": "593.png",
"official": "other/official-artwork/593.png"
}
},
{
"id": 594,
"name": "alomomola",
"dex": 594,
"height": 12,
"weight": 316,
"hp": 165,
"attack": 75,
"defense": 80,
"types": ["water"],
"images": {
"back_default": "back/594.png",
"front_default": "594.png",
"official": "other/official-artwork/594.png"
}
},
{
"id": 595,
"name": "joltik",
"dex": 595,
"height": 1,
"weight": 6,
"hp": 50,
"attack": 47,
"defense": 50,
"types": ["bug", "electric"],
"images": {
"back_default": "back/595.png",
"front_default": "595.png",
"official": "other/official-artwork/595.png"
}
},
{
"id": 596,
"name": "galvantula",
"dex": 596,
"height": 8,
"weight": 143,
"hp": 70,
"attack": 77,
"defense": 60,
"types": ["bug", "electric"],
"images": {
"back_default": "back/596.png",
"front_default": "596.png",
"official": "other/official-artwork/596.png"
}
},
{
"id": 597,
"name": "ferroseed",
"dex": 597,
"height": 6,
"weight": 188,
"hp": 44,
"attack": 50,
"defense": 91,
"types": ["grass", "steel"],
"images": {
"back_default": "back/597.png",
"front_default": "597.png",
"official": "other/official-artwork/597.png"
}
},
{
"id": 598,
"name": "ferrothorn",
"dex": 598,
"height": 10,
"weight": 1100,
"hp": 74,
"attack": 94,
"defense": 131,
"types": ["grass", "steel"],
"images": {
"back_default": "back/598.png",
"front_default": "598.png",
"official": "other/official-artwork/598.png"
}
},
{
"id": 599,
"name": "klink",
"dex": 599,
"height": 3,
"weight": 210,
"hp": 40,
"attack": 55,
"defense": 70,
"types": ["steel"],
"images": {
"back_default": "back/599.png",
"front_default": "599.png",
"official": "other/official-artwork/599.png"
}
},
{
"id": 600,
"name": "klang",
"dex": 600,
"height": 6,
"weight": 510,
"hp": 60,
"attack": 80,
"defense": 95,
"types": ["steel"],
"images": {
"back_default": "back/600.png",
"front_default": "600.png",
"official": "other/official-artwork/600.png"
}
},
{
"id": 601,
"name": "klinklang",
"dex": 601,
"height": 6,
"weight": 810,
"hp": 60,
"attack": 100,
"defense": 115,
"types": ["steel"],
"images": {
"back_default": "back/601.png",
"front_default": "601.png",
"official": "other/official-artwork/601.png"
}
},
{
"id": 602,
"name": "tynamo",
"dex": 602,
"height": 2,
"weight": 3,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/602.png",
"front_default": "602.png",
"official": "other/official-artwork/602.png"
}
},
{
"id": 603,
"name": "eelektrik",
"dex": 603,
"height": 12,
"weight": 220,
"hp": 65,
"attack": 85,
"defense": 70,
"types": ["electric"],
"images": {
"back_default": "back/603.png",
"front_default": "603.png",
"official": "other/official-artwork/603.png"
}
},
{
"id": 604,
"name": "eelektross",
"dex": 604,
"height": 21,
"weight": 805,
"hp": 85,
"attack": 115,
"defense": 80,
"types": ["electric"],
"images": {
"back_default": "back/604.png",
"front_default": "604.png",
"official": "other/official-artwork/604.png"
}
},
{
"id": 605,
"name": "elgyem",
"dex": 605,
"height": 5,
"weight": 90,
"hp": 55,
"attack": 55,
"defense": 55,
"types": ["psychic"],
"images": {
"back_default": "back/605.png",
"front_default": "605.png",
"official": "other/official-artwork/605.png"
}
},
{
"id": 606,
"name": "beheeyem",
"dex": 606,
"height": 10,
"weight": 345,
"hp": 75,
"attack": 75,
"defense": 75,
"types": ["psychic"],
"images": {
"back_default": "back/606.png",
"front_default": "606.png",
"official": "other/official-artwork/606.png"
}
},
{
"id": 607,
"name": "litwick",
"dex": 607,
"height": 3,
"weight": 31,
"hp": 50,
"attack": 30,
"defense": 55,
"types": ["ghost", "fire"],
"images": {
"back_default": "back/607.png",
"front_default": "607.png",
"official": "other/official-artwork/607.png"
}
},
{
"id": 608,
"name": "lampent",
"dex": 608,
"height": 6,
"weight": 130,
"hp": 60,
"attack": 40,
"defense": 60,
"types": ["ghost", "fire"],
"images": {
"back_default": "back/608.png",
"front_default": "608.png",
"official": "other/official-artwork/608.png"
}
},
{
"id": 609,
"name": "chandelure",
"dex": 609,
"height": 10,
"weight": 343,
"hp": 60,
"attack": 55,
"defense": 90,
"types": ["ghost", "fire"],
"images": {
"back_default": "back/609.png",
"front_default": "609.png",
"official": "other/official-artwork/609.png"
}
},
{
"id": 610,
"name": "axew",
"dex": 610,
"height": 6,
"weight": 180,
"hp": 46,
"attack": 87,
"defense": 60,
"types": ["dragon"],
"images": {
"back_default": "back/610.png",
"front_default": "610.png",
"official": "other/official-artwork/610.png"
}
},
{
"id": 611,
"name": "fraxure",
"dex": 611,
"height": 10,
"weight": 360,
"hp": 66,
"attack": 117,
"defense": 70,
"types": ["dragon"],
"images": {
"back_default": "back/611.png",
"front_default": "611.png",
"official": "other/official-artwork/611.png"
}
},
{
"id": 612,
"name": "haxorus",
"dex": 612,
"height": 18,
"weight": 1055,
"hp": 76,
"attack": 147,
"defense": 90,
"types": ["dragon"],
"images": {
"back_default": "back/612.png",
"front_default": "612.png",
"official": "other/official-artwork/612.png"
}
},
{
"id": 613,
"name": "cubchoo",
"dex": 613,
"height": 5,
"weight": 85,
"hp": 55,
"attack": 70,
"defense": 40,
"types": ["ice"],
"images": {
"back_default": "back/613.png",
"front_default": "613.png",
"official": "other/official-artwork/613.png"
}
},
{
"id": 614,
"name": "beartic",
"dex": 614,
"height": 26,
"weight": 2600,
"hp": 95,
"attack": 130,
"defense": 80,
"types": ["ice"],
"images": {
"back_default": "back/614.png",
"front_default": "614.png",
"official": "other/official-artwork/614.png"
}
},
{
"id": 615,
"name": "cryogonal",
"dex": 615,
"height": 11,
"weight": 1480,
"hp": 80,
"attack": 50,
"defense": 50,
"types": ["ice"],
"images": {
"back_default": "back/615.png",
"front_default": "615.png",
"official": "other/official-artwork/615.png"
}
},
{
"id": 616,
"name": "shelmet",
"dex": 616,
"height": 4,
"weight": 77,
"hp": 50,
"attack": 40,
"defense": 85,
"types": ["bug"],
"images": {
"back_default": "back/616.png",
"front_default": "616.png",
"official": "other/official-artwork/616.png"
}
},
{
"id": 617,
"name": "accelgor",
"dex": 617,
"height": 8,
"weight": 253,
"hp": 80,
"attack": 70,
"defense": 40,
"types": ["bug"],
"images": {
"back_default": "back/617.png",
"front_default": "617.png",
"official": "other/official-artwork/617.png"
}
},
{
"id": 618,
"name": "stunfisk",
"dex": 618,
"height": 7,
"weight": 110,
"hp": 109,
"attack": 66,
"defense": 84,
"types": ["ground", "electric"],
"images": {
"back_default": "back/618.png",
"front_default": "618.png",
"official": "other/official-artwork/618.png"
}
},
{
"id": 619,
"name": "mienfoo",
"dex": 619,
"height": 9,
"weight": 200,
"hp": 45,
"attack": 85,
"defense": 50,
"types": ["fighting"],
"images": {
"back_default": "back/619.png",
"front_default": "619.png",
"official": "other/official-artwork/619.png"
}
},
{
"id": 620,
"name": "mienshao",
"dex": 620,
"height": 14,
"weight": 355,
"hp": 65,
"attack": 125,
"defense": 60,
"types": ["fighting"],
"images": {
"back_default": "back/620.png",
"front_default": "620.png",
"official": "other/official-artwork/620.png"
}
},
{
"id": 621,
"name": "druddigon",
"dex": 621,
"height": 16,
"weight": 1390,
"hp": 77,
"attack": 120,
"defense": 90,
"types": ["dragon"],
"images": {
"back_default": "back/621.png",
"front_default": "621.png",
"official": "other/official-artwork/621.png"
}
},
{
"id": 622,
"name": "golett",
"dex": 622,
"height": 10,
"weight": 920,
"hp": 59,
"attack": 74,
"defense": 50,
"types": ["ground", "ghost"],
"images": {
"back_default": "back/622.png",
"front_default": "622.png",
"official": "other/official-artwork/622.png"
}
},
{
"id": 623,
"name": "golurk",
"dex": 623,
"height": 28,
"weight": 3300,
"hp": 89,
"attack": 124,
"defense": 80,
"types": ["ground", "ghost"],
"images": {
"back_default": "back/623.png",
"front_default": "623.png",
"official": "other/official-artwork/623.png"
}
},
{
"id": 624,
"name": "pawniard",
"dex": 624,
"height": 5,
"weight": 102,
"hp": 45,
"attack": 85,
"defense": 70,
"types": ["dark", "steel"],
"images": {
"back_default": "back/624.png",
"front_default": "624.png",
"official": "other/official-artwork/624.png"
}
},
{
"id": 625,
"name": "bisharp",
"dex": 625,
"height": 16,
"weight": 700,
"hp": 65,
"attack": 125,
"defense": 100,
"types": ["dark", "steel"],
"images": {
"back_default": "back/625.png",
"front_default": "625.png",
"official": "other/official-artwork/625.png"
}
},
{
"id": 626,
"name": "bouffalant",
"dex": 626,
"height": 16,
"weight": 946,
"hp": 95,
"attack": 110,
"defense": 95,
"types": ["normal"],
"images": {
"back_default": "back/626.png",
"front_default": "626.png",
"official": "other/official-artwork/626.png"
}
},
{
"id": 627,
"name": "rufflet",
"dex": 627,
"height": 5,
"weight": 105,
"hp": 70,
"attack": 83,
"defense": 50,
"types": ["normal", "flying"],
"images": {
"back_default": "back/627.png",
"front_default": "627.png",
"official": "other/official-artwork/627.png"
}
},
{
"id": 628,
"name": "braviary",
"dex": 628,
"height": 15,
"weight": 410,
"hp": 100,
"attack": 123,
"defense": 75,
"types": ["normal", "flying"],
"images": {
"back_default": "back/628.png",
"front_default": "628.png",
"official": "other/official-artwork/628.png"
}
},
{
"id": 629,
"name": "vullaby",
"dex": 629,
"height": 5,
"weight": 90,
"hp": 70,
"attack": 55,
"defense": 75,
"types": ["dark", "flying"],
"images": {
"back_default": "back/629.png",
"front_default": "629.png",
"official": "other/official-artwork/629.png"
}
},
{
"id": 630,
"name": "mandibuzz",
"dex": 630,
"height": 12,
"weight": 395,
"hp": 110,
"attack": 65,
"defense": 105,
"types": ["dark", "flying"],
"images": {
"back_default": "back/630.png",
"front_default": "630.png",
"official": "other/official-artwork/630.png"
}
},
{
"id": 631,
"name": "heatmor",
"dex": 631,
"height": 14,
"weight": 580,
"hp": 85,
"attack": 97,
"defense": 66,
"types": ["fire"],
"images": {
"back_default": "back/631.png",
"front_default": "631.png",
"official": "other/official-artwork/631.png"
}
},
{
"id": 632,
"name": "durant",
"dex": 632,
"height": 3,
"weight": 330,
"hp": 58,
"attack": 109,
"defense": 112,
"types": ["bug", "steel"],
"images": {
"back_default": "back/632.png",
"front_default": "632.png",
"official": "other/official-artwork/632.png"
}
},
{
"id": 633,
"name": "deino",
"dex": 633,
"height": 8,
"weight": 173,
"hp": 52,
"attack": 65,
"defense": 50,
"types": ["dark", "dragon"],
"images": {
"back_default": "back/633.png",
"front_default": "633.png",
"official": "other/official-artwork/633.png"
}
},
{
"id": 634,
"name": "zweilous",
"dex": 634,
"height": 14,
"weight": 500,
"hp": 72,
"attack": 85,
"defense": 70,
"types": ["dark", "dragon"],
"images": {
"back_default": "back/634.png",
"front_default": "634.png",
"official": "other/official-artwork/634.png"
}
},
{
"id": 635,
"name": "hydreigon",
"dex": 635,
"height": 18,
"weight": 1600,
"hp": 92,
"attack": 105,
"defense": 90,
"types": ["dark", "dragon"],
"images": {
"back_default": "back/635.png",
"front_default": "635.png",
"official": "other/official-artwork/635.png"
}
},
{
"id": 636,
"name": "larvesta",
"dex": 636,
"height": 11,
"weight": 288,
"hp": 55,
"attack": 85,
"defense": 55,
"types": ["bug", "fire"],
"images": {
"back_default": "back/636.png",
"front_default": "636.png",
"official": "other/official-artwork/636.png"
}
},
{
"id": 637,
"name": "volcarona",
"dex": 637,
"height": 16,
"weight": 460,
"hp": 85,
"attack": 60,
"defense": 65,
"types": ["bug", "fire"],
"images": {
"back_default": "back/637.png",
"front_default": "637.png",
"official": "other/official-artwork/637.png"
}
},
{
"id": 638,
"name": "cobalion",
"dex": 638,
"height": 21,
"weight": 2500,
"hp": 91,
"attack": 90,
"defense": 129,
"types": ["steel", "fighting"],
"images": {
"back_default": "back/638.png",
"front_default": "638.png",
"official": "other/official-artwork/638.png"
}
},
{
"id": 639,
"name": "terrakion",
"dex": 639,
"height": 19,
"weight": 2600,
"hp": 91,
"attack": 129,
"defense": 90,
"types": ["rock", "fighting"],
"images": {
"back_default": "back/639.png",
"front_default": "639.png",
"official": "other/official-artwork/639.png"
}
},
{
"id": 640,
"name": "virizion",
"dex": 640,
"height": 20,
"weight": 2000,
"hp": 91,
"attack": 90,
"defense": 72,
"types": ["grass", "fighting"],
"images": {
"back_default": "back/640.png",
"front_default": "640.png",
"official": "other/official-artwork/640.png"
}
},
{
"id": 641,
"name": "tornadus-incarnate",
"dex": 641,
"height": 15,
"weight": 630,
"hp": 79,
"attack": 115,
"defense": 70,
"types": ["flying"],
"images": {
"back_default": "back/641.png",
"front_default": "641.png",
"official": "other/official-artwork/641.png"
}
},
{
"id": 642,
"name": "thundurus-incarnate",
"dex": 642,
"height": 15,
"weight": 610,
"hp": 79,
"attack": 115,
"defense": 70,
"types": ["electric", "flying"],
"images": {
"back_default": "back/642.png",
"front_default": "642.png",
"official": "other/official-artwork/642.png"
}
},
{
"id": 643,
"name": "reshiram",
"dex": 643,
"height": 32,
"weight": 3300,
"hp": 100,
"attack": 120,
"defense": 100,
"types": ["dragon", "fire"],
"images": {
"back_default": "back/643.png",
"front_default": "643.png",
"official": "other/official-artwork/643.png"
}
},
{
"id": 644,
"name": "zekrom",
"dex": 644,
"height": 29,
"weight": 3450,
"hp": 100,
"attack": 150,
"defense": 120,
"types": ["dragon", "electric"],
"images": {
"back_default": "back/644.png",
"front_default": "644.png",
"official": "other/official-artwork/644.png"
}
},
{
"id": 645,
"name": "landorus-incarnate",
"dex": 645,
"height": 15,
"weight": 680,
"hp": 89,
"attack": 125,
"defense": 90,
"types": ["ground", "flying"],
"images": {
"back_default": "back/645.png",
"front_default": "645.png",
"official": "other/official-artwork/645.png"
}
},
{
"id": 646,
"name": "kyurem",
"dex": 646,
"height": 30,
"weight": 3250,
"hp": 125,
"attack": 130,
"defense": 90,
"types": ["dragon", "ice"],
"images": {
"back_default": "back/646.png",
"front_default": "646.png",
"official": "other/official-artwork/646.png"
}
},
{
"id": 647,
"name": "keldeo-ordinary",
"dex": 647,
"height": 14,
"weight": 485,
"hp": 91,
"attack": 72,
"defense": 90,
"types": ["water", "fighting"],
"images": {
"back_default": "back/647.png",
"front_default": "647.png",
"official": "other/official-artwork/647.png"
}
},
{
"id": 648,
"name": "meloetta-aria",
"dex": 648,
"height": 6,
"weight": 65,
"hp": 100,
"attack": 77,
"defense": 77,
"types": ["normal", "psychic"],
"images": {
"back_default": "back/648.png",
"front_default": "648.png",
"official": "other/official-artwork/648.png"
}
},
{
"id": 649,
"name": "genesect",
"dex": 649,
"height": 15,
"weight": 825,
"hp": 71,
"attack": 120,
"defense": 95,
"types": ["bug", "steel"],
"images": {
"back_default": "back/649.png",
"front_default": "649.png",
"official": "other/official-artwork/649.png"
}
},
{
"id": 650,
"name": "chespin",
"height": 4,
"weight": 90,
"hp": 56,
"attack": 61,
"defense": 65,
"types": ["grass"],
"images": {
"back_default": "back/650.png",
"front_default": "650.png",
"official": "other/official-artwork/650.png"
}
},
{
"id": 651,
"name": "quilladin",
"height": 7,
"weight": 290,
"hp": 61,
"attack": 78,
"defense": 95,
"types": ["grass"],
"images": {
"back_default": "back/651.png",
"front_default": "651.png",
"official": "other/official-artwork/651.png"
}
},
{
"id": 652,
"name": "chesnaught",
"height": 16,
"weight": 900,
"hp": 88,
"attack": 107,
"defense": 122,
"types": ["grass", "fighting"],
"images": {
"back_default": null,
"front_default": "652.png",
"official": "other/official-artwork/652.png"
}
},
{
"id": 653,
"name": "fennekin",
"height": 4,
"weight": 94,
"hp": 40,
"attack": 45,
"defense": 40,
"types": ["fire"],
"images": {
"back_default": "back/653.png",
"front_default": "653.png",
"official": "other/official-artwork/653.png"
}
},
{
"id": 654,
"name": "braixen",
"height": 10,
"weight": 145,
"hp": 59,
"attack": 59,
"defense": 58,
"types": ["fire"],
"images": {
"back_default": null,
"front_default": "654.png",
"official": "other/official-artwork/654.png"
}
},
{
"id": 655,
"name": "delphox",
"height": 15,
"weight": 390,
"hp": 75,
"attack": 69,
"defense": 72,
"types": ["fire", "psychic"],
"images": {
"back_default": null,
"front_default": "655.png",
"official": "other/official-artwork/655.png"
}
},
{
"id": 656,
"name": "froakie",
"height": 3,
"weight": 70,
"hp": 41,
"attack": 56,
"defense": 40,
"types": ["water"],
"images": {
"back_default": "back/656.png",
"front_default": "656.png",
"official": "other/official-artwork/656.png"
}
},
{
"id": 657,
"name": "frogadier",
"height": 6,
"weight": 109,
"hp": 54,
"attack": 63,
"defense": 52,
"types": ["water"],
"images": {
"back_default": null,
"front_default": "657.png",
"official": "other/official-artwork/657.png"
}
},
{
"id": 658,
"name": "greninja",
"height": 15,
"weight": 400,
"hp": 72,
"attack": 95,
"defense": 67,
"types": ["water", "dark"],
"images": {
"back_default": "back/658.png",
"front_default": "658.png",
"official": "other/official-artwork/658.png"
}
},
{
"id": 659,
"name": "bunnelby",
"height": 4,
"weight": 50,
"hp": 38,
"attack": 36,
"defense": 38,
"types": ["normal"],
"images": {
"back_default": "back/659.png",
"front_default": "659.png",
"official": "other/official-artwork/659.png"
}
},
{
"id": 660,
"name": "diggersby",
"height": 10,
"weight": 424,
"hp": 85,
"attack": 56,
"defense": 77,
"types": ["normal", "ground"],
"images": {
"back_default": null,
"front_default": "660.png",
"official": "other/official-artwork/660.png"
}
},
{
"id": 661,
"name": "fletchling",
"height": 3,
"weight": 17,
"hp": 45,
"attack": 50,
"defense": 43,
"types": ["normal", "flying"],
"images": {
"back_default": null,
"front_default": "661.png",
"official": "other/official-artwork/661.png"
}
},
{
"id": 662,
"name": "fletchinder",
"height": 7,
"weight": 160,
"hp": 62,
"attack": 73,
"defense": 55,
"types": ["fire", "flying"],
"images": {
"back_default": null,
"front_default": "662.png",
"official": "other/official-artwork/662.png"
}
},
{
"id": 663,
"name": "talonflame",
"height": 12,
"weight": 245,
"hp": 78,
"attack": 81,
"defense": 71,
"types": ["fire", "flying"],
"images": {
"back_default": "back/663.png",
"front_default": "663.png",
"official": "other/official-artwork/663.png"
}
},
{
"id": 664,
"name": "scatterbug",
"height": 3,
"weight": 25,
"hp": 38,
"attack": 35,
"defense": 40,
"types": ["bug"],
"images": {
"back_default": null,
"front_default": "664.png",
"official": "other/official-artwork/664.png"
}
},
{
"id": 665,
"name": "spewpa",
"height": 3,
"weight": 84,
"hp": 45,
"attack": 22,
"defense": 60,
"types": ["bug"],
"images": {
"back_default": "back/665.png",
"front_default": "665.png",
"official": "other/official-artwork/665.png"
}
},
{
"id": 666,
"name": "vivillon",
"height": 12,
"weight": 170,
"hp": 80,
"attack": 52,
"defense": 50,
"types": ["bug", "flying"],
"images": {
"back_default": null,
"front_default": "666.png",
"official": "other/official-artwork/666.png"
}
},
{
"id": 667,
"name": "litleo",
"height": 6,
"weight": 135,
"hp": 62,
"attack": 50,
"defense": 58,
"types": ["fire", "normal"],
"images": {
"back_default": "back/667.png",
"front_default": "667.png",
"official": "other/official-artwork/667.png"
}
},
{
"id": 668,
"name": "pyroar",
"height": 15,
"weight": 815,
"hp": 86,
"attack": 68,
"defense": 72,
"types": ["fire", "normal"],
"images": {
"back_default": null,
"front_default": "668.png",
"official": "other/official-artwork/668.png"
}
},
{
"id": 669,
"name": "flabebe",
"height": 1,
"weight": 1,
"hp": 44,
"attack": 38,
"defense": 39,
"types": ["fairy"],
"images": {
"back_default": null,
"front_default": "669.png",
"official": "other/official-artwork/669.png"
}
},
{
"id": 670,
"name": "floette",
"height": 2,
"weight": 9,
"hp": 54,
"attack": 45,
"defense": 47,
"types": ["fairy"],
"images": {
"back_default": null,
"front_default": "670.png",
"official": "other/official-artwork/670.png"
}
},
{
"id": 671,
"name": "florges",
"height": 11,
"weight": 100,
"hp": 78,
"attack": 65,
"defense": 68,
"types": ["fairy"],
"images": {
"back_default": null,
"front_default": "671.png",
"official": "other/official-artwork/671.png"
}
},
{
"id": 672,
"name": "skiddo",
"height": 9,
"weight": 310,
"hp": 66,
"attack": 65,
"defense": 48,
"types": ["grass"],
"images": {
"back_default": "back/672.png",
"front_default": "672.png",
"official": "other/official-artwork/672.png"
}
},
{
"id": 673,
"name": "gogoat",
"height": 17,
"weight": 910,
"hp": 123,
"attack": 100,
"defense": 62,
"types": ["grass"],
"images": {
"back_default": null,
"front_default": "673.png",
"official": "other/official-artwork/673.png"
}
},
{
"id": 674,
"name": "pancham",
"height": 6,
"weight": 80,
"hp": 67,
"attack": 82,
"defense": 62,
"types": ["fighting"],
"images": {
"back_default": "back/674.png",
"front_default": "674.png",
"official": "other/official-artwork/674.png"
}
},
{
"id": 675,
"name": "pangoro",
"height": 21,
"weight": 1360,
"hp": 95,
"attack": 124,
"defense": 78,
"types": ["fighting", "dark"],
"images": {
"back_default": null,
"front_default": "675.png",
"official": "other/official-artwork/675.png"
}
},
{
"id": 676,
"name": "furfrou",
"height": 12,
"weight": 280,
"hp": 75,
"attack": 80,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": null,
"front_default": "676.png",
"official": "other/official-artwork/676.png"
}
},
{
"id": 677,
"name": "espurr",
"height": 3,
"weight": 35,
"hp": 62,
"attack": 48,
"defense": 54,
"types": ["psychic"],
"images": {
"back_default": "back/677.png",
"front_default": "677.png",
"official": "other/official-artwork/677.png"
}
},
{
"id": 678,
"name": "meowstic-male",
"height": 6,
"weight": 85,
"hp": 74,
"attack": 48,
"defense": 76,
"types": ["psychic"],
"images": {
"back_default": null,
"front_default": "678.png",
"official": "other/official-artwork/678.png"
}
},
{
"id": 679,
"name": "honedge",
"height": 8,
"weight": 20,
"hp": 45,
"attack": 80,
"defense": 100,
"types": ["steel", "ghost"],
"images": {
"back_default": null,
"front_default": "679.png",
"official": "other/official-artwork/679.png"
}
},
{
"id": 680,
"name": "doublade",
"height": 8,
"weight": 45,
"hp": 59,
"attack": 110,
"defense": 150,
"types": ["steel", "ghost"],
"images": {
"back_default": null,
"front_default": "680.png",
"official": "other/official-artwork/680.png"
}
},
{
"id": 681,
"name": "aegislash-shield",
"height": 17,
"weight": 530,
"hp": 60,
"attack": 50,
"defense": 140,
"types": ["steel", "ghost"],
"images": {
"back_default": null,
"front_default": "681.png",
"official": "other/official-artwork/681.png"
}
},
{
"id": 682,
"name": "spritzee",
"height": 2,
"weight": 5,
"hp": 78,
"attack": 52,
"defense": 60,
"types": ["fairy"],
"images": {
"back_default": "back/682.png",
"front_default": "682.png",
"official": "other/official-artwork/682.png"
}
},
{
"id": 683,
"name": "aromatisse",
"height": 8,
"weight": 155,
"hp": 101,
"attack": 72,
"defense": 72,
"types": ["fairy"],
"images": {
"back_default": "back/683.png",
"front_default": "683.png",
"official": "other/official-artwork/683.png"
}
},
{
"id": 684,
"name": "swirlix",
"height": 4,
"weight": 35,
"hp": 62,
"attack": 48,
"defense": 66,
"types": ["fairy"],
"images": {
"back_default": "back/684.png",
"front_default": "684.png",
"official": "other/official-artwork/684.png"
}
},
{
"id": 685,
"name": "slurpuff",
"height": 8,
"weight": 50,
"hp": 82,
"attack": 80,
"defense": 86,
"types": ["fairy"],
"images": {
"back_default": "back/685.png",
"front_default": "685.png",
"official": "other/official-artwork/685.png"
}
},
{
"id": 686,
"name": "inkay",
"height": 4,
"weight": 35,
"hp": 53,
"attack": 54,
"defense": 53,
"types": ["dark", "psychic"],
"images": {
"back_default": null,
"front_default": "686.png",
"official": "other/official-artwork/686.png"
}
},
{
"id": 687,
"name": "malamar",
"height": 15,
"weight": 470,
"hp": 86,
"attack": 92,
"defense": 88,
"types": ["dark", "psychic"],
"images": {
"back_default": null,
"front_default": "687.png",
"official": "other/official-artwork/687.png"
}
},
{
"id": 688,
"name": "binacle",
"height": 5,
"weight": 310,
"hp": 42,
"attack": 52,
"defense": 67,
"types": ["rock", "water"],
"images": {
"back_default": "back/688.png",
"front_default": "688.png",
"official": "other/official-artwork/688.png"
}
},
{
"id": 689,
"name": "barbaracle",
"height": 13,
"weight": 960,
"hp": 72,
"attack": 105,
"defense": 115,
"types": ["rock", "water"],
"images": {
"back_default": null,
"front_default": "689.png",
"official": "other/official-artwork/689.png"
}
},
{
"id": 690,
"name": "skrelp",
"height": 5,
"weight": 73,
"hp": 50,
"attack": 60,
"defense": 60,
"types": ["poison", "water"],
"images": {
"back_default": "back/690.png",
"front_default": "690.png",
"official": "other/official-artwork/690.png"
}
},
{
"id": 691,
"name": "dragalge",
"height": 18,
"weight": 815,
"hp": 65,
"attack": 75,
"defense": 90,
"types": ["poison", "dragon"],
"images": {
"back_default": null,
"front_default": "691.png",
"official": "other/official-artwork/691.png"
}
},
{
"id": 692,
"name": "clauncher",
"height": 5,
"weight": 83,
"hp": 50,
"attack": 53,
"defense": 62,
"types": ["water"],
"images": {
"back_default": "back/692.png",
"front_default": "692.png",
"official": "other/official-artwork/692.png"
}
},
{
"id": 693,
"name": "clawitzer",
"height": 13,
"weight": 353,
"hp": 71,
"attack": 73,
"defense": 88,
"types": ["water"],
"images": {
"back_default": null,
"front_default": "693.png",
"official": "other/official-artwork/693.png"
}
},
{
"id": 694,
"name": "helioptile",
"height": 5,
"weight": 60,
"hp": 44,
"attack": 38,
"defense": 33,
"types": ["electric", "normal"],
"images": {
"back_default": "back/694.png",
"front_default": "694.png",
"official": "other/official-artwork/694.png"
}
},
{
"id": 695,
"name": "heliolisk",
"height": 10,
"weight": 210,
"hp": 62,
"attack": 55,
"defense": 52,
"types": ["electric", "normal"],
"images": {
"back_default": null,
"front_default": "695.png",
"official": "other/official-artwork/695.png"
}
},
{
"id": 696,
"name": "tyrunt",
"height": 8,
"weight": 260,
"hp": 58,
"attack": 89,
"defense": 77,
"types": ["rock", "dragon"],
"images": {
"back_default": null,
"front_default": "696.png",
"official": "other/official-artwork/696.png"
}
},
{
"id": 697,
"name": "tyrantrum",
"height": 25,
"weight": 2700,
"hp": 82,
"attack": 121,
"defense": 119,
"types": ["rock", "dragon"],
"images": {
"back_default": "back/697.png",
"front_default": "697.png",
"official": "other/official-artwork/697.png"
}
},
{
"id": 698,
"name": "amaura",
"height": 13,
"weight": 252,
"hp": 77,
"attack": 59,
"defense": 50,
"types": ["rock", "ice"],
"images": {
"back_default": null,
"front_default": "698.png",
"official": "other/official-artwork/698.png"
}
},
{
"id": 699,
"name": "aurorus",
"height": 27,
"weight": 2250,
"hp": 123,
"attack": 77,
"defense": 72,
"types": ["rock", "ice"],
"images": {
"back_default": null,
"front_default": "699.png",
"official": "other/official-artwork/699.png"
}
},
{
"id": 700,
"name": "sylveon",
"height": 10,
"weight": 235,
"hp": 95,
"attack": 65,
"defense": 65,
"types": ["fairy"],
"images": {
"back_default": null,
"front_default": "700.png",
"official": "other/official-artwork/700.png"
}
},
{
"id": 701,
"name": "hawlucha",
"height": 8,
"weight": 215,
"hp": 78,
"attack": 92,
"defense": 75,
"types": ["fighting", "flying"],
"images": {
"back_default": "back/701.png",
"front_default": "701.png",
"official": "other/official-artwork/701.png"
}
},
{
"id": 702,
"name": "dedenne",
"height": 2,
"weight": 22,
"hp": 67,
"attack": 58,
"defense": 57,
"types": ["electric", "fairy"],
"images": {
"back_default": "back/702.png",
"front_default": "702.png",
"official": "other/official-artwork/702.png"
}
},
{
"id": 703,
"name": "carbink",
"height": 3,
"weight": 57,
"hp": 50,
"attack": 50,
"defense": 150,
"types": ["rock", "fairy"],
"images": {
"back_default": "back/703.png",
"front_default": "703.png",
"official": "other/official-artwork/703.png"
}
},
{
"id": 704,
"name": "goomy",
"height": 3,
"weight": 28,
"hp": 45,
"attack": 50,
"defense": 35,
"types": ["dragon"],
"images": {
"back_default": "back/704.png",
"front_default": "704.png",
"official": "other/official-artwork/704.png"
}
},
{
"id": 705,
"name": "sliggoo",
"height": 8,
"weight": 175,
"hp": 68,
"attack": 75,
"defense": 53,
"types": ["dragon"],
"images": {
"back_default": null,
"front_default": "705.png",
"official": "other/official-artwork/705.png"
}
},
{
"id": 706,
"name": "goodra",
"height": 20,
"weight": 1505,
"hp": 90,
"attack": 100,
"defense": 70,
"types": ["dragon"],
"images": {
"back_default": null,
"front_default": "706.png",
"official": "other/official-artwork/706.png"
}
},
{
"id": 707,
"name": "klefki",
"height": 2,
"weight": 30,
"hp": 57,
"attack": 80,
"defense": 91,
"types": ["steel", "fairy"],
"images": {
"back_default": "back/707.png",
"front_default": "707.png",
"official": "other/official-artwork/707.png"
}
},
{
"id": 708,
"name": "phantump",
"height": 4,
"weight": 70,
"hp": 43,
"attack": 70,
"defense": 48,
"types": ["ghost", "grass"],
"images": {
"back_default": "back/708.png",
"front_default": "708.png",
"official": "other/official-artwork/708.png"
}
},
{
"id": 709,
"name": "trevenant",
"height": 15,
"weight": 710,
"hp": 85,
"attack": 110,
"defense": 76,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "709.png",
"official": "other/official-artwork/709.png"
}
},
{
"id": 710,
"name": "pumpkaboo-average",
"height": 4,
"weight": 50,
"hp": 49,
"attack": 66,
"defense": 70,
"types": ["ghost", "grass"],
"images": {
"back_default": "back/710.png",
"front_default": "710.png",
"official": "other/official-artwork/710.png"
}
},
{
"id": 711,
"name": "gourgeist-average",
"height": 9,
"weight": 125,
"hp": 65,
"attack": 90,
"defense": 122,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "711.png",
"official": "other/official-artwork/711.png"
}
},
{
"id": 712,
"name": "bergmite",
"height": 10,
"weight": 995,
"hp": 55,
"attack": 69,
"defense": 85,
"types": ["ice"],
"images": {
"back_default": "back/712.png",
"front_default": "712.png",
"official": "other/official-artwork/712.png"
}
},
{
"id": 713,
"name": "avalugg",
"height": 20,
"weight": 5050,
"hp": 95,
"attack": 117,
"defense": 184,
"types": ["ice"],
"images": {
"back_default": null,
"front_default": "713.png",
"official": "other/official-artwork/713.png"
}
},
{
"id": 714,
"name": "noibat",
"height": 5,
"weight": 80,
"hp": 40,
"attack": 30,
"defense": 35,
"types": ["flying", "dragon"],
"images": {
"back_default": null,
"front_default": "714.png",
"official": "other/official-artwork/714.png"
}
},
{
"id": 715,
"name": "noivern",
"height": 15,
"weight": 850,
"hp": 85,
"attack": 70,
"defense": 80,
"types": ["flying", "dragon"],
"images": {
"back_default": null,
"front_default": "715.png",
"official": "other/official-artwork/715.png"
}
},
{
"id": 716,
"name": "xerneas",
"height": 30,
"weight": 2150,
"hp": 126,
"attack": 131,
"defense": 95,
"types": ["fairy"],
"images": {
"back_default": null,
"front_default": "716.png",
"official": "other/official-artwork/716.png"
}
},
{
"id": 717,
"name": "yveltal",
"height": 58,
"weight": 2030,
"hp": 126,
"attack": 131,
"defense": 95,
"types": ["dark", "flying"],
"images": {
"back_default": null,
"front_default": "717.png",
"official": "other/official-artwork/717.png"
}
},
{
"id": 718,
"name": "zygarde-50",
"height": 50,
"weight": 3050,
"hp": 108,
"attack": 100,
"defense": 121,
"types": ["dragon", "ground"],
"images": {
"back_default": null,
"front_default": "718.png",
"official": "other/official-artwork/718.png"
}
},
{
"id": 719,
"name": "diancie",
"height": 7,
"weight": 88,
"hp": 50,
"attack": 100,
"defense": 150,
"types": ["rock", "fairy"],
"images": {
"back_default": null,
"front_default": "719.png",
"official": "other/official-artwork/719.png"
}
},
{
"id": 720,
"name": "hoopa",
"height": 5,
"weight": 90,
"hp": 80,
"attack": 110,
"defense": 60,
"types": ["psychic", "ghost"],
"images": {
"back_default": "back/720.png",
"front_default": "720.png",
"official": "other/official-artwork/720.png"
}
},
{
"id": 721,
"name": "volcanion",
"height": 17,
"weight": 1950,
"hp": 80,
"attack": 110,
"defense": 120,
"types": ["fire", "water"],
"images": {
"back_default": null,
"front_default": "721.png",
"official": "other/official-artwork/721.png"
}
},
{
"id": 722,
"name": "rowlet",
"height": 3,
"weight": 15,
"hp": 68,
"attack": 55,
"defense": 55,
"types": ["grass", "flying"],
"images": {
"back_default": "back/722.png",
"front_default": "722.png",
"official": "other/official-artwork/722.png"
}
},
{
"id": 723,
"name": "dartrix",
"height": 7,
"weight": 160,
"hp": 78,
"attack": 75,
"defense": 75,
"types": ["grass", "flying"],
"images": {
"back_default": "back/723.png",
"front_default": "723.png",
"official": "other/official-artwork/723.png"
}
},
{
"id": 724,
"name": "decidueye",
"height": 16,
"weight": 366,
"hp": 78,
"attack": 107,
"defense": 75,
"types": ["grass", "ghost"],
"images": {
"back_default": "back/724.png",
"front_default": "724.png",
"official": "other/official-artwork/724.png"
}
},
{
"id": 725,
"name": "litten",
"height": 4,
"weight": 43,
"hp": 45,
"attack": 65,
"defense": 40,
"types": ["fire"],
"images": {
"back_default": "back/725.png",
"front_default": "725.png",
"official": "other/official-artwork/725.png"
}
},
{
"id": 726,
"name": "torracat",
"height": 7,
"weight": 250,
"hp": 65,
"attack": 85,
"defense": 50,
"types": ["fire"],
"images": {
"back_default": "back/726.png",
"front_default": "726.png",
"official": "other/official-artwork/726.png"
}
},
{
"id": 727,
"name": "incineroar",
"height": 18,
"weight": 830,
"hp": 95,
"attack": 115,
"defense": 90,
"types": ["fire", "dark"],
"images": {
"back_default": "back/727.png",
"front_default": "727.png",
"official": "other/official-artwork/727.png"
}
},
{
"id": 728,
"name": "popplio",
"height": 4,
"weight": 75,
"hp": 50,
"attack": 54,
"defense": 54,
"types": ["water"],
"images": {
"back_default": "back/728.png",
"front_default": "728.png",
"official": "other/official-artwork/728.png"
}
},
{
"id": 729,
"name": "brionne",
"height": 6,
"weight": 175,
"hp": 60,
"attack": 69,
"defense": 69,
"types": ["water"],
"images": {
"back_default": "back/729.png",
"front_default": "729.png",
"official": "other/official-artwork/729.png"
}
},
{
"id": 730,
"name": "primarina",
"height": 18,
"weight": 440,
"hp": 80,
"attack": 74,
"defense": 74,
"types": ["water", "fairy"],
"images": {
"back_default": "back/730.png",
"front_default": "730.png",
"official": "other/official-artwork/730.png"
}
},
{
"id": 731,
"name": "pikipek",
"height": 3,
"weight": 12,
"hp": 35,
"attack": 75,
"defense": 30,
"types": ["normal", "flying"],
"images": {
"back_default": "back/731.png",
"front_default": "731.png",
"official": "other/official-artwork/731.png"
}
},
{
"id": 732,
"name": "trumbeak",
"height": 6,
"weight": 148,
"hp": 55,
"attack": 85,
"defense": 50,
"types": ["normal", "flying"],
"images": {
"back_default": "back/732.png",
"front_default": "732.png",
"official": "other/official-artwork/732.png"
}
},
{
"id": 733,
"name": "toucannon",
"height": 11,
"weight": 260,
"hp": 80,
"attack": 120,
"defense": 75,
"types": ["normal", "flying"],
"images": {
"back_default": "back/733.png",
"front_default": "733.png",
"official": "other/official-artwork/733.png"
}
},
{
"id": 734,
"name": "yungoos",
"height": 4,
"weight": 60,
"hp": 48,
"attack": 70,
"defense": 30,
"types": ["normal"],
"images": {
"back_default": "back/734.png",
"front_default": "734.png",
"official": "other/official-artwork/734.png"
}
},
{
"id": 735,
"name": "gumshoos",
"height": 7,
"weight": 142,
"hp": 88,
"attack": 110,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": "back/735.png",
"front_default": "735.png",
"official": "other/official-artwork/735.png"
}
},
{
"id": 736,
"name": "grubbin",
"height": 4,
"weight": 44,
"hp": 47,
"attack": 62,
"defense": 45,
"types": ["bug"],
"images": {
"back_default": "back/736.png",
"front_default": "736.png",
"official": "other/official-artwork/736.png"
}
},
{
"id": 737,
"name": "charjabug",
"height": 5,
"weight": 105,
"hp": 57,
"attack": 82,
"defense": 95,
"types": ["bug", "electric"],
"images": {
"back_default": "back/737.png",
"front_default": "737.png",
"official": "other/official-artwork/737.png"
}
},
{
"id": 738,
"name": "vikavolt",
"height": 15,
"weight": 450,
"hp": 77,
"attack": 70,
"defense": 90,
"types": ["bug", "electric"],
"images": {
"back_default": "back/738.png",
"front_default": "738.png",
"official": "other/official-artwork/738.png"
}
},
{
"id": 739,
"name": "crabrawler",
"height": 6,
"weight": 70,
"hp": 47,
"attack": 82,
"defense": 57,
"types": ["fighting"],
"images": {
"back_default": "back/739.png",
"front_default": "739.png",
"official": "other/official-artwork/739.png"
}
},
{
"id": 740,
"name": "crabominable",
"height": 17,
"weight": 1800,
"hp": 97,
"attack": 132,
"defense": 77,
"types": ["fighting", "ice"],
"images": {
"back_default": "back/740.png",
"front_default": "740.png",
"official": "other/official-artwork/740.png"
}
},
{
"id": 741,
"name": "oricorio-baile",
"height": 6,
"weight": 34,
"hp": 75,
"attack": 70,
"defense": 70,
"types": ["fire", "flying"],
"images": {
"back_default": "back/741.png",
"front_default": "741.png",
"official": "other/official-artwork/741.png"
}
},
{
"id": 742,
"name": "cutiefly",
"height": 1,
"weight": 2,
"hp": 40,
"attack": 45,
"defense": 40,
"types": ["bug", "fairy"],
"images": {
"back_default": "back/742.png",
"front_default": "742.png",
"official": "other/official-artwork/742.png"
}
},
{
"id": 743,
"name": "ribombee",
"height": 2,
"weight": 5,
"hp": 60,
"attack": 55,
"defense": 60,
"types": ["bug", "fairy"],
"images": {
"back_default": "back/743.png",
"front_default": "743.png",
"official": "other/official-artwork/743.png"
}
},
{
"id": 744,
"name": "rockruff",
"height": 5,
"weight": 92,
"hp": 45,
"attack": 65,
"defense": 40,
"types": ["rock"],
"images": {
"back_default": "back/744.png",
"front_default": "744.png",
"official": "other/official-artwork/744.png"
}
},
{
"id": 745,
"name": "lycanroc-midday",
"height": 8,
"weight": 250,
"hp": 75,
"attack": 115,
"defense": 65,
"types": ["rock"],
"images": {
"back_default": "back/745.png",
"front_default": "745.png",
"official": "other/official-artwork/745.png"
}
},
{
"id": 746,
"name": "wishiwashi-solo",
"height": 2,
"weight": 3,
"hp": 45,
"attack": 20,
"defense": 20,
"types": ["water"],
"images": {
"back_default": "back/746.png",
"front_default": "746.png",
"official": "other/official-artwork/746.png"
}
},
{
"id": 747,
"name": "mareanie",
"height": 4,
"weight": 80,
"hp": 50,
"attack": 53,
"defense": 62,
"types": ["poison", "water"],
"images": {
"back_default": "back/747.png",
"front_default": "747.png",
"official": "other/official-artwork/747.png"
}
},
{
"id": 748,
"name": "toxapex",
"height": 7,
"weight": 145,
"hp": 50,
"attack": 63,
"defense": 152,
"types": ["poison", "water"],
"images": {
"back_default": "back/748.png",
"front_default": "748.png",
"official": "other/official-artwork/748.png"
}
},
{
"id": 749,
"name": "mudbray",
"height": 10,
"weight": 1100,
"hp": 70,
"attack": 100,
"defense": 70,
"types": ["ground"],
"images": {
"back_default": "back/749.png",
"front_default": "749.png",
"official": "other/official-artwork/749.png"
}
},
{
"id": 750,
"name": "mudsdale",
"height": 25,
"weight": 9200,
"hp": 100,
"attack": 125,
"defense": 100,
"types": ["ground"],
"images": {
"back_default": "back/750.png",
"front_default": "750.png",
"official": "other/official-artwork/750.png"
}
},
{
"id": 751,
"name": "dewpider",
"height": 3,
"weight": 40,
"hp": 38,
"attack": 40,
"defense": 52,
"types": ["water", "bug"],
"images": {
"back_default": "back/751.png",
"front_default": "751.png",
"official": "other/official-artwork/751.png"
}
},
{
"id": 752,
"name": "araquanid",
"height": 18,
"weight": 820,
"hp": 68,
"attack": 70,
"defense": 92,
"types": ["water", "bug"],
"images": {
"back_default": "back/752.png",
"front_default": "752.png",
"official": "other/official-artwork/752.png"
}
},
{
"id": 753,
"name": "fomantis",
"height": 3,
"weight": 15,
"hp": 40,
"attack": 55,
"defense": 35,
"types": ["grass"],
"images": {
"back_default": "back/753.png",
"front_default": "753.png",
"official": "other/official-artwork/753.png"
}
},
{
"id": 754,
"name": "lurantis",
"height": 9,
"weight": 185,
"hp": 70,
"attack": 105,
"defense": 90,
"types": ["grass"],
"images": {
"back_default": "back/754.png",
"front_default": "754.png",
"official": "other/official-artwork/754.png"
}
},
{
"id": 755,
"name": "morelull",
"height": 2,
"weight": 15,
"hp": 40,
"attack": 35,
"defense": 55,
"types": ["grass", "fairy"],
"images": {
"back_default": "back/755.png",
"front_default": "755.png",
"official": "other/official-artwork/755.png"
}
},
{
"id": 756,
"name": "shiinotic",
"height": 10,
"weight": 115,
"hp": 60,
"attack": 45,
"defense": 80,
"types": ["grass", "fairy"],
"images": {
"back_default": "back/756.png",
"front_default": "756.png",
"official": "other/official-artwork/756.png"
}
},
{
"id": 757,
"name": "salandit",
"height": 6,
"weight": 48,
"hp": 48,
"attack": 44,
"defense": 40,
"types": ["poison", "fire"],
"images": {
"back_default": "back/757.png",
"front_default": "757.png",
"official": "other/official-artwork/757.png"
}
},
{
"id": 758,
"name": "salazzle",
"height": 12,
"weight": 222,
"hp": 68,
"attack": 64,
"defense": 60,
"types": ["poison", "fire"],
"images": {
"back_default": "back/758.png",
"front_default": "758.png",
"official": "other/official-artwork/758.png"
}
},
{
"id": 759,
"name": "stufful",
"height": 5,
"weight": 68,
"hp": 70,
"attack": 75,
"defense": 50,
"types": ["normal", "fighting"],
"images": {
"back_default": "back/759.png",
"front_default": "759.png",
"official": "other/official-artwork/759.png"
}
},
{
"id": 760,
"name": "bewear",
"height": 21,
"weight": 1350,
"hp": 120,
"attack": 125,
"defense": 80,
"types": ["normal", "fighting"],
"images": {
"back_default": "back/760.png",
"front_default": "760.png",
"official": "other/official-artwork/760.png"
}
},
{
"id": 761,
"name": "bounsweet",
"height": 3,
"weight": 32,
"hp": 42,
"attack": 30,
"defense": 38,
"types": ["grass"],
"images": {
"back_default": "back/761.png",
"front_default": "761.png",
"official": "other/official-artwork/761.png"
}
},
{
"id": 762,
"name": "steenee",
"height": 7,
"weight": 82,
"hp": 52,
"attack": 40,
"defense": 48,
"types": ["grass"],
"images": {
"back_default": "back/762.png",
"front_default": "762.png",
"official": "other/official-artwork/762.png"
}
},
{
"id": 763,
"name": "tsareena",
"height": 12,
"weight": 214,
"hp": 72,
"attack": 120,
"defense": 98,
"types": ["grass"],
"images": {
"back_default": "back/763.png",
"front_default": "763.png",
"official": "other/official-artwork/763.png"
}
},
{
"id": 764,
"name": "comfey",
"height": 1,
"weight": 3,
"hp": 51,
"attack": 52,
"defense": 90,
"types": ["fairy"],
"images": {
"back_default": "back/764.png",
"front_default": "764.png",
"official": "other/official-artwork/764.png"
}
},
{
"id": 765,
"name": "oranguru",
"height": 15,
"weight": 760,
"hp": 90,
"attack": 60,
"defense": 80,
"types": ["normal", "psychic"],
"images": {
"back_default": "back/765.png",
"front_default": "765.png",
"official": "other/official-artwork/765.png"
}
},
{
"id": 766,
"name": "passimian",
"height": 20,
"weight": 828,
"hp": 100,
"attack": 120,
"defense": 90,
"types": ["fighting"],
"images": {
"back_default": "back/766.png",
"front_default": "766.png",
"official": "other/official-artwork/766.png"
}
},
{
"id": 767,
"name": "wimpod",
"height": 5,
"weight": 120,
"hp": 25,
"attack": 35,
"defense": 40,
"types": ["bug", "water"],
"images": {
"back_default": "back/767.png",
"front_default": "767.png",
"official": "other/official-artwork/767.png"
}
},
{
"id": 768,
"name": "golisopod",
"height": 20,
"weight": 1080,
"hp": 75,
"attack": 125,
"defense": 140,
"types": ["bug", "water"],
"images": {
"back_default": "back/768.png",
"front_default": "768.png",
"official": "other/official-artwork/768.png"
}
},
{
"id": 769,
"name": "sandygast",
"height": 5,
"weight": 700,
"hp": 55,
"attack": 55,
"defense": 80,
"types": ["ghost", "ground"],
"images": {
"back_default": "back/769.png",
"front_default": "769.png",
"official": "other/official-artwork/769.png"
}
},
{
"id": 770,
"name": "palossand",
"height": 13,
"weight": 2500,
"hp": 85,
"attack": 75,
"defense": 110,
"types": ["ghost", "ground"],
"images": {
"back_default": "back/770.png",
"front_default": "770.png",
"official": "other/official-artwork/770.png"
}
},
{
"id": 771,
"name": "pyukumuku",
"height": 3,
"weight": 12,
"hp": 55,
"attack": 60,
"defense": 130,
"types": ["water"],
"images": {
"back_default": "back/771.png",
"front_default": "771.png",
"official": "other/official-artwork/771.png"
}
},
{
"id": 772,
"name": "type-null",
"height": 19,
"weight": 1205,
"hp": 95,
"attack": 95,
"defense": 95,
"types": ["normal"],
"images": {
"back_default": "back/772.png",
"front_default": "772.png",
"official": "other/official-artwork/772.png"
}
},
{
"id": 773,
"name": "silvally",
"height": 23,
"weight": 1005,
"hp": 95,
"attack": 95,
"defense": 95,
"types": ["normal"],
"images": {
"back_default": "back/773.png",
"front_default": "773.png",
"official": "other/official-artwork/773.png"
}
},
{
"id": 774,
"name": "minior-red-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": "back/774.png",
"front_default": "774.png",
"official": "other/official-artwork/774.png"
}
},
{
"id": 775,
"name": "komala",
"height": 4,
"weight": 199,
"hp": 65,
"attack": 115,
"defense": 65,
"types": ["normal"],
"images": {
"back_default": "back/775.png",
"front_default": "775.png",
"official": "other/official-artwork/775.png"
}
},
{
"id": 776,
"name": "turtonator",
"height": 20,
"weight": 2120,
"hp": 60,
"attack": 78,
"defense": 135,
"types": ["fire", "dragon"],
"images": {
"back_default": "back/776.png",
"front_default": "776.png",
"official": "other/official-artwork/776.png"
}
},
{
"id": 777,
"name": "togedemaru",
"height": 3,
"weight": 33,
"hp": 65,
"attack": 98,
"defense": 63,
"types": ["electric", "steel"],
"images": {
"back_default": "back/777.png",
"front_default": "777.png",
"official": "other/official-artwork/777.png"
}
},
{
"id": 778,
"name": "mimikyu-disguised",
"height": 2,
"weight": 7,
"hp": 55,
"attack": 90,
"defense": 80,
"types": ["ghost", "fairy"],
"images": {
"back_default": "back/778.png",
"front_default": "778.png",
"official": "other/official-artwork/778.png"
}
},
{
"id": 779,
"name": "bruxish",
"height": 9,
"weight": 190,
"hp": 68,
"attack": 105,
"defense": 70,
"types": ["water", "psychic"],
"images": {
"back_default": "back/779.png",
"front_default": "779.png",
"official": "other/official-artwork/779.png"
}
},
{
"id": 780,
"name": "drampa",
"height": 30,
"weight": 1850,
"hp": 78,
"attack": 60,
"defense": 85,
"types": ["normal", "dragon"],
"images": {
"back_default": "back/780.png",
"front_default": "780.png",
"official": "other/official-artwork/780.png"
}
},
{
"id": 781,
"name": "dhelmise",
"height": 39,
"weight": 2100,
"hp": 70,
"attack": 131,
"defense": 100,
"types": ["ghost", "grass"],
"images": {
"back_default": "back/781.png",
"front_default": "781.png",
"official": "other/official-artwork/781.png"
}
},
{
"id": 782,
"name": "jangmo-o",
"height": 6,
"weight": 297,
"hp": 45,
"attack": 55,
"defense": 65,
"types": ["dragon"],
"images": {
"back_default": "back/782.png",
"front_default": "782.png",
"official": "other/official-artwork/782.png"
}
},
{
"id": 783,
"name": "hakamo-o",
"height": 12,
"weight": 470,
"hp": 55,
"attack": 75,
"defense": 90,
"types": ["dragon", "fighting"],
"images": {
"back_default": "back/783.png",
"front_default": "783.png",
"official": "other/official-artwork/783.png"
}
},
{
"id": 784,
"name": "kommo-o",
"height": 16,
"weight": 782,
"hp": 75,
"attack": 110,
"defense": 125,
"types": ["dragon", "fighting"],
"images": {
"back_default": "back/784.png",
"front_default": "784.png",
"official": "other/official-artwork/784.png"
}
},
{
"id": 785,
"name": "tapu-koko",
"height": 18,
"weight": 205,
"hp": 70,
"attack": 115,
"defense": 85,
"types": ["electric", "fairy"],
"images": {
"back_default": "back/785.png",
"front_default": "785.png",
"official": "other/official-artwork/785.png"
}
},
{
"id": 786,
"name": "tapu-lele",
"height": 12,
"weight": 186,
"hp": 70,
"attack": 85,
"defense": 75,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/786.png",
"front_default": "786.png",
"official": "other/official-artwork/786.png"
}
},
{
"id": 787,
"name": "tapu-bulu",
"height": 19,
"weight": 455,
"hp": 70,
"attack": 130,
"defense": 115,
"types": ["grass", "fairy"],
"images": {
"back_default": "back/787.png",
"front_default": "787.png",
"official": "other/official-artwork/787.png"
}
},
{
"id": 788,
"name": "tapu-fini",
"height": 13,
"weight": 212,
"hp": 70,
"attack": 75,
"defense": 115,
"types": ["water", "fairy"],
"images": {
"back_default": "back/788.png",
"front_default": "788.png",
"official": "other/official-artwork/788.png"
}
},
{
"id": 789,
"name": "cosmog",
"height": 2,
"weight": 1,
"hp": 43,
"attack": 29,
"defense": 31,
"types": ["psychic"],
"images": {
"back_default": "back/789.png",
"front_default": "789.png",
"official": "other/official-artwork/789.png"
}
},
{
"id": 790,
"name": "cosmoem",
"height": 1,
"weight": 9999,
"hp": 43,
"attack": 29,
"defense": 131,
"types": ["psychic"],
"images": {
"back_default": "back/790.png",
"front_default": "790.png",
"official": "other/official-artwork/790.png"
}
},
{
"id": 791,
"name": "solgaleo",
"height": 34,
"weight": 2300,
"hp": 137,
"attack": 137,
"defense": 107,
"types": ["psychic", "steel"],
"images": {
"back_default": "back/791.png",
"front_default": "791.png",
"official": "other/official-artwork/791.png"
}
},
{
"id": 792,
"name": "lunala",
"height": 40,
"weight": 1200,
"hp": 137,
"attack": 113,
"defense": 89,
"types": ["psychic", "ghost"],
"images": {
"back_default": "back/792.png",
"front_default": "792.png",
"official": "other/official-artwork/792.png"
}
},
{
"id": 793,
"name": "nihilego",
"height": 12,
"weight": 555,
"hp": 109,
"attack": 53,
"defense": 47,
"types": ["rock", "poison"],
"images": {
"back_default": "back/793.png",
"front_default": "793.png",
"official": "other/official-artwork/793.png"
}
},
{
"id": 794,
"name": "buzzwole",
"height": 24,
"weight": 3336,
"hp": 107,
"attack": 139,
"defense": 139,
"types": ["bug", "fighting"],
"images": {
"back_default": "back/794.png",
"front_default": "794.png",
"official": "other/official-artwork/794.png"
}
},
{
"id": 795,
"name": "pheromosa",
"height": 18,
"weight": 250,
"hp": 71,
"attack": 137,
"defense": 37,
"types": ["bug", "fighting"],
"images": {
"back_default": "back/795.png",
"front_default": "795.png",
"official": "other/official-artwork/795.png"
}
},
{
"id": 796,
"name": "xurkitree",
"height": 38,
"weight": 1000,
"hp": 83,
"attack": 89,
"defense": 71,
"types": ["electric"],
"images": {
"back_default": "back/796.png",
"front_default": "796.png",
"official": "other/official-artwork/796.png"
}
},
{
"id": 797,
"name": "celesteela",
"height": 92,
"weight": 9999,
"hp": 97,
"attack": 101,
"defense": 103,
"types": ["steel", "flying"],
"images": {
"back_default": "back/797.png",
"front_default": "797.png",
"official": "other/official-artwork/797.png"
}
},
{
"id": 798,
"name": "kartana",
"height": 3,
"weight": 1,
"hp": 59,
"attack": 181,
"defense": 131,
"types": ["grass", "steel"],
"images": {
"back_default": "back/798.png",
"front_default": "798.png",
"official": "other/official-artwork/798.png"
}
},
{
"id": 799,
"name": "guzzlord",
"height": 55,
"weight": 8880,
"hp": 223,
"attack": 101,
"defense": 53,
"types": ["dark", "dragon"],
"images": {
"back_default": "back/799.png",
"front_default": "799.png",
"official": "other/official-artwork/799.png"
}
},
{
"id": 800,
"name": "necrozma",
"height": 24,
"weight": 2300,
"hp": 97,
"attack": 107,
"defense": 101,
"types": ["psychic"],
"images": {
"back_default": "back/800.png",
"front_default": "800.png",
"official": "other/official-artwork/800.png"
}
},
{
"id": 801,
"name": "magearna",
"height": 10,
"weight": 805,
"hp": 80,
"attack": 95,
"defense": 115,
"types": ["steel", "fairy"],
"images": {
"back_default": "back/801.png",
"front_default": "801.png",
"official": "other/official-artwork/801.png"
}
},
{
"id": 802,
"name": "marshadow",
"height": 7,
"weight": 222,
"hp": 90,
"attack": 125,
"defense": 80,
"types": ["fighting", "ghost"],
"images": {
"back_default": "back/802.png",
"front_default": "802.png",
"official": "other/official-artwork/802.png"
}
},
{
"id": 803,
"name": "poipole",
"height": 6,
"weight": 18,
"hp": 67,
"attack": 73,
"defense": 67,
"types": ["poison"],
"images": {
"back_default": "back/803.png",
"front_default": "803.png",
"official": "other/official-artwork/803.png"
}
},
{
"id": 804,
"name": "naganadel",
"height": 36,
"weight": 1500,
"hp": 73,
"attack": 73,
"defense": 73,
"types": ["poison", "dragon"],
"images": {
"back_default": "back/804.png",
"front_default": "804.png",
"official": "other/official-artwork/804.png"
}
},
{
"id": 805,
"name": "stakataka",
"height": 55,
"weight": 8200,
"hp": 61,
"attack": 131,
"defense": 211,
"types": ["rock", "steel"],
"images": {
"back_default": "back/805.png",
"front_default": "805.png",
"official": "other/official-artwork/805.png"
}
},
{
"id": 806,
"name": "blacephalon",
"height": 18,
"weight": 130,
"hp": 53,
"attack": 127,
"defense": 53,
"types": ["fire", "ghost"],
"images": {
"back_default": "back/806.png",
"front_default": "806.png",
"official": "other/official-artwork/806.png"
}
},
{
"id": 807,
"name": "zeraora",
"height": 15,
"weight": 445,
"hp": 88,
"attack": 112,
"defense": 75,
"types": ["electric"],
"images": {
"back_default": "back/807.png",
"front_default": "807.png",
"official": "other/official-artwork/807.png"
}
},
{
"id": 808,
"name": "meltan",
"height": 2,
"weight": 80,
"hp": 46,
"attack": 65,
"defense": 65,
"types": ["steel"],
"images": {
"back_default": "back/808.png",
"front_default": "808.png",
"official": "other/official-artwork/808.png"
}
},
{
"id": 809,
"name": "melmetal",
"height": 25,
"weight": 8000,
"hp": 135,
"attack": 143,
"defense": 143,
"types": ["steel"],
"images": {
"back_default": "back/809.png",
"front_default": "809.png",
"official": "other/official-artwork/809.png"
}
},
{
"id": 810,
"name": "grookey",
"height": 3,
"weight": 50,
"hp": 50,
"attack": 65,
"defense": 50,
"types": ["grass"],
"images": {
"back_default": "back/810.png",
"front_default": "810.png",
"official": "other/official-artwork/810.png"
}
},
{
"id": 811,
"name": "thwackey",
"height": 7,
"weight": 140,
"hp": 70,
"attack": 85,
"defense": 70,
"types": ["grass"],
"images": {
"back_default": "back/811.png",
"front_default": "811.png",
"official": "other/official-artwork/811.png"
}
},
{
"id": 812,
"name": "rillaboom",
"height": 21,
"weight": 900,
"hp": 100,
"attack": 125,
"defense": 90,
"types": ["grass"],
"images": {
"back_default": "back/812.png",
"front_default": "812.png",
"official": "other/official-artwork/812.png"
}
},
{
"id": 813,
"name": "scorbunny",
"height": 3,
"weight": 45,
"hp": 50,
"attack": 71,
"defense": 40,
"types": ["fire"],
"images": {
"back_default": "back/813.png",
"front_default": "813.png",
"official": "other/official-artwork/813.png"
}
},
{
"id": 814,
"name": "raboot",
"height": 6,
"weight": 90,
"hp": 65,
"attack": 86,
"defense": 60,
"types": ["fire"],
"images": {
"back_default": "back/814.png",
"front_default": "814.png",
"official": "other/official-artwork/814.png"
}
},
{
"id": 815,
"name": "cinderace",
"height": 14,
"weight": 330,
"hp": 80,
"attack": 116,
"defense": 75,
"types": ["fire"],
"images": {
"back_default": "back/815.png",
"front_default": "815.png",
"official": "other/official-artwork/815.png"
}
},
{
"id": 816,
"name": "sobble",
"height": 3,
"weight": 40,
"hp": 50,
"attack": 40,
"defense": 40,
"types": ["water"],
"images": {
"back_default": "back/816.png",
"front_default": "816.png",
"official": "other/official-artwork/816.png"
}
},
{
"id": 817,
"name": "drizzile",
"height": 7,
"weight": 115,
"hp": 65,
"attack": 60,
"defense": 55,
"types": ["water"],
"images": {
"back_default": "back/817.png",
"front_default": "817.png",
"official": "other/official-artwork/817.png"
}
},
{
"id": 818,
"name": "inteleon",
"height": 19,
"weight": 452,
"hp": 70,
"attack": 85,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/818.png",
"front_default": "818.png",
"official": "other/official-artwork/818.png"
}
},
{
"id": 819,
"name": "skwovet",
"height": 3,
"weight": 25,
"hp": 70,
"attack": 55,
"defense": 55,
"types": ["normal"],
"images": {
"back_default": "back/819.png",
"front_default": "819.png",
"official": "other/official-artwork/819.png"
}
},
{
"id": 820,
"name": "greedent",
"height": 6,
"weight": 60,
"hp": 120,
"attack": 95,
"defense": 95,
"types": ["normal"],
"images": {
"back_default": "back/820.png",
"front_default": "820.png",
"official": "other/official-artwork/820.png"
}
},
{
"id": 821,
"name": "rookidee",
"height": 2,
"weight": 18,
"hp": 38,
"attack": 47,
"defense": 35,
"types": ["flying"],
"images": {
"back_default": "back/821.png",
"front_default": "821.png",
"official": "other/official-artwork/821.png"
}
},
{
"id": 822,
"name": "corvisquire",
"height": 8,
"weight": 160,
"hp": 68,
"attack": 67,
"defense": 55,
"types": ["flying"],
"images": {
"back_default": "back/822.png",
"front_default": "822.png",
"official": "other/official-artwork/822.png"
}
},
{
"id": 823,
"name": "corviknight",
"height": 22,
"weight": 750,
"hp": 98,
"attack": 87,
"defense": 105,
"types": ["flying", "steel"],
"images": {
"back_default": "back/823.png",
"front_default": "823.png",
"official": "other/official-artwork/823.png"
}
},
{
"id": 824,
"name": "blipbug",
"height": 4,
"weight": 80,
"hp": 25,
"attack": 20,
"defense": 20,
"types": ["bug"],
"images": {
"back_default": "back/824.png",
"front_default": "824.png",
"official": "other/official-artwork/824.png"
}
},
{
"id": 825,
"name": "dottler",
"height": 4,
"weight": 195,
"hp": 50,
"attack": 35,
"defense": 80,
"types": ["bug", "psychic"],
"images": {
"back_default": "back/825.png",
"front_default": "825.png",
"official": "other/official-artwork/825.png"
}
},
{
"id": 826,
"name": "orbeetle",
"height": 4,
"weight": 408,
"hp": 60,
"attack": 45,
"defense": 110,
"types": ["bug", "psychic"],
"images": {
"back_default": "back/826.png",
"front_default": "826.png",
"official": "other/official-artwork/826.png"
}
},
{
"id": 827,
"name": "nickit",
"height": 6,
"weight": 89,
"hp": 40,
"attack": 28,
"defense": 28,
"types": ["dark"],
"images": {
"back_default": "back/827.png",
"front_default": "827.png",
"official": "other/official-artwork/827.png"
}
},
{
"id": 828,
"name": "thievul",
"height": 12,
"weight": 199,
"hp": 70,
"attack": 58,
"defense": 58,
"types": ["dark"],
"images": {
"back_default": "back/828.png",
"front_default": "828.png",
"official": "other/official-artwork/828.png"
}
},
{
"id": 829,
"name": "gossifleur",
"height": 4,
"weight": 22,
"hp": 40,
"attack": 40,
"defense": 60,
"types": ["grass"],
"images": {
"back_default": "back/829.png",
"front_default": "829.png",
"official": "other/official-artwork/829.png"
}
},
{
"id": 830,
"name": "eldegoss",
"height": 5,
"weight": 25,
"hp": 60,
"attack": 50,
"defense": 90,
"types": ["grass"],
"images": {
"back_default": "back/830.png",
"front_default": "830.png",
"official": "other/official-artwork/830.png"
}
},
{
"id": 831,
"name": "wooloo",
"height": 6,
"weight": 60,
"hp": 42,
"attack": 40,
"defense": 55,
"types": ["normal"],
"images": {
"back_default": "back/831.png",
"front_default": "831.png",
"official": "other/official-artwork/831.png"
}
},
{
"id": 832,
"name": "dubwool",
"height": 13,
"weight": 430,
"hp": 72,
"attack": 80,
"defense": 100,
"types": ["normal"],
"images": {
"back_default": "back/832.png",
"front_default": "832.png",
"official": "other/official-artwork/832.png"
}
},
{
"id": 833,
"name": "chewtle",
"height": 3,
"weight": 85,
"hp": 50,
"attack": 64,
"defense": 50,
"types": ["water"],
"images": {
"back_default": "back/833.png",
"front_default": "833.png",
"official": "other/official-artwork/833.png"
}
},
{
"id": 834,
"name": "drednaw",
"height": 10,
"weight": 1155,
"hp": 90,
"attack": 115,
"defense": 90,
"types": ["water", "rock"],
"images": {
"back_default": "back/834.png",
"front_default": "834.png",
"official": "other/official-artwork/834.png"
}
},
{
"id": 835,
"name": "yamper",
"height": 3,
"weight": 135,
"hp": 59,
"attack": 45,
"defense": 50,
"types": ["electric"],
"images": {
"back_default": "back/835.png",
"front_default": "835.png",
"official": "other/official-artwork/835.png"
}
},
{
"id": 836,
"name": "boltund",
"height": 10,
"weight": 340,
"hp": 69,
"attack": 90,
"defense": 60,
"types": ["electric"],
"images": {
"back_default": "back/836.png",
"front_default": "836.png",
"official": "other/official-artwork/836.png"
}
},
{
"id": 837,
"name": "rolycoly",
"height": 3,
"weight": 120,
"hp": 30,
"attack": 40,
"defense": 50,
"types": ["rock"],
"images": {
"back_default": "back/837.png",
"front_default": "837.png",
"official": "other/official-artwork/837.png"
}
},
{
"id": 838,
"name": "carkol",
"height": 11,
"weight": 780,
"hp": 80,
"attack": 60,
"defense": 90,
"types": ["rock", "fire"],
"images": {
"back_default": "back/838.png",
"front_default": "838.png",
"official": "other/official-artwork/838.png"
}
},
{
"id": 839,
"name": "coalossal",
"height": 28,
"weight": 3105,
"hp": 110,
"attack": 80,
"defense": 120,
"types": ["rock", "fire"],
"images": {
"back_default": "back/839.png",
"front_default": "839.png",
"official": "other/official-artwork/839.png"
}
},
{
"id": 840,
"name": "applin",
"height": 2,
"weight": 5,
"hp": 40,
"attack": 40,
"defense": 80,
"types": ["grass", "dragon"],
"images": {
"back_default": "back/840.png",
"front_default": "840.png",
"official": "other/official-artwork/840.png"
}
},
{
"id": 841,
"name": "flapple",
"height": 3,
"weight": 10,
"hp": 70,
"attack": 110,
"defense": 80,
"types": ["grass", "dragon"],
"images": {
"back_default": "back/841.png",
"front_default": "841.png",
"official": "other/official-artwork/841.png"
}
},
{
"id": 842,
"name": "appletun",
"height": 4,
"weight": 130,
"hp": 110,
"attack": 85,
"defense": 80,
"types": ["grass", "dragon"],
"images": {
"back_default": "back/842.png",
"front_default": "842.png",
"official": "other/official-artwork/842.png"
}
},
{
"id": 843,
"name": "silicobra",
"height": 22,
"weight": 76,
"hp": 52,
"attack": 57,
"defense": 75,
"types": ["ground"],
"images": {
"back_default": "back/843.png",
"front_default": "843.png",
"official": "other/official-artwork/843.png"
}
},
{
"id": 844,
"name": "sandaconda",
"height": 38,
"weight": 655,
"hp": 72,
"attack": 107,
"defense": 125,
"types": ["ground"],
"images": {
"back_default": "back/844.png",
"front_default": "844.png",
"official": "other/official-artwork/844.png"
}
},
{
"id": 845,
"name": "cramorant",
"height": 8,
"weight": 180,
"hp": 70,
"attack": 85,
"defense": 55,
"types": ["flying", "water"],
"images": {
"back_default": "back/845.png",
"front_default": "845.png",
"official": "other/official-artwork/845.png"
}
},
{
"id": 846,
"name": "arrokuda",
"height": 5,
"weight": 10,
"hp": 41,
"attack": 63,
"defense": 40,
"types": ["water"],
"images": {
"back_default": "back/846.png",
"front_default": "846.png",
"official": "other/official-artwork/846.png"
}
},
{
"id": 847,
"name": "barraskewda",
"height": 13,
"weight": 300,
"hp": 61,
"attack": 123,
"defense": 60,
"types": ["water"],
"images": {
"back_default": "back/847.png",
"front_default": "847.png",
"official": "other/official-artwork/847.png"
}
},
{
"id": 848,
"name": "toxel",
"height": 4,
"weight": 110,
"hp": 40,
"attack": 38,
"defense": 35,
"types": ["electric", "poison"],
"images": {
"back_default": "back/848.png",
"front_default": "848.png",
"official": "other/official-artwork/848.png"
}
},
{
"id": 849,
"name": "toxtricity-amped",
"height": 16,
"weight": 400,
"hp": 75,
"attack": 98,
"defense": 70,
"types": ["electric", "poison"],
"images": {
"back_default": "back/849.png",
"front_default": "849.png",
"official": "other/official-artwork/849.png"
}
},
{
"id": 850,
"name": "sizzlipede",
"height": 7,
"weight": 10,
"hp": 50,
"attack": 65,
"defense": 45,
"types": ["fire", "bug"],
"images": {
"back_default": "back/850.png",
"front_default": "850.png",
"official": "other/official-artwork/850.png"
}
},
{
"id": 851,
"name": "centiskorch",
"height": 30,
"weight": 1200,
"hp": 100,
"attack": 115,
"defense": 65,
"types": ["fire", "bug"],
"images": {
"back_default": "back/851.png",
"front_default": "851.png",
"official": "other/official-artwork/851.png"
}
},
{
"id": 852,
"name": "clobbopus",
"height": 6,
"weight": 40,
"hp": 50,
"attack": 68,
"defense": 60,
"types": ["fighting"],
"images": {
"back_default": "back/852.png",
"front_default": "852.png",
"official": "other/official-artwork/852.png"
}
},
{
"id": 853,
"name": "grapploct",
"height": 16,
"weight": 390,
"hp": 80,
"attack": 118,
"defense": 90,
"types": ["fighting"],
"images": {
"back_default": "back/853.png",
"front_default": "853.png",
"official": "other/official-artwork/853.png"
}
},
{
"id": 854,
"name": "sinistea",
"height": 1,
"weight": 2,
"hp": 40,
"attack": 45,
"defense": 45,
"types": ["ghost"],
"images": {
"back_default": "back/854.png",
"front_default": "854.png",
"official": "other/official-artwork/854.png"
}
},
{
"id": 855,
"name": "polteageist",
"height": 2,
"weight": 4,
"hp": 60,
"attack": 65,
"defense": 65,
"types": ["ghost"],
"images": {
"back_default": "back/855.png",
"front_default": "855.png",
"official": "other/official-artwork/855.png"
}
},
{
"id": 856,
"name": "hatenna",
"height": 4,
"weight": 34,
"hp": 42,
"attack": 30,
"defense": 45,
"types": ["psychic"],
"images": {
"back_default": "back/856.png",
"front_default": "856.png",
"official": "other/official-artwork/856.png"
}
},
{
"id": 857,
"name": "hattrem",
"height": 6,
"weight": 48,
"hp": 57,
"attack": 40,
"defense": 65,
"types": ["psychic"],
"images": {
"back_default": "back/857.png",
"front_default": "857.png",
"official": "other/official-artwork/857.png"
}
},
{
"id": 858,
"name": "hatterene",
"height": 21,
"weight": 51,
"hp": 57,
"attack": 90,
"defense": 95,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/858.png",
"front_default": "858.png",
"official": "other/official-artwork/858.png"
}
},
{
"id": 859,
"name": "impidimp",
"height": 4,
"weight": 55,
"hp": 45,
"attack": 45,
"defense": 30,
"types": ["dark", "fairy"],
"images": {
"back_default": "back/859.png",
"front_default": "859.png",
"official": "other/official-artwork/859.png"
}
},
{
"id": 860,
"name": "morgrem",
"height": 8,
"weight": 125,
"hp": 65,
"attack": 60,
"defense": 45,
"types": ["dark", "fairy"],
"images": {
"back_default": "back/860.png",
"front_default": "860.png",
"official": "other/official-artwork/860.png"
}
},
{
"id": 861,
"name": "grimmsnarl",
"height": 15,
"weight": 610,
"hp": 95,
"attack": 120,
"defense": 65,
"types": ["dark", "fairy"],
"images": {
"back_default": "back/861.png",
"front_default": "861.png",
"official": "other/official-artwork/861.png"
}
},
{
"id": 862,
"name": "obstagoon",
"height": 16,
"weight": 460,
"hp": 93,
"attack": 90,
"defense": 101,
"types": ["dark", "normal"],
"images": {
"back_default": "back/862.png",
"front_default": "862.png",
"official": "other/official-artwork/862.png"
}
},
{
"id": 863,
"name": "perrserker",
"height": 8,
"weight": 280,
"hp": 70,
"attack": 110,
"defense": 100,
"types": ["steel"],
"images": {
"back_default": "back/863.png",
"front_default": "863.png",
"official": "other/official-artwork/863.png"
}
},
{
"id": 864,
"name": "cursola",
"height": 10,
"weight": 4,
"hp": 60,
"attack": 95,
"defense": 50,
"types": ["ghost"],
"images": {
"back_default": "back/864.png",
"front_default": "864.png",
"official": "other/official-artwork/864.png"
}
},
{
"id": 865,
"name": "sirfetchd",
"height": 8,
"weight": 1170,
"hp": 62,
"attack": 135,
"defense": 95,
"types": ["fighting"],
"images": {
"back_default": "back/865.png",
"front_default": "865.png",
"official": "other/official-artwork/865.png"
}
},
{
"id": 866,
"name": "mr-rime",
"height": 15,
"weight": 582,
"hp": 80,
"attack": 85,
"defense": 75,
"types": ["ice", "psychic"],
"images": {
"back_default": "back/866.png",
"front_default": "866.png",
"official": "other/official-artwork/866.png"
}
},
{
"id": 867,
"name": "runerigus",
"height": 16,
"weight": 666,
"hp": 58,
"attack": 95,
"defense": 145,
"types": ["ground", "ghost"],
"images": {
"back_default": "back/867.png",
"front_default": "867.png",
"official": "other/official-artwork/867.png"
}
},
{
"id": 868,
"name": "milcery",
"height": 2,
"weight": 3,
"hp": 45,
"attack": 40,
"defense": 40,
"types": ["fairy"],
"images": {
"back_default": "back/868.png",
"front_default": "868.png",
"official": "other/official-artwork/868.png"
}
},
{
"id": 869,
"name": "alcremie",
"height": 3,
"weight": 5,
"hp": 65,
"attack": 60,
"defense": 75,
"types": ["fairy"],
"images": {
"back_default": "back/869.png",
"front_default": "869.png",
"official": "other/official-artwork/869.png"
}
},
{
"id": 870,
"name": "falinks",
"height": 30,
"weight": 620,
"hp": 65,
"attack": 100,
"defense": 100,
"types": ["fighting"],
"images": {
"back_default": "back/870.png",
"front_default": "870.png",
"official": "other/official-artwork/870.png"
}
},
{
"id": 871,
"name": "pincurchin",
"height": 3,
"weight": 10,
"hp": 48,
"attack": 101,
"defense": 95,
"types": ["electric"],
"images": {
"back_default": "back/871.png",
"front_default": "871.png",
"official": "other/official-artwork/871.png"
}
},
{
"id": 872,
"name": "snom",
"height": 3,
"weight": 38,
"hp": 30,
"attack": 25,
"defense": 35,
"types": ["ice", "bug"],
"images": {
"back_default": "back/872.png",
"front_default": "872.png",
"official": "other/official-artwork/872.png"
}
},
{
"id": 873,
"name": "frosmoth",
"height": 13,
"weight": 420,
"hp": 70,
"attack": 65,
"defense": 60,
"types": ["ice", "bug"],
"images": {
"back_default": "back/873.png",
"front_default": "873.png",
"official": "other/official-artwork/873.png"
}
},
{
"id": 874,
"name": "stonjourner",
"height": 25,
"weight": 5200,
"hp": 100,
"attack": 125,
"defense": 135,
"types": ["rock"],
"images": {
"back_default": "back/874.png",
"front_default": "874.png",
"official": "other/official-artwork/874.png"
}
},
{
"id": 875,
"name": "eiscue-ice",
"height": 14,
"weight": 890,
"hp": 75,
"attack": 80,
"defense": 110,
"types": ["ice"],
"images": {
"back_default": "back/875.png",
"front_default": "875.png",
"official": "other/official-artwork/875.png"
}
},
{
"id": 876,
"name": "indeedee-male",
"height": 9,
"weight": 280,
"hp": 60,
"attack": 65,
"defense": 55,
"types": ["psychic", "normal"],
"images": {
"back_default": "back/876.png",
"front_default": "876.png",
"official": "other/official-artwork/876.png"
}
},
{
"id": 877,
"name": "morpeko-full-belly",
"height": 3,
"weight": 30,
"hp": 58,
"attack": 95,
"defense": 58,
"types": ["electric", "dark"],
"images": {
"back_default": "back/877.png",
"front_default": "877.png",
"official": "other/official-artwork/877.png"
}
},
{
"id": 878,
"name": "cufant",
"height": 12,
"weight": 1000,
"hp": 72,
"attack": 80,
"defense": 49,
"types": ["steel"],
"images": {
"back_default": "back/878.png",
"front_default": "878.png",
"official": "other/official-artwork/878.png"
}
},
{
"id": 879,
"name": "copperajah",
"height": 30,
"weight": 6500,
"hp": 122,
"attack": 130,
"defense": 69,
"types": ["steel"],
"images": {
"back_default": "back/879.png",
"front_default": "879.png",
"official": "other/official-artwork/879.png"
}
},
{
"id": 880,
"name": "dracozolt",
"height": 18,
"weight": 1900,
"hp": 90,
"attack": 100,
"defense": 90,
"types": ["electric", "dragon"],
"images": {
"back_default": "back/880.png",
"front_default": "880.png",
"official": "other/official-artwork/880.png"
}
},
{
"id": 881,
"name": "arctozolt",
"height": 23,
"weight": 1500,
"hp": 90,
"attack": 100,
"defense": 90,
"types": ["electric", "ice"],
"images": {
"back_default": "back/881.png",
"front_default": "881.png",
"official": "other/official-artwork/881.png"
}
},
{
"id": 882,
"name": "dracovish",
"height": 23,
"weight": 2150,
"hp": 90,
"attack": 90,
"defense": 100,
"types": ["water", "dragon"],
"images": {
"back_default": "back/882.png",
"front_default": "882.png",
"official": "other/official-artwork/882.png"
}
},
{
"id": 883,
"name": "arctovish",
"height": 20,
"weight": 1750,
"hp": 90,
"attack": 90,
"defense": 100,
"types": ["water", "ice"],
"images": {
"back_default": "back/883.png",
"front_default": "883.png",
"official": "other/official-artwork/883.png"
}
},
{
"id": 884,
"name": "duraludon",
"height": 18,
"weight": 400,
"hp": 70,
"attack": 95,
"defense": 115,
"types": ["steel", "dragon"],
"images": {
"back_default": "back/884.png",
"front_default": "884.png",
"official": "other/official-artwork/884.png"
}
},
{
"id": 885,
"name": "dreepy",
"height": 5,
"weight": 20,
"hp": 28,
"attack": 60,
"defense": 30,
"types": ["dragon", "ghost"],
"images": {
"back_default": "back/885.png",
"front_default": "885.png",
"official": "other/official-artwork/885.png"
}
},
{
"id": 886,
"name": "drakloak",
"height": 14,
"weight": 110,
"hp": 68,
"attack": 80,
"defense": 50,
"types": ["dragon", "ghost"],
"images": {
"back_default": "back/886.png",
"front_default": "886.png",
"official": "other/official-artwork/886.png"
}
},
{
"id": 887,
"name": "dragapult",
"height": 30,
"weight": 500,
"hp": 88,
"attack": 120,
"defense": 75,
"types": ["dragon", "ghost"],
"images": {
"back_default": "back/887.png",
"front_default": "887.png",
"official": "other/official-artwork/887.png"
}
},
{
"id": 888,
"name": "zacian",
"height": 28,
"weight": 1100,
"hp": 92,
"attack": 130,
"defense": 115,
"types": ["fairy"],
"images": {
"back_default": "back/888.png",
"front_default": "888.png",
"official": "other/official-artwork/888.png"
}
},
{
"id": 889,
"name": "zamazenta",
"height": 29,
"weight": 2100,
"hp": 92,
"attack": 130,
"defense": 115,
"types": ["fighting"],
"images": {
"back_default": "back/889.png",
"front_default": "889.png",
"official": "other/official-artwork/889.png"
}
},
{
"id": 890,
"name": "eternatus",
"height": 200,
"weight": 9500,
"hp": 140,
"attack": 85,
"defense": 95,
"types": ["poison", "dragon"],
"images": {
"back_default": "back/890.png",
"front_default": "890.png",
"official": "other/official-artwork/890.png"
}
},
{
"id": 891,
"name": "kubfu",
"height": 6,
"weight": 120,
"hp": 60,
"attack": 90,
"defense": 60,
"types": ["fighting"],
"images": {
"back_default": "back/891.png",
"front_default": "891.png",
"official": "other/official-artwork/891.png"
}
},
{
"id": 892,
"name": "urshifu-single-strike",
"height": 19,
"weight": 1050,
"hp": 100,
"attack": 130,
"defense": 100,
"types": ["fighting", "dark"],
"images": {
"back_default": "back/892.png",
"front_default": "892.png",
"official": "other/official-artwork/892.png"
}
},
{
"id": 893,
"name": "zarude",
"height": 18,
"weight": 700,
"hp": 105,
"attack": 120,
"defense": 105,
"types": ["dark", "grass"],
"images": {
"back_default": "back/893.png",
"front_default": "893.png",
"official": "other/official-artwork/893.png"
}
},
{
"id": 894,
"name": "regieleki",
"height": 12,
"weight": 1450,
"hp": 80,
"attack": 100,
"defense": 50,
"types": ["electric"],
"images": {
"back_default": "back/894.png",
"front_default": "894.png",
"official": "other/official-artwork/894.png"
}
},
{
"id": 895,
"name": "regidrago",
"height": 21,
"weight": 2000,
"hp": 200,
"attack": 100,
"defense": 50,
"types": ["dragon"],
"images": {
"back_default": "back/895.png",
"front_default": "895.png",
"official": "other/official-artwork/895.png"
}
},
{
"id": 896,
"name": "glastrier",
"height": 22,
"weight": 8000,
"hp": 100,
"attack": 145,
"defense": 130,
"types": ["ice"],
"images": {
"back_default": "back/896.png",
"front_default": "896.png",
"official": "other/official-artwork/896.png"
}
},
{
"id": 897,
"name": "spectrier",
"height": 20,
"weight": 445,
"hp": 100,
"attack": 65,
"defense": 60,
"types": ["ghost"],
"images": {
"back_default": "back/897.png",
"front_default": "897.png",
"official": "other/official-artwork/897.png"
}
},
{
"id": 898,
"name": "calyrex",
"height": 11,
"weight": 77,
"hp": 100,
"attack": 80,
"defense": 80,
"types": ["psychic", "grass"],
"images": {
"back_default": "back/898.png",
"front_default": "898.png",
"official": "other/official-artwork/898.png"
}
},
{
"id": 899,
"name": "wyrdeer",
"height": 18,
"weight": 951,
"hp": 103,
"attack": 105,
"defense": 72,
"types": ["normal", "psychic"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 900,
"name": "kleavor",
"height": 18,
"weight": 890,
"hp": 70,
"attack": 135,
"defense": 95,
"types": ["bug", "rock"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 901,
"name": "ursaluna",
"height": 24,
"weight": 2900,
"hp": 130,
"attack": 140,
"defense": 105,
"types": ["ground", "normal"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 902,
"name": "basculegion-male",
"height": 30,
"weight": 1100,
"hp": 120,
"attack": 112,
"defense": 65,
"types": ["water", "ghost"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 903,
"name": "sneasler",
"height": 13,
"weight": 430,
"hp": 80,
"attack": 130,
"defense": 60,
"types": ["fighting", "poison"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 904,
"name": "overqwil",
"height": 25,
"weight": 605,
"hp": 85,
"attack": 115,
"defense": 95,
"types": ["dark", "poison"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 905,
"name": "enamorus-incarnate",
"height": 16,
"weight": 480,
"hp": 74,
"attack": 115,
"defense": 70,
"types": ["fairy", "flying"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10001,
"name": "deoxys-attack",
"dex": 410,
"height": 17,
"weight": 608,
"hp": 50,
"attack": 180,
"defense": 20,
"types": ["psychic"],
"images": {
"back_default": "back/386-attack.png",
"front_default": "10001.png",
"official": "other/official-artwork/10001.png"
}
},
{
"id": 10002,
"name": "deoxys-defense",
"dex": 410,
"height": 17,
"weight": 608,
"hp": 50,
"attack": 70,
"defense": 160,
"types": ["psychic"],
"images": {
"back_default": "back/386-defense.png",
"front_default": "10002.png",
"official": "other/official-artwork/10002.png"
}
},
{
"id": 10003,
"name": "deoxys-speed",
"dex": 410,
"height": 17,
"weight": 608,
"hp": 50,
"attack": 95,
"defense": 90,
"types": ["psychic"],
"images": {
"back_default": "back/386-speed.png",
"front_default": "10003.png",
"official": "other/official-artwork/10003.png"
}
},
{
"id": 10004,
"name": "wormadam-sandy",
"dex": 499,
"height": 5,
"weight": 65,
"hp": 60,
"attack": 79,
"defense": 105,
"types": ["bug", "ground"],
"images": {
"back_default": "back/413-sandy.png",
"front_default": "10004.png",
"official": "other/official-artwork/10004.png"
}
},
{
"id": 10005,
"name": "wormadam-trash",
"dex": 500,
"height": 5,
"weight": 65,
"hp": 60,
"attack": 69,
"defense": 95,
"types": ["bug", "steel"],
"images": {
"back_default": "back/413-trash.png",
"front_default": "10005.png",
"official": "other/official-artwork/10005.png"
}
},
{
"id": 10006,
"name": "shaymin-sky",
"dex": 502,
"height": 4,
"weight": 52,
"hp": 100,
"attack": 103,
"defense": 75,
"types": ["grass", "flying"],
"images": {
"back_default": "back/492-sky.png",
"front_default": "10006.png",
"official": "other/official-artwork/10006.png"
}
},
{
"id": 10007,
"name": "giratina-origin",
"dex": 501,
"height": 69,
"weight": 6500,
"hp": 150,
"attack": 120,
"defense": 100,
"types": ["ghost", "dragon"],
"images": {
"back_default": "back/487-origin.png",
"front_default": "10007.png",
"official": "other/official-artwork/10007.png"
}
},
{
"id": 10008,
"name": "rotom-heat",
"dex": 503,
"height": 3,
"weight": 3,
"hp": 50,
"attack": 65,
"defense": 107,
"types": ["electric", "fire"],
"images": {
"back_default": "back/479-heat.png",
"front_default": "10008.png",
"official": "other/official-artwork/10008.png"
}
},
{
"id": 10009,
"name": "rotom-wash",
"dex": 504,
"height": 3,
"weight": 3,
"hp": 50,
"attack": 65,
"defense": 107,
"types": ["electric", "water"],
"images": {
"back_default": "back/479-wash.png",
"front_default": "10009.png",
"official": "other/official-artwork/10009.png"
}
},
{
"id": 10010,
"name": "rotom-frost",
"dex": 505,
"height": 3,
"weight": 3,
"hp": 50,
"attack": 65,
"defense": 107,
"types": ["electric", "ice"],
"images": {
"back_default": "back/479-frost.png",
"front_default": "10010.png",
"official": "other/official-artwork/10010.png"
}
},
{
"id": 10011,
"name": "rotom-fan",
"dex": 506,
"height": 3,
"weight": 3,
"hp": 50,
"attack": 65,
"defense": 107,
"types": ["electric", "flying"],
"images": {
"back_default": "back/479-fan.png",
"front_default": "10011.png",
"official": "other/official-artwork/10011.png"
}
},
{
"id": 10012,
"name": "rotom-mow",
"dex": 507,
"height": 3,
"weight": 3,
"hp": 50,
"attack": 65,
"defense": 107,
"types": ["electric", "grass"],
"images": {
"back_default": "back/479-mow.png",
"front_default": "10012.png",
"official": "other/official-artwork/10012.png"
}
},
{
"id": 10013,
"name": "castform-sunny",
"dex": 662,
"height": 3,
"weight": 8,
"hp": 70,
"attack": 70,
"defense": 70,
"types": ["fire"],
"images": {
"back_default": "back/351-sunny.png",
"front_default": "10013.png",
"official": "other/official-artwork/10013.png"
}
},
{
"id": 10014,
"name": "castform-rainy",
"dex": 663,
"height": 3,
"weight": 8,
"hp": 70,
"attack": 70,
"defense": 70,
"types": ["water"],
"images": {
"back_default": "back/351-rainy.png",
"front_default": "10014.png",
"official": "other/official-artwork/10014.png"
}
},
{
"id": 10015,
"name": "castform-snowy",
"dex": 664,
"height": 3,
"weight": 8,
"hp": 70,
"attack": 70,
"defense": 70,
"types": ["ice"],
"images": {
"back_default": "back/351-snowy.png",
"front_default": "10015.png",
"official": "other/official-artwork/10015.png"
}
},
{
"id": 10016,
"name": "basculin-blue-striped",
"dex": 665,
"height": 10,
"weight": 180,
"hp": 70,
"attack": 92,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/550-blue-striped.png",
"front_default": "10016.png",
"official": "other/official-artwork/10016.png"
}
},
{
"id": 10017,
"name": "darmanitan-zen",
"dex": 666,
"height": 13,
"weight": 929,
"hp": 105,
"attack": 30,
"defense": 105,
"types": ["fire", "psychic"],
"images": {
"back_default": "back/555-zen.png",
"front_default": "10017.png",
"official": "other/official-artwork/10017.png"
}
},
{
"id": 10018,
"name": "meloetta-pirouette",
"dex": 667,
"height": 6,
"weight": 65,
"hp": 100,
"attack": 128,
"defense": 90,
"types": ["normal", "fighting"],
"images": {
"back_default": "back/648-pirouette.png",
"front_default": "10018.png",
"official": "other/official-artwork/10018.png"
}
},
{
"id": 10019,
"name": "tornadus-therian",
"dex": 706,
"height": 14,
"weight": 630,
"hp": 79,
"attack": 100,
"defense": 80,
"types": ["flying"],
"images": {
"back_default": "back/641-therian.png",
"front_default": "10019.png",
"official": "other/official-artwork/10019.png"
}
},
{
"id": 10020,
"name": "thundurus-therian",
"dex": 707,
"height": 30,
"weight": 610,
"hp": 79,
"attack": 105,
"defense": 70,
"types": ["electric", "flying"],
"images": {
"back_default": "back/642-therian.png",
"front_default": "10020.png",
"official": "other/official-artwork/10020.png"
}
},
{
"id": 10021,
"name": "landorus-therian",
"dex": 708,
"height": 13,
"weight": 680,
"hp": 89,
"attack": 145,
"defense": 90,
"types": ["ground", "flying"],
"images": {
"back_default": "back/645-therian.png",
"front_default": "10021.png",
"official": "other/official-artwork/10021.png"
}
},
{
"id": 10022,
"name": "kyurem-black",
"dex": 704,
"height": 33,
"weight": 3250,
"hp": 125,
"attack": 170,
"defense": 100,
"types": ["dragon", "ice"],
"images": {
"back_default": "back/646-black.png",
"front_default": "10022.png",
"official": "other/official-artwork/10022.png"
}
},
{
"id": 10023,
"name": "kyurem-white",
"dex": 703,
"height": 36,
"weight": 3250,
"hp": 125,
"attack": 120,
"defense": 90,
"types": ["dragon", "ice"],
"images": {
"back_default": "back/646-white.png",
"front_default": "10023.png",
"official": "other/official-artwork/10023.png"
}
},
{
"id": 10024,
"name": "keldeo-resolute",
"dex": 705,
"height": 14,
"weight": 485,
"hp": 91,
"attack": 72,
"defense": 90,
"types": ["water", "fighting"],
"images": {
"back_default": "back/647-resolute.png",
"front_default": "10024.png",
"official": "other/official-artwork/10024.png"
}
},
{
"id": 10025,
"name": "meowstic-female",
"height": 6,
"weight": 85,
"hp": 74,
"attack": 48,
"defense": 76,
"types": ["psychic"],
"images": {
"back_default": null,
"front_default": "10025.png",
"official": "other/official-artwork/10025.png"
}
},
{
"id": 10026,
"name": "aegislash-blade",
"height": 17,
"weight": 530,
"hp": 60,
"attack": 140,
"defense": 50,
"types": ["steel", "ghost"],
"images": {
"back_default": null,
"front_default": "10026.png",
"official": "other/official-artwork/10026.png"
}
},
{
"id": 10027,
"name": "pumpkaboo-small",
"height": 3,
"weight": 35,
"hp": 44,
"attack": 66,
"defense": 70,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "10027.png",
"official": "other/official-artwork/10027.png"
}
},
{
"id": 10028,
"name": "pumpkaboo-large",
"height": 5,
"weight": 75,
"hp": 54,
"attack": 66,
"defense": 70,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "10028.png",
"official": "other/official-artwork/10028.png"
}
},
{
"id": 10029,
"name": "pumpkaboo-super",
"height": 8,
"weight": 150,
"hp": 59,
"attack": 66,
"defense": 70,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "10029.png",
"official": "other/official-artwork/10029.png"
}
},
{
"id": 10030,
"name": "gourgeist-small",
"height": 7,
"weight": 95,
"hp": 55,
"attack": 85,
"defense": 122,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "10030.png",
"official": "other/official-artwork/10030.png"
}
},
{
"id": 10031,
"name": "gourgeist-large",
"height": 11,
"weight": 140,
"hp": 75,
"attack": 95,
"defense": 122,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "10031.png",
"official": "other/official-artwork/10031.png"
}
},
{
"id": 10032,
"name": "gourgeist-super",
"height": 17,
"weight": 390,
"hp": 85,
"attack": 100,
"defense": 122,
"types": ["ghost", "grass"],
"images": {
"back_default": null,
"front_default": "10032.png",
"official": "other/official-artwork/10032.png"
}
},
{
"id": 10033,
"name": "venusaur-mega",
"height": 24,
"weight": 1555,
"hp": 80,
"attack": 100,
"defense": 123,
"types": ["grass", "poison"],
"images": {
"back_default": "back/10033.png",
"front_default": "10033.png",
"official": "other/official-artwork/10033.png"
}
},
{
"id": 10034,
"name": "charizard-mega-x",
"height": 17,
"weight": 1105,
"hp": 78,
"attack": 130,
"defense": 111,
"types": ["fire", "dragon"],
"images": {
"back_default": null,
"front_default": "10034.png",
"official": "other/official-artwork/10034.png"
}
},
{
"id": 10035,
"name": "charizard-mega-y",
"height": 17,
"weight": 1005,
"hp": 78,
"attack": 104,
"defense": 78,
"types": ["fire", "flying"],
"images": {
"back_default": null,
"front_default": "10035.png",
"official": "other/official-artwork/10035.png"
}
},
{
"id": 10036,
"name": "blastoise-mega",
"height": 16,
"weight": 1011,
"hp": 79,
"attack": 103,
"defense": 120,
"types": ["water"],
"images": {
"back_default": null,
"front_default": "10036.png",
"official": "other/official-artwork/10036.png"
}
},
{
"id": 10037,
"name": "alakazam-mega",
"height": 12,
"weight": 480,
"hp": 55,
"attack": 50,
"defense": 65,
"types": ["psychic"],
"images": {
"back_default": "back/10037.png",
"front_default": "10037.png",
"official": "other/official-artwork/10037.png"
}
},
{
"id": 10038,
"name": "gengar-mega",
"height": 14,
"weight": 405,
"hp": 60,
"attack": 65,
"defense": 80,
"types": ["ghost", "poison"],
"images": {
"back_default": null,
"front_default": "10038.png",
"official": "other/official-artwork/10038.png"
}
},
{
"id": 10039,
"name": "kangaskhan-mega",
"height": 22,
"weight": 1000,
"hp": 105,
"attack": 125,
"defense": 100,
"types": ["normal"],
"images": {
"back_default": "back/10039.png",
"front_default": "10039.png",
"official": "other/official-artwork/10039.png"
}
},
{
"id": 10040,
"name": "pinsir-mega",
"height": 17,
"weight": 590,
"hp": 65,
"attack": 155,
"defense": 120,
"types": ["bug", "flying"],
"images": {
"back_default": null,
"front_default": "10040.png",
"official": "other/official-artwork/10040.png"
}
},
{
"id": 10041,
"name": "gyarados-mega",
"height": 65,
"weight": 3050,
"hp": 95,
"attack": 155,
"defense": 109,
"types": ["water", "dark"],
"images": {
"back_default": null,
"front_default": "10041.png",
"official": "other/official-artwork/10041.png"
}
},
{
"id": 10042,
"name": "aerodactyl-mega",
"height": 21,
"weight": 790,
"hp": 80,
"attack": 135,
"defense": 85,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10042.png",
"official": "other/official-artwork/10042.png"
}
},
{
"id": 10043,
"name": "mewtwo-mega-x",
"height": 23,
"weight": 1270,
"hp": 106,
"attack": 190,
"defense": 100,
"types": ["psychic", "fighting"],
"images": {
"back_default": null,
"front_default": "10043.png",
"official": "other/official-artwork/10043.png"
}
},
{
"id": 10044,
"name": "mewtwo-mega-y",
"height": 15,
"weight": 330,
"hp": 106,
"attack": 150,
"defense": 70,
"types": ["psychic"],
"images": {
"back_default": null,
"front_default": "10044.png",
"official": "other/official-artwork/10044.png"
}
},
{
"id": 10045,
"name": "ampharos-mega",
"height": 14,
"weight": 615,
"hp": 90,
"attack": 95,
"defense": 105,
"types": ["electric", "dragon"],
"images": {
"back_default": "back/10045.png",
"front_default": "10045.png",
"official": "other/official-artwork/10045.png"
}
},
{
"id": 10046,
"name": "scizor-mega",
"height": 20,
"weight": 1250,
"hp": 70,
"attack": 150,
"defense": 140,
"types": ["bug", "steel"],
"images": {
"back_default": null,
"front_default": "10046.png",
"official": "other/official-artwork/10046.png"
}
},
{
"id": 10047,
"name": "heracross-mega",
"height": 17,
"weight": 625,
"hp": 80,
"attack": 185,
"defense": 115,
"types": ["bug", "fighting"],
"images": {
"back_default": "back/10047.png",
"front_default": "10047.png",
"official": "other/official-artwork/10047.png"
}
},
{
"id": 10048,
"name": "houndoom-mega",
"height": 19,
"weight": 495,
"hp": 75,
"attack": 90,
"defense": 90,
"types": ["dark", "fire"],
"images": {
"back_default": null,
"front_default": "10048.png",
"official": "other/official-artwork/10048.png"
}
},
{
"id": 10049,
"name": "tyranitar-mega",
"height": 25,
"weight": 2550,
"hp": 100,
"attack": 164,
"defense": 150,
"types": ["rock", "dark"],
"images": {
"back_default": null,
"front_default": "10049.png",
"official": "other/official-artwork/10049.png"
}
},
{
"id": 10050,
"name": "blaziken-mega",
"height": 19,
"weight": 520,
"hp": 80,
"attack": 160,
"defense": 80,
"types": ["fire", "fighting"],
"images": {
"back_default": null,
"front_default": "10050.png",
"official": "other/official-artwork/10050.png"
}
},
{
"id": 10051,
"name": "gardevoir-mega",
"height": 16,
"weight": 484,
"hp": 68,
"attack": 85,
"defense": 65,
"types": ["psychic", "fairy"],
"images": {
"back_default": null,
"front_default": "10051.png",
"official": "other/official-artwork/10051.png"
}
},
{
"id": 10052,
"name": "mawile-mega",
"height": 10,
"weight": 235,
"hp": 50,
"attack": 105,
"defense": 125,
"types": ["steel", "fairy"],
"images": {
"back_default": null,
"front_default": "10052.png",
"official": "other/official-artwork/10052.png"
}
},
{
"id": 10053,
"name": "aggron-mega",
"height": 22,
"weight": 3950,
"hp": 70,
"attack": 140,
"defense": 230,
"types": ["steel"],
"images": {
"back_default": null,
"front_default": "10053.png",
"official": "other/official-artwork/10053.png"
}
},
{
"id": 10054,
"name": "medicham-mega",
"height": 13,
"weight": 315,
"hp": 60,
"attack": 100,
"defense": 85,
"types": ["fighting", "psychic"],
"images": {
"back_default": null,
"front_default": "10054.png",
"official": "other/official-artwork/10054.png"
}
},
{
"id": 10055,
"name": "manectric-mega",
"height": 18,
"weight": 440,
"hp": 70,
"attack": 75,
"defense": 80,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10055.png",
"official": "other/official-artwork/10055.png"
}
},
{
"id": 10056,
"name": "banette-mega",
"height": 12,
"weight": 130,
"hp": 64,
"attack": 165,
"defense": 75,
"types": ["ghost"],
"images": {
"back_default": "back/10056.png",
"front_default": "10056.png",
"official": "other/official-artwork/10056.png"
}
},
{
"id": 10057,
"name": "absol-mega",
"height": 12,
"weight": 490,
"hp": 65,
"attack": 150,
"defense": 60,
"types": ["dark"],
"images": {
"back_default": null,
"front_default": "10057.png",
"official": "other/official-artwork/10057.png"
}
},
{
"id": 10058,
"name": "garchomp-mega",
"height": 19,
"weight": 950,
"hp": 108,
"attack": 170,
"defense": 115,
"types": ["dragon", "ground"],
"images": {
"back_default": null,
"front_default": "10058.png",
"official": "other/official-artwork/10058.png"
}
},
{
"id": 10059,
"name": "lucario-mega",
"height": 13,
"weight": 575,
"hp": 70,
"attack": 145,
"defense": 88,
"types": ["fighting", "steel"],
"images": {
"back_default": null,
"front_default": "10059.png",
"official": "other/official-artwork/10059.png"
}
},
{
"id": 10060,
"name": "abomasnow-mega",
"height": 27,
"weight": 1850,
"hp": 90,
"attack": 132,
"defense": 105,
"types": ["grass", "ice"],
"images": {
"back_default": null,
"front_default": "10060.png",
"official": "other/official-artwork/10060.png"
}
},
{
"id": 10061,
"name": "floette-eternal",
"height": 2,
"weight": 9,
"hp": 74,
"attack": 65,
"defense": 67,
"types": ["fairy"],
"images": {
"back_default": "back/10061.png",
"front_default": "10061.png",
"official": null
}
},
{
"id": 10062,
"name": "latias-mega",
"height": 18,
"weight": 520,
"hp": 80,
"attack": 100,
"defense": 120,
"types": ["dragon", "psychic"],
"images": {
"back_default": null,
"front_default": "10062.png",
"official": "other/official-artwork/10062.png"
}
},
{
"id": 10063,
"name": "latios-mega",
"height": 23,
"weight": 700,
"hp": 80,
"attack": 130,
"defense": 100,
"types": ["dragon", "psychic"],
"images": {
"back_default": null,
"front_default": "10063.png",
"official": "other/official-artwork/10063.png"
}
},
{
"id": 10064,
"name": "swampert-mega",
"dex": 799,
"height": 19,
"weight": 1020,
"hp": 100,
"attack": 150,
"defense": 110,
"types": ["water", "ground"],
"images": {
"back_default": null,
"front_default": "10064.png",
"official": "other/official-artwork/10064.png"
}
},
{
"id": 10065,
"name": "sceptile-mega",
"dex": 800,
"height": 19,
"weight": 552,
"hp": 70,
"attack": 110,
"defense": 75,
"types": ["grass", "dragon"],
"images": {
"back_default": null,
"front_default": "10065.png",
"official": "other/official-artwork/10065.png"
}
},
{
"id": 10066,
"name": "sableye-mega",
"dex": 801,
"height": 5,
"weight": 1610,
"hp": 50,
"attack": 85,
"defense": 125,
"types": ["dark", "ghost"],
"images": {
"back_default": null,
"front_default": "10066.png",
"official": "other/official-artwork/10066.png"
}
},
{
"id": 10067,
"name": "altaria-mega",
"dex": 802,
"height": 15,
"weight": 206,
"hp": 75,
"attack": 110,
"defense": 110,
"types": ["dragon", "fairy"],
"images": {
"back_default": "back/10067.png",
"front_default": "10067.png",
"official": "other/official-artwork/10067.png"
}
},
{
"id": 10068,
"name": "gallade-mega",
"dex": 803,
"height": 16,
"weight": 564,
"hp": 68,
"attack": 165,
"defense": 95,
"types": ["psychic", "fighting"],
"images": {
"back_default": null,
"front_default": "10068.png",
"official": "other/official-artwork/10068.png"
}
},
{
"id": 10069,
"name": "audino-mega",
"dex": 804,
"height": 15,
"weight": 320,
"hp": 103,
"attack": 60,
"defense": 126,
"types": ["normal", "fairy"],
"images": {
"back_default": null,
"front_default": "10069.png",
"official": "other/official-artwork/10069.png"
}
},
{
"id": 10070,
"name": "sharpedo-mega",
"dex": 805,
"height": 25,
"weight": 1303,
"hp": 70,
"attack": 140,
"defense": 70,
"types": ["water", "dark"],
"images": {
"back_default": "back/10070.png",
"front_default": "10070.png",
"official": "other/official-artwork/10070.png"
}
},
{
"id": 10071,
"name": "slowbro-mega",
"dex": 806,
"height": 20,
"weight": 1200,
"hp": 95,
"attack": 75,
"defense": 180,
"types": ["water", "psychic"],
"images": {
"back_default": null,
"front_default": "10071.png",
"official": "other/official-artwork/10071.png"
}
},
{
"id": 10072,
"name": "steelix-mega",
"dex": 807,
"height": 105,
"weight": 7400,
"hp": 75,
"attack": 125,
"defense": 230,
"types": ["steel", "ground"],
"images": {
"back_default": null,
"front_default": "10072.png",
"official": "other/official-artwork/10072.png"
}
},
{
"id": 10073,
"name": "pidgeot-mega",
"dex": 808,
"height": 22,
"weight": 505,
"hp": 83,
"attack": 80,
"defense": 80,
"types": ["normal", "flying"],
"images": {
"back_default": null,
"front_default": "10073.png",
"official": "other/official-artwork/10073.png"
}
},
{
"id": 10074,
"name": "glalie-mega",
"dex": 809,
"height": 21,
"weight": 3502,
"hp": 80,
"attack": 120,
"defense": 80,
"types": ["ice"],
"images": {
"back_default": "back/10074.png",
"front_default": "10074.png",
"official": "other/official-artwork/10074.png"
}
},
{
"id": 10075,
"name": "diancie-mega",
"dex": 810,
"height": 11,
"weight": 278,
"hp": 50,
"attack": 160,
"defense": 110,
"types": ["rock", "fairy"],
"images": {
"back_default": null,
"front_default": "10075.png",
"official": "other/official-artwork/10075.png"
}
},
{
"id": 10076,
"name": "metagross-mega",
"dex": 811,
"height": 25,
"weight": 9429,
"hp": 80,
"attack": 145,
"defense": 150,
"types": ["steel", "psychic"],
"images": {
"back_default": null,
"front_default": "10076.png",
"official": "other/official-artwork/10076.png"
}
},
{
"id": 10077,
"name": "kyogre-primal",
"dex": 812,
"height": 98,
"weight": 4300,
"hp": 100,
"attack": 150,
"defense": 90,
"types": ["water"],
"images": {
"back_default": null,
"front_default": "10077.png",
"official": "other/official-artwork/10077.png"
}
},
{
"id": 10078,
"name": "groudon-primal",
"dex": 813,
"height": 50,
"weight": 9997,
"hp": 100,
"attack": 180,
"defense": 160,
"types": ["ground", "fire"],
"images": {
"back_default": null,
"front_default": "10078.png",
"official": "other/official-artwork/10078.png"
}
},
{
"id": 10079,
"name": "rayquaza-mega",
"dex": 814,
"height": 108,
"weight": 3920,
"hp": 105,
"attack": 180,
"defense": 100,
"types": ["dragon", "flying"],
"images": {
"back_default": "back/10079.png",
"front_default": "10079.png",
"official": "other/official-artwork/10079.png"
}
},
{
"id": 10080,
"name": "pikachu-rock-star",
"dex": 815,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10080.png",
"front_default": "10080.png",
"official": "other/official-artwork/10080.png"
}
},
{
"id": 10081,
"name": "pikachu-belle",
"dex": 816,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10081.png",
"front_default": "10081.png",
"official": "other/official-artwork/10081.png"
}
},
{
"id": 10082,
"name": "pikachu-pop-star",
"dex": 817,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10082.png",
"front_default": "10082.png",
"official": "other/official-artwork/10082.png"
}
},
{
"id": 10083,
"name": "pikachu-phd",
"dex": 818,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10083.png",
"front_default": "10083.png",
"official": "other/official-artwork/10083.png"
}
},
{
"id": 10084,
"name": "pikachu-libre",
"dex": 819,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10084.png",
"front_default": "10084.png",
"official": "other/official-artwork/10084.png"
}
},
{
"id": 10085,
"name": "pikachu-cosplay",
"dex": 820,
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10085.png",
"front_default": "10085.png",
"official": null
}
},
{
"id": 10086,
"name": "hoopa-unbound",
"dex": 821,
"height": 65,
"weight": 4900,
"hp": 80,
"attack": 160,
"defense": 60,
"types": ["psychic", "dark"],
"images": {
"back_default": null,
"front_default": "10086.png",
"official": "other/official-artwork/10086.png"
}
},
{
"id": 10087,
"name": "camerupt-mega",
"dex": 822,
"height": 25,
"weight": 3205,
"hp": 70,
"attack": 120,
"defense": 100,
"types": ["fire", "ground"],
"images": {
"back_default": null,
"front_default": "10087.png",
"official": "other/official-artwork/10087.png"
}
},
{
"id": 10088,
"name": "lopunny-mega",
"dex": 823,
"height": 13,
"weight": 283,
"hp": 65,
"attack": 136,
"defense": 94,
"types": ["normal", "fighting"],
"images": {
"back_default": null,
"front_default": "10088.png",
"official": "other/official-artwork/10088.png"
}
},
{
"id": 10089,
"name": "salamence-mega",
"dex": 824,
"height": 18,
"weight": 1126,
"hp": 95,
"attack": 145,
"defense": 130,
"types": ["dragon", "flying"],
"images": {
"back_default": "back/10089.png",
"front_default": "10089.png",
"official": "other/official-artwork/10089.png"
}
},
{
"id": 10090,
"name": "beedrill-mega",
"dex": 825,
"height": 14,
"weight": 405,
"hp": 65,
"attack": 150,
"defense": 40,
"types": ["bug", "poison"],
"images": {
"back_default": null,
"front_default": "10090.png",
"official": "other/official-artwork/10090.png"
}
},
{
"id": 10091,
"name": "rattata-alola",
"height": 3,
"weight": 38,
"hp": 30,
"attack": 56,
"defense": 35,
"types": ["dark", "normal"],
"images": {
"back_default": "back/10091.png",
"front_default": "10091.png",
"official": "other/official-artwork/10091.png"
}
},
{
"id": 10092,
"name": "raticate-alola",
"height": 7,
"weight": 255,
"hp": 75,
"attack": 71,
"defense": 70,
"types": ["dark", "normal"],
"images": {
"back_default": "back/10092.png",
"front_default": "10092.png",
"official": "other/official-artwork/10092.png"
}
},
{
"id": 10093,
"name": "raticate-totem-alola",
"height": 14,
"weight": 1050,
"hp": 75,
"attack": 71,
"defense": 70,
"types": ["dark", "normal"],
"images": {
"back_default": null,
"front_default": "10093.png",
"official": "other/official-artwork/10093.png"
}
},
{
"id": 10094,
"name": "pikachu-original-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10094.png",
"official": "other/official-artwork/10094.png"
}
},
{
"id": 10095,
"name": "pikachu-hoenn-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10095.png",
"official": "other/official-artwork/10095.png"
}
},
{
"id": 10096,
"name": "pikachu-sinnoh-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10096.png",
"official": "other/official-artwork/10096.png"
}
},
{
"id": 10097,
"name": "pikachu-unova-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10097.png",
"official": "other/official-artwork/10097.png"
}
},
{
"id": 10098,
"name": "pikachu-kalos-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10098.png",
"official": "other/official-artwork/10098.png"
}
},
{
"id": 10099,
"name": "pikachu-alola-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10099.png",
"official": "other/official-artwork/10099.png"
}
},
{
"id": 10100,
"name": "raichu-alola",
"height": 7,
"weight": 210,
"hp": 60,
"attack": 85,
"defense": 50,
"types": ["electric", "psychic"],
"images": {
"back_default": "back/10100.png",
"front_default": "10100.png",
"official": "other/official-artwork/10100.png"
}
},
{
"id": 10101,
"name": "sandshrew-alola",
"height": 7,
"weight": 400,
"hp": 50,
"attack": 75,
"defense": 90,
"types": ["ice", "steel"],
"images": {
"back_default": "back/10101.png",
"front_default": "10101.png",
"official": "other/official-artwork/10101.png"
}
},
{
"id": 10102,
"name": "sandslash-alola",
"height": 12,
"weight": 550,
"hp": 75,
"attack": 100,
"defense": 120,
"types": ["ice", "steel"],
"images": {
"back_default": "back/10102.png",
"front_default": "10102.png",
"official": "other/official-artwork/10102.png"
}
},
{
"id": 10103,
"name": "vulpix-alola",
"height": 6,
"weight": 99,
"hp": 38,
"attack": 41,
"defense": 40,
"types": ["ice"],
"images": {
"back_default": "back/10103.png",
"front_default": "10103.png",
"official": "other/official-artwork/10103.png"
}
},
{
"id": 10104,
"name": "ninetales-alola",
"height": 11,
"weight": 199,
"hp": 73,
"attack": 67,
"defense": 75,
"types": ["ice", "fairy"],
"images": {
"back_default": "back/10104.png",
"front_default": "10104.png",
"official": "other/official-artwork/10104.png"
}
},
{
"id": 10105,
"name": "diglett-alola",
"height": 2,
"weight": 10,
"hp": 10,
"attack": 55,
"defense": 30,
"types": ["ground", "steel"],
"images": {
"back_default": "back/10105.png",
"front_default": "10105.png",
"official": "other/official-artwork/10105.png"
}
},
{
"id": 10106,
"name": "dugtrio-alola",
"height": 7,
"weight": 666,
"hp": 35,
"attack": 100,
"defense": 60,
"types": ["ground", "steel"],
"images": {
"back_default": "back/10106.png",
"front_default": "10106.png",
"official": "other/official-artwork/10106.png"
}
},
{
"id": 10107,
"name": "meowth-alola",
"height": 4,
"weight": 42,
"hp": 40,
"attack": 35,
"defense": 35,
"types": ["dark"],
"images": {
"back_default": "back/10107.png",
"front_default": "10107.png",
"official": "other/official-artwork/10107.png"
}
},
{
"id": 10108,
"name": "persian-alola",
"height": 11,
"weight": 330,
"hp": 65,
"attack": 60,
"defense": 60,
"types": ["dark"],
"images": {
"back_default": "back/10108.png",
"front_default": "10108.png",
"official": "other/official-artwork/10108.png"
}
},
{
"id": 10109,
"name": "geodude-alola",
"height": 4,
"weight": 203,
"hp": 40,
"attack": 80,
"defense": 100,
"types": ["rock", "electric"],
"images": {
"back_default": "back/10109.png",
"front_default": "10109.png",
"official": "other/official-artwork/10109.png"
}
},
{
"id": 10110,
"name": "graveler-alola",
"height": 10,
"weight": 1100,
"hp": 55,
"attack": 95,
"defense": 115,
"types": ["rock", "electric"],
"images": {
"back_default": "back/10110.png",
"front_default": "10110.png",
"official": "other/official-artwork/10110.png"
}
},
{
"id": 10111,
"name": "golem-alola",
"height": 17,
"weight": 3160,
"hp": 80,
"attack": 120,
"defense": 130,
"types": ["rock", "electric"],
"images": {
"back_default": "back/10111.png",
"front_default": "10111.png",
"official": "other/official-artwork/10111.png"
}
},
{
"id": 10112,
"name": "grimer-alola",
"height": 7,
"weight": 420,
"hp": 80,
"attack": 80,
"defense": 50,
"types": ["poison", "dark"],
"images": {
"back_default": "back/10112.png",
"front_default": "10112.png",
"official": "other/official-artwork/10112.png"
}
},
{
"id": 10113,
"name": "muk-alola",
"height": 10,
"weight": 520,
"hp": 105,
"attack": 105,
"defense": 75,
"types": ["poison", "dark"],
"images": {
"back_default": "back/10113.png",
"front_default": "10113.png",
"official": "other/official-artwork/10113.png"
}
},
{
"id": 10114,
"name": "exeggutor-alola",
"height": 109,
"weight": 4156,
"hp": 95,
"attack": 105,
"defense": 85,
"types": ["grass", "dragon"],
"images": {
"back_default": "back/10114.png",
"front_default": "10114.png",
"official": "other/official-artwork/10114.png"
}
},
{
"id": 10115,
"name": "marowak-alola",
"height": 10,
"weight": 340,
"hp": 60,
"attack": 80,
"defense": 110,
"types": ["fire", "ghost"],
"images": {
"back_default": "back/10115.png",
"front_default": "10115.png",
"official": "other/official-artwork/10115.png"
}
},
{
"id": 10116,
"name": "greninja-battle-bond",
"height": 15,
"weight": 400,
"hp": 72,
"attack": 95,
"defense": 67,
"types": ["water", "dark"],
"images": {
"back_default": "back/10116.png",
"front_default": "10116.png",
"official": null
}
},
{
"id": 10117,
"name": "greninja-ash",
"height": 15,
"weight": 400,
"hp": 72,
"attack": 145,
"defense": 67,
"types": ["water", "dark"],
"images": {
"back_default": null,
"front_default": "10117.png",
"official": "other/official-artwork/10117.png"
}
},
{
"id": 10118,
"name": "zygarde-10-power-construct",
"height": 12,
"weight": 335,
"hp": 54,
"attack": 100,
"defense": 71,
"types": ["dragon", "ground"],
"images": {
"back_default": "back/10118.png",
"front_default": "10118.png",
"official": "other/official-artwork/10118.png"
}
},
{
"id": 10119,
"name": "zygarde-50-power-construct",
"height": 50,
"weight": 3050,
"hp": 108,
"attack": 100,
"defense": 121,
"types": ["dragon", "ground"],
"images": {
"back_default": "back/10119.png",
"front_default": "10119.png",
"official": "other/official-artwork/10119.png"
}
},
{
"id": 10120,
"name": "zygarde-complete",
"height": 45,
"weight": 6100,
"hp": 216,
"attack": 100,
"defense": 121,
"types": ["dragon", "ground"],
"images": {
"back_default": "back/10120.png",
"front_default": "10120.png",
"official": "other/official-artwork/10120.png"
}
},
{
"id": 10121,
"name": "gumshoos-totem",
"height": 14,
"weight": 600,
"hp": 88,
"attack": 110,
"defense": 60,
"types": ["normal"],
"images": {
"back_default": null,
"front_default": "10121.png",
"official": null
}
},
{
"id": 10122,
"name": "vikavolt-totem",
"height": 26,
"weight": 1475,
"hp": 77,
"attack": 70,
"defense": 90,
"types": ["bug", "electric"],
"images": {
"back_default": null,
"front_default": "10122.png",
"official": null
}
},
{
"id": 10123,
"name": "oricorio-pom-pom",
"height": 6,
"weight": 34,
"hp": 75,
"attack": 70,
"defense": 70,
"types": ["electric", "flying"],
"images": {
"back_default": "back/10123.png",
"front_default": "10123.png",
"official": "other/official-artwork/10123.png"
}
},
{
"id": 10124,
"name": "oricorio-pau",
"height": 6,
"weight": 34,
"hp": 75,
"attack": 70,
"defense": 70,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/10124.png",
"front_default": "10124.png",
"official": "other/official-artwork/10124.png"
}
},
{
"id": 10125,
"name": "oricorio-sensu",
"height": 6,
"weight": 34,
"hp": 75,
"attack": 70,
"defense": 70,
"types": ["ghost", "flying"],
"images": {
"back_default": "back/10125.png",
"front_default": "10125.png",
"official": "other/official-artwork/10125.png"
}
},
{
"id": 10126,
"name": "lycanroc-midnight",
"height": 11,
"weight": 250,
"hp": 85,
"attack": 115,
"defense": 75,
"types": ["rock"],
"images": {
"back_default": "back/10126.png",
"front_default": "10126.png",
"official": "other/official-artwork/10126.png"
}
},
{
"id": 10127,
"name": "wishiwashi-school",
"height": 82,
"weight": 786,
"hp": 45,
"attack": 140,
"defense": 130,
"types": ["water"],
"images": {
"back_default": "back/10127.png",
"front_default": "10127.png",
"official": "other/official-artwork/10127.png"
}
},
{
"id": 10128,
"name": "lurantis-totem",
"height": 15,
"weight": 580,
"hp": 70,
"attack": 105,
"defense": 90,
"types": ["grass"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/10128.png"
}
},
{
"id": 10129,
"name": "salazzle-totem",
"height": 21,
"weight": 810,
"hp": 68,
"attack": 64,
"defense": 60,
"types": ["poison", "fire"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/10129.png"
}
},
{
"id": 10130,
"name": "minior-orange-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10130.png",
"official": null
}
},
{
"id": 10131,
"name": "minior-yellow-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10131.png",
"official": null
}
},
{
"id": 10132,
"name": "minior-green-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10132.png",
"official": null
}
},
{
"id": 10133,
"name": "minior-blue-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10133.png",
"official": null
}
},
{
"id": 10134,
"name": "minior-indigo-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10134.png",
"official": null
}
},
{
"id": 10135,
"name": "minior-violet-meteor",
"height": 3,
"weight": 400,
"hp": 60,
"attack": 60,
"defense": 100,
"types": ["rock", "flying"],
"images": {
"back_default": null,
"front_default": "10135.png",
"official": null
}
},
{
"id": 10136,
"name": "minior-red",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10136.png",
"front_default": "10136.png",
"official": "other/official-artwork/10136.png"
}
},
{
"id": 10137,
"name": "minior-orange",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10137.png",
"front_default": "10137.png",
"official": null
}
},
{
"id": 10138,
"name": "minior-yellow",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10138.png",
"front_default": "10138.png",
"official": null
}
},
{
"id": 10139,
"name": "minior-green",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10139.png",
"front_default": "10139.png",
"official": null
}
},
{
"id": 10140,
"name": "minior-blue",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10140.png",
"front_default": "10140.png",
"official": null
}
},
{
"id": 10141,
"name": "minior-indigo",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10141.png",
"front_default": "10141.png",
"official": null
}
},
{
"id": 10142,
"name": "minior-violet",
"height": 3,
"weight": 3,
"hp": 60,
"attack": 100,
"defense": 60,
"types": ["rock", "flying"],
"images": {
"back_default": "back/10142.png",
"front_default": "10142.png",
"official": null
}
},
{
"id": 10143,
"name": "mimikyu-busted",
"height": 2,
"weight": 7,
"hp": 55,
"attack": 90,
"defense": 80,
"types": ["ghost", "fairy"],
"images": {
"back_default": "back/10143.png",
"front_default": "10143.png",
"official": null
}
},
{
"id": 10144,
"name": "mimikyu-totem-disguised",
"height": 4,
"weight": 28,
"hp": 55,
"attack": 90,
"defense": 80,
"types": ["ghost", "fairy"],
"images": {
"back_default": null,
"front_default": "10144.png",
"official": "other/official-artwork/10144.png"
}
},
{
"id": 10145,
"name": "mimikyu-totem-busted",
"height": 4,
"weight": 28,
"hp": 55,
"attack": 90,
"defense": 80,
"types": ["ghost", "fairy"],
"images": {
"back_default": null,
"front_default": "10145.png",
"official": null
}
},
{
"id": 10146,
"name": "kommo-o-totem",
"height": 24,
"weight": 2075,
"hp": 75,
"attack": 110,
"defense": 125,
"types": ["dragon", "fighting"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/10146.png"
}
},
{
"id": 10147,
"name": "magearna-original",
"height": 10,
"weight": 805,
"hp": 80,
"attack": 95,
"defense": 115,
"types": ["steel", "fairy"],
"images": {
"back_default": "back/10147.png",
"front_default": "10147.png",
"official": null
}
},
{
"id": 10148,
"name": "pikachu-partner-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": "10148.png",
"official": "other/official-artwork/10148.png"
}
},
{
"id": 10149,
"name": "marowak-totem",
"height": 17,
"weight": 980,
"hp": 60,
"attack": 80,
"defense": 110,
"types": ["fire", "ghost"],
"images": {
"back_default": null,
"front_default": "10149.png",
"official": "other/official-artwork/10149.png"
}
},
{
"id": 10150,
"name": "ribombee-totem",
"height": 4,
"weight": 20,
"hp": 60,
"attack": 55,
"defense": 60,
"types": ["bug", "fairy"],
"images": {
"back_default": null,
"front_default": "10150.png",
"official": "other/official-artwork/10150.png"
}
},
{
"id": 10151,
"name": "rockruff-own-tempo",
"height": 5,
"weight": 92,
"hp": 45,
"attack": 65,
"defense": 40,
"types": ["rock"],
"images": {
"back_default": null,
"front_default": "10151.png",
"official": "other/official-artwork/10151.png"
}
},
{
"id": 10152,
"name": "lycanroc-dusk",
"height": 8,
"weight": 250,
"hp": 75,
"attack": 117,
"defense": 65,
"types": ["rock"],
"images": {
"back_default": "back/10152.png",
"front_default": "10152.png",
"official": "other/official-artwork/10152.png"
}
},
{
"id": 10153,
"name": "araquanid-totem",
"height": 31,
"weight": 2175,
"hp": 68,
"attack": 70,
"defense": 92,
"types": ["water", "bug"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/10153.png"
}
},
{
"id": 10154,
"name": "togedemaru-totem",
"height": 6,
"weight": 130,
"hp": 65,
"attack": 98,
"defense": 63,
"types": ["electric", "steel"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/10154.png"
}
},
{
"id": 10155,
"name": "necrozma-dusk",
"height": 38,
"weight": 4600,
"hp": 97,
"attack": 157,
"defense": 127,
"types": ["psychic", "steel"],
"images": {
"back_default": "back/10155.png",
"front_default": "10155.png",
"official": "other/official-artwork/10155.png"
}
},
{
"id": 10156,
"name": "necrozma-dawn",
"height": 42,
"weight": 3500,
"hp": 97,
"attack": 113,
"defense": 109,
"types": ["psychic", "ghost"],
"images": {
"back_default": "back/10156.png",
"front_default": "10156.png",
"official": "other/official-artwork/10156.png"
}
},
{
"id": 10157,
"name": "necrozma-ultra",
"height": 75,
"weight": 2300,
"hp": 97,
"attack": 167,
"defense": 97,
"types": ["psychic", "dragon"],
"images": {
"back_default": "back/10157.png",
"front_default": "10157.png",
"official": "other/official-artwork/10157.png"
}
},
{
"id": 10158,
"name": "pikachu-starter",
"height": 4,
"weight": 60,
"hp": 45,
"attack": 80,
"defense": 50,
"types": ["electric"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10159,
"name": "eevee-starter",
"height": 3,
"weight": 65,
"hp": 65,
"attack": 75,
"defense": 70,
"types": ["normal"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10160,
"name": "pikachu-world-cap",
"height": 4,
"weight": 60,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/10160.png"
}
},
{
"id": 10161,
"name": "meowth-galar",
"height": 4,
"weight": 75,
"hp": 50,
"attack": 65,
"defense": 55,
"types": ["steel"],
"images": {
"back_default": "back/10161.png",
"front_default": "10161.png",
"official": "other/official-artwork/10161.png"
}
},
{
"id": 10162,
"name": "ponyta-galar",
"height": 8,
"weight": 240,
"hp": 50,
"attack": 85,
"defense": 55,
"types": ["psychic"],
"images": {
"back_default": "back/10162.png",
"front_default": "10162.png",
"official": "other/official-artwork/10162.png"
}
},
{
"id": 10163,
"name": "rapidash-galar",
"height": 17,
"weight": 800,
"hp": 65,
"attack": 100,
"defense": 70,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/10163.png",
"front_default": "10163.png",
"official": "other/official-artwork/10163.png"
}
},
{
"id": 10164,
"name": "slowpoke-galar",
"height": 12,
"weight": 360,
"hp": 90,
"attack": 65,
"defense": 65,
"types": ["psychic"],
"images": {
"back_default": "back/10164.png",
"front_default": "10164.png",
"official": "other/official-artwork/10164.png"
}
},
{
"id": 10165,
"name": "slowbro-galar",
"height": 16,
"weight": 705,
"hp": 95,
"attack": 100,
"defense": 95,
"types": ["poison", "psychic"],
"images": {
"back_default": "back/10165.png",
"front_default": "10165.png",
"official": "other/official-artwork/10165.png"
}
},
{
"id": 10166,
"name": "farfetchd-galar",
"height": 8,
"weight": 420,
"hp": 52,
"attack": 95,
"defense": 55,
"types": ["fighting"],
"images": {
"back_default": "back/10166.png",
"front_default": "10166.png",
"official": "other/official-artwork/10166.png"
}
},
{
"id": 10167,
"name": "weezing-galar",
"height": 30,
"weight": 160,
"hp": 65,
"attack": 90,
"defense": 120,
"types": ["poison", "fairy"],
"images": {
"back_default": "back/10167.png",
"front_default": "10167.png",
"official": "other/official-artwork/10167.png"
}
},
{
"id": 10168,
"name": "mr-mime-galar",
"height": 14,
"weight": 568,
"hp": 50,
"attack": 65,
"defense": 65,
"types": ["ice", "psychic"],
"images": {
"back_default": "back/10168.png",
"front_default": "10168.png",
"official": "other/official-artwork/10168.png"
}
},
{
"id": 10169,
"name": "articuno-galar",
"height": 17,
"weight": 509,
"hp": 90,
"attack": 85,
"defense": 85,
"types": ["psychic", "flying"],
"images": {
"back_default": "back/10169.png",
"front_default": "10169.png",
"official": "other/official-artwork/10169.png"
}
},
{
"id": 10170,
"name": "zapdos-galar",
"height": 16,
"weight": 582,
"hp": 90,
"attack": 125,
"defense": 90,
"types": ["fighting", "flying"],
"images": {
"back_default": "back/10170.png",
"front_default": "10170.png",
"official": "other/official-artwork/10170.png"
}
},
{
"id": 10171,
"name": "moltres-galar",
"height": 20,
"weight": 660,
"hp": 90,
"attack": 85,
"defense": 90,
"types": ["dark", "flying"],
"images": {
"back_default": "back/10171.png",
"front_default": "10171.png",
"official": "other/official-artwork/10171.png"
}
},
{
"id": 10172,
"name": "slowking-galar",
"height": 18,
"weight": 795,
"hp": 95,
"attack": 65,
"defense": 80,
"types": ["poison", "psychic"],
"images": {
"back_default": "back/10172.png",
"front_default": "10172.png",
"official": "other/official-artwork/10172.png"
}
},
{
"id": 10173,
"name": "corsola-galar",
"height": 6,
"weight": 5,
"hp": 60,
"attack": 55,
"defense": 100,
"types": ["ghost"],
"images": {
"back_default": "back/10173.png",
"front_default": "10173.png",
"official": "other/official-artwork/10173.png"
}
},
{
"id": 10174,
"name": "zigzagoon-galar",
"height": 4,
"weight": 175,
"hp": 38,
"attack": 30,
"defense": 41,
"types": ["dark", "normal"],
"images": {
"back_default": "back/10174.png",
"front_default": "10174.png",
"official": "other/official-artwork/10174.png"
}
},
{
"id": 10175,
"name": "linoone-galar",
"height": 5,
"weight": 325,
"hp": 78,
"attack": 70,
"defense": 61,
"types": ["dark", "normal"],
"images": {
"back_default": "back/10175.png",
"front_default": "10175.png",
"official": "other/official-artwork/10175.png"
}
},
{
"id": 10176,
"name": "darumaka-galar",
"height": 7,
"weight": 400,
"hp": 70,
"attack": 90,
"defense": 45,
"types": ["ice"],
"images": {
"back_default": "back/10176.png",
"front_default": "10176.png",
"official": "other/official-artwork/10176.png"
}
},
{
"id": 10177,
"name": "darmanitan-galar-standard",
"height": 17,
"weight": 1200,
"hp": 105,
"attack": 140,
"defense": 55,
"types": ["ice"],
"images": {
"back_default": "back/10177.png",
"front_default": "10177.png",
"official": "other/official-artwork/10177.png"
}
},
{
"id": 10178,
"name": "darmanitan-galar-zen",
"height": 17,
"weight": 1200,
"hp": 105,
"attack": 160,
"defense": 55,
"types": ["ice", "fire"],
"images": {
"back_default": "back/10178.png",
"front_default": "10178.png",
"official": null
}
},
{
"id": 10179,
"name": "yamask-galar",
"height": 5,
"weight": 15,
"hp": 38,
"attack": 55,
"defense": 85,
"types": ["ground", "ghost"],
"images": {
"back_default": "back/10179.png",
"front_default": "10179.png",
"official": "other/official-artwork/10179.png"
}
},
{
"id": 10180,
"name": "stunfisk-galar",
"height": 7,
"weight": 205,
"hp": 109,
"attack": 81,
"defense": 99,
"types": ["ground", "steel"],
"images": {
"back_default": "back/10180.png",
"front_default": "10180.png",
"official": "other/official-artwork/10180.png"
}
},
{
"id": 10181,
"name": "zygarde-10",
"height": 12,
"weight": 335,
"hp": 54,
"attack": 100,
"defense": 71,
"types": ["dragon", "ground"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10182,
"name": "cramorant-gulping",
"height": 8,
"weight": 180,
"hp": 70,
"attack": 85,
"defense": 55,
"types": ["flying", "water"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10183,
"name": "cramorant-gorging",
"height": 8,
"weight": 180,
"hp": 70,
"attack": 85,
"defense": 55,
"types": ["flying", "water"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10184,
"name": "toxtricity-low-key",
"height": 16,
"weight": 400,
"hp": 75,
"attack": 98,
"defense": 70,
"types": ["electric", "poison"],
"images": {
"back_default": "back/10184.png",
"front_default": "10184.png",
"official": "other/official-artwork/10184.png"
}
},
{
"id": 10185,
"name": "eiscue-noice",
"height": 14,
"weight": 890,
"hp": 75,
"attack": 80,
"defense": 70,
"types": ["ice"],
"images": {
"back_default": "back/10185.png",
"front_default": "10185.png",
"official": "other/official-artwork/10185.png"
}
},
{
"id": 10186,
"name": "indeedee-female",
"height": 9,
"weight": 280,
"hp": 70,
"attack": 55,
"defense": 65,
"types": ["psychic", "normal"],
"images": {
"back_default": null,
"front_default": "10186.png",
"official": "other/official-artwork/10186.png"
}
},
{
"id": 10187,
"name": "morpeko-hangry",
"height": 3,
"weight": 30,
"hp": 58,
"attack": 95,
"defense": 58,
"types": ["electric", "dark"],
"images": {
"back_default": null,
"front_default": null,
"official": "other/official-artwork/877-hangry.png"
}
},
{
"id": 10188,
"name": "zacian-crowned",
"height": 28,
"weight": 3550,
"hp": 92,
"attack": 170,
"defense": 115,
"types": ["fairy", "steel"],
"images": {
"back_default": "back/10188.png",
"front_default": "10188.png",
"official": "other/official-artwork/10188.png"
}
},
{
"id": 10189,
"name": "zamazenta-crowned",
"height": 29,
"weight": 7850,
"hp": 92,
"attack": 130,
"defense": 145,
"types": ["fighting", "steel"],
"images": {
"back_default": "back/10189.png",
"front_default": "10189.png",
"official": "other/official-artwork/10189.png"
}
},
{
"id": 10190,
"name": "eternatus-eternamax",
"height": 1000,
"weight": 0,
"hp": 255,
"attack": 115,
"defense": 250,
"types": ["poison", "dragon"],
"images": {
"back_default": null,
"front_default": "10190.png",
"official": null
}
},
{
"id": 10191,
"name": "urshifu-rapid-strike",
"height": 19,
"weight": 1050,
"hp": 100,
"attack": 130,
"defense": 100,
"types": ["fighting", "water"],
"images": {
"back_default": "back/10191.png",
"front_default": "10191.png",
"official": "other/official-artwork/10191.png"
}
},
{
"id": 10192,
"name": "zarude-dada",
"height": 18,
"weight": 700,
"hp": 105,
"attack": 120,
"defense": 105,
"types": ["dark", "grass"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10193,
"name": "calyrex-ice",
"height": 24,
"weight": 8091,
"hp": 100,
"attack": 165,
"defense": 150,
"types": ["psychic", "ice"],
"images": {
"back_default": "back/10193.png",
"front_default": "10193.png",
"official": "other/official-artwork/10193.png"
}
},
{
"id": 10194,
"name": "calyrex-shadow",
"height": 24,
"weight": 536,
"hp": 100,
"attack": 85,
"defense": 80,
"types": ["psychic", "ghost"],
"images": {
"back_default": "back/10194.png",
"front_default": "10194.png",
"official": "other/official-artwork/10194.png"
}
},
{
"id": 10195,
"name": "venusaur-gmax",
"height": 240,
"weight": 10000,
"hp": 80,
"attack": 82,
"defense": 83,
"types": ["grass", "poison"],
"images": {
"back_default": "back/10195.png",
"front_default": "10195.png",
"official": "other/official-artwork/10195.png"
}
},
{
"id": 10196,
"name": "charizard-gmax",
"height": 280,
"weight": 10000,
"hp": 78,
"attack": 84,
"defense": 78,
"types": ["fire", "flying"],
"images": {
"back_default": "back/10196.png",
"front_default": "10196.png",
"official": "other/official-artwork/10196.png"
}
},
{
"id": 10197,
"name": "blastoise-gmax",
"height": 250,
"weight": 10000,
"hp": 79,
"attack": 83,
"defense": 100,
"types": ["water"],
"images": {
"back_default": "back/10197.png",
"front_default": "10197.png",
"official": "other/official-artwork/10197.png"
}
},
{
"id": 10198,
"name": "butterfree-gmax",
"height": 170,
"weight": 10000,
"hp": 60,
"attack": 45,
"defense": 50,
"types": ["bug", "flying"],
"images": {
"back_default": "back/10198.png",
"front_default": "10198.png",
"official": "other/official-artwork/10198.png"
}
},
{
"id": 10199,
"name": "pikachu-gmax",
"height": 210,
"weight": 10000,
"hp": 35,
"attack": 55,
"defense": 40,
"types": ["electric"],
"images": {
"back_default": "back/10199.png",
"front_default": "10199.png",
"official": "other/official-artwork/10199.png"
}
},
{
"id": 10200,
"name": "meowth-gmax",
"height": 330,
"weight": 10000,
"hp": 40,
"attack": 45,
"defense": 35,
"types": ["normal"],
"images": {
"back_default": "back/10200.png",
"front_default": "10200.png",
"official": "other/official-artwork/10200.png"
}
},
{
"id": 10201,
"name": "machamp-gmax",
"height": 250,
"weight": 10000,
"hp": 90,
"attack": 130,
"defense": 80,
"types": ["fighting"],
"images": {
"back_default": "back/10201.png",
"front_default": "10201.png",
"official": "other/official-artwork/10201.png"
}
},
{
"id": 10202,
"name": "gengar-gmax",
"height": 200,
"weight": 10000,
"hp": 60,
"attack": 65,
"defense": 60,
"types": ["ghost", "poison"],
"images": {
"back_default": "back/10202.png",
"front_default": "10202.png",
"official": "other/official-artwork/10202.png"
}
},
{
"id": 10203,
"name": "kingler-gmax",
"height": 190,
"weight": 10000,
"hp": 55,
"attack": 130,
"defense": 115,
"types": ["water"],
"images": {
"back_default": "back/10203.png",
"front_default": "10203.png",
"official": "other/official-artwork/10203.png"
}
},
{
"id": 10204,
"name": "lapras-gmax",
"height": 240,
"weight": 10000,
"hp": 130,
"attack": 85,
"defense": 80,
"types": ["water", "ice"],
"images": {
"back_default": "back/10204.png",
"front_default": "10204.png",
"official": "other/official-artwork/10204.png"
}
},
{
"id": 10205,
"name": "eevee-gmax",
"height": 180,
"weight": 10000,
"hp": 55,
"attack": 55,
"defense": 50,
"types": ["normal"],
"images": {
"back_default": "back/10205.png",
"front_default": "10205.png",
"official": "other/official-artwork/10205.png"
}
},
{
"id": 10206,
"name": "snorlax-gmax",
"height": 350,
"weight": 10000,
"hp": 160,
"attack": 110,
"defense": 65,
"types": ["normal"],
"images": {
"back_default": "back/10206.png",
"front_default": "10206.png",
"official": "other/official-artwork/10206.png"
}
},
{
"id": 10207,
"name": "garbodor-gmax",
"height": 210,
"weight": 10000,
"hp": 80,
"attack": 95,
"defense": 82,
"types": ["poison"],
"images": {
"back_default": "back/10207.png",
"front_default": "10207.png",
"official": "other/official-artwork/10207.png"
}
},
{
"id": 10208,
"name": "melmetal-gmax",
"height": 250,
"weight": 10000,
"hp": 135,
"attack": 143,
"defense": 143,
"types": ["steel"],
"images": {
"back_default": "back/10208.png",
"front_default": "10208.png",
"official": "other/official-artwork/10208.png"
}
},
{
"id": 10209,
"name": "rillaboom-gmax",
"height": 280,
"weight": 10000,
"hp": 100,
"attack": 125,
"defense": 90,
"types": ["grass"],
"images": {
"back_default": "back/10209.png",
"front_default": "10209.png",
"official": "other/official-artwork/10209.png"
}
},
{
"id": 10210,
"name": "cinderace-gmax",
"height": 270,
"weight": 10000,
"hp": 80,
"attack": 116,
"defense": 75,
"types": ["fire"],
"images": {
"back_default": "back/10210.png",
"front_default": "10210.png",
"official": "other/official-artwork/10210.png"
}
},
{
"id": 10211,
"name": "inteleon-gmax",
"height": 400,
"weight": 10000,
"hp": 70,
"attack": 85,
"defense": 65,
"types": ["water"],
"images": {
"back_default": "back/10211.png",
"front_default": "10211.png",
"official": "other/official-artwork/10211.png"
}
},
{
"id": 10212,
"name": "corviknight-gmax",
"height": 140,
"weight": 10000,
"hp": 98,
"attack": 87,
"defense": 105,
"types": ["flying", "steel"],
"images": {
"back_default": "back/10212.png",
"front_default": "10212.png",
"official": "other/official-artwork/10212.png"
}
},
{
"id": 10213,
"name": "orbeetle-gmax",
"height": 140,
"weight": 10000,
"hp": 60,
"attack": 45,
"defense": 110,
"types": ["bug", "psychic"],
"images": {
"back_default": "back/10213.png",
"front_default": "10213.png",
"official": "other/official-artwork/10213.png"
}
},
{
"id": 10214,
"name": "drednaw-gmax",
"height": 240,
"weight": 10000,
"hp": 90,
"attack": 115,
"defense": 90,
"types": ["water", "rock"],
"images": {
"back_default": "back/10214.png",
"front_default": "10214.png",
"official": "other/official-artwork/10214.png"
}
},
{
"id": 10215,
"name": "coalossal-gmax",
"height": 420,
"weight": 10000,
"hp": 110,
"attack": 80,
"defense": 120,
"types": ["rock", "fire"],
"images": {
"back_default": "back/10215.png",
"front_default": "10215.png",
"official": "other/official-artwork/10215.png"
}
},
{
"id": 10216,
"name": "flapple-gmax",
"height": 240,
"weight": 10000,
"hp": 70,
"attack": 110,
"defense": 80,
"types": ["grass", "dragon"],
"images": {
"back_default": null,
"front_default": "10216.png",
"official": "other/official-artwork/10216.png"
}
},
{
"id": 10217,
"name": "appletun-gmax",
"height": 240,
"weight": 10000,
"hp": 110,
"attack": 85,
"defense": 80,
"types": ["grass", "dragon"],
"images": {
"back_default": null,
"front_default": "10217.png",
"official": "other/official-artwork/10217.png"
}
},
{
"id": 10218,
"name": "sandaconda-gmax",
"height": 220,
"weight": 10000,
"hp": 72,
"attack": 107,
"defense": 125,
"types": ["ground"],
"images": {
"back_default": "back/10218.png",
"front_default": "10218.png",
"official": "other/official-artwork/10218.png"
}
},
{
"id": 10219,
"name": "toxtricity-amped-gmax",
"height": 240,
"weight": 10000,
"hp": 75,
"attack": 98,
"defense": 70,
"types": ["electric", "poison"],
"images": {
"back_default": null,
"front_default": "10219.png",
"official": "other/official-artwork/10219.png"
}
},
{
"id": 10220,
"name": "centiskorch-gmax",
"height": 750,
"weight": 10000,
"hp": 100,
"attack": 115,
"defense": 65,
"types": ["fire", "bug"],
"images": {
"back_default": "back/10220.png",
"front_default": "10220.png",
"official": "other/official-artwork/10220.png"
}
},
{
"id": 10221,
"name": "hatterene-gmax",
"height": 260,
"weight": 10000,
"hp": 57,
"attack": 90,
"defense": 95,
"types": ["psychic", "fairy"],
"images": {
"back_default": "back/10221.png",
"front_default": "10221.png",
"official": "other/official-artwork/10221.png"
}
},
{
"id": 10222,
"name": "grimmsnarl-gmax",
"height": 320,
"weight": 10000,
"hp": 95,
"attack": 120,
"defense": 65,
"types": ["dark", "fairy"],
"images": {
"back_default": "back/10222.png",
"front_default": "10222.png",
"official": "other/official-artwork/10222.png"
}
},
{
"id": 10223,
"name": "alcremie-gmax",
"height": 300,
"weight": 10000,
"hp": 65,
"attack": 60,
"defense": 75,
"types": ["fairy"],
"images": {
"back_default": "back/10223.png",
"front_default": "10223.png",
"official": "other/official-artwork/10223.png"
}
},
{
"id": 10224,
"name": "copperajah-gmax",
"height": 230,
"weight": 10000,
"hp": 122,
"attack": 130,
"defense": 69,
"types": ["steel"],
"images": {
"back_default": "back/10224.png",
"front_default": "10224.png",
"official": "other/official-artwork/10224.png"
}
},
{
"id": 10225,
"name": "duraludon-gmax",
"height": 430,
"weight": 10000,
"hp": 70,
"attack": 95,
"defense": 115,
"types": ["steel", "dragon"],
"images": {
"back_default": "back/10225.png",
"front_default": "10225.png",
"official": "other/official-artwork/10225.png"
}
},
{
"id": 10226,
"name": "urshifu-single-strike-gmax",
"height": 290,
"weight": 10000,
"hp": 100,
"attack": 130,
"defense": 100,
"types": ["fighting", "dark"],
"images": {
"back_default": null,
"front_default": "10226.png",
"official": "other/official-artwork/10226.png"
}
},
{
"id": 10227,
"name": "urshifu-rapid-strike-gmax",
"height": 260,
"weight": 10000,
"hp": 100,
"attack": 130,
"defense": 100,
"types": ["fighting", "water"],
"images": {
"back_default": null,
"front_default": "10227.png",
"official": "other/official-artwork/10227.png"
}
},
{
"id": 10228,
"name": "toxtricity-low-key-gmax",
"height": 240,
"weight": 10000,
"hp": 75,
"attack": 98,
"defense": 70,
"types": ["electric", "poison"],
"images": {
"back_default": null,
"front_default": "10228.png",
"official": "other/official-artwork/10228.png"
}
},
{
"id": 10229,
"name": "growlithe-hisui",
"height": 8,
"weight": 227,
"hp": 60,
"attack": 75,
"defense": 45,
"types": ["fire", "rock"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10230,
"name": "arcanine-hisui",
"height": 20,
"weight": 1680,
"hp": 95,
"attack": 115,
"defense": 80,
"types": ["fire", "rock"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10231,
"name": "voltorb-hisui",
"height": 5,
"weight": 130,
"hp": 40,
"attack": 30,
"defense": 50,
"types": ["electric", "grass"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10232,
"name": "electrode-hisui",
"height": 12,
"weight": 710,
"hp": 60,
"attack": 50,
"defense": 70,
"types": ["electric", "grass"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10233,
"name": "typhlosion-hisui",
"height": 16,
"weight": 698,
"hp": 73,
"attack": 84,
"defense": 78,
"types": ["fire", "ghost"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10234,
"name": "qwilfish-hisui",
"height": 5,
"weight": 39,
"hp": 65,
"attack": 95,
"defense": 85,
"types": ["dark", "poison"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10235,
"name": "sneasel-hisui",
"height": 9,
"weight": 270,
"hp": 55,
"attack": 95,
"defense": 55,
"types": ["fighting", "poison"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10236,
"name": "samurott-hisui",
"height": 15,
"weight": 582,
"hp": 90,
"attack": 108,
"defense": 80,
"types": ["water", "dark"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10237,
"name": "lilligant-hisui",
"height": 12,
"weight": 192,
"hp": 70,
"attack": 105,
"defense": 75,
"types": ["grass", "fighting"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10238,
"name": "zorua-hisui",
"height": 7,
"weight": 125,
"hp": 35,
"attack": 60,
"defense": 40,
"types": ["normal", "ghost"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10239,
"name": "zoroark-hisui",
"height": 16,
"weight": 730,
"hp": 55,
"attack": 100,
"defense": 60,
"types": ["normal", "ghost"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10240,
"name": "braviary-hisui",
"height": 17,
"weight": 434,
"hp": 110,
"attack": 83,
"defense": 70,
"types": ["psychic", "flying"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10241,
"name": "sliggoo-hisui",
"height": 7,
"weight": 685,
"hp": 58,
"attack": 75,
"defense": 83,
"types": ["steel", "dragon"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10242,
"name": "goodra-hisui",
"height": 17,
"weight": 3341,
"hp": 80,
"attack": 100,
"defense": 100,
"types": ["steel", "dragon"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10243,
"name": "avalugg-hisui",
"height": 14,
"weight": 2624,
"hp": 95,
"attack": 127,
"defense": 184,
"types": ["ice", "rock"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10244,
"name": "decidueye-hisui",
"height": 16,
"weight": 370,
"hp": 88,
"attack": 112,
"defense": 80,
"types": ["grass", "fighting"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10245,
"name": "dialga-origin",
"height": 70,
"weight": 8487,
"hp": 100,
"attack": 100,
"defense": 120,
"types": ["steel", "dragon"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10246,
"name": "palkia-origin",
"height": 63,
"weight": 6590,
"hp": 90,
"attack": 100,
"defense": 100,
"types": ["water", "dragon"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10247,
"name": "basculin-white-striped",
"height": 10,
"weight": 180,
"hp": 70,
"attack": 92,
"defense": 65,
"types": ["water"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10248,
"name": "basculegion-female",
"height": 30,
"weight": 1100,
"hp": 120,
"attack": 92,
"defense": 65,
"types": ["water", "ghost"],
"images": { "back_default": null, "front_default": null, "official": null }
},
{
"id": 10249,
"name": "enamorus-therian",
"height": 16,
"weight": 480,
"hp": 74,
"attack": 115,
"defense": 110,
"types": ["fairy", "flying"],
"images": { "back_default": null, "front_default": null, "official": null }
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment