From dd56846624165b6085db2326516c5ae6092ddf77 Mon Sep 17 00:00:00 2001 From: Mygod Date: Wed, 19 Nov 2025 12:12:56 -0800 Subject: [PATCH] Centralize masterfile --- decoder/main.go | 36 +- decoder/masterfile.go | 255 + decoder/weather_iv.go | 151 +- main.go | 29 +- pogo/master-latest-basics.json | 8643 ++++++++++++++++++++++++++++---- pogo/master-latest-rdm.json | 1 - 6 files changed, 7833 insertions(+), 1282 deletions(-) create mode 100644 decoder/masterfile.go delete mode 100644 pogo/master-latest-rdm.json diff --git a/decoder/main.go b/decoder/main.go index 42ec4c1b..f81c53c3 100644 --- a/decoder/main.go +++ b/decoder/main.go @@ -222,7 +222,7 @@ func InitialiseOhbem() { } gohbemLogger := &gohbemLogger{} - cacheFileLocation := "cache/master-latest-basics.json" + cacheFileLocation := masterFileCachePath o := &gohbem.Ohbem{Leagues: leagues, LevelCaps: config.Config.Pvp.LevelCaps, IncludeHundosUnderCap: config.Config.Pvp.IncludeHundosUnderCap, MasterFileCachePath: cacheFileLocation, Logger: gohbemLogger} @@ -235,25 +235,35 @@ func InitialiseOhbem() { o.RankingComparator = gohbem.RankingComparatorDefault } - if err := o.FetchPokemonData(); err != nil { - if err2 := o.LoadPokemonData(cacheFileLocation); err2 != nil { - _ = o.LoadPokemonData("pogo/master-latest-basics.json") - log.Errorf("ohbem.FetchPokemonData failed. ohbem.LoadPokemonData from cache failed: %s. Loading from pogo/master-latest-basics.json instead.", err2) - } else { - log.Warnf("ohbem.FetchPokemonData failed, loaded from cache: %s", err) + if err := o.LoadPokemonData(cacheFileLocation); err != nil { + log.Warnf("ohbem.LoadPokemonData from cache failed: %v", err) + if errFetch := o.FetchPokemonData(); errFetch != nil { + log.Warnf("ohbem.FetchPokemonData failed: %v", errFetch) + if errFallback := o.LoadPokemonData("pogo/master-latest-basics.json"); errFallback != nil { + log.Errorf("ohbem.LoadPokemonData from fallback failed: %v", errFallback) + return + } + log.Warnf("ohbem.LoadPokemonData loaded from pogo/master-latest-basics.json instead.") + } else if errSave := o.SavePokemonData(cacheFileLocation); errSave != nil { + log.Warnf("ohbem.SavePokemonData to cache failed: %v", errSave) } } - if o.PokemonData.Initialized == true { - _ = o.SavePokemonData(cacheFileLocation) - } - - _ = o.WatchPokemonData() - ohbem = o } } +func reloadOhbemFromMasterFile() { + if ohbem == nil { + return + } + if err := ohbem.LoadPokemonData(masterFileCachePath); err != nil { + log.Warnf("ohbem reload from MasterFile failed: %v", err) + } else { + log.Infof("ohbem reloaded from MasterFile cache") + } +} + func ClearPokestopCache() { pokestopCache.DeleteAll() } diff --git a/decoder/masterfile.go b/decoder/masterfile.go new file mode 100644 index 00000000..fb375ac1 --- /dev/null +++ b/decoder/masterfile.go @@ -0,0 +1,255 @@ +package decoder + +import ( + "bytes" + "encoding/json" + "errors" + "fmt" + "io" + "net/http" + "os" + "strconv" + "sync" + "time" + + log "github.com/sirupsen/logrus" +) + +const masterFileURL = "https://raw.githubusercontent.com/WatWowMap/Masterfile-Generator/master/master-latest-basics.json" + +var masterFileCachePath = "cache/master-latest-basics.json" +var masterFileHTTPClient = &http.Client{ + Timeout: 15 * time.Second, +} + +var ( + errMasterFileFetch = errors.New("can't fetch remote MasterFile") + errMasterFileOpen = errors.New("can't open MasterFile") + errMasterFileUnmarshall = errors.New("can't unmarshall MasterFile") + errMasterFileMarshall = errors.New("can't marshall MasterFile") + errMasterFileSave = errors.New("can't save MasterFile") +) + +type MasterFileData struct { + Initialized bool `json:"-"` + Pokemon map[int]MasterFilePokemon `json:"pokemon"` + Costumes map[int]bool `json:"costumes"` +} + +type MasterFilePokemon struct { + Name string `json:"name"` + Types []int `json:"types"` + Forms map[int]MasterFileForm `json:"forms"` +} + +type MasterFileForm struct { + Types []int `json:"types"` +} + +type rawMasterFile struct { + Pokemon map[string]rawMasterFilePokemon `json:"pokemon"` + Costumes map[string]json.RawMessage `json:"costumes"` +} + +type rawMasterFilePokemon struct { + Name string `json:"name,omitempty"` + Types []int `json:"types"` + Forms map[string]rawMasterFilePokemonForm `json:"forms"` +} + +type rawMasterFilePokemonForm struct { + Types []int `json:"types"` +} + +var ( + watcherChan chan bool + masterFileMu sync.RWMutex + masterFileRaw []byte + masterFileData MasterFileData +) + +func EnsureMasterFileData() error { + if err := FetchMasterFileData(); err != nil { + log.Warnf("MasterFile fetch failed: %v", err) + if err2 := LoadMasterFileData(""); err2 != nil { + log.Warnf("Loading MasterFile from cache failed: %v", err2) + if err3 := LoadMasterFileData("pogo/master-latest-basics.json"); err3 != nil { + return fmt.Errorf("masterfile unavailable (fetch: %w, cache: %v, fallback: %v)", err, err2, err3) + } + log.Warnf("Loaded MasterFile from bundled fallback") + } else { + log.Warnf("Loaded MasterFile from cache") + } + } else { + log.Infof("MasterFile fetched successfully") + if err := SaveMasterFileData(); err != nil { + log.Warnf("Storing MasterFile cache under %s has failed: %v", masterFileCachePath, err) + } + } + return nil +} + +// FetchMasterFileData downloads and loads the remote masterfile. +func FetchMasterFileData() error { + data, err := downloadMasterFile() + if err != nil { + return err + } + return loadMasterFileBytes(data) +} + +// LoadMasterFileData loads the masterfile from disk. +func LoadMasterFileData(filePath string) error { + if filePath == "" { + filePath = masterFileCachePath + } + data, err := os.ReadFile(filePath) + if err != nil { + return errMasterFileOpen + } + return loadMasterFileBytes(data) +} + +// SaveMasterFileData writes the raw masterfile to cache. +func SaveMasterFileData() error { + masterFileMu.RLock() + if len(masterFileRaw) == 0 { + masterFileMu.RUnlock() + return errMasterFileMarshall + } + raw := make([]byte, len(masterFileRaw)) + copy(raw, masterFileRaw) + masterFileMu.RUnlock() + + if err := os.WriteFile(masterFileCachePath, raw, 0644); err != nil { + return errMasterFileSave + } + return nil +} + +func WatchMasterFileData() error { + if watcherChan != nil { + return errors.New("MasterFile watcher is already running") + } + + log.Infof("MasterFile watcher started") + watcherChan = make(chan bool) + interval := 60 * time.Minute + + go func() { + ticker := time.NewTicker(interval) + defer ticker.Stop() + + for { + select { + case <-watcherChan: + log.Infof("MasterFile watcher stopped") + return + case <-ticker.C: + log.Infof("Checking remote MasterFile") + data, err := downloadMasterFile() + if err != nil { + log.Infof("Remote MasterFile fetch failed: %v", err) + continue + } + masterFileMu.RLock() + same := bytes.Equal(masterFileRaw, data) + masterFileMu.RUnlock() + if same { + continue + } + if err := loadMasterFileBytes(data); err != nil { + log.Warnf("Unable to parse new MasterFile: %v", err) + continue + } + if err := SaveMasterFileData(); err != nil { + log.Warnf("Storing MasterFile cache under %s has failed: %v", masterFileCachePath, err) + } else { + log.Infof("MasterFile cache saved to %s", masterFileCachePath) + reloadOhbemFromMasterFile() + } + } + } + }() + return nil +} + +func downloadMasterFile() ([]byte, error) { + req, err := http.NewRequest("GET", masterFileURL, nil) + if err != nil { + return nil, errMasterFileFetch + } + req.Header.Set("User-Agent", "Golbat") + + resp, err := masterFileHTTPClient.Do(req) + if err != nil { + return nil, errMasterFileFetch + } + defer resp.Body.Close() + if resp.StatusCode != http.StatusOK { + return nil, errMasterFileFetch + } + + body, err := io.ReadAll(resp.Body) + if err != nil { + return nil, errMasterFileFetch + } + return body, nil +} + +func loadMasterFileBytes(data []byte) error { + var raw rawMasterFile + if err := json.Unmarshal(data, &raw); err != nil { + return errMasterFileUnmarshall + } + + parsed := MasterFileData{ + Pokemon: make(map[int]MasterFilePokemon, len(raw.Pokemon)), + Costumes: make(map[int]bool, len(raw.Costumes)), + } + + for pid, pokemon := range raw.Pokemon { + intPid, err := strconv.Atoi(pid) + if err != nil { + continue + } + forms := make(map[int]MasterFileForm, len(pokemon.Forms)) + for fid, form := range pokemon.Forms { + intFid, err := strconv.Atoi(fid) + if err != nil { + continue + } + forms[intFid] = MasterFileForm{ + Types: append([]int(nil), form.Types...), + } + } + parsed.Pokemon[intPid] = MasterFilePokemon{ + Name: pokemon.Name, + Types: append([]int(nil), pokemon.Types...), + Forms: forms, + } + } + + for cid := range raw.Costumes { + if intCid, err := strconv.Atoi(cid); err == nil { + parsed.Costumes[intCid] = true + } + } + + parsed.Initialized = true + + masterFileMu.Lock() + masterFileData = parsed + + masterFileRaw = make([]byte, len(data)) + copy(masterFileRaw, data) + masterFileMu.Unlock() + return nil +} + +func getMasterFileData() MasterFileData { + masterFileMu.RLock() + data := masterFileData + masterFileMu.RUnlock() + return data +} diff --git a/decoder/weather_iv.go b/decoder/weather_iv.go index 582e1760..574e6653 100644 --- a/decoder/weather_iv.go +++ b/decoder/weather_iv.go @@ -2,13 +2,8 @@ package decoder import ( "context" - "encoding/json" - "errors" "golbat/db" "golbat/pogo" - "net/http" - "os" - "reflect" "time" "github.com/golang/geo/s2" @@ -16,143 +11,6 @@ import ( "gopkg.in/guregu/null.v4" ) -const masterFileURL = "https://raw.githubusercontent.com/WatWowMap/Masterfile-Generator/master/master-latest-rdm.json" - -var masterFileCachePath string = "cache/master-latest-rdm.json" - -var errMasterFileFetch = errors.New("can't fetch remote Weather MasterFile") -var errMasterFileOpen = errors.New("can't open Weather MasterFile") -var errMasterFileUnmarshall = errors.New("can't unmarshall Weather MasterFile") -var errMasterFileMarshall = errors.New("can't marshall Weather MasterFile") -var errMasterFileSave = errors.New("can't save Weather MasterFile") - -type MasterFileData struct { - Initialized bool `json:"-"` - Pokemon map[int]MasterFilePokemon `json:"pokemon"` - Costumes map[int]bool `json:"costumes"` -} - -type MasterFilePokemon struct { - Name string `json:"name"` - Types []int `json:"types"` - Forms map[int]MasterFileForm `json:"forms"` -} - -type MasterFileForm struct { - Types []int `json:"types"` -} - -func fetchMasterFile() (MasterFileData, error) { - req, err := http.NewRequest("GET", masterFileURL, nil) - if err != nil { - return MasterFileData{}, errMasterFileFetch - } - req.Header.Set("User-Agent", "Golbat") - - client := &http.Client{} - resp, err := client.Do(req) - if err != nil { - return MasterFileData{}, errMasterFileFetch - } - //goland:noinspection GoUnhandledErrorResult - defer resp.Body.Close() - - var data MasterFileData - err = json.NewDecoder(resp.Body).Decode(&data) - if err != nil { - return MasterFileData{}, errors.New("can't decode remote Weather MasterFile") - } - data.Initialized = true - return data, nil -} - -var watcherChan chan bool -var masterFileData MasterFileData - -// FetchMasterFileData Fetch remote MasterFile and keep it in memory. -func FetchMasterFileData() error { - var err error - masterFileData, err = fetchMasterFile() - if err != nil { - return err - } - return nil -} - -// LoadMasterFileData Load MasterFile from provided filePath and keep it in memory. -func LoadMasterFileData(filePath string) error { - if filePath == "" { - filePath = masterFileCachePath - } - data, err := os.ReadFile(filePath) - if err != nil { - return errMasterFileOpen - } - if err := json.Unmarshal(data, &masterFileData); err != nil { - return errMasterFileUnmarshall - } - masterFileData.Initialized = true - return nil -} - -// SaveMasterFileData Save MasterFile from memory to provided location. -func SaveMasterFileData() error { - data, err := json.Marshal(masterFileData) - if err != nil { - return errMasterFileMarshall - } - if err := os.WriteFile(masterFileCachePath, data, 0644); err != nil { - return errMasterFileSave - } - return nil -} - -func WatchMasterFileData() error { - if watcherChan != nil { - return errors.New("Weather MasterFile watcher is already running") - } - - log.Infof("Weather MasterFile Watcher Started") - watcherChan = make(chan bool) - var interval time.Duration - - interval = 60 * time.Minute - - go func() { - ticker := time.NewTicker(interval) - - for { - select { - case <-watcherChan: - log.Infof("Weather MasterFile Watcher Stopped") - ticker.Stop() - return - case <-ticker.C: - log.Infof("Checking remote Weather MasterFile") - pokemonData, err := fetchMasterFile() - if err != nil { - log.Infof("Remote Weather MasterFile fetch failed") - continue - } - if reflect.DeepEqual(masterFileData, pokemonData) { - continue - } else { - log.Infof("New Weather MasterFile found! Updating PokemonData") - masterFileData = pokemonData // overwrite PokemonData using new MasterFile - masterFileData.Initialized = true - err = SaveMasterFileData() - if err != nil { - log.Warnf("Storing Weather MasterFile cache under %s has failed: %v", masterFileCachePath, err) - } else { - log.Infof("Weather MasterFile cache saved to %s", masterFileCachePath) - } - } - } - } - }() - return nil -} - type WeatherUpdate struct { S2CellId int64 NewWeather int32 @@ -160,8 +18,8 @@ type WeatherUpdate struct { var boostedWeatherLookup = []uint8{0, 8, 16, 32, 16, 2, 8, 4, 128, 64, 2, 4, 2, 4, 32, 64, 32, 128, 16} -func findBoostedWeathers(pokemonId, form int16) (result uint8) { - pokemon, ok := masterFileData.Pokemon[int(pokemonId)] +func findBoostedWeathers(data MasterFileData, pokemonId, form int16) (result uint8) { + pokemon, ok := data.Pokemon[int(pokemonId)] if !ok { log.Warnf("Unknown PokemonId %d", pokemonId) return @@ -184,7 +42,8 @@ func findBoostedWeathers(pokemonId, form int16) (result uint8) { } func ProactiveIVSwitch(ctx context.Context, db db.DbDetails, weatherUpdate WeatherUpdate, toDB bool, timestamp int64) { - if !masterFileData.Initialized { + data := getMasterFileData() + if !data.Initialized { return } weatherCell := s2.CellFromCellID(s2.CellID(weatherUpdate.S2CellId)) @@ -213,7 +72,7 @@ func ProactiveIVSwitch(ctx context.Context, db db.DbDetails, weatherUpdate Weath if !found || !pokemonLookup.PokemonLookup.HasEncounterValues { return true } - boostedWeathers := findBoostedWeathers(pokemonLookup.PokemonLookup.PokemonId, pokemonLookup.PokemonLookup.Form) + boostedWeathers := findBoostedWeathers(data, pokemonLookup.PokemonLookup.PokemonId, pokemonLookup.PokemonLookup.Form) if boostedWeathers == 0 { return true } diff --git a/main.go b/main.go index 02cae765..76ac1330 100644 --- a/main.go +++ b/main.go @@ -190,24 +190,25 @@ func main() { go db2.PromLiveStatsUpdater(dbDetails, cfg.Prometheus.LiveStatsSleep) } - decoder.InitialiseOhbem() + needsOhbem := cfg.Pvp.Enabled + needsMasterfile := needsOhbem || cfg.Weather.ProactiveIVSwitching + if needsMasterfile { + if err := decoder.EnsureMasterFileData(); err != nil { + log.Fatalf("Unable to initialise MasterFile: %v", err) + } + } + + if needsOhbem { + decoder.InitialiseOhbem() + } if cfg.Weather.ProactiveIVSwitching { decoder.InitProactiveIVSwitchSem() + } - // Try to fetch from remote first, fallback to cache, then fallback to bundled file - if err := decoder.FetchMasterFileData(); err != nil { - if err2 := decoder.LoadMasterFileData(""); err2 != nil { - _ = decoder.LoadMasterFileData("pogo/master-latest-rdm.json") - log.Errorf("Weather MasterFile fetch failed. Loading from cache failed: %s. Loading from pogo/master-latest-rdm.json instead.", err2) - } else { - log.Warnf("Weather MasterFile fetch failed, loaded from cache: %s", err) - } - } else { - // Save to cache if successfully fetched - _ = decoder.SaveMasterFileData() + if needsMasterfile { + if err := decoder.WatchMasterFileData(); err != nil { + log.Warnf("MasterFile watcher failed: %v", err) } - - _ = decoder.WatchMasterFileData() } decoder.LoadStatsGeofences() InitDeviceCache() diff --git a/pogo/master-latest-basics.json b/pogo/master-latest-basics.json index 216419ad..27eacd2e 100644 --- a/pogo/master-latest-basics.json +++ b/pogo/master-latest-basics.json @@ -1,6 +1,10 @@ { "pokemon": { "1": { + "types": [ + 4, + 12 + ], "forms": { "163": { "evolutions": [ @@ -8,6 +12,9 @@ "pokemon": 2, "form": 166 } + ], + "costume_override_evos": [ + 11 ] }, "897": {} @@ -21,9 +28,16 @@ "form": 166 } ], + "costume_override_evos": [ + 11 + ], "little": true }, "2": { + "types": [ + 4, + 12 + ], "forms": { "166": { "evolutions": [ @@ -31,6 +45,9 @@ "pokemon": 3, "form": 169 } + ], + "costume_override_evos": [ + 11 ] } }, @@ -42,9 +59,16 @@ "pokemon": 3, "form": 169 } + ], + "costume_override_evos": [ + 11 ] }, "3": { + "types": [ + 4, + 12 + ], "forms": { "169": { "temp_evolutions": { @@ -65,6 +89,9 @@ } }, "4": { + "types": [ + 10 + ], "forms": { "172": { "evolutions": [ @@ -94,6 +121,9 @@ "little": true }, "5": { + "types": [ + 10 + ], "forms": { "175": { "evolutions": [ @@ -121,6 +151,10 @@ ] }, "6": { + "types": [ + 3, + 10 + ], "forms": { "178": { "temp_evolutions": { @@ -147,6 +181,9 @@ } }, "7": { + "types": [ + 11 + ], "forms": { "181": { "evolutions": [ @@ -176,6 +213,9 @@ "little": true }, "8": { + "types": [ + 11 + ], "forms": { "184": { "evolutions": [ @@ -203,6 +243,9 @@ ] }, "9": { + "types": [ + 11 + ], "forms": { "187": { "temp_evolutions": { @@ -225,37 +268,60 @@ } }, "10": { + "types": [ + 7 + ], "forms": { - "0": {}, - "953": {} + "953": { + "evolutions": [ + { + "pokemon": 11, + "form": 956 + } + ] + } }, "attack": 55, "defense": 55, "stamina": 128, "evolutions": [ { - "pokemon": 11 + "pokemon": 11, + "form": 956 } ], "little": true }, "11": { + "types": [ + 7 + ], "forms": { - "0": {}, - "956": {} + "956": { + "evolutions": [ + { + "pokemon": 12, + "form": 959 + } + ] + } }, "attack": 45, "defense": 80, "stamina": 137, "evolutions": [ { - "pokemon": 12 + "pokemon": 12, + "form": 959 } ] }, "12": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "959": {} }, "attack": 167, @@ -263,6 +329,10 @@ "stamina": 155 }, "13": { + "types": [ + 4, + 7 + ], "forms": { "616": { "evolutions": [ @@ -285,6 +355,10 @@ "little": true }, "14": { + "types": [ + 4, + 7 + ], "forms": { "619": { "evolutions": [ @@ -306,6 +380,10 @@ ] }, "15": { + "types": [ + 4, + 7 + ], "forms": { "622": { "temp_evolutions": { @@ -325,9 +403,19 @@ } }, "16": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "962": {} + "962": { + "evolutions": [ + { + "pokemon": 17, + "form": 965 + } + ] + } }, "attack": 85, "defense": 73, @@ -340,9 +428,19 @@ "little": true }, "17": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "965": {} + "965": { + "evolutions": [ + { + "pokemon": 18, + "form": 968 + } + ] + } }, "attack": 117, "defense": 105, @@ -354,9 +452,16 @@ ] }, "18": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "968": {} + "968": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 166, "defense": 154, @@ -370,6 +475,9 @@ } }, "19": { + "types": [ + 1 + ], "forms": { "45": { "evolutions": [ @@ -380,6 +488,10 @@ ] }, "46": { + "types": [ + 1, + 17 + ], "evolutions": [ { "pokemon": 20, @@ -400,12 +512,19 @@ "little": true }, "20": { + "types": [ + 1 + ], "forms": { "47": {}, "48": { "attack": 135, "defense": 154, - "stamina": 181 + "stamina": 181, + "types": [ + 1, + 17 + ] }, "2329": {} }, @@ -414,9 +533,19 @@ "stamina": 146 }, "21": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "971": {} + "971": { + "evolutions": [ + { + "pokemon": 22, + "form": 974 + } + ] + } }, "attack": 112, "defense": 60, @@ -429,8 +558,11 @@ "little": true }, "22": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, "974": {} }, "attack": 182, @@ -438,6 +570,9 @@ "stamina": 163 }, "23": { + "types": [ + 4 + ], "forms": { "697": { "evolutions": [ @@ -460,6 +595,9 @@ "little": true }, "24": { + "types": [ + 4 + ], "forms": { "700": {} }, @@ -468,6 +606,9 @@ "stamina": 155 }, "25": { + "types": [ + 13 + ], "forms": { "598": { "evolutions": [ @@ -519,6 +660,13 @@ "2857": {}, "2858": {}, "2859": {}, + "2863": {}, + "2864": {}, + "2865": {}, + "2866": {}, + "2867": {}, + "2868": {}, + "2869": {}, "3002": {}, "3003": {}, "3004": {}, @@ -528,7 +676,10 @@ "3012": {}, "3013": {}, "3014": {}, - "3015": {} + "3015": {}, + "3017": {}, + "3322": {}, + "3323": {} }, "attack": 112, "defense": 96, @@ -544,12 +695,19 @@ ] }, "26": { + "types": [ + 13 + ], "forms": { "49": {}, "50": { "attack": 201, "defense": 154, - "stamina": 155 + "stamina": 155, + "types": [ + 13, + 14 + ] } }, "attack": 193, @@ -557,6 +715,9 @@ "stamina": 155 }, "27": { + "types": [ + 5 + ], "forms": { "51": { "evolutions": [ @@ -570,6 +731,10 @@ "attack": 125, "defense": 129, "stamina": 137, + "types": [ + 9, + 15 + ], "evolutions": [ { "pokemon": 28, @@ -590,12 +755,19 @@ "little": true }, "28": { + "types": [ + 5 + ], "forms": { "53": {}, "54": { "attack": 177, "defense": 195, - "stamina": 181 + "stamina": 181, + "types": [ + 9, + 15 + ] } }, "attack": 182, @@ -603,6 +775,9 @@ "stamina": 181 }, "29": { + "types": [ + 4 + ], "forms": { "776": { "evolutions": [ @@ -625,6 +800,9 @@ "little": true }, "30": { + "types": [ + 4 + ], "forms": { "779": { "evolutions": [ @@ -646,6 +824,10 @@ ] }, "31": { + "types": [ + 4, + 5 + ], "forms": { "782": {} }, @@ -654,6 +836,9 @@ "stamina": 207 }, "32": { + "types": [ + 4 + ], "forms": { "776": { "evolutions": [ @@ -676,6 +861,9 @@ "little": true }, "33": { + "types": [ + 4 + ], "forms": { "785": { "evolutions": [ @@ -697,6 +885,10 @@ ] }, "34": { + "types": [ + 4, + 5 + ], "forms": { "788": {} }, @@ -705,9 +897,18 @@ "stamina": 191 }, "35": { + "types": [ + 18 + ], "forms": { - "0": {}, - "981": {} + "981": { + "evolutions": [ + { + "pokemon": 36, + "form": 984 + } + ] + } }, "attack": 107, "defense": 108, @@ -719,15 +920,32 @@ ] }, "36": { + "types": [ + 18 + ], "forms": { - "0": {}, - "984": {} + "984": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 178, "defense": 162, - "stamina": 216 + "stamina": 216, + "temp_evolutions": { + "1": { + "attack": 253, + "defense": 205, + "stamina": 216, + "unreleased": true + } + } }, "37": { + "types": [ + 10 + ], "forms": { "55": { "evolutions": [ @@ -738,6 +956,9 @@ ] }, "56": { + "types": [ + 15 + ], "evolutions": [ { "pokemon": 38, @@ -758,12 +979,19 @@ "little": true }, "38": { + "types": [ + 10 + ], "forms": { "57": {}, "58": { "attack": 170, "defense": 193, - "stamina": 177 + "stamina": 177, + "types": [ + 15, + 18 + ] } }, "attack": 169, @@ -771,9 +999,19 @@ "stamina": 177 }, "39": { + "types": [ + 1, + 18 + ], "forms": { - "0": {}, - "987": {} + "987": { + "evolutions": [ + { + "pokemon": 40, + "form": 990 + } + ] + } }, "attack": 80, "defense": 41, @@ -785,8 +1023,11 @@ ] }, "40": { + "types": [ + 1, + 18 + ], "forms": { - "0": {}, "990": {} }, "attack": 156, @@ -794,6 +1035,10 @@ "stamina": 295 }, "41": { + "types": [ + 3, + 4 + ], "forms": { "157": { "evolutions": [ @@ -816,6 +1061,10 @@ "little": true }, "42": { + "types": [ + 3, + 4 + ], "forms": { "160": { "evolutions": [ @@ -837,6 +1086,10 @@ ] }, "43": { + "types": [ + 4, + 12 + ], "forms": { "265": { "evolutions": [ @@ -859,6 +1112,10 @@ "little": true }, "44": { + "types": [ + 4, + 12 + ], "forms": { "268": { "evolutions": [ @@ -888,6 +1145,10 @@ ] }, "45": { + "types": [ + 4, + 12 + ], "forms": { "271": {} }, @@ -896,9 +1157,19 @@ "stamina": 181 }, "46": { + "types": [ + 7, + 12 + ], "forms": { - "0": {}, - "993": {} + "993": { + "evolutions": [ + { + "pokemon": 47, + "form": 996 + } + ] + } }, "attack": 121, "defense": 99, @@ -911,8 +1182,11 @@ "little": true }, "47": { + "types": [ + 7, + 12 + ], "forms": { - "0": {}, "996": {} }, "attack": 165, @@ -920,6 +1194,10 @@ "stamina": 155 }, "48": { + "types": [ + 4, + 7 + ], "forms": { "259": { "evolutions": [ @@ -942,6 +1220,10 @@ "little": true }, "49": { + "types": [ + 4, + 7 + ], "forms": { "262": {} }, @@ -950,6 +1232,9 @@ "stamina": 172 }, "50": { + "types": [ + 5 + ], "forms": { "59": { "evolutions": [ @@ -966,6 +1251,10 @@ "attack": 108, "defense": 81, "stamina": 67, + "types": [ + 5, + 9 + ], "evolutions": [ { "pokemon": 51, @@ -989,6 +1278,9 @@ "little": true }, "51": { + "types": [ + 5 + ], "forms": { "61": { "attack": 167, @@ -998,7 +1290,11 @@ "62": { "attack": 201, "defense": 142, - "stamina": 111 + "stamina": 111, + "types": [ + 5, + 9 + ] } }, "attack": 167, @@ -1006,6 +1302,9 @@ "stamina": 111 }, "52": { + "types": [ + 1 + ], "forms": { "63": { "evolutions": [ @@ -1019,6 +1318,9 @@ "attack": 99, "defense": 78, "stamina": 120, + "types": [ + 17 + ], "evolutions": [ { "pokemon": 53, @@ -1030,6 +1332,9 @@ "attack": 115, "defense": 92, "stamina": 137, + "types": [ + 9 + ], "evolutions": [ { "pokemon": 863, @@ -1050,12 +1355,18 @@ "little": true }, "53": { + "types": [ + 1 + ], "forms": { "65": {}, "66": { "attack": 158, "defense": 136, - "stamina": 163 + "stamina": 163, + "types": [ + 17 + ] } }, "attack": 150, @@ -1063,6 +1374,9 @@ "stamina": 163 }, "54": { + "types": [ + 11 + ], "forms": { "286": { "evolutions": [ @@ -1071,7 +1385,8 @@ "form": 289 } ] - } + }, + "3019": {} }, "attack": 122, "defense": 95, @@ -1085,6 +1400,9 @@ "little": true }, "55": { + "types": [ + 11 + ], "forms": { "289": {} }, @@ -1093,9 +1411,18 @@ "stamina": 190 }, "56": { + "types": [ + 2 + ], "forms": { - "0": {}, - "999": {} + "999": { + "evolutions": [ + { + "pokemon": 57, + "form": 1002 + } + ] + } }, "attack": 148, "defense": 82, @@ -1108,9 +1435,18 @@ "little": true }, "57": { + "types": [ + 2 + ], "forms": { - "0": {}, - "1002": {} + "1002": { + "evolutions": [ + { + "pokemon": 979, + "form": 3290 + } + ] + } }, "attack": 207, "defense": 138, @@ -1122,6 +1458,9 @@ ] }, "58": { + "types": [ + 10 + ], "forms": { "280": { "evolutions": [ @@ -1135,6 +1474,10 @@ "attack": 142, "defense": 92, "stamina": 155, + "types": [ + 6, + 10 + ], "evolutions": [ { "pokemon": 59, @@ -1155,12 +1498,19 @@ "little": true }, "59": { + "types": [ + 10 + ], "forms": { "283": {}, "2793": { "attack": 232, "defense": 165, - "stamina": 216 + "stamina": 216, + "types": [ + 6, + 10 + ] } }, "attack": 227, @@ -1168,6 +1518,9 @@ "stamina": 207 }, "60": { + "types": [ + 11 + ], "forms": { "235": { "evolutions": [ @@ -1190,6 +1543,9 @@ "little": true }, "61": { + "types": [ + 11 + ], "forms": { "238": { "evolutions": [ @@ -1219,6 +1575,10 @@ ] }, "62": { + "types": [ + 2, + 11 + ], "forms": { "241": {} }, @@ -1227,6 +1587,9 @@ "stamina": 207 }, "63": { + "types": [ + 14 + ], "forms": { "304": { "evolutions": [ @@ -1249,6 +1612,9 @@ "little": true }, "64": { + "types": [ + 14 + ], "forms": { "307": { "evolutions": [ @@ -1270,6 +1636,9 @@ ] }, "65": { + "types": [ + 14 + ], "forms": { "310": { "temp_evolutions": { @@ -1289,6 +1658,9 @@ } }, "66": { + "types": [ + 2 + ], "forms": { "809": { "evolutions": [ @@ -1311,6 +1683,9 @@ "little": true }, "67": { + "types": [ + 2 + ], "forms": { "812": { "evolutions": [ @@ -1332,6 +1707,9 @@ ] }, "68": { + "types": [ + 2 + ], "forms": { "815": {} }, @@ -1340,6 +1718,10 @@ "stamina": 207 }, "69": { + "types": [ + 4, + 12 + ], "forms": { "664": { "evolutions": [ @@ -1362,6 +1744,10 @@ "little": true }, "70": { + "types": [ + 4, + 12 + ], "forms": { "667": { "evolutions": [ @@ -1383,17 +1769,43 @@ ] }, "71": { + "types": [ + 4, + 12 + ], "forms": { - "670": {} + "670": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 207, "defense": 135, - "stamina": 190 + "stamina": 190, + "temp_evolutions": { + "1": { + "attack": 265, + "defense": 181, + "stamina": 190, + "unreleased": true + } + } }, "72": { + "types": [ + 4, + 11 + ], "forms": { - "0": {}, - "1005": {} + "1005": { + "evolutions": [ + { + "pokemon": 73, + "form": 1008 + } + ] + } }, "attack": 97, "defense": 149, @@ -1406,8 +1818,11 @@ "little": true }, "73": { + "types": [ + 4, + 11 + ], "forms": { - "0": {}, "1008": {} }, "attack": 166, @@ -1415,6 +1830,10 @@ "stamina": 190 }, "74": { + "types": [ + 5, + 6 + ], "forms": { "67": { "evolutions": [ @@ -1425,6 +1844,10 @@ ] }, "68": { + "types": [ + 6, + 13 + ], "evolutions": [ { "pokemon": 75, @@ -1445,6 +1868,10 @@ "little": true }, "75": { + "types": [ + 5, + 6 + ], "forms": { "69": { "evolutions": [ @@ -1455,6 +1882,10 @@ ] }, "70": { + "types": [ + 6, + 13 + ], "evolutions": [ { "pokemon": 76, @@ -1474,15 +1905,27 @@ ] }, "76": { + "types": [ + 5, + 6 + ], "forms": { "71": {}, - "72": {} + "72": { + "types": [ + 6, + 13 + ] + } }, "attack": 211, "defense": 198, "stamina": 190 }, "77": { + "types": [ + 10 + ], "forms": { "1011": { "evolutions": [ @@ -1493,6 +1936,9 @@ ] }, "2336": { + "types": [ + 14 + ], "evolutions": [ { "pokemon": 78, @@ -1513,15 +1959,27 @@ "little": true }, "78": { + "types": [ + 10 + ], "forms": { "1014": {}, - "2337": {} + "2337": { + "types": [ + 14, + 18 + ] + } }, "attack": 207, "defense": 162, "stamina": 163 }, "79": { + "types": [ + 11, + 14 + ], "forms": { "1017": { "evolutions": [ @@ -1536,6 +1994,9 @@ ] }, "2582": { + "types": [ + 14 + ], "evolutions": [ { "pokemon": 80, @@ -1576,6 +2037,10 @@ "little": true }, "80": { + "types": [ + 11, + 14 + ], "forms": { "1020": { "temp_evolutions": { @@ -1585,7 +2050,11 @@ "2583": { "attack": 182, "defense": 156, - "stamina": 216 + "stamina": 216, + "types": [ + 4, + 14 + ] }, "2674": { "temp_evolutions": { @@ -1605,6 +2074,10 @@ } }, "81": { + "types": [ + 9, + 13 + ], "forms": { "655": { "evolutions": [ @@ -1627,6 +2100,10 @@ "little": true }, "82": { + "types": [ + 9, + 13 + ], "forms": { "658": { "evolutions": [ @@ -1647,12 +2124,19 @@ ] }, "83": { + "types": [ + 1, + 3 + ], "forms": { "1023": {}, "2338": { "attack": 174, "defense": 114, "stamina": 141, + "types": [ + 2 + ], "evolutions": [ { "pokemon": 865, @@ -1667,11 +2151,21 @@ "stamina": 141 }, "84": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "1026": {} - }, - "attack": 158, + "1026": { + "evolutions": [ + { + "pokemon": 85, + "form": 1029 + } + ] + } + }, + "attack": 158, "defense": 83, "stamina": 111, "evolutions": [ @@ -1682,8 +2176,11 @@ "little": true }, "85": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, "1029": {} }, "attack": 218, @@ -1691,9 +2188,18 @@ "stamina": 155 }, "86": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1032": {} + "1032": { + "evolutions": [ + { + "pokemon": 87, + "form": 1035 + } + ] + } }, "attack": 85, "defense": 121, @@ -1706,8 +2212,11 @@ "little": true }, "87": { + "types": [ + 11, + 15 + ], "forms": { - "0": {}, "1035": {} }, "attack": 139, @@ -1715,6 +2224,9 @@ "stamina": 207 }, "88": { + "types": [ + 4 + ], "forms": { "73": { "evolutions": [ @@ -1725,6 +2237,10 @@ ] }, "74": { + "types": [ + 4, + 17 + ], "evolutions": [ { "pokemon": 89, @@ -1745,15 +2261,26 @@ "little": true }, "89": { + "types": [ + 4 + ], "forms": { "75": {}, - "76": {} + "76": { + "types": [ + 4, + 17 + ] + } }, "attack": 190, "defense": 172, "stamina": 233 }, "90": { + "types": [ + 11 + ], "forms": { "876": { "evolutions": [ @@ -1776,6 +2303,10 @@ "little": true }, "91": { + "types": [ + 11, + 15 + ], "forms": { "879": {} }, @@ -1784,35 +2315,61 @@ "stamina": 137 }, "92": { + "types": [ + 4, + 8 + ], "forms": { - "0": {}, - "1038": {} + "1038": { + "evolutions": [ + { + "pokemon": 93, + "form": 1041 + } + ] + } }, "attack": 186, "defense": 67, "stamina": 102, "evolutions": [ { - "pokemon": 93 + "pokemon": 93, + "form": 1041 } ], "little": true }, "93": { + "types": [ + 4, + 8 + ], "forms": { - "0": {}, - "1041": {} + "1041": { + "evolutions": [ + { + "pokemon": 94, + "form": 1044 + } + ] + } }, "attack": 223, "defense": 107, "stamina": 128, "evolutions": [ { - "pokemon": 94 + "pokemon": 94, + "form": 1044 } ] }, "94": { + "types": [ + 4, + 8 + ], "forms": { "1044": { "temp_evolutions": { @@ -1837,6 +2394,10 @@ } }, "95": { + "types": [ + 5, + 6 + ], "forms": { "902": { "evolutions": [ @@ -1860,6 +2421,9 @@ "little": true }, "96": { + "types": [ + 14 + ], "forms": { "214": { "evolutions": [ @@ -1882,6 +2446,9 @@ "little": true }, "97": { + "types": [ + 14 + ], "forms": { "217": {} }, @@ -1890,6 +2457,9 @@ "stamina": 198 }, "98": { + "types": [ + 11 + ], "forms": { "870": { "evolutions": [ @@ -1912,6 +2482,9 @@ "little": true }, "99": { + "types": [ + 11 + ], "forms": { "873": {} }, @@ -1920,6 +2493,9 @@ "stamina": 146 }, "100": { + "types": [ + 13 + ], "forms": { "1047": { "evolutions": [ @@ -1930,6 +2506,10 @@ ] }, "2728": { + "types": [ + 12, + 13 + ], "evolutions": [ { "pokemon": 101, @@ -1949,12 +2529,19 @@ "little": true }, "101": { + "types": [ + 13 + ], "forms": { "1050": {}, "2735": { "attack": 176, "defense": 176, - "stamina": 155 + "stamina": 155, + "types": [ + 12, + 13 + ] } }, "attack": 173, @@ -1962,6 +2549,10 @@ "stamina": 155 }, "102": { + "types": [ + 12, + 14 + ], "forms": { "729": { "evolutions": [ @@ -1992,12 +2583,20 @@ "little": true }, "103": { + "types": [ + 12, + 14 + ], "forms": { "77": {}, "78": { "attack": 230, "defense": 153, - "stamina": 216 + "stamina": 216, + "types": [ + 12, + 16 + ] } }, "attack": 233, @@ -2005,6 +2604,9 @@ "stamina": 216 }, "104": { + "types": [ + 5 + ], "forms": { "224": { "evolutions": [ @@ -2035,15 +2637,26 @@ "little": true }, "105": { + "types": [ + 5 + ], "forms": { "79": {}, - "80": {} + "80": { + "types": [ + 8, + 10 + ] + } }, "attack": 144, "defense": 186, "stamina": 155 }, "106": { + "types": [ + 2 + ], "forms": { "713": {} }, @@ -2052,6 +2665,9 @@ "stamina": 137 }, "107": { + "types": [ + 2 + ], "forms": { "277": {} }, @@ -2060,9 +2676,18 @@ "stamina": 137 }, "108": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1053": {} + "1053": { + "evolutions": [ + { + "pokemon": 463, + "form": 1820 + } + ] + } }, "attack": 108, "defense": 137, @@ -2075,6 +2700,9 @@ "little": true }, "109": { + "types": [ + 4 + ], "forms": { "703": { "evolutions": [ @@ -2105,15 +2733,27 @@ "little": true }, "110": { + "types": [ + 4 + ], "forms": { "706": {}, - "944": {} + "944": { + "types": [ + 4, + 18 + ] + } }, "attack": 174, "defense": 197, "stamina": 163 }, "111": { + "types": [ + 5, + 6 + ], "forms": { "846": { "evolutions": [ @@ -2136,6 +2776,10 @@ "little": true }, "112": { + "types": [ + 5, + 6 + ], "forms": { "849": { "evolutions": [ @@ -2157,20 +2801,33 @@ ] }, "113": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1056": {} + "1056": { + "evolutions": [ + { + "pokemon": 242, + "form": 1328 + } + ] + } }, "attack": 60, "defense": 128, "stamina": 487, "evolutions": [ { - "pokemon": 242 + "pokemon": 242, + "form": 1328 } ] }, "114": { + "types": [ + 12 + ], "forms": { "1059": { "evolutions": [ @@ -2193,6 +2850,9 @@ "little": true }, "115": { + "types": [ + 1 + ], "forms": { "839": { "temp_evolutions": { @@ -2212,6 +2872,9 @@ } }, "116": { + "types": [ + 11 + ], "forms": { "1062": { "evolutions": [ @@ -2234,6 +2897,9 @@ "little": true }, "117": { + "types": [ + 11 + ], "forms": { "1065": { "evolutions": [ @@ -2255,9 +2921,18 @@ ] }, "118": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1068": {} + "1068": { + "evolutions": [ + { + "pokemon": 119, + "form": 1071 + } + ] + } }, "attack": 123, "defense": 110, @@ -2270,8 +2945,10 @@ "little": true }, "119": { + "types": [ + 11 + ], "forms": { - "0": {}, "1071": {} }, "attack": 175, @@ -2279,9 +2956,18 @@ "stamina": 190 }, "120": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1074": {} + "1074": { + "evolutions": [ + { + "pokemon": 121, + "form": 1077 + } + ] + } }, "attack": 137, "defense": 112, @@ -2294,21 +2980,44 @@ "little": true }, "121": { + "types": [ + 11, + 14 + ], "forms": { - "0": {}, - "1077": {} + "1077": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 210, "defense": 184, - "stamina": 155 + "stamina": 155, + "temp_evolutions": { + "1": { + "attack": 303, + "defense": 229, + "stamina": 155, + "unreleased": true + } + } }, "122": { + "types": [ + 14, + 18 + ], "forms": { "1080": {}, "2339": { "attack": 183, "defense": 169, "stamina": 137, + "types": [ + 14, + 15 + ], "evolutions": [ { "pokemon": 866, @@ -2322,12 +3031,19 @@ "stamina": 120 }, "123": { + "types": [ + 3, + 7 + ], "forms": { "247": { "evolutions": [ { "pokemon": 212, "form": 250 + }, + { + "pokemon": 900 } ] } @@ -2347,8 +3063,11 @@ "little": true }, "124": { + "types": [ + 14, + 15 + ], "forms": { - "0": {}, "1083": {} }, "attack": 223, @@ -2356,6 +3075,9 @@ "stamina": 163 }, "125": { + "types": [ + 13 + ], "forms": { "640": { "evolutions": [ @@ -2377,6 +3099,9 @@ ] }, "126": { + "types": [ + 10 + ], "forms": { "634": { "evolutions": [ @@ -2398,6 +3123,9 @@ ] }, "127": { + "types": [ + 7 + ], "forms": { "898": { "temp_evolutions": { @@ -2417,18 +3145,46 @@ } }, "128": { + "types": [ + 1 + ], "forms": { - "0": {}, "1086": {}, - "3006": {}, - "3007": {}, - "3008": {} + "3006": { + "attack": 210, + "defense": 193, + "stamina": 181, + "types": [ + 2 + ] + }, + "3007": { + "attack": 210, + "defense": 193, + "stamina": 181, + "types": [ + 2, + 10 + ] + }, + "3008": { + "attack": 210, + "defense": 193, + "stamina": 181, + "types": [ + 2, + 11 + ] + } }, "attack": 198, "defense": 183, "stamina": 181 }, "129": { + "types": [ + 11 + ], "forms": { "253": { "evolutions": [ @@ -2451,6 +3207,10 @@ "little": true }, "130": { + "types": [ + 3, + 11 + ], "forms": { "256": { "temp_evolutions": { @@ -2470,6 +3230,10 @@ } }, "131": { + "types": [ + 11, + 15 + ], "forms": { "322": {}, "2585": {} @@ -2479,8 +3243,10 @@ "stamina": 277 }, "132": { + "types": [ + 1 + ], "forms": { - "0": {}, "1089": {} }, "attack": 91, @@ -2488,32 +3254,43 @@ "stamina": 134 }, "133": { + "types": [ + 1 + ], "forms": { "1092": { "evolutions": [ { - "pokemon": 134 + "pokemon": 134, + "form": 1095 }, { - "pokemon": 135 + "pokemon": 135, + "form": 1098 }, { - "pokemon": 136 + "pokemon": 136, + "form": 1101 }, { - "pokemon": 196 + "pokemon": 196, + "form": 1232 }, { - "pokemon": 197 + "pokemon": 197, + "form": 1235 }, { - "pokemon": 470 + "pokemon": 470, + "form": 1832 }, { - "pokemon": 471 + "pokemon": 471, + "form": 1835 }, { - "pokemon": 700 + "pokemon": 700, + "form": 3062 } ] }, @@ -2525,35 +3302,45 @@ "stamina": 146, "evolutions": [ { - "pokemon": 134 + "pokemon": 134, + "form": 1095 }, { - "pokemon": 135 + "pokemon": 135, + "form": 1098 }, { - "pokemon": 136 + "pokemon": 136, + "form": 1101 }, { - "pokemon": 196 + "pokemon": 196, + "form": 1232 }, { - "pokemon": 197 + "pokemon": 197, + "form": 1235 }, { - "pokemon": 470 + "pokemon": 470, + "form": 1832 }, { - "pokemon": 471 + "pokemon": 471, + "form": 1835 }, { - "pokemon": 700 + "pokemon": 700, + "form": 3062 } ], "little": true }, "134": { + "types": [ + 11 + ], "forms": { - "0": {}, "1095": {} }, "attack": 205, @@ -2561,8 +3348,10 @@ "stamina": 277 }, "135": { + "types": [ + 13 + ], "forms": { - "0": {}, "1098": {} }, "attack": 232, @@ -2570,8 +3359,10 @@ "stamina": 163 }, "136": { + "types": [ + 10 + ], "forms": { - "0": {}, "1101": {} }, "attack": 246, @@ -2579,6 +3370,9 @@ "stamina": 163 }, "137": { + "types": [ + 1 + ], "forms": { "677": { "evolutions": [ @@ -2601,6 +3395,10 @@ "little": true }, "138": { + "types": [ + 6, + 11 + ], "forms": { "740": { "evolutions": [ @@ -2623,6 +3421,10 @@ "little": true }, "139": { + "types": [ + 6, + 11 + ], "forms": { "743": {} }, @@ -2631,6 +3433,10 @@ "stamina": 172 }, "140": { + "types": [ + 6, + 11 + ], "forms": { "1104": { "evolutions": [ @@ -2653,6 +3459,10 @@ "little": true }, "141": { + "types": [ + 6, + 11 + ], "forms": { "1107": {} }, @@ -2661,6 +3471,10 @@ "stamina": 155 }, "142": { + "types": [ + 3, + 6 + ], "forms": { "1110": { "temp_evolutions": { @@ -2685,6 +3499,9 @@ } }, "143": { + "types": [ + 1 + ], "forms": { "199": {}, "2849": {} @@ -2694,12 +3511,20 @@ "stamina": 330 }, "144": { + "types": [ + 3, + 15 + ], "forms": { "716": {}, "2801": { "attack": 250, "defense": 197, - "stamina": 207 + "stamina": 207, + "types": [ + 3, + 14 + ] } }, "attack": 192, @@ -2707,12 +3532,20 @@ "stamina": 207 }, "145": { + "types": [ + 3, + 13 + ], "forms": { "773": {}, "2800": { "attack": 252, "defense": 189, - "stamina": 207 + "stamina": 207, + "types": [ + 2, + 3 + ] } }, "attack": 253, @@ -2720,12 +3553,20 @@ "stamina": 207 }, "146": { + "types": [ + 3, + 10 + ], "forms": { "836": {}, "2799": { "attack": 202, "defense": 231, - "stamina": 207 + "stamina": 207, + "types": [ + 3, + 17 + ] } }, "attack": 251, @@ -2733,6 +3574,9 @@ "stamina": 207 }, "147": { + "types": [ + 16 + ], "forms": { "190": { "evolutions": [ @@ -2755,6 +3599,9 @@ "little": true }, "148": { + "types": [ + 16 + ], "forms": { "193": { "evolutions": [ @@ -2776,15 +3623,34 @@ ] }, "149": { + "types": [ + 3, + 16 + ], "forms": { - "196": {}, + "196": { + "temp_evolutions": { + "1": {} + } + }, "2333": {} }, "attack": 263, "defense": 198, - "stamina": 209 + "stamina": 209, + "temp_evolutions": { + "1": { + "attack": 299, + "defense": 255, + "stamina": 209, + "unreleased": true + } + } }, "150": { + "types": [ + 14 + ], "forms": { "133": { "attack": 182, @@ -2817,8 +3683,10 @@ } }, "151": { + "types": [ + 14 + ], "forms": { - "0": {}, "1115": {} }, "attack": 210, @@ -2826,6 +3694,9 @@ "stamina": 225 }, "152": { + "types": [ + 12 + ], "forms": { "1118": { "evolutions": [ @@ -2846,6 +3717,9 @@ "little": true }, "153": { + "types": [ + 12 + ], "forms": { "1121": { "evolutions": [ @@ -2865,14 +3739,32 @@ ] }, "154": { + "types": [ + 12 + ], "forms": { - "1124": {} + "1124": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 168, "defense": 202, - "stamina": 190 + "stamina": 190, + "temp_evolutions": { + "1": { + "attack": 276, + "defense": 232, + "stamina": 190, + "unreleased": true + } + } }, "155": { + "types": [ + 10 + ], "forms": { "1127": { "evolutions": [ @@ -2893,6 +3785,9 @@ "little": true }, "156": { + "types": [ + 10 + ], "forms": { "1130": { "evolutions": [ @@ -2920,12 +3815,19 @@ ] }, "157": { + "types": [ + 10 + ], "forms": { "1133": {}, "2786": { "attack": 238, "defense": 172, - "stamina": 177 + "stamina": 177, + "types": [ + 8, + 10 + ] } }, "attack": 223, @@ -2933,6 +3835,9 @@ "stamina": 186 }, "158": { + "types": [ + 11 + ], "forms": { "1136": { "evolutions": [ @@ -2953,6 +3858,9 @@ "little": true }, "159": { + "types": [ + 11 + ], "forms": { "1139": { "evolutions": [ @@ -2972,17 +3880,41 @@ ] }, "160": { + "types": [ + 11 + ], "forms": { - "1142": {} + "1142": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 205, "defense": 188, - "stamina": 198 + "stamina": 198, + "temp_evolutions": { + "1": { + "attack": 304, + "defense": 227, + "stamina": 198, + "unreleased": true + } + } }, "161": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1145": {} + "1145": { + "evolutions": [ + { + "pokemon": 162, + "form": 1148 + } + ] + } }, "attack": 79, "defense": 73, @@ -2995,8 +3927,10 @@ "little": true }, "162": { + "types": [ + 1 + ], "forms": { - "0": {}, "1148": {} }, "attack": 148, @@ -3004,11 +3938,24 @@ "stamina": 198 }, "163": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "1151": {} - }, - "attack": 67, + "1151": { + "evolutions": [ + { + "pokemon": 164, + "form": 1154 + } + ], + "costume_override_evos": [ + 54 + ] + } + }, + "attack": 67, "defense": 88, "stamina": 155, "evolutions": [ @@ -3022,8 +3969,11 @@ "little": true }, "164": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, "1154": {} }, "attack": 145, @@ -3031,9 +3981,19 @@ "stamina": 225 }, "165": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, - "1157": {} + "1157": { + "evolutions": [ + { + "pokemon": 166, + "form": 1160 + } + ] + } }, "attack": 72, "defense": 118, @@ -3046,8 +4006,11 @@ "little": true }, "166": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1160": {} }, "attack": 107, @@ -3055,9 +4018,19 @@ "stamina": 146 }, "167": { + "types": [ + 4, + 7 + ], "forms": { - "0": {}, - "1163": {} + "1163": { + "evolutions": [ + { + "pokemon": 168, + "form": 1166 + } + ] + } }, "attack": 105, "defense": 73, @@ -3070,8 +4043,11 @@ "little": true }, "168": { + "types": [ + 4, + 7 + ], "forms": { - "0": {}, "1166": {} }, "attack": 161, @@ -3079,6 +4055,10 @@ "stamina": 172 }, "169": { + "types": [ + 3, + 4 + ], "forms": { "202": {} }, @@ -3087,9 +4067,19 @@ "stamina": 198 }, "170": { + "types": [ + 11, + 13 + ], "forms": { - "0": {}, - "1169": {} + "1169": { + "evolutions": [ + { + "pokemon": 171, + "form": 1172 + } + ] + } }, "attack": 106, "defense": 97, @@ -3102,8 +4092,11 @@ "little": true }, "171": { + "types": [ + 11, + 13 + ], "forms": { - "0": {}, "1172": {} }, "attack": 146, @@ -3111,9 +4104,18 @@ "stamina": 268 }, "172": { + "types": [ + 13 + ], "forms": { - "0": {}, - "1175": {} + "1175": { + "evolutions": [ + { + "pokemon": 25, + "form": 598 + } + ] + } }, "attack": 77, "defense": 53, @@ -3126,9 +4128,18 @@ "little": true }, "173": { + "types": [ + 18 + ], "forms": { - "0": {}, - "1178": {} + "1178": { + "evolutions": [ + { + "pokemon": 35, + "form": 981 + } + ] + } }, "attack": 75, "defense": 79, @@ -3141,9 +4152,19 @@ "little": true }, "174": { + "types": [ + 1, + 18 + ], "forms": { - "0": {}, - "1181": {} + "1181": { + "evolutions": [ + { + "pokemon": 39, + "form": 987 + } + ] + } }, "attack": 69, "defense": 32, @@ -3156,9 +4177,21 @@ "little": true }, "175": { + "types": [ + 18 + ], "forms": { - "0": {}, - "1184": {} + "1184": { + "evolutions": [ + { + "pokemon": 176, + "form": 1187 + } + ], + "costume_override_evos": [ + 12 + ] + } }, "attack": 67, "defense": 116, @@ -3174,9 +4207,22 @@ "little": true }, "176": { + "types": [ + 3, + 18 + ], "forms": { - "0": {}, - "1187": {} + "1187": { + "evolutions": [ + { + "pokemon": 468, + "form": 1826 + } + ], + "costume_override_evos": [ + 12 + ] + } }, "attack": 139, "defense": 181, @@ -3191,9 +4237,19 @@ ] }, "177": { + "types": [ + 3, + 14 + ], "forms": { - "0": {}, - "1190": {} + "1190": { + "evolutions": [ + { + "pokemon": 178, + "form": 1193 + } + ] + } }, "attack": 134, "defense": 89, @@ -3206,8 +4262,11 @@ "little": true }, "178": { + "types": [ + 3, + 14 + ], "forms": { - "0": {}, "1193": {} }, "attack": 192, @@ -3215,6 +4274,9 @@ "stamina": 163 }, "179": { + "types": [ + 13 + ], "forms": { "646": { "evolutions": [ @@ -3237,6 +4299,9 @@ "little": true }, "180": { + "types": [ + 13 + ], "forms": { "649": { "evolutions": [ @@ -3258,6 +4323,9 @@ ] }, "181": { + "types": [ + 13 + ], "forms": { "652": { "temp_evolutions": { @@ -3277,6 +4345,9 @@ } }, "182": { + "types": [ + 12 + ], "forms": { "274": {} }, @@ -3285,9 +4356,19 @@ "stamina": 181 }, "183": { + "types": [ + 11, + 18 + ], "forms": { - "0": {}, - "1196": {} + "1196": { + "evolutions": [ + { + "pokemon": 184, + "form": 1199 + } + ] + } }, "attack": 37, "defense": 93, @@ -3299,8 +4380,11 @@ ] }, "184": { + "types": [ + 11, + 18 + ], "forms": { - "0": {}, "1199": {} }, "attack": 112, @@ -3308,8 +4392,10 @@ "stamina": 225 }, "185": { + "types": [ + 6 + ], "forms": { - "0": {}, "1202": {} }, "attack": 167, @@ -3317,6 +4403,9 @@ "stamina": 172 }, "186": { + "types": [ + 11 + ], "forms": { "244": {} }, @@ -3325,6 +4414,10 @@ "stamina": 207 }, "187": { + "types": [ + 3, + 12 + ], "forms": { "1205": { "evolutions": [ @@ -3347,6 +4440,10 @@ "little": true }, "188": { + "types": [ + 3, + 12 + ], "forms": { "1208": { "evolutions": [ @@ -3368,6 +4465,10 @@ ] }, "189": { + "types": [ + 3, + 12 + ], "forms": { "1211": {} }, @@ -3376,6 +4477,9 @@ "stamina": 181 }, "190": { + "types": [ + 1 + ], "forms": { "1214": { "evolutions": [ @@ -3398,9 +4502,18 @@ "little": true }, "191": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1217": {} + "1217": { + "evolutions": [ + { + "pokemon": 192, + "form": 1220 + } + ] + } }, "attack": 55, "defense": 55, @@ -3413,8 +4526,10 @@ "little": true }, "192": { + "types": [ + 12 + ], "forms": { - "0": {}, "1220": {} }, "attack": 185, @@ -3422,9 +4537,19 @@ "stamina": 181 }, "193": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, - "1223": {} + "1223": { + "evolutions": [ + { + "pokemon": 469, + "form": 1829 + } + ] + } }, "attack": 154, "defense": 94, @@ -3437,6 +4562,10 @@ "little": true }, "194": { + "types": [ + 5, + 11 + ], "forms": { "1226": { "evolutions": [ @@ -3447,6 +4576,10 @@ ] }, "3009": { + "types": [ + 4, + 5 + ], "evolutions": [ { "pokemon": 980 @@ -3466,6 +4599,10 @@ "little": true }, "195": { + "types": [ + 5, + 11 + ], "forms": { "1229": {} }, @@ -3474,6 +4611,9 @@ "stamina": 216 }, "196": { + "types": [ + 14 + ], "forms": { "1232": {}, "2847": {} @@ -3483,6 +4623,9 @@ "stamina": 163 }, "197": { + "types": [ + 17 + ], "forms": { "1235": {}, "2848": {} @@ -3492,6 +4635,10 @@ "stamina": 216 }, "198": { + "types": [ + 3, + 17 + ], "forms": { "855": { "evolutions": [ @@ -3514,12 +4661,20 @@ "little": true }, "199": { + "types": [ + 11, + 14 + ], "forms": { "1238": {}, "2584": { "attack": 190, "defense": 180, - "stamina": 216 + "stamina": 216, + "types": [ + 4, + 14 + ] }, "2734": {} }, @@ -3528,6 +4683,9 @@ "stamina": 216 }, "200": { + "types": [ + 8 + ], "forms": { "719": { "evolutions": [ @@ -3549,6 +4707,9 @@ "little": true }, "201": { + "types": [ + 14 + ], "forms": { "1": {}, "2": {}, @@ -3584,6 +4745,9 @@ "stamina": 134 }, "202": { + "types": [ + 14 + ], "forms": { "602": {}, "2328": {} @@ -3593,21 +4757,28 @@ "stamina": 382 }, "203": { + "evolutions": [ + { + "pokemon": 981, + "form": 3292 + } + ], + "types": [ + 1, + 14 + ], "forms": { - "0": {}, "1241": {} }, "attack": 182, "defense": 133, "stamina": 172, - "evolutions": [ - { - "pokemon": 981 - } - ], "little": true }, "204": { + "types": [ + 7 + ], "forms": { "1244": { "evolutions": [ @@ -3630,6 +4801,10 @@ "little": true }, "205": { + "types": [ + 7, + 9 + ], "forms": { "1247": {} }, @@ -3638,9 +4813,22 @@ "stamina": 181 }, "206": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1250": {} + "1250": { + "evolutions": [ + { + "pokemon": 982, + "form": 2994 + }, + { + "pokemon": 982, + "form": 2995 + } + ] + } }, "attack": 131, "defense": 128, @@ -3649,11 +4837,19 @@ { "pokemon": 982, "form": 2994 + }, + { + "pokemon": 982, + "form": 2995 } ], "little": true }, "207": { + "types": [ + 3, + 5 + ], "forms": { "803": { "evolutions": [ @@ -3676,6 +4872,10 @@ "little": true }, "208": { + "types": [ + 5, + 9 + ], "forms": { "905": { "temp_evolutions": { @@ -3695,6 +4895,9 @@ } }, "209": { + "types": [ + 18 + ], "forms": { "1253": { "evolutions": [ @@ -3717,6 +4920,9 @@ "little": true }, "210": { + "types": [ + 18 + ], "forms": { "1256": {} }, @@ -3725,12 +4931,20 @@ "stamina": 207 }, "211": { + "types": [ + 4, + 11 + ], "forms": { "1259": {}, "2788": { "attack": 184, "defense": 151, "stamina": 163, + "types": [ + 4, + 17 + ], "evolutions": [ { "pokemon": 904 @@ -3743,6 +4957,10 @@ "stamina": 163 }, "212": { + "types": [ + 7, + 9 + ], "forms": { "250": { "temp_evolutions": { @@ -3762,6 +4980,10 @@ } }, "213": { + "types": [ + 6, + 7 + ], "forms": { "827": {} }, @@ -3770,8 +4992,11 @@ "stamina": 85 }, "214": { + "types": [ + 2, + 7 + ], "forms": { - "0": {}, "1262": { "temp_evolutions": { "1": {} @@ -3790,6 +5015,10 @@ } }, "215": { + "types": [ + 15, + 17 + ], "forms": { "797": { "evolutions": [ @@ -3800,6 +5029,10 @@ ] }, "2794": { + "types": [ + 2, + 4 + ], "evolutions": [ { "pokemon": 903 @@ -3819,6 +5052,9 @@ "little": true }, "216": { + "types": [ + 1 + ], "forms": { "1265": { "evolutions": [ @@ -3841,6 +5077,9 @@ "little": true }, "217": { + "types": [ + 1 + ], "forms": { "1268": { "evolutions": [ @@ -3860,9 +5099,18 @@ ] }, "218": { + "types": [ + 10 + ], "forms": { - "0": {}, - "1271": {} + "1271": { + "evolutions": [ + { + "pokemon": 219, + "form": 1274 + } + ] + } }, "attack": 118, "defense": 71, @@ -3875,8 +5123,11 @@ "little": true }, "219": { + "types": [ + 6, + 10 + ], "forms": { - "0": {}, "1274": {} }, "attack": 139, @@ -3884,6 +5135,10 @@ "stamina": 137 }, "220": { + "types": [ + 5, + 15 + ], "forms": { "1277": { "evolutions": [ @@ -3906,6 +5161,10 @@ "little": true }, "221": { + "types": [ + 5, + 15 + ], "forms": { "1280": { "evolutions": [ @@ -3927,12 +5186,19 @@ ] }, "222": { + "types": [ + 6, + 11 + ], "forms": { "1283": {}, "2340": { "attack": 116, "defense": 182, "stamina": 155, + "types": [ + 8 + ], "evolutions": [ { "pokemon": 864, @@ -3943,19 +5209,21 @@ }, "attack": 118, "defense": 156, - "stamina": 146, - "evolutions": [ - { - "pokemon": 864, - "form": 2507 - } - ], - "little": true + "stamina": 146 }, "223": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1286": {} + "1286": { + "evolutions": [ + { + "pokemon": 224, + "form": 1289 + } + ] + } }, "attack": 127, "defense": 69, @@ -3968,8 +5236,10 @@ "little": true }, "224": { + "types": [ + 11 + ], "forms": { - "0": {}, "1289": {} }, "attack": 197, @@ -3977,6 +5247,10 @@ "stamina": 181 }, "225": { + "types": [ + 3, + 15 + ], "forms": { "938": {}, "2671": {} @@ -3986,8 +5260,11 @@ "stamina": 128 }, "226": { + "types": [ + 3, + 11 + ], "forms": { - "0": {}, "1292": {} }, "attack": 148, @@ -3995,14 +5272,34 @@ "stamina": 163 }, "227": { + "types": [ + 3, + 9 + ], "forms": { - "1295": {} + "1295": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 148, "defense": 226, - "stamina": 163 + "stamina": 163, + "temp_evolutions": { + "1": { + "attack": 273, + "defense": 228, + "stamina": 163, + "unreleased": true + } + } }, "228": { + "types": [ + 10, + 17 + ], "forms": { "229": { "evolutions": [ @@ -4025,6 +5322,10 @@ "little": true }, "229": { + "types": [ + 10, + 17 + ], "forms": { "232": { "temp_evolutions": { @@ -4044,6 +5345,10 @@ } }, "230": { + "types": [ + 11, + 16 + ], "forms": { "1298": {} }, @@ -4052,9 +5357,18 @@ "stamina": 181 }, "231": { + "types": [ + 5 + ], "forms": { - "0": {}, - "1301": {} + "1301": { + "evolutions": [ + { + "pokemon": 232, + "form": 1304 + } + ] + } }, "attack": 107, "defense": 98, @@ -4067,8 +5381,10 @@ "little": true }, "232": { + "types": [ + 5 + ], "forms": { - "0": {}, "1304": {} }, "attack": 214, @@ -4076,6 +5392,9 @@ "stamina": 207 }, "233": { + "types": [ + 1 + ], "forms": { "680": { "evolutions": [ @@ -4097,22 +5416,34 @@ ] }, "234": { - "forms": { - "941": {} - }, - "attack": 192, - "defense": 131, - "stamina": 177, "evolutions": [ { - "pokemon": 899 + "pokemon": 899, + "form": 3218 } ], - "little": true - }, - "235": { + "types": [ + 1 + ], + "forms": { + "941": { + "evolutions": [ + { + "pokemon": 899 + } + ] + } + }, + "attack": 192, + "defense": 131, + "stamina": 177, + "little": true + }, + "235": { + "types": [ + 1 + ], "forms": { - "0": {}, "1307": {} }, "attack": 40, @@ -4120,9 +5451,26 @@ "stamina": 146 }, "236": { + "types": [ + 2 + ], "forms": { - "0": {}, - "1310": {} + "1310": { + "evolutions": [ + { + "pokemon": 106, + "form": 713 + }, + { + "pokemon": 107, + "form": 277 + }, + { + "pokemon": 237, + "form": 1313 + } + ] + } }, "attack": 64, "defense": 64, @@ -4141,8 +5489,10 @@ "little": true }, "237": { + "types": [ + 2 + ], "forms": { - "0": {}, "1313": {} }, "attack": 173, @@ -4150,9 +5500,19 @@ "stamina": 137 }, "238": { + "types": [ + 14, + 15 + ], "forms": { - "0": {}, - "1316": {} + "1316": { + "evolutions": [ + { + "pokemon": 124, + "form": 1083 + } + ] + } }, "attack": 153, "defense": 91, @@ -4165,9 +5525,18 @@ "little": true }, "239": { + "types": [ + 13 + ], "forms": { - "0": {}, - "1319": {} + "1319": { + "evolutions": [ + { + "pokemon": 125, + "form": 640 + } + ] + } }, "attack": 135, "defense": 101, @@ -4180,9 +5549,18 @@ "little": true }, "240": { + "types": [ + 10 + ], "forms": { - "0": {}, - "1322": {} + "1322": { + "evolutions": [ + { + "pokemon": 126, + "form": 634 + } + ] + } }, "attack": 151, "defense": 99, @@ -4195,8 +5573,10 @@ "little": true }, "241": { + "types": [ + 1 + ], "forms": { - "0": {}, "1325": {} }, "attack": 157, @@ -4204,8 +5584,10 @@ "stamina": 216 }, "242": { + "types": [ + 1 + ], "forms": { - "0": {}, "1328": {} }, "attack": 129, @@ -4213,6 +5595,9 @@ "stamina": 496 }, "243": { + "types": [ + 13 + ], "forms": { "1331": {}, "2731": {} @@ -4222,6 +5607,9 @@ "stamina": 207 }, "244": { + "types": [ + 10 + ], "forms": { "1334": {}, "2732": {} @@ -4231,6 +5619,9 @@ "stamina": 251 }, "245": { + "types": [ + 11 + ], "forms": { "1337": {}, "2733": {} @@ -4240,6 +5631,10 @@ "stamina": 225 }, "246": { + "types": [ + 5, + 6 + ], "forms": { "313": { "evolutions": [ @@ -4262,6 +5657,10 @@ "little": true }, "247": { + "types": [ + 5, + 6 + ], "forms": { "316": { "evolutions": [ @@ -4283,6 +5682,10 @@ ] }, "248": { + "types": [ + 6, + 17 + ], "forms": { "319": { "temp_evolutions": { @@ -4302,6 +5705,10 @@ } }, "249": { + "types": [ + 3, + 14 + ], "forms": { "1340": {}, "2729": {} @@ -4311,6 +5718,10 @@ "stamina": 235 }, "250": { + "types": [ + 3, + 10 + ], "forms": { "1343": {}, "2730": {} @@ -4320,8 +5731,11 @@ "stamina": 214 }, "251": { + "types": [ + 12, + 14 + ], "forms": { - "0": {}, "1346": {} }, "attack": 210, @@ -4329,9 +5743,18 @@ "stamina": 225 }, "252": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1349": {} + "1349": { + "evolutions": [ + { + "pokemon": 253, + "form": 1352 + } + ] + } }, "attack": 124, "defense": 94, @@ -4344,9 +5767,18 @@ "little": true }, "253": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1352": {} + "1352": { + "evolutions": [ + { + "pokemon": 254, + "form": 1355 + } + ] + } }, "attack": 172, "defense": 120, @@ -4358,8 +5790,10 @@ ] }, "254": { + "types": [ + 12 + ], "forms": { - "0": {}, "1355": { "temp_evolutions": { "1": {} @@ -4378,6 +5812,9 @@ } }, "255": { + "types": [ + 10 + ], "forms": { "1358": { "evolutions": [ @@ -4400,6 +5837,10 @@ "little": true }, "256": { + "types": [ + 2, + 10 + ], "forms": { "1361": { "evolutions": [ @@ -4421,6 +5862,10 @@ ] }, "257": { + "types": [ + 2, + 10 + ], "forms": { "1364": { "temp_evolutions": { @@ -4440,6 +5885,9 @@ } }, "258": { + "types": [ + 11 + ], "forms": { "205": { "evolutions": [ @@ -4462,6 +5910,10 @@ "little": true }, "259": { + "types": [ + 5, + 11 + ], "forms": { "208": { "evolutions": [ @@ -4483,6 +5935,10 @@ ] }, "260": { + "types": [ + 5, + 11 + ], "forms": { "211": { "temp_evolutions": { @@ -4502,6 +5958,9 @@ } }, "261": { + "types": [ + 17 + ], "forms": { "1367": { "evolutions": [ @@ -4524,6 +5983,9 @@ "little": true }, "262": { + "types": [ + 17 + ], "forms": { "1370": {} }, @@ -4532,6 +5994,9 @@ "stamina": 172 }, "263": { + "types": [ + 1 + ], "forms": { "945": { "evolutions": [ @@ -4542,6 +6007,10 @@ ] }, "946": { + "types": [ + 1, + 17 + ], "evolutions": [ { "pokemon": 264, @@ -4562,9 +6031,16 @@ "little": true }, "264": { + "types": [ + 1 + ], "forms": { "947": {}, "948": { + "types": [ + 1, + 17 + ], "evolutions": [ { "pokemon": 862, @@ -4578,9 +6054,22 @@ "stamina": 186 }, "265": { + "types": [ + 7 + ], "forms": { - "0": {}, - "600": {}, + "600": { + "evolutions": [ + { + "pokemon": 266, + "form": 1379 + }, + { + "pokemon": 268, + "form": 1385 + } + ] + }, "2327": {} }, "attack": 75, @@ -4597,9 +6086,18 @@ "little": true }, "266": { + "types": [ + 7 + ], "forms": { - "0": {}, - "1379": {} + "1379": { + "evolutions": [ + { + "pokemon": 267, + "form": 1382 + } + ] + } }, "attack": 60, "defense": 77, @@ -4611,8 +6109,11 @@ ] }, "267": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1382": {} }, "attack": 189, @@ -4620,9 +6121,18 @@ "stamina": 155 }, "268": { + "types": [ + 7 + ], "forms": { - "0": {}, - "1385": {} + "1385": { + "evolutions": [ + { + "pokemon": 269, + "form": 1388 + } + ] + } }, "attack": 60, "defense": 77, @@ -4634,8 +6144,11 @@ ] }, "269": { + "types": [ + 4, + 7 + ], "forms": { - "0": {}, "1388": {} }, "attack": 98, @@ -4643,9 +6156,19 @@ "stamina": 155 }, "270": { + "types": [ + 11, + 12 + ], "forms": { - "0": {}, - "1391": {} + "1391": { + "evolutions": [ + { + "pokemon": 271, + "form": 1394 + } + ] + } }, "attack": 71, "defense": 77, @@ -4658,9 +6181,19 @@ "little": true }, "271": { + "types": [ + 11, + 12 + ], "forms": { - "0": {}, - "1394": {} + "1394": { + "evolutions": [ + { + "pokemon": 272, + "form": 1397 + } + ] + } }, "attack": 112, "defense": 119, @@ -4672,8 +6205,11 @@ ] }, "272": { + "types": [ + 11, + 12 + ], "forms": { - "0": {}, "1397": {} }, "attack": 173, @@ -4681,6 +6217,9 @@ "stamina": 190 }, "273": { + "types": [ + 12 + ], "forms": { "625": { "evolutions": [ @@ -4703,6 +6242,10 @@ "little": true }, "274": { + "types": [ + 12, + 17 + ], "forms": { "628": { "evolutions": [ @@ -4724,6 +6267,10 @@ ] }, "275": { + "types": [ + 12, + 17 + ], "forms": { "631": {} }, @@ -4732,9 +6279,19 @@ "stamina": 207 }, "276": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "1400": {} + "1400": { + "evolutions": [ + { + "pokemon": 277, + "form": 1403 + } + ] + } }, "attack": 106, "defense": 61, @@ -4747,8 +6304,11 @@ "little": true }, "277": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, "1403": {} }, "attack": 185, @@ -4756,9 +6316,19 @@ "stamina": 155 }, "278": { + "types": [ + 3, + 11 + ], "forms": { - "0": {}, - "1406": {} + "1406": { + "evolutions": [ + { + "pokemon": 279, + "form": 1409 + } + ] + } }, "attack": 106, "defense": 61, @@ -4771,8 +6341,11 @@ "little": true }, "279": { + "types": [ + 3, + 11 + ], "forms": { - "0": {}, "1409": {} }, "attack": 175, @@ -4780,6 +6353,10 @@ "stamina": 155 }, "280": { + "types": [ + 14, + 18 + ], "forms": { "292": { "evolutions": [ @@ -4802,6 +6379,10 @@ "little": true }, "281": { + "types": [ + 14, + 18 + ], "forms": { "295": { "evolutions": [ @@ -4833,6 +6414,10 @@ ] }, "282": { + "types": [ + 14, + 18 + ], "forms": { "298": { "temp_evolutions": { @@ -4852,9 +6437,19 @@ } }, "283": { + "types": [ + 7, + 11 + ], "forms": { - "0": {}, - "1412": {} + "1412": { + "evolutions": [ + { + "pokemon": 284, + "form": 1415 + } + ] + } }, "attack": 93, "defense": 87, @@ -4867,8 +6462,11 @@ "little": true }, "284": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1415": {} }, "attack": 192, @@ -4876,9 +6474,18 @@ "stamina": 172 }, "285": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1418": {} + "1418": { + "evolutions": [ + { + "pokemon": 286, + "form": 1421 + } + ] + } }, "attack": 74, "defense": 110, @@ -4891,8 +6498,11 @@ "little": true }, "286": { + "types": [ + 2, + 12 + ], "forms": { - "0": {}, "1421": {} }, "attack": 241, @@ -4900,9 +6510,18 @@ "stamina": 155 }, "287": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1424": {} + "1424": { + "evolutions": [ + { + "pokemon": 288, + "form": 1427 + } + ] + } }, "attack": 104, "defense": 92, @@ -4915,9 +6534,18 @@ "little": true }, "288": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1427": {} + "1427": { + "evolutions": [ + { + "pokemon": 289, + "form": 1430 + } + ] + } }, "attack": 159, "defense": 145, @@ -4929,8 +6557,10 @@ ] }, "289": { + "types": [ + 1 + ], "forms": { - "0": {}, "1430": {} }, "attack": 290, @@ -4938,26 +6568,40 @@ "stamina": 284 }, "290": { - "forms": { - "0": {}, - "1433": {} - }, - "attack": 80, - "defense": 126, - "stamina": 104, "evolutions": [ { "pokemon": 291 }, { - "pokemon": 292 + "pokemon": 292, + "form": 1439 } ], + "types": [ + 5, + 7 + ], + "forms": { + "1433": { + "evolutions": [ + { + "pokemon": 291, + "form": 1436 + } + ] + } + }, + "attack": 80, + "defense": 126, + "stamina": 104, "little": true }, "291": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1436": {} }, "attack": 199, @@ -4965,8 +6609,11 @@ "stamina": 156 }, "292": { + "types": [ + 7, + 8 + ], "forms": { - "0": {}, "1439": {} }, "attack": 153, @@ -4974,6 +6621,9 @@ "stamina": 1 }, "293": { + "types": [ + 1 + ], "forms": { "1442": { "evolutions": [ @@ -4994,6 +6644,9 @@ "little": true }, "294": { + "types": [ + 1 + ], "forms": { "1445": { "evolutions": [ @@ -5013,6 +6666,9 @@ ] }, "295": { + "types": [ + 1 + ], "forms": { "1448": {} }, @@ -5021,6 +6677,9 @@ "stamina": 232 }, "296": { + "types": [ + 2 + ], "forms": { "1451": { "evolutions": [ @@ -5043,6 +6702,9 @@ "little": true }, "297": { + "types": [ + 2 + ], "forms": { "1454": {} }, @@ -5051,9 +6713,19 @@ "stamina": 302 }, "298": { + "types": [ + 1, + 18 + ], "forms": { - "0": {}, - "1457": {} + "1457": { + "evolutions": [ + { + "pokemon": 183, + "form": 1196 + } + ] + } }, "attack": 36, "defense": 71, @@ -5066,6 +6738,9 @@ "little": true }, "299": { + "types": [ + 6 + ], "forms": { "1460": { "evolutions": [ @@ -5087,9 +6762,18 @@ "little": true }, "300": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1463": {} + "1463": { + "evolutions": [ + { + "pokemon": 301, + "form": 1466 + } + ] + } }, "attack": 84, "defense": 79, @@ -5102,8 +6786,10 @@ "little": true }, "301": { + "types": [ + 1 + ], "forms": { - "0": {}, "1466": {} }, "attack": 132, @@ -5111,6 +6797,10 @@ "stamina": 172 }, "302": { + "types": [ + 8, + 17 + ], "forms": { "923": { "temp_evolutions": { @@ -5136,6 +6826,10 @@ } }, "303": { + "types": [ + 9, + 18 + ], "forms": { "833": { "temp_evolutions": { @@ -5155,6 +6849,10 @@ } }, "304": { + "types": [ + 6, + 9 + ], "forms": { "1469": { "evolutions": [ @@ -5177,6 +6875,10 @@ "little": true }, "305": { + "types": [ + 6, + 9 + ], "forms": { "1472": { "evolutions": [ @@ -5198,6 +6900,10 @@ ] }, "306": { + "types": [ + 6, + 9 + ], "forms": { "1475": { "temp_evolutions": { @@ -5217,9 +6923,19 @@ } }, "307": { + "types": [ + 2, + 14 + ], "forms": { - "0": {}, - "1478": {} + "1478": { + "evolutions": [ + { + "pokemon": 308, + "form": 1481 + } + ] + } }, "attack": 78, "defense": 107, @@ -5232,8 +6948,11 @@ "little": true }, "308": { + "types": [ + 2, + 14 + ], "forms": { - "0": {}, "1481": { "temp_evolutions": { "1": {} @@ -5252,6 +6971,9 @@ } }, "309": { + "types": [ + 13 + ], "forms": { "1484": { "evolutions": [ @@ -5274,6 +6996,9 @@ "little": true }, "310": { + "types": [ + 13 + ], "forms": { "1487": { "temp_evolutions": { @@ -5293,8 +7018,10 @@ } }, "311": { + "types": [ + 13 + ], "forms": { - "0": {}, "1490": {} }, "attack": 167, @@ -5302,8 +7029,10 @@ "stamina": 155 }, "312": { + "types": [ + 13 + ], "forms": { - "0": {}, "1493": {} }, "attack": 147, @@ -5311,8 +7040,10 @@ "stamina": 155 }, "313": { + "types": [ + 7 + ], "forms": { - "0": {}, "1496": {} }, "attack": 143, @@ -5320,8 +7051,10 @@ "stamina": 163 }, "314": { + "types": [ + 7 + ], "forms": { - "0": {}, "1499": {} }, "attack": 143, @@ -5329,9 +7062,19 @@ "stamina": 163 }, "315": { + "types": [ + 4, + 12 + ], "forms": { - "0": {}, - "1502": {} + "1502": { + "evolutions": [ + { + "pokemon": 407, + "form": 1691 + } + ] + } }, "attack": 186, "defense": 131, @@ -5343,9 +7086,18 @@ ] }, "316": { + "types": [ + 4 + ], "forms": { - "0": {}, - "1505": {} + "1505": { + "evolutions": [ + { + "pokemon": 317, + "form": 1508 + } + ] + } }, "attack": 80, "defense": 99, @@ -5358,8 +7110,10 @@ "little": true }, "317": { + "types": [ + 4 + ], "forms": { - "0": {}, "1508": {} }, "attack": 140, @@ -5367,6 +7121,10 @@ "stamina": 225 }, "318": { + "types": [ + 11, + 17 + ], "forms": { "734": { "evolutions": [ @@ -5389,6 +7147,10 @@ "little": true }, "319": { + "types": [ + 11, + 17 + ], "forms": { "737": { "temp_evolutions": { @@ -5403,29 +7165,40 @@ "1": { "attack": 289, "defense": 144, - "stamina": 172, - "unreleased": true + "stamina": 172 } } }, "320": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1511": {} + "1511": { + "evolutions": [ + { + "pokemon": 321, + "form": 1514 + } + ] + } }, "attack": 136, "defense": 68, "stamina": 277, "evolutions": [ { - "pokemon": 321 + "pokemon": 321, + "form": 1514 } ], "little": true }, "321": { + "types": [ + 11 + ], "forms": { - "0": {}, "1514": {} }, "attack": 175, @@ -5433,9 +7206,19 @@ "stamina": 347 }, "322": { + "types": [ + 5, + 10 + ], "forms": { - "0": {}, - "1517": {} + "1517": { + "evolutions": [ + { + "pokemon": 323, + "form": 1520 + } + ] + } }, "attack": 119, "defense": 79, @@ -5448,8 +7231,11 @@ "little": true }, "323": { + "types": [ + 5, + 10 + ], "forms": { - "0": {}, "1520": { "temp_evolutions": { "1": {} @@ -5463,14 +7249,15 @@ "1": { "attack": 253, "defense": 183, - "stamina": 172, - "unreleased": true + "stamina": 172 } } }, "324": { + "types": [ + 10 + ], "forms": { - "0": {}, "1523": {} }, "attack": 151, @@ -5478,9 +7265,18 @@ "stamina": 172 }, "325": { + "types": [ + 14 + ], "forms": { - "0": {}, - "1526": {} + "1526": { + "evolutions": [ + { + "pokemon": 326, + "form": 1529 + } + ] + } }, "attack": 125, "defense": 122, @@ -5493,8 +7289,10 @@ "little": true }, "326": { + "types": [ + 14 + ], "forms": { - "0": {}, "1529": {} }, "attack": 171, @@ -5502,6 +7300,9 @@ "stamina": 190 }, "327": { + "types": [ + 1 + ], "forms": { "37": {}, "38": {}, @@ -5529,6 +7330,9 @@ "stamina": 155 }, "328": { + "types": [ + 5 + ], "forms": { "746": { "evolutions": [ @@ -5551,6 +7355,10 @@ "little": true }, "329": { + "types": [ + 5, + 16 + ], "forms": { "749": { "evolutions": [ @@ -5572,6 +7380,10 @@ ] }, "330": { + "types": [ + 5, + 16 + ], "forms": { "752": {} }, @@ -5580,6 +7392,9 @@ "stamina": 190 }, "331": { + "types": [ + 12 + ], "forms": { "610": { "evolutions": [ @@ -5602,6 +7417,10 @@ "little": true }, "332": { + "types": [ + 12, + 17 + ], "forms": { "613": {} }, @@ -5610,9 +7429,19 @@ "stamina": 172 }, "333": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "1532": {} + "1532": { + "evolutions": [ + { + "pokemon": 334, + "form": 1535 + } + ] + } }, "attack": 76, "defense": 132, @@ -5625,9 +7454,16 @@ "little": true }, "334": { + "types": [ + 3, + 16 + ], "forms": { - "0": {}, - "1535": {} + "1535": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 141, "defense": 201, @@ -5641,8 +7477,10 @@ } }, "335": { + "types": [ + 1 + ], "forms": { - "0": {}, "1538": {} }, "attack": 222, @@ -5650,8 +7488,10 @@ "stamina": 177 }, "336": { + "types": [ + 4 + ], "forms": { - "0": {}, "1541": {} }, "attack": 196, @@ -5659,8 +7499,11 @@ "stamina": 177 }, "337": { + "types": [ + 6, + 14 + ], "forms": { - "0": {}, "1544": {} }, "attack": 178, @@ -5668,8 +7511,11 @@ "stamina": 207 }, "338": { + "types": [ + 6, + 14 + ], "forms": { - "0": {}, "1547": {} }, "attack": 178, @@ -5677,9 +7523,19 @@ "stamina": 207 }, "339": { + "types": [ + 5, + 11 + ], "forms": { - "0": {}, - "1550": {} + "1550": { + "evolutions": [ + { + "pokemon": 340, + "form": 1553 + } + ] + } }, "attack": 93, "defense": 82, @@ -5692,8 +7548,11 @@ "little": true }, "340": { + "types": [ + 5, + 11 + ], "forms": { - "0": {}, "1553": {} }, "attack": 151, @@ -5701,9 +7560,18 @@ "stamina": 242 }, "341": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1556": {} + "1556": { + "evolutions": [ + { + "pokemon": 342, + "form": 1559 + } + ] + } }, "attack": 141, "defense": 99, @@ -5716,8 +7584,11 @@ "little": true }, "342": { + "types": [ + 11, + 17 + ], "forms": { - "0": {}, "1559": {} }, "attack": 224, @@ -5725,9 +7596,19 @@ "stamina": 160 }, "343": { + "types": [ + 5, + 14 + ], "forms": { - "0": {}, - "1562": {} + "1562": { + "evolutions": [ + { + "pokemon": 344, + "form": 1565 + } + ] + } }, "attack": 77, "defense": 124, @@ -5740,8 +7621,11 @@ "little": true }, "344": { + "types": [ + 5, + 14 + ], "forms": { - "0": {}, "1565": {} }, "attack": 140, @@ -5749,6 +7633,10 @@ "stamina": 155 }, "345": { + "types": [ + 6, + 12 + ], "forms": { "1568": { "evolutions": [ @@ -5771,6 +7659,10 @@ "little": true }, "346": { + "types": [ + 6, + 12 + ], "forms": { "1571": {} }, @@ -5779,6 +7671,10 @@ "stamina": 200 }, "347": { + "types": [ + 6, + 7 + ], "forms": { "1574": { "evolutions": [ @@ -5801,6 +7697,10 @@ "little": true }, "348": { + "types": [ + 6, + 7 + ], "forms": { "1577": {} }, @@ -5809,9 +7709,18 @@ "stamina": 181 }, "349": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1580": {} + "1580": { + "evolutions": [ + { + "pokemon": 350, + "form": 1583 + } + ] + } }, "attack": 29, "defense": 85, @@ -5824,8 +7733,10 @@ "little": true }, "350": { + "types": [ + 11 + ], "forms": { - "0": {}, "1583": {} }, "attack": 192, @@ -5833,19 +7744,36 @@ "stamina": 216 }, "351": { + "types": [ + 1 + ], "forms": { "29": {}, - "30": {}, - "31": {}, - "32": {} + "30": { + "types": [ + 10 + ] + }, + "31": { + "types": [ + 11 + ] + }, + "32": { + "types": [ + 15 + ] + } }, "attack": 139, "defense": 139, "stamina": 172 }, "352": { + "types": [ + 1 + ], "forms": { - "0": {}, "1586": {} }, "attack": 161, @@ -5853,6 +7781,9 @@ "stamina": 155 }, "353": { + "types": [ + 8 + ], "forms": { "908": { "evolutions": [ @@ -5875,6 +7806,9 @@ "little": true }, "354": { + "types": [ + 8 + ], "forms": { "911": { "temp_evolutions": { @@ -5894,6 +7828,9 @@ } }, "355": { + "types": [ + 8 + ], "forms": { "914": { "evolutions": [ @@ -5922,6 +7859,9 @@ "little": true }, "356": { + "types": [ + 8 + ], "forms": { "917": { "evolutions": [ @@ -5949,8 +7889,11 @@ ] }, "357": { + "types": [ + 3, + 12 + ], "forms": { - "0": {}, "1589": {} }, "attack": 136, @@ -5958,8 +7901,10 @@ "stamina": 223 }, "358": { + "types": [ + 14 + ], "forms": { - "0": {}, "1592": {} }, "attack": 175, @@ -5967,6 +7912,9 @@ "stamina": 181 }, "359": { + "types": [ + 17 + ], "forms": { "830": { "temp_evolutions": { @@ -5986,9 +7934,18 @@ } }, "360": { + "types": [ + 14 + ], "forms": { - "0": {}, - "1595": {} + "1595": { + "evolutions": [ + { + "pokemon": 202, + "form": 602 + } + ] + } }, "attack": 41, "defense": 86, @@ -6001,9 +7958,23 @@ "little": true }, "361": { + "types": [ + 15 + ], "forms": { - "0": {}, - "926": {} + "926": { + "evolutions": [ + { + "pokemon": 362, + "form": 929 + }, + { + "pokemon": 478, + "form": 1844, + "gender_requirement": 2 + } + ] + } }, "attack": 95, "defense": 95, @@ -6020,8 +7991,10 @@ "little": true }, "362": { + "types": [ + 15 + ], "forms": { - "0": {}, "929": { "temp_evolutions": { "1": {} @@ -6040,6 +8013,10 @@ } }, "363": { + "types": [ + 11, + 15 + ], "forms": { "1598": { "evolutions": [ @@ -6062,6 +8039,10 @@ "little": true }, "364": { + "types": [ + 11, + 15 + ], "forms": { "1601": { "evolutions": [ @@ -6083,6 +8064,10 @@ ] }, "365": { + "types": [ + 11, + 15 + ], "forms": { "1604": {} }, @@ -6091,9 +8076,22 @@ "stamina": 242 }, "366": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1607": {} + "1607": { + "evolutions": [ + { + "pokemon": 367, + "form": 1610 + }, + { + "pokemon": 368, + "form": 1613 + } + ] + } }, "attack": 133, "defense": 135, @@ -6109,8 +8107,10 @@ "little": true }, "367": { + "types": [ + 11 + ], "forms": { - "0": {}, "1610": {} }, "attack": 197, @@ -6118,8 +8118,10 @@ "stamina": 146 }, "368": { + "types": [ + 11 + ], "forms": { - "0": {}, "1613": {} }, "attack": 211, @@ -6127,8 +8129,11 @@ "stamina": 146 }, "369": { + "types": [ + 6, + 11 + ], "forms": { - "0": {}, "1616": {} }, "attack": 162, @@ -6136,8 +8141,10 @@ "stamina": 225 }, "370": { + "types": [ + 11 + ], "forms": { - "0": {}, "1619": {} }, "attack": 81, @@ -6145,6 +8152,9 @@ "stamina": 125 }, "371": { + "types": [ + 16 + ], "forms": { "755": { "evolutions": [ @@ -6167,6 +8177,9 @@ "little": true }, "372": { + "types": [ + 16 + ], "forms": { "758": { "evolutions": [ @@ -6188,6 +8201,10 @@ ] }, "373": { + "types": [ + 3, + 16 + ], "forms": { "761": { "temp_evolutions": { @@ -6207,6 +8224,10 @@ } }, "374": { + "types": [ + 9, + 14 + ], "forms": { "764": { "evolutions": [ @@ -6229,6 +8250,10 @@ "little": true }, "375": { + "types": [ + 9, + 14 + ], "forms": { "767": { "evolutions": [ @@ -6250,6 +8275,10 @@ ] }, "376": { + "types": [ + 9, + 14 + ], "forms": { "770": { "temp_evolutions": { @@ -6264,14 +8293,15 @@ "1": { "attack": 300, "defense": 289, - "stamina": 190, - "unreleased": true + "stamina": 190 } } }, "377": { + "types": [ + 6 + ], "forms": { - "0": {}, "1622": {} }, "attack": 179, @@ -6279,8 +8309,10 @@ "stamina": 190 }, "378": { + "types": [ + 15 + ], "forms": { - "0": {}, "1625": {} }, "attack": 179, @@ -6288,8 +8320,10 @@ "stamina": 190 }, "379": { + "types": [ + 9 + ], "forms": { - "0": {}, "1628": {} }, "attack": 143, @@ -6297,6 +8331,10 @@ "stamina": 190 }, "380": { + "types": [ + 14, + 16 + ], "forms": { "1631": { "temp_evolutions": { @@ -6321,6 +8359,10 @@ } }, "381": { + "types": [ + 14, + 16 + ], "forms": { "1634": { "temp_evolutions": { @@ -6345,9 +8387,15 @@ } }, "382": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1637": {} + "1637": { + "temp_evolutions": { + "4": {} + } + } }, "attack": 270, "defense": 228, @@ -6361,9 +8409,15 @@ } }, "383": { + "types": [ + 5 + ], "forms": { - "0": {}, - "1640": {} + "1640": { + "temp_evolutions": { + "4": {} + } + } }, "attack": 270, "defense": 228, @@ -6377,8 +8431,11 @@ } }, "384": { + "types": [ + 3, + 16 + ], "forms": { - "0": {}, "1643": { "temp_evolutions": { "1": {} @@ -6397,8 +8454,11 @@ } }, "385": { + "types": [ + 9, + 14 + ], "forms": { - "0": {}, "1646": {} }, "attack": 210, @@ -6406,6 +8466,9 @@ "stamina": 225 }, "386": { + "types": [ + 14 + ], "forms": { "33": {}, "34": { @@ -6429,6 +8492,9 @@ "stamina": 137 }, "387": { + "types": [ + 12 + ], "forms": { "688": { "evolutions": [ @@ -6451,6 +8517,9 @@ "little": true }, "388": { + "types": [ + 12 + ], "forms": { "691": { "evolutions": [ @@ -6472,6 +8541,10 @@ ] }, "389": { + "types": [ + 5, + 12 + ], "forms": { "694": {} }, @@ -6480,6 +8553,9 @@ "stamina": 216 }, "390": { + "types": [ + 10 + ], "forms": { "818": { "evolutions": [ @@ -6502,6 +8578,10 @@ "little": true }, "391": { + "types": [ + 2, + 10 + ], "forms": { "821": { "evolutions": [ @@ -6523,6 +8603,10 @@ ] }, "392": { + "types": [ + 2, + 10 + ], "forms": { "824": {} }, @@ -6531,9 +8615,18 @@ "stamina": 183 }, "393": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1649": {} + "1649": { + "evolutions": [ + { + "pokemon": 394, + "form": 1652 + } + ] + } }, "attack": 112, "defense": 102, @@ -6546,9 +8639,18 @@ "little": true }, "394": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1652": {} + "1652": { + "evolutions": [ + { + "pokemon": 395, + "form": 1655 + } + ] + } }, "attack": 150, "defense": 139, @@ -6560,8 +8662,11 @@ ] }, "395": { + "types": [ + 9, + 11 + ], "forms": { - "0": {}, "1655": {} }, "attack": 210, @@ -6569,6 +8674,10 @@ "stamina": 197 }, "396": { + "types": [ + 1, + 3 + ], "forms": { "1658": { "evolutions": [ @@ -6591,6 +8700,10 @@ "little": true }, "397": { + "types": [ + 1, + 3 + ], "forms": { "1661": { "evolutions": [ @@ -6612,6 +8725,10 @@ ] }, "398": { + "types": [ + 1, + 3 + ], "forms": { "1664": {} }, @@ -6620,6 +8737,9 @@ "stamina": 198 }, "399": { + "types": [ + 1 + ], "forms": { "1667": { "evolutions": [ @@ -6642,6 +8762,10 @@ "little": true }, "400": { + "types": [ + 1, + 11 + ], "forms": { "1670": {} }, @@ -6650,9 +8774,18 @@ "stamina": 188 }, "401": { + "types": [ + 7 + ], "forms": { - "0": {}, - "1673": {} + "1673": { + "evolutions": [ + { + "pokemon": 402, + "form": 1676 + } + ] + } }, "attack": 45, "defense": 74, @@ -6665,8 +8798,10 @@ "little": true }, "402": { + "types": [ + 7 + ], "forms": { - "0": {}, "1676": {} }, "attack": 160, @@ -6674,9 +8809,18 @@ "stamina": 184 }, "403": { + "types": [ + 13 + ], "forms": { - "0": {}, - "1679": {} + "1679": { + "evolutions": [ + { + "pokemon": 404, + "form": 1682 + } + ] + } }, "attack": 117, "defense": 64, @@ -6689,9 +8833,18 @@ "little": true }, "404": { + "types": [ + 13 + ], "forms": { - "0": {}, - "1682": {} + "1682": { + "evolutions": [ + { + "pokemon": 405, + "form": 1685 + } + ] + } }, "attack": 159, "defense": 95, @@ -6703,8 +8856,10 @@ ] }, "405": { + "types": [ + 13 + ], "forms": { - "0": {}, "1685": {} }, "attack": 232, @@ -6712,9 +8867,19 @@ "stamina": 190 }, "406": { + "types": [ + 4, + 12 + ], "forms": { - "0": {}, - "1688": {} + "1688": { + "evolutions": [ + { + "pokemon": 315, + "form": 1502 + } + ] + } }, "attack": 91, "defense": 109, @@ -6727,8 +8892,11 @@ "little": true }, "407": { + "types": [ + 4, + 12 + ], "forms": { - "0": {}, "1691": {} }, "attack": 243, @@ -6736,9 +8904,18 @@ "stamina": 155 }, "408": { + "types": [ + 6 + ], "forms": { - "0": {}, - "1694": {} + "1694": { + "evolutions": [ + { + "pokemon": 409, + "form": 1697 + } + ] + } }, "attack": 218, "defense": 71, @@ -6751,8 +8928,10 @@ "little": true }, "409": { + "types": [ + 6 + ], "forms": { - "0": {}, "1697": {} }, "attack": 295, @@ -6760,9 +8939,19 @@ "stamina": 219 }, "410": { + "types": [ + 6, + 9 + ], "forms": { - "0": {}, - "1700": {} + "1700": { + "evolutions": [ + { + "pokemon": 411, + "form": 1703 + } + ] + } }, "attack": 76, "defense": 195, @@ -6775,8 +8964,11 @@ "little": true }, "411": { + "types": [ + 6, + 9 + ], "forms": { - "0": {}, "1703": {} }, "attack": 94, @@ -6784,6 +8976,9 @@ "stamina": 155 }, "412": { + "types": [ + 7 + ], "forms": { "118": { "evolutions": [ @@ -6843,13 +9038,26 @@ "little": true }, "413": { + "types": [ + 7, + 12 + ], "forms": { "87": {}, - "88": {}, + "88": { + "types": [ + 5, + 7 + ] + }, "89": { "attack": 127, "defense": 175, - "stamina": 155 + "stamina": 155, + "types": [ + 7, + 9 + ] }, "1709": {} }, @@ -6858,8 +9066,11 @@ "stamina": 155 }, "414": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1712": {} }, "attack": 185, @@ -6867,9 +9078,20 @@ "stamina": 172 }, "415": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, - "1715": {} + "1715": { + "evolutions": [ + { + "pokemon": 416, + "form": 1718, + "gender_requirement": 2 + } + ] + } }, "attack": 59, "defense": 83, @@ -6883,8 +9105,11 @@ "little": true }, "416": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1718": {} }, "attack": 149, @@ -6892,8 +9117,10 @@ "stamina": 172 }, "417": { + "types": [ + 13 + ], "forms": { - "0": {}, "1721": {} }, "attack": 94, @@ -6901,9 +9128,18 @@ "stamina": 155 }, "418": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1724": {} + "1724": { + "evolutions": [ + { + "pokemon": 419, + "form": 1727 + } + ] + } }, "attack": 132, "defense": 67, @@ -6916,8 +9152,10 @@ "little": true }, "419": { + "types": [ + 11 + ], "forms": { - "0": {}, "1727": {} }, "attack": 221, @@ -6925,9 +9163,22 @@ "stamina": 198 }, "420": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1730": {} + "1730": { + "evolutions": [ + { + "pokemon": 421, + "form": 94 + }, + { + "pokemon": 421, + "form": 95 + } + ] + } }, "attack": 108, "defense": 92, @@ -6945,6 +9196,9 @@ "little": true }, "421": { + "types": [ + 12 + ], "forms": { "94": {}, "95": {}, @@ -6955,6 +9209,9 @@ "stamina": 172 }, "422": { + "types": [ + 11 + ], "forms": { "96": { "evolutions": [ @@ -6986,6 +9243,10 @@ "little": true }, "423": { + "types": [ + 5, + 11 + ], "forms": { "98": {}, "99": {}, @@ -6996,6 +9257,9 @@ "stamina": 244 }, "424": { + "types": [ + 1 + ], "forms": { "1742": {} }, @@ -7004,9 +9268,19 @@ "stamina": 181 }, "425": { + "types": [ + 3, + 8 + ], "forms": { - "0": {}, - "1745": {} + "1745": { + "evolutions": [ + { + "pokemon": 426, + "form": 1748 + } + ] + } }, "attack": 117, "defense": 80, @@ -7019,8 +9293,11 @@ "little": true }, "426": { + "types": [ + 3, + 8 + ], "forms": { - "0": {}, "1748": {} }, "attack": 180, @@ -7028,9 +9305,21 @@ "stamina": 312 }, "427": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1751": {} + "1751": { + "evolutions": [ + { + "pokemon": 428, + "form": 1754 + } + ], + "costume_override_evos": [ + 12 + ] + } }, "attack": 130, "defense": 105, @@ -7046,9 +9335,15 @@ "little": true }, "428": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1754": {} + "1754": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 156, "defense": 194, @@ -7062,6 +9357,9 @@ } }, "429": { + "types": [ + 8 + ], "forms": { "722": {} }, @@ -7070,6 +9368,10 @@ "stamina": 155 }, "430": { + "types": [ + 3, + 17 + ], "forms": { "858": {} }, @@ -7078,9 +9380,18 @@ "stamina": 225 }, "431": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1757": {} + "1757": { + "evolutions": [ + { + "pokemon": 432, + "form": 1760 + } + ] + } }, "attack": 109, "defense": 82, @@ -7093,8 +9404,10 @@ "little": true }, "432": { + "types": [ + 1 + ], "forms": { - "0": {}, "1760": {} }, "attack": 172, @@ -7102,9 +9415,18 @@ "stamina": 174 }, "433": { + "types": [ + 14 + ], "forms": { - "0": {}, - "1763": {} + "1763": { + "evolutions": [ + { + "pokemon": 358, + "form": 1592 + } + ] + } }, "attack": 114, "defense": 94, @@ -7117,6 +9439,10 @@ "little": true }, "434": { + "types": [ + 4, + 17 + ], "forms": { "791": { "evolutions": [ @@ -7139,6 +9465,10 @@ "little": true }, "435": { + "types": [ + 4, + 17 + ], "forms": { "794": {} }, @@ -7147,9 +9477,19 @@ "stamina": 230 }, "436": { + "types": [ + 9, + 14 + ], "forms": { - "0": {}, - "1766": {} + "1766": { + "evolutions": [ + { + "pokemon": 437, + "form": 1769 + } + ] + } }, "attack": 43, "defense": 154, @@ -7162,8 +9502,11 @@ "little": true }, "437": { + "types": [ + 9, + 14 + ], "forms": { - "0": {}, "1769": {} }, "attack": 161, @@ -7171,9 +9514,18 @@ "stamina": 167 }, "438": { + "types": [ + 6 + ], "forms": { - "0": {}, - "1772": {} + "1772": { + "evolutions": [ + { + "pokemon": 185, + "form": 1202 + } + ] + } }, "attack": 124, "defense": 133, @@ -7186,9 +9538,22 @@ "little": true }, "439": { + "types": [ + 14, + 18 + ], "forms": { - "0": {}, - "1775": {} + "1775": { + "evolutions": [ + { + "pokemon": 122 + }, + { + "pokemon": 122, + "form": 2339 + } + ] + } }, "attack": 125, "defense": 142, @@ -7205,23 +9570,36 @@ "little": true }, "440": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1778": {} + "1778": { + "evolutions": [ + { + "pokemon": 113, + "form": 1056 + } + ] + } }, "attack": 25, "defense": 77, "stamina": 225, "evolutions": [ { - "pokemon": 113 + "pokemon": 113, + "form": 1056 } ], "little": true }, "441": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, "1781": {} }, "attack": 183, @@ -7229,8 +9607,11 @@ "stamina": 183 }, "442": { + "types": [ + 8, + 17 + ], "forms": { - "0": {}, "1784": {} }, "attack": 169, @@ -7238,6 +9619,10 @@ "stamina": 137 }, "443": { + "types": [ + 5, + 16 + ], "forms": { "861": { "evolutions": [ @@ -7260,6 +9645,10 @@ "little": true }, "444": { + "types": [ + 5, + 16 + ], "forms": { "864": { "evolutions": [ @@ -7281,6 +9670,10 @@ ] }, "445": { + "types": [ + 5, + 16 + ], "forms": { "867": { "temp_evolutions": { @@ -7300,9 +9693,18 @@ } }, "446": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1787": {} + "1787": { + "evolutions": [ + { + "pokemon": 143, + "form": 199 + } + ] + } }, "attack": 137, "defense": 117, @@ -7315,9 +9717,18 @@ "little": true }, "447": { + "types": [ + 2 + ], "forms": { - "0": {}, - "1790": {} + "1790": { + "evolutions": [ + { + "pokemon": 448, + "form": 1793 + } + ] + } }, "attack": 127, "defense": 78, @@ -7330,8 +9741,11 @@ "little": true }, "448": { + "types": [ + 2, + 9 + ], "forms": { - "0": {}, "1793": { "temp_evolutions": { "1": {} @@ -7350,6 +9764,9 @@ } }, "449": { + "types": [ + 5 + ], "forms": { "888": { "evolutions": [ @@ -7372,6 +9789,9 @@ "little": true }, "450": { + "types": [ + 5 + ], "forms": { "891": {} }, @@ -7380,6 +9800,10 @@ "stamina": 239 }, "451": { + "types": [ + 4, + 7 + ], "forms": { "1796": { "evolutions": [ @@ -7402,6 +9826,10 @@ "little": true }, "452": { + "types": [ + 4, + 17 + ], "forms": { "1799": {} }, @@ -7410,9 +9838,22 @@ "stamina": 172 }, "453": { + "types": [ + 2, + 4 + ], "forms": { - "0": {}, - "1802": {} + "1802": { + "evolutions": [ + { + "pokemon": 454, + "form": 1805 + } + ], + "costume_override_evos": [ + 16 + ] + } }, "attack": 116, "defense": 76, @@ -7428,8 +9869,11 @@ "little": true }, "454": { + "types": [ + 2, + 4 + ], "forms": { - "0": {}, "1805": {} }, "attack": 211, @@ -7437,8 +9881,10 @@ "stamina": 195 }, "455": { - "forms": { - "0": {}, + "types": [ + 12 + ], + "forms": { "1808": {} }, "attack": 187, @@ -7446,9 +9892,18 @@ "stamina": 179 }, "456": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1811": {} + "1811": { + "evolutions": [ + { + "pokemon": 457, + "form": 1814 + } + ] + } }, "attack": 96, "defense": 116, @@ -7461,8 +9916,10 @@ "little": true }, "457": { + "types": [ + 11 + ], "forms": { - "0": {}, "1814": {} }, "attack": 142, @@ -7470,9 +9927,19 @@ "stamina": 170 }, "458": { + "types": [ + 3, + 11 + ], "forms": { - "0": {}, - "1817": {} + "1817": { + "evolutions": [ + { + "pokemon": 226, + "form": 1292 + } + ] + } }, "attack": 105, "defense": 179, @@ -7485,6 +9952,10 @@ "little": true }, "459": { + "types": [ + 12, + 15 + ], "forms": { "932": { "evolutions": [ @@ -7507,6 +9978,10 @@ "little": true }, "460": { + "types": [ + 12, + 15 + ], "forms": { "935": { "temp_evolutions": { @@ -7526,6 +10001,10 @@ } }, "461": { + "types": [ + 15, + 17 + ], "forms": { "800": {} }, @@ -7534,6 +10013,10 @@ "stamina": 172 }, "462": { + "types": [ + 9, + 13 + ], "forms": { "661": {} }, @@ -7542,8 +10025,10 @@ "stamina": 172 }, "463": { + "types": [ + 1 + ], "forms": { - "0": {}, "1820": {} }, "attack": 161, @@ -7551,6 +10036,10 @@ "stamina": 242 }, "464": { + "types": [ + 5, + 6 + ], "forms": { "852": {} }, @@ -7559,6 +10048,9 @@ "stamina": 251 }, "465": { + "types": [ + 12 + ], "forms": { "1823": {} }, @@ -7567,6 +10059,9 @@ "stamina": 225 }, "466": { + "types": [ + 13 + ], "forms": { "643": {} }, @@ -7575,6 +10070,9 @@ "stamina": 181 }, "467": { + "types": [ + 10 + ], "forms": { "637": {} }, @@ -7583,8 +10081,11 @@ "stamina": 181 }, "468": { + "types": [ + 3, + 18 + ], "forms": { - "0": {}, "1826": {} }, "attack": 225, @@ -7592,8 +10093,11 @@ "stamina": 198 }, "469": { + "types": [ + 3, + 7 + ], "forms": { - "0": {}, "1829": {} }, "attack": 231, @@ -7601,8 +10105,10 @@ "stamina": 200 }, "470": { + "types": [ + 12 + ], "forms": { - "0": {}, "1832": {} }, "attack": 216, @@ -7610,8 +10116,10 @@ "stamina": 163 }, "471": { + "types": [ + 15 + ], "forms": { - "0": {}, "1835": {} }, "attack": 238, @@ -7619,6 +10127,10 @@ "stamina": 163 }, "472": { + "types": [ + 3, + 5 + ], "forms": { "806": {} }, @@ -7627,6 +10139,10 @@ "stamina": 181 }, "473": { + "types": [ + 5, + 15 + ], "forms": { "1838": {} }, @@ -7635,6 +10151,9 @@ "stamina": 242 }, "474": { + "types": [ + 1 + ], "forms": { "683": {} }, @@ -7643,6 +10162,10 @@ "stamina": 198 }, "475": { + "types": [ + 2, + 14 + ], "forms": { "301": { "temp_evolutions": { @@ -7662,6 +10185,10 @@ } }, "476": { + "types": [ + 6, + 9 + ], "forms": { "1841": {} }, @@ -7670,6 +10197,9 @@ "stamina": 155 }, "477": { + "types": [ + 8 + ], "forms": { "920": {} }, @@ -7678,41 +10208,80 @@ "stamina": 128 }, "478": { + "types": [ + 8, + 15 + ], "forms": { - "0": {}, - "1844": {} + "1844": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 171, "defense": 150, - "stamina": 172 + "stamina": 172, + "temp_evolutions": { + "1": { + "attack": 289, + "defense": 194, + "stamina": 172, + "unreleased": true + } + } }, "479": { + "types": [ + 8, + 13 + ], "forms": { "81": {}, "82": { "attack": 204, "defense": 219, - "stamina": 137 + "stamina": 137, + "types": [ + 13, + 15 + ] }, "83": { "attack": 204, "defense": 219, - "stamina": 137 + "stamina": 137, + "types": [ + 3, + 13 + ] }, "84": { "attack": 204, "defense": 219, - "stamina": 137 + "stamina": 137, + "types": [ + 12, + 13 + ] }, "85": { "attack": 204, "defense": 219, - "stamina": 137 + "stamina": 137, + "types": [ + 11, + 13 + ] }, "86": { "attack": 204, "defense": 219, - "stamina": 137 + "stamina": 137, + "types": [ + 10, + 13 + ] } }, "attack": 185, @@ -7720,8 +10289,10 @@ "stamina": 137 }, "480": { + "types": [ + 14 + ], "forms": { - "0": {}, "1847": {} }, "attack": 156, @@ -7729,8 +10300,10 @@ "stamina": 181 }, "481": { + "types": [ + 14 + ], "forms": { - "0": {}, "1850": {} }, "attack": 212, @@ -7738,8 +10311,10 @@ "stamina": 190 }, "482": { + "types": [ + 14 + ], "forms": { - "0": {}, "1853": {} }, "attack": 270, @@ -7747,6 +10322,10 @@ "stamina": 181 }, "483": { + "types": [ + 9, + 16 + ], "forms": { "1856": {}, "2829": { @@ -7760,6 +10339,10 @@ "stamina": 205 }, "484": { + "types": [ + 11, + 16 + ], "forms": { "1859": {}, "2830": { @@ -7773,8 +10356,11 @@ "stamina": 189 }, "485": { + "types": [ + 9, + 10 + ], "forms": { - "0": {}, "1862": {} }, "attack": 251, @@ -7782,8 +10368,10 @@ "stamina": 209 }, "486": { + "types": [ + 1 + ], "forms": { - "0": {}, "1865": {} }, "attack": 287, @@ -7791,6 +10379,10 @@ "stamina": 221 }, "487": { + "types": [ + 8, + 16 + ], "forms": { "90": {}, "91": { @@ -7805,8 +10397,10 @@ "stamina": 284 }, "488": { + "types": [ + 14 + ], "forms": { - "0": {}, "1871": {} }, "attack": 152, @@ -7814,8 +10408,10 @@ "stamina": 260 }, "489": { + "types": [ + 11 + ], "forms": { - "0": {}, "1874": {} }, "attack": 162, @@ -7823,8 +10419,10 @@ "stamina": 190 }, "490": { + "types": [ + 11 + ], "forms": { - "0": {}, "1877": {} }, "attack": 210, @@ -7832,8 +10430,10 @@ "stamina": 225 }, "491": { + "types": [ + 17 + ], "forms": { - "0": {}, "1880": {} }, "attack": 285, @@ -7841,11 +10441,18 @@ "stamina": 172 }, "492": { + "types": [ + 12 + ], "forms": { "92": { "attack": 261, "defense": 166, - "stamina": 225 + "stamina": 225, + "types": [ + 3, + 12 + ] }, "93": {}, "1883": {} @@ -7855,33 +10462,107 @@ "stamina": 225 }, "493": { + "types": [ + 1 + ], "forms": { "100": {}, - "101": {}, - "102": {}, - "103": {}, - "104": {}, - "105": {}, - "106": {}, - "107": {}, - "108": {}, - "109": {}, - "110": {}, - "111": {}, - "112": {}, - "113": {}, - "114": {}, - "115": {}, - "116": {}, - "117": {} + "101": { + "types": [ + 2 + ] + }, + "102": { + "types": [ + 3 + ] + }, + "103": { + "types": [ + 4 + ] + }, + "104": { + "types": [ + 5 + ] + }, + "105": { + "types": [ + 6 + ] + }, + "106": { + "types": [ + 7 + ] + }, + "107": { + "types": [ + 8 + ] + }, + "108": { + "types": [ + 9 + ] + }, + "109": { + "types": [ + 10 + ] + }, + "110": { + "types": [ + 11 + ] + }, + "111": { + "types": [ + 12 + ] + }, + "112": { + "types": [ + 13 + ] + }, + "113": { + "types": [ + 14 + ] + }, + "114": { + "types": [ + 15 + ] + }, + "115": { + "types": [ + 16 + ] + }, + "116": { + "types": [ + 17 + ] + }, + "117": { + "types": [ + 18 + ] + } }, "attack": 238, "defense": 238, "stamina": 237 }, "494": { + "types": [ + 10, + 14 + ], "forms": { - "0": {}, "1886": {} }, "attack": 210, @@ -7889,9 +10570,18 @@ "stamina": 225 }, "495": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1889": {} + "1889": { + "evolutions": [ + { + "pokemon": 496, + "form": 1892 + } + ] + } }, "attack": 88, "defense": 107, @@ -7904,9 +10594,18 @@ "little": true }, "496": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1892": {} + "1892": { + "evolutions": [ + { + "pokemon": 497, + "form": 1895 + } + ] + } }, "attack": 122, "defense": 152, @@ -7918,8 +10617,10 @@ ] }, "497": { + "types": [ + 12 + ], "forms": { - "0": {}, "1895": {} }, "attack": 161, @@ -7927,9 +10628,18 @@ "stamina": 181 }, "498": { + "types": [ + 10 + ], "forms": { - "0": {}, - "1898": {} + "1898": { + "evolutions": [ + { + "pokemon": 499, + "form": 1901 + } + ] + } }, "attack": 115, "defense": 85, @@ -7942,9 +10652,19 @@ "little": true }, "499": { + "types": [ + 2, + 10 + ], "forms": { - "0": {}, - "1901": {} + "1901": { + "evolutions": [ + { + "pokemon": 500, + "form": 1904 + } + ] + } }, "attack": 173, "defense": 106, @@ -7956,18 +10676,42 @@ ] }, "500": { + "types": [ + 2, + 10 + ], "forms": { - "0": {}, - "1904": {} + "1904": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 235, "defense": 127, - "stamina": 242 + "stamina": 242, + "temp_evolutions": { + "1": { + "attack": 287, + "defense": 194, + "stamina": 242, + "unreleased": true + } + } }, "501": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1907": {} + "1907": { + "evolutions": [ + { + "pokemon": 502, + "form": 1910 + } + ] + } }, "attack": 117, "defense": 85, @@ -7980,9 +10724,21 @@ "little": true }, "502": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1910": {} + "1910": { + "evolutions": [ + { + "pokemon": 503 + }, + { + "pokemon": 503, + "form": 2787 + } + ] + } }, "attack": 159, "defense": 116, @@ -7998,12 +10754,19 @@ ] }, "503": { + "types": [ + 11 + ], "forms": { "1913": {}, "2787": { "attack": 218, "defense": 152, - "stamina": 207 + "stamina": 207, + "types": [ + 11, + 17 + ] } }, "attack": 212, @@ -8011,9 +10774,18 @@ "stamina": 216 }, "504": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1916": {} + "1916": { + "evolutions": [ + { + "pokemon": 505, + "form": 1919 + } + ] + } }, "attack": 98, "defense": 73, @@ -8026,8 +10798,10 @@ "little": true }, "505": { + "types": [ + 1 + ], "forms": { - "0": {}, "1919": {} }, "attack": 165, @@ -8035,9 +10809,18 @@ "stamina": 155 }, "506": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1922": {} + "1922": { + "evolutions": [ + { + "pokemon": 507, + "form": 1925 + } + ] + } }, "attack": 107, "defense": 86, @@ -8050,9 +10833,18 @@ "little": true }, "507": { + "types": [ + 1 + ], "forms": { - "0": {}, - "1925": {} + "1925": { + "evolutions": [ + { + "pokemon": 508, + "form": 1928 + } + ] + } }, "attack": 145, "defense": 126, @@ -8064,8 +10856,10 @@ ] }, "508": { + "types": [ + 1 + ], "forms": { - "0": {}, "1928": {} }, "attack": 206, @@ -8073,9 +10867,18 @@ "stamina": 198 }, "509": { + "types": [ + 17 + ], "forms": { - "0": {}, - "1931": {} + "1931": { + "evolutions": [ + { + "pokemon": 510, + "form": 1934 + } + ] + } }, "attack": 98, "defense": 73, @@ -8088,8 +10891,10 @@ "little": true }, "510": { + "types": [ + 17 + ], "forms": { - "0": {}, "1934": {} }, "attack": 187, @@ -8097,11 +10902,20 @@ "stamina": 162 }, "511": { + "types": [ + 12 + ], "forms": { - "0": {}, - "1937": {} - }, - "attack": 104, + "1937": { + "evolutions": [ + { + "pokemon": 512, + "form": 1940 + } + ] + } + }, + "attack": 104, "defense": 94, "stamina": 137, "evolutions": [ @@ -8112,8 +10926,10 @@ "little": true }, "512": { + "types": [ + 12 + ], "forms": { - "0": {}, "1940": {} }, "attack": 206, @@ -8121,9 +10937,18 @@ "stamina": 181 }, "513": { + "types": [ + 10 + ], "forms": { - "0": {}, - "1943": {} + "1943": { + "evolutions": [ + { + "pokemon": 514, + "form": 1946 + } + ] + } }, "attack": 104, "defense": 94, @@ -8136,8 +10961,10 @@ "little": true }, "514": { + "types": [ + 10 + ], "forms": { - "0": {}, "1946": {} }, "attack": 206, @@ -8145,9 +10972,18 @@ "stamina": 181 }, "515": { + "types": [ + 11 + ], "forms": { - "0": {}, - "1949": {} + "1949": { + "evolutions": [ + { + "pokemon": 516, + "form": 1952 + } + ] + } }, "attack": 104, "defense": 94, @@ -8160,8 +10996,10 @@ "little": true }, "516": { + "types": [ + 11 + ], "forms": { - "0": {}, "1952": {} }, "attack": 206, @@ -8169,9 +11007,18 @@ "stamina": 181 }, "517": { + "types": [ + 14 + ], "forms": { - "0": {}, - "1955": {} + "1955": { + "evolutions": [ + { + "pokemon": 518, + "form": 1958 + } + ] + } }, "attack": 111, "defense": 92, @@ -8184,8 +11031,10 @@ "little": true }, "518": { + "types": [ + 14 + ], "forms": { - "0": {}, "1958": {} }, "attack": 183, @@ -8193,9 +11042,19 @@ "stamina": 253 }, "519": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "1961": {} + "1961": { + "evolutions": [ + { + "pokemon": 520, + "form": 1964 + } + ] + } }, "attack": 98, "defense": 80, @@ -8208,9 +11067,19 @@ "little": true }, "520": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "1964": {} + "1964": { + "evolutions": [ + { + "pokemon": 521, + "form": 1967 + } + ] + } }, "attack": 144, "defense": 107, @@ -8222,8 +11091,11 @@ ] }, "521": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, "1967": {} }, "attack": 226, @@ -8231,9 +11103,18 @@ "stamina": 190 }, "522": { + "types": [ + 13 + ], "forms": { - "0": {}, - "1970": {} + "1970": { + "evolutions": [ + { + "pokemon": 523, + "form": 1973 + } + ] + } }, "attack": 118, "defense": 64, @@ -8246,8 +11127,10 @@ "little": true }, "523": { + "types": [ + 13 + ], "forms": { - "0": {}, "1973": {} }, "attack": 211, @@ -8255,9 +11138,18 @@ "stamina": 181 }, "524": { + "types": [ + 6 + ], "forms": { - "0": {}, - "1976": {} + "1976": { + "evolutions": [ + { + "pokemon": 525, + "form": 1979 + } + ] + } }, "attack": 121, "defense": 110, @@ -8270,9 +11162,18 @@ "little": true }, "525": { + "types": [ + 6 + ], "forms": { - "0": {}, - "1979": {} + "1979": { + "evolutions": [ + { + "pokemon": 526, + "form": 1982 + } + ] + } }, "attack": 174, "defense": 143, @@ -8284,8 +11185,10 @@ ] }, "526": { + "types": [ + 6 + ], "forms": { - "0": {}, "1982": {} }, "attack": 226, @@ -8293,9 +11196,19 @@ "stamina": 198 }, "527": { + "types": [ + 3, + 14 + ], "forms": { - "0": {}, - "1985": {} + "1985": { + "evolutions": [ + { + "pokemon": 528, + "form": 1988 + } + ] + } }, "attack": 107, "defense": 85, @@ -8308,8 +11221,11 @@ "little": true }, "528": { + "types": [ + 3, + 14 + ], "forms": { - "0": {}, "1988": {} }, "attack": 161, @@ -8317,32 +11233,59 @@ "stamina": 167 }, "529": { + "types": [ + 5 + ], "forms": { - "0": {}, - "1991": {} + "1991": { + "evolutions": [ + { + "pokemon": 530, + "form": 1994 + } + ] + } }, "attack": 154, "defense": 85, "stamina": 155, "evolutions": [ { - "pokemon": 530 + "pokemon": 530, + "form": 1994 } ], "little": true }, "530": { + "types": [ + 5, + 9 + ], "forms": { - "0": {}, - "1994": {} + "1994": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 255, "defense": 129, - "stamina": 242 + "stamina": 242, + "temp_evolutions": { + "1": { + "attack": 322, + "defense": 184, + "stamina": 242, + "unreleased": true + } + } }, "531": { + "types": [ + 1 + ], "forms": { - "0": {}, "1997": { "temp_evolutions": { "1": {} @@ -8356,15 +11299,23 @@ "1": { "attack": 147, "defense": 239, - "stamina": 230, - "unreleased": true + "stamina": 230 } } }, "532": { + "types": [ + 2 + ], "forms": { - "0": {}, - "2000": {} + "2000": { + "evolutions": [ + { + "pokemon": 533, + "form": 2003 + } + ] + } }, "attack": 134, "defense": 87, @@ -8377,9 +11328,18 @@ "little": true }, "533": { + "types": [ + 2 + ], "forms": { - "0": {}, - "2003": {} + "2003": { + "evolutions": [ + { + "pokemon": 534, + "form": 2006 + } + ] + } }, "attack": 180, "defense": 134, @@ -8391,8 +11351,10 @@ ] }, "534": { + "types": [ + 2 + ], "forms": { - "0": {}, "2006": {} }, "attack": 243, @@ -8400,9 +11362,18 @@ "stamina": 233 }, "535": { + "types": [ + 11 + ], "forms": { - "0": {}, - "2009": {} + "2009": { + "evolutions": [ + { + "pokemon": 536, + "form": 2012 + } + ] + } }, "attack": 98, "defense": 78, @@ -8415,9 +11386,19 @@ "little": true }, "536": { + "types": [ + 5, + 11 + ], "forms": { - "0": {}, - "2012": {} + "2012": { + "evolutions": [ + { + "pokemon": 537, + "form": 2015 + } + ] + } }, "attack": 128, "defense": 109, @@ -8429,8 +11410,11 @@ ] }, "537": { + "types": [ + 5, + 11 + ], "forms": { - "0": {}, "2015": {} }, "attack": 188, @@ -8438,8 +11422,10 @@ "stamina": 233 }, "538": { + "types": [ + 2 + ], "forms": { - "0": {}, "2018": {} }, "attack": 172, @@ -8447,8 +11433,10 @@ "stamina": 260 }, "539": { + "types": [ + 2 + ], "forms": { - "0": {}, "2021": {} }, "attack": 231, @@ -8456,9 +11444,19 @@ "stamina": 181 }, "540": { + "types": [ + 7, + 12 + ], "forms": { - "0": {}, - "2024": {} + "2024": { + "evolutions": [ + { + "pokemon": 541, + "form": 2027 + } + ] + } }, "attack": 96, "defense": 124, @@ -8471,9 +11469,19 @@ "little": true }, "541": { + "types": [ + 7, + 12 + ], "forms": { - "0": {}, - "2027": {} + "2027": { + "evolutions": [ + { + "pokemon": 542, + "form": 2030 + } + ] + } }, "attack": 115, "defense": 162, @@ -8485,8 +11493,11 @@ ] }, "542": { + "types": [ + 7, + 12 + ], "forms": { - "0": {}, "2030": {} }, "attack": 205, @@ -8494,9 +11505,19 @@ "stamina": 181 }, "543": { + "types": [ + 4, + 7 + ], "forms": { - "0": {}, - "2033": {} + "2033": { + "evolutions": [ + { + "pokemon": 544, + "form": 2036 + } + ] + } }, "attack": 83, "defense": 99, @@ -8509,9 +11530,19 @@ "little": true }, "544": { + "types": [ + 4, + 7 + ], "forms": { - "0": {}, - "2036": {} + "2036": { + "evolutions": [ + { + "pokemon": 545, + "form": 2039 + } + ] + } }, "attack": 100, "defense": 173, @@ -8523,18 +11554,43 @@ ] }, "545": { + "types": [ + 4, + 7 + ], "forms": { - "0": {}, - "2039": {} + "2039": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 203, "defense": 175, - "stamina": 155 + "stamina": 155, + "temp_evolutions": { + "1": { + "attack": 257, + "defense": 254, + "stamina": 155, + "unreleased": true + } + } }, "546": { + "types": [ + 12, + 18 + ], "forms": { - "0": {}, - "2042": {} + "2042": { + "evolutions": [ + { + "pokemon": 547, + "form": 2045 + } + ] + } }, "attack": 71, "defense": 111, @@ -8547,8 +11603,11 @@ "little": true }, "547": { + "types": [ + 12, + 18 + ], "forms": { - "0": {}, "2045": {} }, "attack": 164, @@ -8556,9 +11615,21 @@ "stamina": 155 }, "548": { + "types": [ + 12 + ], "forms": { - "0": {}, - "2048": {} + "2048": { + "evolutions": [ + { + "pokemon": 549 + }, + { + "pokemon": 549, + "form": 2789 + } + ] + } }, "attack": 119, "defense": 91, @@ -8575,13 +11646,19 @@ "little": true }, "549": { + "types": [ + 12 + ], "forms": { - "0": {}, "2051": {}, "2789": { "attack": 208, "defense": 159, - "stamina": 172 + "stamina": 172, + "types": [ + 2, + 12 + ] } }, "attack": 214, @@ -8589,26 +11666,45 @@ "stamina": 172 }, "550": { + "types": [ + 11 + ], "forms": { "136": {}, "137": {}, - "2804": {} + "2804": { + "evolutions": [ + { + "pokemon": 902, + "form": 2807, + "gender_requirement": 1 + }, + { + "pokemon": 902, + "form": 2808, + "gender_requirement": 2 + } + ] + } }, "attack": 189, "defense": 129, - "stamina": 172, - "evolutions": [ - { - "pokemon": 902, - "form": 2807 - } - ], - "little": true + "stamina": 172 }, "551": { + "types": [ + 5, + 17 + ], "forms": { - "0": {}, - "2054": {} + "2054": { + "evolutions": [ + { + "pokemon": 552, + "form": 2057 + } + ] + } }, "attack": 132, "defense": 69, @@ -8621,9 +11717,19 @@ "little": true }, "552": { + "types": [ + 5, + 17 + ], "forms": { - "0": {}, - "2057": {} + "2057": { + "evolutions": [ + { + "pokemon": 553, + "form": 2060 + } + ] + } }, "attack": 155, "defense": 90, @@ -8635,8 +11741,11 @@ ] }, "553": { + "types": [ + 5, + 17 + ], "forms": { - "0": {}, "2060": {} }, "attack": 229, @@ -8644,6 +11753,9 @@ "stamina": 216 }, "554": { + "types": [ + 10 + ], "forms": { "2063": { "evolutions": [ @@ -8654,6 +11766,9 @@ ] }, "2341": { + "types": [ + 15 + ], "evolutions": [ { "pokemon": 555, @@ -8674,18 +11789,33 @@ "little": true }, "555": { + "types": [ + 10 + ], "forms": { "138": {}, "139": { "attack": 243, "defense": 202, - "stamina": 233 + "stamina": 233, + "types": [ + 10, + 14 + ] + }, + "2342": { + "types": [ + 15 + ] }, - "2342": {}, "2343": { "attack": 323, "defense": 123, - "stamina": 233 + "stamina": 233, + "types": [ + 10, + 15 + ] } }, "attack": 263, @@ -8693,8 +11823,10 @@ "stamina": 233 }, "556": { + "types": [ + 12 + ], "forms": { - "0": {}, "2066": {} }, "attack": 201, @@ -8702,9 +11834,19 @@ "stamina": 181 }, "557": { + "types": [ + 6, + 7 + ], "forms": { - "0": {}, - "2069": {} + "2069": { + "evolutions": [ + { + "pokemon": 558, + "form": 2072 + } + ] + } }, "attack": 118, "defense": 128, @@ -8717,8 +11859,11 @@ "little": true }, "558": { + "types": [ + 6, + 7 + ], "forms": { - "0": {}, "2072": {} }, "attack": 188, @@ -8726,9 +11871,19 @@ "stamina": 172 }, "559": { + "types": [ + 2, + 17 + ], "forms": { - "0": {}, - "2075": {} + "2075": { + "evolutions": [ + { + "pokemon": 560, + "form": 2078 + } + ] + } }, "attack": 132, "defense": 132, @@ -8741,17 +11896,35 @@ "little": true }, "560": { + "types": [ + 2, + 17 + ], "forms": { - "0": {}, - "2078": {} + "2078": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 163, "defense": 222, - "stamina": 163 + "stamina": 163, + "temp_evolutions": { + "1": { + "attack": 238, + "defense": 266, + "stamina": 163, + "unreleased": true + } + } }, "561": { + "types": [ + 3, + 14 + ], "forms": { - "0": {}, "2081": {} }, "attack": 204, @@ -8759,6 +11932,9 @@ "stamina": 176 }, "562": { + "types": [ + 8 + ], "forms": { "2084": { "evolutions": [ @@ -8769,6 +11945,10 @@ ] }, "2344": { + "types": [ + 5, + 8 + ], "evolutions": [ { "pokemon": 867, @@ -8789,6 +11969,9 @@ "little": true }, "563": { + "types": [ + 8 + ], "forms": { "2087": {} }, @@ -8797,9 +11980,19 @@ "stamina": 151 }, "564": { + "types": [ + 6, + 11 + ], "forms": { - "0": {}, - "2090": {} + "2090": { + "evolutions": [ + { + "pokemon": 565, + "form": 2093 + } + ] + } }, "attack": 134, "defense": 146, @@ -8812,8 +12005,11 @@ "little": true }, "565": { + "types": [ + 6, + 11 + ], "forms": { - "0": {}, "2093": {} }, "attack": 192, @@ -8821,9 +12017,19 @@ "stamina": 179 }, "566": { + "types": [ + 3, + 6 + ], "forms": { - "0": {}, - "2096": {} + "2096": { + "evolutions": [ + { + "pokemon": 567, + "form": 2099 + } + ] + } }, "attack": 213, "defense": 89, @@ -8836,8 +12042,11 @@ "little": true }, "567": { + "types": [ + 3, + 6 + ], "forms": { - "0": {}, "2099": {} }, "attack": 292, @@ -8845,9 +12054,18 @@ "stamina": 181 }, "568": { + "types": [ + 4 + ], "forms": { - "0": {}, - "2102": {} + "2102": { + "evolutions": [ + { + "pokemon": 569, + "form": 2105 + } + ] + } }, "attack": 96, "defense": 122, @@ -8860,8 +12078,10 @@ "little": true }, "569": { + "types": [ + 4 + ], "forms": { - "0": {}, "2105": {} }, "attack": 181, @@ -8869,35 +12089,79 @@ "stamina": 190 }, "570": { + "types": [ + 17 + ], "forms": { - "0": {}, - "2108": {}, - "2796": {} + "2108": { + "evolutions": [ + { + "pokemon": 571, + "form": 2111 + } + ] + }, + "2796": { + "attack": 162, + "defense": 79, + "stamina": 111, + "types": [ + 1, + 8 + ], + "evolutions": [ + { + "pokemon": 571, + "form": 2797 + } + ], + "temp_evolutions": {} + } }, "attack": 153, "defense": 78, "stamina": 120, "evolutions": [ { - "pokemon": 571 + "pokemon": 571, + "form": 2111 } ], "little": true }, "571": { + "types": [ + 17 + ], "forms": { - "0": {}, "2111": {}, - "2797": {} + "2797": { + "attack": 261, + "defense": 128, + "stamina": 146, + "types": [ + 1, + 8 + ] + } }, "attack": 250, "defense": 127, "stamina": 155 }, "572": { + "types": [ + 1 + ], "forms": { - "0": {}, - "2114": {} + "2114": { + "evolutions": [ + { + "pokemon": 573, + "form": 2117 + } + ] + } }, "attack": 98, "defense": 80, @@ -8910,8 +12174,10 @@ "little": true }, "573": { + "types": [ + 1 + ], "forms": { - "0": {}, "2117": {} }, "attack": 198, @@ -8919,9 +12185,18 @@ "stamina": 181 }, "574": { + "types": [ + 14 + ], "forms": { - "0": {}, - "2120": {} + "2120": { + "evolutions": [ + { + "pokemon": 575, + "form": 2123 + } + ] + } }, "attack": 98, "defense": 112, @@ -8934,9 +12209,18 @@ "little": true }, "575": { + "types": [ + 14 + ], "forms": { - "0": {}, - "2123": {} + "2123": { + "evolutions": [ + { + "pokemon": 576, + "form": 2126 + } + ] + } }, "attack": 137, "defense": 153, @@ -8948,8 +12232,10 @@ ] }, "576": { + "types": [ + 14 + ], "forms": { - "0": {}, "2126": {} }, "attack": 176, @@ -8957,9 +12243,18 @@ "stamina": 172 }, "577": { + "types": [ + 14 + ], "forms": { - "0": {}, - "2129": {} + "2129": { + "evolutions": [ + { + "pokemon": 578, + "form": 2132 + } + ] + } }, "attack": 170, "defense": 83, @@ -8972,9 +12267,18 @@ "little": true }, "578": { + "types": [ + 14 + ], "forms": { - "0": {}, - "2132": {} + "2132": { + "evolutions": [ + { + "pokemon": 579, + "form": 2135 + } + ] + } }, "attack": 208, "defense": 103, @@ -8986,8 +12290,10 @@ ] }, "579": { + "types": [ + 14 + ], "forms": { - "0": {}, "2135": {} }, "attack": 214, @@ -8995,9 +12301,19 @@ "stamina": 242 }, "580": { + "types": [ + 3, + 11 + ], "forms": { - "0": {}, - "2138": {} + "2138": { + "evolutions": [ + { + "pokemon": 581, + "form": 2141 + } + ] + } }, "attack": 84, "defense": 96, @@ -9010,8 +12326,11 @@ "little": true }, "581": { + "types": [ + 3, + 11 + ], "forms": { - "0": {}, "2141": {} }, "attack": 182, @@ -9019,9 +12338,18 @@ "stamina": 181 }, "582": { + "types": [ + 15 + ], "forms": { - "0": {}, - "2144": {} + "2144": { + "evolutions": [ + { + "pokemon": 583, + "form": 2147 + } + ] + } }, "attack": 118, "defense": 106, @@ -9034,9 +12362,18 @@ "little": true }, "583": { + "types": [ + 15 + ], "forms": { - "0": {}, - "2147": {} + "2147": { + "evolutions": [ + { + "pokemon": 584, + "form": 2150 + } + ] + } }, "attack": 151, "defense": 138, @@ -9048,8 +12385,10 @@ ] }, "584": { + "types": [ + 15 + ], "forms": { - "0": {}, "2150": {} }, "attack": 218, @@ -9057,6 +12396,10 @@ "stamina": 174 }, "585": { + "types": [ + 1, + 12 + ], "forms": { "585": { "evolutions": [ @@ -9097,6 +12440,10 @@ "little": true }, "586": { + "types": [ + 1, + 12 + ], "forms": { "589": {}, "590": {}, @@ -9108,8 +12455,11 @@ "stamina": 190 }, "587": { + "types": [ + 3, + 13 + ], "forms": { - "0": {}, "2153": {} }, "attack": 158, @@ -9117,9 +12467,18 @@ "stamina": 146 }, "588": { + "types": [ + 7 + ], "forms": { - "0": {}, - "2156": {} + "2156": { + "evolutions": [ + { + "pokemon": 589, + "form": 2159 + } + ] + } }, "attack": 137, "defense": 87, @@ -9132,8 +12491,11 @@ "little": true }, "589": { + "types": [ + 7, + 9 + ], "forms": { - "0": {}, "2159": {} }, "attack": 223, @@ -9141,9 +12503,19 @@ "stamina": 172 }, "590": { + "types": [ + 4, + 12 + ], "forms": { - "0": {}, - "2162": {} + "2162": { + "evolutions": [ + { + "pokemon": 591, + "form": 2165 + } + ] + } }, "attack": 97, "defense": 91, @@ -9156,8 +12528,11 @@ "little": true }, "591": { + "types": [ + 4, + 12 + ], "forms": { - "0": {}, "2165": {} }, "attack": 155, @@ -9165,6 +12540,10 @@ "stamina": 249 }, "592": { + "types": [ + 8, + 11 + ], "forms": { "2168": { "evolutions": [ @@ -9194,6 +12573,10 @@ "little": true }, "593": { + "types": [ + 8, + 11 + ], "forms": { "2171": {}, "2331": {} @@ -9203,8 +12586,10 @@ "stamina": 225 }, "594": { + "types": [ + 11 + ], "forms": { - "0": {}, "2174": {} }, "attack": 138, @@ -9212,9 +12597,19 @@ "stamina": 338 }, "595": { + "types": [ + 7, + 13 + ], "forms": { - "0": {}, - "2177": {} + "2177": { + "evolutions": [ + { + "pokemon": 596, + "form": 2180 + } + ] + } }, "attack": 110, "defense": 98, @@ -9227,8 +12622,11 @@ "little": true }, "596": { + "types": [ + 7, + 13 + ], "forms": { - "0": {}, "2180": {} }, "attack": 201, @@ -9236,9 +12634,19 @@ "stamina": 172 }, "597": { + "types": [ + 9, + 12 + ], "forms": { - "0": {}, - "2183": {} + "2183": { + "evolutions": [ + { + "pokemon": 598, + "form": 2186 + } + ] + } }, "attack": 82, "defense": 155, @@ -9251,8 +12659,11 @@ "little": true }, "598": { + "types": [ + 9, + 12 + ], "forms": { - "0": {}, "2186": {} }, "attack": 158, @@ -9260,9 +12671,18 @@ "stamina": 179 }, "599": { + "types": [ + 9 + ], "forms": { - "0": {}, - "2189": {} + "2189": { + "evolutions": [ + { + "pokemon": 600, + "form": 2192 + } + ] + } }, "attack": 98, "defense": 121, @@ -9275,9 +12695,18 @@ "little": true }, "600": { + "types": [ + 9 + ], "forms": { - "0": {}, - "2192": {} + "2192": { + "evolutions": [ + { + "pokemon": 601, + "form": 2195 + } + ] + } }, "attack": 150, "defense": 174, @@ -9289,8 +12718,10 @@ ] }, "601": { + "types": [ + 9 + ], "forms": { - "0": {}, "2195": {} }, "attack": 199, @@ -9298,9 +12729,18 @@ "stamina": 155 }, "602": { + "types": [ + 13 + ], "forms": { - "0": {}, - "2198": {} + "2198": { + "evolutions": [ + { + "pokemon": 603, + "form": 2201 + } + ] + } }, "attack": 105, "defense": 78, @@ -9313,9 +12753,18 @@ "little": true }, "603": { + "types": [ + 13 + ], "forms": { - "0": {}, - "2201": {} + "2201": { + "evolutions": [ + { + "pokemon": 604, + "form": 2204 + } + ] + } }, "attack": 156, "defense": 130, @@ -9327,18 +12776,41 @@ ] }, "604": { + "types": [ + 13 + ], "forms": { - "0": {}, - "2204": {} + "2204": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 217, "defense": 152, - "stamina": 198 + "stamina": 198, + "temp_evolutions": { + "1": { + "attack": 291, + "defense": 175, + "stamina": 198, + "unreleased": true + } + } }, "605": { + "types": [ + 14 + ], "forms": { - "0": {}, - "2207": {} + "2207": { + "evolutions": [ + { + "pokemon": 606, + "form": 2210 + } + ] + } }, "attack": 148, "defense": 100, @@ -9351,8 +12823,10 @@ "little": true }, "606": { + "types": [ + 14 + ], "forms": { - "0": {}, "2210": {} }, "attack": 221, @@ -9360,9 +12834,19 @@ "stamina": 181 }, "607": { + "types": [ + 8, + 10 + ], "forms": { - "0": {}, - "2213": {} + "2213": { + "evolutions": [ + { + "pokemon": 608, + "form": 2216 + } + ] + } }, "attack": 108, "defense": 98, @@ -9375,9 +12859,19 @@ "little": true }, "608": { + "types": [ + 8, + 10 + ], "forms": { - "0": {}, - "2216": {} + "2216": { + "evolutions": [ + { + "pokemon": 609, + "form": 2219 + } + ] + } }, "attack": 169, "defense": 115, @@ -9389,18 +12883,42 @@ ] }, "609": { + "types": [ + 8, + 10 + ], "forms": { - "0": {}, - "2219": {} + "2219": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 271, "defense": 182, - "stamina": 155 + "stamina": 155, + "temp_evolutions": { + "1": { + "attack": 335, + "defense": 227, + "stamina": 155, + "unreleased": true + } + } }, "610": { + "types": [ + 16 + ], "forms": { - "0": {}, - "2222": {} + "2222": { + "evolutions": [ + { + "pokemon": 611, + "form": 2225 + } + ] + } }, "attack": 154, "defense": 101, @@ -9413,9 +12931,18 @@ "little": true }, "611": { + "types": [ + 16 + ], "forms": { - "0": {}, - "2225": {} + "2225": { + "evolutions": [ + { + "pokemon": 612, + "form": 2228 + } + ] + } }, "attack": 212, "defense": 123, @@ -9427,8 +12954,10 @@ ] }, "612": { + "types": [ + 16 + ], "forms": { - "0": {}, "2228": {} }, "attack": 284, @@ -9436,6 +12965,9 @@ "stamina": 183 }, "613": { + "types": [ + 15 + ], "forms": { "2231": { "evolutions": [ @@ -9465,6 +12997,9 @@ "little": true }, "614": { + "types": [ + 15 + ], "forms": { "2234": {}, "2820": {} @@ -9474,8 +13009,10 @@ "stamina": 216 }, "615": { + "types": [ + 15 + ], "forms": { - "0": {}, "2237": {} }, "attack": 190, @@ -9483,9 +13020,18 @@ "stamina": 190 }, "616": { + "types": [ + 7 + ], "forms": { - "0": {}, - "2240": {} + "2240": { + "evolutions": [ + { + "pokemon": 617, + "form": 2243 + } + ] + } }, "attack": 72, "defense": 140, @@ -9498,8 +13044,10 @@ "little": true }, "617": { + "types": [ + 7 + ], "forms": { - "0": {}, "2243": {} }, "attack": 220, @@ -9507,18 +13055,36 @@ "stamina": 190 }, "618": { + "types": [ + 5, + 13 + ], "forms": { "2246": {}, - "2345": {} + "2345": { + "types": [ + 5, + 9 + ] + } }, "attack": 144, "defense": 171, "stamina": 240 }, "619": { + "types": [ + 2 + ], "forms": { - "0": {}, - "2249": {} + "2249": { + "evolutions": [ + { + "pokemon": 620, + "form": 2252 + } + ] + } }, "attack": 160, "defense": 98, @@ -9531,8 +13097,10 @@ "little": true }, "620": { + "types": [ + 2 + ], "forms": { - "0": {}, "2252": {} }, "attack": 258, @@ -9540,8 +13108,10 @@ "stamina": 163 }, "621": { + "types": [ + 16 + ], "forms": { - "0": {}, "2255": {} }, "attack": 213, @@ -9549,9 +13119,19 @@ "stamina": 184 }, "622": { + "types": [ + 5, + 8 + ], "forms": { - "0": {}, - "2258": {} + "2258": { + "evolutions": [ + { + "pokemon": 623, + "form": 2261 + } + ] + } }, "attack": 127, "defense": 92, @@ -9564,8 +13144,11 @@ "little": true }, "623": { + "types": [ + 5, + 8 + ], "forms": { - "0": {}, "2261": {} }, "attack": 222, @@ -9573,9 +13156,19 @@ "stamina": 205 }, "624": { + "types": [ + 9, + 17 + ], "forms": { - "0": {}, - "2264": {} + "2264": { + "evolutions": [ + { + "pokemon": 625, + "form": 2267 + } + ] + } }, "attack": 154, "defense": 114, @@ -9588,9 +13181,19 @@ "little": true }, "625": { + "types": [ + 9, + 17 + ], "forms": { - "0": {}, - "2267": {} + "2267": { + "evolutions": [ + { + "pokemon": 983, + "form": 3293 + } + ] + } }, "attack": 232, "defense": 176, @@ -9602,8 +13205,10 @@ ] }, "626": { + "types": [ + 1 + ], "forms": { - "0": {}, "2270": {} }, "attack": 195, @@ -9611,9 +13216,23 @@ "stamina": 216 }, "627": { + "types": [ + 1, + 3 + ], "forms": { - "0": {}, - "2273": {} + "2273": { + "evolutions": [ + { + "pokemon": 628, + "form": 2276 + }, + { + "pokemon": 628, + "form": 2798 + } + ] + } }, "attack": 150, "defense": 97, @@ -9631,12 +13250,20 @@ "little": true }, "628": { + "types": [ + 1, + 3 + ], "forms": { "2276": {}, "2798": { "attack": 213, "defense": 137, - "stamina": 242 + "stamina": 242, + "types": [ + 3, + 14 + ] } }, "attack": 232, @@ -9644,9 +13271,19 @@ "stamina": 225 }, "629": { + "types": [ + 3, + 17 + ], "forms": { - "0": {}, - "2279": {} + "2279": { + "evolutions": [ + { + "pokemon": 630, + "form": 2282 + } + ] + } }, "attack": 105, "defense": 139, @@ -9659,8 +13296,11 @@ "little": true }, "630": { + "types": [ + 3, + 17 + ], "forms": { - "0": {}, "2282": {} }, "attack": 129, @@ -9668,8 +13308,10 @@ "stamina": 242 }, "631": { + "types": [ + 10 + ], "forms": { - "0": {}, "2285": {} }, "attack": 204, @@ -9677,8 +13319,11 @@ "stamina": 198 }, "632": { + "types": [ + 7, + 9 + ], "forms": { - "0": {}, "2288": {} }, "attack": 217, @@ -9686,9 +13331,19 @@ "stamina": 151 }, "633": { + "types": [ + 16, + 17 + ], "forms": { - "0": {}, - "2291": {} + "2291": { + "evolutions": [ + { + "pokemon": 634, + "form": 2294 + } + ] + } }, "attack": 116, "defense": 93, @@ -9701,9 +13356,19 @@ "little": true }, "634": { + "types": [ + 16, + 17 + ], "forms": { - "0": {}, - "2294": {} + "2294": { + "evolutions": [ + { + "pokemon": 635, + "form": 2297 + } + ] + } }, "attack": 159, "defense": 135, @@ -9715,8 +13380,11 @@ ] }, "635": { + "types": [ + 16, + 17 + ], "forms": { - "0": {}, "2297": {} }, "attack": 256, @@ -9724,9 +13392,19 @@ "stamina": 211 }, "636": { + "types": [ + 7, + 10 + ], "forms": { - "0": {}, - "2300": {} + "2300": { + "evolutions": [ + { + "pokemon": 637, + "form": 2303 + } + ] + } }, "attack": 156, "defense": 107, @@ -9739,8 +13417,11 @@ "little": true }, "637": { + "types": [ + 7, + 10 + ], "forms": { - "0": {}, "2303": {} }, "attack": 264, @@ -9748,8 +13429,11 @@ "stamina": 198 }, "638": { + "types": [ + 2, + 9 + ], "forms": { - "0": {}, "2306": {} }, "attack": 192, @@ -9757,8 +13441,11 @@ "stamina": 209 }, "639": { + "types": [ + 2, + 6 + ], "forms": { - "0": {}, "2309": {} }, "attack": 260, @@ -9766,8 +13453,11 @@ "stamina": 209 }, "640": { + "types": [ + 2, + 12 + ], "forms": { - "0": {}, "2312": {} }, "attack": 192, @@ -9775,6 +13465,9 @@ "stamina": 209 }, "641": { + "types": [ + 3 + ], "forms": { "140": {}, "141": { @@ -9788,6 +13481,10 @@ "stamina": 188 }, "642": { + "types": [ + 3, + 13 + ], "forms": { "142": {}, "143": { @@ -9801,8 +13498,11 @@ "stamina": 188 }, "643": { + "types": [ + 10, + 16 + ], "forms": { - "0": {}, "2315": {} }, "attack": 275, @@ -9810,8 +13510,11 @@ "stamina": 205 }, "644": { + "types": [ + 13, + 16 + ], "forms": { - "0": {}, "2318": {} }, "attack": 275, @@ -9819,6 +13522,10 @@ "stamina": 205 }, "645": { + "types": [ + 3, + 5 + ], "forms": { "144": {}, "145": { @@ -9832,6 +13539,10 @@ "stamina": 205 }, "646": { + "types": [ + 15, + 16 + ], "forms": { "146": {}, "147": { @@ -9850,6 +13561,10 @@ "stamina": 245 }, "647": { + "types": [ + 2, + 11 + ], "forms": { "149": {}, "150": {} @@ -9859,12 +13574,20 @@ "stamina": 209 }, "648": { + "types": [ + 1, + 14 + ], "forms": { "151": {}, "152": { "attack": 269, "defense": 188, - "stamina": 225 + "stamina": 225, + "types": [ + 1, + 2 + ] } }, "attack": 250, @@ -9872,6 +13595,10 @@ "stamina": 225 }, "649": { + "types": [ + 7, + 9 + ], "forms": { "593": {}, "594": {}, @@ -9884,8 +13611,18 @@ "stamina": 174 }, "650": { + "types": [ + 12 + ], "forms": { - "0": {} + "3022": { + "evolutions": [ + { + "pokemon": 651, + "form": 3023 + } + ] + } }, "attack": 110, "defense": 106, @@ -9898,8 +13635,18 @@ "little": true }, "651": { + "types": [ + 12 + ], "forms": { - "0": {} + "3023": { + "evolutions": [ + { + "pokemon": 652, + "form": 3024 + } + ] + } }, "attack": 146, "defense": 156, @@ -9911,16 +13658,42 @@ ] }, "652": { + "types": [ + 2, + 12 + ], "forms": { - "0": {} + "3024": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 201, "defense": 204, - "stamina": 204 + "stamina": 204, + "temp_evolutions": { + "1": { + "attack": 242, + "defense": 282, + "stamina": 204, + "unreleased": true + } + } }, "653": { + "types": [ + 10 + ], "forms": { - "0": {} + "3025": { + "evolutions": [ + { + "pokemon": 654, + "form": 3026 + } + ] + } }, "attack": 116, "defense": 102, @@ -9933,8 +13706,18 @@ "little": true }, "654": { + "types": [ + 10 + ], "forms": { - "0": {} + "3026": { + "evolutions": [ + { + "pokemon": 655, + "form": 3027 + } + ] + } }, "attack": 171, "defense": 130, @@ -9946,16 +13729,42 @@ ] }, "655": { + "types": [ + 10, + 14 + ], "forms": { - "0": {} + "3027": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 230, "defense": 189, - "stamina": 181 + "stamina": 181, + "temp_evolutions": { + "1": { + "attack": 331, + "defense": 235, + "stamina": 181, + "unreleased": true + } + } }, "656": { + "types": [ + 11 + ], "forms": { - "0": {} + "3028": { + "evolutions": [ + { + "pokemon": 657, + "form": 3029 + } + ] + } }, "attack": 122, "defense": 84, @@ -9968,8 +13777,18 @@ "little": true }, "657": { + "types": [ + 11 + ], "forms": { - "0": {} + "3029": { + "evolutions": [ + { + "pokemon": 658, + "form": 3030 + } + ] + } }, "attack": 168, "defense": 114, @@ -9981,16 +13800,42 @@ ] }, "658": { + "types": [ + 11, + 17 + ], "forms": { - "0": {} + "3030": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 223, "defense": 152, - "stamina": 176 + "stamina": 176, + "temp_evolutions": { + "1": { + "attack": 299, + "defense": 180, + "stamina": 176, + "unreleased": true + } + } }, "659": { + "types": [ + 1 + ], "forms": { - "0": {} + "3031": { + "evolutions": [ + { + "pokemon": 660, + "form": 3032 + } + ] + } }, "attack": 68, "defense": 72, @@ -10003,16 +13848,31 @@ "little": true }, "660": { + "types": [ + 1, + 5 + ], "forms": { - "0": {} + "3032": {} }, "attack": 112, "defense": 155, "stamina": 198 }, "661": { + "types": [ + 1, + 3 + ], "forms": { - "0": {} + "3033": { + "evolutions": [ + { + "pokemon": 662, + "form": 3034 + } + ] + } }, "attack": 95, "defense": 80, @@ -10025,8 +13885,19 @@ "little": true }, "662": { + "types": [ + 3, + 10 + ], "forms": { - "0": {} + "3034": { + "evolutions": [ + { + "pokemon": 663, + "form": 3035 + } + ] + } }, "attack": 145, "defense": 110, @@ -10038,14 +13909,21 @@ ] }, "663": { + "types": [ + 3, + 10 + ], "forms": { - "0": {} + "3035": {} }, "attack": 176, "defense": 155, "stamina": 186 }, "664": { + "types": [ + 7 + ], "forms": { "2745": { "evolutions": [ @@ -10219,6 +14097,9 @@ "little": true }, "665": { + "types": [ + 7 + ], "forms": { "2765": { "evolutions": [ @@ -10391,6 +14272,10 @@ ] }, "666": { + "types": [ + 3, + 7 + ], "forms": { "2594": {}, "2595": {}, @@ -10418,8 +14303,25 @@ "stamina": 190 }, "667": { + "types": [ + 1, + 10 + ], "forms": { - "0": {} + "3036": { + "evolutions": [ + { + "pokemon": 668, + "form": 2587, + "gender_requirement": 1 + }, + { + "pokemon": 668, + "form": 2588, + "gender_requirement": 2 + } + ] + } }, "attack": 139, "defense": 112, @@ -10439,15 +14341,34 @@ "little": true }, "668": { + "types": [ + 1, + 10 + ], "forms": { - "2587": {}, + "2587": { + "temp_evolutions": { + "1": {} + } + }, "2588": {} }, "attack": 221, "defense": 149, - "stamina": 200 + "stamina": 200, + "temp_evolutions": { + "1": { + "attack": 273, + "defense": 198, + "stamina": 200, + "unreleased": true + } + } }, "669": { + "types": [ + 18 + ], "forms": { "2614": { "evolutions": [ @@ -10502,6 +14423,9 @@ "little": true }, "670": { + "types": [ + 18 + ], "forms": { "2619": { "evolutions": [ @@ -10552,9 +14476,20 @@ "pokemon": 671, "form": 2624 } - ] + ], + "temp_evolutions": { + "1": { + "attack": 309, + "defense": 264, + "stamina": 179, + "unreleased": true + } + } }, "671": { + "types": [ + 18 + ], "forms": { "2624": {}, "2625": {}, @@ -10567,8 +14502,18 @@ "stamina": 186 }, "672": { + "types": [ + 12 + ], "forms": { - "0": {} + "3037": { + "evolutions": [ + { + "pokemon": 673, + "form": 3038 + } + ] + } }, "attack": 123, "defense": 102, @@ -10581,16 +14526,29 @@ "little": true }, "673": { + "types": [ + 12 + ], "forms": { - "0": {} + "3038": {} }, "attack": 196, "defense": 146, "stamina": 265 }, "674": { + "types": [ + 2 + ], "forms": { - "0": {} + "3039": { + "evolutions": [ + { + "pokemon": 675, + "form": 3040 + } + ] + } }, "attack": 145, "defense": 107, @@ -10603,14 +14561,21 @@ "little": true }, "675": { + "types": [ + 2, + 17 + ], "forms": { - "0": {} + "3040": {} }, "attack": 226, "defense": 146, "stamina": 216 }, "676": { + "types": [ + 1 + ], "forms": { "2629": {}, "2630": {}, @@ -10628,8 +14593,24 @@ "stamina": 181 }, "677": { + "types": [ + 14 + ], "forms": { - "0": {} + "3041": { + "evolutions": [ + { + "pokemon": 678, + "form": 2589, + "gender_requirement": 1 + }, + { + "pokemon": 678, + "form": 2590, + "gender_requirement": 2 + } + ] + } }, "attack": 120, "defense": 114, @@ -10649,6 +14630,9 @@ "little": true }, "678": { + "types": [ + 14 + ], "forms": { "2589": {}, "2590": {} @@ -10658,8 +14642,19 @@ "stamina": 179 }, "679": { + "types": [ + 8, + 9 + ], "forms": { - "0": {} + "3042": { + "evolutions": [ + { + "pokemon": 680, + "form": 3043 + } + ] + } }, "attack": 135, "defense": 139, @@ -10672,31 +14667,60 @@ "little": true }, "680": { + "types": [ + 8, + 9 + ], "forms": { - "0": {} + "3043": { + "evolutions": [ + { + "pokemon": 681, + "form": 2639 + } + ] + } }, "attack": 188, "defense": 206, "stamina": 153, "evolutions": [ { - "pokemon": 681 + "pokemon": 681, + "form": 2639 } ] }, "681": { + "types": [ + 8, + 9 + ], "forms": { - "0": {}, "2639": {}, - "2640": {} + "2640": { + "attack": 272, + "defense": 97, + "stamina": 155 + } }, "attack": 97, "defense": 272, "stamina": 155 }, "682": { + "types": [ + 18 + ], "forms": { - "0": {} + "3044": { + "evolutions": [ + { + "pokemon": 683, + "form": 3045 + } + ] + } }, "attack": 110, "defense": 113, @@ -10709,16 +14733,29 @@ "little": true }, "683": { + "types": [ + 18 + ], "forms": { - "0": {} + "3045": {} }, "attack": 173, "defense": 150, "stamina": 226 }, "684": { + "types": [ + 18 + ], "forms": { - "0": {} + "3046": { + "evolutions": [ + { + "pokemon": 685, + "form": 3047 + } + ] + } }, "attack": 109, "defense": 119, @@ -10731,16 +14768,30 @@ "little": true }, "685": { + "types": [ + 18 + ], "forms": { - "0": {} + "3047": {} }, "attack": 168, "defense": 163, "stamina": 193 }, "686": { + "types": [ + 14, + 17 + ], "forms": { - "0": {} + "3048": { + "evolutions": [ + { + "pokemon": 687, + "form": 3049 + } + ] + } }, "attack": 98, "defense": 95, @@ -10753,16 +14804,43 @@ "little": true }, "687": { + "types": [ + 14, + 17 + ], "forms": { - "0": {} + "3049": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 177, "defense": 165, - "stamina": 200 + "stamina": 200, + "temp_evolutions": { + "1": { + "attack": 208, + "defense": 222, + "stamina": 200, + "unreleased": true + } + } }, "688": { + "types": [ + 6, + 11 + ], "forms": { - "0": {} + "3050": { + "evolutions": [ + { + "pokemon": 689, + "form": 3051 + } + ] + } }, "attack": 96, "defense": 120, @@ -10775,16 +14853,43 @@ "little": true }, "689": { + "types": [ + 6, + 11 + ], "forms": { - "0": {} + "3051": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 194, "defense": 205, - "stamina": 176 + "stamina": 176, + "temp_evolutions": { + "1": { + "attack": 268, + "defense": 248, + "stamina": 176, + "unreleased": true + } + } }, "690": { + "types": [ + 4, + 11 + ], "forms": { - "0": {} + "3052": { + "evolutions": [ + { + "pokemon": 691, + "form": 3053 + } + ] + } }, "attack": 109, "defense": 109, @@ -10797,16 +14902,42 @@ "little": true }, "691": { + "types": [ + 4, + 16 + ], "forms": { - "0": {} + "3053": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 177, "defense": 207, - "stamina": 163 + "stamina": 163, + "temp_evolutions": { + "1": { + "attack": 236, + "defense": 265, + "stamina": 163, + "unreleased": true + } + } }, "692": { + "types": [ + 11 + ], "forms": { - "0": {} + "3054": { + "evolutions": [ + { + "pokemon": 693, + "form": 3055 + } + ] + } }, "attack": 108, "defense": 117, @@ -10819,16 +14950,30 @@ "little": true }, "693": { + "types": [ + 11 + ], "forms": { - "0": {} + "3055": {} }, "attack": 221, "defense": 171, "stamina": 174 }, "694": { + "types": [ + 1, + 13 + ], "forms": { - "0": {} + "3056": { + "evolutions": [ + { + "pokemon": 695, + "form": 3057 + } + ] + } }, "attack": 115, "defense": 78, @@ -10841,16 +14986,31 @@ "little": true }, "695": { + "types": [ + 1, + 13 + ], "forms": { - "0": {} + "3057": {} }, "attack": 219, "defense": 168, "stamina": 158 }, "696": { + "types": [ + 6, + 16 + ], "forms": { - "0": {} + "3058": { + "evolutions": [ + { + "pokemon": 697, + "form": 3059 + } + ] + } }, "attack": 158, "defense": 123, @@ -10863,16 +15023,31 @@ "little": true }, "697": { + "types": [ + 6, + 16 + ], "forms": { - "0": {} + "3059": {} }, "attack": 227, "defense": 191, "stamina": 193 }, "698": { + "types": [ + 6, + 15 + ], "forms": { - "0": {} + "3060": { + "evolutions": [ + { + "pokemon": 699, + "form": 3061 + } + ] + } }, "attack": 124, "defense": 109, @@ -10885,48 +15060,92 @@ "little": true }, "699": { + "types": [ + 6, + 15 + ], "forms": { - "0": {} + "3061": {} }, "attack": 186, "defense": 163, "stamina": 265 }, "700": { + "types": [ + 18 + ], "forms": { - "0": {} + "3062": {} }, "attack": 203, "defense": 205, "stamina": 216 }, "701": { + "types": [ + 2, + 3 + ], "forms": { - "0": {} + "3063": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 195, "defense": 153, - "stamina": 186 + "stamina": 186, + "temp_evolutions": { + "1": { + "attack": 280, + "defense": 212, + "stamina": 186, + "unreleased": true + } + } }, "702": { + "types": [ + 13, + 18 + ], "forms": { - "0": {} + "2860": {} }, "attack": 164, "defense": 134, "stamina": 167 }, "703": { + "types": [ + 6, + 18 + ], "forms": { - "0": {} + "3064": {} }, "attack": 95, "defense": 285, "stamina": 137 }, "704": { + "types": [ + 16 + ], "forms": { - "0": {} + "3065": { + "evolutions": [ + { + "pokemon": 705 + }, + { + "pokemon": 705, + "form": 2790 + } + ] + } }, "attack": 101, "defense": 112, @@ -10943,8 +15162,10 @@ "little": true }, "705": { + "types": [ + 16 + ], "forms": { - "0": {}, "2790": { "attack": 153, "defense": 201, @@ -10956,7 +15177,14 @@ } ] }, - "2810": {} + "2810": { + "evolutions": [ + { + "pokemon": 706, + "form": 2811 + } + ] + } }, "attack": 159, "defense": 176, @@ -10968,8 +15196,10 @@ ] }, "706": { + "types": [ + 16 + ], "forms": { - "0": {}, "2791": { "attack": 211, "defense": 255, @@ -10982,16 +15212,31 @@ "stamina": 207 }, "707": { + "types": [ + 9, + 18 + ], "forms": { - "0": {} + "3066": {} }, "attack": 160, "defense": 179, "stamina": 149 }, "708": { + "types": [ + 8, + 12 + ], "forms": { - "0": {} + "3067": { + "evolutions": [ + { + "pokemon": 709, + "form": 3068 + } + ] + } }, "attack": 125, "defense": 103, @@ -11004,14 +15249,22 @@ "little": true }, "709": { + "types": [ + 8, + 12 + ], "forms": { - "0": {} + "3068": {} }, "attack": 201, "defense": 154, "stamina": 198 }, "710": { + "types": [ + 8, + 12 + ], "forms": { "2641": { "evolutions": [ @@ -11067,6 +15320,10 @@ "little": true }, "711": { + "types": [ + 8, + 12 + ], "forms": { "2645": {}, "2646": { @@ -11090,8 +15347,21 @@ "stamina": 146 }, "712": { + "types": [ + 15 + ], "forms": { - "0": {} + "3069": { + "evolutions": [ + { + "pokemon": 713 + }, + { + "pokemon": 713, + "form": 2795 + } + ] + } }, "attack": 117, "defense": 120, @@ -11108,11 +15378,18 @@ "little": true }, "713": { + "types": [ + 15 + ], "forms": { "2795": { "attack": 214, "defense": 238, - "stamina": 216 + "stamina": 216, + "types": [ + 6, + 15 + ] }, "2812": {} }, @@ -11121,8 +15398,19 @@ "stamina": 216 }, "714": { + "types": [ + 3, + 16 + ], "forms": { - "0": {} + "3070": { + "evolutions": [ + { + "pokemon": 715, + "form": 3071 + } + ] + } }, "attack": 83, "defense": 73, @@ -11135,32 +15423,47 @@ "little": true }, "715": { + "types": [ + 3, + 16 + ], "forms": { - "0": {} + "3071": {} }, "attack": 205, "defense": 175, "stamina": 198 }, "716": { + "types": [ + 18 + ], "forms": { - "0": {}, "2649": {}, - "2650": {} + "2650": {}, + "3072": {} }, "attack": 250, "defense": 185, "stamina": 246 }, "717": { + "types": [ + 3, + 17 + ], "forms": { - "0": {} + "3073": {} }, "attack": 250, "defense": 185, "stamina": 246 }, "718": { + "types": [ + 5, + 16 + ], "forms": { "2591": { "attack": 205, @@ -11201,11 +15504,27 @@ "pokemon": 718, "form": 2592 } - ] + ], + "temp_evolutions": { + "1": { + "attack": 416, + "defense": 187, + "stamina": 428, + "unreleased": true + } + } }, "719": { + "types": [ + 6, + 18 + ], "forms": { - "0": {} + "3074": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 190, "defense": 285, @@ -11219,12 +15538,20 @@ } }, "720": { + "types": [ + 8, + 14 + ], "forms": { "2651": {}, "2652": { "attack": 311, "defense": 191, - "stamina": 173 + "stamina": 173, + "types": [ + 14, + 17 + ] } }, "attack": 261, @@ -11232,16 +15559,31 @@ "stamina": 173 }, "721": { + "types": [ + 10, + 11 + ], "forms": { - "0": {} + "3075": {} }, "attack": 252, "defense": 216, "stamina": 190 }, "722": { + "types": [ + 3, + 12 + ], "forms": { - "0": {} + "3076": { + "evolutions": [ + { + "pokemon": 723, + "form": 3077 + } + ] + } }, "attack": 102, "defense": 99, @@ -11254,8 +15596,22 @@ "little": true }, "723": { + "types": [ + 3, + 12 + ], "forms": { - "0": {} + "3077": { + "evolutions": [ + { + "pokemon": 724 + }, + { + "pokemon": 724, + "form": 2785 + } + ] + } }, "attack": 142, "defense": 139, @@ -11271,11 +15627,19 @@ ] }, "724": { + "types": [ + 8, + 12 + ], "forms": { "2785": { "attack": 213, "defense": 174, - "stamina": 204 + "stamina": 204, + "types": [ + 2, + 12 + ] }, "2809": {} }, @@ -11284,8 +15648,18 @@ "stamina": 186 }, "725": { + "types": [ + 10 + ], "forms": { - "0": {} + "3078": { + "evolutions": [ + { + "pokemon": 726, + "form": 3079 + } + ] + } }, "attack": 128, "defense": 79, @@ -11298,8 +15672,18 @@ "little": true }, "726": { + "types": [ + 10 + ], "forms": { - "0": {} + "3079": { + "evolutions": [ + { + "pokemon": 727, + "form": 3080 + } + ] + } }, "attack": 174, "defense": 103, @@ -11311,16 +15695,30 @@ ] }, "727": { + "types": [ + 10, + 17 + ], "forms": { - "0": {} + "3080": {} }, "attack": 214, "defense": 175, "stamina": 216 }, "728": { + "types": [ + 11 + ], "forms": { - "0": {} + "3081": { + "evolutions": [ + { + "pokemon": 729, + "form": 3082 + } + ] + } }, "attack": 120, "defense": 103, @@ -11333,8 +15731,18 @@ "little": true }, "729": { + "types": [ + 11 + ], "forms": { - "0": {} + "3082": { + "evolutions": [ + { + "pokemon": 730, + "form": 3083 + } + ] + } }, "attack": 168, "defense": 145, @@ -11346,16 +15754,31 @@ ] }, "730": { + "types": [ + 11, + 18 + ], "forms": { - "0": {} + "3083": {} }, "attack": 232, "defense": 195, "stamina": 190 }, "731": { + "types": [ + 1, + 3 + ], "forms": { - "0": {} + "3084": { + "evolutions": [ + { + "pokemon": 732, + "form": 3085 + } + ] + } }, "attack": 136, "defense": 59, @@ -11368,8 +15791,19 @@ "little": true }, "732": { + "types": [ + 1, + 3 + ], "forms": { - "0": {} + "3085": { + "evolutions": [ + { + "pokemon": 733, + "form": 3086 + } + ] + } }, "attack": 159, "defense": 100, @@ -11381,16 +15815,30 @@ ] }, "733": { + "types": [ + 1, + 3 + ], "forms": { - "0": {} + "3086": {} }, "attack": 222, "defense": 146, "stamina": 190 }, "734": { + "types": [ + 1 + ], "forms": { - "0": {} + "3087": { + "evolutions": [ + { + "pokemon": 735, + "form": 3088 + } + ] + } }, "attack": 122, "defense": 56, @@ -11403,16 +15851,29 @@ "little": true }, "735": { + "types": [ + 1 + ], "forms": { - "0": {} + "3088": {} }, "attack": 194, "defense": 113, "stamina": 204 }, "736": { + "types": [ + 7 + ], "forms": { - "0": {} + "3089": { + "evolutions": [ + { + "pokemon": 737, + "form": 3090 + } + ] + } }, "attack": 115, "defense": 85, @@ -11425,8 +15886,19 @@ "little": true }, "737": { + "types": [ + 7, + 13 + ], "forms": { - "0": {} + "3090": { + "evolutions": [ + { + "pokemon": 738, + "form": 3091 + } + ] + } }, "attack": 145, "defense": 161, @@ -11438,16 +15910,30 @@ ] }, "738": { + "types": [ + 7, + 13 + ], "forms": { - "0": {} + "3091": {} }, "attack": 254, "defense": 158, "stamina": 184 }, "739": { + "types": [ + 2 + ], "forms": { - "0": {} + "3092": { + "evolutions": [ + { + "pokemon": 740, + "form": 3093 + } + ] + } }, "attack": 150, "defense": 104, @@ -11460,27 +15946,61 @@ "little": true }, "740": { + "types": [ + 2, + 15 + ], "forms": { - "0": {} + "3093": {} }, "attack": 231, "defense": 138, "stamina": 219 }, "741": { + "types": [ + 3, + 10 + ], "forms": { "2679": {}, - "2680": {}, - "2681": {}, - "2683": {} + "2680": { + "types": [ + 3, + 13 + ] + }, + "2681": { + "types": [ + 3, + 14 + ] + }, + "2683": { + "types": [ + 3, + 8 + ] + } }, "attack": 196, "defense": 145, "stamina": 181 }, "742": { + "types": [ + 7, + 18 + ], "forms": { - "0": {} + "3094": { + "evolutions": [ + { + "pokemon": 743, + "form": 3095 + } + ] + } }, "attack": 110, "defense": 81, @@ -11493,14 +16013,21 @@ "little": true }, "743": { + "types": [ + 7, + 18 + ], "forms": { - "0": {} + "3095": {} }, "attack": 198, "defense": 146, "stamina": 155 }, "744": { + "types": [ + 6 + ], "forms": { "2737": { "evolutions": [ @@ -11539,6 +16066,9 @@ "little": true }, "745": { + "types": [ + 6 + ], "forms": { "2684": {}, "2685": { @@ -11557,6 +16087,9 @@ "stamina": 181 }, "746": { + "types": [ + 11 + ], "forms": { "2687": {}, "2688": { @@ -11570,8 +16103,19 @@ "stamina": 128 }, "747": { + "types": [ + 4, + 11 + ], "forms": { - "0": {} + "3096": { + "evolutions": [ + { + "pokemon": 748, + "form": 3097 + } + ] + } }, "attack": 98, "defense": 110, @@ -11584,16 +16128,30 @@ "little": true }, "748": { + "types": [ + 4, + 11 + ], "forms": { - "0": {} + "3097": {} }, "attack": 114, "defense": 273, "stamina": 137 }, "749": { + "types": [ + 5 + ], "forms": { - "0": {} + "3098": { + "evolutions": [ + { + "pokemon": 750, + "form": 3099 + } + ] + } }, "attack": 175, "defense": 121, @@ -11606,16 +16164,30 @@ "little": true }, "750": { + "types": [ + 5 + ], "forms": { - "0": {} + "3099": {} }, "attack": 214, "defense": 174, "stamina": 225 }, "751": { + "types": [ + 7, + 11 + ], "forms": { - "0": {} + "3100": { + "evolutions": [ + { + "pokemon": 752, + "form": 3101 + } + ] + } }, "attack": 72, "defense": 117, @@ -11628,16 +16200,30 @@ "little": true }, "752": { + "types": [ + 7, + 11 + ], "forms": { - "0": {} + "3101": {} }, "attack": 126, "defense": 219, "stamina": 169 }, "753": { + "types": [ + 12 + ], "forms": { - "0": {} + "3102": { + "evolutions": [ + { + "pokemon": 754, + "form": 3103 + } + ] + } }, "attack": 100, "defense": 64, @@ -11650,16 +16236,30 @@ "little": true }, "754": { + "types": [ + 12 + ], "forms": { - "0": {} + "3103": {} }, "attack": 192, "defense": 169, "stamina": 172 }, "755": { + "types": [ + 12, + 18 + ], "forms": { - "0": {} + "3104": { + "evolutions": [ + { + "pokemon": 756, + "form": 3105 + } + ] + } }, "attack": 108, "defense": 119, @@ -11672,16 +16272,32 @@ "little": true }, "756": { + "types": [ + 12, + 18 + ], "forms": { - "0": {} + "3105": {} }, "attack": 154, "defense": 168, "stamina": 155 }, "757": { + "types": [ + 4, + 10 + ], "forms": { - "0": {} + "3106": { + "evolutions": [ + { + "pokemon": 758, + "form": 3107, + "gender_requirement": 2 + } + ] + } }, "attack": 136, "defense": 80, @@ -11695,16 +16311,31 @@ "little": true }, "758": { + "types": [ + 4, + 10 + ], "forms": { - "0": {} + "3107": {} }, "attack": 228, "defense": 130, "stamina": 169 }, "759": { + "types": [ + 1, + 2 + ], "forms": { - "0": {} + "3108": { + "evolutions": [ + { + "pokemon": 760, + "form": 3020 + } + ] + } }, "attack": 136, "defense": 95, @@ -11717,16 +16348,31 @@ "little": true }, "760": { + "types": [ + 1, + 2 + ], "forms": { - "0": {} + "3020": {}, + "3021": {} }, "attack": 226, "defense": 141, "stamina": 260 }, "761": { + "types": [ + 12 + ], "forms": { - "0": {} + "3109": { + "evolutions": [ + { + "pokemon": 762, + "form": 3110 + } + ] + } }, "attack": 55, "defense": 69, @@ -11739,8 +16385,18 @@ "little": true }, "762": { + "types": [ + 12 + ], "forms": { - "0": {} + "3110": { + "evolutions": [ + { + "pokemon": 763, + "form": 3111 + } + ] + } }, "attack": 78, "defense": 94, @@ -11752,40 +16408,64 @@ ] }, "763": { + "types": [ + 12 + ], "forms": { - "0": {} + "3111": {} }, "attack": 222, "defense": 195, "stamina": 176 }, "764": { + "types": [ + 18 + ], "forms": { - "0": {} + "3112": {} }, "attack": 165, "defense": 215, "stamina": 139 }, "765": { + "types": [ + 1, + 14 + ], "forms": { - "0": {} + "3113": {} }, "attack": 168, "defense": 192, "stamina": 207 }, "766": { + "types": [ + 2 + ], "forms": { - "0": {} + "3114": {} }, "attack": 222, "defense": 160, "stamina": 225 }, "767": { + "types": [ + 7, + 11 + ], "forms": { - "0": {} + "3115": { + "evolutions": [ + { + "pokemon": 768, + "form": 3116 + } + ] + } }, "attack": 67, "defense": 74, @@ -11798,16 +16478,31 @@ "little": true }, "768": { + "types": [ + 7, + 11 + ], "forms": { - "0": {} + "3116": {} }, "attack": 218, "defense": 226, "stamina": 181 }, "769": { + "types": [ + 5, + 8 + ], "forms": { - "0": {} + "3117": { + "evolutions": [ + { + "pokemon": 770, + "form": 3118 + } + ] + } }, "attack": 120, "defense": 118, @@ -11820,24 +16515,41 @@ "little": true }, "770": { + "types": [ + 5, + 8 + ], "forms": { - "0": {} + "3118": {} }, "attack": 178, "defense": 178, "stamina": 198 }, "771": { + "types": [ + 11 + ], "forms": { - "0": {} + "3119": {} }, "attack": 97, "defense": 224, "stamina": 146 }, "772": { + "types": [ + 1 + ], "forms": { - "0": {} + "3120": { + "evolutions": [ + { + "pokemon": 773, + "form": 2689 + } + ] + } }, "attack": 184, "defense": 184, @@ -11851,31 +16563,106 @@ "little": true }, "773": { + "types": [ + 1 + ], "forms": { "2689": {}, - "2690": {}, - "2691": {}, - "2692": {}, - "2693": {}, - "2694": {}, - "2695": {}, - "2696": {}, - "2697": {}, - "2698": {}, - "2699": {}, - "2700": {}, - "2701": {}, - "2702": {}, - "2703": {}, - "2704": {}, - "2705": {}, - "2706": {} + "2690": { + "types": [ + 7 + ] + }, + "2691": { + "types": [ + 17 + ] + }, + "2692": { + "types": [ + 16 + ] + }, + "2693": { + "types": [ + 13 + ] + }, + "2694": { + "types": [ + 18 + ] + }, + "2695": { + "types": [ + 2 + ] + }, + "2696": { + "types": [ + 10 + ] + }, + "2697": { + "types": [ + 3 + ] + }, + "2698": { + "types": [ + 8 + ] + }, + "2699": { + "types": [ + 12 + ] + }, + "2700": { + "types": [ + 5 + ] + }, + "2701": { + "types": [ + 15 + ] + }, + "2702": { + "types": [ + 4 + ] + }, + "2703": { + "types": [ + 14 + ] + }, + "2704": { + "types": [ + 6 + ] + }, + "2705": { + "types": [ + 9 + ] + }, + "2706": { + "types": [ + 11 + ] + } }, "attack": 198, "defense": 198, "stamina": 216 }, "774": { + "types": [ + 3, + 6 + ], "forms": { "2707": {}, "2708": { @@ -11925,30 +16712,45 @@ "stamina": 155 }, "775": { + "types": [ + 1 + ], "forms": { - "0": {} + "3121": {} }, "attack": 216, "defense": 165, "stamina": 163 }, "776": { + "types": [ + 10, + 16 + ], "forms": { - "0": {} + "3122": {} }, "attack": 165, "defense": 215, "stamina": 155 }, "777": { + "types": [ + 9, + 13 + ], "forms": { - "0": {} + "3123": {} }, "attack": 190, "defense": 145, "stamina": 163 }, "778": { + "types": [ + 8, + 18 + ], "forms": { "2715": {}, "2716": {} @@ -11958,32 +16760,66 @@ "stamina": 146 }, "779": { + "types": [ + 11, + 14 + ], "forms": { - "0": {} + "3124": {} }, "attack": 208, "defense": 145, "stamina": 169 }, "780": { + "types": [ + 1, + 16 + ], "forms": { - "0": {} + "3125": { + "temp_evolutions": { + "1": {} + } + } }, "attack": 231, "defense": 164, - "stamina": 186 + "stamina": 186, + "temp_evolutions": { + "1": { + "attack": 278, + "defense": 210, + "stamina": 186, + "unreleased": true + } + } }, "781": { + "types": [ + 8, + 12 + ], "forms": { - "0": {} + "3126": {} }, "attack": 233, "defense": 179, "stamina": 172 }, "782": { + "types": [ + 16 + ], "forms": { - "0": {} + "3127": { + "evolutions": [ + { + "pokemon": 783, + "form": 3128 + } + ] + } }, "attack": 102, "defense": 108, @@ -11996,8 +16832,19 @@ "little": true }, "783": { + "types": [ + 2, + 16 + ], "forms": { - "0": {} + "3128": { + "evolutions": [ + { + "pokemon": 784, + "form": 3129 + } + ] + } }, "attack": 145, "defense": 162, @@ -12009,48 +16856,78 @@ ] }, "784": { + "types": [ + 2, + 16 + ], "forms": { - "0": {} + "3129": {} }, "attack": 222, "defense": 240, "stamina": 181 }, "785": { + "types": [ + 13, + 18 + ], "forms": { - "0": {} + "3130": {} }, "attack": 250, "defense": 181, "stamina": 172 }, "786": { + "types": [ + 14, + 18 + ], "forms": { - "0": {} + "3131": {} }, "attack": 259, "defense": 208, "stamina": 172 }, "787": { + "types": [ + 12, + 18 + ], "forms": { - "0": {} + "3132": {} }, "attack": 249, "defense": 215, "stamina": 172 }, "788": { + "types": [ + 11, + 18 + ], "forms": { - "0": {} + "3133": {} }, "attack": 189, "defense": 254, "stamina": 172 }, "789": { + "types": [ + 14 + ], "forms": { - "0": {} + "3134": { + "evolutions": [ + { + "pokemon": 790, + "form": 3135 + } + ] + } }, "attack": 54, "defense": 57, @@ -12063,8 +16940,22 @@ "little": true }, "790": { + "types": [ + 14 + ], "forms": { - "0": {} + "3135": { + "evolutions": [ + { + "pokemon": 791, + "form": 3136 + }, + { + "pokemon": 792, + "form": 3137 + } + ] + } }, "attack": 54, "defense": 242, @@ -12079,94 +16970,144 @@ ] }, "791": { + "types": [ + 9, + 14 + ], "forms": { - "0": {} + "3136": {} }, "attack": 255, "defense": 191, "stamina": 264 }, "792": { + "types": [ + 8, + 14 + ], "forms": { - "0": {} + "3137": {} }, "attack": 255, "defense": 191, "stamina": 264 }, "793": { + "types": [ + 4, + 6 + ], "forms": { - "0": {} + "3138": {} }, "attack": 249, "defense": 210, "stamina": 240 }, "794": { + "types": [ + 2, + 7 + ], "forms": { - "0": {} + "3139": {} }, "attack": 236, "defense": 196, "stamina": 216 }, "795": { + "types": [ + 2, + 7 + ], "forms": { - "0": {} + "3140": {} }, "attack": 316, "defense": 85, "stamina": 174 }, "796": { + "types": [ + 13 + ], "forms": { - "0": {} + "3141": {} }, "attack": 330, "defense": 144, "stamina": 195 }, "797": { + "types": [ + 3, + 9 + ], "forms": { - "0": {} + "3142": {} }, "attack": 207, "defense": 199, "stamina": 219 }, "798": { + "types": [ + 9, + 12 + ], "forms": { - "0": {} + "3143": {} }, "attack": 323, "defense": 182, "stamina": 139 }, "799": { + "types": [ + 16, + 17 + ], "forms": { - "0": {} + "3144": {} }, "attack": 188, "defense": 99, "stamina": 440 }, "800": { + "types": [ + 14 + ], "forms": { "2717": {}, "2718": { "attack": 277, "defense": 220, - "stamina": 200 + "stamina": 200, + "types": [ + 9, + 14 + ] }, "2719": { "attack": 277, "defense": 220, - "stamina": 200 + "stamina": 200, + "types": [ + 8, + 14 + ] }, "2720": { "attack": 337, "defense": 196, - "stamina": 200 + "stamina": 200, + "types": [ + 14, + 16 + ] } }, "attack": 251, @@ -12174,6 +17115,10 @@ "stamina": 219 }, "801": { + "types": [ + 9, + 18 + ], "forms": { "2721": {}, "2722": {} @@ -12183,24 +17128,35 @@ "stamina": 190 }, "802": { + "types": [ + 2, + 8 + ], "forms": { - "0": {} + "3145": {} }, "attack": 265, "defense": 190, "stamina": 207 }, "803": { + "types": [ + 4 + ], "forms": { - "0": {} + "3146": { + "evolutions": [ + { + "pokemon": 804, + "form": 3147 + } + ] + } }, "attack": 145, "defense": 133, "stamina": 167, "evolutions": [ - { - "pokemon": 804 - }, { "pokemon": 804 } @@ -12208,41 +17164,65 @@ "little": true }, "804": { + "types": [ + 4, + 16 + ], "forms": { - "0": {} + "3147": {} }, "attack": 263, "defense": 159, "stamina": 177 }, "805": { + "types": [ + 6, + 9 + ], "forms": { - "0": {} + "3148": {} }, "attack": 213, "defense": 298, "stamina": 156 }, "806": { + "types": [ + 8, + 10 + ], "forms": { - "0": {} + "3149": {} }, "attack": 315, "defense": 148, "stamina": 142 }, "807": { + "types": [ + 13 + ], "forms": { - "0": {} + "3150": {} }, "attack": 252, "defense": 177, "stamina": 204 }, "808": { + "types": [ + 9 + ], "forms": { - "0": {}, - "2321": {} + "2321": { + "evolutions": [ + { + "pokemon": 809, + "form": 2324 + } + ] + } }, "attack": 118, "defense": 99, @@ -12255,8 +17235,10 @@ "little": true }, "809": { + "types": [ + 9 + ], "forms": { - "0": {}, "2324": {} }, "attack": 226, @@ -12264,8 +17246,18 @@ "stamina": 264 }, "810": { + "types": [ + 12 + ], "forms": { - "0": {} + "3151": { + "evolutions": [ + { + "pokemon": 811, + "form": 3152 + } + ] + } }, "attack": 122, "defense": 91, @@ -12278,8 +17270,18 @@ "little": true }, "811": { + "types": [ + 12 + ], "forms": { - "0": {} + "3152": { + "evolutions": [ + { + "pokemon": 812, + "form": 2326 + } + ] + } }, "attack": 165, "defense": 134, @@ -12291,16 +17293,29 @@ ] }, "812": { + "types": [ + 12 + ], "forms": { - "0": {} + "2326": {} }, "attack": 239, "defense": 168, "stamina": 225 }, "813": { + "types": [ + 10 + ], "forms": { - "0": {} + "3153": { + "evolutions": [ + { + "pokemon": 814, + "form": 3154 + } + ] + } }, "attack": 132, "defense": 79, @@ -12313,8 +17328,18 @@ "little": true }, "814": { + "types": [ + 10 + ], "forms": { - "0": {} + "3154": { + "evolutions": [ + { + "pokemon": 815, + "form": 3016 + } + ] + } }, "attack": 170, "defense": 125, @@ -12326,16 +17351,29 @@ ] }, "815": { + "types": [ + 10 + ], "forms": { - "0": {} + "3016": {} }, "attack": 238, "defense": 163, "stamina": 190 }, "816": { + "types": [ + 11 + ], "forms": { - "0": {} + "3155": { + "evolutions": [ + { + "pokemon": 817, + "form": 3156 + } + ] + } }, "attack": 132, "defense": 79, @@ -12348,8 +17386,18 @@ "little": true }, "817": { + "types": [ + 11 + ], "forms": { - "0": {} + "3156": { + "evolutions": [ + { + "pokemon": 818, + "form": 3157 + } + ] + } }, "attack": 186, "defense": 113, @@ -12361,16 +17409,29 @@ ] }, "818": { + "types": [ + 11 + ], "forms": { - "0": {} + "3157": {} }, "attack": 262, "defense": 142, "stamina": 172 }, "819": { + "types": [ + 1 + ], "forms": { - "0": {} + "3158": { + "evolutions": [ + { + "pokemon": 820, + "form": 3159 + } + ] + } }, "attack": 95, "defense": 86, @@ -12383,16 +17444,29 @@ "little": true }, "820": { + "types": [ + 1 + ], "forms": { - "0": {} + "3159": {} }, "attack": 160, "defense": 156, "stamina": 260 }, "821": { + "types": [ + 3 + ], "forms": { - "0": {} + "3160": { + "evolutions": [ + { + "pokemon": 822, + "form": 3161 + } + ] + } }, "attack": 88, "defense": 67, @@ -12405,8 +17479,18 @@ "little": true }, "822": { + "types": [ + 3 + ], "forms": { - "0": {} + "3161": { + "evolutions": [ + { + "pokemon": 823, + "form": 3162 + } + ] + } }, "attack": 129, "defense": 110, @@ -12418,16 +17502,30 @@ ] }, "823": { + "types": [ + 3, + 9 + ], "forms": { - "0": {} + "3162": {} }, "attack": 163, "defense": 192, "stamina": 221 }, "824": { + "types": [ + 7 + ], "forms": { - "0": {} + "3163": { + "evolutions": [ + { + "pokemon": 825, + "form": 3164 + } + ] + } }, "attack": 46, "defense": 67, @@ -12440,8 +17538,19 @@ "little": true }, "825": { + "types": [ + 7, + 14 + ], "forms": { - "0": {} + "3164": { + "evolutions": [ + { + "pokemon": 826, + "form": 3165 + } + ] + } }, "attack": 87, "defense": 157, @@ -12453,16 +17562,30 @@ ] }, "826": { + "types": [ + 7, + 14 + ], "forms": { - "0": {} + "3165": {} }, "attack": 156, "defense": 240, "stamina": 155 }, "827": { + "types": [ + 17 + ], "forms": { - "0": {} + "3166": { + "evolutions": [ + { + "pokemon": 828, + "form": 3167 + } + ] + } }, "attack": 85, "defense": 82, @@ -12475,16 +17598,29 @@ "little": true }, "828": { + "types": [ + 17 + ], "forms": { - "0": {} + "3167": {} }, "attack": 172, "defense": 164, "stamina": 172 }, "829": { + "types": [ + 12 + ], "forms": { - "0": {} + "3168": { + "evolutions": [ + { + "pokemon": 830, + "form": 3169 + } + ] + } }, "attack": 70, "defense": 104, @@ -12497,16 +17633,29 @@ "little": true }, "830": { + "types": [ + 12 + ], "forms": { - "0": {} + "3169": {} }, "attack": 148, "defense": 211, "stamina": 155 }, "831": { + "types": [ + 1 + ], "forms": { - "0": {} + "2861": { + "evolutions": [ + { + "pokemon": 832, + "form": 2862 + } + ] + } }, "attack": 76, "defense": 97, @@ -12519,16 +17668,29 @@ "little": true }, "832": { + "types": [ + 1 + ], "forms": { - "0": {} + "2862": {} }, "attack": 159, "defense": 198, "stamina": 176 }, "833": { + "types": [ + 11 + ], "forms": { - "0": {} + "3170": { + "evolutions": [ + { + "pokemon": 834, + "form": 3171 + } + ] + } }, "attack": 114, "defense": 85, @@ -12541,16 +17703,30 @@ "little": true }, "834": { + "types": [ + 6, + 11 + ], "forms": { - "0": {} + "3171": {} }, "attack": 213, "defense": 164, "stamina": 207 }, "835": { + "types": [ + 13 + ], "forms": { - "0": {} + "3172": { + "evolutions": [ + { + "pokemon": 836, + "form": 3173 + } + ] + } }, "attack": 80, "defense": 90, @@ -12563,16 +17739,29 @@ "little": true }, "836": { + "types": [ + 13 + ], "forms": { - "0": {} + "3173": {} }, "attack": 197, "defense": 131, "stamina": 170 }, "837": { + "types": [ + 6 + ], "forms": { - "0": {} + "3174": { + "evolutions": [ + { + "pokemon": 838, + "form": 3175 + } + ] + } }, "attack": 73, "defense": 91, @@ -12585,8 +17774,19 @@ "little": true }, "838": { + "types": [ + 6, + 10 + ], "forms": { - "0": {} + "3175": { + "evolutions": [ + { + "pokemon": 839, + "form": 3176 + } + ] + } }, "attack": 114, "defense": 157, @@ -12598,49 +17798,96 @@ ] }, "839": { + "types": [ + 6, + 10 + ], "forms": { - "0": {} + "3176": {} }, "attack": 146, "defense": 198, "stamina": 242 }, "840": { + "types": [ + 12, + 16 + ], "forms": { - "0": {} + "3177": { + "evolutions": [ + { + "pokemon": 841, + "form": 3178 + }, + { + "pokemon": 842, + "form": 3179 + }, + { + "pokemon": 1011, + "form": 3326 + } + ] + } }, "attack": 71, "defense": 116, "stamina": 120, "evolutions": [ { - "pokemon": 841 + "pokemon": 841, + "form": 3178 + }, + { + "pokemon": 842, + "form": 3179 }, { - "pokemon": 842 + "pokemon": 1011, + "form": 3326 } ], "little": true }, "841": { + "types": [ + 12, + 16 + ], "forms": { - "0": {} + "3178": {} }, "attack": 214, "defense": 144, "stamina": 172 }, "842": { + "types": [ + 12, + 16 + ], "forms": { - "0": {} + "3179": {} }, "attack": 178, "defense": 146, "stamina": 242 }, "843": { + "types": [ + 5 + ], "forms": { - "0": {} + "3180": { + "evolutions": [ + { + "pokemon": 844, + "form": 3181 + } + ] + } }, "attack": 103, "defense": 123, @@ -12653,24 +17900,41 @@ "little": true }, "844": { + "types": [ + 5 + ], "forms": { - "0": {} + "3181": {} }, "attack": 202, "defense": 207, "stamina": 176 }, "845": { + "types": [ + 3, + 11 + ], "forms": { - "0": {} + "3182": {} }, "attack": 173, "defense": 163, "stamina": 172 }, "846": { + "types": [ + 11 + ], "forms": { - "0": {} + "3183": { + "evolutions": [ + { + "pokemon": 847, + "form": 3184 + } + ] + } }, "attack": 118, "defense": 72, @@ -12683,16 +17947,34 @@ "little": true }, "847": { + "types": [ + 11 + ], "forms": { - "0": {} + "3184": {} }, "attack": 258, "defense": 127, "stamina": 156 }, "848": { + "types": [ + 4, + 13 + ], "forms": { - "0": {} + "3185": { + "evolutions": [ + { + "pokemon": 849, + "form": 2463 + }, + { + "pokemon": 849, + "form": 2464 + } + ] + } }, "attack": 97, "defense": 65, @@ -12710,6 +17992,10 @@ "little": true }, "849": { + "types": [ + 4, + 13 + ], "forms": { "2463": {}, "2464": {} @@ -12719,8 +18005,19 @@ "stamina": 181 }, "850": { + "types": [ + 7, + 10 + ], "forms": { - "0": {} + "3186": { + "evolutions": [ + { + "pokemon": 851, + "form": 3187 + } + ] + } }, "attack": 118, "defense": 90, @@ -12733,16 +18030,30 @@ "little": true }, "851": { + "types": [ + 7, + 10 + ], "forms": { - "0": {} + "3187": {} }, "attack": 220, "defense": 158, "stamina": 225 }, "852": { + "types": [ + 2 + ], "forms": { - "0": {} + "3188": { + "evolutions": [ + { + "pokemon": 853, + "form": 3189 + } + ] + } }, "attack": 121, "defense": 103, @@ -12755,14 +18066,20 @@ "little": true }, "853": { + "types": [ + 2 + ], "forms": { - "0": {} + "3189": {} }, "attack": 209, "defense": 162, "stamina": 190 }, "854": { + "types": [ + 8 + ], "forms": { "2477": { "evolutions": [ @@ -12792,6 +18109,9 @@ "little": true }, "855": { + "types": [ + 8 + ], "forms": { "2480": {}, "2481": {} @@ -12801,8 +18121,18 @@ "stamina": 155 }, "856": { + "types": [ + 14 + ], "forms": { - "0": {} + "3190": { + "evolutions": [ + { + "pokemon": 857, + "form": 3191 + } + ] + } }, "attack": 98, "defense": 93, @@ -12815,8 +18145,18 @@ "little": true }, "857": { + "types": [ + 14 + ], "forms": { - "0": {} + "3191": { + "evolutions": [ + { + "pokemon": 858, + "form": 3192 + } + ] + } }, "attack": 153, "defense": 133, @@ -12828,16 +18168,31 @@ ] }, "858": { + "types": [ + 14, + 18 + ], "forms": { - "0": {} + "3192": {} }, "attack": 237, "defense": 182, "stamina": 149 }, "859": { + "types": [ + 17, + 18 + ], "forms": { - "0": {} + "3193": { + "evolutions": [ + { + "pokemon": 860, + "form": 3194 + } + ] + } }, "attack": 103, "defense": 69, @@ -12850,8 +18205,19 @@ "little": true }, "860": { + "types": [ + 17, + 18 + ], "forms": { - "0": {} + "3194": { + "evolutions": [ + { + "pokemon": 861, + "form": 3195 + } + ] + } }, "attack": 145, "defense": 102, @@ -12863,14 +18229,22 @@ ] }, "861": { + "types": [ + 17, + 18 + ], "forms": { - "0": {} + "3195": {} }, "attack": 227, "defense": 139, "stamina": 216 }, "862": { + "types": [ + 1, + 17 + ], "forms": { "2501": {} }, @@ -12879,6 +18253,9 @@ "stamina": 212 }, "863": { + "types": [ + 9 + ], "forms": { "2504": {} }, @@ -12887,6 +18264,9 @@ "stamina": 172 }, "864": { + "types": [ + 8 + ], "forms": { "2507": {} }, @@ -12895,6 +18275,9 @@ "stamina": 155 }, "865": { + "types": [ + 2 + ], "forms": { "2510": {} }, @@ -12903,6 +18286,10 @@ "stamina": 158 }, "866": { + "types": [ + 14, + 15 + ], "forms": { "2513": {} }, @@ -12911,6 +18298,10 @@ "stamina": 190 }, "867": { + "types": [ + 5, + 8 + ], "forms": { "2516": {} }, @@ -12919,8 +18310,18 @@ "stamina": 151 }, "868": { + "types": [ + 18 + ], "forms": { - "0": {} + "3196": { + "evolutions": [ + { + "pokemon": 869, + "form": 3197 + } + ] + } }, "attack": 90, "defense": 97, @@ -12933,32 +18334,65 @@ "little": true }, "869": { + "types": [ + 18 + ], "forms": { - "0": {} + "3197": {} }, "attack": 203, "defense": 203, "stamina": 163 }, "870": { + "types": [ + 2 + ], "forms": { - "0": {} + "2325": { + "temp_evolutions": { + "1": {} + } + }, + "2870": {} }, "attack": 193, "defense": 170, - "stamina": 163 + "stamina": 163, + "temp_evolutions": { + "1": { + "attack": 267, + "defense": 229, + "stamina": 163, + "unreleased": true + } + } }, "871": { + "types": [ + 13 + ], "forms": { - "0": {} + "3198": {} }, "attack": 176, "defense": 161, "stamina": 134 }, "872": { + "types": [ + 7, + 15 + ], "forms": { - "0": {} + "3199": { + "evolutions": [ + { + "pokemon": 873, + "form": 3200 + } + ] + } }, "attack": 76, "defense": 59, @@ -12971,22 +18405,32 @@ "little": true }, "873": { + "types": [ + 7, + 15 + ], "forms": { - "0": {} + "3200": {} }, "attack": 230, "defense": 155, "stamina": 172 }, "874": { + "types": [ + 6 + ], "forms": { - "0": {} + "3201": {} }, "attack": 222, "defense": 182, "stamina": 225 }, "875": { + "types": [ + 15 + ], "forms": { "2540": {}, "2541": { @@ -13000,6 +18444,10 @@ "stamina": 181 }, "876": { + "types": [ + 1, + 14 + ], "forms": { "2542": {}, "2543": { @@ -13013,6 +18461,10 @@ "stamina": 155 }, "877": { + "types": [ + 13, + 17 + ], "forms": { "2544": {}, "2545": {} @@ -13022,8 +18474,18 @@ "stamina": 151 }, "878": { + "types": [ + 9 + ], "forms": { - "0": {} + "3202": { + "evolutions": [ + { + "pokemon": 879, + "form": 3203 + } + ] + } }, "attack": 140, "defense": 91, @@ -13036,56 +18498,97 @@ "little": true }, "879": { + "types": [ + 9 + ], "forms": { - "0": {} + "3203": {} }, "attack": 226, "defense": 126, "stamina": 263 }, "880": { + "types": [ + 13, + 16 + ], "forms": { - "0": {} + "3204": {} }, "attack": 195, "defense": 165, "stamina": 207 }, "881": { + "types": [ + 13, + 15 + ], "forms": { - "0": {} + "3205": {} }, "attack": 190, "defense": 166, "stamina": 207 }, "882": { + "types": [ + 11, + 16 + ], "forms": { - "0": {} + "3206": {} }, "attack": 175, "defense": 185, "stamina": 207 }, "883": { + "types": [ + 11, + 15 + ], "forms": { - "0": {} + "3207": {} }, "attack": 171, "defense": 185, "stamina": 207 }, "884": { + "evolutions": [ + { + "pokemon": 1018, + "form": 0 + } + ], + "types": [ + 9, + 16 + ], "forms": { - "0": {} + "3208": {} }, "attack": 239, "defense": 185, - "stamina": 172 + "stamina": 172, + "little": true }, "885": { + "types": [ + 8, + 16 + ], "forms": { - "0": {} + "3209": { + "evolutions": [ + { + "pokemon": 886, + "form": 3210 + } + ] + } }, "attack": 117, "defense": 61, @@ -13098,8 +18601,19 @@ "little": true }, "886": { + "types": [ + 8, + 16 + ], "forms": { - "0": {} + "3210": { + "evolutions": [ + { + "pokemon": 887, + "form": 3211 + } + ] + } }, "attack": 163, "defense": 105, @@ -13111,40 +18625,64 @@ ] }, "887": { + "types": [ + 8, + 16 + ], "forms": { - "0": {} + "3211": {} }, "attack": 266, "defense": 170, "stamina": 204 }, "888": { + "types": [ + 9, + 18 + ], "forms": { "2576": { "attack": 332, "defense": 240, "stamina": 192 }, - "2577": {} + "2577": { + "types": [ + 18 + ] + } }, "attack": 254, "defense": 236, "stamina": 192 }, "889": { + "types": [ + 2, + 9 + ], "forms": { "2578": { "attack": 250, "defense": 292, "stamina": 192 }, - "2579": {} + "2579": { + "types": [ + 2 + ] + } }, "attack": 254, "defense": 236, "stamina": 192 }, "890": { + "types": [ + 4, + 16 + ], "forms": { "2580": { "attack": 251, @@ -13158,8 +18696,22 @@ "stamina": 268 }, "891": { + "types": [ + 2 + ], "forms": { - "0": {} + "3212": { + "evolutions": [ + { + "pokemon": 892, + "form": 2723 + }, + { + "pokemon": 892, + "form": 2724 + } + ] + } }, "attack": 170, "defense": 112, @@ -13177,66 +18729,107 @@ "little": true }, "892": { + "types": [ + 2 + ], "forms": { - "2723": {}, - "2724": {} + "2723": { + "types": [ + 2, + 17 + ] + }, + "2724": { + "types": [ + 2, + 11 + ] + } }, "attack": 254, "defense": 177, "stamina": 225 }, "893": { + "types": [ + 12, + 17 + ], "forms": { - "0": {} + "3213": {} }, "attack": 242, "defense": 215, "stamina": 233 }, "894": { + "types": [ + 13 + ], "forms": { - "0": {} + "3214": {} }, "attack": 250, "defense": 125, "stamina": 190 }, "895": { + "types": [ + 16 + ], "forms": { - "0": {} + "3215": {} }, "attack": 202, "defense": 101, "stamina": 400 }, "896": { + "types": [ + 15 + ], "forms": { - "0": {} + "3216": {} }, "attack": 246, "defense": 223, "stamina": 225 }, "897": { + "types": [ + 8 + ], "forms": { - "0": {} + "3217": {} }, "attack": 273, "defense": 146, "stamina": 205 }, "898": { + "types": [ + 12, + 14 + ], "forms": { "2725": {}, "2726": { "attack": 268, "defense": 246, - "stamina": 205 + "stamina": 205, + "types": [ + 14, + 15 + ] }, "2727": { "attack": 324, "defense": 194, - "stamina": 205 + "stamina": 205, + "types": [ + 8, + 14 + ] } }, "attack": 162, @@ -13244,24 +18837,35 @@ "stamina": 225 }, "899": { + "types": [ + 1, + 14 + ], "forms": { - "0": {} + "3218": {} }, "attack": 206, "defense": 145, "stamina": 230 }, "900": { + "types": [ + 6, + 7 + ], "forms": { - "0": {} + "3219": {} }, "attack": 253, "defense": 174, "stamina": 172 }, "901": { + "types": [ + 1, + 5 + ], "forms": { - "0": {}, "2817": {} }, "attack": 243, @@ -13269,32 +18873,52 @@ "stamina": 277 }, "902": { + "attack": 217, + "defense": 144, + "stamina": 260, + "types": [ + 8, + 11 + ], "forms": { "0": {}, "2807": {}, - "2808": {} - }, - "attack": 217, - "defense": 144, - "stamina": 260 + "2808": { + "attack": 199, + "defense": 144, + "stamina": 260 + } + } }, "903": { + "types": [ + 2, + 4 + ], "forms": { - "0": {} + "3220": {} }, "attack": 259, "defense": 158, "stamina": 190 }, "904": { + "types": [ + 4, + 17 + ], "forms": { - "0": {} + "3221": {} }, "attack": 222, "defense": 171, "stamina": 198 }, "905": { + "types": [ + 3, + 18 + ], "forms": { "2802": {}, "2803": { @@ -13308,8 +18932,18 @@ "stamina": 179 }, "906": { + "types": [ + 12 + ], "forms": { - "0": {} + "3222": { + "evolutions": [ + { + "pokemon": 907, + "form": 3223 + } + ] + } }, "attack": 116, "defense": 99, @@ -13322,8 +18956,18 @@ "little": true }, "907": { + "types": [ + 12 + ], "forms": { - "0": {} + "3223": { + "evolutions": [ + { + "pokemon": 908, + "form": 3224 + } + ] + } }, "attack": 157, "defense": 128, @@ -13335,16 +18979,30 @@ ] }, "908": { + "types": [ + 12, + 17 + ], "forms": { - "0": {} + "3224": {} }, "attack": 233, "defense": 153, "stamina": 183 }, "909": { + "types": [ + 10 + ], "forms": { - "0": {} + "3225": { + "evolutions": [ + { + "pokemon": 910, + "form": 3226 + } + ] + } }, "attack": 112, "defense": 96, @@ -13357,8 +19015,18 @@ "little": true }, "910": { + "types": [ + 10 + ], "forms": { - "0": {} + "3226": { + "evolutions": [ + { + "pokemon": 911, + "form": 3227 + } + ] + } }, "attack": 162, "defense": 134, @@ -13370,16 +19038,30 @@ ] }, "911": { + "types": [ + 8, + 10 + ], "forms": { - "0": {} + "3227": {} }, "attack": 207, "defense": 178, "stamina": 232 }, "912": { + "types": [ + 11 + ], "forms": { - "0": {} + "3228": { + "evolutions": [ + { + "pokemon": 913, + "form": 3229 + } + ] + } }, "attack": 120, "defense": 86, @@ -13392,8 +19074,18 @@ "little": true }, "913": { + "types": [ + 11 + ], "forms": { - "0": {} + "3229": { + "evolutions": [ + { + "pokemon": 914, + "form": 3230 + } + ] + } }, "attack": 162, "defense": 123, @@ -13405,16 +19097,36 @@ ] }, "914": { + "types": [ + 2, + 11 + ], "forms": { - "0": {} + "3230": {} }, "attack": 236, "defense": 159, "stamina": 198 }, "915": { + "types": [ + 1 + ], "forms": { - "0": {} + "3231": { + "evolutions": [ + { + "pokemon": 916, + "form": 2981, + "gender_requirement": 1 + }, + { + "pokemon": 916, + "form": 2982, + "gender_requirement": 2 + } + ] + } }, "attack": 81, "defense": 79, @@ -13434,6 +19146,9 @@ "little": true }, "916": { + "types": [ + 1 + ], "forms": { "2981": {}, "2982": { @@ -13447,8 +19162,18 @@ "stamina": 242 }, "917": { + "types": [ + 7 + ], "forms": { - "0": {} + "3232": { + "evolutions": [ + { + "pokemon": 918, + "form": 3233 + } + ] + } }, "attack": 70, "defense": 77, @@ -13461,16 +19186,29 @@ "little": true }, "918": { + "types": [ + 7 + ], "forms": { - "0": {} + "3233": {} }, "attack": 139, "defense": 166, "stamina": 155 }, "919": { + "types": [ + 7 + ], "forms": { - "0": {} + "3234": { + "evolutions": [ + { + "pokemon": 920, + "form": 3235 + } + ] + } }, "attack": 81, "defense": 65, @@ -13483,16 +19221,30 @@ "little": true }, "920": { + "types": [ + 7, + 17 + ], "forms": { - "0": {} + "3235": {} }, "attack": 199, "defense": 144, "stamina": 174 }, "921": { + "types": [ + 13 + ], "forms": { - "0": {} + "3236": { + "evolutions": [ + { + "pokemon": 922, + "form": 3237 + } + ] + } }, "attack": 95, "defense": 45, @@ -13505,8 +19257,19 @@ "little": true }, "922": { + "types": [ + 2, + 13 + ], "forms": { - "0": {} + "3237": { + "evolutions": [ + { + "pokemon": 923, + "form": 3238 + } + ] + } }, "attack": 147, "defense": 82, @@ -13518,16 +19281,34 @@ ] }, "923": { + "types": [ + 2, + 13 + ], "forms": { - "0": {} + "3238": {} }, "attack": 232, "defense": 141, "stamina": 172 }, "924": { + "types": [ + 1 + ], "forms": { - "0": {} + "3239": { + "evolutions": [ + { + "pokemon": 925, + "form": 2984 + }, + { + "pokemon": 925, + "form": 2983 + } + ] + } }, "attack": 98, "defense": 90, @@ -13545,6 +19326,9 @@ "little": true }, "925": { + "types": [ + 1 + ], "forms": { "2983": {}, "2984": {} @@ -13554,8 +19338,18 @@ "stamina": 179 }, "926": { + "types": [ + 18 + ], "forms": { - "0": {} + "3240": { + "evolutions": [ + { + "pokemon": 927, + "form": 3241 + } + ] + } }, "attack": 102, "defense": 126, @@ -13568,16 +19362,30 @@ "little": true }, "927": { + "types": [ + 18 + ], "forms": { - "0": {} + "3241": {} }, "attack": 159, "defense": 212, "stamina": 149 }, "928": { + "types": [ + 1, + 12 + ], "forms": { - "0": {} + "3242": { + "evolutions": [ + { + "pokemon": 929, + "form": 3243 + } + ] + } }, "attack": 100, "defense": 89, @@ -13590,8 +19398,19 @@ "little": true }, "929": { + "types": [ + 1, + 12 + ], "forms": { - "0": {} + "3243": { + "evolutions": [ + { + "pokemon": 930, + "form": 3244 + } + ] + } }, "attack": 137, "defense": 131, @@ -13603,14 +19422,22 @@ ] }, "930": { + "types": [ + 1, + 12 + ], "forms": { - "0": {} + "3244": {} }, "attack": 219, "defense": 189, "stamina": 186 }, "931": { + "types": [ + 1, + 3 + ], "forms": { "2985": {}, "2986": {}, @@ -13622,8 +19449,18 @@ "stamina": 193 }, "932": { + "types": [ + 6 + ], "forms": { - "0": {} + "3245": { + "evolutions": [ + { + "pokemon": 933, + "form": 3246 + } + ] + } }, "attack": 95, "defense": 108, @@ -13636,8 +19473,18 @@ "little": true }, "933": { + "types": [ + 6 + ], "forms": { - "0": {} + "3246": { + "evolutions": [ + { + "pokemon": 934, + "form": 3247 + } + ] + } }, "attack": 105, "defense": 160, @@ -13649,16 +19496,33 @@ ] }, "934": { + "types": [ + 6 + ], "forms": { - "0": {} + "3247": {} }, "attack": 171, "defense": 212, "stamina": 225 }, "935": { + "types": [ + 10 + ], "forms": { - "0": {} + "3248": { + "evolutions": [ + { + "pokemon": 936, + "form": 3249 + }, + { + "pokemon": 937, + "form": 3250 + } + ] + } }, "attack": 92, "defense": 74, @@ -13674,24 +19538,42 @@ "little": true }, "936": { + "types": [ + 10, + 14 + ], "forms": { - "0": {} + "3249": {} }, "attack": 234, "defense": 185, "stamina": 198 }, "937": { + "types": [ + 8, + 10 + ], "forms": { - "0": {} + "3250": {} }, "attack": 239, "defense": 189, "stamina": 181 }, "938": { + "types": [ + 13 + ], "forms": { - "0": {} + "3251": { + "evolutions": [ + { + "pokemon": 939, + "form": 3252 + } + ] + } }, "attack": 104, "defense": 73, @@ -13704,16 +19586,30 @@ "little": true }, "939": { + "types": [ + 13 + ], "forms": { - "0": {} + "3252": {} }, "attack": 184, "defense": 165, "stamina": 240 }, "940": { + "types": [ + 3, + 13 + ], "forms": { - "0": {} + "3253": { + "evolutions": [ + { + "pokemon": 941, + "form": 3254 + } + ] + } }, "attack": 105, "defense": 75, @@ -13726,16 +19622,30 @@ "little": true }, "941": { + "types": [ + 3, + 13 + ], "forms": { - "0": {} + "3254": {} }, "attack": 221, "defense": 132, "stamina": 172 }, "942": { + "types": [ + 17 + ], "forms": { - "0": {} + "3255": { + "evolutions": [ + { + "pokemon": 943, + "form": 3256 + } + ] + } }, "attack": 140, "defense": 108, @@ -13748,16 +19658,30 @@ "little": true }, "943": { + "types": [ + 17 + ], "forms": { - "0": {} + "3256": {} }, "attack": 230, "defense": 168, "stamina": 190 }, "944": { + "types": [ + 1, + 4 + ], "forms": { - "0": {} + "3257": { + "evolutions": [ + { + "pokemon": 945, + "form": 3258 + } + ] + } }, "attack": 124, "defense": 70, @@ -13770,16 +19694,31 @@ "little": true }, "945": { + "types": [ + 1, + 4 + ], "forms": { - "0": {} + "3258": {} }, "attack": 199, "defense": 149, "stamina": 160 }, "946": { + "types": [ + 8, + 12 + ], "forms": { - "0": {} + "3259": { + "evolutions": [ + { + "pokemon": 947, + "form": 3260 + } + ] + } }, "attack": 121, "defense": 64, @@ -13792,16 +19731,31 @@ "little": true }, "947": { + "types": [ + 8, + 12 + ], "forms": { - "0": {} + "3260": {} }, "attack": 228, "defense": 144, "stamina": 146 }, "948": { + "types": [ + 5, + 12 + ], "forms": { - "0": {} + "3261": { + "evolutions": [ + { + "pokemon": 949, + "form": 3262 + } + ] + } }, "attack": 97, "defense": 149, @@ -13814,24 +19768,41 @@ "little": true }, "949": { + "types": [ + 5, + 12 + ], "forms": { - "0": {} + "3262": {} }, "attack": 166, "defense": 209, "stamina": 190 }, "950": { + "types": [ + 6 + ], "forms": { - "0": {} + "3263": {} }, "attack": 184, "defense": 185, "stamina": 172 }, "951": { + "types": [ + 12 + ], "forms": { - "0": {} + "3264": { + "evolutions": [ + { + "pokemon": 952, + "form": 3265 + } + ] + } }, "attack": 118, "defense": 76, @@ -13844,16 +19815,30 @@ "little": true }, "952": { + "types": [ + 10, + 12 + ], "forms": { - "0": {} + "3265": {} }, "attack": 216, "defense": 130, "stamina": 163 }, "953": { + "types": [ + 7 + ], "forms": { - "0": {} + "3266": { + "evolutions": [ + { + "pokemon": 954, + "form": 3267 + } + ] + } }, "attack": 86, "defense": 108, @@ -13866,16 +19851,30 @@ "little": true }, "954": { + "types": [ + 7, + 14 + ], "forms": { - "0": {} + "3267": {} }, "attack": 201, "defense": 178, "stamina": 181 }, "955": { + "types": [ + 14 + ], "forms": { - "0": {} + "3268": { + "evolutions": [ + { + "pokemon": 956, + "form": 3269 + } + ] + } }, "attack": 105, "defense": 60, @@ -13888,16 +19887,30 @@ "little": true }, "956": { + "types": [ + 14 + ], "forms": { - "0": {} + "3269": {} }, "attack": 204, "defense": 127, "stamina": 216 }, "957": { + "types": [ + 9, + 18 + ], "forms": { - "0": {} + "3270": { + "evolutions": [ + { + "pokemon": 958, + "form": 3271 + } + ] + } }, "attack": 85, "defense": 110, @@ -13910,8 +19923,19 @@ "little": true }, "958": { + "types": [ + 9, + 18 + ], "forms": { - "0": {} + "3271": { + "evolutions": [ + { + "pokemon": 959, + "form": 3272 + } + ] + } }, "attack": 109, "defense": 145, @@ -13923,16 +19947,30 @@ ] }, "959": { + "types": [ + 9, + 18 + ], "forms": { - "0": {} + "3272": {} }, "attack": 155, "defense": 196, "stamina": 198 }, "960": { + "types": [ + 11 + ], "forms": { - "0": {} + "3273": { + "evolutions": [ + { + "pokemon": 961, + "form": 3274 + } + ] + } }, "attack": 109, "defense": 52, @@ -13945,24 +19983,41 @@ "little": true }, "961": { + "types": [ + 11 + ], "forms": { - "0": {} + "3274": {} }, "attack": 205, "defense": 136, "stamina": 111 }, "962": { + "types": [ + 3, + 17 + ], "forms": { - "0": {} + "3275": {} }, "attack": 198, "defense": 172, "stamina": 172 }, "963": { + "types": [ + 11 + ], "forms": { - "0": {} + "3276": { + "evolutions": [ + { + "pokemon": 964, + "form": 2989 + } + ] + } }, "attack": 90, "defense": 80, @@ -13975,6 +20030,9 @@ "little": true }, "964": { + "types": [ + 11 + ], "forms": { "2989": {}, "2990": { @@ -13988,8 +20046,19 @@ "stamina": 225 }, "965": { + "types": [ + 4, + 9 + ], "forms": { - "0": {} + "3277": { + "evolutions": [ + { + "pokemon": 966, + "form": 3278 + } + ] + } }, "attack": 123, "defense": 107, @@ -14002,32 +20071,54 @@ "little": true }, "966": { + "types": [ + 4, + 9 + ], "forms": { - "0": {} + "3278": {} }, "attack": 229, "defense": 168, "stamina": 190 }, "967": { + "types": [ + 1, + 16 + ], "forms": { - "0": {} + "3279": {} }, "attack": 205, "defense": 142, "stamina": 172 }, "968": { + "types": [ + 9 + ], "forms": { - "0": {} + "3280": {} }, "attack": 161, "defense": 219, "stamina": 172 }, "969": { + "types": [ + 4, + 6 + ], "forms": { - "0": {} + "3281": { + "evolutions": [ + { + "pokemon": 970, + "form": 3282 + } + ] + } }, "attack": 187, "defense": 104, @@ -14040,16 +20131,30 @@ "little": true }, "970": { + "types": [ + 4, + 6 + ], "forms": { - "0": {} + "3282": {} }, "attack": 246, "defense": 177, "stamina": 195 }, "971": { + "types": [ + 8 + ], "forms": { - "0": {} + "3283": { + "evolutions": [ + { + "pokemon": 972, + "form": 3284 + } + ] + } }, "attack": 105, "defense": 106, @@ -14062,24 +20167,41 @@ "little": true }, "972": { + "types": [ + 8 + ], "forms": { - "0": {} + "3284": {} }, "attack": 186, "defense": 195, "stamina": 176 }, "973": { + "types": [ + 2, + 3 + ], "forms": { - "0": {} + "3285": {} }, "attack": 227, "defense": 145, "stamina": 193 }, "974": { + "types": [ + 15 + ], "forms": { - "0": {} + "3286": { + "evolutions": [ + { + "pokemon": 975, + "form": 3287 + } + ] + } }, "attack": 119, "defense": 80, @@ -14092,30 +20214,44 @@ "little": true }, "975": { + "types": [ + 15 + ], "forms": { - "0": {} + "3287": {} }, "attack": 208, "defense": 123, "stamina": 347 }, "976": { + "types": [ + 11, + 14 + ], "forms": { - "0": {} + "3288": {} }, "attack": 196, "defense": 139, "stamina": 207 }, "977": { + "types": [ + 11 + ], "forms": { - "0": {} + "3289": {} }, "attack": 176, "defense": 178, "stamina": 312 }, "978": { + "types": [ + 11, + 16 + ], "forms": { "2991": {}, "2992": {}, @@ -14126,30 +20262,45 @@ "stamina": 169 }, "979": { + "types": [ + 2, + 8 + ], "forms": { - "0": {} + "3290": {} }, "attack": 220, "defense": 178, "stamina": 242 }, "980": { + "types": [ + 4, + 5 + ], "forms": { - "0": {} + "3291": {} }, "attack": 127, "defense": 151, "stamina": 277 }, "981": { + "types": [ + 1, + 14 + ], "forms": { - "0": {} + "3292": {} }, "attack": 209, "defense": 136, "stamina": 260 }, "982": { + "types": [ + 1 + ], "forms": { "2994": {}, "2995": {} @@ -14159,112 +20310,175 @@ "stamina": 268 }, "983": { + "types": [ + 9, + 17 + ], "forms": { - "0": {} + "3293": {} }, "attack": 238, "defense": 203, "stamina": 225 }, "984": { + "types": [ + 2, + 5 + ], "forms": { - "0": {} + "3294": {} }, "attack": 249, "defense": 209, "stamina": 251 }, "985": { + "types": [ + 14, + 18 + ], "forms": { - "0": {} + "3295": {} }, "attack": 139, "defense": 234, "stamina": 251 }, "986": { + "types": [ + 12, + 17 + ], "forms": { - "0": {} + "3296": {} }, "attack": 232, "defense": 190, "stamina": 244 }, "987": { + "types": [ + 8, + 18 + ], "forms": { - "0": {} + "3297": {} }, "attack": 280, "defense": 235, "stamina": 146 }, "988": { + "types": [ + 2, + 7 + ], "forms": { - "0": {} + "3298": {} }, "attack": 261, "defense": 193, "stamina": 198 }, "989": { + "types": [ + 5, + 13 + ], "forms": { - "0": {} + "3299": {} }, "attack": 244, "defense": 195, "stamina": 198 }, "990": { + "types": [ + 5, + 9 + ], "forms": { - "0": {} + "3300": {} }, "attack": 227, "defense": 216, "stamina": 207 }, "991": { + "types": [ + 11, + 15 + ], "forms": { - "0": {} + "3301": {} }, "attack": 266, "defense": 211, "stamina": 148 }, "992": { + "types": [ + 2, + 13 + ], "forms": { - "0": {} + "3302": {} }, "attack": 245, "defense": 177, "stamina": 319 }, "993": { + "types": [ + 3, + 17 + ], "forms": { - "0": {} + "3303": {} }, "attack": 249, "defense": 179, "stamina": 214 }, "994": { + "types": [ + 4, + 10 + ], "forms": { - "0": {} + "3304": {} }, "attack": 281, "defense": 196, "stamina": 190 }, "995": { + "types": [ + 6, + 13 + ], "forms": { - "0": {} + "3305": {} }, "attack": 250, "defense": 200, "stamina": 225 }, "996": { + "types": [ + 15, + 16 + ], "forms": { - "0": {} + "3306": { + "evolutions": [ + { + "pokemon": 997, + "form": 3307 + } + ] + } }, "attack": 134, "defense": 86, @@ -14277,8 +20491,19 @@ "little": true }, "997": { + "types": [ + 15, + 16 + ], "forms": { - "0": {} + "3307": { + "evolutions": [ + { + "pokemon": 998, + "form": 3308 + } + ] + } }, "attack": 173, "defense": 128, @@ -14290,17 +20515,30 @@ ] }, "998": { + "types": [ + 15, + 16 + ], "forms": { - "0": {} + "3308": {} }, "attack": 254, "defense": 168, "stamina": 229 }, "999": { + "types": [ + 8 + ], "forms": { - "0": {}, - "2998": {} + "2998": { + "evolutions": [ + { + "pokemon": 1000 + } + ] + }, + "3018": {} }, "attack": 140, "defense": 76, @@ -14313,8 +20551,11 @@ "little": true }, "1000": { + "types": [ + 8, + 9 + ], "forms": { - "0": {}, "3000": {} }, "attack": 252, @@ -14322,54 +20563,82 @@ "stamina": 202 }, "1001": { + "types": [ + 12, + 17 + ], "forms": { - "0": {} + "3309": {} }, "attack": 186, "defense": 242, "stamina": 198 }, "1002": { + "types": [ + 15, + 17 + ], "forms": { - "0": {} + "3310": {} }, "attack": 261, "defense": 167, "stamina": 190 }, "1003": { + "types": [ + 5, + 17 + ], "forms": { - "0": {} + "3311": {} }, "attack": 194, "defense": 203, "stamina": 321 }, "1004": { + "types": [ + 10, + 17 + ], "forms": { - "0": {} + "3312": {} }, "attack": 269, "defense": 221, "stamina": 146 }, "1005": { + "types": [ + 16, + 17 + ], "forms": { - "0": {} + "3313": {} }, "attack": 280, "defense": 196, "stamina": 233 }, "1006": { + "types": [ + 2, + 18 + ], "forms": { - "0": {} + "3314": {} }, "attack": 279, "defense": 171, "stamina": 179 }, "1007": { + "types": [ + 2, + 16 + ], "forms": { "2996": {} }, @@ -14378,6 +20647,10 @@ "stamina": 205 }, "1008": { + "types": [ + 13, + 16 + ], "forms": { "2997": {} }, @@ -14386,106 +20659,256 @@ "stamina": 205 }, "1009": { - "forms": {}, - "attack": 256, - "defense": 188, - "stamina": 223 + "types": [ + 11, + 16 + ], + "forms": { + "3324": {} + }, + "attack": 233, + "defense": 171, + "stamina": 203 }, "1010": { - "forms": {}, - "attack": 259, - "defense": 213, - "stamina": 207 + "types": [ + 12, + 14 + ], + "forms": { + "3325": {} + }, + "attack": 236, + "defense": 194, + "stamina": 189 }, "1011": { - "forms": {}, + "types": [ + 12, + 16 + ], + "forms": { + "3326": { + "evolutions": [ + { + "pokemon": 1019, + "form": 3331 + } + ] + } + }, "attack": 173, "defense": 184, - "stamina": 190 + "stamina": 190, + "evolutions": [ + { + "pokemon": 1019, + "form": 3331 + } + ] }, "1012": { - "forms": {}, + "types": [ + 8, + 12 + ], + "forms": { + "2871": { + "evolutions": [ + { + "pokemon": 1013, + "form": 2873 + } + ] + }, + "2872": { + "evolutions": [ + { + "pokemon": 1013, + "form": 2874 + } + ] + } + }, "attack": 134, "defense": 96, - "stamina": 120 + "stamina": 120, + "evolutions": [ + { + "pokemon": 1013, + "form": 2873 + } + ], + "little": true }, "1013": { - "forms": {}, + "types": [ + 8, + 12 + ], + "forms": { + "2873": {}, + "2874": {} + }, "attack": 225, "defense": 191, "stamina": 174 }, "1014": { - "forms": {}, - "attack": 241, - "defense": 210, - "stamina": 204 + "types": [ + 2, + 4 + ], + "forms": { + "3327": {} + }, + "attack": 220, + "defense": 191, + "stamina": 186 }, "1015": { - "forms": {}, - "attack": 261, - "defense": 172, - "stamina": 204 + "types": [ + 4, + 14 + ], + "forms": { + "3328": {} + }, + "attack": 238, + "defense": 157, + "stamina": 186 }, "1016": { - "forms": {}, - "attack": 185, - "defense": 228, - "stamina": 204 + "types": [ + 4, + 18 + ], + "forms": { + "3329": {} + }, + "attack": 169, + "defense": 208, + "stamina": 186 }, "1017": { - "forms": {}, - "attack": 241, - "defense": 196, - "stamina": 190 + "types": [ + 12 + ], + "forms": { + "0": {}, + "2875": {}, + "2876": {}, + "2877": {}, + "2879": {} + }, + "attack": 219, + "defense": 178, + "stamina": 173 }, "1018": { - "forms": {}, + "types": [ + 9, + 16 + ], + "forms": { + "3330": {} + }, "attack": 250, "defense": 215, "stamina": 207 }, "1019": { - "forms": {}, + "types": [ + 12, + 16 + ], + "forms": { + "3331": {} + }, "attack": 216, "defense": 186, "stamina": 235 }, "1020": { - "forms": {}, - "attack": 225, - "defense": 228, - "stamina": 233 + "types": [ + 10, + 16 + ], + "forms": { + "3332": {} + }, + "attack": 205, + "defense": 208, + "stamina": 213 }, "1021": { - "forms": {}, + "types": [ + 13, + 16 + ], + "forms": { + "3333": {} + }, "attack": 235, "defense": 165, "stamina": 245 }, "1022": { - "forms": {}, - "attack": 249, - "defense": 214, - "stamina": 207 + "types": [ + 6, + 14 + ], + "forms": { + "3334": {} + }, + "attack": 227, + "defense": 195, + "stamina": 189 }, "1023": { - "forms": {}, - "attack": 243, - "defense": 220, - "stamina": 207 + "types": [ + 9, + 14 + ], + "forms": { + "3335": {} + }, + "attack": 221, + "defense": 200, + "stamina": 189 }, "1024": { - "forms": {}, + "types": [ + 1 + ], + "forms": { + "2880": {}, + "2881": { + "attack": 212, + "defense": 224, + "stamina": 216 + }, + "2882": { + "attack": 259, + "defense": 224, + "stamina": 330 + } + }, "attack": 126, "defense": 165, "stamina": 207 }, "1025": { - "forms": {}, - "attack": 181, - "defense": 273, - "stamina": 204 + "types": [ + 4, + 8 + ], + "forms": { + "3336": {} + }, + "attack": 164, + "defense": 248, + "stamina": 186 } }, "costumes": { @@ -14569,6 +20992,10 @@ "78": false, "79": false, "80": false, - "81": false + "81": false, + "82": true, + "83": true, + "84": true, + "85": false } } \ No newline at end of file diff --git a/pogo/master-latest-rdm.json b/pogo/master-latest-rdm.json deleted file mode 100644 index 637e3358..00000000 --- a/pogo/master-latest-rdm.json +++ /dev/null @@ -1 +0,0 @@ -{"pokemon":{"1":{"name":"Bulbasaur","types":[4,12],"forms":{"163":{"types":null},"897":{"types":null}}},"10":{"name":"Caterpie","types":[7],"forms":{"0":{"types":null},"953":{"types":null}}},"100":{"name":"Voltorb","types":[13],"forms":{"1047":{"types":null},"2728":{"types":[12,13]}}},"1000":{"name":"Gholdengo","types":[8,9],"forms":{"0":{"types":null},"3000":{"types":null}}},"1001":{"name":"Wochien","types":[12,17],"forms":{"0":{"types":null}}},"1002":{"name":"Chienpao","types":[15,17],"forms":{"0":{"types":null}}},"1003":{"name":"Tinglu","types":[5,17],"forms":{"0":{"types":null}}},"1004":{"name":"Chiyu","types":[10,17],"forms":{"0":{"types":null}}},"1005":{"name":"Roaringmoon","types":[16,17],"forms":{"0":{"types":null}}},"1006":{"name":"Ironvaliant","types":[2,18],"forms":{"0":{"types":null}}},"1007":{"name":"Koraidon","types":[2,16],"forms":{"2996":{"types":null}}},"1008":{"name":"Miraidon","types":[13,16],"forms":{"2997":{"types":null}}},"1009":{"name":"Walkingwake","types":[],"forms":{"0":{"types":null}}},"101":{"name":"Electrode","types":[13],"forms":{"1050":{"types":null},"2735":{"types":[12,13]}}},"1010":{"name":"Ironleaves","types":[],"forms":{"0":{"types":null}}},"1011":{"name":"Dipplin","types":[],"forms":{"0":{"types":null}}},"1012":{"name":"Poltchageist","types":[],"forms":{"0":{"types":null}}},"1013":{"name":"Sinistcha","types":[],"forms":{"0":{"types":null}}},"1014":{"name":"Okidogi","types":[],"forms":{"0":{"types":null}}},"1015":{"name":"Munkidori","types":[],"forms":{"0":{"types":null}}},"1016":{"name":"Fezandipiti","types":[],"forms":{"0":{"types":null}}},"1017":{"name":"Ogerpon","types":[],"forms":{"0":{"types":null}}},"1018":{"name":"Archaludon","types":[],"forms":{"0":{"types":null}}},"1019":{"name":"Hydrapple","types":[],"forms":{"0":{"types":null}}},"102":{"name":"Exeggcute","types":[12,14],"forms":{"729":{"types":null}}},"1020":{"name":"Goughingfire","types":[],"forms":{"0":{"types":null}}},"1021":{"name":"Ragingbolt","types":[],"forms":{"0":{"types":null}}},"1022":{"name":"Ironboulder","types":[],"forms":{"0":{"types":null}}},"1023":{"name":"Ironcrown","types":[],"forms":{"0":{"types":null}}},"1024":{"name":"Terapagos","types":[],"forms":{"0":{"types":null}}},"1025":{"name":"Pecharunt","types":[],"forms":{"0":{"types":null}}},"103":{"name":"Exeggutor","types":[12,14],"forms":{"77":{"types":null},"78":{"types":[12,16]}}},"104":{"name":"Cubone","types":[5],"forms":{"224":{"types":null}}},"105":{"name":"Marowak","types":[5],"forms":{"79":{"types":null},"80":{"types":[8,10]}}},"106":{"name":"Hitmonlee","types":[2],"forms":{"713":{"types":null}}},"107":{"name":"Hitmonchan","types":[2],"forms":{"277":{"types":null}}},"108":{"name":"Lickitung","types":[1],"forms":{"0":{"types":null},"1053":{"types":null}}},"109":{"name":"Koffing","types":[4],"forms":{"703":{"types":null}}},"11":{"name":"Metapod","types":[7],"forms":{"0":{"types":null},"956":{"types":null}}},"110":{"name":"Weezing","types":[4],"forms":{"706":{"types":null},"944":{"types":[4,18]}}},"111":{"name":"Rhyhorn","types":[5,6],"forms":{"846":{"types":null}}},"112":{"name":"Rhydon","types":[5,6],"forms":{"849":{"types":null}}},"113":{"name":"Chansey","types":[1],"forms":{"0":{"types":null},"1056":{"types":null}}},"114":{"name":"Tangela","types":[12],"forms":{"1059":{"types":null}}},"115":{"name":"Kangaskhan","types":[1],"forms":{"839":{"types":null}}},"116":{"name":"Horsea","types":[11],"forms":{"1062":{"types":null}}},"117":{"name":"Seadra","types":[11],"forms":{"1065":{"types":null}}},"118":{"name":"Goldeen","types":[11],"forms":{"0":{"types":null},"1068":{"types":null}}},"119":{"name":"Seaking","types":[11],"forms":{"0":{"types":null},"1071":{"types":null}}},"12":{"name":"Butterfree","types":[3,7],"forms":{"0":{"types":null},"959":{"types":null}}},"120":{"name":"Staryu","types":[11],"forms":{"0":{"types":null},"1074":{"types":null}}},"121":{"name":"Starmie","types":[11,14],"forms":{"0":{"types":null},"1077":{"types":null}}},"122":{"name":"Mr Mime","types":[14,18],"forms":{"1080":{"types":null},"2339":{"types":[14,15]}}},"123":{"name":"Scyther","types":[3,7],"forms":{"247":{"types":null}}},"124":{"name":"Jynx","types":[14,15],"forms":{"0":{"types":null},"1083":{"types":null}}},"125":{"name":"Electabuzz","types":[13],"forms":{"640":{"types":null}}},"126":{"name":"Magmar","types":[10],"forms":{"634":{"types":null}}},"127":{"name":"Pinsir","types":[7],"forms":{"898":{"types":null}}},"128":{"name":"Tauros","types":[1],"forms":{"1086":{"types":null},"3006":{"types":[2]},"3007":{"types":[2,10]},"3008":{"types":[2,11]}}},"129":{"name":"Magikarp","types":[11],"forms":{"253":{"types":null}}},"13":{"name":"Weedle","types":[4,7],"forms":{"616":{"types":null}}},"130":{"name":"Gyarados","types":[3,11],"forms":{"256":{"types":null}}},"131":{"name":"Lapras","types":[11,15],"forms":{"2585":{"types":null},"322":{"types":null}}},"132":{"name":"Ditto","types":[1],"forms":{"0":{"types":null},"1089":{"types":null}}},"133":{"name":"Eevee","types":[1],"forms":{"1092":{"types":null},"2845":{"types":null},"2846":{"types":null}}},"134":{"name":"Vaporeon","types":[11],"forms":{"0":{"types":null},"1095":{"types":null}}},"135":{"name":"Jolteon","types":[13],"forms":{"0":{"types":null},"1098":{"types":null}}},"136":{"name":"Flareon","types":[10],"forms":{"0":{"types":null},"1101":{"types":null}}},"137":{"name":"Porygon","types":[1],"forms":{"677":{"types":null}}},"138":{"name":"Omanyte","types":[6,11],"forms":{"740":{"types":null}}},"139":{"name":"Omastar","types":[6,11],"forms":{"743":{"types":null}}},"14":{"name":"Kakuna","types":[4,7],"forms":{"619":{"types":null}}},"140":{"name":"Kabuto","types":[6,11],"forms":{"1104":{"types":null}}},"141":{"name":"Kabutops","types":[6,11],"forms":{"1107":{"types":null}}},"142":{"name":"Aerodactyl","types":[3,6],"forms":{"1110":{"types":null},"3001":{"types":null}}},"143":{"name":"Snorlax","types":[1],"forms":{"199":{"types":null},"2849":{"types":null}}},"144":{"name":"Articuno","types":[3,15],"forms":{"2801":{"types":[3,14]},"716":{"types":null}}},"145":{"name":"Zapdos","types":[3,13],"forms":{"2800":{"types":[2,3]},"773":{"types":null}}},"146":{"name":"Moltres","types":[3,10],"forms":{"2799":{"types":[3,17]},"836":{"types":null}}},"147":{"name":"Dratini","types":[16],"forms":{"190":{"types":null}}},"148":{"name":"Dragonair","types":[16],"forms":{"193":{"types":null}}},"149":{"name":"Dragonite","types":[3,16],"forms":{"196":{"types":null},"2333":{"types":null}}},"15":{"name":"Beedrill","types":[4,7],"forms":{"622":{"types":null}}},"150":{"name":"Mewtwo","types":[14],"forms":{"133":{"types":null},"135":{"types":null}}},"151":{"name":"Mew","types":[14],"forms":{"0":{"types":null},"1115":{"types":null}}},"152":{"name":"Chikorita","types":[12],"forms":{"1118":{"types":null}}},"153":{"name":"Bayleef","types":[12],"forms":{"1121":{"types":null}}},"154":{"name":"Meganium","types":[12],"forms":{"1124":{"types":null}}},"155":{"name":"Cyndaquil","types":[10],"forms":{"1127":{"types":null}}},"156":{"name":"Quilava","types":[10],"forms":{"1130":{"types":null}}},"157":{"name":"Typhlosion","types":[10],"forms":{"1133":{"types":null},"2786":{"types":[8,10]}}},"158":{"name":"Totodile","types":[11],"forms":{"1136":{"types":null}}},"159":{"name":"Croconaw","types":[11],"forms":{"1139":{"types":null}}},"16":{"name":"Pidgey","types":[1,3],"forms":{"0":{"types":null},"962":{"types":null}}},"160":{"name":"Feraligatr","types":[11],"forms":{"1142":{"types":null}}},"161":{"name":"Sentret","types":[1],"forms":{"0":{"types":null},"1145":{"types":null}}},"162":{"name":"Furret","types":[1],"forms":{"0":{"types":null},"1148":{"types":null}}},"163":{"name":"Hoothoot","types":[1,3],"forms":{"0":{"types":null},"1151":{"types":null}}},"164":{"name":"Noctowl","types":[1,3],"forms":{"0":{"types":null},"1154":{"types":null}}},"165":{"name":"Ledyba","types":[3,7],"forms":{"0":{"types":null},"1157":{"types":null}}},"166":{"name":"Ledian","types":[3,7],"forms":{"0":{"types":null},"1160":{"types":null}}},"167":{"name":"Spinarak","types":[4,7],"forms":{"0":{"types":null},"1163":{"types":null}}},"168":{"name":"Ariados","types":[4,7],"forms":{"0":{"types":null},"1166":{"types":null}}},"169":{"name":"Crobat","types":[3,4],"forms":{"202":{"types":null}}},"17":{"name":"Pidgeotto","types":[1,3],"forms":{"0":{"types":null},"965":{"types":null}}},"170":{"name":"Chinchou","types":[11,13],"forms":{"0":{"types":null},"1169":{"types":null}}},"171":{"name":"Lanturn","types":[11,13],"forms":{"0":{"types":null},"1172":{"types":null}}},"172":{"name":"Pichu","types":[13],"forms":{"0":{"types":null},"1175":{"types":null}}},"173":{"name":"Cleffa","types":[18],"forms":{"0":{"types":null},"1178":{"types":null}}},"174":{"name":"Igglybuff","types":[1,18],"forms":{"0":{"types":null},"1181":{"types":null}}},"175":{"name":"Togepi","types":[18],"forms":{"0":{"types":null},"1184":{"types":null}}},"176":{"name":"Togetic","types":[3,18],"forms":{"0":{"types":null},"1187":{"types":null}}},"177":{"name":"Natu","types":[3,14],"forms":{"0":{"types":null},"1190":{"types":null}}},"178":{"name":"Xatu","types":[3,14],"forms":{"0":{"types":null},"1193":{"types":null}}},"179":{"name":"Mareep","types":[13],"forms":{"646":{"types":null}}},"18":{"name":"Pidgeot","types":[1,3],"forms":{"0":{"types":null},"968":{"types":null}}},"180":{"name":"Flaaffy","types":[13],"forms":{"649":{"types":null}}},"181":{"name":"Ampharos","types":[13],"forms":{"652":{"types":null}}},"182":{"name":"Bellossom","types":[12],"forms":{"274":{"types":null}}},"183":{"name":"Marill","types":[11,18],"forms":{"0":{"types":null},"1196":{"types":null}}},"184":{"name":"Azumarill","types":[11,18],"forms":{"0":{"types":null},"1199":{"types":null}}},"185":{"name":"Sudowoodo","types":[6],"forms":{"0":{"types":null},"1202":{"types":null}}},"186":{"name":"Politoed","types":[11],"forms":{"244":{"types":null}}},"187":{"name":"Hoppip","types":[3,12],"forms":{"1205":{"types":null}}},"188":{"name":"Skiploom","types":[3,12],"forms":{"1208":{"types":null}}},"189":{"name":"Jumpluff","types":[3,12],"forms":{"1211":{"types":null}}},"19":{"name":"Rattata","types":[1],"forms":{"45":{"types":null},"46":{"types":[1,17]}}},"190":{"name":"Aipom","types":[1],"forms":{"1214":{"types":null}}},"191":{"name":"Sunkern","types":[12],"forms":{"0":{"types":null},"1217":{"types":null}}},"192":{"name":"Sunflora","types":[12],"forms":{"0":{"types":null},"1220":{"types":null}}},"193":{"name":"Yanma","types":[3,7],"forms":{"0":{"types":null},"1223":{"types":null}}},"194":{"name":"Wooper","types":[5,11],"forms":{"1226":{"types":null},"3009":{"types":[4,5]}}},"195":{"name":"Quagsire","types":[5,11],"forms":{"1229":{"types":null}}},"196":{"name":"Espeon","types":[14],"forms":{"1232":{"types":null},"2847":{"types":null}}},"197":{"name":"Umbreon","types":[17],"forms":{"1235":{"types":null},"2848":{"types":null}}},"198":{"name":"Murkrow","types":[3,17],"forms":{"855":{"types":null}}},"199":{"name":"Slowking","types":[11,14],"forms":{"1238":{"types":null},"2584":{"types":[4,14]},"2734":{"types":null}}},"2":{"name":"Ivysaur","types":[4,12],"forms":{"166":{"types":null}}},"20":{"name":"Raticate","types":[1],"forms":{"2329":{"types":null},"47":{"types":null},"48":{"types":[1,17]}}},"200":{"name":"Misdreavus","types":[8],"forms":{"719":{"types":null}}},"201":{"name":"Unown","types":[14],"forms":{"1":{"types":null},"10":{"types":null},"11":{"types":null},"12":{"types":null},"13":{"types":null},"14":{"types":null},"15":{"types":null},"16":{"types":null},"17":{"types":null},"18":{"types":null},"19":{"types":null},"2":{"types":null},"20":{"types":null},"21":{"types":null},"22":{"types":null},"23":{"types":null},"24":{"types":null},"25":{"types":null},"26":{"types":null},"27":{"types":null},"28":{"types":null},"3":{"types":null},"4":{"types":null},"5":{"types":null},"6":{"types":null},"7":{"types":null},"8":{"types":null},"9":{"types":null}}},"202":{"name":"Wobbuffet","types":[14],"forms":{"2328":{"types":null},"602":{"types":null}}},"203":{"name":"Girafarig","types":[1,14],"forms":{"0":{"types":null},"1241":{"types":null}}},"204":{"name":"Pineco","types":[7],"forms":{"1244":{"types":null}}},"205":{"name":"Forretress","types":[7,9],"forms":{"1247":{"types":null}}},"206":{"name":"Dunsparce","types":[1],"forms":{"0":{"types":null},"1250":{"types":null}}},"207":{"name":"Gligar","types":[3,5],"forms":{"803":{"types":null}}},"208":{"name":"Steelix","types":[5,9],"forms":{"905":{"types":null}}},"209":{"name":"Snubbull","types":[18],"forms":{"1253":{"types":null}}},"21":{"name":"Spearow","types":[1,3],"forms":{"0":{"types":null},"971":{"types":null}}},"210":{"name":"Granbull","types":[18],"forms":{"1256":{"types":null}}},"211":{"name":"Qwilfish","types":[4,11],"forms":{"1259":{"types":null},"2788":{"types":[4,17]}}},"212":{"name":"Scizor","types":[7,9],"forms":{"250":{"types":null}}},"213":{"name":"Shuckle","types":[6,7],"forms":{"827":{"types":null}}},"214":{"name":"Heracross","types":[2,7],"forms":{"0":{"types":null},"1262":{"types":null}}},"215":{"name":"Sneasel","types":[15,17],"forms":{"2794":{"types":[2,4]},"797":{"types":null}}},"216":{"name":"Teddiursa","types":[1],"forms":{"1265":{"types":null}}},"217":{"name":"Ursaring","types":[1],"forms":{"1268":{"types":null}}},"218":{"name":"Slugma","types":[10],"forms":{"0":{"types":null},"1271":{"types":null}}},"219":{"name":"Magcargo","types":[6,10],"forms":{"0":{"types":null},"1274":{"types":null}}},"22":{"name":"Fearow","types":[1,3],"forms":{"0":{"types":null},"974":{"types":null}}},"220":{"name":"Swinub","types":[5,15],"forms":{"1277":{"types":null}}},"221":{"name":"Piloswine","types":[5,15],"forms":{"1280":{"types":null}}},"222":{"name":"Corsola","types":[6,11],"forms":{"1283":{"types":null},"2340":{"types":[8]}}},"223":{"name":"Remoraid","types":[11],"forms":{"0":{"types":null},"1286":{"types":null}}},"224":{"name":"Octillery","types":[11],"forms":{"0":{"types":null},"1289":{"types":null}}},"225":{"name":"Delibird","types":[3,15],"forms":{"2671":{"types":null},"938":{"types":null}}},"226":{"name":"Mantine","types":[3,11],"forms":{"0":{"types":null},"1292":{"types":null}}},"227":{"name":"Skarmory","types":[3,9],"forms":{"1295":{"types":null}}},"228":{"name":"Houndour","types":[10,17],"forms":{"229":{"types":null}}},"229":{"name":"Houndoom","types":[10,17],"forms":{"232":{"types":null}}},"23":{"name":"Ekans","types":[4],"forms":{"697":{"types":null}}},"230":{"name":"Kingdra","types":[11,16],"forms":{"1298":{"types":null}}},"231":{"name":"Phanpy","types":[5],"forms":{"0":{"types":null},"1301":{"types":null}}},"232":{"name":"Donphan","types":[5],"forms":{"0":{"types":null},"1304":{"types":null}}},"233":{"name":"Porygon2","types":[1],"forms":{"680":{"types":null}}},"234":{"name":"Stantler","types":[1],"forms":{"941":{"types":null}}},"235":{"name":"Smeargle","types":[1],"forms":{"0":{"types":null},"1307":{"types":null}}},"236":{"name":"Tyrogue","types":[2],"forms":{"0":{"types":null},"1310":{"types":null}}},"237":{"name":"Hitmontop","types":[2],"forms":{"0":{"types":null},"1313":{"types":null}}},"238":{"name":"Smoochum","types":[14,15],"forms":{"0":{"types":null},"1316":{"types":null}}},"239":{"name":"Elekid","types":[13],"forms":{"0":{"types":null},"1319":{"types":null}}},"24":{"name":"Arbok","types":[4],"forms":{"700":{"types":null}}},"240":{"name":"Magby","types":[10],"forms":{"0":{"types":null},"1322":{"types":null}}},"241":{"name":"Miltank","types":[1],"forms":{"0":{"types":null},"1325":{"types":null}}},"242":{"name":"Blissey","types":[1],"forms":{"0":{"types":null},"1328":{"types":null}}},"243":{"name":"Raikou","types":[13],"forms":{"1331":{"types":null},"2731":{"types":null}}},"244":{"name":"Entei","types":[10],"forms":{"1334":{"types":null},"2732":{"types":null}}},"245":{"name":"Suicune","types":[11],"forms":{"1337":{"types":null},"2733":{"types":null}}},"246":{"name":"Larvitar","types":[5,6],"forms":{"313":{"types":null}}},"247":{"name":"Pupitar","types":[5,6],"forms":{"316":{"types":null}}},"248":{"name":"Tyranitar","types":[6,17],"forms":{"319":{"types":null}}},"249":{"name":"Lugia","types":[3,14],"forms":{"1340":{"types":null},"2729":{"types":null}}},"25":{"name":"Pikachu","types":[13],"forms":{"2332":{"types":null},"2669":{"types":null},"2670":{"types":null},"2675":{"types":null},"2676":{"types":null},"2677":{"types":null},"2678":{"types":null},"2736":{"types":null},"2805":{"types":null},"2806":{"types":null},"2813":{"types":null},"2814":{"types":null},"2815":{"types":null},"2816":{"types":null},"2825":{"types":null},"2826":{"types":null},"2827":{"types":null},"2828":{"types":null},"2832":{"types":null},"2833":{"types":null},"2834":{"types":null},"2835":{"types":null},"2836":{"types":null},"2837":{"types":null},"2838":{"types":null},"2839":{"types":null},"2840":{"types":null},"2841":{"types":null},"2842":{"types":null},"2843":{"types":null},"2844":{"types":null},"2850":{"types":null},"2856":{"types":null},"2857":{"types":null},"2858":{"types":null},"2859":{"types":null},"2863":{"types":null},"2864":{"types":null},"2865":{"types":null},"2866":{"types":null},"2867":{"types":null},"2868":{"types":null},"2869":{"types":null},"3002":{"types":null},"3003":{"types":null},"3004":{"types":null},"3005":{"types":null},"3010":{"types":null},"3011":{"types":null},"3012":{"types":null},"3013":{"types":null},"3014":{"types":null},"3015":{"types":null},"3017":{"types":null},"598":{"types":null},"894":{"types":null},"901":{"types":null},"949":{"types":null}}},"250":{"name":"Ho Oh","types":[3,10],"forms":{"1343":{"types":null},"2730":{"types":null}}},"251":{"name":"Celebi","types":[12,14],"forms":{"0":{"types":null},"1346":{"types":null}}},"252":{"name":"Treecko","types":[12],"forms":{"0":{"types":null},"1349":{"types":null}}},"253":{"name":"Grovyle","types":[12],"forms":{"0":{"types":null},"1352":{"types":null}}},"254":{"name":"Sceptile","types":[12],"forms":{"0":{"types":null},"1355":{"types":null}}},"255":{"name":"Torchic","types":[10],"forms":{"1358":{"types":null}}},"256":{"name":"Combusken","types":[2,10],"forms":{"1361":{"types":null}}},"257":{"name":"Blaziken","types":[2,10],"forms":{"1364":{"types":null}}},"258":{"name":"Mudkip","types":[11],"forms":{"205":{"types":null}}},"259":{"name":"Marshtomp","types":[5,11],"forms":{"208":{"types":null}}},"26":{"name":"Raichu","types":[13],"forms":{"49":{"types":null},"50":{"types":[13,14]}}},"260":{"name":"Swampert","types":[5,11],"forms":{"211":{"types":null}}},"261":{"name":"Poochyena","types":[17],"forms":{"1367":{"types":null}}},"262":{"name":"Mightyena","types":[17],"forms":{"1370":{"types":null}}},"263":{"name":"Zigzagoon","types":[1],"forms":{"945":{"types":null},"946":{"types":[1,17]}}},"264":{"name":"Linoone","types":[1],"forms":{"947":{"types":null},"948":{"types":[1,17]}}},"265":{"name":"Wurmple","types":[7],"forms":{"0":{"types":null},"2327":{"types":null},"600":{"types":null}}},"266":{"name":"Silcoon","types":[7],"forms":{"0":{"types":null},"1379":{"types":null}}},"267":{"name":"Beautifly","types":[3,7],"forms":{"0":{"types":null},"1382":{"types":null}}},"268":{"name":"Cascoon","types":[7],"forms":{"0":{"types":null},"1385":{"types":null}}},"269":{"name":"Dustox","types":[4,7],"forms":{"0":{"types":null},"1388":{"types":null}}},"27":{"name":"Sandshrew","types":[5],"forms":{"51":{"types":null},"52":{"types":[9,15]}}},"270":{"name":"Lotad","types":[11,12],"forms":{"0":{"types":null},"1391":{"types":null}}},"271":{"name":"Lombre","types":[11,12],"forms":{"0":{"types":null},"1394":{"types":null}}},"272":{"name":"Ludicolo","types":[11,12],"forms":{"0":{"types":null},"1397":{"types":null}}},"273":{"name":"Seedot","types":[12],"forms":{"625":{"types":null}}},"274":{"name":"Nuzleaf","types":[12,17],"forms":{"628":{"types":null}}},"275":{"name":"Shiftry","types":[12,17],"forms":{"631":{"types":null}}},"276":{"name":"Taillow","types":[1,3],"forms":{"0":{"types":null},"1400":{"types":null}}},"277":{"name":"Swellow","types":[1,3],"forms":{"0":{"types":null},"1403":{"types":null}}},"278":{"name":"Wingull","types":[3,11],"forms":{"0":{"types":null},"1406":{"types":null}}},"279":{"name":"Pelipper","types":[3,11],"forms":{"0":{"types":null},"1409":{"types":null}}},"28":{"name":"Sandslash","types":[5],"forms":{"53":{"types":null},"54":{"types":[9,15]}}},"280":{"name":"Ralts","types":[14,18],"forms":{"292":{"types":null}}},"281":{"name":"Kirlia","types":[14,18],"forms":{"295":{"types":null}}},"282":{"name":"Gardevoir","types":[14,18],"forms":{"298":{"types":null}}},"283":{"name":"Surskit","types":[7,11],"forms":{"0":{"types":null},"1412":{"types":null}}},"284":{"name":"Masquerain","types":[3,7],"forms":{"0":{"types":null},"1415":{"types":null}}},"285":{"name":"Shroomish","types":[12],"forms":{"0":{"types":null},"1418":{"types":null}}},"286":{"name":"Breloom","types":[2,12],"forms":{"0":{"types":null},"1421":{"types":null}}},"287":{"name":"Slakoth","types":[1],"forms":{"0":{"types":null},"1424":{"types":null}}},"288":{"name":"Vigoroth","types":[1],"forms":{"0":{"types":null},"1427":{"types":null}}},"289":{"name":"Slaking","types":[1],"forms":{"0":{"types":null},"1430":{"types":null}}},"29":{"name":"Nidoran♀","types":[4],"forms":{"776":{"types":null}}},"290":{"name":"Nincada","types":[5,7],"forms":{"0":{"types":null},"1433":{"types":null}}},"291":{"name":"Ninjask","types":[3,7],"forms":{"0":{"types":null},"1436":{"types":null}}},"292":{"name":"Shedinja","types":[7,8],"forms":{"0":{"types":null},"1439":{"types":null}}},"293":{"name":"Whismur","types":[1],"forms":{"1442":{"types":null}}},"294":{"name":"Loudred","types":[1],"forms":{"1445":{"types":null}}},"295":{"name":"Exploud","types":[1],"forms":{"1448":{"types":null}}},"296":{"name":"Makuhita","types":[2],"forms":{"1451":{"types":null}}},"297":{"name":"Hariyama","types":[2],"forms":{"1454":{"types":null}}},"298":{"name":"Azurill","types":[1,18],"forms":{"0":{"types":null},"1457":{"types":null}}},"299":{"name":"Nosepass","types":[6],"forms":{"1460":{"types":null}}},"3":{"name":"Venusaur","types":[4,12],"forms":{"169":{"types":null},"950":{"types":null}}},"30":{"name":"Nidorina","types":[4],"forms":{"779":{"types":null}}},"300":{"name":"Skitty","types":[1],"forms":{"0":{"types":null},"1463":{"types":null}}},"301":{"name":"Delcatty","types":[1],"forms":{"0":{"types":null},"1466":{"types":null}}},"302":{"name":"Sableye","types":[8,17],"forms":{"2666":{"types":null},"2668":{"types":null},"923":{"types":null}}},"303":{"name":"Mawile","types":[9,18],"forms":{"833":{"types":null}}},"304":{"name":"Aron","types":[6,9],"forms":{"1469":{"types":null}}},"305":{"name":"Lairon","types":[6,9],"forms":{"1472":{"types":null}}},"306":{"name":"Aggron","types":[6,9],"forms":{"1475":{"types":null}}},"307":{"name":"Meditite","types":[2,14],"forms":{"0":{"types":null},"1478":{"types":null}}},"308":{"name":"Medicham","types":[2,14],"forms":{"0":{"types":null},"1481":{"types":null}}},"309":{"name":"Electrike","types":[13],"forms":{"1484":{"types":null}}},"31":{"name":"Nidoqueen","types":[4,5],"forms":{"782":{"types":null}}},"310":{"name":"Manectric","types":[13],"forms":{"1487":{"types":null}}},"311":{"name":"Plusle","types":[13],"forms":{"0":{"types":null},"1490":{"types":null}}},"312":{"name":"Minun","types":[13],"forms":{"0":{"types":null},"1493":{"types":null}}},"313":{"name":"Volbeat","types":[7],"forms":{"0":{"types":null},"1496":{"types":null}}},"314":{"name":"Illumise","types":[7],"forms":{"0":{"types":null},"1499":{"types":null}}},"315":{"name":"Roselia","types":[4,12],"forms":{"0":{"types":null},"1502":{"types":null}}},"316":{"name":"Gulpin","types":[4],"forms":{"0":{"types":null},"1505":{"types":null}}},"317":{"name":"Swalot","types":[4],"forms":{"0":{"types":null},"1508":{"types":null}}},"318":{"name":"Carvanha","types":[11,17],"forms":{"734":{"types":null}}},"319":{"name":"Sharpedo","types":[11,17],"forms":{"737":{"types":null}}},"32":{"name":"Nidoran♂","types":[4],"forms":{"776":{"types":null}}},"320":{"name":"Wailmer","types":[11],"forms":{"0":{"types":null},"1511":{"types":null}}},"321":{"name":"Wailord","types":[11],"forms":{"0":{"types":null},"1514":{"types":null}}},"322":{"name":"Numel","types":[5,10],"forms":{"0":{"types":null},"1517":{"types":null}}},"323":{"name":"Camerupt","types":[5,10],"forms":{"0":{"types":null},"1520":{"types":null}}},"324":{"name":"Torkoal","types":[10],"forms":{"0":{"types":null},"1523":{"types":null}}},"325":{"name":"Spoink","types":[14],"forms":{"0":{"types":null},"1526":{"types":null}}},"326":{"name":"Grumpig","types":[14],"forms":{"0":{"types":null},"1529":{"types":null}}},"327":{"name":"Spinda","types":[1],"forms":{"121":{"types":null},"122":{"types":null},"123":{"types":null},"124":{"types":null},"125":{"types":null},"126":{"types":null},"127":{"types":null},"128":{"types":null},"129":{"types":null},"130":{"types":null},"131":{"types":null},"132":{"types":null},"37":{"types":null},"38":{"types":null},"39":{"types":null},"40":{"types":null},"41":{"types":null},"42":{"types":null},"43":{"types":null},"44":{"types":null}}},"328":{"name":"Trapinch","types":[5],"forms":{"746":{"types":null}}},"329":{"name":"Vibrava","types":[5,16],"forms":{"749":{"types":null}}},"33":{"name":"Nidorino","types":[4],"forms":{"785":{"types":null}}},"330":{"name":"Flygon","types":[5,16],"forms":{"752":{"types":null}}},"331":{"name":"Cacnea","types":[12],"forms":{"610":{"types":null}}},"332":{"name":"Cacturne","types":[12,17],"forms":{"613":{"types":null}}},"333":{"name":"Swablu","types":[1,3],"forms":{"0":{"types":null},"1532":{"types":null}}},"334":{"name":"Altaria","types":[3,16],"forms":{"0":{"types":null},"1535":{"types":null}}},"335":{"name":"Zangoose","types":[1],"forms":{"0":{"types":null},"1538":{"types":null}}},"336":{"name":"Seviper","types":[4],"forms":{"0":{"types":null},"1541":{"types":null}}},"337":{"name":"Lunatone","types":[6,14],"forms":{"0":{"types":null},"1544":{"types":null}}},"338":{"name":"Solrock","types":[6,14],"forms":{"0":{"types":null},"1547":{"types":null}}},"339":{"name":"Barboach","types":[5,11],"forms":{"0":{"types":null},"1550":{"types":null}}},"34":{"name":"Nidoking","types":[4,5],"forms":{"788":{"types":null}}},"340":{"name":"Whiscash","types":[5,11],"forms":{"0":{"types":null},"1553":{"types":null}}},"341":{"name":"Corphish","types":[11],"forms":{"0":{"types":null},"1556":{"types":null}}},"342":{"name":"Crawdaunt","types":[11,17],"forms":{"0":{"types":null},"1559":{"types":null}}},"343":{"name":"Baltoy","types":[5,14],"forms":{"0":{"types":null},"1562":{"types":null}}},"344":{"name":"Claydol","types":[5,14],"forms":{"0":{"types":null},"1565":{"types":null}}},"345":{"name":"Lileep","types":[6,12],"forms":{"1568":{"types":null}}},"346":{"name":"Cradily","types":[6,12],"forms":{"1571":{"types":null}}},"347":{"name":"Anorith","types":[6,7],"forms":{"1574":{"types":null}}},"348":{"name":"Armaldo","types":[6,7],"forms":{"1577":{"types":null}}},"349":{"name":"Feebas","types":[11],"forms":{"0":{"types":null},"1580":{"types":null}}},"35":{"name":"Clefairy","types":[18],"forms":{"0":{"types":null},"981":{"types":null}}},"350":{"name":"Milotic","types":[11],"forms":{"0":{"types":null},"1583":{"types":null}}},"351":{"name":"Castform","types":[1],"forms":{"29":{"types":null},"30":{"types":[10]},"31":{"types":[11]},"32":{"types":[15]}}},"352":{"name":"Kecleon","types":[1],"forms":{"0":{"types":null},"1586":{"types":null}}},"353":{"name":"Shuppet","types":[8],"forms":{"908":{"types":null}}},"354":{"name":"Banette","types":[8],"forms":{"911":{"types":null}}},"355":{"name":"Duskull","types":[8],"forms":{"914":{"types":null}}},"356":{"name":"Dusclops","types":[8],"forms":{"917":{"types":null}}},"357":{"name":"Tropius","types":[3,12],"forms":{"0":{"types":null},"1589":{"types":null}}},"358":{"name":"Chimecho","types":[14],"forms":{"0":{"types":null},"1592":{"types":null}}},"359":{"name":"Absol","types":[17],"forms":{"830":{"types":null}}},"36":{"name":"Clefable","types":[18],"forms":{"0":{"types":null},"984":{"types":null}}},"360":{"name":"Wynaut","types":[14],"forms":{"0":{"types":null},"1595":{"types":null}}},"361":{"name":"Snorunt","types":[15],"forms":{"0":{"types":null},"926":{"types":null}}},"362":{"name":"Glalie","types":[15],"forms":{"0":{"types":null},"929":{"types":null}}},"363":{"name":"Spheal","types":[11,15],"forms":{"1598":{"types":null}}},"364":{"name":"Sealeo","types":[11,15],"forms":{"1601":{"types":null}}},"365":{"name":"Walrein","types":[11,15],"forms":{"1604":{"types":null}}},"366":{"name":"Clamperl","types":[11],"forms":{"0":{"types":null},"1607":{"types":null}}},"367":{"name":"Huntail","types":[11],"forms":{"0":{"types":null},"1610":{"types":null}}},"368":{"name":"Gorebyss","types":[11],"forms":{"0":{"types":null},"1613":{"types":null}}},"369":{"name":"Relicanth","types":[6,11],"forms":{"0":{"types":null},"1616":{"types":null}}},"37":{"name":"Vulpix","types":[10],"forms":{"55":{"types":null},"56":{"types":[15]}}},"370":{"name":"Luvdisc","types":[11],"forms":{"0":{"types":null},"1619":{"types":null}}},"371":{"name":"Bagon","types":[16],"forms":{"755":{"types":null}}},"372":{"name":"Shelgon","types":[16],"forms":{"758":{"types":null}}},"373":{"name":"Salamence","types":[3,16],"forms":{"761":{"types":null}}},"374":{"name":"Beldum","types":[9,14],"forms":{"764":{"types":null}}},"375":{"name":"Metang","types":[9,14],"forms":{"767":{"types":null}}},"376":{"name":"Metagross","types":[9,14],"forms":{"770":{"types":null}}},"377":{"name":"Regirock","types":[6],"forms":{"0":{"types":null},"1622":{"types":null}}},"378":{"name":"Regice","types":[15],"forms":{"0":{"types":null},"1625":{"types":null}}},"379":{"name":"Registeel","types":[9],"forms":{"0":{"types":null},"1628":{"types":null}}},"38":{"name":"Ninetales","types":[10],"forms":{"57":{"types":null},"58":{"types":[15,18]}}},"380":{"name":"Latias","types":[14,16],"forms":{"1631":{"types":null},"2821":{"types":null}}},"381":{"name":"Latios","types":[14,16],"forms":{"1634":{"types":null},"2822":{"types":null}}},"382":{"name":"Kyogre","types":[11],"forms":{"0":{"types":null},"1637":{"types":null}}},"383":{"name":"Groudon","types":[5],"forms":{"0":{"types":null},"1640":{"types":null}}},"384":{"name":"Rayquaza","types":[3,16],"forms":{"0":{"types":null},"1643":{"types":null}}},"385":{"name":"Jirachi","types":[9,14],"forms":{"0":{"types":null},"1646":{"types":null}}},"386":{"name":"Deoxys","types":[14],"forms":{"33":{"types":null},"34":{"types":null},"35":{"types":null},"36":{"types":null}}},"387":{"name":"Turtwig","types":[12],"forms":{"688":{"types":null}}},"388":{"name":"Grotle","types":[12],"forms":{"691":{"types":null}}},"389":{"name":"Torterra","types":[5,12],"forms":{"694":{"types":null}}},"39":{"name":"Jigglypuff","types":[1,18],"forms":{"0":{"types":null},"987":{"types":null}}},"390":{"name":"Chimchar","types":[10],"forms":{"818":{"types":null}}},"391":{"name":"Monferno","types":[2,10],"forms":{"821":{"types":null}}},"392":{"name":"Infernape","types":[2,10],"forms":{"824":{"types":null}}},"393":{"name":"Piplup","types":[11],"forms":{"0":{"types":null},"1649":{"types":null}}},"394":{"name":"Prinplup","types":[11],"forms":{"0":{"types":null},"1652":{"types":null}}},"395":{"name":"Empoleon","types":[9,11],"forms":{"0":{"types":null},"1655":{"types":null}}},"396":{"name":"Starly","types":[1,3],"forms":{"1658":{"types":null}}},"397":{"name":"Staravia","types":[1,3],"forms":{"1661":{"types":null}}},"398":{"name":"Staraptor","types":[1,3],"forms":{"1664":{"types":null}}},"399":{"name":"Bidoof","types":[1],"forms":{"1667":{"types":null}}},"4":{"name":"Charmander","types":[10],"forms":{"172":{"types":null},"896":{"types":null}}},"40":{"name":"Wigglytuff","types":[1,18],"forms":{"0":{"types":null},"990":{"types":null}}},"400":{"name":"Bibarel","types":[1,11],"forms":{"1670":{"types":null}}},"401":{"name":"Kricketot","types":[7],"forms":{"0":{"types":null},"1673":{"types":null}}},"402":{"name":"Kricketune","types":[7],"forms":{"0":{"types":null},"1676":{"types":null}}},"403":{"name":"Shinx","types":[13],"forms":{"0":{"types":null},"1679":{"types":null}}},"404":{"name":"Luxio","types":[13],"forms":{"0":{"types":null},"1682":{"types":null}}},"405":{"name":"Luxray","types":[13],"forms":{"0":{"types":null},"1685":{"types":null}}},"406":{"name":"Budew","types":[4,12],"forms":{"0":{"types":null},"1688":{"types":null}}},"407":{"name":"Roserade","types":[4,12],"forms":{"0":{"types":null},"1691":{"types":null}}},"408":{"name":"Cranidos","types":[6],"forms":{"0":{"types":null},"1694":{"types":null}}},"409":{"name":"Rampardos","types":[6],"forms":{"0":{"types":null},"1697":{"types":null}}},"41":{"name":"Zubat","types":[3,4],"forms":{"157":{"types":null}}},"410":{"name":"Shieldon","types":[6,9],"forms":{"0":{"types":null},"1700":{"types":null}}},"411":{"name":"Bastiodon","types":[6,9],"forms":{"0":{"types":null},"1703":{"types":null}}},"412":{"name":"Burmy","types":[7],"forms":{"118":{"types":null},"119":{"types":null},"120":{"types":null},"1706":{"types":null}}},"413":{"name":"Wormadam","types":[7,12],"forms":{"1709":{"types":null},"87":{"types":null},"88":{"types":[5,7]},"89":{"types":[7,9]}}},"414":{"name":"Mothim","types":[3,7],"forms":{"0":{"types":null},"1712":{"types":null}}},"415":{"name":"Combee","types":[3,7],"forms":{"0":{"types":null},"1715":{"types":null}}},"416":{"name":"Vespiquen","types":[3,7],"forms":{"0":{"types":null},"1718":{"types":null}}},"417":{"name":"Pachirisu","types":[13],"forms":{"0":{"types":null},"1721":{"types":null}}},"418":{"name":"Buizel","types":[11],"forms":{"0":{"types":null},"1724":{"types":null}}},"419":{"name":"Floatzel","types":[11],"forms":{"0":{"types":null},"1727":{"types":null}}},"42":{"name":"Golbat","types":[3,4],"forms":{"160":{"types":null}}},"420":{"name":"Cherubi","types":[12],"forms":{"0":{"types":null},"1730":{"types":null}}},"421":{"name":"Cherrim","types":[12],"forms":{"1733":{"types":null},"94":{"types":null},"95":{"types":null}}},"422":{"name":"Shellos","types":[11],"forms":{"1736":{"types":null},"96":{"types":null},"97":{"types":null}}},"423":{"name":"Gastrodon","types":[5,11],"forms":{"1739":{"types":null},"98":{"types":null},"99":{"types":null}}},"424":{"name":"Ambipom","types":[1],"forms":{"1742":{"types":null}}},"425":{"name":"Drifloon","types":[3,8],"forms":{"0":{"types":null},"1745":{"types":null}}},"426":{"name":"Drifblim","types":[3,8],"forms":{"0":{"types":null},"1748":{"types":null}}},"427":{"name":"Buneary","types":[1],"forms":{"0":{"types":null},"1751":{"types":null}}},"428":{"name":"Lopunny","types":[1],"forms":{"0":{"types":null},"1754":{"types":null}}},"429":{"name":"Mismagius","types":[8],"forms":{"722":{"types":null}}},"43":{"name":"Oddish","types":[4,12],"forms":{"265":{"types":null}}},"430":{"name":"Honchkrow","types":[3,17],"forms":{"858":{"types":null}}},"431":{"name":"Glameow","types":[1],"forms":{"0":{"types":null},"1757":{"types":null}}},"432":{"name":"Purugly","types":[1],"forms":{"0":{"types":null},"1760":{"types":null}}},"433":{"name":"Chingling","types":[14],"forms":{"0":{"types":null},"1763":{"types":null}}},"434":{"name":"Stunky","types":[4,17],"forms":{"791":{"types":null}}},"435":{"name":"Skuntank","types":[4,17],"forms":{"794":{"types":null}}},"436":{"name":"Bronzor","types":[9,14],"forms":{"0":{"types":null},"1766":{"types":null}}},"437":{"name":"Bronzong","types":[9,14],"forms":{"0":{"types":null},"1769":{"types":null}}},"438":{"name":"Bonsly","types":[6],"forms":{"0":{"types":null},"1772":{"types":null}}},"439":{"name":"Mime Jr","types":[14,18],"forms":{"0":{"types":null},"1775":{"types":null}}},"44":{"name":"Gloom","types":[4,12],"forms":{"268":{"types":null}}},"440":{"name":"Happiny","types":[1],"forms":{"0":{"types":null},"1778":{"types":null}}},"441":{"name":"Chatot","types":[1,3],"forms":{"0":{"types":null},"1781":{"types":null}}},"442":{"name":"Spiritomb","types":[8,17],"forms":{"0":{"types":null},"1784":{"types":null}}},"443":{"name":"Gible","types":[5,16],"forms":{"861":{"types":null}}},"444":{"name":"Gabite","types":[5,16],"forms":{"864":{"types":null}}},"445":{"name":"Garchomp","types":[5,16],"forms":{"867":{"types":null}}},"446":{"name":"Munchlax","types":[1],"forms":{"0":{"types":null},"1787":{"types":null}}},"447":{"name":"Riolu","types":[2],"forms":{"0":{"types":null},"1790":{"types":null}}},"448":{"name":"Lucario","types":[2,9],"forms":{"0":{"types":null},"1793":{"types":null}}},"449":{"name":"Hippopotas","types":[5],"forms":{"888":{"types":null}}},"45":{"name":"Vileplume","types":[4,12],"forms":{"271":{"types":null}}},"450":{"name":"Hippowdon","types":[5],"forms":{"891":{"types":null}}},"451":{"name":"Skorupi","types":[4,7],"forms":{"1796":{"types":null}}},"452":{"name":"Drapion","types":[4,17],"forms":{"1799":{"types":null}}},"453":{"name":"Croagunk","types":[2,4],"forms":{"0":{"types":null},"1802":{"types":null}}},"454":{"name":"Toxicroak","types":[2,4],"forms":{"0":{"types":null},"1805":{"types":null}}},"455":{"name":"Carnivine","types":[12],"forms":{"0":{"types":null},"1808":{"types":null}}},"456":{"name":"Finneon","types":[11],"forms":{"0":{"types":null},"1811":{"types":null}}},"457":{"name":"Lumineon","types":[11],"forms":{"0":{"types":null},"1814":{"types":null}}},"458":{"name":"Mantyke","types":[3,11],"forms":{"0":{"types":null},"1817":{"types":null}}},"459":{"name":"Snover","types":[12,15],"forms":{"932":{"types":null}}},"46":{"name":"Paras","types":[7,12],"forms":{"0":{"types":null},"993":{"types":null}}},"460":{"name":"Abomasnow","types":[12,15],"forms":{"935":{"types":null}}},"461":{"name":"Weavile","types":[15,17],"forms":{"800":{"types":null}}},"462":{"name":"Magnezone","types":[9,13],"forms":{"661":{"types":null}}},"463":{"name":"Lickilicky","types":[1],"forms":{"0":{"types":null},"1820":{"types":null}}},"464":{"name":"Rhyperior","types":[5,6],"forms":{"852":{"types":null}}},"465":{"name":"Tangrowth","types":[12],"forms":{"1823":{"types":null}}},"466":{"name":"Electivire","types":[13],"forms":{"643":{"types":null}}},"467":{"name":"Magmortar","types":[10],"forms":{"637":{"types":null}}},"468":{"name":"Togekiss","types":[3,18],"forms":{"0":{"types":null},"1826":{"types":null}}},"469":{"name":"Yanmega","types":[3,7],"forms":{"0":{"types":null},"1829":{"types":null}}},"47":{"name":"Parasect","types":[7,12],"forms":{"0":{"types":null},"996":{"types":null}}},"470":{"name":"Leafeon","types":[12],"forms":{"0":{"types":null},"1832":{"types":null}}},"471":{"name":"Glaceon","types":[15],"forms":{"0":{"types":null},"1835":{"types":null}}},"472":{"name":"Gliscor","types":[3,5],"forms":{"806":{"types":null}}},"473":{"name":"Mamoswine","types":[5,15],"forms":{"1838":{"types":null}}},"474":{"name":"Porygon Z","types":[1],"forms":{"683":{"types":null}}},"475":{"name":"Gallade","types":[2,14],"forms":{"301":{"types":null}}},"476":{"name":"Probopass","types":[6,9],"forms":{"1841":{"types":null}}},"477":{"name":"Dusknoir","types":[8],"forms":{"920":{"types":null}}},"478":{"name":"Froslass","types":[8,15],"forms":{"0":{"types":null},"1844":{"types":null}}},"479":{"name":"Rotom","types":[8,13],"forms":{"81":{"types":null},"82":{"types":[13,15]},"83":{"types":[3,13]},"84":{"types":[12,13]},"85":{"types":[11,13]},"86":{"types":[10,13]}}},"48":{"name":"Venonat","types":[4,7],"forms":{"259":{"types":null}}},"480":{"name":"Uxie","types":[14],"forms":{"0":{"types":null},"1847":{"types":null}}},"481":{"name":"Mesprit","types":[14],"forms":{"0":{"types":null},"1850":{"types":null}}},"482":{"name":"Azelf","types":[14],"forms":{"0":{"types":null},"1853":{"types":null}}},"483":{"name":"Dialga","types":[9,16],"forms":{"1856":{"types":null},"2829":{"types":null}}},"484":{"name":"Palkia","types":[11,16],"forms":{"1859":{"types":null},"2830":{"types":null}}},"485":{"name":"Heatran","types":[9,10],"forms":{"0":{"types":null},"1862":{"types":null}}},"486":{"name":"Regigigas","types":[1],"forms":{"0":{"types":null},"1865":{"types":null}}},"487":{"name":"Giratina","types":[8,16],"forms":{"1868":{"types":null},"90":{"types":null},"91":{"types":null}}},"488":{"name":"Cresselia","types":[14],"forms":{"0":{"types":null},"1871":{"types":null}}},"489":{"name":"Phione","types":[11],"forms":{"0":{"types":null},"1874":{"types":null}}},"49":{"name":"Venomoth","types":[4,7],"forms":{"262":{"types":null}}},"490":{"name":"Manaphy","types":[11],"forms":{"0":{"types":null},"1877":{"types":null}}},"491":{"name":"Darkrai","types":[17],"forms":{"0":{"types":null},"1880":{"types":null}}},"492":{"name":"Shaymin","types":[12],"forms":{"1883":{"types":null},"92":{"types":[3,12]},"93":{"types":null}}},"493":{"name":"Arceus","types":[1],"forms":{"100":{"types":null},"101":{"types":[2]},"102":{"types":[3]},"103":{"types":[4]},"104":{"types":[5]},"105":{"types":[6]},"106":{"types":[7]},"107":{"types":[8]},"108":{"types":[9]},"109":{"types":[10]},"110":{"types":[11]},"111":{"types":[12]},"112":{"types":[13]},"113":{"types":[14]},"114":{"types":[15]},"115":{"types":[16]},"116":{"types":[17]},"117":{"types":[18]}}},"494":{"name":"Victini","types":[10,14],"forms":{"0":{"types":null},"1886":{"types":null}}},"495":{"name":"Snivy","types":[12],"forms":{"0":{"types":null},"1889":{"types":null}}},"496":{"name":"Servine","types":[12],"forms":{"0":{"types":null},"1892":{"types":null}}},"497":{"name":"Serperior","types":[12],"forms":{"0":{"types":null},"1895":{"types":null}}},"498":{"name":"Tepig","types":[10],"forms":{"0":{"types":null},"1898":{"types":null}}},"499":{"name":"Pignite","types":[2,10],"forms":{"0":{"types":null},"1901":{"types":null}}},"5":{"name":"Charmeleon","types":[10],"forms":{"175":{"types":null}}},"50":{"name":"Diglett","types":[5],"forms":{"59":{"types":null},"60":{"types":[5,9]}}},"500":{"name":"Emboar","types":[2,10],"forms":{"0":{"types":null},"1904":{"types":null}}},"501":{"name":"Oshawott","types":[11],"forms":{"0":{"types":null},"1907":{"types":null}}},"502":{"name":"Dewott","types":[11],"forms":{"0":{"types":null},"1910":{"types":null}}},"503":{"name":"Samurott","types":[11],"forms":{"1913":{"types":null},"2787":{"types":[11,17]}}},"504":{"name":"Patrat","types":[1],"forms":{"0":{"types":null},"1916":{"types":null}}},"505":{"name":"Watchog","types":[1],"forms":{"0":{"types":null},"1919":{"types":null}}},"506":{"name":"Lillipup","types":[1],"forms":{"0":{"types":null},"1922":{"types":null}}},"507":{"name":"Herdier","types":[1],"forms":{"0":{"types":null},"1925":{"types":null}}},"508":{"name":"Stoutland","types":[1],"forms":{"0":{"types":null},"1928":{"types":null}}},"509":{"name":"Purrloin","types":[17],"forms":{"0":{"types":null},"1931":{"types":null}}},"51":{"name":"Dugtrio","types":[5],"forms":{"61":{"types":null},"62":{"types":[5,9]}}},"510":{"name":"Liepard","types":[17],"forms":{"0":{"types":null},"1934":{"types":null}}},"511":{"name":"Pansage","types":[12],"forms":{"0":{"types":null},"1937":{"types":null}}},"512":{"name":"Simisage","types":[12],"forms":{"0":{"types":null},"1940":{"types":null}}},"513":{"name":"Pansear","types":[10],"forms":{"0":{"types":null},"1943":{"types":null}}},"514":{"name":"Simisear","types":[10],"forms":{"0":{"types":null},"1946":{"types":null}}},"515":{"name":"Panpour","types":[11],"forms":{"0":{"types":null},"1949":{"types":null}}},"516":{"name":"Simipour","types":[11],"forms":{"0":{"types":null},"1952":{"types":null}}},"517":{"name":"Munna","types":[14],"forms":{"0":{"types":null},"1955":{"types":null}}},"518":{"name":"Musharna","types":[14],"forms":{"0":{"types":null},"1958":{"types":null}}},"519":{"name":"Pidove","types":[1,3],"forms":{"0":{"types":null},"1961":{"types":null}}},"52":{"name":"Meowth","types":[1],"forms":{"2335":{"types":[9]},"63":{"types":null},"64":{"types":[17]}}},"520":{"name":"Tranquill","types":[1,3],"forms":{"0":{"types":null},"1964":{"types":null}}},"521":{"name":"Unfezant","types":[1,3],"forms":{"0":{"types":null},"1967":{"types":null}}},"522":{"name":"Blitzle","types":[13],"forms":{"0":{"types":null},"1970":{"types":null}}},"523":{"name":"Zebstrika","types":[13],"forms":{"0":{"types":null},"1973":{"types":null}}},"524":{"name":"Roggenrola","types":[6],"forms":{"0":{"types":null},"1976":{"types":null}}},"525":{"name":"Boldore","types":[6],"forms":{"0":{"types":null},"1979":{"types":null}}},"526":{"name":"Gigalith","types":[6],"forms":{"0":{"types":null},"1982":{"types":null}}},"527":{"name":"Woobat","types":[3,14],"forms":{"0":{"types":null},"1985":{"types":null}}},"528":{"name":"Swoobat","types":[3,14],"forms":{"0":{"types":null},"1988":{"types":null}}},"529":{"name":"Drilbur","types":[5],"forms":{"0":{"types":null},"1991":{"types":null}}},"53":{"name":"Persian","types":[1],"forms":{"65":{"types":null},"66":{"types":[17]}}},"530":{"name":"Excadrill","types":[5,9],"forms":{"0":{"types":null},"1994":{"types":null}}},"531":{"name":"Audino","types":[1],"forms":{"0":{"types":null},"1997":{"types":null}}},"532":{"name":"Timburr","types":[2],"forms":{"0":{"types":null},"2000":{"types":null}}},"533":{"name":"Gurdurr","types":[2],"forms":{"0":{"types":null},"2003":{"types":null}}},"534":{"name":"Conkeldurr","types":[2],"forms":{"0":{"types":null},"2006":{"types":null}}},"535":{"name":"Tympole","types":[11],"forms":{"0":{"types":null},"2009":{"types":null}}},"536":{"name":"Palpitoad","types":[5,11],"forms":{"0":{"types":null},"2012":{"types":null}}},"537":{"name":"Seismitoad","types":[5,11],"forms":{"0":{"types":null},"2015":{"types":null}}},"538":{"name":"Throh","types":[2],"forms":{"0":{"types":null},"2018":{"types":null}}},"539":{"name":"Sawk","types":[2],"forms":{"0":{"types":null},"2021":{"types":null}}},"54":{"name":"Psyduck","types":[11],"forms":{"286":{"types":null}}},"540":{"name":"Sewaddle","types":[7,12],"forms":{"0":{"types":null},"2024":{"types":null}}},"541":{"name":"Swadloon","types":[7,12],"forms":{"0":{"types":null},"2027":{"types":null}}},"542":{"name":"Leavanny","types":[7,12],"forms":{"0":{"types":null},"2030":{"types":null}}},"543":{"name":"Venipede","types":[4,7],"forms":{"0":{"types":null},"2033":{"types":null}}},"544":{"name":"Whirlipede","types":[4,7],"forms":{"0":{"types":null},"2036":{"types":null}}},"545":{"name":"Scolipede","types":[4,7],"forms":{"0":{"types":null},"2039":{"types":null}}},"546":{"name":"Cottonee","types":[12,18],"forms":{"0":{"types":null},"2042":{"types":null}}},"547":{"name":"Whimsicott","types":[12,18],"forms":{"0":{"types":null},"2045":{"types":null}}},"548":{"name":"Petilil","types":[12],"forms":{"0":{"types":null},"2048":{"types":null}}},"549":{"name":"Lilligant","types":[12],"forms":{"2051":{"types":null},"2789":{"types":[2,12]}}},"55":{"name":"Golduck","types":[11],"forms":{"289":{"types":null}}},"550":{"name":"Basculin","types":[11],"forms":{"136":{"types":null},"137":{"types":null},"2804":{"types":null}}},"551":{"name":"Sandile","types":[5,17],"forms":{"0":{"types":null},"2054":{"types":null}}},"552":{"name":"Krokorok","types":[5,17],"forms":{"0":{"types":null},"2057":{"types":null}}},"553":{"name":"Krookodile","types":[5,17],"forms":{"0":{"types":null},"2060":{"types":null}}},"554":{"name":"Darumaka","types":[10],"forms":{"2063":{"types":null},"2341":{"types":[15]}}},"555":{"name":"Darmanitan","types":[10],"forms":{"138":{"types":null},"139":{"types":[10,14]},"2342":{"types":[15]},"2343":{"types":[10,15]}}},"556":{"name":"Maractus","types":[12],"forms":{"0":{"types":null},"2066":{"types":null}}},"557":{"name":"Dwebble","types":[6,7],"forms":{"0":{"types":null},"2069":{"types":null}}},"558":{"name":"Crustle","types":[6,7],"forms":{"0":{"types":null},"2072":{"types":null}}},"559":{"name":"Scraggy","types":[2,17],"forms":{"0":{"types":null},"2075":{"types":null}}},"56":{"name":"Mankey","types":[2],"forms":{"0":{"types":null},"999":{"types":null}}},"560":{"name":"Scrafty","types":[2,17],"forms":{"0":{"types":null},"2078":{"types":null}}},"561":{"name":"Sigilyph","types":[3,14],"forms":{"0":{"types":null},"2081":{"types":null}}},"562":{"name":"Yamask","types":[8],"forms":{"2084":{"types":null},"2344":{"types":[5,8]}}},"563":{"name":"Cofagrigus","types":[8],"forms":{"2087":{"types":null}}},"564":{"name":"Tirtouga","types":[6,11],"forms":{"0":{"types":null},"2090":{"types":null}}},"565":{"name":"Carracosta","types":[6,11],"forms":{"0":{"types":null},"2093":{"types":null}}},"566":{"name":"Archen","types":[3,6],"forms":{"0":{"types":null},"2096":{"types":null}}},"567":{"name":"Archeops","types":[3,6],"forms":{"0":{"types":null},"2099":{"types":null}}},"568":{"name":"Trubbish","types":[4],"forms":{"0":{"types":null},"2102":{"types":null}}},"569":{"name":"Garbodor","types":[4],"forms":{"0":{"types":null},"2105":{"types":null}}},"57":{"name":"Primeape","types":[2],"forms":{"0":{"types":null},"1002":{"types":null}}},"570":{"name":"Zorua","types":[17],"forms":{"2108":{"types":null},"2796":{"types":[1,8]}}},"571":{"name":"Zoroark","types":[17],"forms":{"2111":{"types":null},"2797":{"types":[1,8]}}},"572":{"name":"Minccino","types":[1],"forms":{"0":{"types":null},"2114":{"types":null}}},"573":{"name":"Cinccino","types":[1],"forms":{"0":{"types":null},"2117":{"types":null}}},"574":{"name":"Gothita","types":[14],"forms":{"0":{"types":null},"2120":{"types":null}}},"575":{"name":"Gothorita","types":[14],"forms":{"0":{"types":null},"2123":{"types":null}}},"576":{"name":"Gothitelle","types":[14],"forms":{"0":{"types":null},"2126":{"types":null}}},"577":{"name":"Solosis","types":[14],"forms":{"0":{"types":null},"2129":{"types":null}}},"578":{"name":"Duosion","types":[14],"forms":{"0":{"types":null},"2132":{"types":null}}},"579":{"name":"Reuniclus","types":[14],"forms":{"0":{"types":null},"2135":{"types":null}}},"58":{"name":"Growlithe","types":[10],"forms":{"2792":{"types":[6,10]},"280":{"types":null}}},"580":{"name":"Ducklett","types":[3,11],"forms":{"0":{"types":null},"2138":{"types":null}}},"581":{"name":"Swanna","types":[3,11],"forms":{"0":{"types":null},"2141":{"types":null}}},"582":{"name":"Vanillite","types":[15],"forms":{"0":{"types":null},"2144":{"types":null}}},"583":{"name":"Vanillish","types":[15],"forms":{"0":{"types":null},"2147":{"types":null}}},"584":{"name":"Vanilluxe","types":[15],"forms":{"0":{"types":null},"2150":{"types":null}}},"585":{"name":"Deerling","types":[1,12],"forms":{"585":{"types":null},"586":{"types":null},"587":{"types":null},"588":{"types":null}}},"586":{"name":"Sawsbuck","types":[1,12],"forms":{"589":{"types":null},"590":{"types":null},"591":{"types":null},"592":{"types":null}}},"587":{"name":"Emolga","types":[3,13],"forms":{"0":{"types":null},"2153":{"types":null}}},"588":{"name":"Karrablast","types":[7],"forms":{"0":{"types":null},"2156":{"types":null}}},"589":{"name":"Escavalier","types":[7,9],"forms":{"0":{"types":null},"2159":{"types":null}}},"59":{"name":"Arcanine","types":[10],"forms":{"2793":{"types":[6,10]},"283":{"types":null}}},"590":{"name":"Foongus","types":[4,12],"forms":{"0":{"types":null},"2162":{"types":null}}},"591":{"name":"Amoonguss","types":[4,12],"forms":{"0":{"types":null},"2165":{"types":null}}},"592":{"name":"Frillish","types":[8,11],"forms":{"2168":{"types":null},"2330":{"types":null}}},"593":{"name":"Jellicent","types":[8,11],"forms":{"2171":{"types":null},"2331":{"types":null}}},"594":{"name":"Alomomola","types":[11],"forms":{"0":{"types":null},"2174":{"types":null}}},"595":{"name":"Joltik","types":[7,13],"forms":{"0":{"types":null},"2177":{"types":null}}},"596":{"name":"Galvantula","types":[7,13],"forms":{"0":{"types":null},"2180":{"types":null}}},"597":{"name":"Ferroseed","types":[9,12],"forms":{"0":{"types":null},"2183":{"types":null}}},"598":{"name":"Ferrothorn","types":[9,12],"forms":{"0":{"types":null},"2186":{"types":null}}},"599":{"name":"Klink","types":[9],"forms":{"0":{"types":null},"2189":{"types":null}}},"6":{"name":"Charizard","types":[3,10],"forms":{"178":{"types":null},"951":{"types":null}}},"60":{"name":"Poliwag","types":[11],"forms":{"235":{"types":null}}},"600":{"name":"Klang","types":[9],"forms":{"0":{"types":null},"2192":{"types":null}}},"601":{"name":"Klinklang","types":[9],"forms":{"0":{"types":null},"2195":{"types":null}}},"602":{"name":"Tynamo","types":[13],"forms":{"0":{"types":null},"2198":{"types":null}}},"603":{"name":"Eelektrik","types":[13],"forms":{"0":{"types":null},"2201":{"types":null}}},"604":{"name":"Eelektross","types":[13],"forms":{"0":{"types":null},"2204":{"types":null}}},"605":{"name":"Elgyem","types":[14],"forms":{"0":{"types":null},"2207":{"types":null}}},"606":{"name":"Beheeyem","types":[14],"forms":{"0":{"types":null},"2210":{"types":null}}},"607":{"name":"Litwick","types":[8,10],"forms":{"0":{"types":null},"2213":{"types":null}}},"608":{"name":"Lampent","types":[8,10],"forms":{"0":{"types":null},"2216":{"types":null}}},"609":{"name":"Chandelure","types":[8,10],"forms":{"0":{"types":null},"2219":{"types":null}}},"61":{"name":"Poliwhirl","types":[11],"forms":{"238":{"types":null}}},"610":{"name":"Axew","types":[16],"forms":{"0":{"types":null},"2222":{"types":null}}},"611":{"name":"Fraxure","types":[16],"forms":{"0":{"types":null},"2225":{"types":null}}},"612":{"name":"Haxorus","types":[16],"forms":{"0":{"types":null},"2228":{"types":null}}},"613":{"name":"Cubchoo","types":[15],"forms":{"2231":{"types":null},"2672":{"types":null}}},"614":{"name":"Beartic","types":[15],"forms":{"2234":{"types":null},"2820":{"types":null}}},"615":{"name":"Cryogonal","types":[15],"forms":{"0":{"types":null},"2237":{"types":null}}},"616":{"name":"Shelmet","types":[7],"forms":{"0":{"types":null},"2240":{"types":null}}},"617":{"name":"Accelgor","types":[7],"forms":{"0":{"types":null},"2243":{"types":null}}},"618":{"name":"Stunfisk","types":[5,13],"forms":{"2246":{"types":null},"2345":{"types":[5,9]}}},"619":{"name":"Mienfoo","types":[2],"forms":{"0":{"types":null},"2249":{"types":null}}},"62":{"name":"Poliwrath","types":[2,11],"forms":{"241":{"types":null}}},"620":{"name":"Mienshao","types":[2],"forms":{"0":{"types":null},"2252":{"types":null}}},"621":{"name":"Druddigon","types":[16],"forms":{"0":{"types":null},"2255":{"types":null}}},"622":{"name":"Golett","types":[5,8],"forms":{"0":{"types":null},"2258":{"types":null}}},"623":{"name":"Golurk","types":[5,8],"forms":{"0":{"types":null},"2261":{"types":null}}},"624":{"name":"Pawniard","types":[9,17],"forms":{"0":{"types":null},"2264":{"types":null}}},"625":{"name":"Bisharp","types":[9,17],"forms":{"0":{"types":null},"2267":{"types":null}}},"626":{"name":"Bouffalant","types":[1],"forms":{"0":{"types":null},"2270":{"types":null}}},"627":{"name":"Rufflet","types":[1,3],"forms":{"0":{"types":null},"2273":{"types":null}}},"628":{"name":"Braviary","types":[1,3],"forms":{"2276":{"types":null},"2798":{"types":[3,14]}}},"629":{"name":"Vullaby","types":[3,17],"forms":{"0":{"types":null},"2279":{"types":null}}},"63":{"name":"Abra","types":[14],"forms":{"304":{"types":null}}},"630":{"name":"Mandibuzz","types":[3,17],"forms":{"0":{"types":null},"2282":{"types":null}}},"631":{"name":"Heatmor","types":[10],"forms":{"0":{"types":null},"2285":{"types":null}}},"632":{"name":"Durant","types":[7,9],"forms":{"0":{"types":null},"2288":{"types":null}}},"633":{"name":"Deino","types":[16,17],"forms":{"0":{"types":null},"2291":{"types":null}}},"634":{"name":"Zweilous","types":[16,17],"forms":{"0":{"types":null},"2294":{"types":null}}},"635":{"name":"Hydreigon","types":[16,17],"forms":{"0":{"types":null},"2297":{"types":null}}},"636":{"name":"Larvesta","types":[7,10],"forms":{"0":{"types":null},"2300":{"types":null}}},"637":{"name":"Volcarona","types":[7,10],"forms":{"0":{"types":null},"2303":{"types":null}}},"638":{"name":"Cobalion","types":[2,9],"forms":{"0":{"types":null},"2306":{"types":null}}},"639":{"name":"Terrakion","types":[2,6],"forms":{"0":{"types":null},"2309":{"types":null}}},"64":{"name":"Kadabra","types":[14],"forms":{"307":{"types":null}}},"640":{"name":"Virizion","types":[2,12],"forms":{"0":{"types":null},"2312":{"types":null}}},"641":{"name":"Tornadus","types":[3],"forms":{"140":{"types":null},"141":{"types":null}}},"642":{"name":"Thundurus","types":[3,13],"forms":{"142":{"types":null},"143":{"types":null}}},"643":{"name":"Reshiram","types":[10,16],"forms":{"0":{"types":null},"2315":{"types":null}}},"644":{"name":"Zekrom","types":[13,16],"forms":{"0":{"types":null},"2318":{"types":null}}},"645":{"name":"Landorus","types":[3,5],"forms":{"144":{"types":null},"145":{"types":null}}},"646":{"name":"Kyurem","types":[15,16],"forms":{"146":{"types":null},"147":{"types":null},"148":{"types":null}}},"647":{"name":"Keldeo","types":[2,11],"forms":{"149":{"types":null},"150":{"types":null}}},"648":{"name":"Meloetta","types":[1,14],"forms":{"151":{"types":null},"152":{"types":[1,2]}}},"649":{"name":"Genesect","types":[7,9],"forms":{"593":{"types":null},"594":{"types":null},"595":{"types":null},"596":{"types":null},"597":{"types":null}}},"65":{"name":"Alakazam","types":[14],"forms":{"310":{"types":null}}},"650":{"name":"Chespin","types":[12],"forms":{"0":{"types":null}}},"651":{"name":"Quilladin","types":[12],"forms":{"0":{"types":null}}},"652":{"name":"Chesnaught","types":[2,12],"forms":{"0":{"types":null}}},"653":{"name":"Fennekin","types":[10],"forms":{"0":{"types":null}}},"654":{"name":"Braixen","types":[10],"forms":{"0":{"types":null}}},"655":{"name":"Delphox","types":[10,14],"forms":{"0":{"types":null}}},"656":{"name":"Froakie","types":[11],"forms":{"0":{"types":null}}},"657":{"name":"Frogadier","types":[11],"forms":{"0":{"types":null}}},"658":{"name":"Greninja","types":[11,17],"forms":{"0":{"types":null}}},"659":{"name":"Bunnelby","types":[1],"forms":{"0":{"types":null}}},"66":{"name":"Machop","types":[2],"forms":{"809":{"types":null}}},"660":{"name":"Diggersby","types":[1,5],"forms":{"0":{"types":null}}},"661":{"name":"Fletchling","types":[1,3],"forms":{"0":{"types":null}}},"662":{"name":"Fletchinder","types":[3,10],"forms":{"0":{"types":null}}},"663":{"name":"Talonflame","types":[3,10],"forms":{"0":{"types":null}}},"664":{"name":"Scatterbug","types":[7],"forms":{"2745":{"types":null},"2746":{"types":null},"2747":{"types":null},"2748":{"types":null},"2749":{"types":null},"2750":{"types":null},"2751":{"types":null},"2752":{"types":null},"2753":{"types":null},"2754":{"types":null},"2755":{"types":null},"2756":{"types":null},"2757":{"types":null},"2758":{"types":null},"2759":{"types":null},"2760":{"types":null},"2761":{"types":null},"2762":{"types":null},"2763":{"types":null},"2764":{"types":null}}},"665":{"name":"Spewpa","types":[7],"forms":{"2765":{"types":null},"2766":{"types":null},"2767":{"types":null},"2768":{"types":null},"2769":{"types":null},"2770":{"types":null},"2771":{"types":null},"2772":{"types":null},"2773":{"types":null},"2774":{"types":null},"2775":{"types":null},"2776":{"types":null},"2777":{"types":null},"2778":{"types":null},"2779":{"types":null},"2780":{"types":null},"2781":{"types":null},"2782":{"types":null},"2783":{"types":null},"2784":{"types":null}}},"666":{"name":"Vivillon","types":[3,7],"forms":{"2594":{"types":null},"2595":{"types":null},"2596":{"types":null},"2597":{"types":null},"2598":{"types":null},"2599":{"types":null},"2600":{"types":null},"2601":{"types":null},"2602":{"types":null},"2603":{"types":null},"2604":{"types":null},"2605":{"types":null},"2606":{"types":null},"2607":{"types":null},"2608":{"types":null},"2609":{"types":null},"2610":{"types":null},"2611":{"types":null},"2612":{"types":null},"2613":{"types":null}}},"667":{"name":"Litleo","types":[1,10],"forms":{"0":{"types":null}}},"668":{"name":"Pyroar","types":[1,10],"forms":{"2587":{"types":null},"2588":{"types":null}}},"669":{"name":"Flabebe","types":[18],"forms":{"2614":{"types":null},"2615":{"types":null},"2616":{"types":null},"2617":{"types":null},"2618":{"types":null}}},"67":{"name":"Machoke","types":[2],"forms":{"812":{"types":null}}},"670":{"name":"Floette","types":[18],"forms":{"2619":{"types":null},"2620":{"types":null},"2621":{"types":null},"2622":{"types":null},"2623":{"types":null}}},"671":{"name":"Florges","types":[18],"forms":{"2624":{"types":null},"2625":{"types":null},"2626":{"types":null},"2627":{"types":null},"2628":{"types":null}}},"672":{"name":"Skiddo","types":[12],"forms":{"0":{"types":null}}},"673":{"name":"Gogoat","types":[12],"forms":{"0":{"types":null}}},"674":{"name":"Pancham","types":[2],"forms":{"0":{"types":null}}},"675":{"name":"Pangoro","types":[2,17],"forms":{"0":{"types":null}}},"676":{"name":"Furfrou","types":[1],"forms":{"2629":{"types":null},"2630":{"types":null},"2631":{"types":null},"2632":{"types":null},"2633":{"types":null},"2634":{"types":null},"2635":{"types":null},"2636":{"types":null},"2637":{"types":null},"2638":{"types":null}}},"677":{"name":"Espurr","types":[14],"forms":{"0":{"types":null}}},"678":{"name":"Meowstic","types":[14],"forms":{"2589":{"types":null},"2590":{"types":null}}},"679":{"name":"Honedge","types":[8,9],"forms":{"0":{"types":null}}},"68":{"name":"Machamp","types":[2],"forms":{"815":{"types":null}}},"680":{"name":"Doublade","types":[8,9],"forms":{"0":{"types":null}}},"681":{"name":"Aegislash","types":[8,9],"forms":{"2639":{"types":null},"2640":{"types":null}}},"682":{"name":"Spritzee","types":[18],"forms":{"0":{"types":null}}},"683":{"name":"Aromatisse","types":[18],"forms":{"0":{"types":null}}},"684":{"name":"Swirlix","types":[18],"forms":{"0":{"types":null}}},"685":{"name":"Slurpuff","types":[18],"forms":{"0":{"types":null}}},"686":{"name":"Inkay","types":[14,17],"forms":{"0":{"types":null}}},"687":{"name":"Malamar","types":[14,17],"forms":{"0":{"types":null}}},"688":{"name":"Binacle","types":[6,11],"forms":{"0":{"types":null}}},"689":{"name":"Barbaracle","types":[6,11],"forms":{"0":{"types":null}}},"69":{"name":"Bellsprout","types":[4,12],"forms":{"664":{"types":null}}},"690":{"name":"Skrelp","types":[4,11],"forms":{"0":{"types":null}}},"691":{"name":"Dragalge","types":[4,16],"forms":{"0":{"types":null}}},"692":{"name":"Clauncher","types":[11],"forms":{"0":{"types":null}}},"693":{"name":"Clawitzer","types":[11],"forms":{"0":{"types":null}}},"694":{"name":"Helioptile","types":[1,13],"forms":{"0":{"types":null}}},"695":{"name":"Heliolisk","types":[1,13],"forms":{"0":{"types":null}}},"696":{"name":"Tyrunt","types":[6,16],"forms":{"0":{"types":null}}},"697":{"name":"Tyrantrum","types":[6,16],"forms":{"0":{"types":null}}},"698":{"name":"Amaura","types":[6,15],"forms":{"0":{"types":null}}},"699":{"name":"Aurorus","types":[6,15],"forms":{"0":{"types":null}}},"7":{"name":"Squirtle","types":[11],"forms":{"181":{"types":null},"895":{"types":null}}},"70":{"name":"Weepinbell","types":[4,12],"forms":{"667":{"types":null}}},"700":{"name":"Sylveon","types":[18],"forms":{"0":{"types":null}}},"701":{"name":"Hawlucha","types":[2,3],"forms":{"0":{"types":null}}},"702":{"name":"Dedenne","types":[13,18],"forms":{"0":{"types":null}}},"703":{"name":"Carbink","types":[6,18],"forms":{"0":{"types":null}}},"704":{"name":"Goomy","types":[16],"forms":{"0":{"types":null}}},"705":{"name":"Sliggoo","types":[16],"forms":{"0":{"types":null},"2790":{"types":null},"2810":{"types":null}}},"706":{"name":"Goodra","types":[16],"forms":{"0":{"types":null},"2791":{"types":null},"2811":{"types":null}}},"707":{"name":"Klefki","types":[9,18],"forms":{"0":{"types":null}}},"708":{"name":"Phantump","types":[8,12],"forms":{"0":{"types":null}}},"709":{"name":"Trevenant","types":[8,12],"forms":{"0":{"types":null}}},"71":{"name":"Victreebel","types":[4,12],"forms":{"670":{"types":null}}},"710":{"name":"Pumpkaboo","types":[8,12],"forms":{"2641":{"types":null},"2642":{"types":null},"2643":{"types":null},"2644":{"types":null}}},"711":{"name":"Gourgeist","types":[8,12],"forms":{"2645":{"types":null},"2646":{"types":null},"2647":{"types":null},"2648":{"types":null}}},"712":{"name":"Bergmite","types":[15],"forms":{"0":{"types":null}}},"713":{"name":"Avalugg","types":[15],"forms":{"2795":{"types":[6,15]},"2812":{"types":null}}},"714":{"name":"Noibat","types":[3,16],"forms":{"0":{"types":null}}},"715":{"name":"Noivern","types":[3,16],"forms":{"0":{"types":null}}},"716":{"name":"Xerneas","types":[18],"forms":{"0":{"types":null},"2649":{"types":null},"2650":{"types":null}}},"717":{"name":"Yveltal","types":[3,17],"forms":{"0":{"types":null}}},"718":{"name":"Zygarde","types":[5,16],"forms":{"2591":{"types":null},"2592":{"types":null},"2593":{"types":null},"2823":{"types":null},"2824":{"types":null}}},"719":{"name":"Diancie","types":[6,18],"forms":{"0":{"types":null}}},"72":{"name":"Tentacool","types":[4,11],"forms":{"0":{"types":null},"1005":{"types":null}}},"720":{"name":"Hoopa","types":[8,14],"forms":{"2651":{"types":null},"2652":{"types":[14,17]}}},"721":{"name":"Volcanion","types":[10,11],"forms":{"0":{"types":null}}},"722":{"name":"Rowlet","types":[3,12],"forms":{"0":{"types":null}}},"723":{"name":"Dartrix","types":[3,12],"forms":{"0":{"types":null}}},"724":{"name":"Decidueye","types":[8,12],"forms":{"2785":{"types":[2,12]},"2809":{"types":null}}},"725":{"name":"Litten","types":[10],"forms":{"0":{"types":null}}},"726":{"name":"Torracat","types":[10],"forms":{"0":{"types":null}}},"727":{"name":"Incineroar","types":[10,17],"forms":{"0":{"types":null}}},"728":{"name":"Popplio","types":[11],"forms":{"0":{"types":null}}},"729":{"name":"Brionne","types":[11],"forms":{"0":{"types":null}}},"73":{"name":"Tentacruel","types":[4,11],"forms":{"0":{"types":null},"1008":{"types":null}}},"730":{"name":"Primarina","types":[11,18],"forms":{"0":{"types":null}}},"731":{"name":"Pikipek","types":[1,3],"forms":{"0":{"types":null}}},"732":{"name":"Trumbeak","types":[1,3],"forms":{"0":{"types":null}}},"733":{"name":"Toucannon","types":[1,3],"forms":{"0":{"types":null}}},"734":{"name":"Yungoos","types":[1],"forms":{"0":{"types":null}}},"735":{"name":"Gumshoos","types":[1],"forms":{"0":{"types":null}}},"736":{"name":"Grubbin","types":[7],"forms":{"0":{"types":null}}},"737":{"name":"Charjabug","types":[7,13],"forms":{"0":{"types":null}}},"738":{"name":"Vikavolt","types":[7,13],"forms":{"0":{"types":null}}},"739":{"name":"Crabrawler","types":[2],"forms":{"0":{"types":null}}},"74":{"name":"Geodude","types":[5,6],"forms":{"67":{"types":null},"68":{"types":[6,13]}}},"740":{"name":"Crabominable","types":[2,15],"forms":{"0":{"types":null}}},"741":{"name":"Oricorio","types":[3,10],"forms":{"2679":{"types":null},"2680":{"types":[3,13]},"2681":{"types":[3,14]},"2683":{"types":[3,8]}}},"742":{"name":"Cutiefly","types":[7,18],"forms":{"0":{"types":null}}},"743":{"name":"Ribombee","types":[7,18],"forms":{"0":{"types":null}}},"744":{"name":"Rockruff","types":[6],"forms":{"2737":{"types":null},"2831":{"types":null}}},"745":{"name":"Lycanroc","types":[6],"forms":{"2684":{"types":null},"2685":{"types":null},"2686":{"types":null}}},"746":{"name":"Wishiwashi","types":[11],"forms":{"2687":{"types":null},"2688":{"types":null}}},"747":{"name":"Mareanie","types":[4,11],"forms":{"0":{"types":null}}},"748":{"name":"Toxapex","types":[4,11],"forms":{"0":{"types":null}}},"749":{"name":"Mudbray","types":[5],"forms":{"0":{"types":null}}},"75":{"name":"Graveler","types":[5,6],"forms":{"69":{"types":null},"70":{"types":[6,13]}}},"750":{"name":"Mudsdale","types":[5],"forms":{"0":{"types":null}}},"751":{"name":"Dewpider","types":[7,11],"forms":{"0":{"types":null}}},"752":{"name":"Araquanid","types":[7,11],"forms":{"0":{"types":null}}},"753":{"name":"Fomantis","types":[12],"forms":{"0":{"types":null}}},"754":{"name":"Lurantis","types":[12],"forms":{"0":{"types":null}}},"755":{"name":"Morelull","types":[12,18],"forms":{"0":{"types":null}}},"756":{"name":"Shiinotic","types":[12,18],"forms":{"0":{"types":null}}},"757":{"name":"Salandit","types":[4,10],"forms":{"0":{"types":null}}},"758":{"name":"Salazzle","types":[4,10],"forms":{"0":{"types":null}}},"759":{"name":"Stufful","types":[1,2],"forms":{"0":{"types":null}}},"76":{"name":"Golem","types":[5,6],"forms":{"71":{"types":null},"72":{"types":[6,13]}}},"760":{"name":"Bewear","types":[1,2],"forms":{"0":{"types":null}}},"761":{"name":"Bounsweet","types":[12],"forms":{"0":{"types":null}}},"762":{"name":"Steenee","types":[12],"forms":{"0":{"types":null}}},"763":{"name":"Tsareena","types":[12],"forms":{"0":{"types":null}}},"764":{"name":"Comfey","types":[18],"forms":{"0":{"types":null}}},"765":{"name":"Oranguru","types":[1,14],"forms":{"0":{"types":null}}},"766":{"name":"Passimian","types":[2],"forms":{"0":{"types":null}}},"767":{"name":"Wimpod","types":[7,11],"forms":{"0":{"types":null}}},"768":{"name":"Golisopod","types":[7,11],"forms":{"0":{"types":null}}},"769":{"name":"Sandygast","types":[5,8],"forms":{"0":{"types":null}}},"77":{"name":"Ponyta","types":[10],"forms":{"1011":{"types":null},"2336":{"types":[14]}}},"770":{"name":"Palossand","types":[5,8],"forms":{"0":{"types":null}}},"771":{"name":"Pyukumuku","types":[11],"forms":{"0":{"types":null}}},"772":{"name":"Type Null","types":[1],"forms":{"0":{"types":null}}},"773":{"name":"Silvally","types":[1],"forms":{"2689":{"types":null},"2690":{"types":[7]},"2691":{"types":[17]},"2692":{"types":[16]},"2693":{"types":[13]},"2694":{"types":[18]},"2695":{"types":[2]},"2696":{"types":[10]},"2697":{"types":[3]},"2698":{"types":[8]},"2699":{"types":[12]},"2700":{"types":[5]},"2701":{"types":[15]},"2702":{"types":[4]},"2703":{"types":[14]},"2704":{"types":[6]},"2705":{"types":[9]},"2706":{"types":[11]}}},"774":{"name":"Minior","types":[3,6],"forms":{"2707":{"types":null},"2708":{"types":null},"2709":{"types":null},"2710":{"types":null},"2711":{"types":null},"2712":{"types":null},"2713":{"types":null},"2714":{"types":null},"2739":{"types":null},"2740":{"types":null},"2741":{"types":null},"2742":{"types":null},"2743":{"types":null},"2744":{"types":null}}},"775":{"name":"Komala","types":[1],"forms":{"0":{"types":null}}},"776":{"name":"Turtonator","types":[10,16],"forms":{"0":{"types":null}}},"777":{"name":"Togedemaru","types":[9,13],"forms":{"0":{"types":null}}},"778":{"name":"Mimikyu","types":[8,18],"forms":{"2715":{"types":null},"2716":{"types":null}}},"779":{"name":"Bruxish","types":[11,14],"forms":{"0":{"types":null}}},"78":{"name":"Rapidash","types":[10],"forms":{"1014":{"types":null},"2337":{"types":[14,18]}}},"780":{"name":"Drampa","types":[1,16],"forms":{"0":{"types":null}}},"781":{"name":"Dhelmise","types":[8,12],"forms":{"0":{"types":null}}},"782":{"name":"Jangmo O","types":[16],"forms":{"0":{"types":null}}},"783":{"name":"Hakamo O","types":[2,16],"forms":{"0":{"types":null}}},"784":{"name":"Kommo O","types":[2,16],"forms":{"0":{"types":null}}},"785":{"name":"Tapu Koko","types":[13,18],"forms":{"0":{"types":null}}},"786":{"name":"Tapu Lele","types":[14,18],"forms":{"0":{"types":null}}},"787":{"name":"Tapu Bulu","types":[12,18],"forms":{"0":{"types":null}}},"788":{"name":"Tapu Fini","types":[11,18],"forms":{"0":{"types":null}}},"789":{"name":"Cosmog","types":[14],"forms":{"0":{"types":null}}},"79":{"name":"Slowpoke","types":[11,14],"forms":{"1017":{"types":null},"2582":{"types":[14]},"2673":{"types":null}}},"790":{"name":"Cosmoem","types":[14],"forms":{"0":{"types":null}}},"791":{"name":"Solgaleo","types":[9,14],"forms":{"0":{"types":null}}},"792":{"name":"Lunala","types":[8,14],"forms":{"0":{"types":null}}},"793":{"name":"Nihilego","types":[4,6],"forms":{"0":{"types":null}}},"794":{"name":"Buzzwole","types":[2,7],"forms":{"0":{"types":null}}},"795":{"name":"Pheromosa","types":[2,7],"forms":{"0":{"types":null}}},"796":{"name":"Xurkitree","types":[13],"forms":{"0":{"types":null}}},"797":{"name":"Celesteela","types":[3,9],"forms":{"0":{"types":null}}},"798":{"name":"Kartana","types":[9,12],"forms":{"0":{"types":null}}},"799":{"name":"Guzzlord","types":[16,17],"forms":{"0":{"types":null}}},"8":{"name":"Wartortle","types":[11],"forms":{"184":{"types":null}}},"80":{"name":"Slowbro","types":[11,14],"forms":{"1020":{"types":null},"2583":{"types":[4,14]},"2674":{"types":null}}},"800":{"name":"Necrozma","types":[14],"forms":{"2717":{"types":null},"2718":{"types":[9,14]},"2719":{"types":[8,14]},"2720":{"types":[14,16]}}},"801":{"name":"Magearna","types":[9,18],"forms":{"2721":{"types":null},"2722":{"types":null}}},"802":{"name":"Marshadow","types":[2,8],"forms":{"0":{"types":null}}},"803":{"name":"Poipole","types":[4],"forms":{"0":{"types":null}}},"804":{"name":"Naganadel","types":[4,16],"forms":{"0":{"types":null}}},"805":{"name":"Stakataka","types":[6,9],"forms":{"0":{"types":null}}},"806":{"name":"Blacephalon","types":[8,10],"forms":{"0":{"types":null}}},"807":{"name":"Zeraora","types":[13],"forms":{"0":{"types":null}}},"808":{"name":"Meltan","types":[9],"forms":{"0":{"types":null},"2321":{"types":null}}},"809":{"name":"Melmetal","types":[9],"forms":{"0":{"types":null},"2324":{"types":null}}},"81":{"name":"Magnemite","types":[9,13],"forms":{"655":{"types":null}}},"810":{"name":"Grookey","types":[12],"forms":{"0":{"types":null}}},"811":{"name":"Thwackey","types":[12],"forms":{"0":{"types":null}}},"812":{"name":"Rillaboom","types":[12],"forms":{"0":{"types":null},"2326":{"types":null}}},"813":{"name":"Scorbunny","types":[10],"forms":{"0":{"types":null}}},"814":{"name":"Raboot","types":[10],"forms":{"0":{"types":null}}},"815":{"name":"Cinderace","types":[10],"forms":{"0":{"types":null},"3016":{"types":null}}},"816":{"name":"Sobble","types":[11],"forms":{"0":{"types":null}}},"817":{"name":"Drizzile","types":[11],"forms":{"0":{"types":null}}},"818":{"name":"Inteleon","types":[11],"forms":{"0":{"types":null}}},"819":{"name":"Skwovet","types":[1],"forms":{"0":{"types":null}}},"82":{"name":"Magneton","types":[9,13],"forms":{"658":{"types":null}}},"820":{"name":"Greedent","types":[1],"forms":{"0":{"types":null}}},"821":{"name":"Rookidee","types":[3],"forms":{"0":{"types":null}}},"822":{"name":"Corvisquire","types":[3],"forms":{"0":{"types":null}}},"823":{"name":"Corviknight","types":[3,9],"forms":{"0":{"types":null}}},"824":{"name":"Blipbug","types":[7],"forms":{"0":{"types":null}}},"825":{"name":"Dottler","types":[7,14],"forms":{"0":{"types":null}}},"826":{"name":"Orbeetle","types":[7,14],"forms":{"0":{"types":null}}},"827":{"name":"Nickit","types":[17],"forms":{"0":{"types":null}}},"828":{"name":"Thievul","types":[17],"forms":{"0":{"types":null}}},"829":{"name":"Gossifleur","types":[12],"forms":{"0":{"types":null}}},"83":{"name":"Farfetchd","types":[1,3],"forms":{"1023":{"types":null},"2338":{"types":[2]}}},"830":{"name":"Eldegoss","types":[12],"forms":{"0":{"types":null}}},"831":{"name":"Wooloo","types":[1],"forms":{"0":{"types":null}}},"832":{"name":"Dubwool","types":[1],"forms":{"0":{"types":null}}},"833":{"name":"Chewtle","types":[11],"forms":{"0":{"types":null}}},"834":{"name":"Drednaw","types":[6,11],"forms":{"0":{"types":null}}},"835":{"name":"Yamper","types":[13],"forms":{"0":{"types":null}}},"836":{"name":"Boltund","types":[13],"forms":{"0":{"types":null}}},"837":{"name":"Rolycoly","types":[6],"forms":{"0":{"types":null}}},"838":{"name":"Carkol","types":[6,10],"forms":{"0":{"types":null}}},"839":{"name":"Coalossal","types":[6,10],"forms":{"0":{"types":null}}},"84":{"name":"Doduo","types":[1,3],"forms":{"0":{"types":null},"1026":{"types":null}}},"840":{"name":"Applin","types":[12,16],"forms":{"0":{"types":null}}},"841":{"name":"Flapple","types":[12,16],"forms":{"0":{"types":null}}},"842":{"name":"Appletun","types":[12,16],"forms":{"0":{"types":null}}},"843":{"name":"Silicobra","types":[5],"forms":{"0":{"types":null}}},"844":{"name":"Sandaconda","types":[5],"forms":{"0":{"types":null}}},"845":{"name":"Cramorant","types":[3,11],"forms":{"0":{"types":null}}},"846":{"name":"Arrokuda","types":[11],"forms":{"0":{"types":null}}},"847":{"name":"Barraskewda","types":[11],"forms":{"0":{"types":null}}},"848":{"name":"Toxel","types":[4,13],"forms":{"0":{"types":null}}},"849":{"name":"Toxtricity","types":[4,13],"forms":{"2463":{"types":null},"2464":{"types":null}}},"85":{"name":"Dodrio","types":[1,3],"forms":{"0":{"types":null},"1029":{"types":null}}},"850":{"name":"Sizzlipede","types":[7,10],"forms":{"0":{"types":null}}},"851":{"name":"Centiskorch","types":[7,10],"forms":{"0":{"types":null}}},"852":{"name":"Clobbopus","types":[2],"forms":{"0":{"types":null}}},"853":{"name":"Grapploct","types":[2],"forms":{"0":{"types":null}}},"854":{"name":"Sinistea","types":[8],"forms":{"2477":{"types":null},"2478":{"types":null}}},"855":{"name":"Polteageist","types":[8],"forms":{"2480":{"types":null},"2481":{"types":null}}},"856":{"name":"Hatenna","types":[14],"forms":{"0":{"types":null}}},"857":{"name":"Hattrem","types":[14],"forms":{"0":{"types":null}}},"858":{"name":"Hatterene","types":[14,18],"forms":{"0":{"types":null}}},"859":{"name":"Impidimp","types":[17,18],"forms":{"0":{"types":null}}},"86":{"name":"Seel","types":[11],"forms":{"0":{"types":null},"1032":{"types":null}}},"860":{"name":"Morgrem","types":[17,18],"forms":{"0":{"types":null}}},"861":{"name":"Grimmsnarl","types":[17,18],"forms":{"0":{"types":null}}},"862":{"name":"Obstagoon","types":[1,17],"forms":{"2501":{"types":null}}},"863":{"name":"Perrserker","types":[9],"forms":{"2504":{"types":null}}},"864":{"name":"Cursola","types":[8],"forms":{"2507":{"types":null}}},"865":{"name":"Sirfetchd","types":[2],"forms":{"2510":{"types":null}}},"866":{"name":"Mr Rime","types":[14,15],"forms":{"2513":{"types":null}}},"867":{"name":"Runerigus","types":[5,8],"forms":{"2516":{"types":null}}},"868":{"name":"Milcery","types":[18],"forms":{"0":{"types":null}}},"869":{"name":"Alcremie","types":[18],"forms":{"0":{"types":null}}},"87":{"name":"Dewgong","types":[11,15],"forms":{"0":{"types":null},"1035":{"types":null}}},"870":{"name":"Falinks","types":[2],"forms":{"2325":{"types":null},"2870":{"types":null}}},"871":{"name":"Pincurchin","types":[13],"forms":{"0":{"types":null}}},"872":{"name":"Snom","types":[7,15],"forms":{"0":{"types":null}}},"873":{"name":"Frosmoth","types":[7,15],"forms":{"0":{"types":null}}},"874":{"name":"Stonjourner","types":[6],"forms":{"0":{"types":null}}},"875":{"name":"Eiscue","types":[15],"forms":{"2540":{"types":null},"2541":{"types":null}}},"876":{"name":"Indeedee","types":[1,14],"forms":{"2542":{"types":null},"2543":{"types":null}}},"877":{"name":"Morpeko","types":[13,17],"forms":{"2544":{"types":null},"2545":{"types":null}}},"878":{"name":"Cufant","types":[9],"forms":{"0":{"types":null}}},"879":{"name":"Copperajah","types":[9],"forms":{"0":{"types":null}}},"88":{"name":"Grimer","types":[4],"forms":{"73":{"types":null},"74":{"types":[4,17]}}},"880":{"name":"Dracozolt","types":[13,16],"forms":{"0":{"types":null}}},"881":{"name":"Arctozolt","types":[13,15],"forms":{"0":{"types":null}}},"882":{"name":"Dracovish","types":[11,16],"forms":{"0":{"types":null}}},"883":{"name":"Arctovish","types":[11,15],"forms":{"0":{"types":null}}},"884":{"name":"Duraludon","types":[9,16],"forms":{"0":{"types":null}}},"885":{"name":"Dreepy","types":[8,16],"forms":{"0":{"types":null}}},"886":{"name":"Drakloak","types":[8,16],"forms":{"0":{"types":null}}},"887":{"name":"Dragapult","types":[8,16],"forms":{"0":{"types":null}}},"888":{"name":"Zacian","types":[9,18],"forms":{"2576":{"types":null},"2577":{"types":[18]}}},"889":{"name":"Zamazenta","types":[2,9],"forms":{"2578":{"types":null},"2579":{"types":[2]}}},"89":{"name":"Muk","types":[4],"forms":{"75":{"types":null},"76":{"types":[4,17]}}},"890":{"name":"Eternatus","types":[4,16],"forms":{"2580":{"types":null},"2581":{"types":null}}},"891":{"name":"Kubfu","types":[2],"forms":{"0":{"types":null}}},"892":{"name":"Urshifu","types":[2],"forms":{"2723":{"types":[2,17]},"2724":{"types":[2,11]}}},"893":{"name":"Zarude","types":[12,17],"forms":{"0":{"types":null}}},"894":{"name":"Regieleki","types":[13],"forms":{"0":{"types":null}}},"895":{"name":"Regidrago","types":[16],"forms":{"0":{"types":null}}},"896":{"name":"Glastrier","types":[15],"forms":{"0":{"types":null}}},"897":{"name":"Spectrier","types":[8],"forms":{"0":{"types":null}}},"898":{"name":"Calyrex","types":[12,14],"forms":{"2725":{"types":null},"2726":{"types":[14,15]},"2727":{"types":[8,14]}}},"899":{"name":"Wyrdeer","types":[1,14],"forms":{"0":{"types":null}}},"9":{"name":"Blastoise","types":[11],"forms":{"187":{"types":null},"952":{"types":null}}},"90":{"name":"Shellder","types":[11],"forms":{"876":{"types":null}}},"900":{"name":"Kleavor","types":[6,7],"forms":{"0":{"types":null}}},"901":{"name":"Ursaluna","types":[1,5],"forms":{"0":{"types":null},"2817":{"types":null}}},"902":{"name":"Basculegion","types":[],"forms":{"0":{"types":null},"2807":{"types":null},"2808":{"types":null}}},"903":{"name":"Sneasler","types":[2,4],"forms":{"0":{"types":null}}},"904":{"name":"Overqwil","types":[4,17],"forms":{"0":{"types":null}}},"905":{"name":"Enamorus","types":[3,18],"forms":{"2802":{"types":null},"2803":{"types":null}}},"906":{"name":"Sprigatito","types":[12],"forms":{"0":{"types":null}}},"907":{"name":"Floragato","types":[12],"forms":{"0":{"types":null}}},"908":{"name":"Meowscarada","types":[12,17],"forms":{"0":{"types":null}}},"909":{"name":"Fuecoco","types":[10],"forms":{"0":{"types":null}}},"91":{"name":"Cloyster","types":[11,15],"forms":{"879":{"types":null}}},"910":{"name":"Crocalor","types":[10],"forms":{"0":{"types":null}}},"911":{"name":"Skeledirge","types":[8,10],"forms":{"0":{"types":null}}},"912":{"name":"Quaxly","types":[11],"forms":{"0":{"types":null}}},"913":{"name":"Quaxwell","types":[11],"forms":{"0":{"types":null}}},"914":{"name":"Quaquaval","types":[2,11],"forms":{"0":{"types":null}}},"915":{"name":"Lechonk","types":[1],"forms":{"0":{"types":null}}},"916":{"name":"Oinkologne","types":[1],"forms":{"2981":{"types":null},"2982":{"types":null}}},"917":{"name":"Tarountula","types":[7],"forms":{"0":{"types":null}}},"918":{"name":"Spidops","types":[7],"forms":{"0":{"types":null}}},"919":{"name":"Nymble","types":[7],"forms":{"0":{"types":null}}},"92":{"name":"Gastly","types":[4,8],"forms":{"0":{"types":null},"1038":{"types":null}}},"920":{"name":"Lokix","types":[7,17],"forms":{"0":{"types":null}}},"921":{"name":"Pawmi","types":[13],"forms":{"0":{"types":null}}},"922":{"name":"Pawmo","types":[2,13],"forms":{"0":{"types":null}}},"923":{"name":"Pawmot","types":[2,13],"forms":{"0":{"types":null}}},"924":{"name":"Tandemaus","types":[1],"forms":{"0":{"types":null}}},"925":{"name":"Maushold","types":[1],"forms":{"2983":{"types":null},"2984":{"types":null}}},"926":{"name":"Fidough","types":[18],"forms":{"0":{"types":null}}},"927":{"name":"Dachsbun","types":[18],"forms":{"0":{"types":null}}},"928":{"name":"Smoliv","types":[1,12],"forms":{"0":{"types":null}}},"929":{"name":"Dolliv","types":[1,12],"forms":{"0":{"types":null}}},"93":{"name":"Haunter","types":[4,8],"forms":{"0":{"types":null},"1041":{"types":null}}},"930":{"name":"Arboliva","types":[1,12],"forms":{"0":{"types":null}}},"931":{"name":"Squawkabilly","types":[1,3],"forms":{"2985":{"types":null},"2986":{"types":null},"2987":{"types":null},"2988":{"types":null}}},"932":{"name":"Nacli","types":[6],"forms":{"0":{"types":null}}},"933":{"name":"Naclstack","types":[6],"forms":{"0":{"types":null}}},"934":{"name":"Garganacl","types":[6],"forms":{"0":{"types":null}}},"935":{"name":"Charcadet","types":[10],"forms":{"0":{"types":null}}},"936":{"name":"Armarouge","types":[10,14],"forms":{"0":{"types":null}}},"937":{"name":"Ceruledge","types":[8,10],"forms":{"0":{"types":null}}},"938":{"name":"Tadbulb","types":[13],"forms":{"0":{"types":null}}},"939":{"name":"Bellibolt","types":[13],"forms":{"0":{"types":null}}},"94":{"name":"Gengar","types":[4,8],"forms":{"1044":{"types":null},"2586":{"types":null}}},"940":{"name":"Wattrel","types":[3,13],"forms":{"0":{"types":null}}},"941":{"name":"Kilowattrel","types":[3,13],"forms":{"0":{"types":null}}},"942":{"name":"Maschiff","types":[17],"forms":{"0":{"types":null}}},"943":{"name":"Mabosstiff","types":[17],"forms":{"0":{"types":null}}},"944":{"name":"Shroodle","types":[1,4],"forms":{"0":{"types":null}}},"945":{"name":"Grafaiai","types":[1,4],"forms":{"0":{"types":null}}},"946":{"name":"Bramblin","types":[8,12],"forms":{"0":{"types":null}}},"947":{"name":"Brambleghast","types":[8,12],"forms":{"0":{"types":null}}},"948":{"name":"Toedscool","types":[5,12],"forms":{"0":{"types":null}}},"949":{"name":"Toedscruel","types":[5,12],"forms":{"0":{"types":null}}},"95":{"name":"Onix","types":[5,6],"forms":{"2334":{"types":null},"902":{"types":null}}},"950":{"name":"Klawf","types":[6],"forms":{"0":{"types":null}}},"951":{"name":"Capsakid","types":[12],"forms":{"0":{"types":null}}},"952":{"name":"Scovillain","types":[10,12],"forms":{"0":{"types":null}}},"953":{"name":"Rellor","types":[7],"forms":{"0":{"types":null}}},"954":{"name":"Rabsca","types":[7,14],"forms":{"0":{"types":null}}},"955":{"name":"Flittle","types":[14],"forms":{"0":{"types":null}}},"956":{"name":"Espathra","types":[14],"forms":{"0":{"types":null}}},"957":{"name":"Tinkatink","types":[9,18],"forms":{"0":{"types":null}}},"958":{"name":"Tinkatuff","types":[9,18],"forms":{"0":{"types":null}}},"959":{"name":"Tinkaton","types":[9,18],"forms":{"0":{"types":null}}},"96":{"name":"Drowzee","types":[14],"forms":{"214":{"types":null}}},"960":{"name":"Wiglett","types":[11],"forms":{"0":{"types":null}}},"961":{"name":"Wugtrio","types":[11],"forms":{"0":{"types":null}}},"962":{"name":"Bombirdier","types":[3,17],"forms":{"0":{"types":null}}},"963":{"name":"Finizen","types":[11],"forms":{"0":{"types":null}}},"964":{"name":"Palafin","types":[11],"forms":{"2989":{"types":null},"2990":{"types":null}}},"965":{"name":"Varoom","types":[4,9],"forms":{"0":{"types":null}}},"966":{"name":"Revavroom","types":[4,9],"forms":{"0":{"types":null}}},"967":{"name":"Cyclizar","types":[1,16],"forms":{"0":{"types":null}}},"968":{"name":"Orthworm","types":[9],"forms":{"0":{"types":null}}},"969":{"name":"Glimmet","types":[4,6],"forms":{"0":{"types":null}}},"97":{"name":"Hypno","types":[14],"forms":{"217":{"types":null}}},"970":{"name":"Glimmora","types":[4,6],"forms":{"0":{"types":null}}},"971":{"name":"Greavard","types":[8],"forms":{"0":{"types":null}}},"972":{"name":"Houndstone","types":[8],"forms":{"0":{"types":null}}},"973":{"name":"Flamigo","types":[2,3],"forms":{"0":{"types":null}}},"974":{"name":"Cetoddle","types":[15],"forms":{"0":{"types":null}}},"975":{"name":"Cetitan","types":[15],"forms":{"0":{"types":null}}},"976":{"name":"Veluza","types":[11,14],"forms":{"0":{"types":null}}},"977":{"name":"Dondozo","types":[11],"forms":{"0":{"types":null}}},"978":{"name":"Tatsugiri","types":[11,16],"forms":{"2991":{"types":null},"2992":{"types":null},"2993":{"types":null}}},"979":{"name":"Annihilape","types":[2,8],"forms":{"0":{"types":null}}},"98":{"name":"Krabby","types":[11],"forms":{"870":{"types":null}}},"980":{"name":"Clodsire","types":[4,5],"forms":{"0":{"types":null}}},"981":{"name":"Farigiraf","types":[1,14],"forms":{"0":{"types":null}}},"982":{"name":"Dudunsparce","types":[1],"forms":{"2994":{"types":null},"2995":{"types":null}}},"983":{"name":"Kingambit","types":[9,17],"forms":{"0":{"types":null}}},"984":{"name":"Greattusk","types":[2,5],"forms":{"0":{"types":null}}},"985":{"name":"Screamtail","types":[14,18],"forms":{"0":{"types":null}}},"986":{"name":"Brutebonnet","types":[12,17],"forms":{"0":{"types":null}}},"987":{"name":"Fluttermane","types":[8,18],"forms":{"0":{"types":null}}},"988":{"name":"Slitherwing","types":[2,7],"forms":{"0":{"types":null}}},"989":{"name":"Sandyshocks","types":[5,13],"forms":{"0":{"types":null}}},"99":{"name":"Kingler","types":[11],"forms":{"873":{"types":null}}},"990":{"name":"Irontreads","types":[5,9],"forms":{"0":{"types":null}}},"991":{"name":"Ironbundle","types":[11,15],"forms":{"0":{"types":null}}},"992":{"name":"Ironhands","types":[2,13],"forms":{"0":{"types":null}}},"993":{"name":"Ironjugulis","types":[3,17],"forms":{"0":{"types":null}}},"994":{"name":"Ironmoth","types":[4,10],"forms":{"0":{"types":null}}},"995":{"name":"Ironthorns","types":[6,13],"forms":{"0":{"types":null}}},"996":{"name":"Frigibax","types":[15,16],"forms":{"0":{"types":null}}},"997":{"name":"Arctibax","types":[15,16],"forms":{"0":{"types":null}}},"998":{"name":"Baxcalibur","types":[15,16],"forms":{"0":{"types":null}}},"999":{"name":"Gimmighoul","types":[8],"forms":{"2998":{"types":null},"3018":{"types":null}}}},"costumes":null} \ No newline at end of file