Skip to content

Instantly share code, notes, and snippets.

@ctrulove
Last active August 18, 2016 19:18
Show Gist options
  • Save ctrulove/91b1c31ffe5d6526c1321e23610b6f56 to your computer and use it in GitHub Desktop.
Save ctrulove/91b1c31ffe5d6526c1321e23610b6f56 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import os
import re
import sys
import json
import time
import struct
import random
import logging
import requests
import argparse
import csv
# import Pokemon Go API lib
from pgoapi import pgoapi
from pgoapi import utilities as util
log = logging.getLogger(__name__)
def init_config():
parser = argparse.ArgumentParser()
config_file = "config.json"
# If config file exists, load variables from json
load = {}
if os.path.isfile(config_file):
with open(config_file) as data:
load.update(json.load(data))
# Read passed in Arguments
required = lambda x: x not in load
parser.add_argument("-a", "--auth_service", help="Auth Service ('ptc' or 'google')",
required=required("auth_service"))
parser.add_argument("-u", "--username", help="Username", required=required("username"))
parser.add_argument("-p", "--password", help="Password", required=required("password"))
parser.add_argument("-l", "--location", help="Location", required=required("location"))
parser.add_argument("-f", "--file", help="CSV File Name")
parser.add_argument("-d", "--debug", help="Debug Mode", action='store_true')
parser.add_argument("-t", "--test", help="Only parse the specified location", action='store_true')
parser.set_defaults(FILE="pokemon.csv",DEBUG=False, TEST=False)
config = parser.parse_args()
# Passed in arguments shoud trump
for key in config.__dict__:
if key in load and config.__dict__[key] == None:
config.__dict__[key] = load[key]
if config.auth_service not in ['ptc', 'google']:
log.error("Invalid Auth service specified! ('ptc' or 'google')")
return None
return config
def organize_bag(response_dict):
inventory_items = response_dict['responses']['GET_INVENTORY']['inventory_delta']['inventory_items']
bag={}
pokemon_list=[]
candy_list=[]
for item in inventory_items:
data = item['inventory_item_data']
if 'pokemon_data' in data:
#Filter out eggs
if 'pokemon_id' in data['pokemon_data']:
pokemon_list.append(data['pokemon_data'])
if 'candy' in data:
candy_list.append(data['candy'])
bag['pokemon'] = pokemon_list
bag['candy'] = candy_list
return bag
def process_pokemon(bag,api):
for pokemon in bag['pokemon']:
#Normalize data structure to hide bug with individual_XXX stats
pokemon['individual_attack'] = pokemon.get('individual_attack',0)
pokemon['individual_defense'] = pokemon.get('individual_defense',0)
pokemon['individual_stamina'] = pokemon.get('individual_stamina',0)
pokemon_id = pokemon.get('pokemon_id',0)
#add Name
pokemon['name'] = get_pokemon_name(pokemon_id)
#add iv
pokemon['iv'] = calculate_iv(pokemon.get('individual_attack'),pokemon.get('individual_defense'),pokemon.get('individual_stamina'))
#add family
pokemon['family'] = get_pokemon_family(pokemon_id)
#add candy
pokemon['candy'] = calculate_available_candy(pokemon_id,bag)
#add candies_per_evolve
pokemon['candies_per_evolve'] = get_pokemon_evolution_candies_required(pokemon_id)
#add count
pokemon['count'] = calculate_pokemon_count(pokemon_id,bag)
#add available_evolutions
pokemon['available_evolutions'] = calculate_available_evolutions(pokemon)
return bag
def get_pokemon_data(pokemon_id):
if not hasattr(get_pokemon_data, 'pokemon'):
file_path = 'pokedex.json'
with open(file_path, 'r') as f:
get_pokemon_data.pokemon = json.loads(f.read())
return get_pokemon_data.pokemon[str(pokemon_id)]
def get_pokemon_name(pokemon_id):
return get_pokemon_data(pokemon_id)['name']
def get_pokemon_rarity(pokemon_id):
return get_pokemon_data(pokemon_id)['rarity']
def get_pokemon_family(pokemon_id):
family_id = get_pokemon_data(pokemon_id)['family_id']
return get_pokemon_name(family_id)
def get_pokemon_evolution_candies_required(pokemon_id):
pokemon_data = get_pokemon_data(pokemon_id)
if 'evolution' in pokemon_data:
return pokemon_data['evolution']['candies']
else:
return 0
def calculate_pokemon_count(pokemon_id,bag):
count = 0
for pokemon in bag['pokemon']:
if pokemon_id == pokemon['pokemon_id']:
count += 1
return count
def calculate_available_evolutions(pokemon):
cpe = int(pokemon['candies_per_evolve'])
if cpe != 0:
return int(pokemon['candy']) / cpe
else:
return cpe
def export_csv(dict_list,filename):
with open(filename.replace('.csv','-debug.json'),'wb+') as f:
json.dump(dict_list,f,sort_keys=True)
key_list = dict_list[0].keys()
csv_writer = csv.writer(open(filename, 'wb+'))
csv_writer.writerow(key_list)
for item in dict_list:
value_list = []
for key in key_list:
value_list.append(item.get(key))
csv_writer.writerow(value_list)
def calculate_available_candy(family_id,bag):
for candy in bag['candy']:
if candy.get('family_id') == family_id:
return candy.get('candy')
return 0
def calculate_iv(attack,defense,stamina):
iv = (float(attack) + float(defense) + float(stamina)) / 3 / 15 * 100
#print '(%s + %s + %s) / 3 / 15 * 100 = %s' % (attack,defense,stamina,iv)
return iv
def main():
# log settings
# log format
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s [%(module)10s] [%(levelname)5s] %(message)s')
# log level for http request class
logging.getLogger("requests").setLevel(logging.WARNING)
# log level for main pgoapi class
logging.getLogger("pgoapi").setLevel(logging.INFO)
# log level for internal pgoapi class
logging.getLogger("rpc_api").setLevel(logging.INFO)
config = init_config()
if not config:
return
if config.debug:
logging.getLogger("requests").setLevel(logging.DEBUG)
logging.getLogger("pgoapi").setLevel(logging.DEBUG)
logging.getLogger("rpc_api").setLevel(logging.DEBUG)
# parse position
position = util.get_pos_by_name(config.location)
if not position:
log.error('Your given location could not be found by name')
return
elif config.test:
return
# instantiate pgoapi
api = pgoapi.PGoApi()
# provide player position on the earth
api.set_position(*position)
# new authentication initialitation
api.set_authentication(provider = config.auth_service, username = config.username, password = config.password)
# provide the path for your encrypt dll
api.activate_signature("encrypt64bit.dll")
# chain subrequests (methods) into one RPC call
# get inventory call
# ----------------------
response_dict = api.get_inventory()
bag = organize_bag(response_dict)
bag = process_pokemon(bag,api)
export_csv(bag['pokemon'],config.file)
if __name__ == '__main__':
main()
{
"0": {
"family_id": 0,
"name": "MissingNo",
"rarity": "N/A",
"spawn_rate": "99999",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"1": {
"evolution": {
"candies": 25,
"id": 2
},
"family_id": 1,
"name": "Bulbasaur",
"rarity": "Uncommon",
"spawn_rate": "61",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"10": {
"evolution": {
"candies": 12,
"id": 11
},
"family_id": 10,
"name": "Caterpie",
"rarity": "Uncommon",
"spawn_rate": "51",
"types": [
{
"color": "#a8b820",
"type": "Bug"
}
]
},
"100": {
"evolution": {
"candies": 50,
"id": 101
},
"family_id": 100,
"name": "Voltorb",
"rarity": "Rare",
"spawn_rate": "276",
"types": [
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"101": {
"family_id": 100,
"name": "Electrode",
"rarity": "Ultra Rare",
"spawn_rate": "1985",
"types": [
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"102": {
"evolution": {
"candies": 50,
"id": 103
},
"family_id": 102,
"name": "Exeggcute",
"rarity": "Rare",
"spawn_rate": "123",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"103": {
"family_id": 102,
"name": "Exeggutor",
"rarity": "Very Rare",
"spawn_rate": "1231",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"104": {
"evolution": {
"candies": 50,
"id": 105
},
"family_id": 104,
"name": "Cubone",
"rarity": "Rare",
"spawn_rate": "163",
"types": [
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"105": {
"family_id": 104,
"name": "Marowak",
"rarity": "Very Rare",
"spawn_rate": "1431",
"types": [
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"106": {
"family_id": 106,
"name": "Hitmonlee",
"rarity": "Very Rare",
"spawn_rate": "504",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"107": {
"family_id": 107,
"name": "Hitmonchan",
"rarity": "Rare",
"spawn_rate": "446",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"108": {
"family_id": 108,
"name": "Lickitung",
"rarity": "Rare",
"spawn_rate": "443",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"109": {
"evolution": {
"candies": 50,
"id": 110
},
"family_id": 109,
"name": "Koffing",
"rarity": "Rare",
"spawn_rate": "213",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"11": {
"evolution": {
"candies": 50,
"id": 12
},
"family_id": 10,
"name": "Metapod",
"rarity": "Rare",
"spawn_rate": "433",
"types": [
{
"color": "#a8b820",
"type": "Bug"
}
]
},
"110": {
"family_id": 109,
"name": "Weezing",
"rarity": "Very Rare",
"spawn_rate": "1398",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"111": {
"evolution": {
"candies": 50,
"id": 112
},
"family_id": 111,
"name": "Rhyhorn",
"rarity": "Rare",
"spawn_rate": "110",
"types": [
{
"color": "#e0c068",
"type": "Ground"
},
{
"color": "#b8a038",
"type": "Rock"
}
]
},
"112": {
"family_id": 111,
"name": "Rhydon",
"rarity": "Very Rare",
"spawn_rate": "867",
"types": [
{
"color": "#e0c068",
"type": "Ground"
},
{
"color": "#b8a038",
"type": "Rock"
}
]
},
"113": {
"family_id": 113,
"name": "Chansey",
"rarity": "Very Rare",
"spawn_rate": "1256",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"114": {
"family_id": 114,
"name": "Tangela",
"rarity": "Rare",
"spawn_rate": "346",
"types": [
{
"color": "#78c850",
"type": "Grass"
}
]
},
"115": {
"family_id": 115,
"name": "Kangaskhan",
"rarity": "Ultra Rare",
"spawn_rate": "2461",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"116": {
"evolution": {
"candies": 50,
"id": 117
},
"family_id": 116,
"name": "Horsea",
"rarity": "Rare",
"spawn_rate": "104",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"117": {
"family_id": 116,
"name": "Seadra",
"rarity": "Very Rare",
"spawn_rate": "760",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"118": {
"evolution": {
"candies": 50,
"id": 119
},
"family_id": 118,
"name": "Goldeen",
"rarity": "Rare",
"spawn_rate": "103",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"119": {
"family_id": 118,
"name": "Seaking",
"rarity": "Very Rare",
"spawn_rate": "684",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"12": {
"family_id": 10,
"name": "Butterfree",
"rarity": "Very Rare",
"spawn_rate": "843",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"120": {
"evolution": {
"candies": 50,
"id": 120
},
"family_id": 120,
"name": "Staryu",
"rarity": "Uncommon",
"spawn_rate": "97",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"121": {
"family_id": 120,
"name": "Starmie",
"rarity": "Very Rare",
"spawn_rate": "1206",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"122": {
"family_id": 122,
"name": "Mr. Mime",
"rarity": "Very Rare",
"spawn_rate": "1431",
"types": [
{
"color": "#f85888",
"type": "Psychic"
},
{
"color": "#e898e8",
"type": "Fairy"
}
]
},
"123": {
"family_id": 123,
"name": "Scyther",
"rarity": "Rare",
"spawn_rate": "155",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"124": {
"family_id": 124,
"name": "Jynx",
"rarity": "Rare",
"spawn_rate": "152",
"types": [
{
"color": "#98d8d8",
"type": "Ice"
},
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"125": {
"family_id": 125,
"name": "Electabuzz",
"rarity": "Rare",
"spawn_rate": "261",
"types": [
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"126": {
"family_id": 126,
"name": "Magmar",
"rarity": "Rare",
"spawn_rate": "213",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"127": {
"family_id": 127,
"name": "Pinsir",
"rarity": "Uncommon",
"spawn_rate": "99",
"types": [
{
"color": "#a8b820",
"type": "Bug"
}
]
},
"128": {
"family_id": 128,
"name": "Tauros",
"rarity": "Rare",
"spawn_rate": "153",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"129": {
"evolution": {
"candies": 400,
"id": 130
},
"family_id": 129,
"name": "Magikarp",
"rarity": "Uncommon",
"spawn_rate": "79",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"13": {
"evolution": {
"candies": 12,
"id": 14
},
"family_id": 13,
"name": "Weedle",
"rarity": "Common",
"spawn_rate": "21",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"130": {
"family_id": 130,
"name": "Gyarados",
"rarity": "Ultra Rare",
"spawn_rate": "2279",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"131": {
"family_id": 131,
"name": "Lapras",
"rarity": "Very Rare",
"spawn_rate": "1183",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#98d8d8",
"type": "Ice"
}
]
},
"132": {
"family_id": 132,
"name": "Ditto",
"rarity": "Ultra Rare",
"spawn_rate": "30764",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"133": {
"evolution": {
"candies": 25,
"id": 134
},
"family_id": 133,
"name": "Eevee",
"rarity": "Common",
"spawn_rate": "24",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"134": {
"family_id": 133,
"name": "Vaporeon",
"rarity": "Very Rare",
"spawn_rate": "1465",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"135": {
"family_id": 133,
"name": "Jolteon",
"rarity": "Very Rare",
"spawn_rate": "1309",
"types": [
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"136": {
"family_id": 133,
"name": "Flareon",
"rarity": "Ultra Rare",
"spawn_rate": "1568",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"137": {
"family_id": 137,
"name": "Porygon",
"rarity": "Very Rare",
"spawn_rate": "867",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"138": {
"evolution": {
"candies": 50,
"id": 139
},
"family_id": 138,
"name": "Omanyte",
"rarity": "Rare",
"spawn_rate": "346",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#6890f0",
"type": "Water"
}
]
},
"139": {
"family_id": 139,
"name": "Omastar",
"rarity": "Ultra Rare",
"spawn_rate": "6153",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#6890f0",
"type": "Water"
}
]
},
"14": {
"evolution": {
"candies": 50,
"id": 15
},
"family_id": 13,
"name": "Kakuna",
"rarity": "Rare",
"spawn_rate": "204",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"140": {
"evolution": {
"candies": 50,
"id": 141
},
"family_id": 140,
"name": "Kabuto",
"rarity": "Rare",
"spawn_rate": "356",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#6890f0",
"type": "Water"
}
]
},
"141": {
"family_id": 140,
"name": "Kabutops",
"rarity": "Ultra Rare",
"spawn_rate": "2930",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#6890f0",
"type": "Water"
}
]
},
"142": {
"family_id": 142,
"name": "Aerodactyl",
"rarity": "Very Rare",
"spawn_rate": "879",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"143": {
"family_id": 143,
"name": "Snorlax",
"rarity": "Rare",
"spawn_rate": "284",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"144": {
"family_id": 144,
"name": "Articuno",
"rarity": "Ultra Rare",
"spawn_rate": "99999",
"types": [
{
"color": "#98d8d8",
"type": "Ice"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"145": {
"family_id": 145,
"name": "Zapdos",
"rarity": "Ultra Rare",
"spawn_rate": "99999",
"types": [
{
"color": "#f8d030",
"type": "Electric"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"146": {
"family_id": 146,
"name": "Moltres",
"rarity": "Ultra Rare",
"spawn_rate": "99999",
"types": [
{
"color": "#f08030",
"type": "Fire"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"147": {
"evolution": {
"candies": 25,
"id": 148
},
"family_id": 147,
"name": "Dratini",
"rarity": "Uncommon",
"spawn_rate": "91",
"types": [
{
"color": "#7038f8",
"type": "Dragon"
}
]
},
"148": {
"evolution": {
"candies": 100,
"id": 149
},
"family_id": 147,
"name": "Dragonair",
"rarity": "Very Rare",
"spawn_rate": "699",
"types": [
{
"color": "#7038f8",
"type": "Dragon"
}
]
},
"149": {
"family_id": 147,
"name": "Dragonite",
"rarity": "Very Rare",
"spawn_rate": "580",
"types": [
{
"color": "#7038f8",
"type": "Dragon"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"15": {
"family_id": 13,
"name": "Beedrill",
"rarity": "Rare",
"spawn_rate": "377",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"150": {
"family_id": 150,
"name": "Mewtwo",
"rarity": "Ultra Rare",
"spawn_rate": "99999",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"151": {
"family_id": 151,
"name": "Mew",
"rarity": "Ultra Rare",
"spawn_rate": "99999",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"152": {
"name": "Chikorita",
"rarity": "",
"spawn_rate": "",
"types": []
},
"153": {
"name": "Bayleef",
"rarity": "",
"spawn_rate": "",
"types": []
},
"154": {
"name": "Meganium",
"rarity": "",
"spawn_rate": "",
"types": []
},
"155": {
"name": "Cyndaquil",
"rarity": "",
"spawn_rate": "",
"types": []
},
"156": {
"name": "Quilava",
"rarity": "",
"spawn_rate": "",
"types": []
},
"157": {
"name": "Typhlosion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"158": {
"name": "Totodile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"159": {
"name": "Croconaw",
"rarity": "",
"spawn_rate": "",
"types": []
},
"16": {
"evolution": {
"candies": 12,
"id": 17
},
"family_id": 16,
"name": "Pidgey",
"rarity": "Common",
"spawn_rate": "10",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"160": {
"name": "Feraligatr",
"rarity": "",
"spawn_rate": "",
"types": []
},
"161": {
"name": "Sentret",
"rarity": "",
"spawn_rate": "",
"types": []
},
"162": {
"name": "Furret",
"rarity": "",
"spawn_rate": "",
"types": []
},
"163": {
"name": "Hoothoot",
"rarity": "",
"spawn_rate": "",
"types": []
},
"164": {
"name": "Noctowl",
"rarity": "",
"spawn_rate": "",
"types": []
},
"165": {
"name": "Ledyba",
"rarity": "",
"spawn_rate": "",
"types": []
},
"166": {
"name": "Ledian",
"rarity": "",
"spawn_rate": "",
"types": []
},
"167": {
"name": "Spinarak",
"rarity": "",
"spawn_rate": "",
"types": []
},
"168": {
"name": "Ariados",
"rarity": "",
"spawn_rate": "",
"types": []
},
"169": {
"name": "Crobat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"17": {
"evolution": {
"candies": 50,
"id": 18
},
"family_id": 16,
"name": "Pidgeotto",
"rarity": "Uncommon",
"spawn_rate": "75",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"170": {
"name": "Chinchou",
"rarity": "",
"spawn_rate": "",
"types": []
},
"171": {
"name": "Lanturn",
"rarity": "",
"spawn_rate": "",
"types": []
},
"172": {
"name": "Pichu",
"rarity": "",
"spawn_rate": "",
"types": []
},
"173": {
"name": "Cleffa",
"rarity": "",
"spawn_rate": "",
"types": []
},
"174": {
"name": "Igglybuff",
"rarity": "",
"spawn_rate": "",
"types": []
},
"175": {
"name": "Togepi",
"rarity": "",
"spawn_rate": "",
"types": []
},
"176": {
"name": "Togetic",
"rarity": "",
"spawn_rate": "",
"types": []
},
"177": {
"name": "Natu",
"rarity": "",
"spawn_rate": "",
"types": []
},
"178": {
"name": "Xatu",
"rarity": "",
"spawn_rate": "",
"types": []
},
"179": {
"name": "Mareep",
"rarity": "",
"spawn_rate": "",
"types": []
},
"18": {
"family_id": 16,
"name": "Pidgeot",
"rarity": "Rare",
"spawn_rate": "203",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"180": {
"name": "Flaaffy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"181": {
"name": "Ampharos",
"rarity": "",
"spawn_rate": "",
"types": []
},
"182": {
"name": "Bellossom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"183": {
"name": "Marill",
"rarity": "",
"spawn_rate": "",
"types": []
},
"184": {
"name": "Azumarill",
"rarity": "",
"spawn_rate": "",
"types": []
},
"185": {
"name": "Sudowoodo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"186": {
"name": "Politoed",
"rarity": "",
"spawn_rate": "",
"types": []
},
"187": {
"name": "Hoppip",
"rarity": "",
"spawn_rate": "",
"types": []
},
"188": {
"name": "Skiploom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"189": {
"name": "Jumpluff",
"rarity": "",
"spawn_rate": "",
"types": []
},
"19": {
"evolution": {
"candies": 25,
"id": 20
},
"family_id": 19,
"name": "Rattata",
"rarity": "Common",
"spawn_rate": "13",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"190": {
"name": "Aipom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"191": {
"name": "Sunkern",
"rarity": "",
"spawn_rate": "",
"types": []
},
"192": {
"name": "Sunflora",
"rarity": "",
"spawn_rate": "",
"types": []
},
"193": {
"name": "Yanma",
"rarity": "",
"spawn_rate": "",
"types": []
},
"194": {
"name": "Wooper",
"rarity": "",
"spawn_rate": "",
"types": []
},
"195": {
"name": "Quagsire",
"rarity": "",
"spawn_rate": "",
"types": []
},
"196": {
"name": "Espeon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"197": {
"name": "Umbreon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"198": {
"name": "Murkrow",
"rarity": "",
"spawn_rate": "",
"types": []
},
"199": {
"name": "Slowking",
"rarity": "",
"spawn_rate": "",
"types": []
},
"2": {
"evolution": {
"candies": 100,
"id": 3
},
"family_id": 1,
"name": "Ivysaur",
"rarity": "Rare",
"spawn_rate": "421",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"20": {
"family_id": 19,
"name": "Raticate",
"rarity": "Rare",
"spawn_rate": "159",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"200": {
"name": "Misdreavus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"201": {
"name": "Unown",
"rarity": "",
"spawn_rate": "",
"types": []
},
"202": {
"name": "Wobbuffet",
"rarity": "",
"spawn_rate": "",
"types": []
},
"203": {
"name": "Girafarig",
"rarity": "",
"spawn_rate": "",
"types": []
},
"204": {
"name": "Pineco",
"rarity": "",
"spawn_rate": "",
"types": []
},
"205": {
"name": "Forretress",
"rarity": "",
"spawn_rate": "",
"types": []
},
"206": {
"name": "Dunsparce",
"rarity": "",
"spawn_rate": "",
"types": []
},
"207": {
"name": "Gligar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"208": {
"name": "Steelix",
"rarity": "",
"spawn_rate": "",
"types": []
},
"209": {
"name": "Snubbull",
"rarity": "",
"spawn_rate": "",
"types": []
},
"21": {
"evolution": {
"candies": 50,
"id": 22
},
"family_id": 21,
"name": "Spearow",
"rarity": "Uncommon",
"spawn_rate": "31",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"210": {
"name": "Granbull",
"rarity": "",
"spawn_rate": "",
"types": []
},
"211": {
"name": "Qwilfish",
"rarity": "",
"spawn_rate": "",
"types": []
},
"212": {
"name": "Scizor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"213": {
"name": "Shuckle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"214": {
"name": "Heracross",
"rarity": "",
"spawn_rate": "",
"types": []
},
"215": {
"name": "Sneasel",
"rarity": "",
"spawn_rate": "",
"types": []
},
"216": {
"name": "Teddiursa",
"rarity": "",
"spawn_rate": "",
"types": []
},
"217": {
"name": "Ursaring",
"rarity": "",
"spawn_rate": "",
"types": []
},
"218": {
"name": "Slugma",
"rarity": "",
"spawn_rate": "",
"types": []
},
"219": {
"name": "Magcargo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"22": {
"family_id": 21,
"name": "Fearow",
"rarity": "Rare",
"spawn_rate": "221",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"220": {
"name": "Swinub",
"rarity": "",
"spawn_rate": "",
"types": []
},
"221": {
"name": "Piloswine",
"rarity": "",
"spawn_rate": "",
"types": []
},
"222": {
"name": "Corsola",
"rarity": "",
"spawn_rate": "",
"types": []
},
"223": {
"name": "Remoraid",
"rarity": "",
"spawn_rate": "",
"types": []
},
"224": {
"name": "Octillery",
"rarity": "",
"spawn_rate": "",
"types": []
},
"225": {
"name": "Delibird",
"rarity": "",
"spawn_rate": "",
"types": []
},
"226": {
"name": "Mantine",
"rarity": "",
"spawn_rate": "",
"types": []
},
"227": {
"name": "Skarmory",
"rarity": "",
"spawn_rate": "",
"types": []
},
"228": {
"name": "Houndour",
"rarity": "",
"spawn_rate": "",
"types": []
},
"229": {
"name": "Houndoom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"23": {
"evolution": {
"candies": 50,
"id": 24
},
"family_id": 23,
"name": "Ekans",
"rarity": "Uncommon",
"spawn_rate": "75",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"230": {
"name": "Kingdra",
"rarity": "",
"spawn_rate": "",
"types": []
},
"231": {
"name": "Phanpy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"232": {
"name": "Donphan",
"rarity": "",
"spawn_rate": "",
"types": []
},
"233": {
"name": "Porygon2",
"rarity": "",
"spawn_rate": "",
"types": []
},
"234": {
"name": "Stantler",
"rarity": "",
"spawn_rate": "",
"types": []
},
"235": {
"name": "Smeargle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"236": {
"name": "Tyrogue",
"rarity": "",
"spawn_rate": "",
"types": []
},
"237": {
"name": "Hitmontop",
"rarity": "",
"spawn_rate": "",
"types": []
},
"238": {
"name": "Smoochum",
"rarity": "",
"spawn_rate": "",
"types": []
},
"239": {
"name": "Elekid",
"rarity": "",
"spawn_rate": "",
"types": []
},
"24": {
"family_id": 23,
"name": "Arbok",
"rarity": "Very Rare",
"spawn_rate": "544",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"240": {
"name": "Magby",
"rarity": "",
"spawn_rate": "",
"types": []
},
"241": {
"name": "Miltank",
"rarity": "",
"spawn_rate": "",
"types": []
},
"242": {
"name": "Blissey",
"rarity": "",
"spawn_rate": "",
"types": []
},
"243": {
"name": "Raikou",
"rarity": "",
"spawn_rate": "",
"types": []
},
"244": {
"name": "Entei",
"rarity": "",
"spawn_rate": "",
"types": []
},
"245": {
"name": "Suicune",
"rarity": "",
"spawn_rate": "",
"types": []
},
"246": {
"name": "Larvitar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"247": {
"name": "Pupitar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"248": {
"name": "Tyranitar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"249": {
"name": "Lugia",
"rarity": "",
"spawn_rate": "",
"types": []
},
"25": {
"evolution": {
"candies": 50,
"id": 26
},
"family_id": 25,
"name": "Pikachu",
"rarity": "Uncommon",
"spawn_rate": "92",
"types": [
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"250": {
"name": "Ho-Oh",
"rarity": "",
"spawn_rate": "",
"types": []
},
"251": {
"name": "Celebi",
"rarity": "",
"spawn_rate": "",
"types": []
},
"252": {
"name": "Treecko",
"rarity": "",
"spawn_rate": "",
"types": []
},
"253": {
"name": "Grovyle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"254": {
"name": "Sceptile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"255": {
"name": "Torchic",
"rarity": "",
"spawn_rate": "",
"types": []
},
"256": {
"name": "Combusken",
"rarity": "",
"spawn_rate": "",
"types": []
},
"257": {
"name": "Blaziken",
"rarity": "",
"spawn_rate": "",
"types": []
},
"258": {
"name": "Mudkip",
"rarity": "",
"spawn_rate": "",
"types": []
},
"259": {
"name": "Marshtomp",
"rarity": "",
"spawn_rate": "",
"types": []
},
"26": {
"family_id": 26,
"name": "Raichu",
"rarity": "Ultra Rare",
"spawn_rate": "2051",
"types": [
{
"color": "#f8d030",
"type": "Electric"
}
]
},
"260": {
"name": "Swampert",
"rarity": "",
"spawn_rate": "",
"types": []
},
"261": {
"name": "Poochyena",
"rarity": "",
"spawn_rate": "",
"types": []
},
"262": {
"name": "Mightyena",
"rarity": "",
"spawn_rate": "",
"types": []
},
"263": {
"name": "Zigzagoon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"264": {
"name": "Linoone",
"rarity": "",
"spawn_rate": "",
"types": []
},
"265": {
"name": "Wurmple",
"rarity": "",
"spawn_rate": "",
"types": []
},
"266": {
"name": "Silcoon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"267": {
"name": "Beautifly",
"rarity": "",
"spawn_rate": "",
"types": []
},
"268": {
"name": "Cascoon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"269": {
"name": "Dustox",
"rarity": "",
"spawn_rate": "",
"types": []
},
"27": {
"evolution": {
"candies": 50,
"id": 28
},
"family_id": 27,
"name": "Sandshrew",
"rarity": "Rare",
"spawn_rate": "163",
"types": [
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"270": {
"name": "Lotad",
"rarity": "",
"spawn_rate": "",
"types": []
},
"271": {
"name": "Lombre",
"rarity": "",
"spawn_rate": "",
"types": []
},
"272": {
"name": "Ludicolo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"273": {
"name": "Seedot",
"rarity": "",
"spawn_rate": "",
"types": []
},
"274": {
"name": "Nuzleaf",
"rarity": "",
"spawn_rate": "",
"types": []
},
"275": {
"name": "Shiftry",
"rarity": "",
"spawn_rate": "",
"types": []
},
"276": {
"name": "Taillow",
"rarity": "",
"spawn_rate": "",
"types": []
},
"277": {
"name": "Swellow",
"rarity": "",
"spawn_rate": "",
"types": []
},
"278": {
"name": "Wingull",
"rarity": "",
"spawn_rate": "",
"types": []
},
"279": {
"name": "Pelipper",
"rarity": "",
"spawn_rate": "",
"types": []
},
"28": {
"family_id": 27,
"name": "Sandslash",
"rarity": "Ultra Rare",
"spawn_rate": "1619",
"types": [
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"280": {
"name": "Ralts",
"rarity": "",
"spawn_rate": "",
"types": []
},
"281": {
"name": "Kirlia",
"rarity": "",
"spawn_rate": "",
"types": []
},
"282": {
"name": "Gardevoir",
"rarity": "",
"spawn_rate": "",
"types": []
},
"283": {
"name": "Surskit",
"rarity": "",
"spawn_rate": "",
"types": []
},
"284": {
"name": "Masquerain",
"rarity": "",
"spawn_rate": "",
"types": []
},
"285": {
"name": "Shroomish",
"rarity": "",
"spawn_rate": "",
"types": []
},
"286": {
"name": "Breloom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"287": {
"name": "Slakoth",
"rarity": "",
"spawn_rate": "",
"types": []
},
"288": {
"name": "Vigoroth",
"rarity": "",
"spawn_rate": "",
"types": []
},
"289": {
"name": "Slaking",
"rarity": "",
"spawn_rate": "",
"types": []
},
"29": {
"evolution": {
"candies": 25,
"id": 30
},
"family_id": 29,
"name": "Nidoran (f)",
"rarity": "Uncommon",
"spawn_rate": "77",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"290": {
"name": "Nincada",
"rarity": "",
"spawn_rate": "",
"types": []
},
"291": {
"name": "Ninjask",
"rarity": "",
"spawn_rate": "",
"types": []
},
"292": {
"name": "Shedinja",
"rarity": "",
"spawn_rate": "",
"types": []
},
"293": {
"name": "Whismur",
"rarity": "",
"spawn_rate": "",
"types": []
},
"294": {
"name": "Loudred",
"rarity": "",
"spawn_rate": "",
"types": []
},
"295": {
"name": "Exploud",
"rarity": "",
"spawn_rate": "",
"types": []
},
"296": {
"name": "Makuhita",
"rarity": "",
"spawn_rate": "",
"types": []
},
"297": {
"name": "Hariyama",
"rarity": "",
"spawn_rate": "",
"types": []
},
"298": {
"name": "Azurill",
"rarity": "",
"spawn_rate": "",
"types": []
},
"299": {
"name": "Nosepass",
"rarity": "",
"spawn_rate": "",
"types": []
},
"3": {
"family_id": 1,
"name": "Venusaur",
"rarity": "Very Rare",
"spawn_rate": "641",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"30": {
"evolution": {
"candies": 100,
"id": 31
},
"family_id": 29,
"name": "Nidorina",
"rarity": "Very Rare",
"spawn_rate": "504",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"300": {
"name": "Skitty",
"rarity": "",
"spawn_rate": "",
"types": []
},
"301": {
"name": "Delcatty",
"rarity": "",
"spawn_rate": "",
"types": []
},
"302": {
"name": "Sableye",
"rarity": "",
"spawn_rate": "",
"types": []
},
"303": {
"name": "Mawile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"304": {
"name": "Aron",
"rarity": "",
"spawn_rate": "",
"types": []
},
"305": {
"name": "Lairon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"306": {
"name": "Aggron",
"rarity": "",
"spawn_rate": "",
"types": []
},
"307": {
"name": "Meditite",
"rarity": "",
"spawn_rate": "",
"types": []
},
"308": {
"name": "Medicham",
"rarity": "",
"spawn_rate": "",
"types": []
},
"309": {
"name": "Electrike",
"rarity": "",
"spawn_rate": "",
"types": []
},
"31": {
"family_id": 29,
"name": "Nidoqueen",
"rarity": "Very Rare",
"spawn_rate": "1398",
"types": [
{
"color": "#a040a0",
"type": "Poison"
},
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"310": {
"name": "Manectric",
"rarity": "",
"spawn_rate": "",
"types": []
},
"311": {
"name": "Plusle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"312": {
"name": "Minun",
"rarity": "",
"spawn_rate": "",
"types": []
},
"313": {
"name": "Volbeat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"314": {
"name": "Illumise",
"rarity": "",
"spawn_rate": "",
"types": []
},
"315": {
"name": "Roselia",
"rarity": "",
"spawn_rate": "",
"types": []
},
"316": {
"name": "Gulpin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"317": {
"name": "Swalot",
"rarity": "",
"spawn_rate": "",
"types": []
},
"318": {
"name": "Carvanha",
"rarity": "",
"spawn_rate": "",
"types": []
},
"319": {
"name": "Sharpedo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"32": {
"evolution": {
"candies": 25,
"id": 33
},
"family_id": 32,
"name": "Nidoran (m)",
"rarity": "Uncommon",
"spawn_rate": "77",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"320": {
"name": "Wailmer",
"rarity": "",
"spawn_rate": "",
"types": []
},
"321": {
"name": "Wailord",
"rarity": "",
"spawn_rate": "",
"types": []
},
"322": {
"name": "Numel",
"rarity": "",
"spawn_rate": "",
"types": []
},
"323": {
"name": "Camerupt",
"rarity": "",
"spawn_rate": "",
"types": []
},
"324": {
"name": "Torkoal",
"rarity": "",
"spawn_rate": "",
"types": []
},
"325": {
"name": "Spoink",
"rarity": "",
"spawn_rate": "",
"types": []
},
"326": {
"name": "Grumpig",
"rarity": "",
"spawn_rate": "",
"types": []
},
"327": {
"name": "Spinda",
"rarity": "",
"spawn_rate": "",
"types": []
},
"328": {
"name": "Trapinch",
"rarity": "",
"spawn_rate": "",
"types": []
},
"329": {
"name": "Vibrava",
"rarity": "",
"spawn_rate": "",
"types": []
},
"33": {
"evolution": {
"candies": 100,
"id": 34
},
"family_id": 32,
"name": "Nidorino",
"rarity": "Very Rare",
"spawn_rate": "586",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"330": {
"name": "Flygon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"331": {
"name": "Cacnea",
"rarity": "",
"spawn_rate": "",
"types": []
},
"332": {
"name": "Cacturne",
"rarity": "",
"spawn_rate": "",
"types": []
},
"333": {
"name": "Swablu",
"rarity": "",
"spawn_rate": "",
"types": []
},
"334": {
"name": "Altaria",
"rarity": "",
"spawn_rate": "",
"types": []
},
"335": {
"name": "Zangoose",
"rarity": "",
"spawn_rate": "",
"types": []
},
"336": {
"name": "Seviper",
"rarity": "",
"spawn_rate": "",
"types": []
},
"337": {
"name": "Lunatone",
"rarity": "",
"spawn_rate": "",
"types": []
},
"338": {
"name": "Solrock",
"rarity": "",
"spawn_rate": "",
"types": []
},
"339": {
"name": "Barboach",
"rarity": "",
"spawn_rate": "",
"types": []
},
"34": {
"family_id": 32,
"name": "Nidoking",
"rarity": "Very Rare",
"spawn_rate": "1025",
"types": [
{
"color": "#a040a0",
"type": "Poison"
},
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"340": {
"name": "Whiscash",
"rarity": "",
"spawn_rate": "",
"types": []
},
"341": {
"name": "Corphish",
"rarity": "",
"spawn_rate": "",
"types": []
},
"342": {
"name": "Crawdaunt",
"rarity": "",
"spawn_rate": "",
"types": []
},
"343": {
"name": "Baltoy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"344": {
"name": "Claydol",
"rarity": "",
"spawn_rate": "",
"types": []
},
"345": {
"name": "Lileep",
"rarity": "",
"spawn_rate": "",
"types": []
},
"346": {
"name": "Cradily",
"rarity": "",
"spawn_rate": "",
"types": []
},
"347": {
"name": "Anorith",
"rarity": "",
"spawn_rate": "",
"types": []
},
"348": {
"name": "Armaldo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"349": {
"name": "Feebas",
"rarity": "",
"spawn_rate": "",
"types": []
},
"35": {
"evolution": {
"candies": 50,
"id": 36
},
"family_id": 35,
"name": "Clefairy",
"rarity": "Uncommon",
"spawn_rate": "85",
"types": [
{
"color": "#e898e8",
"type": "Fairy"
}
]
},
"350": {
"name": "Milotic",
"rarity": "",
"spawn_rate": "",
"types": []
},
"351": {
"name": "Castform",
"rarity": "",
"spawn_rate": "",
"types": []
},
"352": {
"name": "Kecleon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"353": {
"name": "Shuppet",
"rarity": "",
"spawn_rate": "",
"types": []
},
"354": {
"name": "Banette",
"rarity": "",
"spawn_rate": "",
"types": []
},
"355": {
"name": "Duskull",
"rarity": "",
"spawn_rate": "",
"types": []
},
"356": {
"name": "Dusclops",
"rarity": "",
"spawn_rate": "",
"types": []
},
"357": {
"name": "Tropius",
"rarity": "",
"spawn_rate": "",
"types": []
},
"358": {
"name": "Chimecho",
"rarity": "",
"spawn_rate": "",
"types": []
},
"359": {
"name": "Absol",
"rarity": "",
"spawn_rate": "",
"types": []
},
"36": {
"family_id": 35,
"name": "Clefable",
"rarity": "Very Rare",
"spawn_rate": "1309",
"types": [
{
"color": "#e898e8",
"type": "Fairy"
}
]
},
"360": {
"name": "Wynaut",
"rarity": "",
"spawn_rate": "",
"types": []
},
"361": {
"name": "Snorunt",
"rarity": "",
"spawn_rate": "",
"types": []
},
"362": {
"name": "Glalie",
"rarity": "",
"spawn_rate": "",
"types": []
},
"363": {
"name": "Spheal",
"rarity": "",
"spawn_rate": "",
"types": []
},
"364": {
"name": "Sealeo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"365": {
"name": "Walrein",
"rarity": "",
"spawn_rate": "",
"types": []
},
"366": {
"name": "Clamperl",
"rarity": "",
"spawn_rate": "",
"types": []
},
"367": {
"name": "Huntail",
"rarity": "",
"spawn_rate": "",
"types": []
},
"368": {
"name": "Gorebyss",
"rarity": "",
"spawn_rate": "",
"types": []
},
"369": {
"name": "Relicanth",
"rarity": "",
"spawn_rate": "",
"types": []
},
"37": {
"evolution": {
"candies": 50,
"id": 38
},
"family_id": 37,
"name": "Vulpix",
"rarity": "Rare",
"spawn_rate": "188",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"370": {
"name": "Luvdisc",
"rarity": "",
"spawn_rate": "",
"types": []
},
"371": {
"name": "Bagon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"372": {
"name": "Shelgon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"373": {
"name": "Salamence",
"rarity": "",
"spawn_rate": "",
"types": []
},
"374": {
"name": "Beldum",
"rarity": "",
"spawn_rate": "",
"types": []
},
"375": {
"name": "Metang",
"rarity": "",
"spawn_rate": "",
"types": []
},
"376": {
"name": "Metagross",
"rarity": "",
"spawn_rate": "",
"types": []
},
"377": {
"name": "Regirock",
"rarity": "",
"spawn_rate": "",
"types": []
},
"378": {
"name": "Regice",
"rarity": "",
"spawn_rate": "",
"types": []
},
"379": {
"name": "Registeel",
"rarity": "",
"spawn_rate": "",
"types": []
},
"38": {
"family_id": 38,
"name": "Ninetales",
"rarity": "Ultra Rare",
"spawn_rate": "1538",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"380": {
"name": "Latias",
"rarity": "",
"spawn_rate": "",
"types": []
},
"381": {
"name": "Latios",
"rarity": "",
"spawn_rate": "",
"types": []
},
"382": {
"name": "Kyogre",
"rarity": "",
"spawn_rate": "",
"types": []
},
"383": {
"name": "Groudon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"384": {
"name": "Rayquaza",
"rarity": "",
"spawn_rate": "",
"types": []
},
"385": {
"name": "Jirachi",
"rarity": "",
"spawn_rate": "",
"types": []
},
"386": {
"name": "Deoxys",
"rarity": "",
"spawn_rate": "",
"types": []
},
"387": {
"name": "Turtwig",
"rarity": "",
"spawn_rate": "",
"types": []
},
"388": {
"name": "Grotle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"389": {
"name": "Torterra",
"rarity": "",
"spawn_rate": "",
"types": []
},
"39": {
"evolution": {
"candies": 50,
"id": 39
},
"family_id": 39,
"name": "Jigglypuff",
"rarity": "Rare",
"spawn_rate": "101",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#e898e8",
"type": "Fairy"
}
]
},
"390": {
"name": "Chimchar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"391": {
"name": "Monferno",
"rarity": "",
"spawn_rate": "",
"types": []
},
"392": {
"name": "Infernape",
"rarity": "",
"spawn_rate": "",
"types": []
},
"393": {
"name": "Piplup",
"rarity": "",
"spawn_rate": "",
"types": []
},
"394": {
"name": "Prinplup",
"rarity": "",
"spawn_rate": "",
"types": []
},
"395": {
"name": "Empoleon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"396": {
"name": "Starly",
"rarity": "",
"spawn_rate": "",
"types": []
},
"397": {
"name": "Staravia",
"rarity": "",
"spawn_rate": "",
"types": []
},
"398": {
"name": "Staraptor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"399": {
"name": "Bidoof",
"rarity": "",
"spawn_rate": "",
"types": []
},
"4": {
"evolution": {
"candies": 25,
"id": 5
},
"family_id": 4,
"name": "Charmander",
"rarity": "Rare",
"spawn_rate": "119",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"40": {
"family_id": 39,
"name": "Wigglytuff",
"rarity": "Ultra Rare",
"spawn_rate": "2051",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#e898e8",
"type": "Fairy"
}
]
},
"400": {
"name": "Bibarel",
"rarity": "",
"spawn_rate": "",
"types": []
},
"401": {
"name": "Kricketot",
"rarity": "",
"spawn_rate": "",
"types": []
},
"402": {
"name": "Kricketune",
"rarity": "",
"spawn_rate": "",
"types": []
},
"403": {
"name": "Shinx",
"rarity": "",
"spawn_rate": "",
"types": []
},
"404": {
"name": "Luxio",
"rarity": "",
"spawn_rate": "",
"types": []
},
"405": {
"name": "Luxray",
"rarity": "",
"spawn_rate": "",
"types": []
},
"406": {
"name": "Budew",
"rarity": "",
"spawn_rate": "",
"types": []
},
"407": {
"name": "Roserade",
"rarity": "",
"spawn_rate": "",
"types": []
},
"408": {
"name": "Cranidos",
"rarity": "",
"spawn_rate": "",
"types": []
},
"409": {
"name": "Rampardos",
"rarity": "",
"spawn_rate": "",
"types": []
},
"41": {
"evolution": {
"candies": 50,
"id": 42
},
"family_id": 41,
"name": "Zubat",
"rarity": "Common",
"spawn_rate": "24",
"types": [
{
"color": "#a040a0",
"type": "Poison"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"410": {
"name": "Shieldon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"411": {
"name": "Bastiodon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"412": {
"name": "Burmy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"413": {
"name": "Wormadam",
"rarity": "",
"spawn_rate": "",
"types": []
},
"414": {
"name": "Mothim",
"rarity": "",
"spawn_rate": "",
"types": []
},
"415": {
"name": "Combee",
"rarity": "",
"spawn_rate": "",
"types": []
},
"416": {
"name": "Vespiquen",
"rarity": "",
"spawn_rate": "",
"types": []
},
"417": {
"name": "Pachirisu",
"rarity": "",
"spawn_rate": "",
"types": []
},
"418": {
"name": "Buizel",
"rarity": "",
"spawn_rate": "",
"types": []
},
"419": {
"name": "Floatzel",
"rarity": "",
"spawn_rate": "",
"types": []
},
"42": {
"family_id": 41,
"name": "Golbat",
"rarity": "Rare",
"spawn_rate": "209",
"types": [
{
"color": "#a040a0",
"type": "Poison"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"420": {
"name": "Cherubi",
"rarity": "",
"spawn_rate": "",
"types": []
},
"421": {
"name": "Cherrim",
"rarity": "",
"spawn_rate": "",
"types": []
},
"422": {
"name": "Shellos",
"rarity": "",
"spawn_rate": "",
"types": []
},
"423": {
"name": "Gastrodon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"424": {
"name": "Ambipom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"425": {
"name": "Drifloon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"426": {
"name": "Drifblim",
"rarity": "",
"spawn_rate": "",
"types": []
},
"427": {
"name": "Buneary",
"rarity": "",
"spawn_rate": "",
"types": []
},
"428": {
"name": "Lopunny",
"rarity": "",
"spawn_rate": "",
"types": []
},
"429": {
"name": "Mismagius",
"rarity": "",
"spawn_rate": "",
"types": []
},
"43": {
"evolution": {
"candies": 25,
"id": 44
},
"family_id": 43,
"name": "Oddish",
"rarity": "Uncommon",
"spawn_rate": "91",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"430": {
"name": "Honchkrow",
"rarity": "",
"spawn_rate": "",
"types": []
},
"431": {
"name": "Glameow",
"rarity": "",
"spawn_rate": "",
"types": []
},
"432": {
"name": "Purugly",
"rarity": "",
"spawn_rate": "",
"types": []
},
"433": {
"name": "Chingling",
"rarity": "",
"spawn_rate": "",
"types": []
},
"434": {
"name": "Stunky",
"rarity": "",
"spawn_rate": "",
"types": []
},
"435": {
"name": "Skuntank",
"rarity": "",
"spawn_rate": "",
"types": []
},
"436": {
"name": "Bronzor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"437": {
"name": "Bronzong",
"rarity": "",
"spawn_rate": "",
"types": []
},
"438": {
"name": "Bonsly",
"rarity": "",
"spawn_rate": "",
"types": []
},
"439": {
"name": "Mime Jr.",
"rarity": "",
"spawn_rate": "",
"types": []
},
"44": {
"evolution": {
"candies": 100,
"id": 45
},
"family_id": 43,
"name": "Gloom",
"rarity": "Very Rare",
"spawn_rate": "592",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"440": {
"name": "Happiny",
"rarity": "",
"spawn_rate": "",
"types": []
},
"441": {
"name": "Chatot",
"rarity": "",
"spawn_rate": "",
"types": []
},
"442": {
"name": "Spiritomb",
"rarity": "",
"spawn_rate": "",
"types": []
},
"443": {
"name": "Gible",
"rarity": "",
"spawn_rate": "",
"types": []
},
"444": {
"name": "Gabite",
"rarity": "",
"spawn_rate": "",
"types": []
},
"445": {
"name": "Garchomp",
"rarity": "",
"spawn_rate": "",
"types": []
},
"446": {
"name": "Munchlax",
"rarity": "",
"spawn_rate": "",
"types": []
},
"447": {
"name": "Riolu",
"rarity": "",
"spawn_rate": "",
"types": []
},
"448": {
"name": "Lucario",
"rarity": "",
"spawn_rate": "",
"types": []
},
"449": {
"name": "Hippopotas",
"rarity": "",
"spawn_rate": "",
"types": []
},
"45": {
"family_id": 43,
"name": "Vileplume",
"rarity": "Ultra Rare",
"spawn_rate": "1864",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"450": {
"name": "Hippowdon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"451": {
"name": "Skorupi",
"rarity": "",
"spawn_rate": "",
"types": []
},
"452": {
"name": "Drapion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"453": {
"name": "Croagunk",
"rarity": "",
"spawn_rate": "",
"types": []
},
"454": {
"name": "Toxicroak",
"rarity": "",
"spawn_rate": "",
"types": []
},
"455": {
"name": "Carnivine",
"rarity": "",
"spawn_rate": "",
"types": []
},
"456": {
"name": "Finneon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"457": {
"name": "Lumineon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"458": {
"name": "Mantyke",
"rarity": "",
"spawn_rate": "",
"types": []
},
"459": {
"name": "Snover",
"rarity": "",
"spawn_rate": "",
"types": []
},
"46": {
"evolution": {
"candies": 50,
"id": 47
},
"family_id": 46,
"name": "Paras",
"rarity": "Uncommon",
"spawn_rate": "44",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#78c850",
"type": "Grass"
}
]
},
"460": {
"name": "Abomasnow",
"rarity": "",
"spawn_rate": "",
"types": []
},
"461": {
"name": "Weavile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"462": {
"name": "Magnezone",
"rarity": "",
"spawn_rate": "",
"types": []
},
"463": {
"name": "Lickilicky",
"rarity": "",
"spawn_rate": "",
"types": []
},
"464": {
"name": "Rhyperior",
"rarity": "",
"spawn_rate": "",
"types": []
},
"465": {
"name": "Tangrowth",
"rarity": "",
"spawn_rate": "",
"types": []
},
"466": {
"name": "Electivire",
"rarity": "",
"spawn_rate": "",
"types": []
},
"467": {
"name": "Magmortar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"468": {
"name": "Togekiss",
"rarity": "",
"spawn_rate": "",
"types": []
},
"469": {
"name": "Yanmega",
"rarity": "",
"spawn_rate": "",
"types": []
},
"47": {
"family_id": 46,
"name": "Parasect",
"rarity": "Rare",
"spawn_rate": "397",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#78c850",
"type": "Grass"
}
]
},
"470": {
"name": "Leafeon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"471": {
"name": "Glaceon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"472": {
"name": "Gliscor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"473": {
"name": "Mamoswine",
"rarity": "",
"spawn_rate": "",
"types": []
},
"474": {
"name": "Porygon-Z",
"rarity": "",
"spawn_rate": "",
"types": []
},
"475": {
"name": "Gallade",
"rarity": "",
"spawn_rate": "",
"types": []
},
"476": {
"name": "Probopass",
"rarity": "",
"spawn_rate": "",
"types": []
},
"477": {
"name": "Dusknoir",
"rarity": "",
"spawn_rate": "",
"types": []
},
"478": {
"name": "Froslass",
"rarity": "",
"spawn_rate": "",
"types": []
},
"479": {
"name": "Rotom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"48": {
"evolution": {
"candies": 50,
"id": 49
},
"family_id": 48,
"name": "Venonat",
"rarity": "Uncommon",
"spawn_rate": "38",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"480": {
"name": "Uxie",
"rarity": "",
"spawn_rate": "",
"types": []
},
"481": {
"name": "Mesprit",
"rarity": "",
"spawn_rate": "",
"types": []
},
"482": {
"name": "Azelf",
"rarity": "",
"spawn_rate": "",
"types": []
},
"483": {
"name": "Dialga",
"rarity": "",
"spawn_rate": "",
"types": []
},
"484": {
"name": "Palkia",
"rarity": "",
"spawn_rate": "",
"types": []
},
"485": {
"name": "Heatran",
"rarity": "",
"spawn_rate": "",
"types": []
},
"486": {
"name": "Regigigas",
"rarity": "",
"spawn_rate": "",
"types": []
},
"487": {
"name": "Giratina",
"rarity": "",
"spawn_rate": "",
"types": []
},
"488": {
"name": "Cresselia",
"rarity": "",
"spawn_rate": "",
"types": []
},
"489": {
"name": "Phione",
"rarity": "",
"spawn_rate": "",
"types": []
},
"49": {
"family_id": 48,
"name": "Venomoth",
"rarity": "Rare",
"spawn_rate": "300",
"types": [
{
"color": "#a8b820",
"type": "Bug"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"490": {
"name": "Manaphy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"491": {
"name": "Darkrai",
"rarity": "",
"spawn_rate": "",
"types": []
},
"492": {
"name": "Shaymin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"493": {
"name": "Arceus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"494": {
"name": "Victini",
"rarity": "",
"spawn_rate": "",
"types": []
},
"495": {
"name": "Snivy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"496": {
"name": "Servine",
"rarity": "",
"spawn_rate": "",
"types": []
},
"497": {
"name": "Serperior",
"rarity": "",
"spawn_rate": "",
"types": []
},
"498": {
"name": "Tepig",
"rarity": "",
"spawn_rate": "",
"types": []
},
"499": {
"name": "Pignite",
"rarity": "",
"spawn_rate": "",
"types": []
},
"5": {
"evolution": {
"candies": 100,
"id": 6
},
"family_id": 4,
"name": "Charmeleon",
"rarity": "Very Rare",
"spawn_rate": "1025",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"50": {
"evolution": {
"candies": 50,
"id": 51
},
"family_id": 50,
"name": "Diglett",
"rarity": "Rare",
"spawn_rate": "211",
"types": [
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"500": {
"name": "Emboar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"501": {
"name": "Oshawott",
"rarity": "",
"spawn_rate": "",
"types": []
},
"502": {
"name": "Dewott",
"rarity": "",
"spawn_rate": "",
"types": []
},
"503": {
"name": "Samurott",
"rarity": "",
"spawn_rate": "",
"types": []
},
"504": {
"name": "Patrat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"505": {
"name": "Watchog",
"rarity": "",
"spawn_rate": "",
"types": []
},
"506": {
"name": "Lillipup",
"rarity": "",
"spawn_rate": "",
"types": []
},
"507": {
"name": "Herdier",
"rarity": "",
"spawn_rate": "",
"types": []
},
"508": {
"name": "Stoutland",
"rarity": "",
"spawn_rate": "",
"types": []
},
"509": {
"name": "Purrloin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"51": {
"family_id": 50,
"name": "Dugtrio",
"rarity": "Ultra Rare",
"spawn_rate": "1663",
"types": [
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"510": {
"name": "Liepard",
"rarity": "",
"spawn_rate": "",
"types": []
},
"511": {
"name": "Pansage",
"rarity": "",
"spawn_rate": "",
"types": []
},
"512": {
"name": "Simisage",
"rarity": "",
"spawn_rate": "",
"types": []
},
"513": {
"name": "Pansear",
"rarity": "",
"spawn_rate": "",
"types": []
},
"514": {
"name": "Simisear",
"rarity": "",
"spawn_rate": "",
"types": []
},
"515": {
"name": "Panpour",
"rarity": "",
"spawn_rate": "",
"types": []
},
"516": {
"name": "Simipour",
"rarity": "",
"spawn_rate": "",
"types": []
},
"517": {
"name": "Munna",
"rarity": "",
"spawn_rate": "",
"types": []
},
"518": {
"name": "Musharna",
"rarity": "",
"spawn_rate": "",
"types": []
},
"519": {
"name": "Pidove",
"rarity": "",
"spawn_rate": "",
"types": []
},
"52": {
"evolution": {
"candies": 50,
"id": 53
},
"family_id": 52,
"name": "Meowth",
"rarity": "Rare",
"spawn_rate": "106",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"520": {
"name": "Tranquill",
"rarity": "",
"spawn_rate": "",
"types": []
},
"521": {
"name": "Unfezant",
"rarity": "",
"spawn_rate": "",
"types": []
},
"522": {
"name": "Blitzle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"523": {
"name": "Zebstrika",
"rarity": "",
"spawn_rate": "",
"types": []
},
"524": {
"name": "Roggenrola",
"rarity": "",
"spawn_rate": "",
"types": []
},
"525": {
"name": "Boldore",
"rarity": "",
"spawn_rate": "",
"types": []
},
"526": {
"name": "Gigalith",
"rarity": "",
"spawn_rate": "",
"types": []
},
"527": {
"name": "Woobat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"528": {
"name": "Swoobat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"529": {
"name": "Drilbur",
"rarity": "",
"spawn_rate": "",
"types": []
},
"53": {
"family_id": 52,
"name": "Persian",
"rarity": "Very Rare",
"spawn_rate": "1282",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
}
]
},
"530": {
"name": "Excadrill",
"rarity": "",
"spawn_rate": "",
"types": []
},
"531": {
"name": "Audino",
"rarity": "",
"spawn_rate": "",
"types": []
},
"532": {
"name": "Timburr",
"rarity": "",
"spawn_rate": "",
"types": []
},
"533": {
"name": "Gurdurr",
"rarity": "",
"spawn_rate": "",
"types": []
},
"534": {
"name": "Conkeldurr",
"rarity": "",
"spawn_rate": "",
"types": []
},
"535": {
"name": "Tympole",
"rarity": "",
"spawn_rate": "",
"types": []
},
"536": {
"name": "Palpitoad",
"rarity": "",
"spawn_rate": "",
"types": []
},
"537": {
"name": "Seismitoad",
"rarity": "",
"spawn_rate": "",
"types": []
},
"538": {
"name": "Throh",
"rarity": "",
"spawn_rate": "",
"types": []
},
"539": {
"name": "Sawk",
"rarity": "",
"spawn_rate": "",
"types": []
},
"54": {
"evolution": {
"candies": 50,
"id": 55
},
"family_id": 54,
"name": "Psyduck",
"rarity": "Rare",
"spawn_rate": "108",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"540": {
"name": "Sewaddle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"541": {
"name": "Swadloon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"542": {
"name": "Leavanny",
"rarity": "",
"spawn_rate": "",
"types": []
},
"543": {
"name": "Venipede",
"rarity": "",
"spawn_rate": "",
"types": []
},
"544": {
"name": "Whirlipede",
"rarity": "",
"spawn_rate": "",
"types": []
},
"545": {
"name": "Scolipede",
"rarity": "",
"spawn_rate": "",
"types": []
},
"546": {
"name": "Cottonee",
"rarity": "",
"spawn_rate": "",
"types": []
},
"547": {
"name": "Whimsicott",
"rarity": "",
"spawn_rate": "",
"types": []
},
"548": {
"name": "Petilil",
"rarity": "",
"spawn_rate": "",
"types": []
},
"549": {
"name": "Lilligant",
"rarity": "",
"spawn_rate": "",
"types": []
},
"55": {
"family_id": 54,
"name": "Golduck",
"rarity": "Very Rare",
"spawn_rate": "707",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"550": {
"name": "Basculin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"551": {
"name": "Sandile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"552": {
"name": "Krokorok",
"rarity": "",
"spawn_rate": "",
"types": []
},
"553": {
"name": "Krookodile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"554": {
"name": "Darumaka",
"rarity": "",
"spawn_rate": "",
"types": []
},
"555": {
"name": "Darmanitan",
"rarity": "",
"spawn_rate": "",
"types": []
},
"556": {
"name": "Maractus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"557": {
"name": "Dwebble",
"rarity": "",
"spawn_rate": "",
"types": []
},
"558": {
"name": "Crustle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"559": {
"name": "Scraggy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"56": {
"evolution": {
"candies": 50,
"id": 57
},
"family_id": 56,
"name": "Mankey",
"rarity": "Rare",
"spawn_rate": "114",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"560": {
"name": "Scrafty",
"rarity": "",
"spawn_rate": "",
"types": []
},
"561": {
"name": "Sigilyph",
"rarity": "",
"spawn_rate": "",
"types": []
},
"562": {
"name": "Yamask",
"rarity": "",
"spawn_rate": "",
"types": []
},
"563": {
"name": "Cofagrigus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"564": {
"name": "Tirtouga",
"rarity": "",
"spawn_rate": "",
"types": []
},
"565": {
"name": "Carracosta",
"rarity": "",
"spawn_rate": "",
"types": []
},
"566": {
"name": "Archen",
"rarity": "",
"spawn_rate": "",
"types": []
},
"567": {
"name": "Archeops",
"rarity": "",
"spawn_rate": "",
"types": []
},
"568": {
"name": "Trubbish",
"rarity": "",
"spawn_rate": "",
"types": []
},
"569": {
"name": "Garbodor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"57": {
"family_id": 56,
"name": "Primeape",
"rarity": "Very Rare",
"spawn_rate": "1061",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"570": {
"name": "Zorua",
"rarity": "",
"spawn_rate": "",
"types": []
},
"571": {
"name": "Zoroark",
"rarity": "",
"spawn_rate": "",
"types": []
},
"572": {
"name": "Minccino",
"rarity": "",
"spawn_rate": "",
"types": []
},
"573": {
"name": "Cinccino",
"rarity": "",
"spawn_rate": "",
"types": []
},
"574": {
"name": "Gothita",
"rarity": "",
"spawn_rate": "",
"types": []
},
"575": {
"name": "Gothorita",
"rarity": "",
"spawn_rate": "",
"types": []
},
"576": {
"name": "Gothitelle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"577": {
"name": "Solosis",
"rarity": "",
"spawn_rate": "",
"types": []
},
"578": {
"name": "Duosion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"579": {
"name": "Reuniclus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"58": {
"evolution": {
"candies": 50,
"id": 59
},
"family_id": 58,
"name": "Growlithe",
"rarity": "Uncommon",
"spawn_rate": "77",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"580": {
"name": "Ducklett",
"rarity": "",
"spawn_rate": "",
"types": []
},
"581": {
"name": "Swanna",
"rarity": "",
"spawn_rate": "",
"types": []
},
"582": {
"name": "Vanillite",
"rarity": "",
"spawn_rate": "",
"types": []
},
"583": {
"name": "Vanillish",
"rarity": "",
"spawn_rate": "",
"types": []
},
"584": {
"name": "Vanilluxe",
"rarity": "",
"spawn_rate": "",
"types": []
},
"585": {
"name": "Deerling",
"rarity": "",
"spawn_rate": "",
"types": []
},
"586": {
"name": "Sawsbuck",
"rarity": "",
"spawn_rate": "",
"types": []
},
"587": {
"name": "Emolga",
"rarity": "",
"spawn_rate": "",
"types": []
},
"588": {
"name": "Karrablast",
"rarity": "",
"spawn_rate": "",
"types": []
},
"589": {
"name": "Escavalier",
"rarity": "",
"spawn_rate": "",
"types": []
},
"59": {
"family_id": 58,
"name": "Arcanine",
"rarity": "Very Rare",
"spawn_rate": "932",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"590": {
"name": "Foongus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"591": {
"name": "Amoonguss",
"rarity": "",
"spawn_rate": "",
"types": []
},
"592": {
"name": "Frillish",
"rarity": "",
"spawn_rate": "",
"types": []
},
"593": {
"name": "Jellicent",
"rarity": "",
"spawn_rate": "",
"types": []
},
"594": {
"name": "Alomomola",
"rarity": "",
"spawn_rate": "",
"types": []
},
"595": {
"name": "Joltik",
"rarity": "",
"spawn_rate": "",
"types": []
},
"596": {
"name": "Galvantula",
"rarity": "",
"spawn_rate": "",
"types": []
},
"597": {
"name": "Ferroseed",
"rarity": "",
"spawn_rate": "",
"types": []
},
"598": {
"name": "Ferrothorn",
"rarity": "",
"spawn_rate": "",
"types": []
},
"599": {
"name": "Klink",
"rarity": "",
"spawn_rate": "",
"types": []
},
"6": {
"family_id": 4,
"name": "Charizard",
"rarity": "Very Rare",
"spawn_rate": "879",
"types": [
{
"color": "#f08030",
"type": "Fire"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"60": {
"evolution": {
"candies": 25,
"id": 61
},
"family_id": 60,
"name": "Poliwag",
"rarity": "Uncommon",
"spawn_rate": "95",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"600": {
"name": "Klang",
"rarity": "",
"spawn_rate": "",
"types": []
},
"601": {
"name": "Klinklang",
"rarity": "",
"spawn_rate": "",
"types": []
},
"602": {
"name": "Tynamo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"603": {
"name": "Eelektrik",
"rarity": "",
"spawn_rate": "",
"types": []
},
"604": {
"name": "Eelektross",
"rarity": "",
"spawn_rate": "",
"types": []
},
"605": {
"name": "Elgyem",
"rarity": "",
"spawn_rate": "",
"types": []
},
"606": {
"name": "Beheeyem",
"rarity": "",
"spawn_rate": "",
"types": []
},
"607": {
"name": "Litwick",
"rarity": "",
"spawn_rate": "",
"types": []
},
"608": {
"name": "Lampent",
"rarity": "",
"spawn_rate": "",
"types": []
},
"609": {
"name": "Chandelure",
"rarity": "",
"spawn_rate": "",
"types": []
},
"61": {
"evolution": {
"candies": 100,
"id": 62
},
"family_id": 60,
"name": "Poliwhirl",
"rarity": "Rare",
"spawn_rate": "481",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"610": {
"name": "Axew",
"rarity": "",
"spawn_rate": "",
"types": []
},
"611": {
"name": "Fraxure",
"rarity": "",
"spawn_rate": "",
"types": []
},
"612": {
"name": "Haxorus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"613": {
"name": "Cubchoo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"614": {
"name": "Beartic",
"rarity": "",
"spawn_rate": "",
"types": []
},
"615": {
"name": "Cryogonal",
"rarity": "",
"spawn_rate": "",
"types": []
},
"616": {
"name": "Shelmet",
"rarity": "",
"spawn_rate": "",
"types": []
},
"617": {
"name": "Accelgor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"618": {
"name": "Stunfisk",
"rarity": "",
"spawn_rate": "",
"types": []
},
"619": {
"name": "Mienfoo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"62": {
"family_id": 60,
"name": "Poliwrath",
"rarity": "Ultra Rare",
"spawn_rate": "1709",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"620": {
"name": "Mienshao",
"rarity": "",
"spawn_rate": "",
"types": []
},
"621": {
"name": "Druddigon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"622": {
"name": "Golett",
"rarity": "",
"spawn_rate": "",
"types": []
},
"623": {
"name": "Golurk",
"rarity": "",
"spawn_rate": "",
"types": []
},
"624": {
"name": "Pawniard",
"rarity": "",
"spawn_rate": "",
"types": []
},
"625": {
"name": "Bisharp",
"rarity": "",
"spawn_rate": "",
"types": []
},
"626": {
"name": "Bouffalant",
"rarity": "",
"spawn_rate": "",
"types": []
},
"627": {
"name": "Rufflet",
"rarity": "",
"spawn_rate": "",
"types": []
},
"628": {
"name": "Braviary",
"rarity": "",
"spawn_rate": "",
"types": []
},
"629": {
"name": "Vullaby",
"rarity": "",
"spawn_rate": "",
"types": []
},
"63": {
"evolution": {
"candies": 25,
"id": 64
},
"family_id": 63,
"name": "Abra",
"rarity": "Rare",
"spawn_rate": "104",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"630": {
"name": "Mandibuzz",
"rarity": "",
"spawn_rate": "",
"types": []
},
"631": {
"name": "Heatmor",
"rarity": "",
"spawn_rate": "",
"types": []
},
"632": {
"name": "Durant",
"rarity": "",
"spawn_rate": "",
"types": []
},
"633": {
"name": "Deino",
"rarity": "",
"spawn_rate": "",
"types": []
},
"634": {
"name": "Zweilous",
"rarity": "",
"spawn_rate": "",
"types": []
},
"635": {
"name": "Hydreigon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"636": {
"name": "Larvesta",
"rarity": "",
"spawn_rate": "",
"types": []
},
"637": {
"name": "Volcarona",
"rarity": "",
"spawn_rate": "",
"types": []
},
"638": {
"name": "Cobalion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"639": {
"name": "Terrakion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"64": {
"evolution": {
"candies": 100,
"id": 65
},
"family_id": 63,
"name": "Kadabra",
"rarity": "Very Rare",
"spawn_rate": "779",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"640": {
"name": "Virizion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"641": {
"name": "Tornadus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"642": {
"name": "Thundurus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"643": {
"name": "Reshiram",
"rarity": "",
"spawn_rate": "",
"types": []
},
"644": {
"name": "Zekrom",
"rarity": "",
"spawn_rate": "",
"types": []
},
"645": {
"name": "Landorus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"646": {
"name": "Kyurem",
"rarity": "",
"spawn_rate": "",
"types": []
},
"647": {
"name": "Keldeo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"648": {
"name": "Meloetta",
"rarity": "",
"spawn_rate": "",
"types": []
},
"649": {
"name": "Genesect",
"rarity": "",
"spawn_rate": "",
"types": []
},
"65": {
"family_id": 63,
"name": "Alakazam",
"rarity": "Ultra Rare",
"spawn_rate": "2461",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"650": {
"name": "Chespin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"651": {
"name": "Quilladin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"652": {
"name": "Chesnaught",
"rarity": "",
"spawn_rate": "",
"types": []
},
"653": {
"name": "Fennekin",
"rarity": "",
"spawn_rate": "",
"types": []
},
"654": {
"name": "Braixen",
"rarity": "",
"spawn_rate": "",
"types": []
},
"655": {
"name": "Delphox",
"rarity": "",
"spawn_rate": "",
"types": []
},
"656": {
"name": "Froakie",
"rarity": "",
"spawn_rate": "",
"types": []
},
"657": {
"name": "Frogadier",
"rarity": "",
"spawn_rate": "",
"types": []
},
"658": {
"name": "Greninja",
"rarity": "",
"spawn_rate": "",
"types": []
},
"659": {
"name": "Bunnelby",
"rarity": "",
"spawn_rate": "",
"types": []
},
"66": {
"evolution": {
"candies": 25,
"id": 67
},
"family_id": 66,
"name": "Machop",
"rarity": "Rare",
"spawn_rate": "217",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"660": {
"name": "Diggersby",
"rarity": "",
"spawn_rate": "",
"types": []
},
"661": {
"name": "Fletchling",
"rarity": "",
"spawn_rate": "",
"types": []
},
"662": {
"name": "Fletchinder",
"rarity": "",
"spawn_rate": "",
"types": []
},
"663": {
"name": "Talonflame",
"rarity": "",
"spawn_rate": "",
"types": []
},
"664": {
"name": "Scatterbug",
"rarity": "",
"spawn_rate": "",
"types": []
},
"665": {
"name": "Spewpa",
"rarity": "",
"spawn_rate": "",
"types": []
},
"666": {
"name": "Vivillon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"667": {
"name": "Litleo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"668": {
"name": "Pyroar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"669": {
"name": "Flab\u00e9b\u00e9",
"rarity": "",
"spawn_rate": "",
"types": []
},
"67": {
"evolution": {
"candies": 100,
"id": 68
},
"family_id": 66,
"name": "Machoke",
"rarity": "Very Rare",
"spawn_rate": "1465",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"670": {
"name": "Floette",
"rarity": "",
"spawn_rate": "",
"types": []
},
"671": {
"name": "Florges",
"rarity": "",
"spawn_rate": "",
"types": []
},
"672": {
"name": "Skiddo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"673": {
"name": "Gogoat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"674": {
"name": "Pancham",
"rarity": "",
"spawn_rate": "",
"types": []
},
"675": {
"name": "Pangoro",
"rarity": "",
"spawn_rate": "",
"types": []
},
"676": {
"name": "Furfrou",
"rarity": "",
"spawn_rate": "",
"types": []
},
"677": {
"name": "Espurr",
"rarity": "",
"spawn_rate": "",
"types": []
},
"678": {
"name": "Meowstic",
"rarity": "",
"spawn_rate": "",
"types": []
},
"679": {
"name": "Honedge",
"rarity": "",
"spawn_rate": "",
"types": []
},
"68": {
"family_id": 66,
"name": "Machamp",
"rarity": "Ultra Rare",
"spawn_rate": "3418",
"types": [
{
"color": "#c03028",
"type": "Fighting"
}
]
},
"680": {
"name": "Doublade",
"rarity": "",
"spawn_rate": "",
"types": []
},
"681": {
"name": "Aegislash",
"rarity": "",
"spawn_rate": "",
"types": []
},
"682": {
"name": "Spritzee",
"rarity": "",
"spawn_rate": "",
"types": []
},
"683": {
"name": "Aromatisse",
"rarity": "",
"spawn_rate": "",
"types": []
},
"684": {
"name": "Swirlix",
"rarity": "",
"spawn_rate": "",
"types": []
},
"685": {
"name": "Slurpuff",
"rarity": "",
"spawn_rate": "",
"types": []
},
"686": {
"name": "Inkay",
"rarity": "",
"spawn_rate": "",
"types": []
},
"687": {
"name": "Malamar",
"rarity": "",
"spawn_rate": "",
"types": []
},
"688": {
"name": "Binacle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"689": {
"name": "Barbaracle",
"rarity": "",
"spawn_rate": "",
"types": []
},
"69": {
"evolution": {
"candies": 25,
"id": 70
},
"family_id": 69,
"name": "Bellsprout",
"rarity": "Uncommon",
"spawn_rate": "86",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"690": {
"name": "Skrelp",
"rarity": "",
"spawn_rate": "",
"types": []
},
"691": {
"name": "Dragalge",
"rarity": "",
"spawn_rate": "",
"types": []
},
"692": {
"name": "Clauncher",
"rarity": "",
"spawn_rate": "",
"types": []
},
"693": {
"name": "Clawitzer",
"rarity": "",
"spawn_rate": "",
"types": []
},
"694": {
"name": "Helioptile",
"rarity": "",
"spawn_rate": "",
"types": []
},
"695": {
"name": "Heliolisk",
"rarity": "",
"spawn_rate": "",
"types": []
},
"696": {
"name": "Tyrunt",
"rarity": "",
"spawn_rate": "",
"types": []
},
"697": {
"name": "Tyrantrum",
"rarity": "",
"spawn_rate": "",
"types": []
},
"698": {
"name": "Amaura",
"rarity": "",
"spawn_rate": "",
"types": []
},
"699": {
"name": "Aurorus",
"rarity": "",
"spawn_rate": "",
"types": []
},
"7": {
"evolution": {
"candies": 25,
"id": 8
},
"family_id": 7,
"name": "Squirtle",
"rarity": "Uncommon",
"spawn_rate": "65",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"70": {
"evolution": {
"candies": 100,
"id": 71
},
"family_id": 69,
"name": "Weepinbell",
"rarity": "Rare",
"spawn_rate": "496",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"700": {
"name": "Sylveon",
"rarity": "",
"spawn_rate": "",
"types": []
},
"701": {
"name": "Hawlucha",
"rarity": "",
"spawn_rate": "",
"types": []
},
"702": {
"name": "Dedenne",
"rarity": "",
"spawn_rate": "",
"types": []
},
"703": {
"name": "Carbink",
"rarity": "",
"spawn_rate": "",
"types": []
},
"704": {
"name": "Goomy",
"rarity": "",
"spawn_rate": "",
"types": []
},
"705": {
"name": "Sliggoo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"706": {
"name": "Goodra",
"rarity": "",
"spawn_rate": "",
"types": []
},
"707": {
"name": "Klefki",
"rarity": "",
"spawn_rate": "",
"types": []
},
"708": {
"name": "Phantump",
"rarity": "",
"spawn_rate": "",
"types": []
},
"709": {
"name": "Trevenant",
"rarity": "",
"spawn_rate": "",
"types": []
},
"71": {
"family_id": 69,
"name": "Victreebel",
"rarity": "Ultra Rare",
"spawn_rate": "2051",
"types": [
{
"color": "#78c850",
"type": "Grass"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"710": {
"name": "Pumpkaboo",
"rarity": "",
"spawn_rate": "",
"types": []
},
"711": {
"name": "Gourgeist",
"rarity": "",
"spawn_rate": "",
"types": []
},
"712": {
"name": "Bergmite",
"rarity": "",
"spawn_rate": "",
"types": []
},
"713": {
"name": "Avalugg",
"rarity": "",
"spawn_rate": "",
"types": []
},
"714": {
"name": "Noibat",
"rarity": "",
"spawn_rate": "",
"types": []
},
"715": {
"name": "Noivern",
"rarity": "",
"spawn_rate": "",
"types": []
},
"716": {
"name": "Xerneas",
"rarity": "",
"spawn_rate": "",
"types": []
},
"717": {
"name": "Yveltal",
"rarity": "",
"spawn_rate": "",
"types": []
},
"718": {
"name": "Zygarde",
"rarity": "",
"spawn_rate": "",
"types": []
},
"719": {
"name": "Diancie",
"rarity": "",
"spawn_rate": "",
"types": []
},
"72": {
"evolution": {
"candies": 50,
"id": 73
},
"family_id": 72,
"name": "Tentacool",
"rarity": "Rare",
"spawn_rate": "275",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"720": {
"name": "Hoopa",
"rarity": "",
"spawn_rate": "",
"types": []
},
"721": {
"name": "Volcanion",
"rarity": "",
"spawn_rate": "",
"types": []
},
"73": {
"family_id": 72,
"name": "Tentacruel",
"rarity": "Very Rare",
"spawn_rate": "615",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"74": {
"evolution": {
"candies": 25,
"id": 75
},
"family_id": 74,
"name": "Geodude",
"rarity": "Rare",
"spawn_rate": "121",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"75": {
"evolution": {
"candies": 100,
"id": 76
},
"family_id": 74,
"name": "Graveler",
"rarity": "Very Rare",
"spawn_rate": "707",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"76": {
"family_id": 74,
"name": "Golem",
"rarity": "Ultra Rare",
"spawn_rate": "2797",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"77": {
"evolution": {
"candies": 50,
"id": 78
},
"family_id": 77,
"name": "Ponyta",
"rarity": "Rare",
"spawn_rate": "121",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"78": {
"family_id": 77,
"name": "Rapidash",
"rarity": "Very Rare",
"spawn_rate": "992",
"types": [
{
"color": "#f08030",
"type": "Fire"
}
]
},
"79": {
"evolution": {
"candies": 50,
"id": 80
},
"family_id": 79,
"name": "Slowpoke",
"rarity": "Rare",
"spawn_rate": "175",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"8": {
"evolution": {
"candies": 100,
"id": 9
},
"family_id": 7,
"name": "Wartortle",
"rarity": "Rare",
"spawn_rate": "484",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"80": {
"family_id": 79,
"name": "Slowbro",
"rarity": "Very Rare",
"spawn_rate": "947",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"81": {
"evolution": {
"candies": 50,
"id": 82
},
"family_id": 81,
"name": "Magnemite",
"rarity": "Rare",
"spawn_rate": "200",
"types": [
{
"color": "#f8d030",
"type": "Electric"
},
{
"color": "#b8b8d0",
"type": "Steel"
}
]
},
"82": {
"family_id": 81,
"name": "Magneton",
"rarity": "Ultra Rare",
"spawn_rate": "2051",
"types": [
{
"color": "#f8d030",
"type": "Electric"
},
{
"color": "#b8b8d0",
"type": "Steel"
}
]
},
"83": {
"family_id": 83,
"name": "Farfetch'd",
"rarity": "Ultra Rare",
"spawn_rate": "61527",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"84": {
"evolution": {
"candies": 50,
"id": 85
},
"family_id": 84,
"name": "Doduo",
"rarity": "Uncommon",
"spawn_rate": "77",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"85": {
"family_id": 84,
"name": "Dodrio",
"rarity": "Very Rare",
"spawn_rate": "634",
"types": [
{
"color": "#8a8a59",
"type": "Normal"
},
{
"color": "#a890f0",
"type": "Flying"
}
]
},
"86": {
"evolution": {
"candies": 50,
"id": 87
},
"family_id": 86,
"name": "Seel",
"rarity": "Rare",
"spawn_rate": "196",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"87": {
"family_id": 86,
"name": "Dewgong",
"rarity": "Ultra Rare",
"spawn_rate": "1578",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#98d8d8",
"type": "Ice"
}
]
},
"88": {
"evolution": {
"candies": 50,
"id": 89
},
"family_id": 88,
"name": "Grimer",
"rarity": "Very Rare",
"spawn_rate": "879",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"89": {
"family_id": 88,
"name": "Muk",
"rarity": "Ultra Rare",
"spawn_rate": "7691",
"types": [
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"9": {
"family_id": 7,
"name": "Blastoise",
"rarity": "Very Rare",
"spawn_rate": "843",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"90": {
"evolution": {
"candies": 50,
"id": 91
},
"family_id": 90,
"name": "Shellder",
"rarity": "Rare",
"spawn_rate": "177",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"91": {
"family_id": 90,
"name": "Cloyster",
"rarity": "Ultra Rare",
"spawn_rate": "1578",
"types": [
{
"color": "#6890f0",
"type": "Water"
},
{
"color": "#98d8d8",
"type": "Ice"
}
]
},
"92": {
"evolution": {
"candies": 25,
"id": 93
},
"family_id": 92,
"name": "Gastly",
"rarity": "Uncommon",
"spawn_rate": "77",
"types": [
{
"color": "#705898",
"type": "Ghost"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"93": {
"evolution": {
"candies": 100,
"id": 94
},
"family_id": 92,
"name": "Haunter",
"rarity": "Rare",
"spawn_rate": "419",
"types": [
{
"color": "#705898",
"type": "Ghost"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"94": {
"family_id": 92,
"name": "Gengar",
"rarity": "Ultra Rare",
"spawn_rate": "1758",
"types": [
{
"color": "#705898",
"type": "Ghost"
},
{
"color": "#a040a0",
"type": "Poison"
}
]
},
"95": {
"family_id": 95,
"name": "Onix",
"rarity": "Rare",
"spawn_rate": "269",
"types": [
{
"color": "#b8a038",
"type": "Rock"
},
{
"color": "#e0c068",
"type": "Ground"
}
]
},
"96": {
"evolution": {
"candies": 50,
"id": 97
},
"family_id": 96,
"name": "Drowzee",
"rarity": "Uncommon",
"spawn_rate": "39",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"97": {
"family_id": 96,
"name": "Hypno",
"rarity": "Rare",
"spawn_rate": "322",
"types": [
{
"color": "#f85888",
"type": "Psychic"
}
]
},
"98": {
"evolution": {
"candies": 50,
"id": 99
},
"family_id": 98,
"name": "Krabby",
"rarity": "Uncommon",
"spawn_rate": "73",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
},
"99": {
"family_id": 98,
"name": "Kingler",
"rarity": "Very Rare",
"spawn_rate": "530",
"types": [
{
"color": "#6890f0",
"type": "Water"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment