diff --git a/.eslintrc.json b/.eslintrc.json index 0d2f66b..9002dc4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -47,6 +47,7 @@ "pokemonIconPath": true, "itemIconPath": true, "eggIconPath": true, - "Store": true + "Store": true, + "GeofenceDefault": true } } diff --git a/Gruntfile.js b/Gruntfile.js index e6c24a4..c40ebe3 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -58,6 +58,7 @@ module.exports = function (grunt) { build: { files: { 'static/dist/data/pokemon.min.json': 'static/data/pokemon.json', + 'static/dist/data/pokedex.min.json': 'static/data/pokedex.json', 'static/dist/data/items.min.json': 'static/data/items.json', 'static/dist/data/grunttype.min.json': 'static/data/grunttype.json', 'static/dist/locales/de.min.json': 'static/locales/de.json', diff --git a/config/default.php b/config/default.php index 989ff7f..dbe8943 100644 --- a/config/default.php +++ b/config/default.php @@ -69,7 +69,7 @@ $raidPage = true; $rewardPage = true; $invasionPage = true; -$shinyPage = false; // Does not work for mad yet. +$shinyPage = true; /* Nest Page */ $nestPage = true; diff --git a/config/example.config.php b/config/example.config.php index fe3c60a..b096bcf 100644 --- a/config/example.config.php +++ b/config/example.config.php @@ -56,7 +56,7 @@ $raidPage = true; $rewardPage = true; $invasionPage = true; -$shinyPage = false; // Does not work for mad yet. +$shinyPage = true; /* Nest Page */ $nestPage = true; diff --git a/custom/css/custom.css.example b/custom/css/custom.css.example index 8244c4a..b36d76f 100644 --- a/custom/css/custom.css.example +++ b/custom/css/custom.css.example @@ -8,7 +8,7 @@ body { tbody { background-color: white; } -.card-header { +.card-header-overview { background-image: url(../../static/images/stop.png); background-size: 60px auto; background-repeat: no-repeat; @@ -19,40 +19,40 @@ tbody { color: #000000!important; } -a.neutral:hover { +div.neutral:hover { background-color:#dddddd; } -a.neutral:hover * { +div.neutral:hover * { color:#FFF; } -a.valor i,.valor h4.list-group-item-heading { +div.valor i,.valor h4.list-group-item-heading { color: #f71208; } -a.valor:hover { +div.valor:hover { background-color:#dd4b39; } -a.valor:hover * { +div.valor:hover * { color:#FFF; } -a.mystic i,.mystic h4.list-group-item-heading { +div.mystic i,.mystic h4.list-group-item-heading { color:#0076f3; } -a.mystic:hover { +div.mystic:hover { background-color:#3b5998; } -a.mystic:hover * { +div.mystic:hover * { color:#FFF; } -a.instinct i,.instinct h4.list-group-item-heading { +div.instinct i,.instinct h4.list-group-item-heading { color:#ffd200; } -a.instinct:hover { +div.instinct:hover { background-color:#ffd20073; } -a.instinct:hover * { +div.instinct:hover * { color:black; } diff --git a/include/nav.php b/include/nav.php index 62107f4..8512622 100644 --- a/include/nav.php +++ b/include/nav.php @@ -1,142 +1,278 @@ - + + + + + +
diff --git a/include/overview.php b/include/overview.php index 7620728..1884946 100644 --- a/include/overview.php +++ b/include/overview.php @@ -1,43 +1,43 @@ -
-
-
-
-
-
-
- -

-

-

+
+
+
+
+
+ -
-
- -

-

-

-
+
+
+
+

+

+

+
-
-
- -

-

-

+
-
-
- -

-

-

-
+
+
+
+

+

+

+
@@ -46,45 +46,45 @@
-
-
-
-
-
-
- -
-
- -
-
- -
-
-
- -

-

-

-
+
+
+
+
+
+
+
+
+

+

+

+
+
+
+
+
+
+

+

+

+
+
+
+
+
+
+

+

+

+
+
+
+
+
+
+

+

+

+
@@ -93,63 +93,63 @@
-
-
-
-
-
-
-
- -

-

-

+
+
+
+
+
+ -
-
- -

-

-

+
-
-
- -

-

-

-
+
+
+
+

+

+

+
-
-
- -

-

-

-
+
+
+
+

+

+

+
-
-
- -

-

-

-
+
+
+
+

+

+

+
-
-
- -

-

-

-
+
+
+
+

+

+

+
@@ -158,36 +158,36 @@
-
-
-
-
-
-
- -
-
- -
-
-
- -

-

-

-
+
+
+
+
+
+
+
+
+

+

+

+
+
+
+
+
+
+

+

+

+
+
+
+
+
+
+

+

+

+
diff --git a/include/pokedex.php b/include/pokedex.php new file mode 100644 index 0000000..bd7aedb --- /dev/null +++ b/include/pokedex.php @@ -0,0 +1,209 @@ + + + +
+ +
+
+

+ + +

+
+
+ +
+
+ +
+
+ + '; + + $html = ''; + + foreach ($family as $fam) { + $count = count($fam[$i]['evolutions']); + $loop = 1; + $loop2 = 1; + foreach ($fam[$i]['evolutions'] as $evolution) { + if ($evolution <= 9) { + $evolutionId = '00' . $evolution; + } elseif ($evolution <= 99) { + $evolutionId = '0' . $evolution; + } else { + $evolutionId = $evolution; + } + + $style = ''; + if ($loop > 1 && $loop2 > 1) { + $html .= '
'; + $style = 'style="position:relative;left:-65px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);"'; + } elseif ($loop > 1) { + $html .= '
'; + $style = 'style="position:relative;left:-30px;top:10px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);"'; + } + if ($evolution < $numberOfPokemon) { + if ($loop > 1) { + $html .= '
'; + } else { + $html .= ' '; + } + } + + foreach ($fam[$evolution]['evolutions'] as $evolution) { + if ($evolution <= 9) { + $evolutionId = '00' . $evolution; + } elseif ($evolution <= 99) { + $evolutionId = '0' . $evolution; + } else { + $evolutionId = $evolution; + } + + if ($evolution < $numberOfPokemon) { + if ($loop > 1 && $loop2 > 1) { + $html .= '' . ' '; + } elseif ($loop2 > 1) { + $html .= '

' . ' '; + $html .= '
'; + } else { + $html .= ' ' . ' '; + } + } + $loop2++; + } + $loop++; + } + } + + $html .= ' +
+
+
    '; + if (isset($fam[$i]['thirdmove']['candyToUnlock']) && isset($fam[$i]['thirdmove']['stardustToUnlock'])) { + $html .= ' +
  • + ' . i8ln('Third Move Cost') . ': + ' . $fam[$i]['thirdmove']['candyToUnlock'] . ' ' . i8ln('Candy') . ' / ' . $fam[$i]['thirdmove']['stardustToUnlock'] . ' ' . i8ln('Stardust') . ' +
  • '; + } + if (isset($fam[$i]['buddy_distance']) && !empty($fam[$i]['buddy_distance'])) { + $html .= ' +
  • + ' . i8ln('Buddy Distance') . ': + ' . $fam[$i]['buddy_distance'] . i8ln('km') . ' +
  • '; + } + if (isset($fam[$i]['attack']) && isset($fam[$i]['defense']) && isset($fam[$i]['stamina'])) { + $html .= ' +
  • + ' . i8ln('Attack / Defense / Stamina') . ': + ' . $fam[$i]['attack'] . ' / ' . $fam[$i]['defense'] . ' / ' . $fam[$i]['stamina'] . ' +
  • '; + } + $html .= ' +
+
+
+
+
'; + if (isset($fam[$i]['quickmove'])) { + $html .= ' +
+
    +
  • + ' . i8ln('Quick Moves') . ' +
  • '; + foreach ($fam[$i]['quickmove'] as $quickmove) { + $html .= '
  • + ' . i8ln($quickmove) . ' +
  • '; + } + $html .= ' +
+
'; + } + if (isset($fam[$i]['chargedmove'])) { + $html .= ' +
+
    +
  • + ' . i8ln('Charge Moves') . ' +
  • '; + foreach ($fam[$i]['chargedmove'] as $chargemove) { + $html .= '
  • + ' . i8ln($chargemove) . ' +
  • '; + } + $html .= ' +
+
'; + } + $html .= ' +
'; + + + $typehtml = ''; + foreach ($pokemon['types'] as $type) { + $typehtml .= ''; + } + + echo ''; + } + $i++; + } + ?> +
+
+
diff --git a/include/raid_dashboard.php b/include/raid_dashboard.php new file mode 100644 index 0000000..ad2b000 --- /dev/null +++ b/include/raid_dashboard.php @@ -0,0 +1,54 @@ +
+ + +
+
+ +
+
+ +
+
+ +
+
+ +
+ + + + + + +
+ + + + + + + + + + + +
+
diff --git a/lib/MAD.php b/lib/MAD.php index e1a5915..c096a6f 100644 --- a/lib/MAD.php +++ b/lib/MAD.php @@ -201,6 +201,72 @@ public function query_raids($selectedGeofence) return $data; } + public function query_raid_dashboard($selectedGeofence) + { + global $db, $geofences; + + $geofenceSQL = ''; + if ($selectedGeofence) { + $geofence = array_search($selectedGeofence, $geofences); + if ($geofence !== 'All') { + $geofenceSQL = " AND (ST_WITHIN(point(gym.latitude, gym.longitude), ST_GEOMFROMTEXT('POLYGON(( " . $geofence . " ))')))"; + } + } + + $raids = $db->query(" + SELECT + gym.latitude AS lat, + gym.longitude AS lon, + gym.team_id, + gym.is_ex_raid_eligible AS ex_raid_eligible, + gymdetails.name, + gymdetails.url, + Unix_timestamp(Convert_tz(start, '+00:00', @@global.time_zone)) AS raid_battle_timestamp, + Unix_timestamp(Convert_tz(end, '+00:00', @@global.time_zone)) AS raid_end_timestamp, + raid.pokemon_id AS raid_pokemon_id, + raid.form AS raid_pokemon_form, + raid.costume AS raid_pokemon_costume, + raid.level AS raid_level, + raid.move_1 AS raid_pokemon_move_1, + raid.move_2 AS raid_pokemon_move_2 + FROM gym + LEFT JOIN gymdetails + ON gym.gym_id = gymdetails.gym_id + LEFT JOIN raid + ON gym.gym_id = raid.gym_id + WHERE raid.end >= UTC_TIMESTAMP() AND gymdetails.name is not null $geofenceSQL" + ); + + $data = array(); + foreach ($raids as $raid) { + $raidboss["raid_pokemon_level"] = $raid["raid_level"]; + $raidboss["raid_pokemon_id"] = $raid["raid_pokemon_id"]; + $raidboss["raid_pokemon_form"] = $raid["raid_pokemon_form"]; + $raidboss["raid_pokemon_costume"] = $raid["raid_pokemon_costume"]; + $raidboss["gym_name"] = $raid["name"]; + $raidboss["lat"] = $raid["lat"]; + $raidboss["lon"] = $raid["lon"]; + $raidboss["url"] = !empty($raid["url"]) ? preg_replace("/^http:/i", "https:", $raid["url"]) : 'static/images/missing.png'; + $raidboss["raid_end"] = $raid["raid_end_timestamp"]; + $raidboss["raid_start"] = $raid["raid_battle_timestamp"]; + $raidboss["ex_gym"] = $raid["ex_raid_eligible"]; + $raidboss["team"] = $raid["team_id"]; + + if ($raid["raid_pokemon_id"] > 0) { + $raidboss["raid_pokemon_name"] = i8ln($this->pokedex[$raid['raid_pokemon_id']]["name"]); + $raidboss["raid_pokemon_move_1"] = i8ln($this->move[$raid["raid_pokemon_move_1"]]["name"]); + $raidboss["raid_pokemon_move_2"] = i8ln($this->move[$raid["raid_pokemon_move_2"]]["name"]); + $raidboss["raid_pokemon_move_1_type"] = $this->move[$raid["raid_pokemon_move_1"]]["type"]; + $raidboss["raid_pokemon_move_2_type"] = $this->move[$raid["raid_pokemon_move_2"]]["type"]; + } else { + $raidboss["raid_pokemon_name"] = i8ln('lvl') . '-' . $raid['raid_level'] . ' ' . i8ln('egg'); + } + + $data[] = $raidboss; + } + return $data; + } + public function query_rewards($selectedGeofence) { global $db, $geofences; @@ -266,20 +332,24 @@ public function query_shiny($selectedGeofence) if ($selectedGeofence) { $geofence = array_search($selectedGeofence, $geofences); if ($geofence !== 'All') { - $geofenceSQL = " AND (ST_WITHIN(point(latitude, longitude), ST_GEOMFROMTEXT('POLYGON(( " . $geofence . " ))')))"; + $geofenceSQL = " AND (ST_WITHIN(point(p.latitude, p.longitude), ST_GEOMFROMTEXT('POLYGON(( " . $geofence . " ))')))"; } } $shinys = $db->query(" SELECT - SUM(shiny) AS shiny_count, - pokemon_id, - form, - costume, + SUM(stats.is_shiny) AS shiny_count, + p.pokemon_id, + p.form, + p.costume, COUNT(*) AS sample_size - FROM pokemon - WHERE expire_timestamp > UNIX_TIMESTAMP() - 86400 AND iv IS NOT NULL $geofenceSQL - GROUP BY pokemon_id, form, costume + FROM pokemon p + JOIN trs_stats_detect_mon_raw stats ON stats.encounter_id = p.encounter_id + WHERE + p.individual_attack IS NOT NULL AND + p.disappear_time >= DATE_SUB(NOW(), INTERVAL 1 DAY) + $geofenceSQL + GROUP BY p.pokemon_id, p.form, p.costume HAVING shiny_count >= 1" ); diff --git a/lib/RDM.php b/lib/RDM.php index e31306d..cff4906 100644 --- a/lib/RDM.php +++ b/lib/RDM.php @@ -194,6 +194,68 @@ public function query_raids($selectedGeofence) return $data; } + public function query_raid_dashboard($selectedGeofence) + { + global $db, $geofences; + + $geofenceSQL = ''; + if ($selectedGeofence) { + $geofence = array_search($selectedGeofence, $geofences); + if ($geofence !== 'All') { + $geofenceSQL = " AND (ST_WITHIN(point(lat, lon), ST_GEOMFROMTEXT('POLYGON(( " . $geofence . " ))')))"; + } + } + + $raids = $db->query(" + SELECT + name, + url, + lat, + lon, + raid_pokemon_id, + raid_pokemon_form, + raid_pokemon_costume, + raid_level, + raid_battle_timestamp, + raid_end_timestamp, + team_id, + ex_raid_eligible, + raid_pokemon_move_1, + raid_pokemon_move_2 + FROM gym + WHERE raid_end_timestamp > UNIX_TIMESTAMP() AND name is not null $geofenceSQL" + ); + + $data = array(); + foreach ($raids as $raid) { + $raidboss["raid_pokemon_level"] = $raid["raid_level"]; + $raidboss["raid_pokemon_id"] = $raid["raid_pokemon_id"]; + $raidboss["raid_pokemon_form"] = $raid["raid_pokemon_form"]; + $raidboss["raid_pokemon_costume"] = $raid["raid_pokemon_costume"]; + $raidboss["gym_name"] = $raid["name"]; + $raidboss["lat"] = $raid["lat"]; + $raidboss["lon"] = $raid["lon"]; + $raidboss["url"] = !empty($raid["url"]) ? preg_replace("/^http:/i", "https:", $raid["url"]) : 'static/images/missing.png'; + $raidboss["raid_end"] = $raid["raid_end_timestamp"]; + $raidboss["raid_start"] = $raid["raid_battle_timestamp"]; + $raidboss["ex_gym"] = $raid["ex_raid_eligible"]; + $raidboss["team"] = $raid["team_id"]; + + if ($raid["raid_pokemon_id"] > 0) { + $raidboss["raid_pokemon_name"] = i8ln($this->pokedex[$raid['raid_pokemon_id']]["name"]); + $raidboss["raid_pokemon_move_1"] = i8ln($this->move[$raid["raid_pokemon_move_1"]]["name"]); + $raidboss["raid_pokemon_move_2"] = i8ln($this->move[$raid["raid_pokemon_move_2"]]["name"]); + $raidboss["raid_pokemon_move_1_type"] = $this->move[$raid["raid_pokemon_move_1"]]["type"]; + $raidboss["raid_pokemon_move_2_type"] = $this->move[$raid["raid_pokemon_move_2"]]["type"]; + } else { + $raidboss["raid_pokemon_name"] = i8ln('lvl') . '-' . $raid['raid_level'] . ' ' . i8ln('egg'); + } + + $data[] = $raidboss; + } + return $data; + } + public function query_rewards($selectedGeofence) { global $db, $geofences; diff --git a/lib/Scanner.php b/lib/Scanner.php index dae38b6..50275b4 100644 --- a/lib/Scanner.php +++ b/lib/Scanner.php @@ -14,5 +14,9 @@ public function __construct() $invasion_json_contents = file_get_contents("static/dist/data/grunttype.min.json"); $this->gruntdex = json_decode($invasion_json_contents, true); + + $moves_json_contents = file_get_contents("static/data/moves.json"); + $this->move = json_decode($moves_json_contents, true); + } } diff --git a/pre-index.php b/pre-index.php index d05a5db..0b1ab41 100644 --- a/pre-index.php +++ b/pre-index.php @@ -55,7 +55,7 @@ '; echo ''; } ?> @@ -68,46 +68,28 @@ } ?> - user)) { - $user = explode("#", $_SESSION['user']->user); - echo ''; - } - ?> -
- -
-
- - -
-
- - +
+ +
+ +
+ +
'; echo ''; echo ''; diff --git a/raw_data.php b/raw_data.php index bef27fc..95828cf 100644 --- a/raw_data.php +++ b/raw_data.php @@ -72,6 +72,11 @@ $debug['2_after_nests'] = microtime(true) - $timing['start']; } +if ($getPage && $getPage === 'raid_dashboard') { + $data['raid_dashboard'] = $scanner->query_raid_dashboard($geofence); + $debug['2_after_raid_dashboard'] = microtime(true) - $timing['start']; +} + refreshCsrfToken(); $debug['end'] = microtime(true) - $timing['start']; diff --git a/static/data/moves.json b/static/data/moves.json new file mode 100644 index 0000000..bce1aa7 --- /dev/null +++ b/static/data/moves.json @@ -0,0 +1,2226 @@ +{ + "1": { + "name": "Thunder Shock", + "type": "Electric", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "2": { + "name": "Quick Attack", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "3": { + "name": "Scratch", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "4": { + "name": "Ember", + "type": "Fire", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "5": { + "name": "Vine Whip", + "type": "Grass", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "6": { + "name": "Tackle", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "7": { + "name": "Razor Leaf", + "type": "Grass", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "8": { + "name": "Take Down", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "9": { + "name": "Water Gun", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "10": { + "name": "Bite", + "type": "Dark", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "11": { + "name": "Pound", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "12": { + "name": "Double Slap", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "13": { + "name": "Wrap", + "type": "Normal", + "damage": 60, + "duration": 2900, + "energy": 33, + "dps": 20.69 + }, + "14": { + "name": "Hyper Beam", + "type": "Normal", + "damage": 150, + "duration": 3800, + "energy": 100, + "dps": 39.47 + }, + "15": { + "name": "Lick", + "type": "Ghost", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "16": { + "name": "Dark Pulse", + "type": "Dark", + "damage": 80, + "duration": 3000, + "energy": 50, + "dps": 26.67 + }, + "17": { + "name": "Smog", + "type": "Poison", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "18": { + "name": "Sludge", + "type": "Poison", + "damage": 50, + "duration": 2100, + "energy": 33, + "dps": 23.81 + }, + "19": { + "name": "Metal Claw", + "type": "Steel", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "20": { + "name": "Vice Grip", + "type": "Normal", + "damage": 35, + "duration": 1900, + "energy": 33, + "dps": 18.42 + }, + "21": { + "name": "Flame Wheel", + "type": "Fire", + "damage": 60, + "duration": 2700, + "energy": 50, + "dps": 22.22 + }, + "22": { + "name": "Megahorn", + "type": "Bug", + "damage": 90, + "duration": 2200, + "energy": 100, + "dps": 40.91 + }, + "23": { + "name": "Wing Attack", + "type": "Flying", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "24": { + "name": "Flamethrower", + "type": "Fire", + "damage": 70, + "duration": 2200, + "energy": 50, + "dps": 31.82 + }, + "25": { + "name": "Sucker Punch", + "type": "Dark", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "26": { + "name": "Dig", + "type": "Ground", + "damage": 100, + "duration": 4700, + "energy": 50, + "dps": 21.28 + }, + "27": { + "name": "Low Kick", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "28": { + "name": "Cross Chop", + "type": "Fighting", + "damage": 50, + "duration": 1500, + "energy": 50, + "dps": 33.33 + }, + "29": { + "name": "Psycho Cut", + "type": "Psychic", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "30": { + "name": "Psybeam", + "type": "Psychic", + "damage": 70, + "duration": 3200, + "energy": 50, + "dps": 21.88 + }, + "31": { + "name": "Earthquake", + "type": "Ground", + "damage": 120, + "duration": 3600, + "energy": 100, + "dps": 33.33 + }, + "32": { + "name": "Stone Edge", + "type": "Rock", + "damage": 100, + "duration": 2300, + "energy": 100, + "dps": 43.48 + }, + "33": { + "name": "Ice Punch", + "type": "Ice", + "damage": 50, + "duration": 1900, + "energy": 33, + "dps": 26.32 + }, + "34": { + "name": "Heart Stamp", + "type": "Psychic", + "damage": 40, + "duration": 1900, + "energy": 33, + "dps": 21.05 + }, + "35": { + "name": "Discharge", + "type": "Electric", + "damage": 65, + "duration": 2500, + "energy": 33, + "dps": 26 + }, + "36": { + "name": "Flash Cannon", + "type": "Steel", + "damage": 100, + "duration": 2700, + "energy": 100, + "dps": 37.04 + }, + "37": { + "name": "Peck", + "type": "Flying", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "38": { + "name": "Drill Peck", + "type": "Flying", + "damage": 60, + "duration": 2300, + "energy": 33, + "dps": 26.09 + }, + "39": { + "name": "Ice Beam", + "type": "Ice", + "damage": 90, + "duration": 3300, + "energy": 50, + "dps": 27.27 + }, + "40": { + "name": "Blizzard", + "type": "Ice", + "damage": 130, + "duration": 3100, + "energy": 100, + "dps": 41.94 + }, + "41": { + "name": "Air Slash", + "type": "Flying", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "42": { + "name": "Heat Wave", + "type": "Fire", + "damage": 95, + "duration": 3000, + "energy": 100, + "dps": 31.67 + }, + "43": { + "name": "Twineedle", + "type": "Bug", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "44": { + "name": "Poison Jab", + "type": "Poison", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "45": { + "name": "Aerial Ace", + "type": "Flying", + "damage": 55, + "duration": 2400, + "energy": 33, + "dps": 22.92 + }, + "46": { + "name": "Drill Run", + "type": "Ground", + "damage": 80, + "duration": 2800, + "energy": 50, + "dps": 28.57 + }, + "47": { + "name": "Petal Blizzard", + "type": "Grass", + "damage": 110, + "duration": 2600, + "energy": 100, + "dps": 42.31 + }, + "48": { + "name": "Mega Drain", + "type": "Grass", + "damage": 25, + "duration": 2600, + "energy": 50, + "dps": 9.62 + }, + "49": { + "name": "Bug Buzz", + "type": "Bug", + "damage": 90, + "duration": 3700, + "energy": 50, + "dps": 24.32 + }, + "50": { + "name": "Poison Fang", + "type": "Poison", + "damage": 35, + "duration": 1700, + "energy": 33, + "dps": 20.59 + }, + "51": { + "name": "Night Slash", + "type": "Dark", + "damage": 50, + "duration": 2200, + "energy": 33, + "dps": 22.73 + }, + "52": { + "name": "Slash", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "53": { + "name": "Bubble Beam", + "type": "Water", + "damage": 45, + "duration": 1900, + "energy": 33, + "dps": 23.68 + }, + "54": { + "name": "Submission", + "type": "Fighting", + "damage": 60, + "duration": 2200, + "energy": 50, + "dps": 27.27 + }, + "55": { + "name": "Karate Chop", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "56": { + "name": "Low Sweep", + "type": "Fighting", + "damage": 40, + "duration": 1900, + "energy": 33, + "dps": 21.05 + }, + "57": { + "name": "Aqua Jet", + "type": "Water", + "damage": 45, + "duration": 2600, + "energy": 33, + "dps": 17.31 + }, + "58": { + "name": "Aqua Tail", + "type": "Water", + "damage": 50, + "duration": 1900, + "energy": 33, + "dps": 26.32 + }, + "59": { + "name": "Seed Bomb", + "type": "Grass", + "damage": 55, + "duration": 2100, + "energy": 33, + "dps": 26.19 + }, + "60": { + "name": "Psyshock", + "type": "Psychic", + "damage": 65, + "duration": 2700, + "energy": 33, + "dps": 24.07 + }, + "61": { + "name": "Rock Throw", + "type": "Rock", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "62": { + "name": "Ancient Power", + "type": "Rock", + "damage": 70, + "duration": 3500, + "energy": 33, + "dps": 20 + }, + "63": { + "name": "Rock Tomb", + "type": "Rock", + "damage": 70, + "duration": 3200, + "energy": 50, + "dps": 21.88 + }, + "64": { + "name": "Rock Slide", + "type": "Rock", + "damage": 80, + "duration": 2700, + "energy": 50, + "dps": 29.63 + }, + "65": { + "name": "Power Gem", + "type": "Rock", + "damage": 80, + "duration": 2900, + "energy": 50, + "dps": 27.59 + }, + "66": { + "name": "Shadow Sneak", + "type": "Ghost", + "damage": 50, + "duration": 2900, + "energy": 33, + "dps": 17.24 + }, + "67": { + "name": "Shadow Punch", + "type": "Ghost", + "damage": 40, + "duration": 1700, + "energy": 33, + "dps": 23.53 + }, + "68": { + "name": "Shadow Claw", + "type": "Ghost", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "69": { + "name": "Ominous Wind", + "type": "Ghost", + "damage": 50, + "duration": 2300, + "energy": 33, + "dps": 21.74 + }, + "70": { + "name": "Shadow Ball", + "type": "Ghost", + "damage": 100, + "duration": 3000, + "energy": 50, + "dps": 33.33 + }, + "71": { + "name": "Bullet Punch", + "type": "Steel", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "72": { + "name": "Magnet Bomb", + "type": "Steel", + "damage": 70, + "duration": 2800, + "energy": 33, + "dps": 25 + }, + "73": { + "name": "Steel Wing", + "type": "Steel", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "74": { + "name": "Iron Head", + "type": "Steel", + "damage": 60, + "duration": 1900, + "energy": 50, + "dps": 31.58 + }, + "75": { + "name": "Parabolic Charge", + "type": "Electric", + "damage": 25, + "duration": 2800, + "energy": 50, + "dps": 8.93 + }, + "76": { + "name": "Spark", + "type": "Electric", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "77": { + "name": "Thunder Punch", + "type": "Electric", + "damage": 45, + "duration": 1800, + "energy": 33, + "dps": 25 + }, + "78": { + "name": "Thunder", + "type": "Electric", + "damage": 100, + "duration": 2400, + "energy": 100, + "dps": 41.67 + }, + "79": { + "name": "Thunderbolt", + "type": "Electric", + "damage": 80, + "duration": 2500, + "energy": 50, + "dps": 32 + }, + "80": { + "name": "Twister", + "type": "Dragon", + "damage": 45, + "duration": 2800, + "energy": 33, + "dps": 16.07 + }, + "81": { + "name": "Dragon Breath", + "type": "Dragon", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "82": { + "name": "Dragon Pulse", + "type": "Dragon", + "damage": 90, + "duration": 3600, + "energy": 50, + "dps": 25 + }, + "83": { + "name": "Dragon Claw", + "type": "Dragon", + "damage": 50, + "duration": 1700, + "energy": 33, + "dps": 29.41 + }, + "84": { + "name": "Disarming Voice", + "type": "Fairy", + "damage": 70, + "duration": 3900, + "energy": 33, + "dps": 17.95 + }, + "85": { + "name": "Draining Kiss", + "type": "Fairy", + "damage": 60, + "duration": 2600, + "energy": 50, + "dps": 23.08 + }, + "86": { + "name": "Dazzling Gleam", + "type": "Fairy", + "damage": 100, + "duration": 3500, + "energy": 50, + "dps": 28.57 + }, + "87": { + "name": "Moonblast", + "type": "Fairy", + "damage": 130, + "duration": 3900, + "energy": 100, + "dps": 33.33 + }, + "88": { + "name": "Play Rough", + "type": "Fairy", + "damage": 90, + "duration": 2900, + "energy": 50, + "dps": 31.03 + }, + "89": { + "name": "Cross Poison", + "type": "Poison", + "damage": 40, + "duration": 1500, + "energy": 33, + "dps": 26.67 + }, + "90": { + "name": "Sludge Bomb", + "type": "Poison", + "damage": 80, + "duration": 2300, + "energy": 50, + "dps": 34.78 + }, + "91": { + "name": "Sludge Wave", + "type": "Poison", + "damage": 110, + "duration": 3200, + "energy": 100, + "dps": 34.38 + }, + "92": { + "name": "Gunk Shot", + "type": "Poison", + "damage": 130, + "duration": 3100, + "energy": 100, + "dps": 41.94 + }, + "93": { + "name": "Mud Shot", + "type": "Ground", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "94": { + "name": "Bone Club", + "type": "Ground", + "damage": 40, + "duration": 1600, + "energy": 33, + "dps": 25 + }, + "95": { + "name": "Bulldoze", + "type": "Ground", + "damage": 80, + "duration": 3500, + "energy": 50, + "dps": 22.86 + }, + "96": { + "name": "Mud Bomb", + "type": "Ground", + "damage": 55, + "duration": 2300, + "energy": 33, + "dps": 23.91 + }, + "97": { + "name": "Fury Cutter", + "type": "Bug", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "98": { + "name": "Bug Bite", + "type": "Bug", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "99": { + "name": "Signal Beam", + "type": "Bug", + "damage": 75, + "duration": 2900, + "energy": 50, + "dps": 25.86 + }, + "100": { + "name": "X-Scissor", + "type": "Bug", + "damage": 45, + "duration": 1600, + "energy": 33, + "dps": 28.13 + }, + "101": { + "name": "Flame Charge", + "type": "Fire", + "damage": 70, + "duration": 3800, + "energy": 33, + "dps": 18.42 + }, + "102": { + "name": "Flame Burst", + "type": "Fire", + "damage": 70, + "duration": 2600, + "energy": 50, + "dps": 26.92 + }, + "103": { + "name": "Fire Blast", + "type": "Fire", + "damage": 140, + "duration": 4200, + "energy": 100, + "dps": 33.33 + }, + "104": { + "name": "Brine", + "type": "Water", + "damage": 60, + "duration": 2300, + "energy": 50, + "dps": 26.09 + }, + "105": { + "name": "Water Pulse", + "type": "Water", + "damage": 70, + "duration": 3200, + "energy": 50, + "dps": 21.88 + }, + "106": { + "name": "Scald", + "type": "Water", + "damage": 82, + "duration": 3700, + "energy": 50, + "dps": 21.62 + }, + "107": { + "name": "Hydro Pump", + "type": "Water", + "damage": 130, + "duration": 3300, + "energy": 100, + "dps": 39.39 + }, + "108": { + "name": "Psychic", + "type": "Psychic", + "damage": 100, + "duration": 2800, + "energy": 100, + "dps": 35.71 + }, + "109": { + "name": "Psystrike", + "type": "Psychic", + "damage": 100, + "duration": 4400, + "energy": 50, + "dps": 22.73 + }, + "110": { + "name": "Ice Shard", + "type": "Ice", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "111": { + "name": "Icy Wind", + "type": "Ice", + "damage": 60, + "duration": 3300, + "energy": 33, + "dps": 18.18 + }, + "112": { + "name": "Frost Breath", + "type": "Ice", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "113": { + "name": "Absorb", + "type": "Grass", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "114": { + "name": "Giga Drain", + "type": "Grass", + "damage": 50, + "duration": 3900, + "energy": 100, + "dps": 12.82 + }, + "115": { + "name": "Fire Punch", + "type": "Fire", + "damage": 55, + "duration": 2200, + "energy": 33, + "dps": 25 + }, + "116": { + "name": "Solar Beam", + "type": "Grass", + "damage": 180, + "duration": 4900, + "energy": 100, + "dps": 36.73 + }, + "117": { + "name": "Leaf Blade", + "type": "Grass", + "damage": 70, + "duration": 2400, + "energy": 33, + "dps": 29.17 + }, + "118": { + "name": "Power Whip", + "type": "Grass", + "damage": 90, + "duration": 2600, + "energy": 50, + "dps": 34.62 + }, + "119": { + "name": "Splash", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "120": { + "name": "Acid", + "type": "Poison", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "121": { + "name": "Air Cutter", + "type": "Flying", + "damage": 60, + "duration": 2700, + "energy": 50, + "dps": 22.22 + }, + "122": { + "name": "Hurricane", + "type": "Flying", + "damage": 110, + "duration": 2700, + "energy": 100, + "dps": 40.74 + }, + "123": { + "name": "Brick Break", + "type": "Fighting", + "damage": 40, + "duration": 1600, + "energy": 33, + "dps": 25 + }, + "124": { + "name": "Cut", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "125": { + "name": "Swift", + "type": "Normal", + "damage": 60, + "duration": 2800, + "energy": 50, + "dps": 21.43 + }, + "126": { + "name": "Horn Attack", + "type": "Normal", + "damage": 40, + "duration": 1850, + "energy": 33, + "dps": 21.62 + }, + "127": { + "name": "Stomp", + "type": "Normal", + "damage": 55, + "duration": 1700, + "energy": 50, + "dps": 32.35 + }, + "128": { + "name": "Headbutt", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "129": { + "name": "Hyper Fang", + "type": "Normal", + "damage": 80, + "duration": 2500, + "energy": 50, + "dps": 32 + }, + "130": { + "name": "Slam", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "131": { + "name": "Body Slam", + "type": "Normal", + "damage": 50, + "duration": 1900, + "energy": 33, + "dps": 26.32 + }, + "132": { + "name": "Rest", + "type": "Normal", + "damage": 50, + "duration": 1900, + "energy": 33, + "dps": 26.32 + }, + "133": { + "name": "Struggle", + "type": "Normal", + "damage": 35, + "duration": 2200, + "energy": 0, + "dps": 15.91 + }, + "134": { + "name": "Scald (Blastoise)", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "135": { + "name": "Hydro Pump (Blastoise)", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "136": { + "name": "Wrap Green", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "137": { + "name": "Wrap Pink", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "200": { + "name": "Fury Cutter", + "type": "Bug", + "damage": 3, + "duration": 400, + "energy": 6, + "dps": 7.5 + }, + "201": { + "name": "Bug Bite", + "type": "Bug", + "damage": 5, + "duration": 500, + "energy": 6, + "dps": 10 + }, + "202": { + "name": "Bite", + "type": "Dark", + "damage": 6, + "duration": 500, + "energy": 4, + "dps": 12 + }, + "203": { + "name": "Sucker Punch", + "type": "Dark", + "damage": 7, + "duration": 700, + "energy": 8, + "dps": 10 + }, + "204": { + "name": "Dragon Breath", + "type": "Dragon", + "damage": 6, + "duration": 500, + "energy": 4, + "dps": 12 + }, + "205": { + "name": "Thunder Shock", + "type": "Electric", + "damage": 5, + "duration": 600, + "energy": 8, + "dps": 8.33 + }, + "206": { + "name": "Spark", + "type": "Electric", + "damage": 6, + "duration": 700, + "energy": 9, + "dps": 8.57 + }, + "207": { + "name": "Low Kick", + "type": "Fighting", + "damage": 6, + "duration": 600, + "energy": 6, + "dps": 10 + }, + "208": { + "name": "Karate Chop", + "type": "Fighting", + "damage": 8, + "duration": 800, + "energy": 10, + "dps": 10 + }, + "209": { + "name": "Ember", + "type": "Fire", + "damage": 10, + "duration": 1000, + "energy": 10, + "dps": 10 + }, + "210": { + "name": "Wing Attack", + "type": "Flying", + "damage": 8, + "duration": 800, + "energy": 9, + "dps": 10 + }, + "211": { + "name": "Peck", + "type": "Flying", + "damage": 10, + "duration": 1000, + "energy": 10, + "dps": 10 + }, + "212": { + "name": "Lick", + "type": "Ghost", + "damage": 5, + "duration": 500, + "energy": 6, + "dps": 10 + }, + "213": { + "name": "Shadow Claw", + "type": "Ghost", + "damage": 9, + "duration": 700, + "energy": 6, + "dps": 12.86 + }, + "214": { + "name": "Vine Whip", + "type": "Grass", + "damage": 7, + "duration": 600, + "energy": 6, + "dps": 11.67 + }, + "215": { + "name": "Razor Leaf", + "type": "Grass", + "damage": 13, + "duration": 1000, + "energy": 7, + "dps": 13 + }, + "216": { + "name": "Mud Shot", + "type": "Ground", + "damage": 5, + "duration": 600, + "energy": 7, + "dps": 8.33 + }, + "217": { + "name": "Ice Shard", + "type": "Ice", + "damage": 12, + "duration": 1200, + "energy": 12, + "dps": 10 + }, + "218": { + "name": "Frost Breath", + "type": "Ice", + "damage": 10, + "duration": 900, + "energy": 8, + "dps": 11.11 + }, + "219": { + "name": "Quick Attack", + "type": "Normal", + "damage": 8, + "duration": 800, + "energy": 10, + "dps": 10 + }, + "220": { + "name": "Scratch", + "type": "Normal", + "damage": 6, + "duration": 500, + "energy": 4, + "dps": 12 + }, + "221": { + "name": "Tackle", + "type": "Normal", + "damage": 5, + "duration": 500, + "energy": 5, + "dps": 10 + }, + "222": { + "name": "Pound", + "type": "Normal", + "damage": 7, + "duration": 600, + "energy": 6, + "dps": 11.67 + }, + "223": { + "name": "Cut", + "type": "Normal", + "damage": 5, + "duration": 500, + "energy": 5, + "dps": 10 + }, + "224": { + "name": "Poison Jab", + "type": "Poison", + "damage": 10, + "duration": 800, + "energy": 7, + "dps": 12.5 + }, + "225": { + "name": "Acid", + "type": "Poison", + "damage": 9, + "duration": 800, + "energy": 8, + "dps": 11.25 + }, + "226": { + "name": "Psycho Cut", + "type": "Psychic", + "damage": 5, + "duration": 600, + "energy": 8, + "dps": 8.33 + }, + "227": { + "name": "Rock Throw", + "type": "Rock", + "damage": 12, + "duration": 900, + "energy": 7, + "dps": 13.33 + }, + "228": { + "name": "Metal Claw", + "type": "Steel", + "damage": 8, + "duration": 700, + "energy": 7, + "dps": 11.43 + }, + "229": { + "name": "Bullet Punch", + "type": "Steel", + "damage": 9, + "duration": 900, + "energy": 10, + "dps": 10 + }, + "230": { + "name": "Water Gun", + "type": "Water", + "damage": 5, + "duration": 500, + "energy": 5, + "dps": 10 + }, + "231": { + "name": "Splash", + "type": "Water", + "damage": 0, + "duration": 1730, + "energy": 20, + "dps": 0 + }, + "232": { + "name": "Water Gun (Blastoise)", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "233": { + "name": "Mud Slap", + "type": "Ground", + "damage": 15, + "duration": 1400, + "energy": 12, + "dps": 10.71 + }, + "234": { + "name": "Zen Headbutt", + "type": "Psychic", + "damage": 12, + "duration": 1100, + "energy": 10, + "dps": 10.91 + }, + "235": { + "name": "Confusion", + "type": "Psychic", + "damage": 20, + "duration": 1600, + "energy": 15, + "dps": 12.5 + }, + "236": { + "name": "Poison Sting", + "type": "Poison", + "damage": 5, + "duration": 600, + "energy": 7, + "dps": 8.33 + }, + "237": { + "name": "Bubble", + "type": "Water", + "damage": 12, + "duration": 1200, + "energy": 14, + "dps": 10 + }, + "238": { + "name": "Feint Attack", + "type": "Dark", + "damage": 10, + "duration": 900, + "energy": 9, + "dps": 11.11 + }, + "239": { + "name": "Steel Wing", + "type": "Steel", + "damage": 11, + "duration": 800, + "energy": 6, + "dps": 13.75 + }, + "240": { + "name": "Fire Fang", + "type": "Fire", + "damage": 11, + "duration": 900, + "energy": 8, + "dps": 12.22 + }, + "241": { + "name": "Rock Smash", + "type": "Fighting", + "damage": 15, + "duration": 1300, + "energy": 10, + "dps": 11.54 + }, + "242": { + "name": "Transform", + "type": "Normal", + "damage": 0, + "duration": 2230, + "energy": 0, + "dps": 0 + }, + "243": { + "name": "Counter", + "type": "Fighting", + "damage": 8, + "duration": 900, + "energy": 12, + "dps": 13.33 + }, + "244": { + "name": "Powder Snow", + "type": "Ice", + "damage": 6, + "duration": 1000, + "energy": 15, + "dps": 6 + }, + "245": { + "name": "Close Combat", + "type": "Fighting", + "damage": 100, + "duration": 2300, + "energy": 100, + "dps": 43.48 + }, + "246": { + "name": "Dynamic Punch", + "type": "Fighting", + "damage": 90, + "duration": 2700, + "energy": 50, + "dps": 33.33 + }, + "247": { + "name": "Focus Blast", + "type": "Fighting", + "damage": 140, + "duration": 3500, + "energy": 140, + "dps": 40 + }, + "248": { + "name": "Aurora Beam", + "type": "Ice", + "damage": 80, + "duration": 3550, + "energy": 50, + "dps": 22.54 + }, + "249": { + "name": "Charge Beam", + "type": "Electric", + "damage": 8, + "duration": 1100, + "energy": 15, + "dps": 7.27 + }, + "250": { + "name": "Volt Switch", + "type": "Electric", + "damage": 20, + "duration": 2300, + "energy": 25, + "dps": 8.7 + }, + "251": { + "name": "Wild Charge", + "type": "Electric", + "damage": 90, + "duration": 2600, + "energy": 50, + "dps": 34.62 + }, + "252": { + "name": "Zap Cannon", + "type": "Electric", + "damage": 140, + "duration": 3700, + "energy": 100, + "dps": 37.84 + }, + "253": { + "name": "Dragon Tail", + "type": "Dragon", + "damage": 15, + "duration": 1100, + "energy": 9, + "dps": 13.64 + }, + "254": { + "name": "Avalanche", + "type": "Ice", + "damage": 90, + "duration": 2700, + "energy": 50, + "dps": 33.33 + }, + "255": { + "name": "Air Slash", + "type": "Flying", + "damage": 14, + "duration": 1200, + "energy": 10, + "dps": 11.67 + }, + "256": { + "name": "Brave Bird", + "type": "Flying", + "damage": 90, + "duration": 2000, + "energy": 100, + "dps": 45 + }, + "257": { + "name": "Sky Attack", + "type": "Flying", + "damage": 70, + "duration": 2000, + "energy": 50, + "dps": 35 + }, + "258": { + "name": "Sand Tomb", + "type": "Ground", + "damage": 80, + "duration": 4000, + "energy": 50, + "dps": 20 + }, + "259": { + "name": "Rock Blast", + "type": "Rock", + "damage": 50, + "duration": 2100, + "energy": 33, + "dps": 23.81 + }, + "260": { + "name": "Infestation", + "type": "Bug", + "damage": 10, + "duration": 1100, + "energy": 14, + "dps": 9.09 + }, + "261": { + "name": "Struggle Bug", + "type": "Bug", + "damage": 15, + "duration": 1500, + "energy": 15, + "dps": 10 + }, + "262": { + "name": "Silver Wind", + "type": "Bug", + "damage": 70, + "duration": 3700, + "energy": 33, + "dps": 18.92 + }, + "263": { + "name": "Astonish", + "type": "Ghost", + "damage": 8, + "duration": 1100, + "energy": 14, + "dps": 7.27 + }, + "264": { + "name": "Hex", + "type": "Ghost", + "damage": 10, + "duration": 1200, + "energy": 15, + "dps": 8.33 + }, + "265": { + "name": "Night Shade", + "type": "Ghost", + "damage": 60, + "duration": 2600, + "energy": 50, + "dps": 23.08 + }, + "266": { + "name": "Iron Tail", + "type": "Steel", + "damage": 15, + "duration": 1100, + "energy": 7, + "dps": 13.64 + }, + "267": { + "name": "Gyro Ball", + "type": "Steel", + "damage": 80, + "duration": 3300, + "energy": 50, + "dps": 24.24 + }, + "268": { + "name": "Heavy Slam", + "type": "Steel", + "damage": 70, + "duration": 2100, + "energy": 50, + "dps": 33.33 + }, + "269": { + "name": "Fire Spin", + "type": "Fire", + "damage": 14, + "duration": 1100, + "energy": 10, + "dps": 12.73 + }, + "270": { + "name": "Overheat", + "type": "Fire", + "damage": 160, + "duration": 4000, + "energy": 100, + "dps": 40 + }, + "271": { + "name": "Bullet Seed", + "type": "Grass", + "damage": 8, + "duration": 1100, + "energy": 14, + "dps": 7.27 + }, + "272": { + "name": "Grass Knot", + "type": "Grass", + "damage": 90, + "duration": 2600, + "energy": 50, + "dps": 34.62 + }, + "273": { + "name": "Energy Ball", + "type": "Grass", + "damage": 90, + "duration": 3900, + "energy": 50, + "dps": 23.08 + }, + "274": { + "name": "Extrasensory", + "type": "Psychic", + "damage": 12, + "duration": 1100, + "energy": 12, + "dps": 10.91 + }, + "275": { + "name": "Future Sight", + "type": "Psychic", + "damage": 120, + "duration": 2700, + "energy": 100, + "dps": 44.44 + }, + "276": { + "name": "Mirror Coat", + "type": "Psychic", + "damage": 60, + "duration": 2600, + "energy": 50, + "dps": 23.08 + }, + "277": { + "name": "Outrage", + "type": "Dragon", + "damage": 110, + "duration": 3900, + "energy": 50, + "dps": 28.21 + }, + "278": { + "name": "Snarl", + "type": "Dark", + "damage": 12, + "duration": 1100, + "energy": 12, + "dps": 10.91 + }, + "279": { + "name": "Crunch", + "type": "Dark", + "damage": 70, + "duration": 3200, + "energy": 33, + "dps": 21.88 + }, + "280": { + "name": "Foul Play", + "type": "Dark", + "damage": 70, + "duration": 2000, + "energy": 50, + "dps": 35 + }, + "281": { + "name": "Hidden Power", + "type": "Normal", + "damage": 15, + "duration": 1500, + "energy": 15, + "dps": 10 + }, + "282": { + "name": "Take Down", + "type": "Normal", + "damage": 8, + "duration": 1200, + "energy": 10, + "dps": 6.7 + }, + "283": { + "name": "Waterfall", + "type": "Water", + "damage": 16, + "duration": 1200, + "energy": 8, + "dps": 13.3 + }, + "284": { + "name": "Surf", + "type": "Water", + "damage": 65, + "duration": 1700, + "energy": 50, + "dps": 29.5 + }, + "285": { + "name": "Draco Meteor", + "type": "Dragon", + "damage": 150, + "duration": 3600, + "energy": 100, + "dps": 36.6 + }, + "286": { + "name": "Doom Desire", + "type": "Steel", + "damage": 80, + "duration": 1700, + "energy": 50, + "dps": 36.4 + }, + "287": { + "name": "Yawn", + "type": "Normal", + "damage": 0, + "duration": 1700, + "energy": 15, + "dps": 0 + }, + "288": { + "name": "Psycho Boost", + "type": "Psychic", + "damage": 70, + "duration": 4000, + "energy": 50, + "dps": 15.6 + }, + "289": { + "name": "Origin Pulse", + "type": "Water", + "damage": 130, + "duration": 1700, + "energy": 100, + "dps": 59.1 + }, + "290": { + "name": "Precipice Blades", + "type": "Ground", + "damage": 130, + "duration": 1700, + "energy": 100, + "dps": 59.1 + }, + "291": { + "name": "Present", + "type": "Normal", + "damage": 5, + "duration": 1300, + "energy": 20, + "dps": 3.8 + }, + "292": { + "name": "Weather Ball Fire", + "type": "Fire", + "damage": 60, + "duration": 1600, + "energy": 33, + "dps": 37.5 + }, + "293": { + "name": "Weather Ball Ice", + "type": "Ice", + "damage": 60, + "duration": 1600, + "energy": 33, + "dps": 37.5 + }, + "294": { + "name": "Weather Ball Rock", + "type": "Rock", + "damage": 60, + "duration": 1600, + "energy": 33, + "dps": 37.5 + }, + "295": { + "name": "Weather Ball Water", + "type": "Water", + "damage": 60, + "duration": 1600, + "energy": 33, + "dps": 37.5 + }, + "296": { + "name": "Frenzy Plant", + "type": "Grass", + "damage": 100, + "duration": 2600, + "energy": 100, + "dps": 38.4 + }, + "297": { + "name": "Smack Down", + "type": "Rock", + "damage": 16, + "duration": 1200, + "energy": 8, + "dps": 13.3 + }, + "298": { + "name": "Blast Burn", + "type": "Fire", + "damage": 110, + "duration": 3300, + "energy": 100, + "dps": 33.3 + }, + "299": { + "name": "Hydro Cannon", + "type": "Water", + "damage": 90, + "duration": 1900, + "energy": 100, + "dps": 47.4 + }, + "300": { + "name": "Last Resort", + "type": "Normal", + "damage": 90, + "duration": 2700, + "energy": 100, + "dps": 31 + }, + "301": { + "name": "Meteor Mash", + "type": "Steel", + "damage": 100, + "duration": 2600, + "energy": 100, + "dps": 38.4 + }, + "302": { + "name": "Skull Bash", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "303": { + "name": "Acid Spray", + "type": "Poison", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "304": { + "name": "Earth Power", + "type": "Ground", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "305": { + "name": "Crabhammer", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "306": { + "name": "Lunge", + "type": "Bug", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "307": { + "name": "Crush Claw", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "308": { + "name": "Octazooka", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "309": { + "name": "Mirror Shot", + "type": "Steel", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "310": { + "name": "Super Power", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "311": { + "name": "Fell Stinger", + "type": "Bug", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "312": { + "name": "Leaf Tornado", + "type": "Grass", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "313": { + "name": "Leech Life", + "type": "Bug", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "314": { + "name": "Drain Punch", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "315": { + "name": "Shadow Bone", + "type": "Ghost", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "316": { + "name": "Muddy Water", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "317": { + "name": "Blaze Kick", + "type": "Fire", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "318": { + "name": "Razor Shell", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "319": { + "name": "Power-Up Punch", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "320": { + "name": "Charm Fast", + "type": "Fairy", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "321": { + "name": "Giga impact", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "322": { + "name": "Frustration", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "323": { + "name": "Return", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "324": { + "name": "Synchronoise", + "type": "Psychic", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "325": { + "name": "Lock-on", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "326": { + "name": "Thunder Fang", + "type": "Electric", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "327": { + "name": "Ice Fang", + "type": "Ice", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "328": { + "name": "Horn Drill", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "329": { + "name": "Fissure", + "type": "Ground", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "330": { + "name": "Sacred Sword", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "331": { + "name": "Flying Press", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "332": { + "name": "Aura Sphere", + "type": "Fighting", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "333": { + "name": "Payback", + "type": "Dark", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "334": { + "name": "Rock Wrecker", + "type": "Rock", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "335": { + "name": "Aeroblast", + "type": "Flying", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "336": { + "name": "Techno Blast Normal", + "type": "Normal", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "337": { + "name": "Techno Blast Burn", + "type": "Fire", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "338": { + "name": "Techno Blast Chill", + "type": "Ice", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "339": { + "name": "Techno Blast Water", + "type": "Water", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + }, + "340": { + "name": "Techno Blast Shock", + "type": "Electric", + "damage": 0, + "duration": 0, + "energy": 0, + "dps": 0 + } +} diff --git a/static/data/pokedex.json b/static/data/pokedex.json new file mode 100644 index 0000000..49cd1d4 --- /dev/null +++ b/static/data/pokedex.json @@ -0,0 +1,33144 @@ +{ + "pokemon": { + "1": { + "name": "Bulbasaur", + "forms": { + "163": { + "name": "Normal", + "evolved_form": 166 + }, + "164": { + "name": "Shadow", + "evolved_form": 167 + }, + "165": { + "name": "Purified", + "evolved_form": 168 + }, + "604": { + "name": "No Evolve", + "evolved_form": 166 + }, + "897": { + "name": "Fall 2019", + "evolved_form": 166 + } + }, + "default_form": 163, + "evolutions": [ + 2 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.", + "attack": 118, + "defense": 111, + "stamina": 128, + "height": 0.699999988079071, + "weight": 6.90000009536743, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.200000002980232, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Vine Whip", + "Tackle" + ], + "chargedmove": [ + "Sludge Bomb", + "Seed Bomb", + "Power Whip" + ], + "thirdmove": { + "stardustToUnlock": 12000, + "candyToUnlock": 30 + }, + "candy": 25, + "buddy_distance": 3, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "2": { + "name": "Ivysaur", + "forms": { + "166": { + "name": "Normal", + "evolved_form": 169 + }, + "167": { + "name": "Shadow", + "evolved_form": 170 + }, + "168": { + "name": "Purified", + "evolved_form": 171 + } + }, + "default_form": 166, + "evolutions": [ + 3 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "There is a bud on this Pokémon's back. To support its weight, Ivysaur's legs and trunk grow thick and strong. If it starts spending more time lying in the sunlight, it's a sign that the bud will bloom into a large flower soon.", + "attack": 151, + "defense": 143, + "stamina": 155, + "height": 1, + "weight": 13, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Razor Leaf", + "Vine Whip" + ], + "chargedmove": [ + "Sludge Bomb", + "Solar Beam", + "Power Whip" + ], + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "candy": 100, + "buddy_distance": 3, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "3": { + "name": "Venusaur", + "forms": { + "169": { + "name": "Normal" + }, + "170": { + "name": "Shadow" + }, + "171": { + "name": "Purified" + } + }, + "default_form": 169, + "evolutions": [], + "types": [ + "Grass", + "Poison" + ], + "dex": "There is a large flower on Venusaur's back. The flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people.", + "attack": 198, + "defense": 189, + "stamina": 190, + "height": 2, + "weight": 100, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.0500000007450581, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Razor Leaf", + "Vine Whip" + ], + "chargedmove": [ + "Sludge Bomb", + "Petal Blizzard", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "4": { + "name": "Charmander", + "forms": { + "172": { + "name": "Normal", + "evolved_form": 175 + }, + "173": { + "name": "Shadow", + "evolved_form": 176 + }, + "174": { + "name": "Purified", + "evolved_form": 177 + }, + "605": { + "name": "No Evolve", + "evolved_form": 175 + }, + "896": { + "name": "Fall 2019", + "evolved_form": 175 + } + }, + "default_form": 172, + "evolutions": [ + 5 + ], + "types": [ + "Fire" + ], + "dex": "The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is enjoying itself. If the Pokémon becomes enraged, the flame burns fiercely.", + "attack": 116, + "defense": 93, + "stamina": 118, + "height": 0.600000023841858, + "weight": 8.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.200000002980232, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Ember", + "Scratch" + ], + "chargedmove": [ + "Flame Charge", + "Flame Burst", + "Flamethrower" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "5": { + "name": "Charmeleon", + "forms": { + "175": { + "name": "Normal", + "evolved_form": 178 + }, + "176": { + "name": "Shadow", + "evolved_form": 179 + }, + "177": { + "name": "Purified", + "evolved_form": 180 + } + }, + "default_form": 175, + "evolutions": [ + 6 + ], + "types": [ + "Fire" + ], + "dex": "Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color.", + "attack": 158, + "defense": 126, + "stamina": 151, + "height": 1.10000002384186, + "weight": 19, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Ember", + "Fire Fang" + ], + "chargedmove": [ + "Fire Punch", + "Flame Burst", + "Flamethrower" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "6": { + "name": "Charizard", + "forms": { + "178": { + "name": "Normal" + }, + "179": { + "name": "Shadow" + }, + "180": { + "name": "Purified" + }, + "606": { + "name": "No Evolve" + } + }, + "default_form": 178, + "evolutions": [], + "types": [ + "Fire", + "Flying" + ], + "dex": "Charizard flies around the sky in search of powerful opponents. It breathes fire of such great heat that it melts anything. However, it never turns its fiery breath on any opponent weaker than itself.", + "attack": 223, + "defense": 173, + "stamina": 186, + "height": 1.70000004768372, + "weight": 90.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.0500000007450581, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Fire Spin", + "Air Slash" + ], + "chargedmove": [ + "Fire Blast", + "Dragon Claw", + "Overheat" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "7": { + "name": "Squirtle", + "forms": { + "181": { + "name": "Normal", + "evolved_form": 184 + }, + "182": { + "name": "Shadow", + "evolved_form": 185 + }, + "183": { + "name": "Purified", + "evolved_form": 186 + }, + "607": { + "name": "No Evolve", + "evolved_form": 184 + }, + "895": { + "name": "Fall 2019", + "evolved_form": 184 + } + }, + "default_form": 181, + "evolutions": [ + 8 + ], + "types": [ + "Water" + ], + "dex": "Squirtle's shell is not merely used for protection. The shell's rounded shape and the grooves on its surface help minimize resistance in water, enabling this Pokémon to swim at high speeds.", + "attack": 94, + "defense": 121, + "stamina": 127, + "height": 0.5, + "weight": 9, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.200000002980232, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Bubble", + "Tackle" + ], + "chargedmove": [ + "Aqua Jet", + "Aqua Tail", + "Water Pulse" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "8": { + "name": "Wartortle", + "forms": { + "184": { + "name": "Normal", + "evolved_form": 187 + }, + "185": { + "name": "Shadow", + "evolved_form": 188 + }, + "186": { + "name": "Purified", + "evolved_form": 189 + } + }, + "default_form": 184, + "evolutions": [ + 9 + ], + "types": [ + "Water" + ], + "dex": "Its tail is large and covered with a rich, thick fur. The tail becomes increasingly deeper in color as Wartortle ages. The scratches on its shell are evidence of this Pokémon's toughness as a battler.", + "attack": 126, + "defense": 155, + "stamina": 153, + "height": 1, + "weight": 22.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Water Gun", + "Bite" + ], + "chargedmove": [ + "Aqua Jet", + "Ice Beam", + "Hydro Pump" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "9": { + "name": "Blastoise", + "forms": { + "187": { + "name": "Normal" + }, + "188": { + "name": "Shadow" + }, + "189": { + "name": "Purified" + }, + "608": { + "name": "No Evolve" + } + }, + "default_form": 187, + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Blastoise has water spouts that protrude from its shell. The water spouts are very accurate. They can shoot bullets of water with enough accuracy to strike empty cans from a distance of over 160 feet.", + "attack": 171, + "defense": 207, + "stamina": 188, + "height": 1.60000002384186, + "weight": 85.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.0500000007450581, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Water Gun", + "Bite" + ], + "chargedmove": [ + "Flash Cannon", + "Ice Beam", + "Hydro Pump" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "10": { + "name": "Caterpie", + "forms": {}, + "default_form": "", + "evolutions": [ + 11 + ], + "types": [ + "Bug" + ], + "dex": "Caterpie has a voracious appetite. It can devour leaves bigger than its body right before your eyes. From its antenna, this Pokémon releases a terrifically strong odor.", + "attack": 55, + "defense": 55, + "stamina": 128, + "height": 0.300000011920929, + "weight": 2.90000009536743, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.200000002980232, + "quickmove": [ + "Bug Bite", + "Tackle" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 12, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "11": { + "name": "Metapod", + "forms": {}, + "default_form": "", + "evolutions": [ + 12 + ], + "types": [ + "Bug" + ], + "dex": "The shell covering this Pokémon's body is as hard as an iron slab. Metapod does not move very much. It stays still because it is preparing its soft innards for evolution inside the hard shell.", + "attack": 45, + "defense": 80, + "stamina": 137, + "height": 0.699999988079071, + "weight": 9.89999961853027, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Bug Bite", + "Tackle" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "12": { + "name": "Butterfree", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "Butterfree has a superior ability to search for delicious honey from flowers. It can even search out, extract, and carry honey from flowers that are blooming over six miles from its nest.", + "attack": 167, + "defense": 137, + "stamina": 155, + "height": 1.10000002384186, + "weight": 32, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Struggle Bug", + "Confusion" + ], + "chargedmove": [ + "Bug Buzz", + "Psychic", + "Signal Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "13": { + "name": "Weedle", + "forms": { + "616": { + "name": "Normal", + "evolved_form": 619 + }, + "617": { + "name": "Shadow", + "evolved_form": 620 + }, + "618": { + "name": "Purified", + "evolved_form": 621 + } + }, + "default_form": 616, + "evolutions": [ + 14 + ], + "types": [ + "Bug", + "Poison" + ], + "dex": "Weedle has an extremely acute sense of smell. It is capable of distinguishing its favorite kinds of leaves from those it dislikes just by sniffing with its big red proboscis (nose).", + "attack": 63, + "defense": 50, + "stamina": 120, + "height": 0.300000011920929, + "weight": 3.20000004768372, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.200000002980232, + "quickmove": [ + "Bug Bite", + "Poison Sting" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 12, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "14": { + "name": "Kakuna", + "forms": { + "619": { + "name": "Normal", + "evolved_form": 622 + }, + "620": { + "name": "Shadow", + "evolved_form": 623 + }, + "621": { + "name": "Purified", + "evolved_form": 624 + } + }, + "default_form": 619, + "evolutions": [ + 15 + ], + "types": [ + "Bug", + "Poison" + ], + "dex": "Kakuna remains virtually immobile as it clings to a tree. However, on the inside, it is extremely busy as it prepares for its coming evolution. This is evident from how hot the shell becomes to the touch.", + "attack": 46, + "defense": 75, + "stamina": 128, + "height": 0.600000023841858, + "weight": 10, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Bug Bite", + "Poison Sting" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "15": { + "name": "Beedrill", + "forms": { + "622": { + "name": "Normal" + }, + "623": { + "name": "Shadow" + }, + "624": { + "name": "Purified" + } + }, + "default_form": 622, + "evolutions": [], + "types": [ + "Bug", + "Poison" + ], + "dex": "Beedrill is extremely territorial. No one should ever approach its nest—this is for their own safety. If angered, they will attack in a furious swarm.", + "attack": 169, + "defense": 130, + "stamina": 163, + "height": 1, + "weight": 29.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Infestation", + "Poison Jab" + ], + "chargedmove": [ + "Sludge Bomb", + "Aerial Ace", + "X Scissor" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "16": { + "name": "Pidgey", + "forms": {}, + "default_form": "", + "evolutions": [ + 17 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Pidgey has an extremely sharp sense of direction. It is capable of unerringly returning home to its nest, however far it may be removed from its familiar surroundings.", + "attack": 85, + "defense": 73, + "stamina": 120, + "height": 0.300000011920929, + "weight": 1.79999995231628, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.200000002980232, + "quickmove": [ + "Quick Attack", + "Tackle" + ], + "chargedmove": [ + "Twister", + "Aerial Ace", + "Air Cutter" + ], + "candy": 12, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "17": { + "name": "Pidgeotto", + "forms": {}, + "default_form": "", + "evolutions": [ + 18 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Pidgeotto claims a large area as its own territory. This Pokémon flies around, patrolling its living space. If its territory is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws.", + "attack": 117, + "defense": 105, + "stamina": 160, + "height": 1.10000002384186, + "weight": 30, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Wing Attack", + "Steel Wing" + ], + "chargedmove": [ + "Twister", + "Aerial Ace", + "Air Cutter" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "18": { + "name": "Pidgeot", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "This Pokémon has a dazzling plumage of beautifully glossy feathers. Many Trainers are captivated by the striking beauty of the feathers on its head, compelling them to choose Pidgeot as their Pokémon.", + "attack": 166, + "defense": 154, + "stamina": 195, + "height": 1.5, + "weight": 39.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Air Slash", + "Steel Wing" + ], + "chargedmove": [ + "Hurricane", + "Aerial Ace", + "Brave Bird" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "19": { + "name": "Rattata", + "forms": { + "45": { + "name": "Normal", + "types": [ + "Normal" + ], + "evolved_form": 47, + "attack": 103, + "defense": 70, + "stamina": 102, + "height": 0.300000011920929, + "weight": 3.5, + "quickmove": [ + "Tackle", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Body Slam" + ] + }, + "46": { + "name": "Alolan", + "types": [ + "Dark", + "Normal" + ], + "evolved_form": 48, + "asset_form": 61, + "attack": 103, + "defense": 70, + "stamina": 102, + "height": 0.300000011920929, + "weight": 3.79999995231628, + "quickmove": [ + "Tackle", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Body Slam" + ] + }, + "153": { + "name": "Shadow", + "types": [ + "Normal" + ], + "evolved_form": 155, + "attack": 103, + "defense": 70, + "stamina": 102, + "height": 0.300000011920929, + "weight": 3.79999995231628, + "quickmove": [ + "Tackle", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Body Slam" + ] + }, + "154": { + "name": "Purified", + "types": [ + "Normal" + ], + "evolved_form": 156, + "attack": 103, + "defense": 70, + "stamina": 102, + "height": 0.300000011920929, + "weight": 3.5, + "quickmove": [ + "Tackle", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Body Slam" + ] + } + }, + "attack": 103, + "defense": 70, + "stamina": 102, + "quickmove": [ + "Tackle", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Body Slam" + ], + "default_form": 45, + "evolutions": [ + 20 + ], + "dex": "Rattata is cautious in the extreme. Even while it is asleep, it constantly listens by moving its ears around. It is not picky about where it lives—it will make its nest anywhere.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.200000002980232, + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "20": { + "name": "Raticate", + "forms": { + "47": { + "name": "Normal", + "types": [ + "Normal" + ], + "attack": 161, + "defense": 139, + "stamina": 146, + "height": 0.699999988079071, + "weight": 18.5, + "quickmove": [ + "Bite", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Hyper Beam" + ] + }, + "48": { + "name": "Alolan", + "types": [ + "Dark", + "Normal" + ], + "asset_form": 61, + "attack": 135, + "defense": 154, + "stamina": 181, + "height": 0.699999988079071, + "weight": 25.5, + "quickmove": [ + "Bite", + "Quick Attack" + ], + "chargedmove": [ + "Crunch", + "Hyper Fang", + "Hyper Beam" + ] + }, + "155": { + "name": "Shadow", + "types": [ + "Normal" + ], + "attack": 161, + "defense": 139, + "stamina": 146, + "height": 0.699999988079071, + "weight": 18.5, + "quickmove": [ + "Bite", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Hyper Beam" + ] + }, + "156": { + "name": "Purified", + "types": [ + "Normal" + ], + "attack": 161, + "defense": 139, + "stamina": 146, + "height": 0.699999988079071, + "weight": 18.5, + "quickmove": [ + "Bite", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Hyper Beam" + ] + }, + "609": { + "name": "No Evolve", + "types": [ + "Normal" + ], + "attack": 161, + "defense": 139, + "stamina": 146, + "height": 0.699999988079071, + "weight": 18.5, + "quickmove": [ + "Bite", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Hyper Beam" + ] + } + }, + "attack": 161, + "defense": 139, + "stamina": 146, + "default_form": 47, + "evolutions": [], + "dex": "Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "candy": "", + "buddy_distance": 1, + "quickmove": [ + "Bite", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Hyper Fang", + "Hyper Beam" + ], + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "21": { + "name": "Spearow", + "forms": {}, + "default_form": "", + "evolutions": [ + 22 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Spearow has a very loud cry that can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger.", + "attack": 112, + "defense": 60, + "stamina": 120, + "height": 0.300000011920929, + "weight": 2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Peck", + "Quick Attack" + ], + "chargedmove": [ + "Aerial Ace", + "Drill Peck", + "Sky Attack" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "22": { + "name": "Fearow", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "Fearow is recognized by its long neck and elongated beak. They are conveniently shaped for catching prey in soil or water. It deftly moves its long and skinny beak to pluck prey.", + "attack": 182, + "defense": 133, + "stamina": 163, + "height": 1.20000004768372, + "weight": 38, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Peck", + "Steel Wing" + ], + "chargedmove": [ + "Aerial Ace", + "Drill Run", + "Sky Attack" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "23": { + "name": "Ekans", + "forms": { + "697": { + "name": "Normal" + }, + "698": { + "name": "Shadow" + }, + "699": { + "name": "Purified" + } + }, + "default_form": 697, + "evolutions": [ + 24 + ], + "types": [ + "Poison" + ], + "dex": "Ekans curls itself up in a spiral while it rests. Assuming this position allows it to quickly respond to a threat from any direction with a glare from its upraised head.", + "attack": 110, + "defense": 97, + "stamina": 111, + "height": 2, + "weight": 6.90000009536743, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Poison Sting", + "Acid" + ], + "chargedmove": [ + "Wrap", + "Poison Fang", + "Sludge Bomb" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "24": { + "name": "Arbok", + "forms": { + "700": { + "name": "Normal" + }, + "701": { + "name": "Shadow" + }, + "702": { + "name": "Purified" + } + }, + "default_form": 700, + "evolutions": [], + "types": [ + "Poison" + ], + "dex": "This Pokémon is terrifically strong in order to constrict things with its body. It can even flatten steel oil drums. Once Arbok wraps its body around its foe, escaping its crunching embrace is impossible.", + "attack": 167, + "defense": 153, + "stamina": 155, + "height": 3.5, + "weight": 65, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Bite", + "Acid" + ], + "chargedmove": [ + "Dark Pulse", + "Sludge Wave", + "Gunk Shot" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "25": { + "name": "Pikachu", + "forms": { + "598": { + "name": "Normal", + "evolved_form": 49 + }, + "599": { + "name": "No Evolve", + "evolved_form": 49 + }, + "894": { + "name": "Fall 2019", + "evolved_form": 49 + }, + "901": { + "name": "Vs. 2019", + "evolved_form": 49 + } + }, + "default_form": 598, + "evolutions": [ + 26 + ], + "evolved_form": 49, + "types": [ + "Electric" + ], + "dex": "This Pokémon has electricity-storing pouches on its cheeks. These appear to become electrically charged during the night while Pikachu sleeps. It occasionally discharges electricity when it is dozy after waking up.", + "attack": 112, + "defense": 96, + "stamina": 111, + "height": 0.400000005960464, + "weight": 6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Thunder Shock", + "Quick Attack" + ], + "chargedmove": [ + "Discharge", + "Thunderbolt", + "Wild Charge" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "26": { + "name": "Raichu", + "forms": { + "49": { + "name": "Normal", + "types": [ + "Electric" + ], + "attack": 193, + "defense": 151, + "stamina": 155, + "height": 0.800000011920929, + "weight": 30, + "quickmove": [ + "Volt Switch", + "Spark" + ], + "chargedmove": [ + "Brick Break", + "Thunder Punch", + "Wild Charge" + ] + }, + "50": { + "name": "Alolan", + "types": [ + "Psychic", + "Electric" + ], + "asset_form": 61, + "attack": 201, + "defense": 154, + "stamina": 155, + "height": 0.699999988079071, + "weight": 21, + "quickmove": [ + "Volt Switch", + "Spark" + ], + "chargedmove": [ + "Psychic", + "Thunder Punch", + "Wild Charge" + ] + } + }, + "default_form": 49, + "evolutions": [], + "dex": "This Pokémon exudes a weak electrical charge from all over its body that makes it take on a slight glow in darkness. Raichu plants its tail in the ground to discharge electricity.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0599999986588955, + "candy": "", + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "27": { + "name": "Sandshrew", + "forms": { + "51": { + "name": "Normal", + "types": [ + "Ground" + ], + "evolved_form": 53, + "attack": 126, + "defense": 120, + "stamina": 137, + "height": 0.600000023841858, + "weight": 12, + "quickmove": [ + "Scratch", + "Mud Shot" + ], + "chargedmove": [ + "Dig", + "Rock Slide", + "Sand Tomb" + ] + }, + "52": { + "name": "Alolan", + "types": [ + "Ice", + "Steel" + ], + "asset_form": 61, + "evolved_form": 54, + "attack": 125, + "defense": 129, + "stamina": 137, + "height": 0.699999988079071, + "weight": 40, + "quickmove": [ + "Metal Claw", + "Powder Snow" + ], + "chargedmove": [ + "Blizzard", + "Gyro Ball", + "Night Slash" + ] + }, + "673": { + "name": "Shadow", + "types": [ + "Ground" + ], + "evolved_form": 675, + "attack": 126, + "defense": 120, + "stamina": 137, + "height": 0.600000023841858, + "weight": 12, + "quickmove": [ + "Scratch", + "Mud Shot" + ], + "chargedmove": [ + "Dig", + "Rock Slide", + "Sand Tomb" + ] + }, + "674": { + "name": "Purified", + "types": [ + "Ground" + ], + "evolved_form": 676, + "attack": 126, + "defense": 120, + "stamina": 137, + "height": 0.600000023841858, + "weight": 12, + "quickmove": [ + "Scratch", + "Mud Shot" + ], + "chargedmove": [ + "Dig", + "Rock Slide", + "Sand Tomb" + ] + } + }, + "default_form": 51, + "evolutions": [ + 28 + ], + "dex": "Sandshrew has a very dry hide that is extremely tough. The Pokémon can roll into a ball that repels any attack. At night, it burrows into the desert sand to sleep.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "28": { + "name": "Sandslash", + "forms": { + "53": { + "name": "Normal", + "types": [ + "Ground" + ], + "attack": 182, + "defense": 175, + "stamina": 181, + "height": 1, + "weight": 29.5, + "quickmove": [ + "Metal Claw", + "Mud Shot" + ], + "chargedmove": [ + "Earthquake", + "Rock Tomb", + "Bulldoze" + ] + }, + "54": { + "name": "Alolan", + "types": [ + "Ice", + "Steel" + ], + "asset_form": 61, + "attack": 177, + "defense": 195, + "stamina": 181, + "height": 1.20000004768372, + "weight": 55, + "quickmove": [ + "Metal Claw", + "Powder Snow" + ], + "chargedmove": [ + "Blizzard", + "Gyro Ball", + "Bulldoze" + ] + }, + "675": { + "name": "Shadow", + "types": [ + "Ground" + ], + "attack": 182, + "defense": 175, + "stamina": 181, + "height": 1, + "weight": 29.5, + "quickmove": [ + "Metal Claw", + "Mud Shot" + ], + "chargedmove": [ + "Earthquake", + "Rock Tomb", + "Bulldoze" + ] + }, + "676": { + "name": "Purified", + "types": [ + "Ground" + ], + "attack": 182, + "defense": 175, + "stamina": 181, + "height": 1, + "weight": 29.5, + "quickmove": [ + "Metal Claw", + "Mud Shot" + ], + "chargedmove": [ + "Earthquake", + "Rock Tomb", + "Bulldoze" + ] + } + }, + "default_form": 53, + "evolutions": [], + "dex": "Sandslash can roll up its body as if it were a ball covered with large spikes. In battle, this Pokémon will try to make the foe flinch by jabbing it with its spines. It then leaps at the stunned foe to tear wildly with its sharp claws.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "29": { + "name": "Nidoran♀", + "forms": { + "776": { + "name": "Normal", + "evolved_form": 779 + }, + "777": { + "name": "Shadow", + "evolved_form": 780 + }, + "778": { + "name": "Purified", + "evolved_form": 781 + } + }, + "default_form": 776, + "evolutions": [ + 30 + ], + "types": [ + "Poison" + ], + "dex": "Nidoran has barbs that secrete a powerful poison. They are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn.", + "attack": 86, + "defense": 89, + "stamina": 146, + "height": 0.400000005960464, + "weight": 7, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Bite", + "Poison Sting" + ], + "chargedmove": [ + "Poison Fang", + "Body Slam", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "30": { + "name": "Nidorina", + "forms": { + "779": { + "name": "Normal", + "evolved_form": 782 + }, + "780": { + "name": "Shadow", + "evolved_form": 783 + }, + "781": { + "name": "Purified", + "evolved_form": 784 + } + }, + "default_form": 779, + "evolutions": [ + 31 + ], + "types": [ + "Poison" + ], + "dex": "When Nidorina are with their friends or family, they keep their barbs tucked away to prevent hurting each other. This Pokémon appears to become nervous if separated from the others.", + "attack": 117, + "defense": 120, + "stamina": 172, + "height": 0.800000011920929, + "weight": 20, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Bite", + "Poison Sting" + ], + "chargedmove": [ + "Poison Fang", + "Dig", + "Sludge Bomb" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "31": { + "name": "Nidoqueen", + "forms": { + "782": { + "name": "Normal" + }, + "783": { + "name": "Shadow" + }, + "784": { + "name": "Purified" + } + }, + "default_form": 782, + "evolutions": [], + "types": [ + "Poison", + "Ground" + ], + "dex": "Nidoqueen's body is encased in extremely hard scales. It is adept at sending foes flying with harsh tackles. This Pokémon is at its strongest when it is defending its young.", + "attack": 180, + "defense": 173, + "stamina": 207, + "height": 1.29999995231628, + "weight": 60, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.125, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Poison Jab", + "Bite" + ], + "chargedmove": [ + "Earthquake", + "Sludge Wave", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "32": { + "name": "Nidoran♂", + "forms": { + "776": { + "name": "Normal", + "evolved_form": 785 + }, + "777": { + "name": "Shadow", + "evolved_form": 786 + }, + "778": { + "name": "Purified", + "evolved_form": 787 + } + }, + "default_form": 776, + "evolutions": [ + 33 + ], + "types": [ + "Poison" + ], + "dex": "Nidoran has developed muscles for moving its ears. Thanks to them, the ears can be freely moved in any direction. Even the slightest sound does not escape this Pokémon's notice.", + "attack": 105, + "defense": 76, + "stamina": 130, + "height": 0.5, + "weight": 9, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Peck", + "Poison Sting" + ], + "chargedmove": [ + "Horn Attack", + "Body Slam", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "33": { + "name": "Nidorino", + "forms": { + "785": { + "name": "Normal", + "evolved_form": 788 + }, + "786": { + "name": "Shadow", + "evolved_form": 789 + }, + "787": { + "name": "Purified", + "evolved_form": 790 + } + }, + "default_form": 785, + "evolutions": [ + 34 + ], + "types": [ + "Poison" + ], + "dex": "Nidorino has a horn that is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might.", + "attack": 137, + "defense": 111, + "stamina": 156, + "height": 0.899999976158142, + "weight": 19.5, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Poison Jab", + "Poison Sting" + ], + "chargedmove": [ + "Horn Attack", + "Dig", + "Sludge Bomb" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "34": { + "name": "Nidoking", + "forms": { + "788": { + "name": "Normal" + }, + "789": { + "name": "Shadow" + }, + "790": { + "name": "Purified" + } + }, + "default_form": 788, + "evolutions": [], + "types": [ + "Poison", + "Ground" + ], + "dex": "Nidoking's thick tail packs enormously destructive power. With one swing, it can topple a metal transmission tower. Once this Pokémon goes on a rampage, there is no stopping it.", + "attack": 204, + "defense": 156, + "stamina": 191, + "height": 1.39999997615814, + "weight": 62, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Poison Jab", + "Iron Tail" + ], + "chargedmove": [ + "Earthquake", + "Sludge Wave", + "Megahorn" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "35": { + "name": "Clefairy", + "forms": {}, + "default_form": "", + "evolutions": [ + 36 + ], + "types": [ + "Fairy" + ], + "dex": "On every night of a full moon, groups of this Pokémon come out to play. When dawn arrives, the tired Clefairy return to their quiet mountain retreats and go to sleep nestled up against each other.", + "attack": 107, + "defense": 108, + "stamina": 172, + "height": 0.600000023841858, + "weight": 7.5, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.300000011920929, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Pound", + "Zen Headbutt" + ], + "chargedmove": [ + "Disarming Voice", + "Body Slam", + "Moonblast" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "36": { + "name": "Clefable", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "Clefable moves by skipping lightly as if it were flying using its wings. Its bouncy step lets it even walk on water. It is known to take strolls on lakes on quiet, moonlit nights.", + "attack": 178, + "defense": 162, + "stamina": 216, + "height": 1.29999995231628, + "weight": 40, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Charge Beam", + "Zen Headbutt" + ], + "chargedmove": [ + "Dazzling Gleam", + "Psychic", + "Moonblast" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "37": { + "name": "Vulpix", + "forms": { + "55": { + "name": "Normal", + "types": [ + "Fire" + ], + "evolved_form": 57, + "quickmove": [ + "Quick Attack", + "Ember" + ], + "chargedmove": [ + "Body Slam", + "Flamethrower", + "Flame Charge" + ] + }, + "56": { + "name": "Alolan", + "types": [ + "Ice" + ], + "evolved_form": 58, + "asset_form": 61, + "quickmove": [ + "Zen Headbutt", + "Powder Snow" + ], + "chargedmove": [ + "Dark Pulse", + "Ice Beam", + "Blizzard" + ] + }, + "725": { + "name": "Shadow", + "types": [ + "Fire" + ], + "evolved_form": 727, + "quickmove": [ + "Quick Attack", + "Ember" + ], + "chargedmove": [ + "Body Slam", + "Flamethrower", + "Flame Charge" + ] + }, + "726": { + "name": "Purified", + "types": [ + "Fire" + ], + "evolved_form": 728, + "quickmove": [ + "Quick Attack", + "Ember" + ], + "chargedmove": [ + "Body Slam", + "Flamethrower", + "Flame Charge" + ] + } + }, + "default_form": 55, + "evolutions": [ + 38 + ], + "dex": "Inside Vulpix's body burns a flame that never goes out. During the daytime, when the temperatures rise, this Pokémon releases flames from its mouth to prevent its body from growing too hot.", + "attack": 96, + "defense": 109, + "stamina": 116, + "height": 0.600000023841858, + "weight": 9.89999961853027, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.300000011920929, + "flee_rate": 0.100000001490116, + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "38": { + "name": "Ninetales", + "forms": { + "57": { + "name": "Normal", + "types": [ + "Fire" + ], + "attack": 169, + "defense": 190, + "stamina": 177, + "height": 1.10000002384186, + "weight": 19.8999996185303, + "quickmove": [ + "Feint Attack", + "Fire Spin" + ], + "chargedmove": [ + "Heat Wave", + "Overheat", + "Solar Beam" + ] + }, + "58": { + "name": "Alolan", + "types": [ + "Ice", + "Fairy" + ], + "asset_form": 61, + "attack": 170, + "defense": 193, + "stamina": 177, + "height": 1.10000002384186, + "weight": 19.8999996185303, + "quickmove": [ + "Feint Attack", + "Powder Snow" + ], + "chargedmove": [ + "Dazzling Gleam", + "Ice Beam", + "Blizzard" + ] + }, + "727": { + "name": "Normal", + "types": [ + "Fire" + ], + "attack": 169, + "defense": 190, + "stamina": 177, + "height": 1.10000002384186, + "weight": 19.8999996185303, + "quickmove": [ + "Feint Attack", + "Fire Spin" + ], + "chargedmove": [ + "Heat Wave", + "Overheat", + "Solar Beam" + ] + }, + "728": { + "name": "Normal", + "types": [ + "Fire" + ], + "attack": 169, + "defense": 190, + "stamina": 177, + "height": 1.10000002384186, + "weight": 19.8999996185303, + "quickmove": [ + "Feint Attack", + "Fire Spin" + ], + "chargedmove": [ + "Heat Wave", + "Overheat", + "Solar Beam" + ] + } + }, + "default_form": 57, + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Legend has it that Ninetales came into being when nine wizards possessing sacred powers merged into one. This Pokémon is highly intelligent—it can understand human speech.", + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0599999986588955, + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "39": { + "name": "Jigglypuff", + "forms": {}, + "default_form": "", + "evolutions": [ + 40 + ], + "types": [ + "Normal", + "Fairy" + ], + "dex": "When this Pokémon sings, it never pauses to breathe. If it is in a battle against an opponent that does not easily fall asleep, Jigglypuff cannot breathe, endangering its life.", + "attack": 80, + "defense": 41, + "stamina": 251, + "height": 0.5, + "weight": 5.5, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Pound", + "Feint Attack" + ], + "chargedmove": [ + "Disarming Voice", + "Gyro Ball", + "Dazzling Gleam" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "40": { + "name": "Wigglytuff", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Fairy" + ], + "dex": "Wigglytuff's body is very flexible. By inhaling deeply, this Pokémon can inflate itself seemingly without end. Once inflated, Wigglytuff bounces along lightly like a balloon.", + "attack": 156, + "defense": 90, + "stamina": 295, + "height": 1, + "weight": 12, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Pound", + "Feint Attack" + ], + "chargedmove": [ + "Dazzling Gleam", + "Hyper Beam", + "Play Rough" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "41": { + "name": "Zubat", + "forms": { + "157": { + "name": "Normal", + "evolved_form": 160 + }, + "158": { + "name": "Shadow", + "evolved_form": 161 + }, + "159": { + "name": "Purified", + "evolved_form": 162 + } + }, + "default_form": 157, + "evolutions": [ + 42 + ], + "types": [ + "Poison", + "Flying" + ], + "dex": "Zubat avoids sunlight because exposure causes it to become unhealthy. During the daytime, it stays in caves or under the eaves of old houses, sleeping while hanging upside down.", + "attack": 83, + "defense": 73, + "stamina": 120, + "height": 0.800000011920929, + "weight": 7.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.200000002980232, + "quickmove": [ + "Quick Attack", + "Bite" + ], + "chargedmove": [ + "Poison Fang", + "Air Cutter", + "Swift" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "42": { + "name": "Golbat", + "forms": { + "160": { + "name": "Normal", + "evolved_form": 202 + }, + "161": { + "name": "Shadow", + "evolved_form": 203 + }, + "162": { + "name": "Purified", + "evolved_form": 204 + } + }, + "default_form": 160, + "evolutions": [ + 169 + ], + "types": [ + "Poison", + "Flying" + ], + "dex": "Golbat bites down on prey with its four fangs and drinks the victim's blood. It becomes active on inky dark moonless nights, flying around to attack people and Pokémon.", + "attack": 161, + "defense": 150, + "stamina": 181, + "height": 1.60000002384186, + "weight": 55, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Wing Attack", + "Bite" + ], + "chargedmove": [ + "Shadow Ball", + "Air Cutter", + "Poison Fang" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "43": { + "name": "Oddish", + "forms": { + "265": { + "name": "Normal", + "evolved_form": 268 + }, + "266": { + "name": "Shadow", + "evolved_form": 269 + }, + "267": { + "name": "Purified", + "evolved_form": 270 + } + }, + "default_form": 265, + "evolutions": [ + 44 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "Oddish searches for fertile, nutrient-rich soil, then plants itself. During the daytime, while it is planted, this Pokémon's feet are thought to change shape and become similar to the roots of trees.", + "attack": 131, + "defense": 112, + "stamina": 128, + "height": 0.5, + "weight": 5.40000009536743, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.600000023841858, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Razor Leaf", + "Acid" + ], + "chargedmove": [ + "Seed Bomb", + "Sludge Bomb", + "Moonblast" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "44": { + "name": "Gloom", + "forms": { + "268": { + "name": "Normal" + }, + "269": { + "name": "Shadow" + }, + "270": { + "name": "Purified" + } + }, + "default_form": 268, + "evolutions": [ + 45, + 182 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "From its mouth Gloom drips honey that smells absolutely horrible. Apparently, it loves the horrid stench. It sniffs the noxious fumes and then drools even more of its honey.", + "attack": 153, + "defense": 136, + "stamina": 155, + "height": 0.800000011920929, + "weight": 8.60000038146973, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.300000011920929, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Razor Leaf", + "Acid" + ], + "chargedmove": [ + "Petal Blizzard", + "Sludge Bomb", + "Moonblast" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "45": { + "name": "Vileplume", + "forms": { + "271": { + "name": "Normal" + }, + "272": { + "name": "Shadow" + }, + "273": { + "name": "Purified" + } + }, + "default_form": 271, + "evolutions": [], + "types": [ + "Grass", + "Poison" + ], + "dex": "Vileplume has the world's largest petals. They are used to attract prey that are then doused with toxic spores. Once the prey are immobilized, this Pokémon catches and devours them.", + "attack": 202, + "defense": 167, + "stamina": 181, + "height": 1.20000004768372, + "weight": 18.6000003814697, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.150000005960464, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Razor Leaf", + "Acid" + ], + "chargedmove": [ + "Petal Blizzard", + "Solar Beam", + "Moonblast" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "46": { + "name": "Paras", + "forms": {}, + "default_form": "", + "evolutions": [ + 47 + ], + "types": [ + "Bug", + "Grass" + ], + "dex": "Paras has parasitic mushrooms growing on its back called tochukaso. They grow large by drawing nutrients from this Bug Pokémon host. They are highly valued as a medicine for extending life.", + "attack": 121, + "defense": 99, + "stamina": 111, + "height": 0.300000011920929, + "weight": 5.40000009536743, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.400000005960464, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Scratch", + "Bug Bite" + ], + "chargedmove": [ + "Cross Poison", + "X Scissor", + "Seed Bomb" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "47": { + "name": "Parasect", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Grass" + ], + "dex": "Parasect is known to infest large trees en masse and drain nutrients from the lower trunk and roots. When an infested tree dies, they move onto another tree all at once.", + "attack": 165, + "defense": 146, + "stamina": 155, + "height": 1, + "weight": 29.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Struggle Bug", + "Fury Cutter" + ], + "chargedmove": [ + "Cross Poison", + "X Scissor", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "48": { + "name": "Venonat", + "forms": { + "259": { + "name": "Normal", + "evolved_form": 262 + }, + "260": { + "name": "Shadow", + "evolved_form": 263 + }, + "261": { + "name": "Purified", + "evolved_form": 264 + } + }, + "default_form": 259, + "evolutions": [ + 49 + ], + "types": [ + "Bug", + "Poison" + ], + "dex": "Venonat is said to have evolved with a coat of thin, stiff hair that covers its entire body for protection. It possesses large eyes that never fail to spot even minuscule prey.", + "attack": 100, + "defense": 100, + "stamina": 155, + "height": 1, + "weight": 30, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Bug Bite", + "Confusion" + ], + "chargedmove": [ + "Poison Fang", + "Psybeam", + "Signal Beam" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "49": { + "name": "Venomoth", + "forms": { + "262": { + "name": "Normal" + }, + "263": { + "name": "Shadow" + }, + "264": { + "name": "Purified" + } + }, + "default_form": 262, + "evolutions": [], + "types": [ + "Bug", + "Poison" + ], + "dex": "Venomoth is nocturnal—it is a Pokémon that only becomes active at night. Its favorite prey are small insects that gather around streetlights, attracted by the light in the darkness.", + "attack": 179, + "defense": 143, + "stamina": 172, + "height": 1.5, + "weight": 12.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Infestation", + "Confusion" + ], + "chargedmove": [ + "Silver Wind", + "Psychic", + "Bug Buzz" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "50": { + "name": "Diglett", + "forms": { + "59": { + "name": "Normal", + "types": [ + "Ground" + ], + "evolved_form": 61, + "attack": 109, + "defense": 78, + "stamina": 67, + "height": 0.200000002980232, + "weight": 0.800000011920929, + "quickmove": [ + "Mud Slap", + "Scratch" + ], + "chargedmove": [ + "Dig", + "Mud Bomb", + "Rock Tomb" + ] + }, + "60": { + "name": "Alolan", + "types": [ + "Steel", + "Ground" + ], + "evolved_form": 62, + "asset_form": 61, + "attack": 108, + "defense": 81, + "stamina": 67, + "height": 0.200000002980232, + "weight": 1, + "quickmove": [ + "Mud Slap", + "Metal Claw" + ], + "chargedmove": [ + "Dig", + "Mud Bomb", + "Rock Tomb" + ] + }, + "842": { + "name": "Shadow", + "types": [ + "Ground" + ], + "evolved_form": 844, + "attack": 109, + "defense": 78, + "stamina": 67, + "height": 0.200000002980232, + "weight": 0.800000011920929, + "quickmove": [ + "Mud Slap", + "Scratch" + ], + "chargedmove": [ + "Dig", + "Mud Bomb", + "Rock Tomb" + ] + }, + "843": { + "name": "Purified", + "types": [ + "Ground" + ], + "evolved_form": 845, + "attack": 109, + "defense": 78, + "stamina": 67, + "height": 0.200000002980232, + "weight": 0.800000011920929, + "quickmove": [ + "Mud Slap", + "Scratch" + ], + "chargedmove": [ + "Dig", + "Mud Bomb", + "Rock Tomb" + ] + } + }, + "default_form": 59, + "evolutions": [ + 51 + ], + "dex": "Diglett are raised in most farms. The reason is simple— wherever this Pokémon burrows, the soil is left perfectly tilled for planting crops. This soil is made ideal for growing delicious vegetables.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "51": { + "name": "Dugtrio", + "forms": { + "61": { + "name": "Normal", + "types": [ + "Ground" + ], + "attack": 167, + "defense": 134, + "stamina": 111, + "height": 0.699999988079071, + "weight": 33.2999992370605, + "quickmove": [ + "Metal Claw", + "Mud Slap" + ], + "chargedmove": [ + "Earthquake", + "Mud Bomb", + "Iron Head" + ] + }, + "62": { + "name": "Alolan", + "types": [ + "Steel", + "Ground" + ], + "asset_form": 61, + "attack": 201, + "defense": 142, + "stamina": 111, + "height": 0.699999988079071, + "weight": 66.5999984741211, + "quickmove": [ + "Sucker Punch", + "Mud Slap" + ], + "chargedmove": [ + "Earthquake", + "Mud Bomb", + "Stone Edge" + ] + }, + "844": { + "name": "Shadow", + "types": [ + "Ground" + ], + "attack": 167, + "defense": 134, + "stamina": 111, + "height": 0.699999988079071, + "weight": 33.2999992370605, + "quickmove": [ + "Metal Claw", + "Mud Slap" + ], + "chargedmove": [ + "Earthquake", + "Mud Bomb", + "Iron Head" + ] + }, + "845": { + "name": "Purified", + "types": [ + "Ground" + ], + "attack": 167, + "defense": 134, + "stamina": 111, + "height": 0.699999988079071, + "weight": 33.2999992370605, + "quickmove": [ + "Metal Claw", + "Mud Slap" + ], + "chargedmove": [ + "Earthquake", + "Mud Bomb", + "Iron Head" + ] + } + }, + "default_form": 61, + "evolutions": [], + "dex": "Dugtrio are actually triplets that emerged from one body. As a result, each triplet thinks exactly like the other two triplets. They work cooperatively to burrow endlessly.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "52": { + "name": "Meowth", + "forms": { + "63": { + "name": "Normal", + "types": [ + "Normal" + ], + "evolved_form": 65, + "attack": 92, + "defense": 78, + "stamina": 120, + "height": 0.400000005960464, + "weight": 4.19999980926514, + "quickmove": [ + "Scratch", + "Bite" + ], + "chargedmove": [ + "Night Slash", + "Dark Pulse", + "Foul Play" + ] + }, + "64": { + "name": "Alolan", + "types": [ + "Dark" + ], + "evolved_form": 66, + "asset_form": 61, + "attack": 99, + "defense": 78, + "stamina": 120, + "height": 0.400000005960464, + "weight": 4.19999980926514, + "quickmove": [ + "Scratch", + "Bite" + ], + "chargedmove": [ + "Night Slash", + "Dark Pulse", + "Foul Play" + ] + }, + "709": { + "name": "Shadow", + "types": [ + "Normal" + ], + "evolved_form": 711, + "attack": 92, + "defense": 78, + "stamina": 120, + "height": 0.400000005960464, + "weight": 4.19999980926514, + "quickmove": [ + "Scratch", + "Bite" + ], + "chargedmove": [ + "Night Slash", + "Dark Pulse", + "Foul Play" + ] + }, + "710": { + "name": "Purified", + "types": [ + "Normal" + ], + "evolved_form": 712, + "attack": 92, + "defense": 78, + "stamina": 120, + "height": 0.400000005960464, + "weight": 4.19999980926514, + "quickmove": [ + "Scratch", + "Bite" + ], + "chargedmove": [ + "Night Slash", + "Dark Pulse", + "Foul Play" + ] + } + }, + "default_form": 63, + "evolutions": [ + 53 + ], + "dex": "Meowth withdraws its sharp claws into its paws to slinkily sneak about without making any incriminating footsteps. For some reason, this Pokémon loves shiny coins that glitter with light.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "53": { + "name": "Persian", + "forms": { + "65": { + "name": "Normal", + "types": [ + "Normal" + ], + "attack": 150, + "defense": 136, + "stamina": 163, + "height": 1, + "weight": 32, + "quickmove": [ + "Scratch", + "Feint Attack" + ], + "chargedmove": [ + "Foul Play", + "Power Gem", + "Play Rough" + ] + }, + "66": { + "name": "Alolan", + "types": [ + "Dark" + ], + "asset_form": 61, + "attack": 158, + "defense": 136, + "stamina": 163, + "height": 1.10000002384186, + "weight": 33, + "quickmove": [ + "Scratch", + "Feint Attack" + ], + "chargedmove": [ + "Foul Play", + "Dark Pulse", + "Play Rough" + ] + }, + "711": { + "name": "Shadow", + "types": [ + "Normal" + ], + "attack": 150, + "defense": 136, + "stamina": 163, + "height": 1, + "weight": 32, + "quickmove": [ + "Scratch", + "Feint Attack" + ], + "chargedmove": [ + "Foul Play", + "Power Gem", + "Play Rough" + ] + }, + "712": { + "name": "Purified", + "types": [ + "Normal" + ], + "attack": 150, + "defense": 136, + "stamina": 163, + "height": 1, + "weight": 32, + "quickmove": [ + "Scratch", + "Feint Attack" + ], + "chargedmove": [ + "Foul Play", + "Power Gem", + "Play Rough" + ] + } + }, + "default_form": 65, + "evolutions": [], + "dex": "Persian has six bold whiskers that give it a look of toughness. The whiskers sense air movements to determine what is in the Pokémon's surrounding vicinity. It becomes docile if grabbed by the whiskers.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "54": { + "name": "Psyduck", + "forms": { + "286": { + "name": "Normal", + "evolved_form": 289 + }, + "287": { + "name": "Shadow", + "evolved_form": 290 + }, + "288": { + "name": "Purified", + "evolved_form": 291 + } + }, + "default_form": 286, + "evolutions": [ + 55 + ], + "types": [ + "Water" + ], + "dex": "If it uses its mysterious power, Psyduck can't remember having done so. It apparently can't form a memory of such an event because it goes into an altered state that is much like deep sleep.", + "attack": 122, + "defense": 95, + "stamina": 137, + "height": 0.800000011920929, + "weight": 19.6000003814697, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Water Gun", + "Zen Headbutt" + ], + "chargedmove": [ + "Psybeam", + "Aqua Tail", + "Cross Chop" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "55": { + "name": "Golduck", + "forms": { + "289": { + "name": "Normal" + }, + "290": { + "name": "Shadow" + }, + "291": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Golduck is the fastest swimmer among all Pokémon. It swims effortlessly, even in a rough, stormy sea. It sometimes rescues people from wrecked ships floundering in high seas.", + "attack": 191, + "defense": 162, + "stamina": 190, + "height": 1.70000004768372, + "weight": 76.5999984741211, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Water Gun", + "Confusion" + ], + "chargedmove": [ + "Psychic", + "Hydro Pump", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "56": { + "name": "Mankey", + "forms": {}, + "default_form": "", + "evolutions": [ + 57 + ], + "types": [ + "Fighting" + ], + "dex": "When Mankey starts shaking and its nasal breathing turns rough, it's a sure sign that it is becoming angry. However, because it goes into a towering rage almost instantly, it is impossible for anyone to flee its wrath.", + "attack": 148, + "defense": 82, + "stamina": 120, + "height": 0.5, + "weight": 28, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Karate Chop", + "Scratch" + ], + "chargedmove": [ + "Cross Chop", + "Low Sweep", + "Brick Break" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "57": { + "name": "Primeape", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "When Primeape becomes furious, its blood circulation is boosted. In turn, its muscles are made even stronger. However, it also becomes much less intelligent at the same time.", + "attack": 207, + "defense": 138, + "stamina": 163, + "height": 1, + "weight": 32, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Low Kick", + "Counter" + ], + "chargedmove": [ + "Close Combat", + "Low Sweep", + "Night Slash" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "58": { + "name": "Growlithe", + "forms": { + "280": { + "name": "Normal", + "evolved_form": 283 + }, + "281": { + "name": "Shadow", + "evolved_form": 284 + }, + "282": { + "name": "Purified", + "evolved_form": 285 + } + }, + "default_form": 280, + "evolutions": [ + 59 + ], + "types": [ + "Fire" + ], + "dex": "Growlithe has a superb sense of smell. Once it smells anything, this Pokémon won't forget the scent, no matter what. It uses its advanced olfactory sense to determine the emotions of other living things.", + "attack": 136, + "defense": 93, + "stamina": 146, + "height": 0.699999988079071, + "weight": 19, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.300000011920929, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Ember", + "Bite" + ], + "chargedmove": [ + "Flame Wheel", + "Body Slam", + "Flamethrower" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "59": { + "name": "Arcanine", + "forms": { + "283": { + "name": "Normal" + }, + "284": { + "name": "Shadow" + }, + "285": { + "name": "Purified" + } + }, + "default_form": 283, + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Arcanine is known for its high speed. It is said to be capable of running over 6,200 miles in a single day and night. The fire that blazes wildly within this Pokémon's body is its source of power.", + "attack": 227, + "defense": 166, + "stamina": 207, + "height": 1.89999997615814, + "weight": 155, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Fire Fang", + "Snarl" + ], + "chargedmove": [ + "Fire Blast", + "Wild Charge", + "Crunch" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "60": { + "name": "Poliwag", + "forms": { + "235": { + "name": "Normal", + "evolved_form": 238 + }, + "236": { + "name": "Shadow", + "evolved_form": 239 + }, + "237": { + "name": "Purified", + "evolved_form": 240 + } + }, + "default_form": 235, + "evolutions": [ + 61 + ], + "types": [ + "Water" + ], + "dex": "Poliwag has a very thin skin. It is possible to see the Pokémon's spiral innards right through the skin. Despite its thinness, however, the skin is also very flexible. Even sharp fangs bounce right off it.", + "attack": 101, + "defense": 82, + "stamina": 120, + "height": 0.600000023841858, + "weight": 12.3999996185303, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Bubble", + "Mud Shot" + ], + "chargedmove": [ + "Bubble Beam", + "Mud Bomb", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "61": { + "name": "Poliwhirl", + "forms": { + "238": { + "name": "Normal" + }, + "239": { + "name": "Shadow" + }, + "240": { + "name": "Purified" + } + }, + "default_form": 238, + "evolutions": [ + 62, + 186 + ], + "types": [ + "Water" + ], + "dex": "The surface of Poliwhirl's body is always wet and slick with a slimy fluid. Because of this slippery covering, it can easily slip and slide out of the clutches of any enemy in battle.", + "attack": 130, + "defense": 123, + "stamina": 163, + "height": 1, + "weight": 20, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Bubble", + "Mud Shot" + ], + "chargedmove": [ + "Water Pulse", + "Mud Bomb", + "Bubble Beam" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "62": { + "name": "Poliwrath", + "forms": { + "241": { + "name": "Normal" + }, + "242": { + "name": "Shadow" + }, + "243": { + "name": "Purified" + } + }, + "default_form": 241, + "evolutions": [], + "types": [ + "Water", + "Fighting" + ], + "dex": "Poliwrath's highly developed, brawny muscles never grow fatigued, however much it exercises. It is so tirelessly strong, this Pokémon can swim back and forth across the ocean without effort.", + "attack": 182, + "defense": 184, + "stamina": 207, + "height": 1.29999995231628, + "weight": 54, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Bubble", + "Rock Smash" + ], + "chargedmove": [ + "Hydro Pump", + "Dynamic Punch", + "Ice Punch" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "63": { + "name": "Abra", + "forms": { + "304": { + "name": "Normal", + "evolved_form": 307 + }, + "305": { + "name": "Shadow", + "evolved_form": 308 + }, + "306": { + "name": "Purified", + "evolved_form": 309 + } + }, + "default_form": 304, + "evolutions": [ + 64 + ], + "types": [ + "Psychic" + ], + "dex": "Abra needs to sleep for eighteen hours a day. If it doesn't, this Pokémon loses its ability to use telekinetic powers. If it is attacked, Abra escapes using Teleport while it is still sleeping.", + "attack": 195, + "defense": 82, + "stamina": 93, + "height": 0.899999976158142, + "weight": 19.5, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.5, + "flee_rate": 0.990000009536743, + "quickmove": [ + "Zen Headbutt", + "Charge Beam" + ], + "chargedmove": [ + "Psyshock", + "Signal Beam", + "Shadow Ball" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "64": { + "name": "Kadabra", + "forms": { + "307": { + "name": "Normal", + "evolved_form": 310 + }, + "308": { + "name": "Shadow", + "evolved_form": 311 + }, + "309": { + "name": "Purified", + "evolved_form": 312 + } + }, + "default_form": 307, + "evolutions": [ + 65 + ], + "types": [ + "Psychic" + ], + "dex": "Kadabra holds a silver spoon in its hand. The spoon is used to amplify the alpha waves in its brain. Without the spoon, the Pokémon is said to be limited to half the usual amount of its telekinetic powers.", + "attack": 232, + "defense": 117, + "stamina": 120, + "height": 1.29999995231628, + "weight": 56.5, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Psycho Cut", + "Confusion" + ], + "chargedmove": [ + "Psybeam", + "Dazzling Gleam", + "Shadow Ball" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "65": { + "name": "Alakazam", + "forms": { + "310": { + "name": "Normal" + }, + "312": { + "name": "Shadow" + }, + "313": { + "name": "Purified" + } + }, + "default_form": 310, + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Alakazam's brain continually grows, infinitely multiplying brain cells. This amazing brain gives this Pokémon an astoundingly high IQ of 5,000. It has a thorough memory of everything that has occurred in the world.", + "attack": 271, + "defense": 167, + "stamina": 146, + "height": 1.5, + "weight": 48, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Psycho Cut", + "Confusion" + ], + "chargedmove": [ + "Futuresight", + "Focus Blast", + "Shadow Ball" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "66": { + "name": "Machop", + "forms": { + "809": { + "name": "Normal", + "evolved_form": 812 + }, + "810": { + "name": "Shadow", + "evolved_form": 813 + }, + "811": { + "name": "Purified", + "evolved_form": 814 + } + }, + "default_form": 809, + "evolutions": [ + 67 + ], + "types": [ + "Fighting" + ], + "dex": "Machop exercises by hefting around a Graveler as if it were a barbell. There are some Machop that travel the world in a quest to master all kinds of martial arts.", + "attack": 137, + "defense": 82, + "stamina": 172, + "height": 0.800000011920929, + "weight": 19.5, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Rock Smash", + "Karate Chop" + ], + "chargedmove": [ + "Low Sweep", + "Brick Break", + "Cross Chop" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "67": { + "name": "Machoke", + "forms": { + "812": { + "name": "Normal", + "evolved_form": 815 + }, + "813": { + "name": "Shadow", + "evolved_form": 816 + }, + "814": { + "name": "Purified", + "evolved_form": 817 + } + }, + "default_form": 812, + "evolutions": [ + 68 + ], + "types": [ + "Fighting" + ], + "dex": "Machoke undertakes bodybuilding every day even as it helps people with tough, physically demanding labor. On its days off, this Pokémon heads to the fields and mountains to exercise and train.", + "attack": 177, + "defense": 125, + "stamina": 190, + "height": 1.5, + "weight": 70.5, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Low Kick", + "Karate Chop" + ], + "chargedmove": [ + "Submission", + "Brick Break", + "Dynamic Punch" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "68": { + "name": "Machamp", + "forms": { + "815": { + "name": "Normal" + }, + "816": { + "name": "Shadow" + }, + "817": { + "name": "Purified" + } + }, + "default_form": 815, + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Machamp is known as the Pokémon that has mastered every kind of martial arts. If it grabs hold of the foe with its four arms, the battle is all but over. The hapless foe is thrown far over the horizon.", + "attack": 234, + "defense": 159, + "stamina": 207, + "height": 1.60000002384186, + "weight": 130, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Bullet Punch", + "Counter" + ], + "chargedmove": [ + "Heavy Slam", + "Dynamic Punch", + "Close Combat" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "69": { + "name": "Bellsprout", + "forms": { + "664": { + "name": "Normal", + "evolved_form": 667 + }, + "665": { + "name": "Shadow", + "evolved_form": 668 + }, + "666": { + "name": "Purified", + "evolved_form": 669 + } + }, + "default_form": 664, + "evolutions": [ + 70 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, this Pokémon spits a corrosive fluid that melts even iron.", + "attack": 139, + "defense": 61, + "stamina": 137, + "height": 0.699999988079071, + "weight": 4, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Vine Whip", + "Acid" + ], + "chargedmove": [ + "Power Whip", + "Sludge Bomb", + "Wrap" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "70": { + "name": "Weepinbell", + "forms": { + "667": { + "name": "Normal", + "evolved_form": 670 + }, + "668": { + "name": "Shadow", + "evolved_form": 671 + }, + "669": { + "name": "Purified", + "evolved_form": 672 + } + }, + "default_form": 667, + "evolutions": [ + 71 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "Weepinbell has a large hook on its rear end. At night, the Pokémon hooks on to a tree branch and goes to sleep. If it moves around in its sleep, it may wake up to find itself on the ground.", + "attack": 172, + "defense": 92, + "stamina": 163, + "height": 1, + "weight": 6.40000009536743, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Bullet Seed", + "Acid" + ], + "chargedmove": [ + "Power Whip", + "Sludge Bomb", + "Seed Bomb" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "71": { + "name": "Victreebel", + "forms": { + "670": { + "name": "Normal" + }, + "671": { + "name": "Shadow" + }, + "672": { + "name": "Purified" + } + }, + "default_form": 670, + "evolutions": [], + "types": [ + "Grass", + "Poison" + ], + "dex": "Victreebel has a long vine that extends from its head. This vine is waved and flicked about as if it were an animal to attract prey. When an unsuspecting prey draws near, this Pokémon swallows it whole.", + "attack": 207, + "defense": 135, + "stamina": 190, + "height": 1.70000004768372, + "weight": 15.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Razor Leaf", + "Acid" + ], + "chargedmove": [ + "Leaf Blade", + "Sludge Bomb", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "72": { + "name": "Tentacool", + "forms": {}, + "default_form": "", + "evolutions": [ + 73 + ], + "types": [ + "Water", + "Poison" + ], + "dex": "Tentacool absorbs sunlight and refracts it using water inside its body to convert it into beam energy. This Pokémon shoots beams from the small round organ above its eyes.", + "attack": 97, + "defense": 149, + "stamina": 120, + "height": 0.899999976158142, + "weight": 45.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Bubble", + "Poison Sting" + ], + "chargedmove": [ + "Bubble Beam", + "Water Pulse", + "Wrap" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "73": { + "name": "Tentacruel", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Poison" + ], + "dex": "Tentacruel has tentacles that can be freely elongated and shortened at will. It ensnares prey with its tentacles and weakens the prey by dosing it with a harsh toxin. It can catch up to 80 prey at the same time.", + "attack": 166, + "defense": 209, + "stamina": 190, + "height": 1.60000002384186, + "weight": 55, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Acid", + "Poison Jab" + ], + "chargedmove": [ + "Hydro Pump", + "Sludge Wave", + "Blizzard" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "74": { + "name": "Geodude", + "forms": { + "67": { + "name": "Normal", + "types": [ + "Rock", + "Ground" + ], + "evolved_form": 69, + "attack": 132, + "defense": 132, + "stamina": 120, + "height": 0.400000005960464, + "weight": 20, + "quickmove": [ + "Rock Throw", + "Tackle" + ], + "chargedmove": [ + "Rock Slide", + "Rock Tomb", + "Dig" + ] + }, + "68": { + "name": "Alolan", + "types": [ + "Electric", + "Rock" + ], + "evolved_form": 70, + "asset_form": 61, + "attack": 132, + "defense": 132, + "stamina": 120, + "height": 0.400000005960464, + "weight": 20.2999992370605, + "quickmove": [ + "Rock Throw", + "Volt Switch" + ], + "chargedmove": [ + "Rock Slide", + "Rock Tomb", + "Thunderbolt" + ] + }, + "882": { + "name": "Shadow", + "types": [ + "Rock", + "Ground" + ], + "evolved_form": 884, + "attack": 132, + "defense": 132, + "stamina": 120, + "height": 0.400000005960464, + "weight": 20, + "quickmove": [ + "Rock Throw", + "Tackle" + ], + "chargedmove": [ + "Rock Slide", + "Rock Tomb", + "Dig" + ] + }, + "883": { + "name": "Purified", + "types": [ + "Rock", + "Ground" + ], + "evolved_form": 885, + "attack": 132, + "defense": 132, + "stamina": 120, + "height": 0.400000005960464, + "weight": 20, + "quickmove": [ + "Rock Throw", + "Tackle" + ], + "chargedmove": [ + "Rock Slide", + "Rock Tomb", + "Dig" + ] + } + }, + "default_form": 67, + "evolutions": [ + 75 + ], + "dex": "When Geodude sleeps deeply, it buries itself halfway into the ground. It will not awaken even if hikers step on it unwittingly. In the morning, this Pokémon rolls downhill in search of food.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "candy": 25, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "75": { + "name": "Graveler", + "forms": { + "69": { + "name": "Normal", + "types": [ + "Rock", + "Ground" + ], + "evolved_form": 71, + "attack": 164, + "defense": 164, + "stamina": 146, + "height": 1, + "weight": 105, + "quickmove": [ + "Rock Throw", + "Mud Slap" + ], + "chargedmove": [ + "Dig", + "Stone Edge", + "Rock Blast" + ] + }, + "70": { + "name": "Alolan", + "types": [ + "Electric", + "Rock" + ], + "evolved_form": 72, + "asset_form": 61, + "attack": 164, + "defense": 164, + "stamina": 146, + "height": 1, + "weight": 110, + "quickmove": [ + "Rock Throw", + "Volt Switch" + ], + "chargedmove": [ + "Thunderbolt", + "Stone Edge", + "Rock Blast" + ] + }, + "884": { + "name": "Shadow", + "types": [ + "Rock", + "Ground" + ], + "evolved_form": 886, + "attack": 164, + "defense": 164, + "stamina": 146, + "height": 1, + "weight": 105, + "quickmove": [ + "Rock Throw", + "Mud Slap" + ], + "chargedmove": [ + "Dig", + "Stone Edge", + "Rock Blast" + ] + }, + "885": { + "name": "Purified", + "types": [ + "Rock", + "Ground" + ], + "evolved_form": 887, + "attack": 164, + "defense": 164, + "stamina": 146, + "height": 1, + "weight": 105, + "quickmove": [ + "Rock Throw", + "Mud Slap" + ], + "chargedmove": [ + "Dig", + "Stone Edge", + "Rock Blast" + ] + } + }, + "default_form": 69, + "evolutions": [ + 76 + ], + "dex": "Rocks are Graveler's favorite food. This Pokémon will climb a mountain from the base to the summit, crunchingly feasting on rocks all the while. Upon reaching the peak, it rolls back down to the bottom.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.0700000002980232, + "candy": 100, + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "76": { + "name": "Golem", + "forms": { + "71": { + "name": "Normal", + "types": [ + "Rock", + "Ground" + ], + "attack": 211, + "defense": 198, + "stamina": 190, + "height": 1.39999997615814, + "weight": 300, + "quickmove": [ + "Rock Throw", + "Mud Slap" + ], + "chargedmove": [ + "Stone Edge", + "Rock Blast", + "Earthquake" + ] + }, + "72": { + "name": "Alolan", + "types": [ + "Electric", + "Rock" + ], + "asset_form": 61, + "attack": 211, + "defense": 198, + "stamina": 190, + "height": 1.70000004768372, + "weight": 316, + "quickmove": [ + "Rock Throw", + "Volt Switch" + ], + "chargedmove": [ + "Stone Edge", + "Rock Blast", + "Wild Charge" + ] + }, + "886": { + "name": "Shadow", + "types": [ + "Rock", + "Ground" + ], + "attack": 211, + "defense": 198, + "stamina": 190, + "height": 1.39999997615814, + "weight": 300, + "quickmove": [ + "Rock Throw", + "Mud Slap" + ], + "chargedmove": [ + "Stone Edge", + "Rock Blast", + "Earthquake" + ] + }, + "887": { + "name": "Purified", + "types": [ + "Rock", + "Ground" + ], + "attack": 211, + "defense": 198, + "stamina": 190, + "height": 1.39999997615814, + "weight": 300, + "quickmove": [ + "Rock Throw", + "Mud Slap" + ], + "chargedmove": [ + "Stone Edge", + "Rock Blast", + "Earthquake" + ] + } + }, + "default_form": 71, + "evolutions": [], + "types": [ + "Rock", + "Ground" + ], + "dex": "Golem is known for rolling down from mountains. To prevent them from rolling into the homes of people downhill, grooves have been dug into the sides of mountains to serve as guideways for diverting this Pokémon's course.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.0500000007450581, + "candy": "", + "buddy_distance": 1, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "77": { + "name": "Ponyta", + "forms": {}, + "default_form": "", + "evolutions": [ + 78 + ], + "types": [ + "Fire" + ], + "dex": "Ponyta is very weak at birth. It can barely stand up. This Pokémon becomes stronger by stumbling and falling to keep up with its parent.", + "attack": 170, + "defense": 127, + "stamina": 137, + "height": 1, + "weight": 30, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.400000005960464, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Tackle", + "Ember" + ], + "chargedmove": [ + "Flame Charge", + "Flame Wheel", + "Stomp" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "78": { + "name": "Rapidash", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Rapidash usually can be seen casually cantering in the fields and plains. However, when this Pokémon turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph.", + "attack": 207, + "defense": 162, + "stamina": 163, + "height": 1.70000004768372, + "weight": 95, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.150000005960464, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Low Kick", + "Fire Spin" + ], + "chargedmove": [ + "Fire Blast", + "Drill Run", + "Heat Wave" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "79": { + "name": "Slowpoke", + "forms": {}, + "default_form": "", + "evolutions": [ + 80, + 199 + ], + "types": [ + "Water", + "Psychic" + ], + "dex": "Slowpoke uses its tail to catch prey by dipping it in water at the side of a river. However, this Pokémon often forgets what it's doing and often spends entire days just loafing at water's edge.", + "attack": 109, + "defense": 98, + "stamina": 207, + "height": 1.20000004768372, + "weight": 36, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Water Gun", + "Confusion" + ], + "chargedmove": [ + "Water Pulse", + "Psyshock", + "Psychic" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "80": { + "name": "Slowbro", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Psychic" + ], + "dex": "Slowbro's tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This causes Slowbro to grudgingly swim and catch prey instead.", + "attack": 177, + "defense": 180, + "stamina": 216, + "height": 1.60000002384186, + "weight": 78.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Water Gun", + "Confusion" + ], + "chargedmove": [ + "Water Pulse", + "Psychic", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "81": { + "name": "Magnemite", + "forms": { + "655": { + "name": "Normal", + "evolved_form": 658 + }, + "656": { + "name": "Shadow", + "evolved_form": 659 + }, + "657": { + "name": "Purified", + "evolved_form": 660 + } + }, + "default_form": 655, + "evolutions": [ + 82 + ], + "types": [ + "Electric", + "Steel" + ], + "dex": "Magnemite floats in the air by emitting electromagnetic waves from the units at its sides. These waves block gravity. This Pokémon becomes incapable of flight if its internal electrical supply is depleted.", + "attack": 165, + "defense": 121, + "stamina": 93, + "height": 0.300000011920929, + "weight": 6, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Spark", + "Thunder Shock" + ], + "chargedmove": [ + "Discharge", + "Magnet Bomb", + "Thunderbolt" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "82": { + "name": "Magneton", + "forms": { + "658": { + "name": "Normal", + "evolved_form": 661 + }, + "659": { + "name": "Shadow", + "evolved_form": 662 + }, + "660": { + "name": "Purified", + "evolved_form": 663 + } + }, + "default_form": 658, + "evolutions": [ + 462 + ], + "types": [ + "Electric", + "Steel" + ], + "dex": "Magneton emits a powerful magnetic force that is fatal to electronics and precision instruments. Because of this, it is said that some towns warn people to keep this Pokémon inside a Poké Ball.", + "attack": 223, + "defense": 169, + "stamina": 137, + "height": 1, + "weight": 60, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Spark", + "Charge Beam" + ], + "chargedmove": [ + "Zap Cannon", + "Magnet Bomb", + "Flash Cannon" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "83": { + "name": "Farfetchd", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "Farfetch'd is always seen with a stalk from a plant of some sort. Apparently, there are good stalks and bad stalks. This Pokémon has been known to fight with others over stalks.", + "attack": 124, + "defense": 115, + "stamina": 141, + "height": 0.800000011920929, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.300000011920929, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Air Slash", + "Fury Cutter" + ], + "chargedmove": [ + "Aerial Ace", + "Air Cutter", + "Leaf Blade" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "84": { + "name": "Doduo", + "forms": {}, + "default_form": "", + "evolutions": [ + 85 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Doduo's two heads contain completely identical brains. A scientific study reported that on rare occasions, there will be examples of this Pokémon possessing different sets of brains.", + "attack": 158, + "defense": 83, + "stamina": 111, + "height": 1.39999997615814, + "weight": 39.2000007629395, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Peck", + "Quick Attack" + ], + "chargedmove": [ + "Drill Peck", + "Aerial Ace", + "Brave Bird" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "85": { + "name": "Dodrio", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "Apparently, the heads aren't the only parts of the body that Dodrio has three of. It has three sets of hearts and lungs as well, so it is capable of running long distances without rest.", + "attack": 218, + "defense": 140, + "stamina": 155, + "height": 1.79999995231628, + "weight": 85.1999969482422, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Feint Attack", + "Steel Wing" + ], + "chargedmove": [ + "Drill Peck", + "Aerial Ace", + "Brave Bird" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "86": { + "name": "Seel", + "forms": {}, + "default_form": "", + "evolutions": [ + 87 + ], + "types": [ + "Water" + ], + "dex": "Seel hunts for prey in the frigid sea underneath sheets of ice. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head.", + "attack": 85, + "defense": 121, + "stamina": 163, + "height": 1.10000002384186, + "weight": 90, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Ice Shard", + "Lick" + ], + "chargedmove": [ + "Aurora Beam", + "Icy Wind", + "Aqua Tail" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "87": { + "name": "Dewgong", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Ice" + ], + "dex": "Dewgong loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago.", + "attack": 139, + "defense": 177, + "stamina": 207, + "height": 1.70000004768372, + "weight": 120, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Frost Breath", + "Iron Tail" + ], + "chargedmove": [ + "Aurora Beam", + "Water Pulse", + "Blizzard" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "88": { + "name": "Grimer", + "forms": { + "73": { + "name": "Normal", + "types": [ + "Poison" + ], + "evolved_form": 75, + "attack": 135, + "defense": 90, + "stamina": 190, + "height": 0.899999976158142, + "weight": 30, + "quickmove": [ + "Poison Jab", + "Mud Slap" + ], + "chargedmove": [ + "Sludge", + "Mud Bomb", + "Sludge Bomb" + ] + }, + "74": { + "name": "Alolan", + "types": [ + "Dark", + "Poison" + ], + "evolved_form": 76, + "asset_form": 61, + "attack": 135, + "defense": 90, + "stamina": 190, + "height": 0.699999988079071, + "weight": 42, + "quickmove": [ + "Poison Jab", + "Bite" + ], + "chargedmove": [ + "Crunch", + "Gunk Shot", + "Sludge Bomb" + ] + }, + "220": { + "name": "Shadow", + "types": [ + "Poison" + ], + "evolved_form": 222, + "attack": 135, + "defense": 90, + "stamina": 190, + "height": 0.899999976158142, + "weight": 30, + "quickmove": [ + "Poison Jab", + "Mud Slap" + ], + "chargedmove": [ + "Sludge", + "Mud Bomb", + "Sludge Bomb" + ] + }, + "221": { + "name": "Purified", + "types": [ + "Poison" + ], + "evolved_form": 223, + "attack": 135, + "defense": 90, + "stamina": 190, + "height": 0.899999976158142, + "weight": 30, + "quickmove": [ + "Poison Jab", + "Mud Slap" + ], + "chargedmove": [ + "Sludge", + "Mud Bomb", + "Sludge Bomb" + ] + } + }, + "default_form": 73, + "evolutions": [ + 89 + ], + "dex": "Grimer emerged from the sludge that settled on a polluted seabed. This Pokémon loves anything filthy. It constantly leaks a horribly germ-infested fluid from all over its body.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "89": { + "name": "Muk", + "forms": { + "75": { + "name": "Normal", + "types": [ + "Poison" + ], + "attack": 190, + "defense": 172, + "stamina": 233, + "height": 1.20000004768372, + "weight": 30, + "quickmove": [ + "Infestation", + "Poison Jab" + ], + "chargedmove": [ + "Dark Pulse", + "Gunk Shot", + "Sludge Wave" + ] + }, + "76": { + "name": "Alolan", + "types": [ + "Dark", + "Poison" + ], + "asset_form": 61, + "attack": 190, + "defense": 172, + "stamina": 233, + "height": 1, + "weight": 52, + "quickmove": [ + "Bite", + "Poison Jab" + ], + "chargedmove": [ + "Dark Pulse", + "Gunk Shot", + "Sludge Wave" + ] + }, + "222": { + "name": "Shadow", + "types": [ + "Poison" + ], + "attack": 190, + "defense": 172, + "stamina": 233, + "height": 1.20000004768372, + "weight": 30, + "quickmove": [ + "Infestation", + "Poison Jab" + ], + "chargedmove": [ + "Dark Pulse", + "Gunk Shot", + "Sludge Wave" + ] + }, + "223": { + "name": "Purified", + "types": [ + "Poison" + ], + "attack": 190, + "defense": 172, + "stamina": 233, + "height": 1.20000004768372, + "weight": 30, + "quickmove": [ + "Infestation", + "Poison Jab" + ], + "chargedmove": [ + "Dark Pulse", + "Gunk Shot", + "Sludge Wave" + ] + } + }, + "default_form": 75, + "evolutions": [], + "dex": "This Pokémon's favorite food is anything that is repugnantly filthy. In dirty towns where people think nothing of throwing away litter on the streets, Muk are certain to gather.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "90": { + "name": "Shellder", + "forms": { + "876": { + "name": "Normal", + "evolved_form": 879 + }, + "877": { + "name": "Shadow", + "evolved_form": 880 + }, + "878": { + "name": "Purified", + "evolved_form": 881 + } + }, + "default_form": 876, + "evolutions": [ + 91 + ], + "types": [ + "Water" + ], + "dex": "At night, this Pokémon uses its broad tongue to burrow a hole in the seafloor sand and then sleep in it. While it is sleeping, Shellder closes its shell, but leaves its tongue hanging out.", + "attack": 116, + "defense": 134, + "stamina": 102, + "height": 0.300000011920929, + "weight": 4, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Ice Shard", + "Tackle" + ], + "chargedmove": [ + "Bubble Beam", + "Water Pulse", + "Icy Wind" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "91": { + "name": "Cloyster", + "forms": { + "879": { + "name": "Normal" + }, + "880": { + "name": "Shadow" + }, + "881": { + "name": "Purified" + } + }, + "default_form": 879, + "evolutions": [], + "types": [ + "Water", + "Ice" + ], + "dex": "Cloyster is capable of swimming in the sea. It does so by swallowing water, then jetting it out toward the rear. This Pokémon shoots spikes from its shell using the same system.", + "attack": 186, + "defense": 256, + "stamina": 137, + "height": 1.5, + "weight": 132.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Frost Breath", + "Ice Shard" + ], + "chargedmove": [ + "Aurora Beam", + "Hydro Pump", + "Avalanche" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "92": { + "name": "Gastly", + "forms": {}, + "default_form": "", + "evolutions": [ + 93 + ], + "types": [ + "Ghost", + "Poison" + ], + "dex": "Gastly is largely composed of gaseous matter. When exposed to a strong wind, the gaseous body quickly dwindles away. Groups of this Pokémon cluster under the eaves of houses to escape the ravages of wind.", + "attack": 186, + "defense": 67, + "stamina": 102, + "height": 1.29999995231628, + "weight": 0.100000001490116, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.400000005960464, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Lick", + "Astonish" + ], + "chargedmove": [ + "Night Shade", + "Dark Pulse", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "93": { + "name": "Haunter", + "forms": {}, + "default_form": "", + "evolutions": [ + 94 + ], + "types": [ + "Ghost", + "Poison" + ], + "dex": "Haunter is a dangerous Pokémon. If one beckons you while floating in darkness, you must never approach it. This Pokémon will try to lick you with its tongue and steal your life away.", + "attack": 223, + "defense": 107, + "stamina": 128, + "height": 1.60000002384186, + "weight": 0.100000001490116, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Shadow Claw", + "Astonish" + ], + "chargedmove": [ + "Shadow Punch", + "Dark Pulse", + "Sludge Bomb" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "94": { + "name": "Gengar", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Poison" + ], + "dex": "Sometimes, on a dark night, your shadow thrown by a streetlight will suddenly and startlingly overtake you. It is actually a Gengar running past you, pretending to be your shadow.", + "attack": 261, + "defense": 149, + "stamina": 155, + "height": 1.5, + "weight": 40.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Sucker Punch", + "Hex" + ], + "chargedmove": [ + "Shadow Ball", + "Focus Blast", + "Sludge Bomb" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "95": { + "name": "Onix", + "forms": { + "902": { + "name": "Normal" + }, + "903": { + "name": "Shadow" + }, + "904": { + "name": "Purified" + } + }, + "default_form": 902, + "evolutions": [ + 208 + ], + "types": [ + "Rock", + "Ground" + ], + "dex": "Onix has a magnet in its brain. It acts as a compass so that this Pokémon does not lose direction while it is tunneling. As it grows older, its body becomes increasingly rounder and smoother.", + "attack": 85, + "defense": 232, + "stamina": 111, + "height": 8.80000019073486, + "weight": 210, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Rock Throw", + "Tackle" + ], + "chargedmove": [ + "Sand Tomb", + "Stone Edge", + "Heavy Slam" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": 75, + "evolution_item": "Metal Coat", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "96": { + "name": "Drowzee", + "forms": { + "214": { + "name": "Normal", + "evolved_form": 217 + }, + "215": { + "name": "Shadow", + "evolved_form": 218 + }, + "216": { + "name": "Purified", + "evolved_form": 219 + } + }, + "default_form": 214, + "evolutions": [ + 97 + ], + "types": [ + "Psychic" + ], + "dex": "If your nose becomes itchy while you are sleeping, it's a sure sign that one of these Pokémon is standing above your pillow and trying to eat your dream through your nostrils.", + "attack": 89, + "defense": 136, + "stamina": 155, + "height": 1, + "weight": 32.4000015258789, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.100000001490116, + "quickmove": [ + "Pound", + "Confusion" + ], + "chargedmove": [ + "Psybeam", + "Psyshock", + "Psychic" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "97": { + "name": "Hypno", + "forms": { + "217": { + "name": "Normal" + }, + "218": { + "name": "Shadow" + }, + "219": { + "name": "Purified" + } + }, + "default_form": 217, + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Hypno holds a pendulum in its hand. The arcing movement and glitter of the pendulum lull the foe into a deep state of hypnosis. While this Pokémon searches for prey, it polishes the pendulum.", + "attack": 144, + "defense": 193, + "stamina": 198, + "height": 1.60000002384186, + "weight": 75.5999984741211, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0599999986588955, + "quickmove": [ + "Zen Headbutt", + "Confusion" + ], + "chargedmove": [ + "Futuresight", + "Psychic", + "Focus Blast" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "98": { + "name": "Krabby", + "forms": { + "870": { + "name": "Normal", + "evolved_form": 891 + }, + "871": { + "name": "Shadow", + "evolved_form": 892 + }, + "872": { + "name": "Purified", + "evolved_form": 893 + } + }, + "default_form": 870, + "evolutions": [ + 99 + ], + "types": [ + "Water" + ], + "dex": "Krabby live on beaches, burrowed inside holes dug into the sand. On sandy beaches with little in the way of food, these Pokémon can be seen squabbling with each other over territory.", + "attack": 181, + "defense": 124, + "stamina": 102, + "height": 0.400000005960464, + "weight": 6.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.150000005960464, + "quickmove": [ + "Bubble", + "Mud Shot" + ], + "chargedmove": [ + "Vice Grip", + "Bubble Beam", + "Water Pulse" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "99": { + "name": "Kingler", + "forms": { + "873": { + "name": "Normal" + }, + "874": { + "name": "Shadow" + }, + "875": { + "name": "Purified" + } + }, + "default_form": 873, + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Kingler has an enormous, oversized claw. It waves this huge claw in the air to communicate with others. However, because the claw is so heavy, the Pokémon quickly tires.", + "attack": 240, + "defense": 181, + "stamina": 146, + "height": 1.29999995231628, + "weight": 60, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.200000002980232, + "flee_rate": 0.0700000002980232, + "quickmove": [ + "Bubble", + "Metal Claw" + ], + "chargedmove": [ + "Vice Grip", + "X Scissor", + "Water Pulse" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "100": { + "name": "Voltorb", + "forms": {}, + "default_form": "", + "evolutions": [ + 101 + ], + "types": [ + "Electric" + ], + "dex": "Voltorb is extremely sensitive—it explodes at the slightest of shocks. It is rumored that it was first created when a Poké Ball was exposed to a powerful pulse of energy.", + "attack": 109, + "defense": 111, + "stamina": 120, + "height": 0.5, + "weight": 10.4, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Spark", + "Tackle" + ], + "chargedmove": [ + "Discharge", + "Thunderbolt", + "Gyro Ball" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "101": { + "name": "Electrode", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "One of Electrode's characteristics is its attraction to electricity. It is a problematical Pokémon that congregates mostly at electrical power plants to feed on electricity that has just been generated.", + "attack": 173, + "defense": 173, + "stamina": 155, + "height": 1.2, + "weight": 66.599998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Spark", + "Volt Switch" + ], + "chargedmove": [ + "Discharge", + "Thunderbolt", + "Hyper Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "102": { + "name": "Exeggcute", + "forms": { + "729": { + "name": "Normal", + "evolved_form": 77 + }, + "730": { + "name": "Shadow", + "evolved_form": 732 + }, + "731": { + "name": "Purified", + "evolved_form": 733 + } + }, + "default_form": 729, + "evolutions": [ + 103 + ], + "evolved_form": 77, + "types": [ + "Grass", + "Psychic" + ], + "dex": "This Pokémon consists of six eggs that form a closely knit cluster. The six eggs attract each other and spin around. When cracks increasingly appear on the eggs, Exeggcute is close to evolution.", + "attack": 107, + "defense": 125, + "stamina": 155, + "height": 0.40000001, + "weight": 2.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Confusion", + "Bullet Seed" + ], + "chargedmove": [ + "Seed Bomb", + "Psychic", + "Ancient Power" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "103": { + "name": "Exeggutor", + "forms": { + "77": { + "name": "Normal", + "types": [ + "Grass", + "Psychic" + ], + "attack": 233, + "defense": 149, + "stamina": 216, + "height": 2, + "weight": 120, + "quickmove": [ + "Bullet Seed", + "Extrasensory" + ], + "chargedmove": [ + "Seed Bomb", + "Psychic", + "Solar Beam" + ] + }, + "78": { + "name": "Alolan", + "types": [ + "Dragon", + "Grass" + ], + "asset_form": 61, + "attack": 230, + "defense": 153, + "stamina": 216, + "height": 10.8999996185303, + "weight": 415.600006103516, + "quickmove": [ + "Bullet Seed", + "Dragon Tail" + ], + "chargedmove": [ + "Seed Bomb", + "Dragon Pulse", + "Solar Beam" + ] + }, + "732": { + "name": "Shadow", + "types": [ + "Grass", + "Psychic" + ], + "attack": 233, + "defense": 149, + "stamina": 216, + "height": 2, + "weight": 120, + "quickmove": [ + "Bullet Seed", + "Extrasensory" + ], + "chargedmove": [ + "Seed Bomb", + "Psychic", + "Solar Beam" + ] + }, + "733": { + "name": "Purified", + "types": [ + "Grass", + "Psychic" + ], + "attack": 233, + "defense": 149, + "stamina": 216, + "height": 2, + "weight": 120, + "quickmove": [ + "Bullet Seed", + "Extrasensory" + ], + "chargedmove": [ + "Seed Bomb", + "Psychic", + "Solar Beam" + ] + } + }, + "default_form": 77, + "evolutions": [], + "dex": "Exeggutor originally came from the tropics. Its heads steadily grow larger from exposure to strong sunlight. It is said that when the heads fall off, they group together to form Exeggcute.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 2, + "weight": 120 + }, + "104": { + "name": "Cubone", + "forms": { + "224": { + "name": "Normal", + "evolved_form": 79 + }, + "225": { + "name": "Shadow", + "evolved_form": 227 + }, + "226": { + "name": "Purified", + "evolved_form": 228 + } + }, + "default_form": 224, + "evolutions": [ + 105 + ], + "evolved_form": 79, + "types": [ + "Ground" + ], + "dex": "Cubone pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull the Pokémon wears are made by the tears it sheds.", + "attack": 90, + "defense": 144, + "stamina": 137, + "height": 0.40000001, + "weight": 6.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Mud Slap", + "Rock Smash" + ], + "chargedmove": [ + "Bone Club", + "Dig", + "Bulldoze" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "105": { + "name": "Marowak", + "forms": { + "79": { + "name": "Normal", + "types": [ + "Ground" + ], + "attack": 144, + "defense": 186, + "stamina": 155, + "height": 1, + "weight": 45, + "quickmove": [ + "Mud Slap", + "Rock Smash" + ], + "chargedmove": [ + "Bone Club", + "Dig", + "Earthquake" + ] + }, + "80": { + "name": "Alolan", + "types": [ + "Fire", + "Ghost" + ], + "asset_form": 61, + "attack": 144, + "defense": 186, + "stamina": 155, + "height": 1, + "weight": 34, + "quickmove": [ + "Hex", + "Rock Smash" + ], + "chargedmove": [ + "Bone Club", + "Shadow Ball", + "Fire Blast" + ] + }, + "227": { + "name": "Shadow", + "types": [ + "Ground" + ], + "attack": 144, + "defense": 186, + "stamina": 155, + "height": 1, + "weight": 45, + "quickmove": [ + "Mud Slap", + "Rock Smash" + ], + "chargedmove": [ + "Bone Club", + "Dig", + "Earthquake" + ] + }, + "228": { + "name": "Purified", + "types": [ + "Ground" + ], + "attack": 144, + "defense": 186, + "stamina": 155, + "height": 1, + "weight": 45, + "quickmove": [ + "Mud Slap", + "Rock Smash" + ], + "chargedmove": [ + "Bone Club", + "Dig", + "Earthquake" + ] + } + }, + "default_form": 79, + "evolutions": [], + "dex": "Marowak is the evolved form of a Cubone that has overcome its sadness at the loss of its mother and grown tough. This Pokémon's tempered and hardened spirit is not easily broken.", + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.059999999, + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1, + "weight": 45 + }, + "106": { + "name": "Hitmonlee", + "forms": { + "713": { + "name": "Normal" + }, + "714": { + "name": "Shadow" + }, + "715": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Hitmonlee's legs freely contract and stretch. Using these springlike legs, it bowls over foes with devastating kicks. After battle, it rubs down its legs and loosens the muscles to overcome fatigue.", + "attack": 224, + "defense": 181, + "stamina": 137, + "height": 1.5, + "weight": 49.799999, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Low Kick", + "Rock Smash" + ], + "chargedmove": [ + "Close Combat", + "Low Sweep", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "107": { + "name": "Hitmonchan", + "forms": { + "277": { + "name": "Normal" + }, + "278": { + "name": "Shadow" + }, + "279": { + "name": "Purified" + } + }, + "default_form": 277, + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Hitmonchan is said to possess the spirit of a boxer who had been working toward a world championship. This Pokémon has an indomitable spirit and will never give up in the face of adversity.", + "attack": 193, + "defense": 197, + "stamina": 137, + "height": 1.4, + "weight": 50.200001, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Bullet Punch", + "Counter" + ], + "chargedmove": [ + "Fire Punch", + "Ice Punch", + "Thunder Punch" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "108": { + "name": "Lickitung", + "forms": {}, + "default_form": "", + "evolutions": [ + 463 + ], + "types": [ + "Normal" + ], + "dex": "Whenever Lickitung comes across something new, it will unfailingly give it a lick. It does so because it memorizes things by texture and by taste. It is somewhat put off by sour things.", + "attack": 108, + "defense": 137, + "stamina": 207, + "height": 1.2, + "weight": 65.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Lick", + "Zen Headbutt" + ], + "chargedmove": [ + "Hyper Beam", + "Stomp", + "Power Whip" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "109": { + "name": "Koffing", + "forms": { + "703": { + "name": "Normal", + "evolved_form": 706 + }, + "704": { + "name": "Shadow", + "evolved_form": 707 + }, + "705": { + "name": "Purified", + "evolved_form": 708 + } + }, + "default_form": 703, + "evolutions": [ + 110 + ], + "types": [ + "Poison" + ], + "dex": "Koffing embodies toxic substances. It mixes the toxins with raw garbage to set off a chemical reaction that results in a terribly powerful poison gas. The higher the temperature, the more gas is concocted by this Pokémon.", + "attack": 119, + "defense": 141, + "stamina": 120, + "height": 0.60000002, + "weight": 1, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Infestation" + ], + "chargedmove": [ + "Sludge", + "Sludge Bomb", + "Dark Pulse" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "110": { + "name": "Weezing", + "forms": { + "706": { + "name": "Normal", + "types": [ + "Poison" + ] + }, + "707": { + "name": "Shadow", + "types": [ + "Poison" + ] + }, + "708": { + "name": "Purified", + "types": [ + "Poison" + ] + }, + "944": { + "name": "Galarian", + "types": [ + "Fairy", + "Poison" + ] + } + }, + "default_form": 706, + "evolutions": [], + "dex": "Weezing alternately shrinks and inflates its twin bodies to mix together toxic gases inside. The more the gases are mixed, the more powerful the toxins become. The Pokémon also becomes more putrid.", + "attack": 174, + "defense": 197, + "stamina": 163, + "height": 1.2, + "weight": 9.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Tackle", + "Infestation" + ], + "chargedmove": [ + "Sludge Bomb", + "Shadow Ball", + "Dark Pulse" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "111": { + "name": "Rhyhorn", + "forms": { + "846": { + "name": "Normal", + "evolved_form": 849 + }, + "847": { + "name": "Shadow", + "evolved_form": 850 + }, + "848": { + "name": "Purified", + "evolved_form": 851 + } + }, + "default_form": 846, + "evolutions": [ + 112 + ], + "types": [ + "Ground", + "Rock" + ], + "dex": "Rhyhorn's brain is very small. It is so dense, while on a run it forgets why it started running in the first place. It apparently remembers sometimes if it demolishes something.", + "attack": 140, + "defense": 127, + "stamina": 190, + "height": 1, + "weight": 115, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Mud Slap", + "Rock Smash" + ], + "chargedmove": [ + "Bulldoze", + "Horn Attack", + "Stomp" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "112": { + "name": "Rhydon", + "forms": { + "849": { + "name": "Normal", + "evolved_form": 852 + }, + "850": { + "name": "Shadow", + "evolved_form": 853 + }, + "851": { + "name": "Purified", + "evolved_form": 854 + } + }, + "default_form": 849, + "evolutions": [ + 464 + ], + "types": [ + "Ground", + "Rock" + ], + "dex": "Rhydon has a horn that serves as a drill. It is used for destroying rocks and boulders. This Pokémon occasionally rams into streams of magma, but the armor-like hide prevents it from feeling the heat.", + "attack": 222, + "defense": 171, + "stamina": 233, + "height": 1.9, + "weight": 120, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.059999999, + "quickmove": [ + "Mud Slap", + "Rock Smash" + ], + "chargedmove": [ + "Surf", + "Earthquake", + "Stone Edge" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "113": { + "name": "Chansey", + "forms": {}, + "default_form": "", + "evolutions": [ + 242 + ], + "types": [ + "Normal" + ], + "dex": "Chansey lays nutritionally excellent eggs on an everyday basis. The eggs are so delicious, they are easily and eagerly devoured by even those people who have lost their appetite.", + "attack": 60, + "defense": 128, + "stamina": 487, + "height": 1.1, + "weight": 34.599998, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Pound", + "Zen Headbutt" + ], + "chargedmove": [ + "Psychic", + "Hyper Beam", + "Dazzling Gleam" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "114": { + "name": "Tangela", + "forms": {}, + "default_form": "", + "evolutions": [ + 465 + ], + "types": [ + "Grass" + ], + "dex": "Tangela's vines snap off easily if they are grabbed. This happens without pain, allowing it to make a quick getaway. The lost vines are replaced by newly grown vines the very next day.", + "attack": 183, + "defense": 169, + "stamina": 163, + "height": 1, + "weight": 35, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Vine Whip", + "Infestation" + ], + "chargedmove": [ + "Grass Knot", + "Sludge Bomb", + "Solar Beam" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "115": { + "name": "Kangaskhan", + "forms": { + "839": { + "name": "Normal" + }, + "840": { + "name": "Shadow" + }, + "841": { + "name": "Purified" + } + }, + "default_form": 839, + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "If you come across a young Kangaskhan playing by itself, you must never disturb it or attempt to catch it. The baby Pokémon's parent is sure to be in the area, and it will become violently enraged at you.", + "attack": 181, + "defense": 165, + "stamina": 233, + "height": 2.2, + "weight": 80, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Mud Slap", + "Low Kick" + ], + "chargedmove": [ + "Crunch", + "Earthquake", + "Outrage" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "116": { + "name": "Horsea", + "forms": {}, + "default_form": "", + "evolutions": [ + 117 + ], + "types": [ + "Water" + ], + "dex": "If Horsea senses danger, it will reflexively spray a dense black ink from its mouth and try to escape. This Pokémon swims by cleverly flapping the fin on its back.", + "attack": 129, + "defense": 103, + "stamina": 102, + "height": 0.40000001, + "weight": 8, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Bubble" + ], + "chargedmove": [ + "Bubble Beam", + "Dragon Pulse", + "Flash Cannon" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "117": { + "name": "Seadra", + "forms": {}, + "default_form": "", + "evolutions": [ + 230 + ], + "types": [ + "Water" + ], + "dex": "Seadra generates whirlpools by spinning its body. The whirlpools are strong enough to swallow even fishing boats. This Pokémon weakens prey with these currents, then swallows it whole.", + "attack": 187, + "defense": 156, + "stamina": 146, + "height": 1.2, + "weight": 25, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Water Gun", + "Dragon Breath" + ], + "chargedmove": [ + "Aurora Beam", + "Dragon Pulse", + "Hydro Pump" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Dragon Scale", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "118": { + "name": "Goldeen", + "forms": {}, + "default_form": "", + "evolutions": [ + 119 + ], + "types": [ + "Water" + ], + "dex": "Goldeen loves swimming wild and free in rivers and ponds. If one of these Pokémon is placed in an aquarium, it will shatter even the thickest glass with one ram of its horn and make its escape.", + "attack": 123, + "defense": 110, + "stamina": 128, + "height": 0.60000002, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [ + "Peck", + "Mud Shot" + ], + "chargedmove": [ + "Water Pulse", + "Horn Attack", + "Aqua Tail" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "119": { + "name": "Seaking", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Seaking is very protective of its eggs. The male and female will take turns patrolling around their nest and eggs. The guarding of eggs by these Pokémon goes on for over a month.", + "attack": 175, + "defense": 147, + "stamina": 190, + "height": 1.3, + "weight": 39, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Peck", + "Waterfall" + ], + "chargedmove": [ + "Ice Beam", + "Water Pulse", + "Megahorn" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "120": { + "name": "Staryu", + "forms": {}, + "default_form": "", + "evolutions": [ + 121 + ], + "types": [ + "Water" + ], + "dex": "Staryu apparently communicates with the stars in the night sky by flashing the red core at the center of its body. If parts of its body are torn, this Pokémon simply regenerates the missing pieces and limbs.", + "attack": 137, + "defense": 112, + "stamina": 102, + "height": 0.80000001, + "weight": 34.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [ + "Tackle", + "Water Gun" + ], + "chargedmove": [ + "Swift", + "Bubble Beam", + "Power Gem" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "121": { + "name": "Starmie", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Psychic" + ], + "dex": "Starmie swims through water by spinning its star-shaped body as if it were a propeller on a ship. The core at the center of this Pokémon's body glows in seven colors.", + "attack": 210, + "defense": 184, + "stamina": 155, + "height": 1.1, + "weight": 80, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Hidden Power", + "Water Gun" + ], + "chargedmove": [ + "Hydro Pump", + "Power Gem", + "Psychic" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "122": { + "name": "Mr.Mime", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Fairy" + ], + "dex": "Mr. Mime is a master of pantomime. Its gestures and motions convince watchers that something unseeable actually exists. Once the watchers are convinced, the unseeable thing exists as if it were real.", + "attack": 192, + "defense": 205, + "stamina": 120, + "height": 1.29999995231628, + "weight": 54.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.300000011920929, + "flee_rate": 0.0900000035762787, + "quickmove": [ + "Confusion", + "Zen Headbutt" + ], + "chargedmove": [ + "Psybeam", + "Psychic", + "Shadow Ball" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": 75, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "123": { + "name": "Scyther", + "forms": { + "247": { + "name": "Normal", + "evolved_form": 250 + }, + "248": { + "name": "Shadow", + "evolved_form": 251 + }, + "249": { + "name": "Purified", + "evolved_form": 252 + } + }, + "default_form": 247, + "evolutions": [ + 212 + ], + "types": [ + "Bug", + "Flying" + ], + "dex": "Scyther is blindingly fast. Its blazing speed enhances the effectiveness of the twin scythes on its forearms. This Pokémon's scythes are so effective, they can slice through thick logs in one wicked stroke.", + "attack": 218, + "defense": 170, + "stamina": 172, + "height": 1.5, + "weight": 56, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Fury Cutter", + "Air Slash" + ], + "chargedmove": [ + "Night Slash", + "X Scissor", + "Aerial Ace" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "Metal Coat", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "124": { + "name": "Jynx", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice", + "Psychic" + ], + "dex": "Jynx walks rhythmically, swaying and shaking its hips as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without giving any thought to what they are doing.", + "attack": 223, + "defense": 151, + "stamina": 163, + "height": 1.4, + "weight": 40.599998, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Frost Breath", + "Confusion" + ], + "chargedmove": [ + "Draining Kiss", + "Avalanche", + "Psyshock" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "125": { + "name": "Electabuzz", + "forms": { + "640": { + "name": "Normal", + "evolved_form": 643 + }, + "641": { + "name": "Shadow", + "evolved_form": 644 + }, + "642": { + "name": "Purified", + "evolved_form": 645 + } + }, + "default_form": 640, + "evolutions": [ + 466 + ], + "types": [ + "Electric" + ], + "dex": "When a storm arrives, gangs of this Pokémon compete with each other to scale heights that are likely to be stricken by lightning bolts. Some towns use Electabuzz in place of lightning rods.", + "attack": 198, + "defense": 158, + "stamina": 163, + "height": 1.1, + "weight": 30, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Thunder Shock", + "Low Kick" + ], + "chargedmove": [ + "Thunder Punch", + "Thunderbolt", + "Thunder" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "126": { + "name": "Magmar", + "forms": { + "634": { + "name": "Normal", + "evolved_form": 637 + }, + "635": { + "name": "Shadow", + "evolved_form": 638 + }, + "636": { + "name": "Purified", + "evolved_form": 639 + } + }, + "default_form": 634, + "evolutions": [ + 467 + ], + "types": [ + "Fire" + ], + "dex": "In battle, Magmar blows out intensely hot flames from all over its body to intimidate its opponent. This Pokémon's fiery bursts create heat waves that ignite grass and trees in its surroundings.", + "attack": 206, + "defense": 154, + "stamina": 163, + "height": 1.3, + "weight": 44.5, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Ember", + "Karate Chop" + ], + "chargedmove": [ + "Fire Blast", + "Fire Punch", + "Flamethrower" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "127": { + "name": "Pinsir", + "forms": { + "898": { + "name": "Normal" + }, + "899": { + "name": "Shadow" + }, + "900": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "Pinsir has a pair of massive horns. Protruding from the surface of these horns are thorns. These thorns are driven deeply into the foe's body when the pincer closes, making it tough for the foe to escape.", + "attack": 238, + "defense": 182, + "stamina": 163, + "height": 1.5, + "weight": 55, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Rock Smash", + "Bug Bite" + ], + "chargedmove": [ + "Vice Grip", + "X Scissor", + "Close Combat" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "128": { + "name": "Tauros", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "This Pokémon is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself.", + "attack": 198, + "defense": 183, + "stamina": 181, + "height": 1.4, + "weight": 88.400002, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Tackle", + "Zen Headbutt" + ], + "chargedmove": [ + "Horn Attack", + "Iron Head", + "Earthquake" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "129": { + "name": "Magikarp", + "forms": { + "253": { + "name": "Normal", + "evolved_form": 256 + }, + "254": { + "name": "Shadow", + "evolved_form": 257 + }, + "255": { + "name": "Purified", + "evolved_form": 258 + } + }, + "default_form": 253, + "evolutions": [ + 130 + ], + "types": [ + "Water" + ], + "dex": "Magikarp is virtually useless in battle as it can only splash around. As a result, it is considered to be weak. However, it is actually a very hardy Pokémon that can survive in any body of water no matter how polluted it is.", + "attack": 29, + "defense": 85, + "stamina": 85, + "height": 0.89999998, + "weight": 10, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.69999999, + "flee_rate": 0.15000001, + "quickmove": [ + "Splash" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 400, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "130": { + "name": "Gyarados", + "forms": { + "256": { + "name": "Normal" + }, + "257": { + "name": "Shadow" + }, + "258": { + "name": "Purified" + } + }, + "default_form": 256, + "evolutions": [], + "types": [ + "Water", + "Flying" + ], + "dex": "Once Gyarados goes on a rampage, its ferociously violent blood doesn't calm until it has burned everything down. There are records of this Pokémon's rampages lasting a whole month.", + "attack": 237, + "defense": 186, + "stamina": 216, + "height": 6.5, + "weight": 235, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Bite", + "Waterfall" + ], + "chargedmove": [ + "Hydro Pump", + "Crunch", + "Outrage" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "131": { + "name": "Lapras", + "forms": { + "322": { + "name": "Normal" + }, + "323": { + "name": "Shadow" + }, + "324": { + "name": "Purified" + } + }, + "default_form": 322, + "evolutions": [], + "types": [ + "Water", + "Ice" + ], + "dex": "People have driven Lapras almost to the point of extinction. In the evenings, this Pokémon is said to sing plaintively as it seeks what few others of its kind still remain.", + "attack": 165, + "defense": 174, + "stamina": 277, + "height": 2.5, + "weight": 220, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Frost Breath", + "Water Gun" + ], + "chargedmove": [ + "Hydro Pump", + "Surf", + "Blizzard" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "132": { + "name": "Ditto", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Ditto rearranges its cell structure to transform itself into other shapes. However, if it tries to transform itself into something by relying on its memory, this Pokémon manages to get details wrong.", + "attack": 91, + "defense": 91, + "stamina": 134, + "height": 0.30000001, + "weight": 4, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Transform" + ], + "chargedmove": [ + "Struggle" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "133": { + "name": "Eevee", + "forms": {}, + "default_form": "", + "evolutions": [ + 134, + 135, + 136, + 196, + 197, + 470, + 471, + 700 + ], + "types": [ + "Normal" + ], + "dex": "Eevee has an unstable genetic makeup that suddenly mutates due to the environment in which it lives. Radiation from various stones causes this Pokémon to evolve.", + "attack": 104, + "defense": 114, + "stamina": 146, + "height": 0.30000001, + "weight": 6.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Quick Attack", + "Tackle" + ], + "chargedmove": [ + "Dig", + "Swift" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "134": { + "name": "Vaporeon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Vaporeon underwent a spontaneous mutation and grew fins and gills that allow it to live underwater. This Pokémon has the ability to freely control water.", + "attack": 205, + "defense": 161, + "stamina": 277, + "height": 1, + "weight": 29, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Water Gun" + ], + "chargedmove": [ + "Water Pulse", + "Hydro Pump", + "Aqua Tail" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "135": { + "name": "Jolteon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "Jolteon's cells generate a low level of electricity. This power is amplified by the static electricity of its fur, enabling the Pokémon to drop thunderbolts. The bristling fur is made of electrically charged needles.", + "attack": 232, + "defense": 182, + "stamina": 163, + "height": 0.80000001, + "weight": 24.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Thunder Shock", + "Volt Switch" + ], + "chargedmove": [ + "Discharge", + "Thunderbolt", + "Thunder" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "136": { + "name": "Flareon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Flareon's fluffy fur has a functional purpose—it releases heat into the air so that its body does not get excessively hot. This Pokémon's body temperature can rise to a maximum of 1,650 degrees Fahrenheit.", + "attack": 246, + "defense": 179, + "stamina": 163, + "height": 0.89999998, + "weight": 25, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Ember", + "Fire Spin" + ], + "chargedmove": [ + "Fire Blast", + "Flamethrower", + "Overheat" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "137": { + "name": "Porygon", + "forms": { + "677": { + "name": "Normal", + "evolved_form": 680 + }, + "678": { + "name": "Shadow", + "evolved_form": 681 + }, + "679": { + "name": "Purified", + "evolved_form": 682 + } + }, + "default_form": 677, + "evolutions": [ + 233 + ], + "types": [ + "Normal" + ], + "dex": "Porygon is capable of reverting itself entirely back to program data and entering cyberspace. This Pokémon is copy protected so it cannot be duplicated by copying.", + "attack": 153, + "defense": 136, + "stamina": 163, + "height": 0.80000001, + "weight": 36.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Charge Beam", + "Hidden Power" + ], + "chargedmove": [ + "Solar Beam", + "Hyper Beam", + "Zap Cannon" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Up Grade", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "138": { + "name": "Omanyte", + "forms": { + "740": { + "name": "Normal", + "evolved_form": 743 + }, + "741": { + "name": "Shadow", + "evolved_form": 744 + }, + "742": { + "name": "Purified", + "evolved_form": 745 + } + }, + "default_form": 740, + "evolutions": [ + 139 + ], + "types": [ + "Rock", + "Water" + ], + "dex": "Omanyte is one of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by people. If attacked by an enemy, it withdraws itself inside its hard shell.", + "attack": 155, + "defense": 153, + "stamina": 111, + "height": 0.40000001, + "weight": 7.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Ancient Power", + "Bubble Beam", + "Rock Blast" + ], + "candy": 50, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "139": { + "name": "Omastar", + "forms": { + "743": { + "name": "Normal" + }, + "744": { + "name": "Shadow" + }, + "745": { + "name": "Purified" + } + }, + "default_form": 743, + "evolutions": [], + "types": [ + "Rock", + "Water" + ], + "dex": "Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large and heavy, causing its movements to become too slow and ponderous.", + "attack": 207, + "defense": 201, + "stamina": 172, + "height": 1, + "weight": 35, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Shot", + "Water Gun" + ], + "chargedmove": [ + "Ancient Power", + "Hydro Pump", + "Rock Blast" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "140": { + "name": "Kabuto", + "forms": {}, + "default_form": "", + "evolutions": [ + 141 + ], + "types": [ + "Rock", + "Water" + ], + "dex": "Kabuto is a Pokémon that has been regenerated from a fossil. However, in extremely rare cases, living examples have been discovered. The Pokémon has not changed at all for 300 million years.", + "attack": 148, + "defense": 140, + "stamina": 102, + "height": 0.5, + "weight": 11.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Scratch", + "Mud Shot" + ], + "chargedmove": [ + "Ancient Power", + "Aqua Jet", + "Rock Tomb" + ], + "candy": 50, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "141": { + "name": "Kabutops", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Water" + ], + "dex": "Kabutops swam underwater to hunt for its prey in ancient times. The Pokémon was apparently evolving from being a water dweller to living on land as evident from the beginnings of change in its gills and legs.", + "attack": 220, + "defense": 186, + "stamina": 155, + "height": 1.3, + "weight": 40.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Shot", + "Rock Smash" + ], + "chargedmove": [ + "Ancient Power", + "Water Pulse", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "142": { + "name": "Aerodactyl", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Flying" + ], + "dex": "Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from genetic material extracted from amber. It is imagined to have been the king of the skies in ancient times.", + "attack": 221, + "defense": 159, + "stamina": 190, + "height": 1.8, + "weight": 59, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Steel Wing", + "Bite" + ], + "chargedmove": [ + "Ancient Power", + "Iron Head", + "Hyper Beam" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "143": { + "name": "Snorlax", + "forms": { + "199": { + "name": "Normal" + }, + "200": { + "name": "Shadow" + }, + "201": { + "name": "Purified" + } + }, + "default_form": 199, + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Snorlax's typical day consists of nothing more than eating and sleeping. It is such a docile Pokémon that there are children who use its expansive belly as a place to play.", + "attack": 190, + "defense": 169, + "stamina": 330, + "height": 2.0999999, + "weight": 460, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Zen Headbutt", + "Lick" + ], + "chargedmove": [ + "Heavy Slam", + "Hyper Beam", + "Earthquake" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "144": { + "name": "Articuno", + "forms": { + "716": { + "name": "Normal" + }, + "717": { + "name": "Shadow" + }, + "718": { + "name": "Purified" + } + }, + "default_form": 716, + "evolutions": [], + "types": [ + "Ice", + "Flying" + ], + "dex": "Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall.", + "attack": 192, + "defense": 236, + "stamina": 207, + "height": 1.7, + "weight": 55.400002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.029999999, + "flee_rate": 0.1, + "quickmove": [ + "Frost Breath" + ], + "chargedmove": [ + "Ice Beam", + "Icy Wind", + "Blizzard" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "145": { + "name": "Zapdos", + "forms": { + "773": { + "name": "Normal" + }, + "774": { + "name": "Shadow" + }, + "775": { + "name": "Purified" + } + }, + "default_form": "773", + "evolutions": [], + "types": [ + "Electric", + "Flying" + ], + "dex": "Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. The Pokémon gains power if it is stricken by lightning bolts.", + "attack": 253, + "defense": 185, + "stamina": 207, + "height": 1.6, + "weight": 52.599998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.029999999, + "flee_rate": 0.1, + "quickmove": [ + "Charge Beam" + ], + "chargedmove": [ + "Zap Cannon", + "Thunderbolt", + "Thunder" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "146": { + "name": "Moltres", + "forms": { + "836": { + "name": "Normal" + }, + "837": { + "name": "Shadow" + }, + "838": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Flying" + ], + "dex": "Moltres is a legendary bird Pokémon that has the ability to control fire. If this Pokémon is injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself.", + "attack": 251, + "defense": 181, + "stamina": 207, + "height": 2, + "weight": 60, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.029999999, + "flee_rate": 0.1, + "quickmove": [ + "Fire Spin" + ], + "chargedmove": [ + "Fire Blast", + "Heat Wave", + "Overheat" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "147": { + "name": "Dratini", + "forms": { + "190": { + "name": "Normal", + "evolved_form": 193 + }, + "191": { + "name": "Shadow", + "evolved_form": 194 + }, + "192": { + "name": "Purified", + "evolved_form": 195 + } + }, + "default_form": 190, + "evolutions": [ + 148 + ], + "types": [ + "Dragon" + ], + "dex": "Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels.", + "attack": 119, + "defense": 91, + "stamina": 121, + "height": 1.8, + "weight": 3.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Dragon Breath", + "Iron Tail" + ], + "chargedmove": [ + "Wrap", + "Twister", + "Aqua Tail" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "148": { + "name": "Dragonair", + "forms": { + "193": { + "name": "Normal", + "evolved_form": 196 + }, + "194": { + "name": "Shadow", + "evolved_form": 197 + }, + "195": { + "name": "Purified", + "evolved_form": 198 + } + }, + "default_form": 193, + "evolutions": [ + 149 + ], + "types": [ + "Dragon" + ], + "dex": "Dragonair stores an enormous amount of energy inside its body. It is said to alter weather conditions in its vicinity by discharging energy from the crystals on its neck and tail.", + "attack": 163, + "defense": 135, + "stamina": 156, + "height": 4, + "weight": 16.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Dragon Breath", + "Iron Tail" + ], + "chargedmove": [ + "Wrap", + "Aqua Tail", + "Dragon Pulse" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "149": { + "name": "Dragonite", + "forms": { + "196": { + "name": "Normal" + }, + "197": { + "name": "Shadow" + }, + "198": { + "name": "Purified" + } + }, + "default_form": 196, + "evolutions": [], + "types": [ + "Dragon", + "Flying" + ], + "dex": "Dragonite is capable of circling the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land.", + "attack": 263, + "defense": 198, + "stamina": 209, + "height": 2.2, + "weight": 210, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Dragon Tail", + "Steel Wing" + ], + "chargedmove": [ + "Hurricane", + "Hyper Beam", + "Outrage" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "150": { + "name": "Mewtwo", + "forms": { + "133": { + "name": "Armored", + "types": [ + "Psychic" + ], + "asset_form": 11, + "attack": 182, + "defense": 278, + "stamina": 214, + "height": 2, + "weight": 122, + "quickmove": [ + "Iron Tail", + "Confusion" + ], + "chargedmove": [ + "Rock Slide", + "Dynamic Punch", + "Earthquake", + "Future Sight" + ] + }, + "134": { + "name": "Armored Intro", + "types": [ + "Psychic" + ], + "asset_form": 11, + "attack": 182, + "defense": 278, + "stamina": 214, + "height": 2, + "weight": 122, + "quickmove": [ + "Iron Tail", + "Confusion" + ], + "chargedmove": [ + "Rock Slide", + "Dynamic Punch", + "Earthquake", + "Future Sight" + ] + }, + "135": { + "name": "Normal", + "types": [ + "Psychic" + ], + "attack": 300, + "defense": 182, + "stamina": 214, + "height": 2, + "weight": 122, + "quickmove": [ + "Psycho Cut", + "Confusion" + ], + "chargedmove": [ + "Psychic", + "Thunderbolt", + "Ice Beam", + "Focus Blast", + "Flamethrower" + ] + } + }, + "default_form": "135", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Mewtwo is a Pokémon that was created by genetic manipulation. However, even though the scientific power of humans created this Pokémon's body, they failed to endow Mewtwo with a compassionate heart.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.059999999, + "flee_rate": 0.1, + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 2, + "weight": 122 + }, + "151": { + "name": "Mew", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Mew is said to possess the genetic composition of all Pokémon. It is capable of making itself invisible at will, so it entirely avoids notice even if it approaches people.", + "attack": 210, + "defense": 210, + "stamina": 225, + "height": 0.40000001, + "weight": 4, + "male_percent": "", + "female_percent": "", + "catch_rate": 100, + "flee_rate": "", + "quickmove": [ + "Pound", + "Steel Wing" + ], + "chargedmove": [ + "Psychic", + "Ancient Power", + "Dragon Claw" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "152": { + "name": "Chikorita", + "forms": {}, + "default_form": "", + "evolutions": [ + 153 + ], + "types": [ + "Grass" + ], + "dex": "In battle, Chikorita waves its leaf around to keep the foe at bay. However, a sweet fragrance also wafts from the leaf, becalming the battling Pokémon and creating a cozy, friendly atmosphere all around.", + "attack": 92, + "defense": 122, + "stamina": 128, + "height": 0.88999999, + "weight": 6.4000001, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Vine Whip", + "Tackle" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "153": { + "name": "Bayleef", + "forms": {}, + "default_form": "", + "evolutions": [ + 154 + ], + "types": [ + "Grass" + ], + "dex": "Bayleef's neck is ringed by curled-up leaves. Inside each tubular leaf is a small shoot of a tree. The fragrance of this shoot makes people peppy.", + "attack": 122, + "defense": 155, + "stamina": 155, + "height": 1.1900001, + "weight": 15.8, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.07, + "quickmove": [ + "Razor Leaf", + "Tackle" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot", + "Ancient Power" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "154": { + "name": "Meganium", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "The fragrance of Meganium's flower soothes and calms emotions. In battle, this Pokémon gives off more of its becalming scent to blunt the foe's fighting spirit.", + "attack": 168, + "defense": 202, + "stamina": 190, + "height": 1.8, + "weight": 100.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Razor Leaf", + "Vine Whip" + ], + "chargedmove": [ + "Petal Blizzard", + "Solar Beam", + "Earthquake" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "155": { + "name": "Cyndaquil", + "forms": {}, + "default_form": "", + "evolutions": [ + 156 + ], + "types": [ + "Fire" + ], + "dex": "Cyndaquil protects itself by flaring up the flames on its back. The flames are vigorous if the Pokémon is angry. However, if it is tired, the flames splutter fitfully with incomplete combustion.", + "attack": 116, + "defense": 93, + "stamina": 118, + "height": 0.50999999, + "weight": 7.9000001, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Ember", + "Tackle" + ], + "chargedmove": [ + "Flame Charge", + "Swift", + "Flamethrower" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "156": { + "name": "Quilava", + "forms": {}, + "default_form": "", + "evolutions": [ + 157 + ], + "types": [ + "Fire" + ], + "dex": "Quilava keeps its foes at bay with the intensity of its flames and gusts of superheated air. This Pokémon applies its outstanding nimbleness to dodge attacks even while scorching the foe with flames.", + "attack": 158, + "defense": 126, + "stamina": 151, + "height": 0.88999999, + "weight": 19, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.07, + "quickmove": [ + "Ember", + "Tackle" + ], + "chargedmove": [ + "Flame Charge", + "Dig", + "Flamethrower" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "157": { + "name": "Typhlosion", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Typhlosion obscures itself behind a shimmering heat haze that it creates using its intensely hot flames. This Pokémon creates blazing explosive blasts that burn everything to cinders.", + "attack": 223, + "defense": 173, + "stamina": 186, + "height": 1.7, + "weight": 79.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Ember", + "Shadow Claw" + ], + "chargedmove": [ + "Fire Blast", + "Overheat", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "158": { + "name": "Totodile", + "forms": {}, + "default_form": "", + "evolutions": [ + 159 + ], + "types": [ + "Water" + ], + "dex": "Despite the smallness of its body, Totodile's jaws are very powerful. While the Pokémon may think it is just playfully nipping, its bite has enough power to cause serious injury.", + "attack": 117, + "defense": 109, + "stamina": 137, + "height": 0.61000001, + "weight": 9.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Scratch" + ], + "chargedmove": [ + "Crunch", + "Aqua Jet", + "Water Pulse" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "159": { + "name": "Croconaw", + "forms": {}, + "default_form": "", + "evolutions": [ + 160 + ], + "types": [ + "Water" + ], + "dex": "Once Croconaw has clamped its jaws on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like barbed fishhooks, they become impossible to remove when they have sunk in.", + "attack": 150, + "defense": 142, + "stamina": 163, + "height": 1.09, + "weight": 25, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Scratch" + ], + "chargedmove": [ + "Crunch", + "Ice Punch", + "Water Pulse" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "160": { + "name": "Feraligatr", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Feraligatr intimidates its foes by opening its huge mouth. In battle, it will kick the ground hard with its thick and powerful hind legs to charge at the foe at an incredible speed.", + "attack": 205, + "defense": 188, + "stamina": 198, + "height": 2.3099999, + "weight": 88.800003, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Waterfall", + "Bite" + ], + "chargedmove": [ + "Crunch", + "Hydro Pump", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "161": { + "name": "Sentret", + "forms": {}, + "default_form": "", + "evolutions": [ + 162 + ], + "types": [ + "Normal" + ], + "dex": "When Sentret sleeps, it does so while another stands guard. The sentry wakes the others at the first sign of danger. When this Pokémon becomes separated from its pack, it becomes incapable of sleep due to fear.", + "attack": 79, + "defense": 73, + "stamina": 111, + "height": 0.79000002, + "weight": 6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Scratch", + "Quick Attack" + ], + "chargedmove": [ + "Dig", + "Brick Break", + "Grass Knot" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "162": { + "name": "Furret", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Furret has a very slim build. When under attack, it can slickly squirm through narrow spaces and get away. In spite of its short limbs, this Pokémon is very nimble and fleet.", + "attack": 148, + "defense": 125, + "stamina": 198, + "height": 1.8, + "weight": 32.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Quick Attack", + "Sucker Punch" + ], + "chargedmove": [ + "Dig", + "Brick Break", + "Hyper Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "163": { + "name": "Hoothoot", + "forms": {}, + "default_form": "", + "evolutions": [ + 164 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Hoothoot has an internal organ that senses and tracks the earth's rotation. Using this special organ, this Pokémon begins hooting at precisely the same time every day.", + "attack": 67, + "defense": 88, + "stamina": 155, + "height": 0.70999998, + "weight": 21.200001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [ + "Feint Attack", + "Peck" + ], + "chargedmove": [ + "Aerial Ace", + "Sky Attack", + "Night Shade" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "164": { + "name": "Noctowl", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "Noctowl never fails at catching prey in darkness. This Pokémon owes its success to its superior vision that allows it to see in minimal light, and to its soft, supple wings that make no sound in flight.", + "attack": 145, + "defense": 156, + "stamina": 225, + "height": 1.6, + "weight": 40.799999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Wing Attack", + "Extrasensory" + ], + "chargedmove": [ + "Psychic", + "Sky Attack", + "Night Shade" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "165": { + "name": "Ledyba", + "forms": {}, + "default_form": "", + "evolutions": [ + 166 + ], + "types": [ + "Bug", + "Flying" + ], + "dex": "Ledyba secretes an aromatic fluid from where its legs join its body. This fluid is used for communicating with others. This Pokémon conveys its feelings to others by altering the fluid's scent.", + "attack": 72, + "defense": 118, + "stamina": 120, + "height": 0.99000001, + "weight": 10.8, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Bug Bite" + ], + "chargedmove": [ + "Silver Wind", + "Swift", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "166": { + "name": "Ledian", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "It is said that in lands with clean air, where the stars fill the sky, there live Ledian in countless numbers. There is a good reason for this—the Pokémon uses the light of the stars as its energy.", + "attack": 107, + "defense": 179, + "stamina": 146, + "height": 1.4, + "weight": 35.599998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Struggle Bug", + "Bug Bite" + ], + "chargedmove": [ + "Bug Buzz", + "Silver Wind", + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "167": { + "name": "Spinarak", + "forms": {}, + "default_form": "", + "evolutions": [ + 168 + ], + "types": [ + "Bug", + "Poison" + ], + "dex": "The web spun by Spinarak can be considered its second nervous system. It is said that this Pokémon can determine what kind of prey is touching its web just by the tiny vibrations it feels through the web's strands.", + "attack": 105, + "defense": 73, + "stamina": 120, + "height": 0.50999999, + "weight": 8.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Poison Sting", + "Bug Bite" + ], + "chargedmove": [ + "Night Slash", + "Signal Beam", + "Cross Poison" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "168": { + "name": "Ariados", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Poison" + ], + "dex": "Ariados's feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. This Pokémon constricts the foe with thin and strong silk webbing.", + "attack": 161, + "defense": 124, + "stamina": 172, + "height": 1.09, + "weight": 33.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Poison Sting", + "Infestation" + ], + "chargedmove": [ + "Shadow Sneak", + "Megahorn", + "Cross Poison" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "169": { + "name": "Crobat", + "forms": { + "202": { + "name": "Normal" + }, + "203": { + "name": "Shadow" + }, + "204": { + "name": "Purified" + } + }, + "default_form": 202, + "evolutions": [], + "types": [ + "Poison", + "Flying" + ], + "dex": "Crobat sneaks up on its intended prey using wings that barely make a sound. This Pokémon rests by hanging on a tree branch with its rear legs that serve as wings.", + "attack": 194, + "defense": 178, + "stamina": 198, + "height": 1.8, + "weight": 75, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Air Slash", + "Bite" + ], + "chargedmove": [ + "Shadow Ball", + "Air Cutter", + "Sludge Bomb" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "170": { + "name": "Chinchou", + "forms": {}, + "default_form": "", + "evolutions": [ + 171 + ], + "types": [ + "Water", + "Electric" + ], + "dex": "Chinchou's two antennas are filled with cells that generate strong electricity. This Pokémon's cells create so much electrical power, it even makes itself tingle slightly.", + "attack": 106, + "defense": 97, + "stamina": 181, + "height": 0.50999999, + "weight": 12, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Bubble", + "Spark" + ], + "chargedmove": [ + "Water Pulse", + "Thunderbolt", + "Bubble Beam" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "171": { + "name": "Lanturn", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Electric" + ], + "dex": "Lanturn is known to emit light. If you peer down into the dark sea from a ship at night, you can sometimes see this Pokémon's light rising from the depths where it swims. It gives the sea an appearance of a starlit night.", + "attack": 146, + "defense": 137, + "stamina": 268, + "height": 1.1900001, + "weight": 22.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Charge Beam" + ], + "chargedmove": [ + "Hydro Pump", + "Thunderbolt", + "Thunder" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "172": { + "name": "Pichu", + "forms": {}, + "default_form": "", + "evolutions": [ + 25 + ], + "types": [ + "Electric" + ], + "dex": "When Pichu plays with others, it may short out electricity with another Pichu, creating a shower of sparks. In that event, this Pokémon will begin crying, startled by the flash of sparks.", + "attack": 77, + "defense": 53, + "stamina": 85, + "height": 0.30000001, + "weight": 2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": "", + "flee_rate": 0.050000001, + "quickmove": [ + "Thunder Shock" + ], + "chargedmove": [ + "Thunderbolt", + "Disarming Voice", + "Thunder Punch" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "173": { + "name": "Cleffa", + "forms": {}, + "default_form": "", + "evolutions": [ + 35 + ], + "types": [ + "Fairy" + ], + "dex": "On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance through the night and stop only at the break of day, when these Pokémon quench their thirst with the morning dew.", + "attack": 75, + "defense": 79, + "stamina": 137, + "height": 0.30000001, + "weight": 3, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": "", + "flee_rate": 0.050000001, + "quickmove": [ + "Pound", + "Zen Headbutt" + ], + "chargedmove": [ + "Grass Knot", + "Psyshock", + "Signal Beam" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "174": { + "name": "Igglybuff", + "forms": {}, + "default_form": "", + "evolutions": [ + 39 + ], + "types": [ + "Normal", + "Fairy" + ], + "dex": "Igglybuff has a soft and plushy body that feels very much like a marshmallow. From this body wafts a gently sweet fragrance that soothes and calms the emotions of its foes.", + "attack": 69, + "defense": 32, + "stamina": 207, + "height": 0.30000001, + "weight": 1, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": "", + "flee_rate": 0.050000001, + "quickmove": [ + "Pound", + "Feint Attack" + ], + "chargedmove": [ + "Wild Charge", + "Shadow Ball", + "Psychic" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "175": { + "name": "Togepi", + "forms": {}, + "default_form": "", + "evolutions": [ + 176 + ], + "types": [ + "Fairy" + ], + "dex": "As its energy, Togepi uses the positive emotions of compassion and pleasure exuded by people and Pokémon. This Pokémon stores up feelings of happiness inside its shell, then shares them with others.", + "attack": 67, + "defense": 116, + "stamina": 111, + "height": 0.30000001, + "weight": 1.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": "", + "flee_rate": 0.050000001, + "quickmove": [ + "Hidden Power", + "Peck" + ], + "chargedmove": [ + "Ancient Power", + "Psyshock", + "Dazzling Gleam" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "176": { + "name": "Togetic", + "forms": {}, + "default_form": "", + "evolutions": [ + 468 + ], + "types": [ + "Fairy", + "Flying" + ], + "dex": "Togetic is said to be a Pokémon that brings good fortune. When the Pokémon spots someone who is pure of heart, it is said to appear and share its happiness with that person.", + "attack": 139, + "defense": 181, + "stamina": 146, + "height": 0.61000001, + "weight": 3.2, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.050000001, + "quickmove": [ + "Extrasensory", + "Hidden Power" + ], + "chargedmove": [ + "Ancient Power", + "Dazzling Gleam", + "Aerial Ace" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "177": { + "name": "Natu", + "forms": {}, + "default_form": "", + "evolutions": [ + 178 + ], + "types": [ + "Psychic", + "Flying" + ], + "dex": "Natu has a highly developed jumping ability. The Pokémon flaps and leaps onto tree branches that are taller than grown-up people to pick at the tree's new shoots.", + "attack": 134, + "defense": 89, + "stamina": 120, + "height": 0.2, + "weight": 2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.15000001, + "quickmove": [ + "Peck", + "Quick Attack" + ], + "chargedmove": [ + "Night Shade", + "Psyshock", + "Drill Peck" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "178": { + "name": "Xatu", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Flying" + ], + "dex": "Xatu is known to stand motionless while staring at the sun all day long. Some people revere it as a mystical Pokémon out of their belief that Xatu is in possession of the power to see into the future.", + "attack": 192, + "defense": 146, + "stamina": 163, + "height": 1.5, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Air Slash", + "Feint Attack" + ], + "chargedmove": [ + "Ominous Wind", + "Futuresight", + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "179": { + "name": "Mareep", + "forms": { + "646": { + "name": "Normal", + "evolved_form": 649 + }, + "647": { + "name": "Shadow", + "evolved_form": 650 + }, + "648": { + "name": "Purified", + "evolved_form": 651 + } + }, + "default_form": 646, + "evolutions": [ + 180 + ], + "types": [ + "Electric" + ], + "dex": "Mareep's fluffy coat of wool rubs together and builds a static charge. The more static electricity is charged, the more brightly the lightbulb at the tip of its tail glows.", + "attack": 114, + "defense": 79, + "stamina": 146, + "height": 0.61000001, + "weight": 7.8000002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Thunder Shock" + ], + "chargedmove": [ + "Body Slam", + "Thunderbolt", + "Discharge" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "180": { + "name": "Flaaffy", + "forms": { + "649": { + "name": "Normal", + "evolved_form": 652 + }, + "650": { + "name": "Shadow", + "evolved_form": 653 + }, + "651": { + "name": "Purified", + "evolved_form": 654 + } + }, + "default_form": 649, + "evolutions": [ + 181 + ], + "types": [ + "Electric" + ], + "dex": "Flaaffy's wool quality changes so that it can generate a high amount of static electricity with a small amount of wool. The bare and slick parts of its hide are shielded against electricity.", + "attack": 145, + "defense": 109, + "stamina": 172, + "height": 0.79000002, + "weight": 13.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [ + "Tackle", + "Charge Beam" + ], + "chargedmove": [ + "Power Gem", + "Thunderbolt", + "Discharge" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "181": { + "name": "Ampharos", + "forms": { + "652": { + "name": "Normal" + }, + "653": { + "name": "Shadow" + }, + "654": { + "name": "Purified" + } + }, + "default_form": 652, + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "Ampharos gives off so much light that it can be seen even from space. People in the old days used the light of this Pokémon to send signals back and forth with others far away.", + "attack": 211, + "defense": 169, + "stamina": 207, + "height": 1.4, + "weight": 61.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Charge Beam", + "Volt Switch" + ], + "chargedmove": [ + "Zap Cannon", + "Focus Blast", + "Thunder" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "182": { + "name": "Bellossom", + "forms": { + "274": { + "name": "Normal" + }, + "275": { + "name": "Shadow" + }, + "276": { + "name": "Purified" + } + }, + "default_form": 274, + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "A Bellossom grows flowers more beautifully if it has evolved from a smelly Gloom—the more stinky the better. At night, this Pokémon closes its petals and goes to sleep.", + "attack": 169, + "defense": 186, + "stamina": 181, + "height": 0.41, + "weight": 5.8000002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Razor Leaf", + "Acid" + ], + "chargedmove": [ + "Leaf Blade", + "Petal Blizzard", + "Dazzling Gleam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "183": { + "name": "Marill", + "forms": {}, + "default_form": "", + "evolutions": [ + 184 + ], + "types": [ + "Water", + "Fairy" + ], + "dex": "When fishing for food at the edge of a fast-running stream, Marill wraps its tail around the trunk of a tree. This Pokémon's tail is flexible and configured to stretch.", + "attack": 37, + "defense": 93, + "stamina": 172, + "height": 0.41, + "weight": 8.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Bubble" + ], + "chargedmove": [ + "Bubble Beam", + "Aqua Tail", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "184": { + "name": "Azumarill", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Fairy" + ], + "dex": "Azumarill can make balloons out of air. It makes these air balloons if it spots a drowning Pokémon. The air balloons enable the Pokémon in trouble to breathe.", + "attack": 112, + "defense": 152, + "stamina": 225, + "height": 0.79000002, + "weight": 28.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Rock Smash", + "Bubble" + ], + "chargedmove": [ + "Play Rough", + "Hydro Pump", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "185": { + "name": "Sudowoodo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock" + ], + "dex": "Sudowoodo camouflages itself as a tree to avoid being attacked by enemies. However, because its hands remain green throughout the year, the Pokémon is easily identified as a fake during the winter.", + "attack": 167, + "defense": 176, + "stamina": 172, + "height": 1.1900001, + "weight": 38, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Rock Throw", + "Counter" + ], + "chargedmove": [ + "Stone Edge", + "Earthquake", + "Rock Slide" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "186": { + "name": "Politoed", + "forms": { + "244": { + "name": "Normal" + }, + "245": { + "name": "Shadow" + }, + "246": { + "name": "Purified" + } + }, + "default_form": 244, + "evolutions": [], + "types": [ + "Water" + ], + "dex": "The curled hair on Politoed's head is proof of its status as a king. It is said that the longer and more curled the hair, the more respect this Pokémon earns from its peers.", + "attack": 174, + "defense": 179, + "stamina": 207, + "height": 1.09, + "weight": 33.900002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Shot", + "Bubble" + ], + "chargedmove": [ + "Hydro Pump", + "Blizzard", + "Surf" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "187": { + "name": "Hoppip", + "forms": {}, + "default_form": "", + "evolutions": [ + 188 + ], + "types": [ + "Grass", + "Flying" + ], + "dex": "This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, Hoppip links its leaves with other Hoppip to prepare against being blown away.", + "attack": 67, + "defense": 94, + "stamina": 111, + "height": 0.41, + "weight": 0.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.12, + "quickmove": [ + "Tackle", + "Bullet Seed" + ], + "chargedmove": [ + "Grass Knot", + "Dazzling Gleam", + "Seed Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "188": { + "name": "Skiploom", + "forms": {}, + "default_form": "", + "evolutions": [ + 189 + ], + "types": [ + "Grass", + "Flying" + ], + "dex": "Skiploom's flower blossoms when the temperature rises above 64 degrees Fahrenheit. How much the flower opens depends on the temperature. For that reason, this Pokémon is sometimes used as a thermometer.", + "attack": 91, + "defense": 120, + "stamina": 146, + "height": 0.61000001, + "weight": 1, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [ + "Tackle", + "Bullet Seed" + ], + "chargedmove": [ + "Grass Knot", + "Dazzling Gleam", + "Energy Ball" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "189": { + "name": "Jumpluff", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Flying" + ], + "dex": "Jumpluff rides warm southern winds to cross the sea and fly to foreign lands. The Pokémon descends to the ground when it encounters cold air while it is floating.", + "attack": 118, + "defense": 183, + "stamina": 181, + "height": 0.79000002, + "weight": 3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Infestation", + "Bullet Seed" + ], + "chargedmove": [ + "Energy Ball", + "Dazzling Gleam", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "190": { + "name": "Aipom", + "forms": {}, + "default_form": "", + "evolutions": [ + 424 + ], + "types": [ + "Normal" + ], + "dex": "Aipom's tail ends in a hand-like appendage that can be cleverly manipulated. However, because the Pokémon uses its tail so much, its real hands have become rather clumsy.", + "attack": 136, + "defense": 112, + "stamina": 146, + "height": 0.79000002, + "weight": 11.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Scratch", + "Astonish" + ], + "chargedmove": [ + "Low Sweep", + "Swift", + "Aerial Ace" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "191": { + "name": "Sunkern", + "forms": {}, + "default_form": "", + "evolutions": [ + 192 + ], + "types": [ + "Grass" + ], + "dex": "Sunkern tries to move as little as it possibly can. It does so because it tries to conserve all the nutrients it has stored in its body for its evolution. It will not eat a thing, subsisting only on morning dew.", + "attack": 55, + "defense": 55, + "stamina": 102, + "height": 0.30000001, + "weight": 1.8, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.090000004, + "quickmove": [ + "Razor Leaf", + "Cut" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot", + "Seed Bomb" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sun Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "192": { + "name": "Sunflora", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "Sunflora converts solar energy into nutrition. It moves around actively in the daytime when it is warm. It stops moving as soon as the sun goes down for the night.", + "attack": 185, + "defense": 135, + "stamina": 181, + "height": 0.79000002, + "weight": 8.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Razor Leaf", + "Bullet Seed" + ], + "chargedmove": [ + "Solar Beam", + "Petal Blizzard", + "Sludge Bomb" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "193": { + "name": "Yanma", + "forms": {}, + "default_form": "", + "evolutions": [ + 469 + ], + "types": [ + "Bug", + "Flying" + ], + "dex": "Yanma is capable of seeing 360 degrees without having to move its eyes. It is a great flier that is adept at making sudden stops and turning midair. This Pokémon uses its flying ability to quickly chase down targeted prey.", + "attack": 154, + "defense": 94, + "stamina": 163, + "height": 1.1900001, + "weight": 38, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Quick Attack", + "Wing Attack" + ], + "chargedmove": [ + "Ancient Power", + "Aerial Ace", + "Silver Wind" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "194": { + "name": "Wooper", + "forms": {}, + "default_form": "", + "evolutions": [ + 195 + ], + "types": [ + "Water", + "Ground" + ], + "dex": "Wooper usually lives in water. However, it occasionally comes out onto land in search of food. On land, it coats its body with a gooey, toxic film.", + "attack": 75, + "defense": 66, + "stamina": 146, + "height": 0.41, + "weight": 8.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Mud Bomb", + "Dig", + "Body Slam" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "195": { + "name": "Quagsire", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Ground" + ], + "dex": "Quagsire hunts for food by leaving its mouth wide open in water and waiting for its prey to blunder in unaware. Because the Pokémon does not move, it does not get very hungry.", + "attack": 152, + "defense": 143, + "stamina": 216, + "height": 1.4, + "weight": 75, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Sludge Bomb", + "Earthquake", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "196": { + "name": "Espeon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Espeon is extremely loyal to any Trainer it considers to be worthy. It is said that this Pokémon developed its precognitive powers to protect its Trainer from harm.", + "attack": 261, + "defense": 175, + "stamina": 163, + "height": 0.88999999, + "weight": 26.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Confusion", + "Zen Headbutt" + ], + "chargedmove": [ + "Psybeam", + "Psychic", + "Futuresight" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "197": { + "name": "Umbreon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark" + ], + "dex": "Umbreon evolved as a result of exposure to the moon's waves. It hides silently in darkness and waits for its foes to make a move. The rings on its body glow when it leaps to attack.", + "attack": 126, + "defense": 240, + "stamina": 216, + "height": 0.99000001, + "weight": 27, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Feint Attack", + "Snarl" + ], + "chargedmove": [ + "Dark Pulse", + "Foul Play" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "198": { + "name": "Murkrow", + "forms": { + "855": { + "name": "Normal", + "evolved_form": 858 + }, + "856": { + "name": "Shadow", + "evolved_form": 859 + }, + "857": { + "name": "Purified", + "evolved_form": 860 + } + }, + "default_form": 855, + "evolutions": [ + 430 + ], + "types": [ + "Dark", + "Flying" + ], + "dex": "Murkrow was feared and loathed as the alleged bearer of ill fortune. This Pokémon shows strong interest in anything that sparkles or glitters. It will even try to steal rings from women.", + "attack": 175, + "defense": 87, + "stamina": 155, + "height": 0.50999999, + "weight": 2.0999999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Peck", + "Feint Attack" + ], + "chargedmove": [ + "Drill Peck", + "Foul Play", + "Dark Pulse" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "199": { + "name": "Slowking", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Psychic" + ], + "dex": "Slowking undertakes research every day in an effort to solve the mysteries of the world. However, this Pokémon apparently forgets everything it has learned if the Shellder on its head comes off.", + "attack": 177, + "defense": 180, + "stamina": 216, + "height": 2.01, + "weight": 79.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Water Gun", + "Confusion" + ], + "chargedmove": [ + "Blizzard", + "Psychic", + "Fire Blast" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "200": { + "name": "Misdreavus", + "forms": { + "719": { + "name": "Normal", + "evolved_form": 722 + }, + "720": { + "name": "Shadow", + "evolved_form": 723 + }, + "721": { + "name": "Purified", + "evolved_form": 724 + } + }, + "default_form": 719, + "evolutions": [ + 429 + ], + "types": [ + "Ghost" + ], + "dex": "Misdreavus frightens people with a creepy, sobbing cry. The Pokémon apparently uses its red spheres to absorb the fearful feelings of foes and turn them into nutrition.", + "attack": 167, + "defense": 154, + "stamina": 155, + "height": 0.70999998, + "weight": 1, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.07, + "quickmove": [ + "Astonish", + "Hex" + ], + "chargedmove": [ + "Shadow Sneak", + "Dark Pulse", + "Ominous Wind" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "201": { + "name": "Unown", + "forms": { + "1": { + "name": "A", + "asset_form": 11 + }, + "2": { + "name": "B", + "asset_form": 12 + }, + "3": { + "name": "C", + "asset_form": 13 + }, + "4": { + "name": "D", + "asset_form": 14 + }, + "5": { + "name": "E", + "asset_form": 15 + }, + "6": { + "name": "F", + "asset_form": 16 + }, + "7": { + "name": "G", + "asset_form": 17 + }, + "8": { + "name": "H", + "asset_form": 18 + }, + "9": { + "name": "I", + "asset_form": 19 + }, + "10": { + "name": "J", + "asset_form": 20 + }, + "11": { + "name": "K", + "asset_form": 21 + }, + "12": { + "name": "L", + "asset_form": 22 + }, + "13": { + "name": "M", + "asset_form": 23 + }, + "14": { + "name": "N", + "asset_form": 24 + }, + "15": { + "name": "O", + "asset_form": 25 + }, + "16": { + "name": "P", + "asset_form": 26 + }, + "17": { + "name": "Q", + "asset_form": 27 + }, + "18": { + "name": "R", + "asset_form": 28 + }, + "19": { + "name": "S", + "asset_form": 29 + }, + "20": { + "name": "T", + "asset_form": 30 + }, + "21": { + "name": "U", + "asset_form": 31 + }, + "22": { + "name": "V", + "asset_form": 32 + }, + "23": { + "name": "W", + "asset_form": 33 + }, + "24": { + "name": "X", + "asset_form": 34 + }, + "25": { + "name": "Y", + "asset_form": 35 + }, + "26": { + "name": "Z", + "asset_form": 36 + }, + "27": { + "name": "Exclamation", + "asset_form": 37 + }, + "28": { + "name": "Question", + "asset_form": 38 + } + }, + "evolutions": [], + "default_form": 19, + "types": [ + "Psychic" + ], + "dex": "This Pokémon is shaped like ancient writing. It is a mystery as to which came first, the ancient writings or the various Unown. Research into this topic is ongoing but nothing is known.", + "attack": 136, + "defense": 91, + "stamina": 134, + "height": 0.50999999, + "weight": 5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Hidden Power" + ], + "chargedmove": [ + "Struggle" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "202": { + "name": "Wobbuffet", + "forms": { + "602": { + "name": "Normal" + }, + "603": { + "name": "No Evolve" + }, + "686": { + "name": "Shadow" + }, + "687": { + "name": "Purified" + } + }, + "default_form": 602, + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Wobbuffet does nothing but endure attacks—it won't attack on its own. However, it won't endure an attack on its tail. When that happens, the Pokémon will try to take the foe with it using Destiny Bond.", + "attack": 60, + "defense": 106, + "stamina": 382, + "height": 1.3, + "weight": 28.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [ + "Counter", + "Splash" + ], + "chargedmove": [ + "Mirror Coat" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "203": { + "name": "Girafarig", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Psychic" + ], + "dex": "Girafarig's rear head contains a tiny brain that is too small for thinking. However, the rear head doesn't need to sleep, so it can keep watch over its surroundings 24 hours a day.", + "attack": 182, + "defense": 133, + "stamina": 172, + "height": 1.5, + "weight": 41.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.07, + "quickmove": [ + "Tackle", + "Confusion" + ], + "chargedmove": [ + "Psychic", + "Thunderbolt", + "Mirror Coat" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "204": { + "name": "Pineco", + "forms": {}, + "default_form": "", + "evolutions": [ + 205 + ], + "types": [ + "Bug" + ], + "dex": "Pineco hangs from a tree branch and patiently waits for prey to come along. If the Pokémon is disturbed while eating by someone shaking its tree, it drops down to the ground and explodes with no warning.", + "attack": 108, + "defense": 122, + "stamina": 137, + "height": 0.61000001, + "weight": 7.1999998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.12, + "quickmove": [ + "Tackle", + "Bug Bite" + ], + "chargedmove": [ + "Gyro Ball", + "Rock Tomb", + "Sand Tomb" + ], + "candy": 50, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "205": { + "name": "Forretress", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Steel" + ], + "dex": "Forretress conceals itself inside its hardened steel shell. The shell is opened when the Pokémon is catching prey, but it does so at such a quick pace that the shell's inside cannot be seen.", + "attack": 161, + "defense": 205, + "stamina": 181, + "height": 1.1900001, + "weight": 125.8, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Bug Bite", + "Struggle Bug" + ], + "chargedmove": [ + "Heavy Slam", + "Earthquake", + "Rock Tomb" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "206": { + "name": "Dunsparce", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Dunsparce has a drill for its tail. It uses this tail to burrow into the ground backward. This Pokémon is known to make its nest in complex shapes deep under the ground.", + "attack": 131, + "defense": 128, + "stamina": 225, + "height": 1.5, + "weight": 14, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.2, + "quickmove": [ + "Bite", + "Astonish" + ], + "chargedmove": [ + "Dig", + "Rock Slide", + "Drill Run" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "207": { + "name": "Gligar", + "forms": { + "803": { + "name": "Normal", + "evolved_form": 806 + }, + "804": { + "name": "Shadow", + "evolved_form": 807 + }, + "805": { + "name": "Purified", + "evolved_form": 808 + } + }, + "default_form": 803, + "evolutions": [ + 472 + ], + "types": [ + "Ground", + "Flying" + ], + "dex": "Gligar glides through the air without a sound as if it were sliding. This Pokémon hangs on to the face of its foe using its clawed hind legs and the large pincers on its forelegs, then injects the prey with its poison barb.", + "attack": 143, + "defense": 184, + "stamina": 163, + "height": 1.09, + "weight": 64.800003, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Fury Cutter", + "Wing Attack" + ], + "chargedmove": [ + "Dig", + "Aerial Ace", + "Night Slash" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "208": { + "name": "Steelix", + "forms": { + "905": { + "name": "Normal" + }, + "906": { + "name": "Shadow" + }, + "907": { + "name": "Purified" + } + }, + "default_form": 905, + "evolutions": [], + "types": [ + "Steel", + "Ground" + ], + "dex": "Steelix lives even further underground than Onix. This Pokémon is known to dig toward the earth's core. There are records of this Pokémon reaching a depth of over six-tenths of a mile underground.", + "attack": 148, + "defense": 272, + "stamina": 181, + "height": 9.1899996, + "weight": 400, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Iron Tail", + "Dragon Tail" + ], + "chargedmove": [ + "Earthquake", + "Heavy Slam", + "Crunch" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "209": { + "name": "Snubbull", + "forms": {}, + "default_form": "", + "evolutions": [ + 210 + ], + "types": [ + "Fairy" + ], + "dex": "By baring its fangs and making a scary face, Snubbull sends smaller Pokémon scurrying away in terror. However, this Pokémon seems a little sad at making its foes flee.", + "attack": 137, + "defense": 85, + "stamina": 155, + "height": 0.61000001, + "weight": 7.8000002, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Bite" + ], + "chargedmove": [ + "Crunch", + "Dazzling Gleam", + "Brick Break" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "210": { + "name": "Granbull", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "Granbull has a particularly well-developed lower jaw. The enormous fangs are heavy, causing the Pokémon to tip its head back for balance. Unless it is startled, it will not try to bite indiscriminately.", + "attack": 212, + "defense": 131, + "stamina": 207, + "height": 1.4, + "weight": 48.700001, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.15000001, + "flee_rate": 0.079999998, + "quickmove": [ + "Bite", + "Snarl" + ], + "chargedmove": [ + "Crunch", + "Play Rough", + "Close Combat" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "211": { + "name": "Qwilfish", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Poison" + ], + "dex": "Qwilfish sucks in water, inflating itself. This Pokémon uses the pressure of the water it swallowed to shoot toxic quills all at once from all over its body. It finds swimming somewhat challenging.", + "attack": 184, + "defense": 138, + "stamina": 163, + "height": 0.50999999, + "weight": 3.9000001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.079999998, + "quickmove": [ + "Poison Sting", + "Water Gun" + ], + "chargedmove": [ + "Aqua Tail", + "Ice Beam", + "Sludge Wave" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "212": { + "name": "Scizor", + "forms": { + "250": { + "name": "Normal" + }, + "251": { + "name": "Shadow" + }, + "252": { + "name": "Purified" + } + }, + "default_form": 250, + "evolutions": [], + "types": [ + "Bug", + "Steel" + ], + "dex": "Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. This Pokémon flaps its wings to regulate its body temperature.", + "attack": 236, + "defense": 181, + "stamina": 172, + "height": 2.01, + "weight": 125, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Bullet Punch", + "Fury Cutter" + ], + "chargedmove": [ + "X Scissor", + "Iron Head", + "Night Slash" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "213": { + "name": "Shuckle", + "forms": { + "827": { + "name": "Normal" + }, + "828": { + "name": "Shadow" + }, + "829": { + "name": "Purified" + } + }, + "default_form": "827", + "evolutions": [], + "types": [ + "Bug", + "Rock" + ], + "dex": "Shuckle quietly hides itself under rocks, keeping its body concealed inside its hard shell while eating berries it has stored away. The berries mix with its body fluids to become a juice.", + "attack": 17, + "defense": 396, + "stamina": 85, + "height": 0.61000001, + "weight": 20.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.07, + "quickmove": [ + "Struggle Bug", + "Rock Throw" + ], + "chargedmove": [ + "Rock Blast", + "Stone Edge", + "Gyro Ball" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "214": { + "name": "Heracross", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Fighting" + ], + "dex": "Heracross has sharp claws on its feet. These are planted firmly into the ground or the bark of a tree, giving the Pokémon a secure and solid footing to forcefully fling away foes with its proud horn.", + "attack": 234, + "defense": 179, + "stamina": 190, + "height": 1.5, + "weight": 54, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Counter", + "Struggle Bug" + ], + "chargedmove": [ + "Megahorn", + "Close Combat", + "Earthquake" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "215": { + "name": "Sneasel", + "forms": { + "797": { + "name": "Normal", + "evolved_form": 800 + }, + "798": { + "name": "Shadow", + "evolved_form": 801 + }, + "799": { + "name": "Purified", + "evolved_form": 802 + } + }, + "default_form": 797, + "evolutions": [ + 461 + ], + "types": [ + "Dark", + "Ice" + ], + "dex": "Sneasel scales trees by punching its hooked claws into the bark. This Pokémon seeks out unguarded nests and steals eggs for food while the parents are away.", + "attack": 189, + "defense": 146, + "stamina": 146, + "height": 0.88999999, + "weight": 28, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Ice Shard", + "Feint Attack" + ], + "chargedmove": [ + "Avalanche", + "Ice Punch", + "Foul Play" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "216": { + "name": "Teddiursa", + "forms": {}, + "default_form": "", + "evolutions": [ + 217 + ], + "types": [ + "Normal" + ], + "dex": "This Pokémon likes to lick its palms that are sweetened by being soaked in honey. Teddiursa concocts its own honey by blending fruits and pollen collected by Beedrill.", + "attack": 142, + "defense": 93, + "stamina": 155, + "height": 0.61000001, + "weight": 8.8000002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Scratch", + "Lick" + ], + "chargedmove": [ + "Cross Chop", + "Crunch", + "Play Rough" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "217": { + "name": "Ursaring", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "In the forests inhabited by Ursaring, it is said that there are many streams and towering trees where they gather food. This Pokémon walks through its forest gathering food every day.", + "attack": 236, + "defense": 144, + "stamina": 207, + "height": 1.8, + "weight": 125.8, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Metal Claw", + "Counter" + ], + "chargedmove": [ + "Close Combat", + "Hyper Beam", + "Play Rough" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "218": { + "name": "Slugma", + "forms": {}, + "default_form": "", + "evolutions": [ + 219 + ], + "types": [ + "Fire" + ], + "dex": "Slugma does not have any blood in its body. Instead, intensely hot magma circulates throughout this Pokémon's body, carrying essential nutrients and oxygen to its organs.", + "attack": 118, + "defense": 71, + "stamina": 120, + "height": 0.70999998, + "weight": 35, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Ember", + "Rock Throw" + ], + "chargedmove": [ + "Flame Burst", + "Flame Charge", + "Rock Slide" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "219": { + "name": "Magcargo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Rock" + ], + "dex": "Magcargo's body temperature is approximately 18,000 degrees Fahrenheit. Water is vaporized on contact. If this Pokémon is caught in the rain, the raindrops instantly turn into steam, cloaking the area in a thick fog.", + "attack": 139, + "defense": 191, + "stamina": 137, + "height": 0.79000002, + "weight": 55, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Ember", + "Rock Throw" + ], + "chargedmove": [ + "Heat Wave", + "Overheat", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "220": { + "name": "Swinub", + "forms": {}, + "default_form": "", + "evolutions": [ + 221 + ], + "types": [ + "Ice", + "Ground" + ], + "dex": "Swinub roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under the cover of dead grass. This Pokémon occasionally roots out hot springs.", + "attack": 90, + "defense": 69, + "stamina": 137, + "height": 0.41, + "weight": 6.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Powder Snow" + ], + "chargedmove": [ + "Icy Wind", + "Body Slam", + "Rock Slide" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "221": { + "name": "Piloswine", + "forms": {}, + "default_form": "", + "evolutions": [ + 473 + ], + "types": [ + "Ice", + "Ground" + ], + "dex": "Piloswine is covered by a thick coat of long hair that enables it to endure the freezing cold. This Pokémon uses its tusks to dig up food that has been buried under ice.", + "attack": 181, + "defense": 138, + "stamina": 225, + "height": 1.09, + "weight": 55.799999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Ice Shard", + "Powder Snow" + ], + "chargedmove": [ + "Avalanche", + "Bulldoze", + "Stone Edge" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "222": { + "name": "Corsola", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Rock" + ], + "dex": "Clusters of Corsola congregate in warm seas where they serve as ideal hiding places for smaller Pokémon. When the water temperature falls, this Pokémon migrates to the southern seas.", + "attack": 118, + "defense": 156, + "stamina": 146, + "height": 0.61000001, + "weight": 5, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.30000001, + "flee_rate": 0.12, + "quickmove": [ + "Tackle", + "Bubble" + ], + "chargedmove": [ + "Rock Blast", + "Power Gem", + "Bubble Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "223": { + "name": "Remoraid", + "forms": {}, + "default_form": "", + "evolutions": [ + 224 + ], + "types": [ + "Water" + ], + "dex": "Remoraid sucks in water, then expels it at high velocity using its abdominal muscles to shoot down flying prey. When evolution draws near, this Pokémon travels downstream from rivers.", + "attack": 127, + "defense": 69, + "stamina": 111, + "height": 0.61000001, + "weight": 12, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Aurora Beam", + "Water Pulse", + "Rock Blast" + ], + "candy": 50, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "224": { + "name": "Octillery", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Octillery grabs onto its foe using its tentacles. This Pokémon tries to immobilize it before delivering the finishing blow. If the foe turns out to be too strong, Octillery spews ink to escape.", + "attack": 197, + "defense": 141, + "stamina": 181, + "height": 0.88999999, + "weight": 28.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Gunk Shot", + "Water Pulse", + "Aurora Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "225": { + "name": "Delibird", + "forms": { + "938": { + "name": "Normal" + }, + "939": { + "name": "Shadow" + }, + "940": { + "name": "Purified" + } + }, + "default_form": 938, + "evolutions": [], + "types": [ + "Ice", + "Flying" + ], + "dex": "Delibird carries its food bundled up in its tail. There once was a famous explorer who managed to reach the peak of the world's highest mountain, thanks to one of these Pokémon sharing its food.", + "attack": 128, + "defense": 90, + "stamina": 128, + "height": 0.88999999, + "weight": 16, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.2, + "quickmove": [ + "Present" + ], + "chargedmove": [ + "Ice Punch", + "Icy Wind", + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "226": { + "name": "Mantine", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Flying" + ], + "dex": "On sunny days, schools of Mantine can be seen elegantly leaping over the sea's waves. This Pokémon is not bothered by the Remoraid that hitches rides.", + "attack": 148, + "defense": 226, + "stamina": 163, + "height": 2.1099999, + "weight": 220, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.07, + "quickmove": [ + "Bubble", + "Wing Attack" + ], + "chargedmove": [ + "Water Pulse", + "Ice Beam", + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "227": { + "name": "Skarmory", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Flying" + ], + "dex": "Skarmory's steel wings become tattered and bashed in from repeated battles. Once a year, the battered wings grow back completely, restoring the cutting edges to their pristine state.", + "attack": 148, + "defense": 226, + "stamina": 163, + "height": 1.7, + "weight": 50.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Steel Wing", + "Air Slash" + ], + "chargedmove": [ + "Brave Bird", + "Sky Attack", + "Flash Cannon" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "228": { + "name": "Houndour", + "forms": { + "229": { + "name": "Normal", + "evolved_form": 232 + }, + "230": { + "name": "Shadow", + "evolved_form": 234 + }, + "231": { + "name": "Purified", + "evolved_form": 235 + } + }, + "default_form": 229, + "evolutions": [ + 229 + ], + "types": [ + "Dark", + "Fire" + ], + "dex": "Houndour hunt as a coordinated pack. They communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is unparalleled.", + "attack": 152, + "defense": 83, + "stamina": 128, + "height": 0.61000001, + "weight": 10.8, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Feint Attack", + "Ember" + ], + "chargedmove": [ + "Crunch", + "Flamethrower", + "Dark Pulse" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "229": { + "name": "Houndoom", + "forms": { + "232": { + "name": "Normal" + }, + "233": { + "name": "Shadow" + }, + "234": { + "name": "Purified" + } + }, + "default_form": 232, + "evolutions": [], + "types": [ + "Dark", + "Fire" + ], + "dex": "In a Houndoom pack, the one with its horns raked sharply toward the back serves a leadership role. These Pokémon choose their leader by fighting among themselves.", + "attack": 224, + "defense": 144, + "stamina": 181, + "height": 1.4, + "weight": 35, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.059999999, + "quickmove": [ + "Snarl", + "Fire Fang" + ], + "chargedmove": [ + "Crunch", + "Fire Blast", + "Foul Play" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "230": { + "name": "Kingdra", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Dragon" + ], + "dex": "Kingdra sleeps on the seafloor where it is otherwise devoid of life. When a storm arrives, the Pokémon is said to awaken and wander about in search of prey.", + "attack": 194, + "defense": 194, + "stamina": 181, + "height": 1.8, + "weight": 152, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Waterfall", + "Dragon Breath" + ], + "chargedmove": [ + "Hydro Pump", + "Blizzard", + "Outrage" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "231": { + "name": "Phanpy", + "forms": {}, + "default_form": "", + "evolutions": [ + 232 + ], + "types": [ + "Ground" + ], + "dex": "Phanpy uses its long nose to shower itself. When others gather around, they thoroughly douse each other with water. These Pokémon can be seen drying their soaking-wet bodies at the edge of water.", + "attack": 107, + "defense": 98, + "stamina": 207, + "height": 0.50999999, + "weight": 33.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Rock Smash" + ], + "chargedmove": [ + "Bulldoze", + "Rock Slide", + "Body Slam" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "232": { + "name": "Donphan", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground" + ], + "dex": "If Donphan were to tackle with its hard body, even a house could be destroyed. Using its massive strength, the Pokémon helps clear rock and mud slides that block mountain trails.", + "attack": 214, + "defense": 185, + "stamina": 207, + "height": 1.09, + "weight": 120, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.07, + "quickmove": [ + "Tackle", + "Counter" + ], + "chargedmove": [ + "Earthquake", + "Heavy Slam", + "Play Rough" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "233": { + "name": "Porygon2", + "forms": { + "680": { + "name": "Normal", + "evolved_form": 683 + }, + "681": { + "name": "Shadow", + "evolved_form": 684 + }, + "682": { + "name": "Purified", + "evolved_form": 685 + } + }, + "default_form": 680, + "evolutions": [ + 474 + ], + "types": [ + "Normal" + ], + "dex": "Porygon2 was created by humans using the power of science. The man-made Pokémon has been endowed with artificial intelligence that enables it to learn new gestures and emotions on its own.", + "attack": 198, + "defense": 180, + "stamina": 198, + "height": 0.61000001, + "weight": 32.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Hidden Power", + "Charge Beam" + ], + "chargedmove": [ + "Solar Beam", + "Hyper Beam", + "Zap Cannon" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "234": { + "name": "Stantler", + "forms": { + "941": { + "name": "Normal" + }, + "942": { + "name": "Shadow" + }, + "943": { + "name": "Purified" + } + }, + "default_form": 941, + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Stantler's magnificent antlers were traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction by those who were after the priceless antlers.", + "attack": 192, + "defense": 131, + "stamina": 177, + "height": 1.4, + "weight": 71.199997, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.079999998, + "quickmove": [ + "Tackle", + "Zen Headbutt" + ], + "chargedmove": [ + "Stomp", + "Wild Charge", + "Megahorn" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "235": { + "name": "Smeargle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Smeargle marks the boundaries of its territory using a body fluid that leaks out from the tip of its tail. Over 5,000 different marks left by this Pokémon have been found.", + "attack": 40, + "defense": 83, + "stamina": 146, + "height": 1.1900001, + "weight": 58, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "candyToUnlock": 9999999 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "236": { + "name": "Tyrogue", + "forms": {}, + "default_form": "", + "evolutions": [ + 106, + 107, + 237 + ], + "types": [ + "Fighting" + ], + "dex": "Tyrogue becomes stressed out if it does not get to train every day. When raising this Pokémon, the Trainer must establish and uphold various training methods.", + "attack": 64, + "defense": 64, + "stamina": 111, + "height": 0.70999998, + "weight": 21, + "male_percent": 1, + "female_percent": "", + "catch_rate": "", + "flee_rate": 0.2, + "quickmove": [ + "Rock Smash", + "Tackle" + ], + "chargedmove": [ + "Brick Break", + "Rock Slide", + "Low Sweep" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "237": { + "name": "Hitmontop", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Hitmontop spins on its head at high speed, all the while delivering kicks. This technique is a remarkable mix of both offense and defense at the same time. The Pokémon travels faster spinning than it does walking.", + "attack": 173, + "defense": 207, + "stamina": 137, + "height": 1.4, + "weight": 48, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Rock Smash", + "Counter" + ], + "chargedmove": [ + "Close Combat", + "Gyro Ball", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "238": { + "name": "Smoochum", + "forms": {}, + "default_form": "", + "evolutions": [ + 124 + ], + "types": [ + "Ice", + "Psychic" + ], + "dex": "Smoochum actively runs about, but also falls quite often. Whenever the chance arrives, it will look for its reflection to make sure its face hasn't become dirty.", + "attack": 153, + "defense": 91, + "stamina": 128, + "height": 0.41, + "weight": 6, + "male_percent": "", + "female_percent": 1, + "catch_rate": "", + "flee_rate": 0.2, + "quickmove": [ + "Powder Snow", + "Pound" + ], + "chargedmove": [ + "Ice Beam", + "Ice Punch", + "Psyshock" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "239": { + "name": "Elekid", + "forms": {}, + "default_form": "", + "evolutions": [ + 125 + ], + "types": [ + "Electric" + ], + "dex": "Elekid stores electricity in its body. If it touches metal and accidentally discharges all its built-up electricity, this Pokémon begins swinging its arms in circles to recharge itself.", + "attack": 135, + "defense": 101, + "stamina": 128, + "height": 0.61000001, + "weight": 23.5, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": "", + "flee_rate": 0.2, + "quickmove": [ + "Thunder Shock", + "Low Kick" + ], + "chargedmove": [ + "Thunder Punch", + "Brick Break", + "Discharge" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "240": { + "name": "Magby", + "forms": {}, + "default_form": "", + "evolutions": [ + 126 + ], + "types": [ + "Fire" + ], + "dex": "Magby's state of health is determined by observing the fire it breathes. If the Pokémon is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames.", + "attack": 151, + "defense": 99, + "stamina": 128, + "height": 0.70999998, + "weight": 21.4, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": "", + "flee_rate": 0.2, + "quickmove": [ + "Ember", + "Karate Chop" + ], + "chargedmove": [ + "Brick Break", + "Fire Punch", + "Flame Burst" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "241": { + "name": "Miltank", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Miltank gives over five gallons of milk on a daily basis. Its sweet milk is enjoyed by children and grown-ups alike. People who can't drink milk turn it into yogurt and eat it instead.", + "attack": 157, + "defense": 193, + "stamina": 216, + "height": 1.1900001, + "weight": 75.5, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.2, + "flee_rate": 0.079999998, + "quickmove": [ + "Tackle", + "Zen Headbutt" + ], + "chargedmove": [ + "Stomp", + "Body Slam", + "Gyro Ball" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "242": { + "name": "Blissey", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Blissey senses sadness with its fluffy coat of fur. If it does so, this Pokémon will rush over to a sad person, no matter how far away, to share a Lucky Egg that brings a smile to any face.", + "attack": 129, + "defense": 169, + "stamina": 496, + "height": 1.5, + "weight": 46.799999, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Pound", + "Zen Headbutt" + ], + "chargedmove": [ + "Psychic", + "Hyper Beam", + "Dazzling Gleam" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "243": { + "name": "Raikou", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "Raikou embodies the speed of lightning. The roars of this Pokémon send shock waves shuddering through the air and shake the ground as if lightning bolts had come crashing down.", + "attack": 241, + "defense": 195, + "stamina": 207, + "height": 1.91, + "weight": 178, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Thunder Shock", + "Volt Switch" + ], + "chargedmove": [ + "Thunder", + "Thunderbolt", + "Wild Charge" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "244": { + "name": "Entei", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Entei embodies the passion of magma. This Pokémon is thought to have been born in the eruption of a volcano. It sends up massive bursts of fire that utterly consume all that they touch.", + "attack": 235, + "defense": 171, + "stamina": 251, + "height": 2.1099999, + "weight": 198, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Fire Spin", + "Fire Fang" + ], + "chargedmove": [ + "Flamethrower", + "Fire Blast", + "Overheat" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "245": { + "name": "Suicune", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Suicune embodies the compassion of a pure spring of water. It runs across the land with gracefulness. This Pokémon has the power to purify dirty water.", + "attack": 180, + "defense": 235, + "stamina": 225, + "height": 2.01, + "weight": 187, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Extrasensory", + "Snarl" + ], + "chargedmove": [ + "Hydro Pump", + "Bubble Beam", + "Water Pulse" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "246": { + "name": "Larvitar", + "forms": { + "313": { + "name": "Normal", + "evolved_form": 316 + }, + "314": { + "name": "Shadow", + "evolved_form": 317 + }, + "315": { + "name": "Purified", + "evolved_form": 318 + } + }, + "default_form": 313, + "evolutions": [ + 247 + ], + "types": [ + "Rock", + "Ground" + ], + "dex": "Larvitar is born deep under the ground. To come up to the surface, this Pokémon must eat its way through the soil above. Until it does so, Larvitar cannot see its parents.", + "attack": 115, + "defense": 93, + "stamina": 137, + "height": 0.61000001, + "weight": 72, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Bite", + "Rock Smash" + ], + "chargedmove": [ + "Stomp", + "Crunch", + "Ancient Power" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "247": { + "name": "Pupitar", + "forms": { + "316": { + "name": "Normal", + "evolved_form": 319 + }, + "317": { + "name": "Shadow", + "evolved_form": 320 + }, + "318": { + "name": "Purified", + "evolved_form": 321 + } + }, + "default_form": 316, + "evolutions": [ + 248 + ], + "types": [ + "Rock", + "Ground" + ], + "dex": "Pupitar creates a gas inside its body that it compresses and forcefully ejects to propel itself like a jet. The body is very durable—it avoids damage even if it hits solid steel.", + "attack": 155, + "defense": 133, + "stamina": 172, + "height": 1.1900001, + "weight": 152, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Bite", + "Rock Smash" + ], + "chargedmove": [ + "Dig", + "Crunch", + "Ancient Power" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "248": { + "name": "Tyranitar", + "forms": { + "319": { + "name": "Normal" + }, + "320": { + "name": "Shadow" + }, + "321": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Dark" + ], + "dex": "Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. This Pokémon wanders about in mountains seeking new opponents to fight.", + "attack": 251, + "defense": 207, + "stamina": 225, + "height": 2.01, + "weight": 202, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.039999999, + "quickmove": [ + "Bite", + "Iron Tail" + ], + "chargedmove": [ + "Fire Blast", + "Crunch", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "249": { + "name": "Lugia", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Flying" + ], + "dex": "Lugia's wings pack devastating power—a light fluttering of its wings can blow apart regular houses. As a result, this Pokémon chooses to live out of sight deep under the sea.", + "attack": 193, + "defense": 310, + "stamina": 235, + "height": 5.21, + "weight": 216, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Extrasensory", + "Dragon Tail" + ], + "chargedmove": [ + "Sky Attack", + "Hydro Pump", + "Futuresight" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "250": { + "name": "Ho oh", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Flying" + ], + "dex": "Ho-Oh's feathers glow in seven colors depending on the angle at which they are struck by light. These feathers are said to bring happiness to the bearers. This Pokémon is said to live at the foot of a rainbow.", + "attack": 239, + "defense": 244, + "stamina": 214, + "height": 3.80999994277954, + "weight": 199, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.0199999995529652, + "flee_rate": 0.0399999991059303, + "quickmove": [ + "Extrasensory", + "Steel Wing" + ], + "chargedmove": [ + "Brave Bird", + "Fire Blast", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": 100, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "251": { + "name": "Celebi", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Grass" + ], + "dex": "This Pokémon came from the future by crossing over time. It is thought that so long as Celebi appears, a bright and shining future awaits us.", + "attack": 210, + "defense": 210, + "stamina": 225, + "height": 0.61000001, + "weight": 5, + "male_percent": "", + "female_percent": "", + "catch_rate": 100, + "flee_rate": "", + "quickmove": [ + "Confusion", + "Charge Beam" + ], + "chargedmove": [ + "Hyper Beam", + "Psychic", + "Dazzling Gleam" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "252": { + "name": "Treecko", + "forms": {}, + "default_form": "", + "evolutions": [ + 253 + ], + "types": [ + "Grass" + ], + "dex": "Treecko is cool, calm, and collected—it never panics under any situation. If a bigger foe were to glare at this Pokémon, it would glare right back without conceding an inch of ground.", + "attack": 124, + "defense": 94, + "stamina": 120, + "height": 0.50999999, + "weight": 5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Pound", + "Bullet Seed" + ], + "chargedmove": [ + "Energy Ball", + "Aerial Ace", + "Grass Knot" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "253": { + "name": "Grovyle", + "forms": {}, + "default_form": "", + "evolutions": [ + 254 + ], + "types": [ + "Grass" + ], + "dex": "This Pokémon adeptly flies from branch to branch in trees. In a forest, no Pokémon can ever hope to catch a fleeing Grovyle however fast they may be.", + "attack": 172, + "defense": 120, + "stamina": 137, + "height": 0.88999999, + "weight": 21.6, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Quick Attack", + "Bullet Seed" + ], + "chargedmove": [ + "Leaf Blade", + "Aerial Ace", + "Grass Knot" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "254": { + "name": "Sceptile", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "Sceptile has seeds growing on its back. They are said to be bursting with nutrients that revitalize trees. This Pokémon raises the trees in a forest with loving care.", + "attack": 223, + "defense": 169, + "stamina": 172, + "height": 1.7, + "weight": 52.200001, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Fury Cutter", + "Bullet Seed" + ], + "chargedmove": [ + "Leaf Blade", + "Aerial Ace", + "Earthquake" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "255": { + "name": "Torchic", + "forms": {}, + "default_form": "", + "evolutions": [ + 256 + ], + "types": [ + "Fire" + ], + "dex": "Torchic has a place inside its body where it keeps its flame. Give it a hug—it will be glowing with warmth. This Pokémon is covered all over by a fluffy coat of down.", + "attack": 130, + "defense": 87, + "stamina": 128, + "height": 0.41, + "weight": 2.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Scratch", + "Ember" + ], + "chargedmove": [ + "Flame Charge", + "Flamethrower", + "Rock Tomb" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "256": { + "name": "Combusken", + "forms": {}, + "default_form": "", + "evolutions": [ + 257 + ], + "types": [ + "Fire", + "Fighting" + ], + "dex": "Combusken battles with the intensely hot flames it spews from its beak and with outstandingly destructive kicks. This Pokémon's cry is very loud and distracting.", + "attack": 163, + "defense": 115, + "stamina": 155, + "height": 0.88999999, + "weight": 19.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Peck", + "Ember" + ], + "chargedmove": [ + "Flame Charge", + "Flamethrower", + "Rock Slide" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "257": { + "name": "Blaziken", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Fighting" + ], + "dex": "Blaziken has incredibly strong legs—it can easily clear a 30-story building in one leap. This Pokémon's blazing punches leave its foes scorched and blackened.", + "attack": 240, + "defense": 141, + "stamina": 190, + "height": 1.91, + "weight": 52, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Counter", + "Fire Spin" + ], + "chargedmove": [ + "Focus Blast", + "Overheat", + "Brave Bird" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "258": { + "name": "Mudkip", + "forms": { + "205": { + "name": "Normal", + "evolved_form": 208 + }, + "206": { + "name": "Shadow", + "evolved_form": 209 + }, + "207": { + "name": "Purified", + "evolved_form": 210 + } + }, + "default_form": 205, + "evolutions": [ + 259 + ], + "types": [ + "Water" + ], + "dex": "In water, Mudkip breathes using the gills on its cheeks. If it is faced with a tight situation in battle, this Pokémon will unleash its amazing power—it can crush rocks bigger than itself.", + "attack": 126, + "defense": 93, + "stamina": 137, + "height": 0.41, + "weight": 7.5999999, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Water Gun" + ], + "chargedmove": [ + "Dig", + "Sludge", + "Stomp" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "259": { + "name": "Marshtomp", + "forms": { + "208": { + "name": "Normal", + "evolved_form": 211 + }, + "209": { + "name": "Shadow", + "evolved_form": 212 + }, + "210": { + "name": "Purified", + "evolved_form": 213 + } + }, + "default_form": 208, + "evolutions": [ + 260 + ], + "types": [ + "Water", + "Ground" + ], + "dex": "Marshtomp is much faster at traveling through mud than it is at swimming. This Pokémon's hindquarters exhibit obvious development, giving it the ability to walk on just its hind legs.", + "attack": 156, + "defense": 133, + "stamina": 172, + "height": 0.70999998, + "weight": 28, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Mud Shot", + "Water Gun" + ], + "chargedmove": [ + "Mud Bomb", + "Sludge", + "Surf" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "260": { + "name": "Swampert", + "forms": { + "211": { + "name": "Normal" + }, + "212": { + "name": "Shadow" + }, + "213": { + "name": "Purified" + } + }, + "default_form": 211, + "evolutions": [], + "types": [ + "Water", + "Ground" + ], + "dex": "Swampert predicts storms by sensing subtle differences in the sounds of waves and tidal winds with its fins. If a storm is approaching, it piles up boulders to protect itself.", + "attack": 208, + "defense": 175, + "stamina": 225, + "height": 1.5, + "weight": 81.900002, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Shot", + "Water Gun" + ], + "chargedmove": [ + "Earthquake", + "Sludge Wave", + "Surf" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "261": { + "name": "Poochyena", + "forms": {}, + "default_form": "", + "evolutions": [ + 262 + ], + "types": [ + "Dark" + ], + "dex": "Poochyena is an omnivore—it will eat anything. A distinguishing feature is how large its fangs are compared to its body. This Pokémon tries to intimidate its foes by making the hair on its tail bristle out.", + "attack": 96, + "defense": 61, + "stamina": 111, + "height": 0.50999999, + "weight": 13.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Snarl" + ], + "chargedmove": [ + "Crunch", + "Dig", + "Poison Fang" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "262": { + "name": "Mightyena", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark" + ], + "dex": "Mightyena travel and act as a pack in the wild. The memory of its life in the wild compels the Pokémon to obey only those Trainers that it recognizes to possess superior skill.", + "attack": 171, + "defense": 132, + "stamina": 172, + "height": 0.99000001, + "weight": 37, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Bite", + "Fire Fang" + ], + "chargedmove": [ + "Crunch", + "Play Rough", + "Poison Fang" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "263": { + "name": "Zigzagoon", + "forms": { + "945": { + "name": "Normal", + "types": [ + "Normal" + ], + "evolved_form": 947 + }, + "946": { + "name": "Galarian", + "types": [ + "Dark", + "Normal" + ], + "evolved_form": 948 + } + }, + "default_form": 945, + "evolutions": [ + 264 + ], + "dex": "The hair on Zigzagoon's back is bristly. It rubs the hard back hair against trees to leave its territorial markings. This Pokémon may play dead to fool foes in battle.", + "attack": 58, + "defense": 80, + "stamina": 116, + "height": 0.41, + "weight": 17.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Rock Smash" + ], + "chargedmove": [ + "Dig", + "Grass Knot", + "Thunderbolt" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "264": { + "name": "Linoone", + "forms": { + "947": { + "name": "Normal", + "types": [ + "Normal" + ] + }, + "948": { + "name": "Galarian", + "types": [ + "Dark", + "Normal" + ] + } + }, + "default_form": 947, + "evolutions": [], + "dex": "When hunting, Linoone will make a beeline straight for the prey at a full run. While this Pokémon is capable of topping 60 mph, it has to come to a screeching halt before it can turn.", + "attack": 142, + "defense": 128, + "stamina": 186, + "height": 0.50999999, + "weight": 32.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Shadow Claw", + "Tackle" + ], + "chargedmove": [ + "Dig", + "Grass Knot", + "Thunder" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "265": { + "name": "Wurmple", + "forms": { + "600": { + "name": "Normal" + }, + "601": { + "name": "No Evolve" + } + }, + "default_form": 600, + "evolutions": [ + 266, + 268 + ], + "types": [ + "Bug" + ], + "dex": "Wurmple is targeted by Swellow as prey. This Pokémon will try to resist by pointing the spikes on its rear at the attacking predator. It will weaken the foe by leaking poison from the spikes.", + "attack": 75, + "defense": 59, + "stamina": 128, + "height": 0.30000001, + "weight": 3.5999999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Bug Bite" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 12, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "266": { + "name": "Silcoon", + "forms": {}, + "default_form": "", + "evolutions": [ + 267 + ], + "types": [ + "Bug" + ], + "dex": "Silcoon was thought to endure hunger and not consume anything before its evolution. However, it is now thought that this Pokémon slakes its thirst by drinking rainwater that collects on its silk.", + "attack": 60, + "defense": 77, + "stamina": 137, + "height": 0.61000001, + "weight": 10, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Poison Sting", + "Bug Bite" + ], + "chargedmove": [ + "Struggle" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "267": { + "name": "Beautifly", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "Beautifly has a long mouth like a coiled needle, which is very convenient for collecting pollen from flowers. This Pokémon rides the spring winds as it flits around gathering pollen.", + "attack": 189, + "defense": 98, + "stamina": 155, + "height": 0.99000001, + "weight": 28.4, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Struggle Bug", + "Infestation" + ], + "chargedmove": [ + "Silver Wind", + "Air Cutter", + "Bug Buzz" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "268": { + "name": "Cascoon", + "forms": {}, + "default_form": "", + "evolutions": [ + 269 + ], + "types": [ + "Bug" + ], + "dex": "If it is attacked, Cascoon remains motionless however badly it may be hurt. It does so because if it were to move, its body would be weak upon evolution. This Pokémon will also not forget the pain it endured.", + "attack": 60, + "defense": 77, + "stamina": 137, + "height": 0.70999998, + "weight": 11.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Poison Sting", + "Bug Bite" + ], + "chargedmove": [ + "Struggle" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "269": { + "name": "Dustox", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Poison" + ], + "dex": "When Dustox flaps its wings, a fine dust is scattered all over. This dust is actually a powerful poison that will even make a pro wrestler sick. This Pokémon searches for food using its antennae like radar.", + "attack": 98, + "defense": 162, + "stamina": 155, + "height": 1.1900001, + "weight": 31.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Struggle Bug", + "Confusion" + ], + "chargedmove": [ + "Silver Wind", + "Sludge Bomb", + "Bug Buzz" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "270": { + "name": "Lotad", + "forms": {}, + "default_form": "", + "evolutions": [ + 271 + ], + "types": [ + "Water", + "Grass" + ], + "dex": "Lotad is said to have dwelled on land before. However, this Pokémon is thought to have returned to water because the leaf on its head grew large and heavy. It now lives by floating atop the water.", + "attack": 71, + "defense": 77, + "stamina": 120, + "height": 0.50999999, + "weight": 2.5999999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Water Gun", + "Razor Leaf" + ], + "chargedmove": [ + "Bubble Beam", + "Energy Ball" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "271": { + "name": "Lombre", + "forms": {}, + "default_form": "", + "evolutions": [ + 272 + ], + "types": [ + "Water", + "Grass" + ], + "dex": "Lombre's entire body is covered by a slippery, slimy film. It feels horribly unpleasant to be touched by this Pokémon's hands. Lombre is often mistaken for a human child.", + "attack": 112, + "defense": 119, + "stamina": 155, + "height": 1.1900001, + "weight": 32.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Bubble", + "Razor Leaf" + ], + "chargedmove": [ + "Bubble Beam", + "Ice Beam", + "Grass Knot" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "272": { + "name": "Ludicolo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Grass" + ], + "dex": "Upon hearing an upbeat and cheerful rhythm, the cells in Ludicolo's body become very energetic and active. Even in battle, this Pokémon will exhibit an amazing amount of power.", + "attack": 173, + "defense": 176, + "stamina": 190, + "height": 1.5, + "weight": 55, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Bubble", + "Razor Leaf" + ], + "chargedmove": [ + "Hydro Pump", + "Blizzard", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "273": { + "name": "Seedot", + "forms": { + "625": { + "name": "Normal", + "evolved_form": 628 + }, + "626": { + "name": "Shadow", + "evolved_form": 629 + }, + "627": { + "name": "Purified", + "evolved_form": 630 + } + }, + "default_form": 625, + "evolutions": [ + 274 + ], + "types": [ + "Grass" + ], + "dex": "Seedot looks exactly like an acorn when it is dangling from a tree branch. It startles other Pokémon by suddenly moving. This Pokémon polishes its body once a day using leaves.", + "attack": 71, + "defense": 77, + "stamina": 120, + "height": 0.50999999, + "weight": 4, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Bullet Seed", + "Quick Attack" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot", + "Foul Play" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "274": { + "name": "Nuzleaf", + "forms": { + "628": { + "name": "Normal", + "evolved_form": 631 + }, + "629": { + "name": "Shadow", + "evolved_form": 632 + }, + "630": { + "name": "Purified", + "evolved_form": 633 + } + }, + "default_form": 628, + "evolutions": [ + 275 + ], + "types": [ + "Grass", + "Dark" + ], + "dex": "This Pokémon pulls out the leaf on its head and makes a flute with it. The sound of Nuzleaf's flute strikes fear and uncertainty in the hearts of people lost in a forest.", + "attack": 134, + "defense": 78, + "stamina": 172, + "height": 0.99000001, + "weight": 28, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Razor Leaf", + "Feint Attack" + ], + "chargedmove": [ + "Leaf Blade", + "Grass Knot", + "Foul Play" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "275": { + "name": "Shiftry", + "forms": { + "631": { + "name": "Normal" + }, + "632": { + "name": "Shadow" + }, + "633": { + "name": "Purified" + } + }, + "default_form": 631, + "evolutions": [], + "types": [ + "Grass", + "Dark" + ], + "dex": "Shiftry's large fans generate awesome gusts of wind at a speed close to 100 feet per second. The whipped-up wind blows anything away. This Pokémon chooses to live quietly deep in forests.", + "attack": 200, + "defense": 121, + "stamina": 207, + "height": 1.3, + "weight": 59.599998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Razor Leaf", + "Feint Attack" + ], + "chargedmove": [ + "Leaf Blade", + "Hurricane", + "Foul Play" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "276": { + "name": "Taillow", + "forms": {}, + "default_form": "", + "evolutions": [ + 277 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Taillow is young—it has only just left its nest. As a result, it sometimes becomes lonesome and cries at night. This Pokémon feeds on Wurmple that live in forests.", + "attack": 106, + "defense": 61, + "stamina": 120, + "height": 0.30000001, + "weight": 2.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Peck", + "Quick Attack" + ], + "chargedmove": [ + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "277": { + "name": "Swellow", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "Swellow is very conscientious about the upkeep of its glossy wings. Once two Swellow are gathered, they diligently take care of cleaning each other's wings.", + "attack": 185, + "defense": 124, + "stamina": 155, + "height": 0.70999998, + "weight": 19.799999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Wing Attack", + "Steel Wing" + ], + "chargedmove": [ + "Aerial Ace", + "Brave Bird", + "Sky Attack" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "278": { + "name": "Wingull", + "forms": {}, + "default_form": "", + "evolutions": [ + 279 + ], + "types": [ + "Water", + "Flying" + ], + "dex": "Wingull rides updrafts rising from the sea by extending its long and narrow wings to glide. This Pokémon's long beak is useful for catching prey.", + "attack": 106, + "defense": 61, + "stamina": 120, + "height": 0.61000001, + "weight": 9.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Water Gun", + "Quick Attack" + ], + "chargedmove": [ + "Water Pulse", + "Air Cutter", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "279": { + "name": "Pelipper", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Flying" + ], + "dex": "Pelipper searches for food while in flight by skimming the wave tops. This Pokémon dips its large bill in the sea to scoop up food, then swallows everything in one big gulp.", + "attack": 175, + "defense": 174, + "stamina": 155, + "height": 1.1900001, + "weight": 28, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Wing Attack" + ], + "chargedmove": [ + "Hydro Pump", + "Hurricane", + "Blizzard" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "280": { + "name": "Ralts", + "forms": { + "292": { + "name": "Normal", + "evolved_form": 295 + }, + "293": { + "name": "Shadow", + "evolved_form": 296 + }, + "294": { + "name": "Purified", + "evolved_form": 297 + } + }, + "default_form": 292, + "evolutions": [ + 281 + ], + "types": [ + "Psychic", + "Fairy" + ], + "dex": "Ralts has the ability to sense the emotions of people. If its Trainer is in a cheerful mood, this Pokémon grows cheerful and joyous in the same way.", + "attack": 79, + "defense": 59, + "stamina": 99, + "height": 0.41, + "weight": 6.5999999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Confusion", + "Charge Beam" + ], + "chargedmove": [ + "Psyshock", + "Disarming Voice", + "Shadow Sneak" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "281": { + "name": "Kirlia", + "forms": { + "295": { + "name": "Normal" + }, + "296": { + "name": "Shadow" + }, + "297": { + "name": "Purified" + } + }, + "default_form": 295, + "evolutions": [ + 282, + 475 + ], + "types": [ + "Psychic", + "Fairy" + ], + "dex": "Kirlia uses the horns on its head to amplify its psychokinetic power. When the Pokémon uses its power, the air around it becomes distorted, creating mirages of nonexistent scenery.", + "attack": 117, + "defense": 90, + "stamina": 116, + "height": 0.79000002, + "weight": 20.200001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Confusion", + "Charge Beam" + ], + "chargedmove": [ + "Psychic", + "Disarming Voice", + "Shadow Sneak" + ], + "candy": 100, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "282": { + "name": "Gardevoir", + "forms": { + "298": { + "name": "Normal" + }, + "299": { + "name": "Shadow" + }, + "300": { + "name": "Purified" + } + }, + "default_form": 298, + "evolutions": [], + "types": [ + "Psychic", + "Fairy" + ], + "dex": "Gardevoir has the psychokinetic power to distort the dimensions and create a small black hole. This Pokémon will try to protect its Trainer even at the risk of its own life.", + "attack": 237, + "defense": 195, + "stamina": 169, + "height": 1.6, + "weight": 48.400002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Confusion", + "Charge Beam" + ], + "chargedmove": [ + "Psychic", + "Dazzling Gleam", + "Shadow Ball" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "283": { + "name": "Surskit", + "forms": {}, + "default_form": "", + "evolutions": [ + 284 + ], + "types": [ + "Bug", + "Water" + ], + "dex": "If Surskit senses danger, it secretes a thick, sugary syrup from the tip of its head. There are some Pokémon that love eating this syrup.", + "attack": 93, + "defense": 87, + "stamina": 120, + "height": 0.50999999, + "weight": 1.7, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Bubble", + "Bug Bite" + ], + "chargedmove": [ + "Aqua Jet", + "Bubble Beam", + "Signal Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "284": { + "name": "Masquerain", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "Masquerain's antennas have eyelike patterns that usually give it an angry look. If the “eyes\" are droopy and appear sad, it is said to be a sign that a heavy rainfall is on its way.", + "attack": 192, + "defense": 150, + "stamina": 172, + "height": 0.79000002, + "weight": 3.5999999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Infestation", + "Air Slash" + ], + "chargedmove": [ + "Air Cutter", + "Ominous Wind", + "Silver Wind" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "285": { + "name": "Shroomish", + "forms": {}, + "default_form": "", + "evolutions": [ + 286 + ], + "types": [ + "Grass" + ], + "dex": "If Shroomish senses danger, it shakes its body and scatters spores from the top of its head. This Pokémon's spores are so toxic, they make trees and weeds wilt.", + "attack": 74, + "defense": 110, + "stamina": 155, + "height": 0.41, + "weight": 4.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Bullet Seed" + ], + "chargedmove": [ + "Seed Bomb", + "Grass Knot", + "Energy Ball" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "286": { + "name": "Breloom", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fighting" + ], + "dex": "The seeds ringing Breloom's tail are made of hardened toxic spores. It is horrible to eat the seeds. Just taking a bite of this Pokémon's seed will cause your stomach to rumble.", + "attack": 241, + "defense": 144, + "stamina": 155, + "height": 1.1900001, + "weight": 39.200001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Counter", + "Bullet Seed" + ], + "chargedmove": [ + "Dynamic Punch", + "Seed Bomb", + "Sludge Bomb" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "287": { + "name": "Slakoth", + "forms": {}, + "default_form": "", + "evolutions": [ + 288 + ], + "types": [ + "Normal" + ], + "dex": "Slakoth's heart beats just once a minute. Whatever happens, it is content to loaf around motionless. It is rare to see this Pokémon in motion.", + "attack": 104, + "defense": 92, + "stamina": 155, + "height": 0.79000002, + "weight": 24, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Yawn" + ], + "chargedmove": [ + "Body Slam", + "Night Slash", + "Brick Break" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "288": { + "name": "Vigoroth", + "forms": {}, + "default_form": "", + "evolutions": [ + 289 + ], + "types": [ + "Normal" + ], + "dex": "Vigoroth is simply incapable of remaining still. Even when it tries to sleep, the blood in its veins grows agitated, compelling this Pokémon to run wild throughout the jungle before it can settle down.", + "attack": 159, + "defense": 145, + "stamina": 190, + "height": 1.4, + "weight": 46.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Scratch", + "Counter" + ], + "chargedmove": [ + "Body Slam", + "Bulldoze", + "Brick Break" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "289": { + "name": "Slaking", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Wherever Slaking live, rings of over a yard in diameter appear in grassy fields. They are made by the Pokémon as it eats all the grass within reach while lying prone on the ground.", + "attack": 290, + "defense": 166, + "stamina": 284, + "height": 2.01, + "weight": 130.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Yawn" + ], + "chargedmove": [ + "Hyper Beam", + "Play Rough", + "Earthquake" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "290": { + "name": "Nincada", + "forms": {}, + "default_form": "", + "evolutions": [ + 291 + ], + "types": [ + "Bug", + "Ground" + ], + "dex": "Nincada lives underground. It uses its sharp claws to carve the roots of trees and absorb moisture and nutrients. This Pokémon can't withstand bright sunlight so avoids it.", + "attack": 80, + "defense": 126, + "stamina": 104, + "height": 0.50999999, + "weight": 5.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Scratch", + "Bug Bite" + ], + "chargedmove": [ + "Night Slash", + "Bug Buzz", + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "291": { + "name": "Ninjask", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "If Ninjask is not trained properly, it will refuse to obey the Trainer and cry loudly continuously. Because of this quality, this Pokémon is said to be one that puts the Trainer's abilities to the test.", + "attack": 199, + "defense": 112, + "stamina": 156, + "height": 0.79000002, + "weight": 12, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Fury Cutter", + "Metal Claw" + ], + "chargedmove": [ + "Shadow Ball", + "Bug Buzz", + "Aerial Ace" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "292": { + "name": "Shedinja", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Ghost" + ], + "dex": "Shedinja is a peculiar Pokémon. It seems to appear unsought in a Poké Ball after a Nincada evolves. This bizarre Pokémon is entirely immobile—it doesn't even breathe.", + "attack": 153, + "defense": 73, + "stamina": 1, + "height": 0.79000002, + "weight": 1.2, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Bug Bite", + "Shadow Claw" + ], + "chargedmove": [ + "Shadow Sneak", + "Aerial Ace", + "Dig" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "293": { + "name": "Whismur", + "forms": {}, + "default_form": "", + "evolutions": [ + 294 + ], + "types": [ + "Normal" + ], + "dex": "Whismur is very timid. If it starts to cry loudly, it becomes startled by its own crying and cries even harder. When it finally stops crying, the Pokémon goes to sleep, all tired out.", + "attack": 92, + "defense": 42, + "stamina": 162, + "height": 0.61000001, + "weight": 16.299999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Pound", + "Astonish" + ], + "chargedmove": [ + "Stomp", + "Disarming Voice", + "Flamethrower" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "294": { + "name": "Loudred", + "forms": {}, + "default_form": "", + "evolutions": [ + 295 + ], + "types": [ + "Normal" + ], + "dex": "Loudred shouts while stamping its feet. After it finishes shouting, this Pokémon becomes incapable of hearing anything for a while. This is considered to be a weak point.", + "attack": 134, + "defense": 81, + "stamina": 197, + "height": 0.99000001, + "weight": 40.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Bite", + "Rock Smash" + ], + "chargedmove": [ + "Stomp", + "Disarming Voice", + "Flamethrower" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "295": { + "name": "Exploud", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Exploud communicates its feelings to the others by emitting whistle-like sounds from the tubes on its body. This Pokémon only raises its voice when it is in battle.", + "attack": 179, + "defense": 137, + "stamina": 232, + "height": 1.5, + "weight": 84, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Bite", + "Astonish" + ], + "chargedmove": [ + "Crunch", + "Disarming Voice", + "Fire Blast" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "296": { + "name": "Makuhita", + "forms": {}, + "default_form": "", + "evolutions": [ + 297 + ], + "types": [ + "Fighting" + ], + "dex": "Makuhita has a tireless spirit—it will never give up hope. It eats a lot of food, gets plenty of sleep, and it trains very rigorously. By living that way, this Pokémon packs its body with energy.", + "attack": 99, + "defense": 54, + "stamina": 176, + "height": 0.99000001, + "weight": 86.400002, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Rock Smash", + "Tackle" + ], + "chargedmove": [ + "Heavy Slam", + "Low Sweep", + "Cross Chop" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "297": { + "name": "Hariyama", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Hariyama's thick body may appear fat, but it is actually a hunk of solid muscle. If this Pokémon bears down and tightens all its muscles, its body becomes as hard as a rock.", + "attack": 209, + "defense": 114, + "stamina": 302, + "height": 2.3099999, + "weight": 253.8, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Counter", + "Bullet Punch" + ], + "chargedmove": [ + "Heavy Slam", + "Close Combat", + "Dynamic Punch" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "298": { + "name": "Azurill", + "forms": {}, + "default_form": "", + "evolutions": [ + 183 + ], + "types": [ + "Normal", + "Fairy" + ], + "dex": "Azurill's tail is large and bouncy. It is packed full of the nutrients this Pokémon needs to grow. Azurill can be seen bouncing and playing on its big, rubbery tail.", + "attack": 36, + "defense": 71, + "stamina": 137, + "height": 0.2, + "weight": 2, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Splash", + "Bubble" + ], + "chargedmove": [ + "Bubble Beam", + "Ice Beam", + "Body Slam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "299": { + "name": "Nosepass", + "forms": {}, + "default_form": "", + "evolutions": [ + 476 + ], + "types": [ + "Rock" + ], + "dex": "Nosepass had been said to be completely unmoving, with its magnetic nose pointed due north. However, close observation has revealed that the Pokémon actually moves by a little over 3/8 of an inch every year.", + "attack": 82, + "defense": 215, + "stamina": 102, + "height": 0.99000001, + "weight": 97, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.090000004, + "quickmove": [ + "Rock Throw", + "Spark" + ], + "chargedmove": [ + "Rock Blast", + "Rock Slide", + "Thunderbolt" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "300": { + "name": "Skitty", + "forms": {}, + "default_form": "", + "evolutions": [ + 301 + ], + "types": [ + "Normal" + ], + "dex": "Skitty is known to chase around playfully after its own tail. In the wild, this Pokémon lives in holes in the trees of forests. It is very popular as a pet because of its adorable looks.", + "attack": 84, + "defense": 79, + "stamina": 137, + "height": 0.61000001, + "weight": 11, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Feint Attack", + "Tackle" + ], + "chargedmove": [ + "Dig", + "Disarming Voice", + "Wild Charge" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "301": { + "name": "Delcatty", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Delcatty sleeps anywhere it wants without keeping a permanent nest. If other Pokémon approach it as it sleeps, this Pokémon will never fight—it will just move away somewhere else.", + "attack": 132, + "defense": 127, + "stamina": 172, + "height": 1.09, + "weight": 32.599998, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Feint Attack", + "Zen Headbutt" + ], + "chargedmove": [ + "Play Rough", + "Disarming Voice", + "Wild Charge" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "302": { + "name": "Sableye", + "forms": { + "923": { + "name": "Normal" + }, + "924": { + "name": "Shadow" + }, + "925": { + "name": "Purified" + } + }, + "default_form": 923, + "evolutions": [], + "types": [ + "Dark", + "Ghost" + ], + "dex": "Sableye digs the ground with sharpened claws to find rocks that it eats. Substances in the eaten rocks crystallize and rise up to the Pokémon's body surface.", + "attack": 141, + "defense": 136, + "stamina": 137, + "height": 0.50999999, + "weight": 11, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Shadow Claw", + "Feint Attack" + ], + "chargedmove": [ + "Power Gem", + "Foul Play", + "Shadow Sneak" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "303": { + "name": "Mawile", + "forms": { + "833": { + "name": "Normal" + }, + "834": { + "name": "Shadow" + }, + "835": { + "name": "Purified" + } + }, + "default_form": 833, + "evolutions": [], + "types": [ + "Steel", + "Fairy" + ], + "dex": "Don't be taken in by this Pokémon's cute face—it's very dangerous. Mawile fools the foe into letting down its guard, then chomps down with its massive jaws. The steel jaws are really horns that have been transformed.", + "attack": 155, + "defense": 141, + "stamina": 137, + "height": 0.61000001, + "weight": 11.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.090000004, + "quickmove": [ + "Bite", + "Astonish" + ], + "chargedmove": [ + "Play Rough", + "Vice Grip", + "Iron Head" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "304": { + "name": "Aron", + "forms": {}, + "default_form": "", + "evolutions": [ + 305 + ], + "types": [ + "Steel", + "Rock" + ], + "dex": "Aron has a body of steel. With one all-out charge, this Pokémon can demolish even a heavy dump truck. The destroyed dump truck then becomes a handy meal for the Pokémon.", + "attack": 121, + "defense": 141, + "stamina": 137, + "height": 0.41, + "weight": 60, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Metal Claw" + ], + "chargedmove": [ + "Iron Head", + "Rock Tomb", + "Body Slam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "305": { + "name": "Lairon", + "forms": {}, + "default_form": "", + "evolutions": [ + 306 + ], + "types": [ + "Steel", + "Rock" + ], + "dex": "Lairon feeds on iron contained in rocks and water. It makes its nest on mountains where iron ore is buried. As a result, the Pokémon often clashes with humans mining the iron ore.", + "attack": 158, + "defense": 198, + "stamina": 155, + "height": 0.88999999, + "weight": 120, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Metal Claw", + "Iron Tail" + ], + "chargedmove": [ + "Body Slam", + "Rock Slide", + "Heavy Slam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "306": { + "name": "Aggron", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Rock" + ], + "dex": "Aggron is protective of its environment. If its mountain is ravaged by a landslide or a fire, this Pokémon will haul topsoil to the area, plant trees, and beautifully restore its own territory.", + "attack": 198, + "defense": 257, + "stamina": 172, + "height": 2.1099999, + "weight": 360, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Dragon Tail", + "Iron Tail" + ], + "chargedmove": [ + "Thunder", + "Stone Edge", + "Heavy Slam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "307": { + "name": "Meditite", + "forms": {}, + "default_form": "", + "evolutions": [ + 308 + ], + "types": [ + "Fighting", + "Psychic" + ], + "dex": "Meditite heightens its inner energy through meditation. It survives on just one berry a day. Minimal eating is another aspect of this Pokémon's training.", + "attack": 78, + "defense": 107, + "stamina": 102, + "height": 0.61000001, + "weight": 11.2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Confusion", + "Rock Smash" + ], + "chargedmove": [ + "Ice Punch", + "Psyshock", + "Low Sweep" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "308": { + "name": "Medicham", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting", + "Psychic" + ], + "dex": "Through the power of meditation, Medicham developed its sixth sense. It gained the ability to use psychokinetic powers. This Pokémon is known to meditate for a whole month without eating.", + "attack": 121, + "defense": 152, + "stamina": 155, + "height": 1.3, + "weight": 31.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Psycho Cut", + "Counter" + ], + "chargedmove": [ + "Ice Punch", + "Psychic", + "Dynamic Punch" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "309": { + "name": "Electrike", + "forms": {}, + "default_form": "", + "evolutions": [ + 310 + ], + "types": [ + "Electric" + ], + "dex": "Electrike runs faster than the human eye can follow. The friction from running is converted into electricity, which is then stored in this Pokémon's fur.", + "attack": 123, + "defense": 78, + "stamina": 120, + "height": 0.61000001, + "weight": 15.2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Quick Attack", + "Spark" + ], + "chargedmove": [ + "Thunderbolt", + "Discharge", + "Swift" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "310": { + "name": "Manectric", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "Manectric discharges strong electricity from its mane. The mane is used for collecting electricity in the atmosphere. This Pokémon creates thunderclouds above its head.", + "attack": 215, + "defense": 127, + "stamina": 172, + "height": 1.5, + "weight": 40.200001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Snarl", + "Charge Beam" + ], + "chargedmove": [ + "Thunder", + "Wild Charge", + "Flame Burst" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "311": { + "name": "Plusle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "When Plusle is cheering on its partner, it flashes with electric sparks from all over its body. If its partner loses, this Pokémon cries loudly.", + "attack": 167, + "defense": 129, + "stamina": 155, + "height": 0.41, + "weight": 4.1999998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Spark", + "Quick Attack" + ], + "chargedmove": [ + "Thunderbolt", + "Discharge", + "Swift" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "312": { + "name": "Minun", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "Minun loves to cheer on its partner in battle. It gives off sparks from its body while it is doing so. If its partner is in trouble, this Pokémon gives off increasing amounts of sparks.", + "attack": 147, + "defense": 150, + "stamina": 155, + "height": 0.41, + "weight": 4.1999998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Spark", + "Quick Attack" + ], + "chargedmove": [ + "Thunderbolt", + "Discharge", + "Swift" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "313": { + "name": "Volbeat", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "Volbeat's tail glows like a lightbulb. With other Volbeat, it uses its tail to draw geometric shapes in the night sky. This Pokémon loves the sweet aroma given off by Illumise.", + "attack": 143, + "defense": 166, + "stamina": 163, + "height": 0.70999998, + "weight": 17.700001, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Struggle Bug", + "Tackle" + ], + "chargedmove": [ + "Signal Beam", + "Bug Buzz", + "Thunderbolt" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "314": { + "name": "Illumise", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "Illumise leads a flight of illuminated Volbeat to draw signs in the night sky. This Pokémon is said to earn greater respect from its peers by composing more complex designs in the sky.", + "attack": 143, + "defense": 166, + "stamina": 163, + "height": 0.61000001, + "weight": 17.700001, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Struggle Bug", + "Tackle" + ], + "chargedmove": [ + "Silver Wind", + "Bug Buzz", + "Dazzling Gleam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "315": { + "name": "Roselia", + "forms": {}, + "default_form": "", + "evolutions": [ + 407 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "On extremely rare occasions, a Roselia is said to appear with its flowers in unusual colors. The thorns on this Pokémon's head contain a vicious poison.", + "attack": 186, + "defense": 131, + "stamina": 137, + "height": 0.30000001, + "weight": 2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Poison Jab", + "Razor Leaf" + ], + "chargedmove": [ + "Petal Blizzard", + "Sludge Bomb", + "Dazzling Gleam" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "316": { + "name": "Gulpin", + "forms": {}, + "default_form": "", + "evolutions": [ + 317 + ], + "types": [ + "Poison" + ], + "dex": "Most of Gulpin's body is made up of its stomach—its heart and brain are very small in comparison. This Pokémon's stomach contains special enzymes that dissolve anything.", + "attack": 80, + "defense": 99, + "stamina": 172, + "height": 0.41, + "weight": 10.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Pound", + "Rock Smash" + ], + "chargedmove": [ + "Sludge", + "Gunk Shot", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "317": { + "name": "Swalot", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison" + ], + "dex": "Swalot has no teeth, so what it eats, it swallows whole, no matter what. Its cavernous mouth yawns widely. An automobile tire could easily fit inside this Pokémon's mouth.", + "attack": 140, + "defense": 159, + "stamina": 225, + "height": 1.7, + "weight": 80, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Rock Smash", + "Infestation" + ], + "chargedmove": [ + "Gunk Shot", + "Sludge Bomb", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "318": { + "name": "Carvanha", + "forms": { + "734": { + "name": "Normal", + "evolved_form": 737 + }, + "735": { + "name": "Shadow", + "evolved_form": 738 + }, + "736": { + "name": "Purified", + "evolved_form": 739 + } + }, + "default_form": 734, + "evolutions": [ + 319 + ], + "types": [ + "Water", + "Dark" + ], + "dex": "If anything invades Carvanha's territory, it will swarm and tear at the intruder with its pointed fangs. On its own, however, this Pokémon turns suddenly timid.", + "attack": 171, + "defense": 39, + "stamina": 128, + "height": 0.79000002, + "weight": 20.799999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Bite", + "Snarl" + ], + "chargedmove": [ + "Aqua Jet", + "Crunch", + "Poison Fang" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "319": { + "name": "Sharpedo", + "forms": { + "737": { + "name": "Normal" + }, + "738": { + "name": "Shadow" + }, + "739": { + "name": "Purified" + } + }, + "default_form": 737, + "evolutions": [], + "types": [ + "Water", + "Dark" + ], + "dex": "Sharpedo can swim at speeds of up to 75 mph by jetting seawater out of its backside. This Pokémon's drawback is its inability to swim long distances.", + "attack": 243, + "defense": 83, + "stamina": 172, + "height": 1.8, + "weight": 88.800003, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Bite", + "Waterfall" + ], + "chargedmove": [ + "Hydro Pump", + "Crunch", + "Poison Fang" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "320": { + "name": "Wailmer", + "forms": {}, + "default_form": "", + "evolutions": [ + 321 + ], + "types": [ + "Water" + ], + "dex": "Wailmer can store water inside its body to transform itself into a ball for bouncing around on the ground. By filling itself up with more water, this Pokémon can elevate the height of its bounces.", + "attack": 136, + "defense": 68, + "stamina": 277, + "height": 2.01, + "weight": 130, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Splash", + "Water Gun" + ], + "chargedmove": [ + "Heavy Slam", + "Water Pulse", + "Body Slam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "321": { + "name": "Wailord", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "When chasing prey, Wailord herds them by leaping out of the water and making a humongous splash. It is breathtaking to see this Pokémon leaping out of the sea with others in its pod.", + "attack": 175, + "defense": 87, + "stamina": 347, + "height": 14.5, + "weight": 398, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Zen Headbutt", + "Water Gun" + ], + "chargedmove": [ + "Surf", + "Blizzard", + "Hyper Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "322": { + "name": "Numel", + "forms": {}, + "default_form": "", + "evolutions": [ + 323 + ], + "types": [ + "Fire", + "Ground" + ], + "dex": "Numel stores magma of almost 2,200 degrees Fahrenheit within its body. If it gets wet, the magma cools and hardens. In that event, the Pokémon's body grows heavy and its movements become sluggish.", + "attack": 119, + "defense": 79, + "stamina": 155, + "height": 0.70999998, + "weight": 24, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Ember", + "Tackle" + ], + "chargedmove": [ + "Bulldoze", + "Heat Wave", + "Stomp" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "323": { + "name": "Camerupt", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Ground" + ], + "dex": "The humps on Camerupt's back are formed by a transformation of its bones. They sometimes blast out molten magma. This Pokémon apparently erupts often when it is enraged.", + "attack": 194, + "defense": 136, + "stamina": 172, + "height": 1.91, + "weight": 220, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Ember", + "Rock Smash" + ], + "chargedmove": [ + "Earthquake", + "Overheat", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "324": { + "name": "Torkoal", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "Torkoal generates energy by burning coal. It grows weaker as the fire dies down. When it is preparing for battle, this Pokémon burns more coal.", + "attack": 151, + "defense": 203, + "stamina": 172, + "height": 0.50999999, + "weight": 80.400002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Fire Spin", + "Ember" + ], + "chargedmove": [ + "Overheat", + "Solar Beam", + "Earthquake" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "325": { + "name": "Spoink", + "forms": {}, + "default_form": "", + "evolutions": [ + 326 + ], + "types": [ + "Psychic" + ], + "dex": "Spoink keeps a pearl on top of its head. The pearl functions to amplify this Pokémon's psychokinetic powers. It is therefore on a constant search for a bigger pearl.", + "attack": 125, + "defense": 122, + "stamina": 155, + "height": 0.70999998, + "weight": 30.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Splash", + "Zen Headbutt" + ], + "chargedmove": [ + "Psybeam", + "Shadow Ball", + "Mirror Coat" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "326": { + "name": "Grumpig", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Grumpig uses the black pearls on its body to wield its fantastic powers. When it is doing so, it dances bizarrely. This Pokémon's black pearls are valuable as works of art.", + "attack": 171, + "defense": 188, + "stamina": 190, + "height": 0.88999999, + "weight": 71.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Charge Beam", + "Extrasensory" + ], + "chargedmove": [ + "Psychic", + "Shadow Ball", + "Mirror Coat" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "327": { + "name": "Spinda", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "No two Spinda are said to have identical spot patterns on their hides. This Pokémon moves in a curious manner as if it is stumbling in dizziness. Its lurching movements can cause the opponent to become confused.", + "attack": 116, + "defense": 116, + "stamina": 155, + "height": 1.09, + "weight": 5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Sucker Punch", + "Psycho Cut" + ], + "chargedmove": [ + "Dig", + "Rock Tomb", + "Icy Wind" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "328": { + "name": "Trapinch", + "forms": { + "746": { + "name": "Normal", + "evolved_form": 749 + }, + "747": { + "name": "Shadow", + "evolved_form": 750 + }, + "748": { + "name": "Purified", + "evolved_form": 751 + } + }, + "default_form": 746, + "evolutions": [ + 329 + ], + "types": [ + "Ground" + ], + "dex": "Trapinch is a patient hunter. It digs an inescapable pit in a desert and waits for its prey to come tumbling down. This Pokémon can go a whole week without access to any water.", + "attack": 162, + "defense": 78, + "stamina": 128, + "height": 0.70999998, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Mud Shot", + "Struggle Bug" + ], + "chargedmove": [ + "Sand Tomb", + "Dig", + "Crunch" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "329": { + "name": "Vibrava", + "forms": { + "749": { + "name": "Normal", + "evolved_form": 752 + }, + "750": { + "name": "Shadow", + "evolved_form": 753 + }, + "751": { + "name": "Purified", + "evolved_form": 754 + } + }, + "default_form": 749, + "evolutions": [ + 330 + ], + "types": [ + "Ground", + "Dragon" + ], + "dex": "Vibrava's wings have not yet completed the process of growing. Rather than flying long distances, they are more useful for generating ultrasonic waves by vibrating.", + "attack": 134, + "defense": 99, + "stamina": 137, + "height": 1.09, + "weight": 15.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Mud Shot", + "Dragon Breath" + ], + "chargedmove": [ + "Sand Tomb", + "Bulldoze", + "Bug Buzz" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "330": { + "name": "Flygon", + "forms": { + "752": { + "name": "Normal" + }, + "753": { + "name": "Shadow" + }, + "754": { + "name": "Purified" + } + }, + "default_form": 752, + "evolutions": [], + "types": [ + "Ground", + "Dragon" + ], + "dex": "Flygon whips up a sandstorm by flapping its wings. The wings create a series of notes that sound like singing. Because the “singing\" is the only thing that can be heard in a sandstorm, this Pokémon is said to be the desert spirit.", + "attack": 205, + "defense": 168, + "stamina": 190, + "height": 2.01, + "weight": 82, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Shot", + "Dragon Tail" + ], + "chargedmove": [ + "Earthquake", + "Dragon Claw", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "331": { + "name": "Cacnea", + "forms": { + "610": { + "name": "Normal", + "evolved_form": 613 + }, + "611": { + "name": "Shadow", + "evolved_form": 614 + }, + "612": { + "name": "Purified", + "evolved_form": 615 + } + }, + "default_form": 610, + "evolutions": [ + 332 + ], + "types": [ + "Grass" + ], + "dex": "The more arid and harsh the environment, the more pretty and fragrant a flower Cacnea grows. This Pokémon battles by wildly swinging its thorny arms.", + "attack": 156, + "defense": 74, + "stamina": 137, + "height": 0.41, + "weight": 51.299999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Poison Sting", + "Sucker Punch" + ], + "chargedmove": [ + "Grass Knot", + "Brick Break", + "Seed Bomb" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "332": { + "name": "Cacturne", + "forms": { + "613": { + "name": "Normal" + }, + "614": { + "name": "Shadow" + }, + "615": { + "name": "Purified" + } + }, + "default_form": 613, + "evolutions": [], + "types": [ + "Grass", + "Dark" + ], + "dex": "If a traveler is going through a desert in the thick of night, Cacturne will follow in a ragtag group. The Pokémon are biding their time, waiting for the traveler to tire and become incapable of moving.", + "attack": 221, + "defense": 115, + "stamina": 172, + "height": 1.3, + "weight": 77.400002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Poison Jab", + "Sucker Punch" + ], + "chargedmove": [ + "Dark Pulse", + "Dynamic Punch", + "Grass Knot" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "333": { + "name": "Swablu", + "forms": {}, + "default_form": "", + "evolutions": [ + 334 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Swablu loves to make things clean. If it spots something dirty, it will wipe and polish it with its cottony wings. If its wings become dirty, this Pokémon finds a stream and showers itself.", + "attack": 76, + "defense": 132, + "stamina": 128, + "height": 0.41, + "weight": 1.2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Peck", + "Astonish" + ], + "chargedmove": [ + "Disarming Voice", + "Aerial Ace", + "Ice Beam" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "334": { + "name": "Altaria", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Flying" + ], + "dex": "Altaria sings in a gorgeous soprano. Its wings are like cotton clouds. This Pokémon catches updrafts with its buoyant wings and soars way up into the wild blue yonder.", + "attack": 141, + "defense": 201, + "stamina": 181, + "height": 1.09, + "weight": 20.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Peck", + "Dragon Breath" + ], + "chargedmove": [ + "Sky Attack", + "Dazzling Gleam", + "Dragon Pulse" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "335": { + "name": "Zangoose", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Zangoose usually stays on all fours, but when angered, it gets up on its hind legs and extends its claws. This Pokémon shares a bitter rivalry with Seviper that dates back over generations.", + "attack": 222, + "defense": 124, + "stamina": 177, + "height": 1.3, + "weight": 40.299999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Fury Cutter", + "Shadow Claw" + ], + "chargedmove": [ + "Close Combat", + "Night Slash", + "Dig" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "336": { + "name": "Seviper", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison" + ], + "dex": "Seviper's swordlike tail serves two purposes—it slashes foes and douses them with secreted poison. This Pokémon will not give up its long-running blood feud with Zangoose.", + "attack": 196, + "defense": 118, + "stamina": 177, + "height": 2.6900001, + "weight": 52.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Poison Jab", + "Iron Tail" + ], + "chargedmove": [ + "Poison Fang", + "Crunch", + "Wrap" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "337": { + "name": "Lunatone", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Psychic" + ], + "dex": "Lunatone becomes active around the time of the full moon. Instead of walking, it moves by floating in midair. The Pokémon's intimidating red eyes cause all those who see it to become transfixed with fear.", + "attack": 178, + "defense": 153, + "stamina": 207, + "height": 0.99000001, + "weight": 168, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Rock Throw", + "Confusion" + ], + "chargedmove": [ + "Psychic", + "Rock Slide", + "Moonblast" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "338": { + "name": "Solrock", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Psychic" + ], + "dex": "Sunlight is the source of Solrock's power. It is said to possess the ability to read the emotions of others. This Pokémon gives off intense heat while rotating its body.", + "attack": 178, + "defense": 153, + "stamina": 207, + "height": 1.1900001, + "weight": 154, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Rock Throw", + "Confusion" + ], + "chargedmove": [ + "Psychic", + "Rock Slide", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "339": { + "name": "Barboach", + "forms": {}, + "default_form": "", + "evolutions": [ + 340 + ], + "types": [ + "Water", + "Ground" + ], + "dex": "Barboach's body is covered with a slimy film. If a foe grabs it, this Pokémon just slips out of the enemy's grip. This Pokémon grows weak if the slimy coating dries up.", + "attack": 93, + "defense": 82, + "stamina": 137, + "height": 0.41, + "weight": 1.9, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Aqua Tail", + "Ice Beam", + "Mud Bomb" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "340": { + "name": "Whiscash", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Ground" + ], + "dex": "If Whiscash goes on a wild rampage, it sets off a quake-like tremor with a radius of over three miles. This Pokémon has the ability to predict real earthquakes.", + "attack": 151, + "defense": 141, + "stamina": 242, + "height": 0.88999999, + "weight": 23.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Water Gun", + "Mud Shot" + ], + "chargedmove": [ + "Water Pulse", + "Blizzard", + "Mud Bomb" + ], + "candy": "", + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "341": { + "name": "Corphish", + "forms": {}, + "default_form": "", + "evolutions": [ + 342 + ], + "types": [ + "Water" + ], + "dex": "Corphish catches prey with its sharp claws. It has no likes or dislikes when it comes to food—it will eat anything. This Pokémon has no trouble living in filthy water.", + "attack": 141, + "defense": 99, + "stamina": 125, + "height": 0.61000001, + "weight": 11.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Bubble", + "Rock Smash" + ], + "chargedmove": [ + "Vice Grip", + "Bubble Beam", + "Aqua Jet" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "342": { + "name": "Crawdaunt", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Dark" + ], + "dex": "Crawdaunt molts (sheds) its shell regularly. Immediately after molting, its shell is soft and tender. Until the shell hardens, this Pokémon hides in its streambed burrow to avoid attack from its foes.", + "attack": 224, + "defense": 142, + "stamina": 160, + "height": 1.09, + "weight": 32.799999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Waterfall", + "Snarl" + ], + "chargedmove": [ + "Vice Grip", + "Bubble Beam", + "Night Slash" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "343": { + "name": "Baltoy", + "forms": {}, + "default_form": "", + "evolutions": [ + 344 + ], + "types": [ + "Ground", + "Psychic" + ], + "dex": "As soon as it spots others of its kind, Baltoy congregates with them and then begins crying noisily in unison. This Pokémon sleeps while cleverly balancing itself on its one foot.", + "attack": 77, + "defense": 124, + "stamina": 120, + "height": 0.50999999, + "weight": 21.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Confusion", + "Extrasensory" + ], + "chargedmove": [ + "Gyro Ball", + "Psybeam", + "Dig" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "344": { + "name": "Claydol", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground", + "Psychic" + ], + "dex": "Claydol is an enigma that appeared from a clay statue made by an ancient civilization dating back 20,000 years. This Pokémon shoots beams from both its hands.", + "attack": 140, + "defense": 229, + "stamina": 155, + "height": 1.5, + "weight": 108, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Extrasensory", + "Confusion" + ], + "chargedmove": [ + "Gyro Ball", + "Psychic", + "Earthquake" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "345": { + "name": "Lileep", + "forms": {}, + "default_form": "", + "evolutions": [ + 346 + ], + "types": [ + "Rock", + "Grass" + ], + "dex": "Lileep is an ancient Pokémon that was regenerated from a fossil. It remains permanently anchored to a rock. From its immobile perch, this Pokémon intently scans for prey with its two eyes.", + "attack": 105, + "defense": 150, + "stamina": 165, + "height": 0.99000001, + "weight": 23.799999, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Acid", + "Infestation" + ], + "chargedmove": [ + "Grass Knot", + "Mirror Coat", + "Ancient Power" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "346": { + "name": "Cradily", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Grass" + ], + "dex": "Cradily's body serves as an anchor, preventing it from being washed away in rough seas. This Pokémon secretes a strong digestive fluid from its tentacles.", + "attack": 152, + "defense": 194, + "stamina": 200, + "height": 1.5, + "weight": 60.400002, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Acid", + "Infestation" + ], + "chargedmove": [ + "Grass Knot", + "Bulldoze", + "Stone Edge" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "347": { + "name": "Anorith", + "forms": {}, + "default_form": "", + "evolutions": [ + 348 + ], + "types": [ + "Rock", + "Bug" + ], + "dex": "Anorith is said to be a type of Pokémon predecessor, with eight wings at the sides of its body. This Pokémon swam in the primordial sea by undulating these eight wings.", + "attack": 176, + "defense": 100, + "stamina": 128, + "height": 0.70999998, + "weight": 12.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Struggle Bug", + "Scratch" + ], + "chargedmove": [ + "Cross Poison", + "Aqua Jet", + "Ancient Power" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "348": { + "name": "Armaldo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Bug" + ], + "dex": "Armaldo is a Pokémon species that became extinct in prehistoric times. This Pokémon is said to have walked on its hind legs, which would have been more convenient for life on land.", + "attack": 222, + "defense": 174, + "stamina": 181, + "height": 1.5, + "weight": 68.199997, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Fury Cutter", + "Struggle Bug" + ], + "chargedmove": [ + "Cross Poison", + "Water Pulse", + "Rock Blast" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "349": { + "name": "Feebas", + "forms": {}, + "default_form": "", + "evolutions": [ + 350 + ], + "types": [ + "Water" + ], + "dex": "While Feebas's body is in tatters, it has a hardy and tenacious life force that enables it to live anywhere. However, this Pokémon is also slow and dimwitted, making it an easy catch.", + "attack": 29, + "defense": 85, + "stamina": 85, + "height": 0.61000001, + "weight": 7.4000001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.69999999, + "flee_rate": 0.15000001, + "quickmove": [ + "Splash", + "Tackle" + ], + "chargedmove": [ + "Mirror Coat" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": 20 + }, + "350": { + "name": "Milotic", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Milotic live at the bottom of large lakes. When this Pokémon's body glows a vivid pink, it releases a pulsing wave of energy that brings soothing calm to troubled hearts.", + "attack": 192, + "defense": 219, + "stamina": 216, + "height": 6.1999998, + "weight": 162, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Waterfall", + "Dragon Tail" + ], + "chargedmove": [ + "Surf", + "Blizzard", + "Hyper Beam" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "351": { + "name": "Castform", + "forms": { + "29": { + "name": "Normal", + "types": [ + "Normal" + ], + "quickmove": [ + "Tackle", + "Hex" + ], + "chargedmove": [ + "Hurricane", + "Energy Ball", + "Weather Ball Rock" + ] + }, + "30": { + "name": "Sunny", + "types": [ + "Fire" + ], + "asset_form": 12, + "quickmove": [ + "Ember", + "Tackle" + ], + "chargedmove": [ + "Fire Blast", + "Solar Beam", + "Weather Ball Fire" + ] + }, + "31": { + "name": "Rainy", + "types": [ + "Water" + ], + "asset_form": 13, + "quickmove": [ + "Water Gun", + "Tackle" + ], + "chargedmove": [ + "Hydro Pump", + "Thunder", + "Weather Ball Water" + ] + }, + "32": { + "name": "Snowy", + "types": [ + "Ice" + ], + "asset_form": 14, + "quickmove": [ + "Powder Snow", + "Tackle" + ], + "chargedmove": [ + "Blizzard", + "Ice Beam", + "Weather Ball Ice" + ] + } + }, + "default_form": 29, + "evolutions": [], + "dex": "Castform borrows the power of nature to transform itself into the guises of the sun, rain, and snow-clouds. This Pokémon's feelings change with the weather.", + "attack": 139, + "defense": 139, + "stamina": 172, + "height": 0.30000001, + "weight": 0.80000001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "352": { + "name": "Kecleon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Kecleon alters its body coloration to blend in with its surroundings, allowing it to sneak up on its prey unnoticed. Then it lashes out with its long, stretchy tongue to instantly ensnare the unsuspecting target.", + "attack": 161, + "defense": 189, + "stamina": 155, + "height": 0.99000001, + "weight": 22, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Lick", + "Sucker Punch" + ], + "chargedmove": [ + "Foul Play", + "Flamethrower", + "Thunder" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "353": { + "name": "Shuppet", + "forms": { + "908": { + "name": "Normal" + }, + "909": { + "name": "Shadow" + }, + "910": { + "name": "Purified" + } + }, + "default_form": 908, + "evolutions": [ + 354 + ], + "types": [ + "Ghost" + ], + "dex": "Shuppet grows by feeding on dark emotions, such as vengefulness and envy, in the hearts of people. It roams through cities in search of grudges that taint people.", + "attack": 138, + "defense": 65, + "stamina": 127, + "height": 0.61000001, + "weight": 2.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Feint Attack", + "Astonish" + ], + "chargedmove": [ + "Ominous Wind", + "Night Shade", + "Shadow Sneak" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "354": { + "name": "Banette", + "forms": { + "911": { + "name": "Normal" + }, + "912": { + "name": "Shadow" + }, + "913": { + "name": "Purified" + } + }, + "default_form": 911, + "evolutions": [], + "types": [ + "Ghost" + ], + "dex": "A cursed energy permeated the stuffing of a discarded and forgotten plush doll, giving it new life as Banette. The Pokémon's energy would escape if it were to ever open its mouth.", + "attack": 218, + "defense": 126, + "stamina": 162, + "height": 1.09, + "weight": 12.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Hex", + "Shadow Claw" + ], + "chargedmove": [ + "Shadow Ball", + "Dazzling Gleam", + "Thunder" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "355": { + "name": "Duskull", + "forms": { + "914": { + "name": "Normal" + }, + "915": { + "name": "Shadow" + }, + "916": { + "name": "Purified" + } + }, + "default_form": 914, + "evolutions": [ + 356 + ], + "types": [ + "Ghost" + ], + "dex": "Duskull wanders lost among the deep darkness of midnight. There is an oft-told admonishment given to misbehaving children that this Pokémon will spirit away bad children who earn scoldings from their mothers.", + "attack": 70, + "defense": 162, + "stamina": 85, + "height": 0.79000002, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Hex", + "Astonish" + ], + "chargedmove": [ + "Ominous Wind", + "Night Shade", + "Shadow Sneak" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "356": { + "name": "Dusclops", + "forms": { + "917": { + "name": "Normal" + }, + "918": { + "name": "Shadow" + }, + "919": { + "name": "Purified" + } + }, + "default_form": 917, + "evolutions": [ + 477 + ], + "types": [ + "Ghost" + ], + "dex": "Dusclops absorbs anything, however large the object may be. This Pokémon hypnotizes its foe by waving its hands in a macabre manner and by bringing its single eye to bear. The hypnotized foe is made to do Dusclops's bidding.", + "attack": 124, + "defense": 234, + "stamina": 120, + "height": 1.6, + "weight": 30.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Hex", + "Feint Attack" + ], + "chargedmove": [ + "Shadow Punch", + "Ice Punch", + "Fire Punch" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "357": { + "name": "Tropius", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Flying" + ], + "dex": "Children of the southern tropics eat as snacks the fruit that grows in bunches around the neck of Tropius. This Pokémon flies by flapping the leaves on its back as if they were wings.", + "attack": 136, + "defense": 163, + "stamina": 223, + "height": 2.01, + "weight": 100, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Air Slash", + "Razor Leaf" + ], + "chargedmove": [ + "Stomp", + "Aerial Ace", + "Leaf Blade" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "358": { + "name": "Chimecho", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "In high winds, Chimecho cries as it hangs from a tree branch or the eaves of a building using a suction cup on its head. This Pokémon plucks berries with its long tail and eats them.", + "attack": 175, + "defense": 170, + "stamina": 181, + "height": 0.61000001, + "weight": 1, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Extrasensory", + "Astonish" + ], + "chargedmove": [ + "Energy Ball", + "Shadow Ball", + "Psyshock" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "359": { + "name": "Absol", + "forms": { + "830": { + "name": "Normal" + }, + "831": { + "name": "Shadow" + }, + "832": { + "name": "Purified" + } + }, + "default_form": 830, + "evolutions": [], + "types": [ + "Dark" + ], + "dex": "Absol has the ability to foretell the coming of natural disasters. It lives in a harsh, rugged mountain environment. This Pokémon very rarely ventures down from the mountains.", + "attack": 246, + "defense": 120, + "stamina": 163, + "height": 1.1900001, + "weight": 47, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Psycho Cut", + "Snarl" + ], + "chargedmove": [ + "Dark Pulse", + "Thunder", + "Megahorn" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "360": { + "name": "Wynaut", + "forms": {}, + "default_form": "", + "evolutions": [ + 202 + ], + "types": [ + "Psychic" + ], + "dex": "Wynaut gather on moonlit nights to play by squeezing up against each other. By being squeezed, this Pokémon gains endurance and is trained to dole out powerful counterattacks.", + "attack": 41, + "defense": 86, + "stamina": 216, + "height": 0.61000001, + "weight": 14, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Splash", + "Counter" + ], + "chargedmove": [ + "Mirror Coat" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "361": { + "name": "Snorunt", + "forms": { + "926": { + "name": "Normal" + }, + "927": { + "name": "Shadow" + }, + "928": { + "name": "Purified" + } + }, + "default_form": 926, + "evolutions": [ + 362, + 478 + ], + "types": [ + "Ice" + ], + "dex": "Snorunt survives by eating only snow and ice. Old folklore claims that a house visited by this Pokémon is sure to prosper for many generations to come.", + "attack": 95, + "defense": 95, + "stamina": 137, + "height": 0.70999998, + "weight": 16.799999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Powder Snow", + "Hex" + ], + "chargedmove": [ + "Avalanche", + "Icy Wind", + "Shadow Ball" + ], + "candy": 100, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "Sinnoh Stone", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "362": { + "name": "Glalie", + "forms": { + "929": { + "name": "Normal" + }, + "930": { + "name": "Shadow" + }, + "931": { + "name": "Purified" + } + }, + "default_form": 929, + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "Glalie has the ability to freely control ice. For example, it can instantly freeze its prey solid. After immobilizing its prey in ice, this Pokémon enjoys eating it in leisurely fashion.", + "attack": 162, + "defense": 162, + "stamina": 190, + "height": 1.5, + "weight": 256.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Ice Shard", + "Frost Breath" + ], + "chargedmove": [ + "Avalanche", + "Gyro Ball", + "Shadow Ball" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "363": { + "name": "Spheal", + "forms": {}, + "default_form": "", + "evolutions": [ + 364 + ], + "types": [ + "Ice", + "Water" + ], + "dex": "Spheal always travels by rolling around on its ball-like body. When the season for ice floes arrives, this Pokémon can be seen rolling about on ice and crossing the sea.", + "attack": 95, + "defense": 90, + "stamina": 172, + "height": 0.79000002, + "weight": 39.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Rock Smash" + ], + "chargedmove": [ + "Aurora Beam", + "Body Slam", + "Water Pulse" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "364": { + "name": "Sealeo", + "forms": {}, + "default_form": "", + "evolutions": [ + 365 + ], + "types": [ + "Ice", + "Water" + ], + "dex": "Sealeo often balances and rolls things on the tip of its nose. While the Pokémon is rolling something, it checks the object's aroma and texture to determine whether it likes the object or not.", + "attack": 137, + "defense": 132, + "stamina": 207, + "height": 1.09, + "weight": 87.599998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Powder Snow" + ], + "chargedmove": [ + "Aurora Beam", + "Body Slam", + "Water Pulse" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "365": { + "name": "Walrein", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice", + "Water" + ], + "dex": "Walrein swims all over in frigid seawater while crushing icebergs with its grand, imposing tusks. Its thick layer of blubber makes enemy attacks bounce off harmlessly.", + "attack": 182, + "defense": 176, + "stamina": 242, + "height": 1.4, + "weight": 150.60001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Waterfall", + "Frost Breath" + ], + "chargedmove": [ + "Blizzard", + "Earthquake", + "Water Pulse" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "366": { + "name": "Clamperl", + "forms": {}, + "default_form": "", + "evolutions": [ + 367, + 368 + ], + "types": [ + "Water" + ], + "dex": "Clamperl grows while being protected by its rock-hard shell. When its body becomes too large to fit inside the shell, it is sure evidence that this Pokémon is getting close to evolution.", + "attack": 133, + "defense": 135, + "stamina": 111, + "height": 0.41, + "weight": 52.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun" + ], + "chargedmove": [ + "Body Slam", + "Ice Beam", + "Water Pulse" + ], + "candy": 50, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "367": { + "name": "Huntail", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Huntail's tail is shaped like a fish. It uses the tail to attract prey, then swallows the prey whole with its large, gaping mouth. This Pokémon swims by wiggling its slender body like a snake.", + "attack": 197, + "defense": 179, + "stamina": 146, + "height": 1.7, + "weight": 27, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Water Gun", + "Bite" + ], + "chargedmove": [ + "Crunch", + "Ice Beam", + "Aqua Tail" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "368": { + "name": "Gorebyss", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Although Gorebyss is the very picture of elegance and beauty while swimming, it is also cruel. When it spots prey, this Pokémon inserts its thin mouth into the prey's body and drains the prey of its body fluids.", + "attack": 211, + "defense": 179, + "stamina": 146, + "height": 1.8, + "weight": 22.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Water Gun", + "Confusion" + ], + "chargedmove": [ + "Draining Kiss", + "Psychic", + "Water Pulse" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "369": { + "name": "Relicanth", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Rock" + ], + "dex": "Relicanth is a rare species that was discovered in deep-sea explorations. This Pokémon's body withstands the enormous water pressure of the ocean depths. Its body is covered in tough scales that are like craggy rocks.", + "attack": 162, + "defense": 203, + "stamina": 225, + "height": 0.99000001, + "weight": 23.4, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.89999998, + "flee_rate": 0.0099999998, + "quickmove": [ + "Water Gun", + "Zen Headbutt" + ], + "chargedmove": [ + "Ancient Power", + "Aqua Tail", + "Hydro Pump" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "370": { + "name": "Luvdisc", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Luvdisc's heart-shaped body is a symbol of love and romance. It is said that any couple meeting this Pokémon is promised a loving relationship that never ends.", + "attack": 81, + "defense": 128, + "stamina": 125, + "height": 0.61000001, + "weight": 8.6999998, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Splash" + ], + "chargedmove": [ + "Draining Kiss", + "Water Pulse", + "Aqua Jet" + ], + "candy": "", + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "371": { + "name": "Bagon", + "forms": { + "755": { + "name": "Normal", + "evolved_form": 758 + }, + "756": { + "name": "Shadow", + "evolved_form": 759 + }, + "757": { + "name": "Purified", + "evolved_form": 760 + } + }, + "default_form": 755, + "evolutions": [ + 372 + ], + "types": [ + "Dragon" + ], + "dex": "Bagon harbors a never-ending dream of one day soaring high among the clouds. As if trying to dispel its frustration over its inability to fly, this Pokémon slams its hard head against huge rocks and shatters them into pebbles.", + "attack": 134, + "defense": 93, + "stamina": 128, + "height": 0.61000001, + "weight": 42.099998, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Bite", + "Ember" + ], + "chargedmove": [ + "Flamethrower", + "Twister", + "Crunch" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "372": { + "name": "Shelgon", + "forms": { + "758": { + "name": "Normal", + "evolved_form": 761 + }, + "759": { + "name": "Shadow", + "evolved_form": 762 + }, + "760": { + "name": "Purified", + "evolved_form": 763 + } + }, + "default_form": 758, + "evolutions": [ + 373 + ], + "types": [ + "Dragon" + ], + "dex": "Covering Shelgon's body are outgrowths much like bones. The shell is very hard and bounces off enemy attacks. When awaiting evolution, this Pokémon hides away in a cavern.", + "attack": 172, + "defense": 155, + "stamina": 163, + "height": 1.09, + "weight": 110.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Ember", + "Dragon Breath" + ], + "chargedmove": [ + "Flamethrower", + "Dragon Pulse", + "Twister" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "373": { + "name": "Salamence", + "forms": { + "761": { + "name": "Normal" + }, + "762": { + "name": "Shadow" + }, + "763": { + "name": "Purified" + } + }, + "default_form": "761", + "evolutions": [], + "types": [ + "Dragon", + "Flying" + ], + "dex": "By evolving into Salamence, this Pokémon finally realizes its long-held dream of growing wings. To express its joy, it flies and wheels all over the sky while spouting flames from its mouth.", + "attack": 277, + "defense": 168, + "stamina": 216, + "height": 1.5, + "weight": 102.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Dragon Tail", + "Fire Fang" + ], + "chargedmove": [ + "Fire Blast", + "Hydro Pump", + "Draco Meteor" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "374": { + "name": "Beldum", + "forms": { + "764": { + "name": "Normal", + "evolved_form": 767 + }, + "765": { + "name": "Shadow", + "evolved_form": 768 + }, + "766": { + "name": "Purified", + "evolved_form": 769 + } + }, + "default_form": 764, + "evolutions": [ + 375 + ], + "types": [ + "Steel", + "Psychic" + ], + "dex": "Beldum keeps itself floating by generating a magnetic force that repels earth's natural magnetism. When it sleeps, this Pokémon anchors itself to a cliff using the hooks on its rear.", + "attack": 96, + "defense": 132, + "stamina": 120, + "height": 0.61000001, + "weight": 95.199997, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Take Down" + ], + "chargedmove": [ + "Struggle" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "375": { + "name": "Metang", + "forms": { + "767": { + "name": "Normal", + "evolved_form": 770 + }, + "768": { + "name": "Shadow", + "evolved_form": 771 + }, + "769": { + "name": "Purified", + "evolved_form": 772 + } + }, + "default_form": 767, + "evolutions": [ + 376 + ], + "types": [ + "Steel", + "Psychic" + ], + "dex": "When two Beldum fuse together, Metang is formed. The brains of the Beldum are joined by a magnetic nervous system. This Pokémon turns its arms to the rear for traveling at high speed.", + "attack": 138, + "defense": 176, + "stamina": 155, + "height": 1.1900001, + "weight": 202.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Zen Headbutt", + "Metal Claw" + ], + "chargedmove": [ + "Psychic", + "Gyro Ball", + "Psyshock" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "376": { + "name": "Metagross", + "forms": { + "770": { + "name": "Normal" + }, + "771": { + "name": "Shadow" + }, + "772": { + "name": "Purified" + } + }, + "default_form": 770, + "evolutions": [], + "types": [ + "Steel", + "Psychic" + ], + "dex": "Metagross is the result of two Metang achieving fusion. When hunting, this Pokémon pins the prey to the ground under its massive body. It then eats the helpless victim using the large mouth on its stomach.", + "attack": 257, + "defense": 228, + "stamina": 190, + "height": 1.6, + "weight": 550, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Bullet Punch", + "Zen Headbutt" + ], + "chargedmove": [ + "Psychic", + "Flash Cannon", + "Earthquake" + ], + "candy": "", + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "377": { + "name": "Regirock", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock" + ], + "dex": "Regirock's body is composed entirely of rocks. Recently, a study made the startling discovery that the rocks were all unearthed from different locations.", + "attack": 179, + "defense": 309, + "stamina": 190, + "height": 1.7, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Rock Throw", + "Rock Smash" + ], + "chargedmove": [ + "Stone Edge", + "Zap Cannon", + "Focus Blast" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "378": { + "name": "Regice", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "Regice cloaks itself with frigid air of -328 degrees Fahrenheit. Things will freeze solid just by going near this Pokémon. Its icy body is so cold, it will not melt even if it is immersed in magma.", + "attack": 179, + "defense": 309, + "stamina": 190, + "height": 1.8, + "weight": 175, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Frost Breath", + "Rock Smash" + ], + "chargedmove": [ + "Blizzard", + "Earthquake", + "Focus Blast" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "379": { + "name": "Registeel", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel" + ], + "dex": "Registeel was imprisoned by people in ancient times. The metal composing its body is thought to be a curious substance that is not of this earth.", + "attack": 143, + "defense": 285, + "stamina": 190, + "height": 1.91, + "weight": 205, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Metal Claw", + "Rock Smash" + ], + "chargedmove": [ + "Flash Cannon", + "Hyper Beam", + "Focus Blast" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "380": { + "name": "Latias", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Psychic" + ], + "dex": "Latias is highly intelligent and capable of understanding human speech. It is covered with a glass-like down. The Pokémon enfolds its body with its down and refracts light to alter its appearance.", + "attack": 228, + "defense": 246, + "stamina": 190, + "height": 1.4, + "weight": 40, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Dragon Breath", + "Zen Headbutt" + ], + "chargedmove": [ + "Psychic", + "Outrage", + "Thunder" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "381": { + "name": "Latios", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Psychic" + ], + "dex": "Latios will only open its heart to a Trainer with a compassionate spirit. This Pokémon can fly faster than a jet plane by folding its forelegs to minimize air resistance.", + "attack": 268, + "defense": 212, + "stamina": 190, + "height": 2.01, + "weight": 60, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Dragon Breath", + "Zen Headbutt" + ], + "chargedmove": [ + "Psychic", + "Dragon Claw", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "382": { + "name": "Kyogre", + "forms": { + "0": { + "name": "", + "types": [ + "Water" + ], + "attack": 270, + "defense": 228, + "stamina": 205, + "height": 4.5, + "weight": 352, + "quickmove": [ + "Waterfall" + ], + "chargedmove": [ + "Hydro Pump", + "Blizzard", + "Thunder" + ] + }, + "1": { + "name": "Primal", + "evolutions": [], + "types": [ + "Water" + ], + "attack": 331, + "defense": 251, + "stamina": 205, + "height": 4.5, + "weight": 352, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Kyogre is said to be the personification of the sea itself. Legends tell of its many clashes against Groudon, as each sought to gain the power of nature.", + "attack": 270, + "defense": 228, + "stamina": 205, + "height": 4.5, + "weight": 352, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Waterfall" + ], + "chargedmove": [ + "Hydro Pump", + "Blizzard", + "Thunder" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "383": { + "name": "Groudon", + "forms": { + "0": { + "name": "", + "types": [ + "Ground" + ], + "attack": 270, + "defense": 228, + "stamina": 205, + "height": 3.50999999046326, + "weight": 950, + "quickmove": [ + "Mud Shot", + "Dragon Tail" + ], + "chargedmove": [ + "Earthquake", + "Fire Blast", + "Solar Beam" + ] + }, + "1": { + "name": "Primal", + "types": [ + "Ground" + ], + "attack": 331, + "defense": 251, + "stamina": 205, + "height": 3.50999999046326, + "weight": 950, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Ground" + ], + "dex": "Through Primal Reversion and with nature's full power, it will take back its true form. It can cause magma to erupt and expand the landmass of the world.", + "attack": 270, + "defense": 228, + "stamina": 205, + "height": 3.51, + "weight": 950, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Mud Shot", + "Dragon Tail" + ], + "chargedmove": [ + "Earthquake", + "Fire Blast", + "Solar Beam" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "384": { + "name": "Rayquaza", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Flying" + ], + "dex": "It flies forever through the ozone layer, consuming meteoroids for sustenance. The many meteoroids in its body provide the energy it needs to Mega Evolve.", + "attack": 284, + "defense": 170, + "stamina": 213, + "height": 7.0100002, + "weight": 206.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [ + "Air Slash", + "Dragon Tail" + ], + "chargedmove": [ + "Outrage", + "Aerial Ace", + "Ancient Power" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "385": { + "name": "Jirachi", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Psychic" + ], + "dex": "Jirachi will awaken from its sleep of a thousand years if you sing to it in a voice of purity. It is said to make true any wish that people desire.", + "attack": 210, + "defense": 210, + "stamina": 225, + "height": 0.30000001, + "weight": 1.1, + "male_percent": "", + "female_percent": "", + "catch_rate": 100, + "flee_rate": 0.00999999977648258, + "quickmove": [ + "Confusion", + "Charge Beam" + ], + "chargedmove": [ + "Dazzling Gleam", + "Psychic", + "Doom Desire" + ], + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "386": { + "name": "Deoxys", + "forms": { + "33": { + "name": "Normal", + "types": [ + "Psychic" + ], + "attack": 345, + "defense": 115, + "stamina": 137, + "height": 1.70000004768372, + "weight": 60.7999992370605, + "quickmove": [ + "Zen Headbutt", + "Charge Beam" + ], + "chargedmove": [ + "Psycho Boost", + "Thunderbolt", + "Hyper Beam" + ] + }, + "34": { + "name": "Attack", + "types": [ + "Psychic" + ], + "attack": 414, + "defense": 46, + "stamina": 137, + "height": 1.70000004768372, + "weight": 60.7999992370605, + "quickmove": [ + "Zen Headbutt", + "Poison Jab" + ], + "chargedmove": [ + "Psycho Boost", + "Zap Cannon", + "Dark Pulse" + ] + }, + "35": { + "name": "Defense", + "types": [ + "Psychic" + ], + "attack": 144, + "defense": 330, + "stamina": 137, + "height": 1.70000004768372, + "weight": 60.7999992370605, + "quickmove": [ + "Zen Headbutt", + "Counter" + ], + "chargedmove": [ + "Psycho Boost", + "Thunderbolt", + "Rock Slide" + ] + }, + "36": { + "name": "Speed", + "types": [ + "Psychic" + ], + "attack": 230, + "defense": 218, + "stamina": 137, + "height": 1.70000004768372, + "weight": 60.7999992370605, + "quickmove": [ + "Zen Headbutt", + "Charge Beam" + ], + "chargedmove": [ + "Psycho Boost", + "Thunderbolt", + "Swift" + ] + } + }, + "default_form": 33, + "evolutions": [], + "dex": "The DNA of a space virus underwent a sudden mutation upon exposure to a laser beam and resulted in Deoxys. The crystalline organ on this Pokémon's chest appears to be its brain.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.059999999, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1.7, + "weight": 60.799999 + }, + "387": { + "name": "Turtwig", + "forms": { + "688": { + "name": "Normal", + "evolved_form": 691 + }, + "689": { + "name": "Shadow", + "evolved_form": 692 + }, + "690": { + "name": "Purified", + "evolved_form": 693 + } + }, + "default_form": 688, + "evolutions": [ + 388 + ], + "types": [ + "Grass" + ], + "dex": "It undertakes photosynthesis with its body, making oxygen. The leaf on its head wilts if it is thirsty.", + "attack": 119, + "defense": 110, + "stamina": 146, + "height": 0.40000001, + "weight": 10.2, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Razor Leaf" + ], + "chargedmove": [ + "Energy Ball", + "Seed Bomb", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "388": { + "name": "Grotle", + "forms": { + "691": { + "name": "Normal", + "evolved_form": 694 + }, + "692": { + "name": "Shadow", + "evolved_form": 695 + }, + "693": { + "name": "Purified", + "evolved_form": 696 + } + }, + "default_form": 691, + "evolutions": [ + 389 + ], + "types": [ + "Grass" + ], + "dex": "It knows where pure water wells up. It carries fellow Pokémon there on its back.", + "attack": 157, + "defense": 143, + "stamina": 181, + "height": 1.1, + "weight": 97, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Bite", + "Razor Leaf" + ], + "chargedmove": [ + "Energy Ball", + "Solar Beam", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "389": { + "name": "Torterra", + "forms": { + "694": { + "name": "Normal" + }, + "695": { + "name": "Shadow" + }, + "696": { + "name": "Purified" + } + }, + "default_form": 694, + "evolutions": [], + "types": [ + "Grass", + "Ground" + ], + "dex": "Small Pokémon occasionally gather on its unmoving back to begin building their nests.", + "attack": 202, + "defense": 188, + "stamina": 216, + "height": 2.2, + "weight": 310, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Bite", + "Razor Leaf" + ], + "chargedmove": [ + "Stone Edge", + "Solar Beam", + "Earthquake" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "390": { + "name": "Chimchar", + "forms": { + "818": { + "name": "Normal", + "evolved_form": 821 + }, + "819": { + "name": "Shadow", + "evolved_form": 822 + }, + "820": { + "name": "Purified", + "evolved_form": 823 + } + }, + "default_form": 818, + "evolutions": [ + 391 + ], + "types": [ + "Fire" + ], + "dex": "The gas made in its belly burns from its rear end. The fire burns weakly when it feels sick.", + "attack": 113, + "defense": 86, + "stamina": 127, + "height": 0.5, + "weight": 6.1999998, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Ember", + "Scratch" + ], + "chargedmove": [ + "Flame Wheel", + "Flamethrower", + "Flame Charge" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "391": { + "name": "Monferno", + "forms": { + "821": { + "name": "Normal", + "evolved_form": 824 + }, + "822": { + "name": "Shadow", + "evolved_form": 825 + }, + "823": { + "name": "Purified", + "evolved_form": 826 + } + }, + "default_form": 821, + "evolutions": [ + 392 + ], + "types": [ + "Fire", + "Fighting" + ], + "dex": "It uses ceilings and walls to launch aerial attacks. Its fiery tail is but one weapon.", + "attack": 158, + "defense": 105, + "stamina": 162, + "height": 0.89999998, + "weight": 22, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Ember", + "Rock Smash" + ], + "chargedmove": [ + "Flame Wheel", + "Flamethrower", + "Low Sweep" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "392": { + "name": "Infernape", + "forms": { + "824": { + "name": "Normal" + }, + "825": { + "name": "Shadow" + }, + "826": { + "name": "Purified" + } + }, + "default_form": 824, + "evolutions": [], + "types": [ + "Fire", + "Fighting" + ], + "dex": "It tosses its enemies around with agility. It uses all its limbs to fight in its own unique style.", + "attack": 222, + "defense": 151, + "stamina": 183, + "height": 1.2, + "weight": 55, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Fire Spin", + "Rock Smash" + ], + "chargedmove": [ + "Solar Beam", + "Flamethrower", + "Close Combat" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "393": { + "name": "Piplup", + "forms": {}, + "default_form": "", + "evolutions": [ + 394 + ], + "types": [ + "Water" + ], + "dex": "Because it is very proud, it hates accepting food from people. Its thick down guards it from cold.", + "attack": 112, + "defense": 102, + "stamina": 142, + "height": 0.40000001, + "weight": 5.1999998, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [ + "Bubble", + "Pound" + ], + "chargedmove": [ + "Bubble Beam", + "Drill Peck", + "Icy Wind" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "394": { + "name": "Prinplup", + "forms": {}, + "default_form": "", + "evolutions": [ + 395 + ], + "types": [ + "Water" + ], + "dex": "It lives a solitary life. Its wings deliver wicked blows that can snap even the thickest of trees.", + "attack": 150, + "defense": 139, + "stamina": 162, + "height": 0.80000001, + "weight": 23, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Bubble", + "Metal Claw" + ], + "chargedmove": [ + "Bubble Beam", + "Hydro Pump", + "Icy Wind" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "395": { + "name": "Empoleon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Steel" + ], + "dex": "The three horns that extend from its beak attest to its power. The leader has the biggest horns.", + "attack": 210, + "defense": 186, + "stamina": 197, + "height": 1.7, + "weight": 84.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Waterfall", + "Metal Claw" + ], + "chargedmove": [ + "Hydro Pump", + "Blizzard", + "Flash Cannon" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "396": { + "name": "Starly", + "forms": {}, + "default_form": "", + "evolutions": [ + 397 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "They flock around mountains and fields, chasing after bug Pokémon. Their singing is noisy and annoying.", + "attack": 101, + "defense": 58, + "stamina": 120, + "height": 0.30000001, + "weight": 2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Quick Attack" + ], + "chargedmove": [ + "Aerial Ace", + "Brave Bird" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "397": { + "name": "Staravia", + "forms": {}, + "default_form": "", + "evolutions": [ + 398 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "It lives in forests and fields. Squabbles over territory occur when flocks collide.", + "attack": 142, + "defense": 94, + "stamina": 146, + "height": 0.60000002, + "weight": 15.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [ + "Wing Attack", + "Quick Attack" + ], + "chargedmove": [ + "Aerial Ace", + "Brave Bird", + "Heat Wave" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "398": { + "name": "Staraptor", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "When Staravia evolve into Staraptor, they leave the flock to live alone. They have sturdy wings.", + "attack": 234, + "defense": 140, + "stamina": 198, + "height": 1.2, + "weight": 24.9, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Wing Attack", + "Quick Attack" + ], + "chargedmove": [ + "Brave Bird", + "Heat Wave", + "Close Combat" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "399": { + "name": "Bidoof", + "forms": {}, + "default_form": "", + "evolutions": [ + 400 + ], + "types": [ + "Normal" + ], + "dex": "It constantly gnaws on logs and rocks to whittle down its front teeth. It nests alongside water.", + "attack": 80, + "defense": 73, + "stamina": 153, + "height": 0.5, + "weight": 20, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Take Down" + ], + "chargedmove": [ + "Hyper Fang", + "Crunch", + "Grass Knot" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "400": { + "name": "Bibarel", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Water" + ], + "dex": "It makes its nest by damming streams with bark and mud. It is known as an industrious worker.", + "attack": 162, + "defense": 119, + "stamina": 188, + "height": 1, + "weight": 31.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Water Gun", + "Take Down" + ], + "chargedmove": [ + "Hyper Fang", + "Hyper Beam", + "Surf" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "401": { + "name": "Kricketot", + "forms": {}, + "default_form": "", + "evolutions": [ + 402 + ], + "types": [ + "Bug" + ], + "dex": "When its antennae hit each other, it sounds like the music of a xylophone.", + "attack": 45, + "defense": 74, + "stamina": 114, + "height": 0.30000001, + "weight": 2.2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Struggle Bug", + "Bug Bite" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "402": { + "name": "Kricketune", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "It signals its emotions with its melodies. Scientists are studying these melodic patterns.", + "attack": 160, + "defense": 100, + "stamina": 184, + "height": 1, + "weight": 25.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Struggle Bug", + "Fury Cutter" + ], + "chargedmove": [ + "Bug Buzz", + "X Scissor", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "403": { + "name": "Shinx", + "forms": {}, + "default_form": "", + "evolutions": [ + 404 + ], + "types": [ + "Electric" + ], + "dex": "All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded.", + "attack": 117, + "defense": 64, + "stamina": 128, + "height": 0.5, + "weight": 9.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Spark" + ], + "chargedmove": [ + "Discharge", + "Thunderbolt", + "Swift" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "404": { + "name": "Luxio", + "forms": {}, + "default_form": "", + "evolutions": [ + 405 + ], + "types": [ + "Electric" + ], + "dex": "Strong electricity courses through the tips of its sharp claws. A light scratch causes fainting in foes.", + "attack": 159, + "defense": 95, + "stamina": 155, + "height": 0.89999998, + "weight": 30.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [ + "Spark", + "Bite" + ], + "chargedmove": [ + "Thunderbolt", + "Wild Charge", + "Crunch" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "405": { + "name": "Luxray", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "Luxray's ability to see through objects comes in handy when it's scouting for danger.", + "attack": 232, + "defense": 156, + "stamina": 190, + "height": 1.4, + "weight": 42, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Spark", + "Snarl" + ], + "chargedmove": [ + "Hyper Beam", + "Wild Charge", + "Crunch" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "406": { + "name": "Budew", + "forms": {}, + "default_form": "", + "evolutions": [ + 315 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen.", + "attack": 91, + "defense": 109, + "stamina": 120, + "height": 0.2, + "weight": 1.2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Hidden Power", + "Razor Leaf" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "407": { + "name": "Roserade", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Poison" + ], + "dex": "With the movements of a dancer, it strikes with whips that are densely lined with poison thorns.", + "attack": 243, + "defense": 185, + "stamina": 155, + "height": 0.89999998, + "weight": 14.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Poison Jab", + "Razor Leaf" + ], + "chargedmove": [ + "Solar Beam", + "Sludge Bomb", + "Dazzling Gleam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "408": { + "name": "Cranidos", + "forms": {}, + "default_form": "", + "evolutions": [ + 409 + ], + "types": [ + "Rock" + ], + "dex": "A lifelong jungle dweller from 100 million years ago, it would snap obstructing trees with headbutts.", + "attack": 218, + "defense": 71, + "stamina": 167, + "height": 0.89999998, + "weight": 31.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Zen Headbutt", + "Take Down" + ], + "chargedmove": [ + "Rock Tomb", + "Ancient Power", + "Bulldoze" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "409": { + "name": "Rampardos", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock" + ], + "dex": "Its skull is as hard as iron. It is a brute that tears down jungle trees while catching prey.", + "attack": 295, + "defense": 109, + "stamina": 219, + "height": 1.6, + "weight": 102.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Zen Headbutt", + "Smack Down" + ], + "chargedmove": [ + "Rock Slide", + "Outrage", + "Flamethrower" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "410": { + "name": "Shieldon", + "forms": {}, + "default_form": "", + "evolutions": [ + 411 + ], + "types": [ + "Rock", + "Steel" + ], + "dex": "It was generated from a fossil dug out of a layer of clay that was older than anyone knows. It has a sturdy face.", + "attack": 76, + "defense": 195, + "stamina": 102, + "height": 0.5, + "weight": 57, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Iron Tail" + ], + "chargedmove": [ + "Rock Tomb", + "Ancient Power", + "Heavy Slam" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "411": { + "name": "Bastiodon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Steel" + ], + "dex": "Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries.", + "attack": 94, + "defense": 286, + "stamina": 155, + "height": 1.3, + "weight": 149.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Smack Down", + "Iron Tail" + ], + "chargedmove": [ + "Stone Edge", + "Flamethrower", + "Flash Cannon" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "412": { + "name": "Burmy", + "forms": { + "118": { + "name": "Plant", + "evolved_form": 87, + "asset_form": 11 + }, + "119": { + "name": "Sandy", + "evolved_form": 88, + "asset_form": 12 + }, + "120": { + "name": "Trash", + "evolved_form": 89, + "asset_form": 13 + } + }, + "default_form": 118, + "evolutions": [ + 413, + 414 + ], + "types": [ + "Bug" + ], + "dex": "If its cloak is broken in battle, it quickly remakes the cloak with materials nearby.", + "attack": 53, + "defense": 83, + "stamina": 120, + "height": 0.2, + "weight": 3.4000001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [ + "Tackle", + "Bug Bite" + ], + "chargedmove": [ + "Struggle" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "413": { + "name": "Wormadam", + "forms": { + "87": { + "name": "Plant", + "types": [ + "Bug", + "Grass" + ], + "attack": 141, + "defense": 180, + "stamina": 155, + "height": 0.5, + "weight": 6.5, + "quickmove": [ + "Confusion", + "Bug Bite" + ], + "chargedmove": [ + "Psybeam", + "Energy Ball", + "Bug Buzz" + ] + }, + "88": { + "name": "Sandy", + "types": [ + "Bug", + "Ground" + ], + "attack": 141, + "defense": 180, + "stamina": 155, + "height": 0.5, + "weight": 6.5, + "quickmove": [ + "Confusion", + "Bug Bite" + ], + "chargedmove": [ + "Psybeam", + "Bulldoze", + "Bug Buzz" + ] + }, + "89": { + "name": "Trash", + "types": [ + "Bug", + "Steel" + ], + "attack": 127, + "defense": 175, + "stamina": 155, + "height": 0.5, + "weight": 6.5, + "quickmove": [ + "Confusion", + "Bug Bite" + ], + "chargedmove": [ + "Psybeam", + "Iron Head", + "Bug Buzz" + ] + } + }, + "default_form": 87, + "evolutions": [], + "dex": "Its appearance changes depending on where it evolved. The materials on hand become a part of its body.", + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "female", + "buddy_distance_evolve": "", + "height": 0.5, + "weight": 6.5 + }, + "414": { + "name": "Mothim", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "It flutters around at night and steals honey from the Combee hive.", + "attack": 185, + "defense": 98, + "stamina": 172, + "height": 0.89999998, + "weight": 23.299999, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Air Slash", + "Bug Bite" + ], + "chargedmove": [ + "Psybeam", + "Aerial Ace", + "Bug Buzz" + ], + "candy": 25, + "buddy_distance": 1, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "male", + "buddy_distance_evolve": "" + }, + "415": { + "name": "Combee", + "forms": {}, + "default_form": "", + "evolutions": [ + 416 + ], + "types": [ + "Bug", + "Flying" + ], + "dex": "It collects and delivers honey to its colony. At night, they cluster to form a beehive and sleep.", + "attack": 59, + "defense": 83, + "stamina": 102, + "height": 0.30000001, + "weight": 5.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Bug Bite" + ], + "chargedmove": [ + "Bug Buzz" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "416": { + "name": "Vespiquen", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee.", + "attack": 149, + "defense": 190, + "stamina": 172, + "height": 1.2, + "weight": 38.5, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Bug Bite", + "Poison Sting" + ], + "chargedmove": [ + "Bug Buzz", + "Power Gem", + "X Scissor" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "female", + "buddy_distance_evolve": "" + }, + "417": { + "name": "Pachirisu", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "A pair may be seen rubbing their cheek pouches together in an effort to share stored electricity.", + "attack": 94, + "defense": 172, + "stamina": 155, + "height": 0.40000001, + "weight": 3.9000001, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Spark", + "Volt Switch" + ], + "chargedmove": [ + "Thunder", + "Thunderbolt", + "Thunder Punch" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "418": { + "name": "Buizel", + "forms": {}, + "default_form": "", + "evolutions": [ + 419 + ], + "types": [ + "Water" + ], + "dex": "It inflates the flotation sac around its neck and pokes its head out of the water to see what is going on.", + "attack": 132, + "defense": 67, + "stamina": 146, + "height": 0.69999999, + "weight": 29.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Water Gun", + "Quick Attack" + ], + "chargedmove": [ + "Aqua Jet", + "Water Pulse", + "Swift" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "419": { + "name": "Floatzel", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Its flotation sac developed as a result of pursuing aquatic prey. It can double as a rubber raft.", + "attack": 221, + "defense": 114, + "stamina": 198, + "height": 1.1, + "weight": 33.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Water Gun", + "Waterfall" + ], + "chargedmove": [ + "Aqua Jet", + "Hydro Pump", + "Swift" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "420": { + "name": "Cherubi", + "forms": {}, + "default_form": "", + "evolutions": [ + 421 + ], + "types": [ + "Grass" + ], + "dex": "It evolves by sucking the energy out of the small ball where it had been storing nutrients.", + "attack": 108, + "defense": 92, + "stamina": 128, + "height": 0.40000001, + "weight": 3.3, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.090000004, + "quickmove": [ + "Tackle", + "Bullet Seed" + ], + "chargedmove": [ + "Dazzling Gleam", + "Petal Blizzard", + "Seed Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "421": { + "name": "Cherrim", + "forms": { + "94": { + "name": "Overcast", + "asset_form": 11 + }, + "95": { + "name": "Sunny", + "asset_form": 12 + } + }, + "default_form": 95, + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "If it senses strong sunlight, it opens its folded petals to absorb the sun's rays with its whole body.", + "attack": 170, + "defense": 153, + "stamina": 172, + "height": 0.5, + "weight": 9.3000002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Razor Leaf", + "Bullet Seed" + ], + "chargedmove": [ + "Dazzling Gleam", + "Hyper Beam", + "Solar Beam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "422": { + "name": "Shellos", + "forms": { + "96": { + "name": "West Sea", + "asset_form": 11 + }, + "97": { + "name": "East Sea", + "asset_form": 12 + } + }, + "default_form": 97, + "evolutions": [ + 423 + ], + "types": [ + "Water" + ], + "dex": "Its shape and coloration vary, depending on its habitat.", + "attack": 103, + "defense": 105, + "stamina": 183, + "height": 0.30000001, + "weight": 6.3000002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Mud Slap", + "Hidden Power" + ], + "chargedmove": [ + "Water Pulse", + "Mud Bomb", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "423": { + "name": "Gastrodon", + "forms": { + "98": { + "name": "West Sea" + }, + "99": { + "name": "East Sea" + } + }, + "default_form": 99, + "evolutions": [], + "types": [ + "Water", + "Ground" + ], + "dex": "It apparently had a huge shell for protection in ancient times. It lives in shallow tidal pools.", + "attack": 169, + "defense": 143, + "stamina": 244, + "height": 0.89999998, + "weight": 29.9, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Mud Slap", + "Hidden Power" + ], + "chargedmove": [ + "Water Pulse", + "Earthquake", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "424": { + "name": "Ambipom", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now.", + "attack": 205, + "defense": 143, + "stamina": 181, + "height": 1.2, + "weight": 20.299999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Scratch", + "Astonish" + ], + "chargedmove": [ + "Low Sweep", + "Hyper Beam", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "425": { + "name": "Drifloon", + "forms": {}, + "default_form": "", + "evolutions": [ + 426 + ], + "types": [ + "Ghost", + "Flying" + ], + "dex": "These Pokémon are called the “Signpost for Wandering Spirits.” Children holding them sometimes vanish.", + "attack": 117, + "defense": 80, + "stamina": 207, + "height": 0.40000001, + "weight": 1.2, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Hex", + "Astonish" + ], + "chargedmove": [ + "Ominous Wind", + "Icy Wind", + "Shadow Ball" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "426": { + "name": "Drifblim", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Flying" + ], + "dex": "It's drowsy in daytime, but flies off in the evening in big groups. No one knows where they go.", + "attack": 180, + "defense": 102, + "stamina": 312, + "height": 1.2, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Hex", + "Astonish" + ], + "chargedmove": [ + "Ominous Wind", + "Icy Wind", + "Shadow Ball" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "427": { + "name": "Buneary", + "forms": {}, + "default_form": "", + "evolutions": [ + 428 + ], + "types": [ + "Normal" + ], + "dex": "When it senses danger, it perks up its ears. On cold nights, it sleeps with its head tucked into its fur.", + "attack": 130, + "defense": 105, + "stamina": 146, + "height": 0.40000001, + "weight": 5.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Pound", + "Quick Attack" + ], + "chargedmove": [ + "Fire Punch", + "Swift" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "428": { + "name": "Lopunny", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "The ears appear to be delicate. If they are touched roughly, it kicks with its graceful legs.", + "attack": 156, + "defense": 194, + "stamina": 163, + "height": 1.2, + "weight": 33.299999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Pound", + "Low Kick" + ], + "chargedmove": [ + "Fire Punch", + "Hyper Beam", + "Focus Blast" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "429": { + "name": "Mismagius", + "forms": { + "722": { + "name": "Normal" + }, + "723": { + "name": "Shadow" + }, + "724": { + "name": "Purified" + } + }, + "default_form": 722, + "evolutions": [], + "types": [ + "Ghost" + ], + "dex": "Its cries sound like incantations to torment the foe. It appears where you least expect it.", + "attack": 211, + "defense": 187, + "stamina": 155, + "height": 0.89999998, + "weight": 4.4000001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Sucker Punch", + "Hex" + ], + "chargedmove": [ + "Shadow Ball", + "Dark Pulse", + "Dazzling Gleam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "430": { + "name": "Honchkrow", + "forms": { + "858": { + "name": "Normal" + }, + "859": { + "name": "Shadow" + }, + "860": { + "name": "Purified" + } + }, + "default_form": 858, + "evolutions": [], + "types": [ + "Dark", + "Flying" + ], + "dex": "Becoming active at night, it is known to swarm with numerous Murkrow in tow.", + "attack": 243, + "defense": 103, + "stamina": 225, + "height": 0.89999998, + "weight": 27.299999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Peck", + "Snarl" + ], + "chargedmove": [ + "Brave Bird", + "Psychic", + "Dark Pulse" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "431": { + "name": "Glameow", + "forms": {}, + "default_form": "", + "evolutions": [ + 432 + ], + "types": [ + "Normal" + ], + "dex": "When it's happy, Glameow demonstrates beautiful movements of its tail, like a dancing ribbon.", + "attack": 109, + "defense": 82, + "stamina": 135, + "height": 0.5, + "weight": 3.9000001, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Scratch", + "Quick Attack" + ], + "chargedmove": [ + "Play Rough", + "Thunderbolt", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "432": { + "name": "Purugly", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "To make itself appear intimidatingly beefy, it tightly cinches its waist with its twin tails.", + "attack": 172, + "defense": 133, + "stamina": 174, + "height": 1, + "weight": 43.799999, + "male_percent": 0.25, + "female_percent": 0.75, + "catch_rate": 0.15000001, + "flee_rate": 0.079999998, + "quickmove": [ + "Scratch", + "Shadow Claw" + ], + "chargedmove": [ + "Play Rough", + "Thunder", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "433": { + "name": "Chingling", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "There is an orb inside its mouth. When it hops, the orb bounces all over and makes a ringing sound.", + "attack": 114, + "defense": 94, + "stamina": 128, + "height": 0.2, + "weight": 0.60000002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Zen Headbutt", + "Astonish" + ], + "chargedmove": [ + "Wrap", + "Shadow Ball", + "Psyshock" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "434": { + "name": "Stunky", + "forms": { + "791": { + "name": "Normal", + "evolved_form": 794 + }, + "792": { + "name": "Shadow", + "evolved_form": 795 + }, + "793": { + "name": "Purified", + "evolved_form": 796 + } + }, + "default_form": 791, + "evolutions": [ + 435 + ], + "types": [ + "Poison", + "Dark" + ], + "dex": "It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours.", + "attack": 121, + "defense": 90, + "stamina": 160, + "height": 0.40000001, + "weight": 19.200001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Scratch", + "Bite" + ], + "chargedmove": [ + "Crunch", + "Flamethrower", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "435": { + "name": "Skuntank", + "forms": { + "794": { + "name": "Normal" + }, + "795": { + "name": "Shadow" + }, + "796": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Dark" + ], + "dex": "It sprays a stinky fluid from its tail. The fluid smells worse the longer it is allowed to fester.", + "attack": 184, + "defense": 132, + "stamina": 230, + "height": 1, + "weight": 38, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Poison Jab", + "Bite" + ], + "chargedmove": [ + "Crunch", + "Flamethrower", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "436": { + "name": "Bronzor", + "forms": {}, + "default_form": "", + "evolutions": [ + 437 + ], + "types": [ + "Steel", + "Psychic" + ], + "dex": "Implements shaped like it were discovered in ancient tombs. It is unknown if they are related.", + "attack": 43, + "defense": 154, + "stamina": 149, + "height": 0.5, + "weight": 60.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Confusion" + ], + "chargedmove": [ + "Gyro Ball", + "Psyshock", + "Heavy Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "437": { + "name": "Bronzong", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Psychic" + ], + "dex": "Ancient people believed that petitioning Bronzong for rain was the way to make crops grow.", + "attack": 161, + "defense": 213, + "stamina": 167, + "height": 1.3, + "weight": 187, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Feint Attack", + "Confusion" + ], + "chargedmove": [ + "Flash Cannon", + "Psychic", + "Heavy Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "438": { + "name": "Bonsly", + "forms": {}, + "default_form": "", + "evolutions": [ + 185 + ], + "types": [ + "Rock" + ], + "dex": "It prefers an arid atmosphere. It leaks water that looks like tears when adjusting its moisture level.", + "attack": 124, + "defense": 133, + "stamina": 137, + "height": 0.5, + "weight": 15, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Rock Throw", + "Counter" + ], + "chargedmove": [ + "Rock Tomb", + "Earthquake", + "Rock Slide" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": 15 + }, + "439": { + "name": "Mime Jr.", + "forms": {}, + "default_form": "", + "evolutions": [ + 122 + ], + "types": [ + "Psychic", + "Fairy" + ], + "dex": "It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon.", + "attack": 125, + "defense": 142, + "stamina": 85, + "height": 0.600000023841858, + "weight": 13, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.100000001490116, + "flee_rate": 0.0399999991059303, + "quickmove": [ + "Confusion", + "Pound" + ], + "chargedmove": [ + "Psybeam", + "Psychic", + "Psyshock" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": 25, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": 15 + }, + "440": { + "name": "Happiny", + "forms": {}, + "default_form": "", + "evolutions": [ + 113 + ], + "types": [ + "Normal" + ], + "dex": "It carefully carries a round, white rock that it thinks is an egg. It's bothered by how curly its hair looks.", + "attack": 25, + "defense": 77, + "stamina": 225, + "height": 0.60000002, + "weight": 24.4, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Pound", + "Zen Headbutt" + ], + "chargedmove": [ + "Psychic" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": 15 + }, + "441": { + "name": "Chatot", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "It can learn and speak human words. If they gather, they all learn the same saying.", + "attack": 183, + "defense": 91, + "stamina": 183, + "height": 0.5, + "weight": 1.9, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Peck", + "Steel Wing" + ], + "chargedmove": [ + "Night Shade", + "Sky Attack", + "Heat Wave" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "442": { + "name": "Spiritomb", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Dark" + ], + "dex": "It was bound to a fissure in an odd keystone as punishment for misdeeds 500 years ago.", + "attack": 169, + "defense": 199, + "stamina": 137, + "height": 1, + "weight": 108, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Feint Attack", + "Sucker Punch" + ], + "chargedmove": [ + "Shadow Sneak", + "Ominous Wind", + "Shadow Ball" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "443": { + "name": "Gible", + "forms": { + "861": { + "name": "Normal", + "evolved_form": 864 + }, + "862": { + "name": "Shadow", + "evolved_form": 865 + }, + "863": { + "name": "Purified", + "evolved_form": 866 + } + }, + "default_form": 861, + "evolutions": [ + 444 + ], + "types": [ + "Dragon", + "Ground" + ], + "dex": "It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close.", + "attack": 124, + "defense": 84, + "stamina": 151, + "height": 0.69999999, + "weight": 20.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Take Down", + "Mud Shot" + ], + "chargedmove": [ + "Dig", + "Twister", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "444": { + "name": "Gabite", + "forms": { + "864": { + "name": "Normal", + "evolved_form": 867 + }, + "865": { + "name": "Shadow", + "evolved_form": 868 + }, + "866": { + "name": "Purified", + "evolved_form": 869 + } + }, + "default_form": 864, + "evolutions": [ + 445 + ], + "types": [ + "Dragon", + "Ground" + ], + "dex": "As it digs to expand its nest, it habitually digs up gems that it then hoards in its nest.", + "attack": 172, + "defense": 125, + "stamina": 169, + "height": 1.4, + "weight": 56, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.059999999, + "quickmove": [ + "Take Down", + "Mud Shot" + ], + "chargedmove": [ + "Dig", + "Twister", + "Flamethrower" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "445": { + "name": "Garchomp", + "forms": { + "867": { + "name": "Normal" + }, + "868": { + "name": "Shadow" + }, + "869": { + "name": "Purified" + } + }, + "default_form": 867, + "evolutions": [], + "types": [ + "Dragon", + "Ground" + ], + "dex": "It flies at speeds equal to a jet fighter plane. It never allows its prey to escape.", + "attack": 261, + "defense": 193, + "stamina": 239, + "height": 1.9, + "weight": 95, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Dragon Tail", + "Mud Shot" + ], + "chargedmove": [ + "Outrage", + "Earthquake", + "Fire Blast" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "446": { + "name": "Munchlax", + "forms": {}, + "default_form": "", + "evolutions": [ + 143 + ], + "types": [ + "Normal" + ], + "dex": "It conceals food under the long fur on its body. It carts around this food stash and swallows it without chewing.", + "attack": 137, + "defense": 117, + "stamina": 286, + "height": 0.60000002, + "weight": 105, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Tackle", + "Lick" + ], + "chargedmove": [ + "Gunk Shot", + "Body Slam", + "Bulldoze" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "447": { + "name": "Riolu", + "forms": {}, + "default_form": "", + "evolutions": [ + 448 + ], + "types": [ + "Fighting" + ], + "dex": "The aura that emanates from its body intensifies to alert others if it is afraid or sad.", + "attack": 127, + "defense": 78, + "stamina": 120, + "height": 0.69999999, + "weight": 20.200001, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": "", + "flee_rate": 0.2, + "quickmove": [ + "Counter", + "Quick Attack" + ], + "chargedmove": [ + "Brick Break", + "Low Sweep", + "Cross Chop" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "448": { + "name": "Lucario", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting", + "Steel" + ], + "dex": "By reading the auras of all things, it can tell how others are feeling from over half a mile away.", + "attack": 236, + "defense": 144, + "stamina": 172, + "height": 1.2, + "weight": 54, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Counter", + "Bullet Punch" + ], + "chargedmove": [ + "Flash Cannon", + "Shadow Ball", + "Close Combat" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "449": { + "name": "Hippopotas", + "forms": { + "888": { + "name": "Normal", + "evolved_form": 891 + }, + "889": { + "name": "Shadow", + "evolved_form": 892 + }, + "890": { + "name": "Purified", + "evolved_form": 893 + } + }, + "default_form": 888, + "evolutions": [ + 450 + ], + "types": [ + "Ground" + ], + "dex": "It enshrouds itself with sand to protect itself from germs. It does not enjoy getting wet.", + "attack": 124, + "defense": 118, + "stamina": 169, + "height": 0.80000001, + "weight": 49.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Tackle", + "Bite" + ], + "chargedmove": [ + "Dig", + "Rock Tomb", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "450": { + "name": "Hippowdon", + "forms": { + "891": { + "name": "Normal" + }, + "892": { + "name": "Shadow" + }, + "893": { + "name": "Purified" + } + }, + "default_form": 891, + "evolutions": [], + "types": [ + "Ground" + ], + "dex": "It blasts internally stored sand from ports on its body to create a towering twister for attack.", + "attack": 201, + "defense": 191, + "stamina": 239, + "height": 2, + "weight": 300, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.079999998, + "quickmove": [ + "Fire Fang", + "Bite" + ], + "chargedmove": [ + "Earthquake", + "Stone Edge", + "Body Slam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "451": { + "name": "Skorupi", + "forms": {}, + "default_form": "", + "evolutions": [ + 452 + ], + "types": [ + "Poison", + "Bug" + ], + "dex": "It burrows under the sand to lie in wait for prey. Its tail claws can inject its prey with a savage poison.", + "attack": 93, + "defense": 151, + "stamina": 120, + "height": 0.80000001, + "weight": 12, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [ + "Poison Sting", + "Infestation" + ], + "chargedmove": [ + "Cross Poison", + "Aqua Tail", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "452": { + "name": "Drapion", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Dark" + ], + "dex": "It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison.", + "attack": 180, + "defense": 202, + "stamina": 172, + "height": 1.3, + "weight": 61.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.079999998, + "quickmove": [ + "Poison Sting", + "Infestation" + ], + "chargedmove": [ + "Crunch", + "Aqua Tail", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "453": { + "name": "Croagunk", + "forms": {}, + "default_form": "", + "evolutions": [ + 454 + ], + "types": [ + "Poison", + "Fighting" + ], + "dex": "Inflating its poison sacs, it fills the area with an odd sound and hits flinching opponents with a poison jab.", + "attack": 116, + "defense": 76, + "stamina": 134, + "height": 0.69999999, + "weight": 23, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.40000001, + "flee_rate": 0.12, + "quickmove": [ + "Poison Sting", + "Poison Jab" + ], + "chargedmove": [ + "Brick Break", + "Low Sweep", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "454": { + "name": "Toxicroak", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Fighting" + ], + "dex": "Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal.", + "attack": 211, + "defense": 133, + "stamina": 195, + "height": 1.3, + "weight": 44.400002, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.07, + "quickmove": [ + "Poison Jab", + "Counter" + ], + "chargedmove": [ + "Dynamic Punch", + "Mud Bomb", + "Sludge Bomb" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "455": { + "name": "Carnivine", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "It binds itself to trees in marshes. It attracts prey with its sweet-smelling drool and gulps them down.", + "attack": 187, + "defense": 136, + "stamina": 179, + "height": 1.4, + "weight": 27, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.89999998, + "flee_rate": 0.0099999998, + "quickmove": [ + "Bite", + "Vine Whip" + ], + "chargedmove": [ + "Power Whip", + "Energy Ball", + "Crunch" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "456": { + "name": "Finneon", + "forms": {}, + "default_form": "", + "evolutions": [ + 457 + ], + "types": [ + "Water" + ], + "dex": "After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives.", + "attack": 96, + "defense": 116, + "stamina": 135, + "height": 0.40000001, + "weight": 7, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.5, + "flee_rate": 0.1, + "quickmove": [ + "Pound", + "Water Gun" + ], + "chargedmove": [ + "Water Pulse", + "Ice Beam", + "Silver Wind" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "457": { + "name": "Lumineon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "To avoid detection by predators, it crawls along the seafloor using the two fins on its chest.", + "attack": 142, + "defense": 170, + "stamina": 170, + "height": 1.2, + "weight": 24, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.2, + "flee_rate": 0.059999999, + "quickmove": [ + "Waterfall", + "Water Gun" + ], + "chargedmove": [ + "Water Pulse", + "Blizzard", + "Silver Wind" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "458": { + "name": "Mantyke", + "forms": {}, + "default_form": "", + "evolutions": [ + 226 + ], + "types": [ + "Water", + "Flying" + ], + "dex": "When it swims close to the surface of the ocean, people aboard ships are able to observe the pattern on its back.", + "attack": 105, + "defense": 179, + "stamina": 128, + "height": 1, + "weight": 65, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.039999999, + "quickmove": [ + "Bubble", + "Tackle" + ], + "chargedmove": [ + "Water Pulse", + "Ice Beam", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "459": { + "name": "Snover", + "forms": { + "932": { + "name": "Normal" + }, + "933": { + "name": "Shadow" + }, + "934": { + "name": "Purified" + } + }, + "default_form": 932, + "evolutions": [ + 460 + ], + "types": [ + "Grass", + "Ice" + ], + "dex": "In the spring, it grows berries with the texture of frozen treats around its belly.", + "attack": 115, + "defense": 105, + "stamina": 155, + "height": 1, + "weight": 50.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [ + "Powder Snow", + "Ice Shard" + ], + "chargedmove": [ + "Ice Beam", + "Energy Ball", + "Stomp" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "460": { + "name": "Abomasnow", + "forms": { + "935": { + "name": "Normal" + }, + "936": { + "name": "Shadow" + }, + "937": { + "name": "Purified" + } + }, + "default_form": 935, + "evolutions": [], + "types": [ + "Grass", + "Ice" + ], + "dex": "It lives a quiet life on mountains that are perpetually covered in snow. It hides itself by whipping up blizzards.", + "attack": 178, + "defense": 158, + "stamina": 207, + "height": 2.2, + "weight": 135.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Powder Snow", + "Razor Leaf" + ], + "chargedmove": [ + "Blizzard", + "Energy Ball", + "Outrage" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "461": { + "name": "Weavile", + "forms": { + "800": { + "name": "Normal" + }, + "801": { + "name": "Shadow" + }, + "802": { + "name": "Purified" + } + }, + "default_form": 800, + "evolutions": [], + "types": [ + "Dark", + "Ice" + ], + "dex": "They live in cold regions, forming groups of four or five that hunt prey with impressive coordination.", + "attack": 243, + "defense": 171, + "stamina": 172, + "height": 1.1, + "weight": 34, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Ice Shard", + "Feint Attack" + ], + "chargedmove": [ + "Avalanche", + "Focus Blast", + "Foul Play" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "462": { + "name": "Magnezone", + "forms": { + "661": { + "name": "Normal" + }, + "662": { + "name": "Shadow" + }, + "663": { + "name": "Purified" + } + }, + "default_form": 661, + "evolutions": [], + "types": [ + "Electric", + "Steel" + ], + "dex": "It evolved from exposure to a special magnetic field. Three units generate magnetism.", + "attack": 238, + "defense": 205, + "stamina": 172, + "height": 1.2, + "weight": 180, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [ + "Spark", + "Charge Beam" + ], + "chargedmove": [ + "Zap Cannon", + "Wild Charge", + "Flash Cannon" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "463": { + "name": "Lickilicky", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Their saliva contains lots of components that can dissolve anything. The numbness caused by their lick does not dissipate.", + "attack": 161, + "defense": 181, + "stamina": 242, + "height": 1.7, + "weight": 140, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.090000004, + "quickmove": [ + "Lick", + "Zen Headbutt" + ], + "chargedmove": [ + "Hyper Beam", + "Earthquake", + "Solar Beam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "464": { + "name": "Rhyperior", + "forms": { + "852": { + "name": "Normal" + }, + "853": { + "name": "Shadow" + }, + "854": { + "name": "Purified" + } + }, + "default_form": 852, + "evolutions": [], + "types": [ + "Ground", + "Rock" + ], + "dex": "It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times.", + "attack": 241, + "defense": 190, + "stamina": 251, + "height": 2.4000001, + "weight": 282.79999, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Slap", + "Smack Down" + ], + "chargedmove": [ + "Surf", + "Earthquake", + "Stone Edge" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "465": { + "name": "Tangrowth", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "Its vines grow so profusely that, in the warm season, you can't even see its eyes.", + "attack": 207, + "defense": 184, + "stamina": 225, + "height": 2, + "weight": 128.60001, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.15000001, + "flee_rate": 0.1, + "quickmove": [ + "Vine Whip", + "Infestation" + ], + "chargedmove": [ + "Ancient Power", + "Sludge Bomb", + "Solar Beam" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "466": { + "name": "Electivire", + "forms": { + "643": { + "name": "Normal" + }, + "644": { + "name": "Shadow" + }, + "645": { + "name": "Purified" + } + }, + "default_form": 643, + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power.", + "attack": 249, + "defense": 163, + "stamina": 181, + "height": 1.8, + "weight": 138.60001, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.15000001, + "flee_rate": 0.1, + "quickmove": [ + "Thunder Shock", + "Low Kick" + ], + "chargedmove": [ + "Thunder Punch", + "Wild Charge", + "Thunder" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "467": { + "name": "Magmortar", + "forms": { + "637": { + "name": "Normal" + }, + "638": { + "name": "Shadow" + }, + "639": { + "name": "Purified" + } + }, + "default_form": 637, + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "It blasts fireballs of over 3,600 degrees Fahrenheit out of its arms. Its breath also sears and sizzles.", + "attack": 247, + "defense": 172, + "stamina": 181, + "height": 1.6, + "weight": 68, + "male_percent": 0.75, + "female_percent": 0.25, + "catch_rate": 0.15000001, + "flee_rate": 0.1, + "quickmove": [ + "Fire Spin", + "Karate Chop" + ], + "chargedmove": [ + "Brick Break", + "Fire Punch", + "Fire Blast" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "468": { + "name": "Togekiss", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy", + "Flying" + ], + "dex": "It shares many blessings with people who respect one another's rights and avoid needless strife.", + "attack": 225, + "defense": 217, + "stamina": 198, + "height": 1.5, + "weight": 38, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.0099999998, + "flee_rate": 0.050000001, + "quickmove": [ + "Air Slash", + "Hidden Power" + ], + "chargedmove": [ + "Ancient Power", + "Dazzling Gleam", + "Aerial Ace" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "469": { + "name": "Yanmega", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "This six-legged Pokémon is easily capable of transporting an adult in flight. The wings on its tail help it stay balanced.", + "attack": 231, + "defense": 156, + "stamina": 200, + "height": 1.9, + "weight": 51.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.175, + "flee_rate": 0.050000001, + "quickmove": [ + "Bug Bite", + "Wing Attack" + ], + "chargedmove": [ + "Ancient Power", + "Aerial Ace", + "Bug Buzz" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "470": { + "name": "Leafeon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air.", + "attack": 216, + "defense": 219, + "stamina": 163, + "height": 1, + "weight": 25.5, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Razor Leaf", + "Quick Attack" + ], + "chargedmove": [ + "Solar Beam", + "Leaf Blade", + "Energy Ball" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "471": { + "name": "Glaceon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "It lowers its body heat to freeze its fur. The hairs then become like needles it can fire.", + "attack": 238, + "defense": 205, + "stamina": 163, + "height": 0.80000001, + "weight": 25.9, + "male_percent": 0.875, + "female_percent": 0.125, + "catch_rate": 0.125, + "flee_rate": 0.059999999, + "quickmove": [ + "Ice Shard", + "Frost Breath" + ], + "chargedmove": [ + "Avalanche", + "Icy Wind", + "Ice Beam" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "472": { + "name": "Gliscor", + "forms": { + "806": { + "name": "Normal" + }, + "807": { + "name": "Shadow" + }, + "808": { + "name": "Purified" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Ground", + "Flying" + ], + "dex": "Its flight is soundless. It uses its lengthy tail to carry off its prey... Then its elongated fangs do the rest.", + "attack": 185, + "defense": 222, + "stamina": 181, + "height": 2, + "weight": 42.5, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.125, + "flee_rate": 0.090000004, + "quickmove": [ + "Fury Cutter", + "Wing Attack" + ], + "chargedmove": [ + "Earthquake", + "Aerial Ace", + "Night Slash" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "473": { + "name": "Mamoswine", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice", + "Ground" + ], + "dex": "Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age.", + "attack": 247, + "defense": 146, + "stamina": 242, + "height": 2.5, + "weight": 291, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [ + "Mud Slap", + "Powder Snow" + ], + "chargedmove": [ + "Avalanche", + "Bulldoze", + "Stone Edge" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "474": { + "name": "Porygon z", + "forms": { + "683": { + "name": "Normal" + }, + "684": { + "name": "Shadow" + }, + "685": { + "name": "Purified" + } + }, + "default_form": 683, + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Its programming was modified to enable it to travel through alien dimensions. Seems there might have been an error...", + "attack": 264, + "defense": 150, + "stamina": 198, + "height": 0.899999976158142, + "weight": 34, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.0500000007450581, + "flee_rate": 0.0500000007450581, + "quickmove": [ + "Hidden Power", + "Charge Beam" + ], + "chargedmove": [ + "Solar Beam", + "Hyper Beam", + "Zap Cannon" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": 50, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "475": { + "name": "Gallade", + "forms": { + "301": { + "name": "Normal" + }, + "302": { + "name": "Shadow" + }, + "303": { + "name": "Purified" + } + }, + "default_form": 301, + "evolutions": [], + "types": [ + "Psychic", + "Fighting" + ], + "dex": "A master of courtesy and swordsmanship, it fights using extending swords on its elbows.", + "attack": 237, + "defense": 195, + "stamina": 169, + "height": 1.6, + "weight": 52, + "male_percent": 1, + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.050000001, + "quickmove": [ + "Confusion", + "Low Kick" + ], + "chargedmove": [ + "Close Combat", + "Psychic", + "Leaf Blade" + ], + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "male", + "buddy_distance_evolve": "" + }, + "476": { + "name": "Probopass", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Steel" + ], + "dex": "It freely controls three small units called Mini-Noses using magnetic force.", + "attack": 135, + "defense": 275, + "stamina": 155, + "height": 1.4, + "weight": 340, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [ + "Rock Throw", + "Spark" + ], + "chargedmove": [ + "Magnet Bomb", + "Rock Slide", + "Thunderbolt" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "477": { + "name": "Dusknoir", + "forms": { + "920": { + "name": "Normal" + }, + "921": { + "name": "Shadow" + }, + "922": { + "name": "Purified" + } + }, + "default_form": 920, + "evolutions": [], + "types": [ + "Ghost" + ], + "dex": "The antenna on its head captures radio waves from the world of spirits that command it to take people there.", + "attack": 180, + "defense": 254, + "stamina": 128, + "height": 2.2, + "weight": 106.6, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.1, + "flee_rate": 0.050000001, + "quickmove": [ + "Hex", + "Astonish" + ], + "chargedmove": [ + "Ominous Wind", + "Psychic", + "Dark Pulse" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "478": { + "name": "Froslass", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice", + "Ghost" + ], + "dex": "Legends in snowy regions say that a woman who was lost on an icy mountain was reborn as Froslass.", + "attack": 171, + "defense": 150, + "stamina": 172, + "height": 1.3, + "weight": 26.6, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [ + "Powder Snow", + "Hex" + ], + "chargedmove": [ + "Avalanche", + "Crunch", + "Shadow Ball" + ], + "candy": 25, + "buddy_distance": 3, + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "female", + "buddy_distance_evolve": "" + }, + "479": { + "name": "Rotom", + "forms": { + "81": { + "name": "Normal", + "types": [ + "Electric", + "Ghost" + ], + "attack": 185, + "defense": 159, + "stamina": 137, + "height": 0.300000011920929, + "weight": 0.300000011920929, + "quickmove": [ + "Astonish", + "Thunder Shock" + ], + "chargedmove": [ + "Ominous Wind", + "Thunderbolt", + "Thunder" + ] + }, + "82": { + "name": "Frost", + "types": [ + "Electric", + "Ice" + ], + "asset_form": 14, + "attack": 204, + "defense": 219, + "stamina": 137, + "height": 0.300000011920929, + "weight": 0.300000011920929, + "quickmove": [ + "Astonish", + "Thunder Shock" + ], + "chargedmove": [ + "Blizzard", + "Thunderbolt", + "Thunder" + ] + }, + "83": { + "name": "Fan", + "types": [ + "Electric", + "Flying" + ], + "asset_form": 15, + "attack": 204, + "defense": 219, + "stamina": 137, + "height": 0.300000011920929, + "weight": 0.300000011920929, + "quickmove": [ + "Astonish", + "Air Slash" + ], + "chargedmove": [ + "Ominous Wind", + "Thunderbolt", + "Thunder" + ] + }, + "84": { + "name": "Mow", + "types": [ + "Electric", + "Grass" + ], + "asset_form": 16, + "attack": 204, + "defense": 219, + "stamina": 137, + "height": 0.300000011920929, + "weight": 0.300000011920929, + "quickmove": [ + "Astonish", + "Thunder Shock" + ], + "chargedmove": [ + "Ominous Wind", + "Thunderbolt", + "Thunder" + ] + }, + "85": { + "name": "Wash", + "types": [ + "Electric", + "Water" + ], + "asset_form": 13, + "attack": 204, + "defense": 219, + "stamina": 137, + "height": 0.300000011920929, + "weight": 0.300000011920929, + "quickmove": [ + "Astonish", + "Thunder Shock" + ], + "chargedmove": [ + "Hydro Pump", + "Thunderbolt", + "Thunder" + ] + }, + "86": { + "name": "Heat", + "types": [ + "Electric", + "Fire" + ], + "asset_form": 12, + "attack": 204, + "defense": 219, + "stamina": 137, + "height": 0.300000011920929, + "weight": 0.300000011920929, + "quickmove": [ + "Astonish", + "Thunder Shock" + ], + "chargedmove": [ + "Overheat", + "Thunderbolt", + "Thunder" + ] + } + }, + "default_form": 81, + "evolutions": [], + "dex": "Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "candy": 25, + "buddy_distance": 5, + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 0.30000001, + "weight": 0.30000001 + }, + "480": { + "name": "Uxie", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "It is said that its emergence gave humans the intelligence to improve their quality of life.", + "attack": 156, + "defense": 270, + "stamina": 181, + "height": 0.30000001, + "weight": 0.30000001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0399999991059303, + "quickmove": [ + "Confusion", + "Extrasensory" + ], + "chargedmove": [ + "Futuresight", + "Swift", + "Thunder" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "481": { + "name": "Mesprit", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "It sleeps at the bottom of a lake. Its spirit is said to leave its body to fly on the lake's surface.", + "attack": 212, + "defense": 212, + "stamina": 190, + "height": 0.30000001, + "weight": 0.30000001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0399999991059303, + "quickmove": [ + "Confusion", + "Extrasensory" + ], + "chargedmove": [ + "Futuresight", + "Swift", + "Blizzard" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "482": { + "name": "Azelf", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "It is thought that Uxie, Mesprit, and Azelf all came from the same egg.", + "attack": 270, + "defense": 151, + "stamina": 181, + "height": 0.30000001, + "weight": 0.30000001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0399999991059303, + "quickmove": [ + "Confusion", + "Extrasensory" + ], + "chargedmove": [ + "Futuresight", + "Swift", + "Fire Blast" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "483": { + "name": "Dialga", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Dragon" + ], + "dex": "It has the power to control time. It appears in Sinnoh-region myths as an ancient deity.", + "attack": 275, + "defense": 211, + "stamina": 205, + "height": 5.4000001, + "weight": 683, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Dragon Breath", + "Metal Claw" + ], + "chargedmove": [ + "Draco Meteor", + "Iron Head", + "Thunder" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "484": { + "name": "Palkia", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Dragon" + ], + "dex": "It has the ability to distort space. It is described as a deity in Sinnoh-region mythology.", + "attack": 280, + "defense": 215, + "stamina": 189, + "height": 4.1999998, + "weight": 336, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Dragon Breath", + "Dragon Tail" + ], + "chargedmove": [ + "Draco Meteor", + "Fire Blast", + "Hydro Pump" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "485": { + "name": "Heatran", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Steel" + ], + "dex": "Boiling blood, like magma, circulates through its body. It makes its dwelling place in volcanic caves.", + "attack": 251, + "defense": 213, + "stamina": 209, + "height": 1.7, + "weight": 430, + "male_percent": 0.5, + "female_percent": 0.5, + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Fire Spin", + "Bug Bite" + ], + "chargedmove": [ + "Fire Blast", + "Iron Head", + "Stone Edge" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "486": { + "name": "Regigigas", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "There is an enduring legend that states this Pokémon towed continents with ropes.", + "attack": 287, + "defense": 210, + "stamina": 221, + "height": 3.7, + "weight": 420, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Zen Headbutt", + "Rock Smash" + ], + "chargedmove": [ + "Stone Edge", + "Avalanche", + "Heavy Slam" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "487": { + "name": "Giratina", + "forms": { + "90": { + "name": "Altered", + "types": [ + "Ghost", + "Dragon" + ], + "attack": 187, + "defense": 225, + "stamina": 284, + "height": 4.5, + "weight": 750, + "quickmove": [ + "Dragon Breath", + "Shadow Claw" + ], + "chargedmove": [ + "Dragon Claw", + "Ancient Power", + "Shadow Sneak" + ] + }, + "91": { + "name": "Origin", + "types": [ + "Ghost", + "Dragon" + ], + "asset_form": 12, + "attack": 225, + "defense": 187, + "stamina": 284, + "height": 6.90000009536743, + "weight": 650, + "quickmove": [ + "Dragon Tail", + "Shadow Claw" + ], + "chargedmove": [ + "Dragon Pulse", + "Ominous Wind", + "Shadow Ball" + ] + } + }, + "default_form": 90, + "evolutions": [], + "dex": "This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 4.5, + "weight": 750 + }, + "488": { + "name": "Cresselia", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "Those who sleep holding Cresselia's feather are assured of joyful dreams. It is said to represent the crescent moon.", + "attack": 152, + "defense": 258, + "stamina": 260, + "height": 1.5, + "weight": 85.599998, + "male_percent": "", + "female_percent": 1, + "catch_rate": 0.02, + "flee_rate": 0.039999999, + "quickmove": [ + "Psycho Cut", + "Confusion" + ], + "chargedmove": [ + "Aurora Beam", + "Moonblast", + "Futuresight" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "489": { + "name": "Phione", + "forms": {}, + "default_form": "", + "evolutions": [ + 490 + ], + "types": [ + "Water" + ], + "dex": "It drifts in warm seas. It always returns to where it was born, no matter how far it may have drifted.", + "attack": 162, + "defense": 162, + "stamina": 190, + "height": 0.40000001, + "weight": 3.0999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": "", + "quickmove": [ + "Waterfall", + "Bubble" + ], + "chargedmove": [ + "Bubble Beam", + "Water Pulse", + "Surf" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "490": { + "name": "Manaphy", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "It starts its life with a wondrous power that permits it to bond with any kind of Pokémon.", + "attack": 210, + "defense": 210, + "stamina": 225, + "height": 0.30000001, + "weight": 1.4, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": "", + "quickmove": [ + "Waterfall", + "Bubble" + ], + "chargedmove": [ + "Bubble Beam", + "Psychic", + "Surf" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "491": { + "name": "Darkrai", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark" + ], + "dex": "It can lull people to sleep and make them dream. It is active during nights of the new moon.", + "attack": 285, + "defense": 198, + "stamina": 172, + "height": 1.5, + "weight": 50.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": "", + "quickmove": [ + "Snarl", + "Feint Attack" + ], + "chargedmove": [ + "Focus Blast", + "Shadow Ball", + "Dark Pulse" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "492": { + "name": "Shaymin", + "forms": { + "92": { + "name": "Sky", + "types": [], + "attack": 261, + "defense": 166, + "stamina": 225, + "height": 0.400000005960464, + "weight": 5.19999980926514, + "quickmove": [ + "Hidden Power", + "Zen Headbutt" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot", + "Solar Beam" + ] + }, + "93": { + "name": "Land", + "types": [ + "Grass" + ], + "attack": 210, + "defense": 210, + "stamina": 225, + "height": 0.200000002980232, + "weight": 2.09999990463257, + "quickmove": [ + "Hidden Power", + "Zen Headbutt" + ], + "chargedmove": [ + "Energy Ball", + "Grass Knot", + "Solar Beam" + ] + } + }, + "default_form": 92, + "evolutions": [], + "dex": "It can dissolve toxins in the air to instantly transform ruined land into a lush field of flowers.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": "", + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 0.2, + "weight": 2.0999999 + }, + "493": { + "name": "Arceus", + "forms": { + "100": { + "name": "Normal", + "types": [ + "Normal" + ] + }, + "101": { + "name": "Fighting", + "types": [ + "Fighting" + ] + }, + "102": { + "name": "Flying", + "types": [ + "Flying" + ] + }, + "103": { + "name": "Poison", + "types": [ + "Poison" + ] + }, + "104": { + "name": "Ground", + "types": [ + "Ground" + ] + }, + "105": { + "name": "Rock", + "types": [ + "Rock" + ] + }, + "106": { + "name": "Bug", + "types": [ + "Bug" + ] + }, + "107": { + "name": "Ghost", + "evolutions": [ + "Ghost" + ] + }, + "108": { + "name": "Steel", + "types": [ + "Steel" + ] + }, + "109": { + "name": "Fire", + "types": [ + "Fire" + ] + }, + "110": { + "name": "Water", + "types": [ + "Water" + ] + }, + "111": { + "name": "Grass", + "types": [ + "Grass" + ] + }, + "112": { + "name": "Electric", + "types": [ + "Electric" + ] + }, + "113": { + "name": "Psychic", + "types": [ + "Psychic" + ] + }, + "114": { + "name": "Ice", + "types": [ + "Ice" + ] + }, + "115": { + "name": "Dragon", + "types": [ + "Dragon" + ] + }, + "116": { + "name": "Dark", + "types": [ + "Dark" + ] + }, + "117": { + "name": "Fairy", + "types": [ + "Fairy" + ] + } + }, + "default_form": 100, + "evolutions": [], + "dex": "It is told in mythology that this Pokémon was born before the universe even existed.", + "attack": 238, + "defense": 238, + "stamina": 237, + "height": 3.2, + "weight": 320, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": "", + "quickmove": [ + "Iron Tail", + "Shadow Claw" + ], + "chargedmove": [ + "Futuresight", + "Hyper Beam", + "Outrage" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "494": { + "name": "Victini", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Fire" + ], + "dex": "When it shares the infinite energy it creates, that being's entire body will be overflowing with power.", + "attack": 210, + "defense": 210, + "stamina": 225, + "height": 0.40000001, + "weight": 4, + "male_percent": "", + "female_percent": "", + "catch_rate": 100, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "495": { + "name": "Snivy", + "forms": {}, + "default_form": "", + "evolutions": [ + 496 + ], + "types": [ + "Grass" + ], + "dex": "They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop.", + "attack": 88, + "defense": 107, + "stamina": 128, + "height": 0.60000002, + "weight": 8.1000004, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "496": { + "name": "Servine", + "forms": {}, + "default_form": "", + "evolutions": [ + 497 + ], + "types": [ + "Grass" + ], + "dex": "When it gets dirty, its leaves can't be used in photosynthesis, so it always keeps itself clean.", + "attack": 122, + "defense": 152, + "stamina": 155, + "height": 0.80000001, + "weight": 16, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "497": { + "name": "Serperior", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "It can stop its opponents' movements with just a glare. It takes in solar energy and boosts it internally.", + "attack": 161, + "defense": 204, + "stamina": 181, + "height": 3.3, + "weight": 63, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "498": { + "name": "Tepig", + "forms": {}, + "default_form": "", + "evolutions": [ + 499 + ], + "types": [ + "Fire" + ], + "dex": "It loves to eat roasted berries, but sometimes it gets too excited and burns them to a crisp.", + "attack": 115, + "defense": 85, + "stamina": 163, + "height": 0.5, + "weight": 9.8999996, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "499": { + "name": "Pignite", + "forms": {}, + "default_form": "", + "evolutions": [ + 500 + ], + "types": [ + "Fire", + "Fighting" + ], + "dex": "When its internal fire flares up, its movements grow sharper and faster. When in trouble, it emits smoke.", + "attack": 173, + "defense": 106, + "stamina": 207, + "height": 1, + "weight": 55.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "500": { + "name": "Emboar", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Fighting" + ], + "dex": "It has mastered fast and powerful fighting moves. It grows a beard of fire.", + "attack": 235, + "defense": 127, + "stamina": 242, + "height": 1.6, + "weight": 150, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "501": { + "name": "Oshawott", + "forms": {}, + "default_form": "", + "evolutions": [ + 502 + ], + "types": [ + "Water" + ], + "dex": "It fights using the scalchop on its stomach. In response to an attack, it retaliates immediately by slashing.", + "attack": 117, + "defense": 85, + "stamina": 146, + "height": 0.5, + "weight": 5.9000001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "502": { + "name": "Dewott", + "forms": {}, + "default_form": "", + "evolutions": [ + 503 + ], + "types": [ + "Water" + ], + "dex": "As a result of strict training, each Dewott learns different forms for using the scalchops.", + "attack": 159, + "defense": 116, + "stamina": 181, + "height": 0.80000001, + "weight": 24.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "503": { + "name": "Samurott", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "One swing of the sword incorporated in its armor can fell an opponent. A simple glare from one of them quiets everybody.", + "attack": 212, + "defense": 157, + "stamina": 216, + "height": 1.5, + "weight": 94.599998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "504": { + "name": "Patrat", + "forms": {}, + "default_form": "", + "evolutions": [ + 505 + ], + "types": [ + "Normal" + ], + "dex": "Extremely cautious, one of them will always be on the lookout, but it won't notice a foe coming from behind.", + "attack": 98, + "defense": 73, + "stamina": 128, + "height": 0.5, + "weight": 11.6, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "505": { + "name": "Watchog", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "When they see an enemy, their tails stand high, and they spit the seeds of berries stored in their cheek pouches.", + "attack": 165, + "defense": 139, + "stamina": 155, + "height": 1.1, + "weight": 27, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "506": { + "name": "Lillipup", + "forms": {}, + "default_form": "", + "evolutions": [ + 507 + ], + "types": [ + "Normal" + ], + "dex": "Though it is a very brave Pokémon, it's also smart enough to check its foe's strength and avoid battle.", + "attack": 107, + "defense": 86, + "stamina": 128, + "height": 0.40000001, + "weight": 4.0999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "507": { + "name": "Herdier", + "forms": {}, + "default_form": "", + "evolutions": [ + 508 + ], + "types": [ + "Normal" + ], + "dex": "It has black, cape-like fur that is very hard and decreases the amount of damage it receives.", + "attack": 145, + "defense": 126, + "stamina": 163, + "height": 0.89999998, + "weight": 14.7, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "508": { + "name": "Stoutland", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Being wrapped in its long fur is so comfortable that a person would be fine even overnight on a wintry mountain.", + "attack": 206, + "defense": 182, + "stamina": 198, + "height": 1.2, + "weight": 61, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "509": { + "name": "Purrloin", + "forms": {}, + "default_form": "", + "evolutions": [ + 510 + ], + "types": [ + "Dark" + ], + "dex": "They steal from people for fun, but their victims can't help but forgive them. Their deceptively cute act is perfect.", + "attack": 98, + "defense": 73, + "stamina": 121, + "height": 0.40000001, + "weight": 10.1, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "510": { + "name": "Liepard", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark" + ], + "dex": "Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react.", + "attack": 187, + "defense": 106, + "stamina": 162, + "height": 1.1, + "weight": 37.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "511": { + "name": "Pansage", + "forms": {}, + "default_form": "", + "evolutions": [ + 512 + ], + "types": [ + "Grass" + ], + "dex": "It's good at finding berries and gathers them from all over. It's kind enough to share them with friends.", + "attack": 104, + "defense": 94, + "stamina": 137, + "height": 0.60000002, + "weight": 10.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "512": { + "name": "Simisage", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter.", + "attack": 206, + "defense": 133, + "stamina": 181, + "height": 1.1, + "weight": 30.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "513": { + "name": "Pansear", + "forms": {}, + "default_form": "", + "evolutions": [ + 514 + ], + "types": [ + "Fire" + ], + "dex": "This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600 degrees Fahrenheit.", + "attack": 104, + "defense": 94, + "stamina": 137, + "height": 0.60000002, + "weight": 11, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "514": { + "name": "Simisear", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "When it gets excited, embers rise from its head and tail and it gets hot. For some reason, it loves sweets.", + "attack": 206, + "defense": 133, + "stamina": 181, + "height": 1, + "weight": 28, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "515": { + "name": "Panpour", + "forms": {}, + "default_form": "", + "evolutions": [ + 516 + ], + "types": [ + "Water" + ], + "dex": "The water stored inside the tuft on its head is full of nutrients. Plants that receive its water grow large.", + "attack": 104, + "defense": 94, + "stamina": 137, + "height": 0.60000002, + "weight": 13.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "516": { + "name": "Simipour", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "It prefers places with clean water. When its tuft runs low, it replenishes it by siphoning up water with its tail.", + "attack": 206, + "defense": 133, + "stamina": 181, + "height": 1, + "weight": 29, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "517": { + "name": "Munna", + "forms": {}, + "default_form": "", + "evolutions": [ + 518 + ], + "types": [ + "Psychic" + ], + "dex": "It eats the dreams of people and Pokémon. When it eats a pleasant dream, it expels pink-colored mist.", + "attack": 111, + "defense": 92, + "stamina": 183, + "height": 0.60000002, + "weight": 23.299999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "518": { + "name": "Musharna", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "The dream mist coming from its forehead changes into many different colors depending on the dream that was eaten.", + "attack": 183, + "defense": 166, + "stamina": 253, + "height": 1.1, + "weight": 60.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "519": { + "name": "Pidove", + "forms": {}, + "default_form": "", + "evolutions": [ + 520 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas.", + "attack": 98, + "defense": 80, + "stamina": 137, + "height": 0.30000001, + "weight": 2.0999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "520": { + "name": "Tranquill", + "forms": {}, + "default_form": "", + "evolutions": [ + 521 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "No matter where in the world it goes, it knows where its nest is, so it never gets separated from its Trainer.", + "attack": 144, + "defense": 107, + "stamina": 158, + "height": 0.60000002, + "weight": 15, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "521": { + "name": "Unfezant", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers.", + "attack": 226, + "defense": 146, + "stamina": 190, + "height": 1.2, + "weight": 29, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "522": { + "name": "Blitzle", + "forms": {}, + "default_form": "", + "evolutions": [ + 523 + ], + "types": [ + "Electric" + ], + "dex": "Its mane shines when it discharges electricity. They use the frequency and rhythm of these flashes to communicate.", + "attack": 118, + "defense": 64, + "stamina": 128, + "height": 0.80000001, + "weight": 29.799999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "523": { + "name": "Zebstrika", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "They have lightning-like movements. When Zebstrika run at full speed, the sound of thunder reverberates.", + "attack": 211, + "defense": 136, + "stamina": 181, + "height": 1.6, + "weight": 79.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "524": { + "name": "Roggenrola", + "forms": {}, + "default_form": "", + "evolutions": [ + 525 + ], + "types": [ + "Rock" + ], + "dex": "They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core.", + "attack": 121, + "defense": 110, + "stamina": 146, + "height": 0.40000001, + "weight": 18, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "525": { + "name": "Boldore", + "forms": {}, + "default_form": "", + "evolutions": [ + 526 + ], + "types": [ + "Rock" + ], + "dex": "When it is healthy, its core sticks out. Always facing the same way, it swiftly moves front to back and left to right.", + "attack": 174, + "defense": 143, + "stamina": 172, + "height": 0.89999998, + "weight": 102, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "526": { + "name": "Gigalith", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock" + ], + "dex": "Compressing the energy from its internal core lets it fire off an attack capable of blowing away a mountain.", + "attack": 226, + "defense": 201, + "stamina": 198, + "height": 1.7, + "weight": 260, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "527": { + "name": "Woobat", + "forms": {}, + "default_form": "", + "evolutions": [ + 528 + ], + "types": [ + "Psychic", + "Flying" + ], + "dex": "The heart-shaped mark left on a body after a Woobat has been attached to it is said to bring good fortune.", + "attack": 107, + "defense": 85, + "stamina": 163, + "height": 0.40000001, + "weight": 2.0999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "528": { + "name": "Swoobat", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Flying" + ], + "dex": "Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift.", + "attack": 161, + "defense": 119, + "stamina": 167, + "height": 0.89999998, + "weight": 10.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "529": { + "name": "Drilbur", + "forms": {}, + "default_form": "", + "evolutions": [ + 530 + ], + "types": [ + "Ground" + ], + "dex": "By spinning its body, it can dig straight through the ground at a speed of 30 mph.", + "attack": 154, + "defense": 85, + "stamina": 155, + "height": 0.30000001, + "weight": 8.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.2, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "530": { + "name": "Excadrill", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground", + "Steel" + ], + "dex": "More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels.", + "attack": 255, + "defense": 129, + "stamina": 242, + "height": 0.69999999, + "weight": 40.400002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "531": { + "name": "Audino", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "It touches others with the feelers on its ears, using the sound of their heartbeats to tell how they are feeling.", + "attack": 114, + "defense": 163, + "stamina": 230, + "height": 1.1, + "weight": 31, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "532": { + "name": "Timburr", + "forms": {}, + "default_form": "", + "evolutions": [ + 533 + ], + "types": [ + "Fighting" + ], + "dex": "Always carrying squared logs, they help out with construction. As they grow, they carry bigger logs.", + "attack": 134, + "defense": 87, + "stamina": 181, + "height": 0.60000002, + "weight": 12.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "533": { + "name": "Gurdurr", + "forms": {}, + "default_form": "", + "evolutions": [ + 534 + ], + "types": [ + "Fighting" + ], + "dex": "This Pokémon is so muscular and strongly built that even a group of wrestlers could not make it budge an inch.", + "attack": 180, + "defense": 134, + "stamina": 198, + "height": 1.2, + "weight": 40, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "534": { + "name": "Conkeldurr", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Rather than rely on force, they master moves that utilize the centrifugal force of spinning concrete.", + "attack": 243, + "defense": 158, + "stamina": 233, + "height": 1.4, + "weight": 87, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "535": { + "name": "Tympole", + "forms": {}, + "default_form": "", + "evolutions": [ + 536 + ], + "types": [ + "Water" + ], + "dex": "By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk.", + "attack": 98, + "defense": 78, + "stamina": 137, + "height": 0.5, + "weight": 4.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "536": { + "name": "Palpitoad", + "forms": {}, + "default_form": "", + "evolutions": [ + 537 + ], + "types": [ + "Water", + "Ground" + ], + "dex": "It lives in the water and on land. It uses its long, sticky tongue to immobilize its opponents.", + "attack": 128, + "defense": 109, + "stamina": 181, + "height": 0.80000001, + "weight": 17, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "537": { + "name": "Seismitoad", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Ground" + ], + "dex": "They shoot paralyzing liquid from their head bumps. They use vibration to hurt their opponents.", + "attack": 188, + "defense": 150, + "stamina": 233, + "height": 1.5, + "weight": 62, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "538": { + "name": "Throh", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "When it encounters a foe bigger than itself, it wants to throw it. It changes belts as it gets stronger.", + "attack": 172, + "defense": 160, + "stamina": 260, + "height": 1.3, + "weight": 55.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "539": { + "name": "Sawk", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them.", + "attack": 231, + "defense": 153, + "stamina": 181, + "height": 1.4, + "weight": 51, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "540": { + "name": "Sewaddle", + "forms": {}, + "default_form": "", + "evolutions": [ + 541 + ], + "types": [ + "Bug", + "Grass" + ], + "dex": "Since this Pokémon makes its own clothes out of leaves, it is a popular mascot for fashion designers.", + "attack": 96, + "defense": 124, + "stamina": 128, + "height": 0.30000001, + "weight": 2.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "541": { + "name": "Swadloon", + "forms": {}, + "default_form": "", + "evolutions": [ + 542 + ], + "types": [ + "Bug", + "Grass" + ], + "dex": "It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests.", + "attack": 115, + "defense": 162, + "stamina": 146, + "height": 0.5, + "weight": 7.3000002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "542": { + "name": "Leavanny", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Grass" + ], + "dex": "It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle.", + "attack": 205, + "defense": 165, + "stamina": 181, + "height": 1.2, + "weight": 20.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "543": { + "name": "Venipede", + "forms": {}, + "default_form": "", + "evolutions": [ + 544 + ], + "types": [ + "Bug", + "Poison" + ], + "dex": "Its bite injects a potent poison, enough to paralyze large bird Pokémon that try to prey on it.", + "attack": 83, + "defense": 99, + "stamina": 102, + "height": 0.40000001, + "weight": 5.3000002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "544": { + "name": "Whirlipede", + "forms": {}, + "default_form": "", + "evolutions": [ + 545 + ], + "types": [ + "Bug", + "Poison" + ], + "dex": "It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent.", + "attack": 100, + "defense": 173, + "stamina": 120, + "height": 1.2, + "weight": 58.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "545": { + "name": "Scolipede", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Poison" + ], + "dex": "With quick movements, it chases down its foes, attacking relentlessly with its horns until it prevails.", + "attack": 203, + "defense": 175, + "stamina": 155, + "height": 2.5, + "weight": 200.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "546": { + "name": "Cottonee", + "forms": {}, + "default_form": "", + "evolutions": [ + 547 + ], + "types": [ + "Grass", + "Fairy" + ], + "dex": "Perhaps because they feel more at ease in a group, they stick to others they find. They end up looking like a cloud.", + "attack": 71, + "defense": 111, + "stamina": 120, + "height": 0.30000001, + "weight": 0.60000002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "547": { + "name": "Whimsicott", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fairy" + ], + "dex": "Like the wind, it can slip through any gap, no matter how small. It leaves balls of white fluff behind.", + "attack": 164, + "defense": 176, + "stamina": 155, + "height": 0.69999999, + "weight": 6.5999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "548": { + "name": "Petilil", + "forms": {}, + "default_form": "", + "evolutions": [ + 549 + ], + "types": [ + "Grass" + ], + "dex": "Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants.", + "attack": 119, + "defense": 91, + "stamina": 128, + "height": 0.5, + "weight": 6.5999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "549": { + "name": "Lilligant", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "Even veteran Trainers face a challenge in getting its beautiful flower to bloom. This Pokémon is popular with celebrities.", + "attack": 214, + "defense": 155, + "stamina": 172, + "height": 1.1, + "weight": 16.299999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "550": { + "name": "Basculin", + "forms": { + "136": { + "name": "Red-Striped" + }, + "137": { + "name": "Blue-Striped" + } + }, + "default_form": 136, + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Red- and blue-striped Basculin are very violent and always fighting. They are also remarkably tasty.", + "attack": 189, + "defense": 129, + "stamina": 172, + "height": 1, + "weight": 18, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "551": { + "name": "Sandile", + "forms": {}, + "default_form": "", + "evolutions": [ + 552 + ], + "types": [ + "Ground", + "Dark" + ], + "dex": "They live buried in the sands of the desert. The sun-warmed sands prevent their body temperature from dropping.", + "attack": 132, + "defense": 69, + "stamina": 137, + "height": 0.69999999, + "weight": 15.2, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "552": { + "name": "Krokorok", + "forms": {}, + "default_form": "", + "evolutions": [ + 553 + ], + "types": [ + "Ground", + "Dark" + ], + "dex": "The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings even in darkness.", + "attack": 155, + "defense": 90, + "stamina": 155, + "height": 1, + "weight": 33.400002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "553": { + "name": "Krookodile", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground", + "Dark" + ], + "dex": "They never allow prey to escape. Their jaws are so powerful, they can crush the body of an automobile.", + "attack": 229, + "defense": 158, + "stamina": 216, + "height": 1.5, + "weight": 96.300003, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "554": { + "name": "Darumaka", + "forms": {}, + "default_form": "", + "evolutions": [ + 555 + ], + "types": [ + "Fire" + ], + "dex": "When it sleeps, it pulls its limbs into its body and its internal fire goes down to 1,100 degrees Fahrenheit.", + "attack": 153, + "defense": 86, + "stamina": 172, + "height": 0.60000002, + "weight": 37.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "555": { + "name": "Darmanitan", + "forms": { + "138": { + "name": "Standard", + "attack": 263, + "defense": 114, + "stamina": 233, + "height": 1.3, + "weight": 92.9, + "quickmove": [], + "chargedmove": [] + }, + "139": { + "name": "Zen", + "attack": 243, + "defense": 202, + "stamina": 233, + "height": 1.3, + "weight": 92.9, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 138, + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "When one is injured in a fierce battle, it hardens into a stone-like form. Then it meditates and sharpens its mind.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1.3, + "weight": 92.900002 + }, + "556": { + "name": "Maractus", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "When it finds a stone of a suitable size, it secretes a liquid from its mouth to open up a hole to crawl into.", + "attack": 201, + "defense": 130, + "stamina": 181, + "height": 1, + "weight": 28, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "557": { + "name": "Dwebble", + "forms": {}, + "default_form": "", + "evolutions": [ + 558 + ], + "types": [ + "Bug", + "Rock" + ], + "dex": "Competing for territory, Crustle fight viciously. The one whose boulder is broken is the loser of the battle.", + "attack": 118, + "defense": 128, + "stamina": 137, + "height": 0.30000001, + "weight": 14.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "558": { + "name": "Crustle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Rock" + ], + "dex": "Proud of its sturdy skull, it suddenly headbutts everything, but its weight makes it unstable, too.", + "attack": 188, + "defense": 200, + "stamina": 172, + "height": 1.4, + "weight": 200, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "559": { + "name": "Scraggy", + "forms": {}, + "default_form": "", + "evolutions": [ + 560 + ], + "types": [ + "Dark", + "Fighting" + ], + "dex": "It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader.", + "attack": 132, + "defense": 132, + "stamina": 137, + "height": 0.60000002, + "weight": 11.8, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "560": { + "name": "Scrafty", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Fighting" + ], + "dex": "The guardians of an ancient city, they always fly the same route while keeping watch for invaders.", + "attack": 163, + "defense": 222, + "stamina": 163, + "height": 1.1, + "weight": 30, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "561": { + "name": "Sigilyph", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Flying" + ], + "dex": "Each of them carries a mask that used to be its face when it was human. Sometimes they look at it and cry.", + "attack": 204, + "defense": 167, + "stamina": 176, + "height": 1.4, + "weight": 14, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "562": { + "name": "Yamask", + "forms": {}, + "default_form": "", + "evolutions": [ + 563 + ], + "types": [ + "Ghost" + ], + "dex": "Grave robbers who mistake them for real coffins and get too close end up trapped inside their bodies.", + "attack": 95, + "defense": 141, + "stamina": 116, + "height": 0.5, + "weight": 1.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "563": { + "name": "Cofagrigus", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost" + ], + "dex": "Restored from a fossil, this Pokémon can dive to depths beyond half a mile.", + "attack": 163, + "defense": 237, + "stamina": 151, + "height": 1.7, + "weight": 76.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "564": { + "name": "Tirtouga", + "forms": {}, + "default_form": "", + "evolutions": [ + 565 + ], + "types": [ + "Water", + "Rock" + ], + "dex": "It could knock out a foe with a slap from one of its developed front appendages and chew it up, shell or bones and all.", + "attack": 134, + "defense": 146, + "stamina": 144, + "height": 0.69999999, + "weight": 16.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "565": { + "name": "Carracosta", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Rock" + ], + "dex": "Said to be an ancestor of bird Pokémon, they were unable to fly and moved about by hopping from one branch to another.", + "attack": 192, + "defense": 197, + "stamina": 179, + "height": 1.2, + "weight": 81, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "566": { + "name": "Archen", + "forms": {}, + "default_form": "", + "evolutions": [ + 567 + ], + "types": [ + "Rock", + "Flying" + ], + "dex": "It runs better than it flies. It takes off into the sky by running at a speed of 25 mph.", + "attack": 213, + "defense": 89, + "stamina": 146, + "height": 0.5, + "weight": 9.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "567": { + "name": "Archeops", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Flying" + ], + "dex": "Inhaling the gas they belch will make you sleep for a week. They prefer unsanitary places.", + "attack": 292, + "defense": 139, + "stamina": 181, + "height": 1.4, + "weight": 32, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "568": { + "name": "Trubbish", + "forms": {}, + "default_form": "", + "evolutions": [ + 569 + ], + "types": [ + "Poison" + ], + "dex": "Consuming garbage makes new kinds of poison gases and liquids inside their bodies.", + "attack": 96, + "defense": 122, + "stamina": 137, + "height": 0.60000002, + "weight": 31, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "569": { + "name": "Garbodor", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison" + ], + "dex": "To protect themselves from danger, they hide their true identities by transforming into people and Pokémon.", + "attack": 181, + "defense": 164, + "stamina": 190, + "height": 1.9, + "weight": 107.3, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "570": { + "name": "Zorua", + "forms": {}, + "default_form": "", + "evolutions": [ + 571 + ], + "types": [ + "Dark" + ], + "dex": "Bonds between these Pokémon are very strong. It protects the safety of its pack by tricking its opponents.", + "attack": 153, + "defense": 78, + "stamina": 120, + "height": 0.69999999, + "weight": 12.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "571": { + "name": "Zoroark", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark" + ], + "dex": "These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms.", + "attack": 250, + "defense": 127, + "stamina": 155, + "height": 1.6, + "weight": 81.099998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "572": { + "name": "Minccino", + "forms": {}, + "default_form": "", + "evolutions": [ + 573 + ], + "types": [ + "Normal" + ], + "dex": "Cinccino's body is coated in a special oil that helps it deflect attacks, such as punches.", + "attack": 98, + "defense": 80, + "stamina": 146, + "height": 0.40000001, + "weight": 5.8000002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "573": { + "name": "Cinccino", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see.", + "attack": 198, + "defense": 130, + "stamina": 181, + "height": 0.5, + "weight": 7.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "574": { + "name": "Gothita", + "forms": {}, + "default_form": "", + "evolutions": [ + 575 + ], + "types": [ + "Psychic" + ], + "dex": "According to many old tales, it creates friends for itself by controlling sleeping children on starry nights.", + "attack": 98, + "defense": 112, + "stamina": 128, + "height": 0.40000001, + "weight": 5.8000002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "575": { + "name": "Gothorita", + "forms": {}, + "default_form": "", + "evolutions": [ + 576 + ], + "types": [ + "Psychic" + ], + "dex": "They can predict the future from the placement and movement of the stars. They can see Trainers' life spans.", + "attack": 137, + "defense": 153, + "stamina": 155, + "height": 0.69999999, + "weight": 18, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "576": { + "name": "Gothitelle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "They drive away attackers by unleashing psychic power. They can use telepathy to talk with others.", + "attack": 176, + "defense": 205, + "stamina": 172, + "height": 1.5, + "weight": 44, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "577": { + "name": "Solosis", + "forms": {}, + "default_form": "", + "evolutions": [ + 578 + ], + "types": [ + "Psychic" + ], + "dex": "When their two divided brains think the same thoughts, their psychic power is maximized.", + "attack": 170, + "defense": 83, + "stamina": 128, + "height": 0.30000001, + "weight": 1, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "578": { + "name": "Duosion", + "forms": {}, + "default_form": "", + "evolutions": [ + 579 + ], + "types": [ + "Psychic" + ], + "dex": "When Reuniclus shake hands, a network forms between their brains, increasing their psychic power.", + "attack": 208, + "defense": 103, + "stamina": 163, + "height": 0.60000002, + "weight": 8, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.25, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "579": { + "name": "Reuniclus", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "They are better at swimming than flying, and they happily eat their favorite food, peat moss, as they dive underwater.", + "attack": 214, + "defense": 148, + "stamina": 242, + "height": 1, + "weight": 20.1, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "580": { + "name": "Ducklett", + "forms": {}, + "default_form": "", + "evolutions": [ + 581 + ], + "types": [ + "Water", + "Flying" + ], + "dex": "Swanna start to dance at dusk. The one dancing in the middle is the leader of the flock.", + "attack": 84, + "defense": 96, + "stamina": 158, + "height": 0.5, + "weight": 5.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.5, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "581": { + "name": "Swanna", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Flying" + ], + "dex": "This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow.", + "attack": 182, + "defense": 132, + "stamina": 181, + "height": 1.3, + "weight": 24.200001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.12, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "582": { + "name": "Vanillite", + "forms": {}, + "default_form": "", + "evolutions": [ + 583 + ], + "types": [ + "Ice" + ], + "dex": "Snowy mountains are this Pokémon's habitat. During an ancient ice age, they moved to southern areas.", + "attack": 118, + "defense": 106, + "stamina": 113, + "height": 0.40000001, + "weight": 5.6999998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "583": { + "name": "Vanillish", + "forms": {}, + "default_form": "", + "evolutions": [ + 584 + ], + "types": [ + "Ice" + ], + "dex": "Swallowing large amounts of water, they make snow clouds inside their bodies and, when angry, cause violent blizzards.", + "attack": 151, + "defense": 138, + "stamina": 139, + "height": 1.1, + "weight": 41, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "584": { + "name": "Vanilluxe", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow.", + "attack": 218, + "defense": 184, + "stamina": 174, + "height": 1.3, + "weight": 57.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "585": { + "name": "Deerling", + "forms": { + "585": { + "name": "Spring", + "evolved_form": 589 + }, + "586": { + "name": "Summer", + "evolved_form": 590 + }, + "587": { + "name": "Autumn", + "evolved_form": 591 + }, + "588": { + "name": "Winter", + "evolved_form": 592 + } + }, + "default_form": 585, + "evolutions": [ + 586 + ], + "types": [ + "Normal", + "Grass" + ], + "dex": "The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons.", + "attack": 115, + "defense": 100, + "stamina": 155, + "height": 0.60000002, + "weight": 19.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "586": { + "name": "Sawsbuck", + "forms": { + "589": { + "name": "Spring" + }, + "590": { + "name": "Summer" + }, + "591": { + "name": "Autumn" + }, + "592": { + "name": "Winter" + } + }, + "default_form": 589, + "evolutions": [], + "types": [ + "Normal", + "Grass" + ], + "dex": "They migrate according to the seasons, so some people call Sawsbuck the harbingers of spring.", + "attack": 198, + "defense": 146, + "stamina": 190, + "height": 1.9, + "weight": 92.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "587": { + "name": "Emolga", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric", + "Flying" + ], + "dex": "The energy made in its cheeks' electric pouches is stored inside its membrane and released while it is gliding.", + "attack": 158, + "defense": 127, + "stamina": 146, + "height": 0.40000001, + "weight": 5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "588": { + "name": "Karrablast", + "forms": {}, + "default_form": "", + "evolutions": [ + 589 + ], + "types": [ + "Bug" + ], + "dex": "For some reason they evolve when they receive electrical energy while they are attacking Shelmet.", + "attack": 137, + "defense": 87, + "stamina": 137, + "height": 0.5, + "weight": 5.9000001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "589": { + "name": "Escavalier", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Steel" + ], + "dex": "These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body.", + "attack": 223, + "defense": 187, + "stamina": 172, + "height": 1, + "weight": 33, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "590": { + "name": "Foongus", + "forms": {}, + "default_form": "", + "evolutions": [ + 591 + ], + "types": [ + "Grass", + "Poison" + ], + "dex": "It lures Pokémon with its pattern that looks just like a Poké Ball, then releases poison spores.", + "attack": 97, + "defense": 91, + "stamina": 170, + "height": 0.2, + "weight": 1, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "591": { + "name": "Amoonguss", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Poison" + ], + "dex": "It lures prey close by dancing and waving its arm caps, which resemble Poké Balls, in a swaying motion.", + "attack": 155, + "defense": 139, + "stamina": 249, + "height": 0.60000002, + "weight": 10.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "592": { + "name": "Frillish", + "forms": {}, + "default_form": "", + "evolutions": [ + 593 + ], + "types": [ + "Water", + "Ghost" + ], + "dex": "If its veil-like arms stun and wrap a foe, that foe will be dragged miles below the surface, never to return.", + "attack": 115, + "defense": 134, + "stamina": 146, + "height": 1.2, + "weight": 33, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "593": { + "name": "Jellicent", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Ghost" + ], + "dex": "The fate of the ships and crew that wander into Jellicent's habitat: all sunken, all lost, all vanished.", + "attack": 159, + "defense": 178, + "stamina": 225, + "height": 2.2, + "weight": 135, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "594": { + "name": "Alomomola", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "It gently holds injured and weak Pokémon in its fins. Its special membrane heals their wounds.", + "attack": 138, + "defense": 131, + "stamina": 338, + "height": 1.2, + "weight": 31.6, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "595": { + "name": "Joltik", + "forms": {}, + "default_form": "", + "evolutions": [ + 596 + ], + "types": [ + "Bug", + "Electric" + ], + "dex": "They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch.", + "attack": 110, + "defense": 98, + "stamina": 137, + "height": 0.1, + "weight": 0.60000002, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "596": { + "name": "Galvantula", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Electric" + ], + "dex": "When attacked, they create an electric barrier by spitting out many electrically charged threads.", + "attack": 201, + "defense": 128, + "stamina": 172, + "height": 0.80000001, + "weight": 14.3, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "597": { + "name": "Ferroseed", + "forms": {}, + "default_form": "", + "evolutions": [ + 598 + ], + "types": [ + "Grass", + "Steel" + ], + "dex": "It absorbs the iron it finds in the rock while clinging to the ceiling. It shoots spikes when in danger.", + "attack": 82, + "defense": 155, + "stamina": 127, + "height": 0.60000002, + "weight": 18.799999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "598": { + "name": "Ferrothorn", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Steel" + ], + "dex": "They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them.", + "attack": 158, + "defense": 223, + "stamina": 179, + "height": 1, + "weight": 110, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.125, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "599": { + "name": "Klink", + "forms": {}, + "default_form": "", + "evolutions": [ + 600 + ], + "types": [ + "Steel" + ], + "dex": "The two minigears that mesh together are predetermined. Each will rebound from other minigears without meshing.", + "attack": 98, + "defense": 121, + "stamina": 120, + "height": 0.30000001, + "weight": 21, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "600": { + "name": "Klang", + "forms": {}, + "default_form": "", + "evolutions": [ + 601 + ], + "types": [ + "Steel" + ], + "dex": "A minigear and big gear comprise its body. If the minigear it launches at a foe doesn't return, it will die.", + "attack": 150, + "defense": 174, + "stamina": 155, + "height": 0.60000002, + "weight": 51, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "601": { + "name": "Klinklang", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel" + ], + "dex": "Its red core functions as an energy tank. It fires the charged energy through its spikes into an area.", + "attack": 199, + "defense": 214, + "stamina": 155, + "height": 0.60000002, + "weight": 81, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "602": { + "name": "Tynamo", + "forms": {}, + "default_form": "", + "evolutions": [ + 603 + ], + "types": [ + "Electric" + ], + "dex": "One alone can emit only a trickle of electricity, so a group of them gathers to unleash a powerful electric shock.", + "attack": 105, + "defense": 78, + "stamina": 111, + "height": 0.2, + "weight": 0.30000001, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "603": { + "name": "Eelektrik", + "forms": {}, + "default_form": "", + "evolutions": [ + 604 + ], + "types": [ + "Electric" + ], + "dex": "These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity.", + "attack": 156, + "defense": 130, + "stamina": 163, + "height": 1.2, + "weight": 22, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "604": { + "name": "Eelektross", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "They crawl out of the ocean using their arms. They will attack prey on shore and immediately drag it into the ocean.", + "attack": 217, + "defense": 152, + "stamina": 198, + "height": 2.0999999, + "weight": 80.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 10000, + "candyToUnlock": 25 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "605": { + "name": "Elgyem", + "forms": {}, + "default_form": "", + "evolutions": [ + 606 + ], + "types": [ + "Psychic" + ], + "dex": "Rumors of its origin are linked to a UFO crash site in the desert 50 years ago.", + "attack": 148, + "defense": 100, + "stamina": 146, + "height": 0.5, + "weight": 9, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "606": { + "name": "Beheeyem", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "It uses psychic power to control an opponent's brain and tamper with its memories.", + "attack": 221, + "defense": 163, + "stamina": 181, + "height": 1, + "weight": 34.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "607": { + "name": "Litwick", + "forms": {}, + "default_form": "", + "evolutions": [ + 608 + ], + "types": [ + "Ghost", + "Fire" + ], + "dex": "Litwick shines a light that absorbs the life energy of people and Pokémon, which becomes the fuel that it burns.", + "attack": 108, + "defense": 98, + "stamina": 137, + "height": 0.30000001, + "weight": 3.0999999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "608": { + "name": "Lampent", + "forms": {}, + "default_form": "", + "evolutions": [ + 609 + ], + "types": [ + "Ghost", + "Fire" + ], + "dex": "It arrives near the moment of death and steals spirit from the body.", + "attack": 169, + "defense": 115, + "stamina": 155, + "height": 0.60000002, + "weight": 13, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "609": { + "name": "Chandelure", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Fire" + ], + "dex": "The spirits burned up in its ominous flame lose their way and wander this world forever.", + "attack": 271, + "defense": 182, + "stamina": 155, + "height": 1, + "weight": 34.299999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "610": { + "name": "Axew", + "forms": {}, + "default_form": "", + "evolutions": [ + 611 + ], + "types": [ + "Dragon" + ], + "dex": "They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly.", + "attack": 154, + "defense": 101, + "stamina": 130, + "height": 0.60000002, + "weight": 18, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "611": { + "name": "Fraxure", + "forms": {}, + "default_form": "", + "evolutions": [ + 612 + ], + "types": [ + "Dragon" + ], + "dex": "A broken tusk will not grow back, so it diligently sharpens its tusks on river rocks after the end of a battle.", + "attack": 212, + "defense": 123, + "stamina": 165, + "height": 1, + "weight": 36, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "612": { + "name": "Haxorus", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon" + ], + "dex": "Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor.", + "attack": 284, + "defense": 172, + "stamina": 183, + "height": 1.8, + "weight": 105.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "613": { + "name": "Cubchoo", + "forms": {}, + "default_form": "", + "evolutions": [ + 614 + ], + "types": [ + "Ice" + ], + "dex": "Their snot is a barometer of health. When healthy, their snot is sticky and the power of their ice moves increases.", + "attack": 128, + "defense": 74, + "stamina": 146, + "height": 0.5, + "weight": 8.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "614": { + "name": "Beartic", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat.", + "attack": 233, + "defense": 152, + "stamina": 216, + "height": 2.5999999, + "weight": 260, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "615": { + "name": "Cryogonal", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "They are composed of ice crystals. They capture prey with chains of ice, freezing the prey at -148 degrees Fahrenheit.", + "attack": 190, + "defense": 218, + "stamina": 190, + "height": 1.1, + "weight": 148, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "616": { + "name": "Shelmet", + "forms": {}, + "default_form": "", + "evolutions": [ + 617 + ], + "types": [ + "Bug" + ], + "dex": "It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown.", + "attack": 72, + "defense": 140, + "stamina": 137, + "height": 0.40000001, + "weight": 7.6999998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "617": { + "name": "Accelgor", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "When its body dries out, it weakens. So, to prevent dehydration, it wraps itself in many layers of thin membrane.", + "attack": 220, + "defense": 120, + "stamina": 190, + "height": 0.80000001, + "weight": 25.299999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "618": { + "name": "Stunfisk", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground", + "Electric" + ], + "dex": "It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of electricity.", + "attack": 144, + "defense": 171, + "stamina": 240, + "height": 0.69999999, + "weight": 11, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "619": { + "name": "Mienfoo", + "forms": {}, + "default_form": "", + "evolutions": [ + 620 + ], + "types": [ + "Fighting" + ], + "dex": "In fights, they dominate with onslaughts of flowing, continuous attacks. With their sharp claws, they cut enemies.", + "attack": 160, + "defense": 98, + "stamina": 128, + "height": 0.89999998, + "weight": 20, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "620": { + "name": "Mienshao", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "Using the long fur on its arms like whips, it launches into combo attacks that, once started, no one can stop.", + "attack": 258, + "defense": 127, + "stamina": 163, + "height": 1.4, + "weight": 35.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "621": { + "name": "Druddigon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon" + ], + "dex": "It warms its body by absorbing sunlight with its wings. When its body temperature falls, it can no longer move.", + "attack": 213, + "defense": 170, + "stamina": 184, + "height": 1.6, + "weight": 139, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "622": { + "name": "Golett", + "forms": {}, + "default_form": "", + "evolutions": [ + 623 + ], + "types": [ + "Ground", + "Ghost" + ], + "dex": "Ancient science fashioned this Pokémon from clay. It's been active for thousands of years.", + "attack": 127, + "defense": 92, + "stamina": 153, + "height": 1, + "weight": 92, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "623": { + "name": "Golurk", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground", + "Ghost" + ], + "dex": "It flies across the sky at Mach speeds. Removing the seal on its chest makes its internal energy go out of control.", + "attack": 222, + "defense": 154, + "stamina": 205, + "height": 2.8, + "weight": 330, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "624": { + "name": "Pawniard", + "forms": {}, + "default_form": "", + "evolutions": [ + 625 + ], + "types": [ + "Dark", + "Steel" + ], + "dex": "Ignoring their injuries, groups attack by sinking the blades that cover their bodies into their prey.", + "attack": 154, + "defense": 114, + "stamina": 128, + "height": 0.5, + "weight": 10.2, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "625": { + "name": "Bisharp", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Steel" + ], + "dex": "Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey.", + "attack": 232, + "defense": 176, + "stamina": 163, + "height": 1.6, + "weight": 70, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "626": { + "name": "Bouffalant", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Their fluffy fur absorbs damage, even if they strike foes with a fierce headbutt.", + "attack": 195, + "defense": 182, + "stamina": 216, + "height": 1.6, + "weight": 94.599998, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "627": { + "name": "Rufflet", + "forms": {}, + "default_form": "", + "evolutions": [ + 628 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger.", + "attack": 150, + "defense": 97, + "stamina": 172, + "height": 0.5, + "weight": 10.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "628": { + "name": "Braviary", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "They fight for their friends without any thought about danger to themselves. One can carry a car while flying.", + "attack": 232, + "defense": 152, + "stamina": 225, + "height": 1.5, + "weight": 41, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "629": { + "name": "Vullaby", + "forms": {}, + "default_form": "", + "evolutions": [ + 630 + ], + "types": [ + "Dark", + "Flying" + ], + "dex": "Their wings are too tiny to allow them to fly. They guard their posteriors with bones that were gathered by Mandibuzz.", + "attack": 105, + "defense": 139, + "stamina": 172, + "height": 0.5, + "weight": 9, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": 0.1, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "630": { + "name": "Mandibuzz", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Flying" + ], + "dex": "Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones.", + "attack": 129, + "defense": 205, + "stamina": 242, + "height": 1.2, + "weight": 39.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.15000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "631": { + "name": "Heatmor", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "It draws in air through its tail, transforms it into fire, and uses it like a tongue. It melts Durant and eats them.", + "attack": 204, + "defense": 129, + "stamina": 198, + "height": 1.4, + "weight": 58, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "632": { + "name": "Durant", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Steel" + ], + "dex": "They attack in groups, covering themselves in steel armor to protect themselves from Heatmor.", + "attack": 217, + "defense": 188, + "stamina": 151, + "height": 0.30000001, + "weight": 33, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.2, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 50000, + "candyToUnlock": 50 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "633": { + "name": "Deino", + "forms": {}, + "default_form": "", + "evolutions": [ + 634 + ], + "types": [ + "Dark", + "Dragon" + ], + "dex": "Lacking sight, it's unaware of its surroundings, so it bumps into things and eats anything that moves.", + "attack": 116, + "defense": 93, + "stamina": 141, + "height": 0.80000001, + "weight": 17.299999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.40000001, + "flee_rate": 0.090000004, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "634": { + "name": "Zweilous", + "forms": {}, + "default_form": "", + "evolutions": [ + 635 + ], + "types": [ + "Dark", + "Dragon" + ], + "dex": "After it has eaten up all the food in its territory, it moves to another area. Its two heads do not get along.", + "attack": 159, + "defense": 135, + "stamina": 176, + "height": 1.4, + "weight": 50, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "635": { + "name": "Hydreigon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Dragon" + ], + "dex": "It responds to movement by attacking. This scary, three-headed Pokémon devours everything in its path!", + "attack": 256, + "defense": 188, + "stamina": 211, + "height": 1.8, + "weight": 160, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.050000001, + "flee_rate": 0.050000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "636": { + "name": "Larvesta", + "forms": {}, + "default_form": "", + "evolutions": [ + 637 + ], + "types": [ + "Bug", + "Fire" + ], + "dex": "The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies.", + "attack": 156, + "defense": 107, + "stamina": 146, + "height": 1.1, + "weight": 28.799999, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.69999999, + "flee_rate": 0.15000001, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "637": { + "name": "Volcarona", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Fire" + ], + "dex": "When volcanic ash darkened the atmosphere, it is said that Volcarona's fire provided a replacement for the sun.", + "attack": 264, + "defense": 189, + "stamina": 198, + "height": 1.6, + "weight": 46, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.1, + "flee_rate": 0.07, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 75000, + "candyToUnlock": 75 + }, + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "638": { + "name": "Cobalion", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Fighting" + ], + "dex": "It has a body and heart of steel. It worked with its allies to punish people when they hurt Pokémon.", + "attack": 192, + "defense": 229, + "stamina": 209, + "height": 2.0999999, + "weight": 250, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "639": { + "name": "Terrakion", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Fighting" + ], + "dex": "Spoken of in legend, this Pokémon used its phenomenal power to destroy a castle in its effort to protect Pokémon.", + "attack": 260, + "defense": 192, + "stamina": 209, + "height": 1.9, + "weight": 260, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "640": { + "name": "Virizion", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fighting" + ], + "dex": "Legends say this Pokémon confounded opponents with its swift movements.", + "attack": 192, + "defense": 229, + "stamina": 209, + "height": 2, + "weight": 200, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "641": { + "name": "Tornadus", + "forms": { + "140": { + "name": "Incarnate", + "attack": 266, + "defense": 164, + "stamina": 188, + "height": 1.4, + "weight": 63, + "quickmove": [], + "chargedmove": [] + }, + "141": { + "name": "Therian", + "attack": 238, + "defense": 189, + "stamina": 188, + "height": 1.4, + "weight": 63, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 140, + "evolutions": [], + "types": [ + "Flying" + ], + "dex": "The lower half of its body is wrapped in a cloud of energy. It zooms through the sky at 200 mph.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1.5, + "weight": 63 + }, + "642": { + "name": "Thundurus", + "forms": { + "142": { + "name": "Incarnate", + "attack": 266, + "defense": 164, + "stamina": 188, + "height": 3, + "weight": 61, + "quickmove": [], + "chargedmove": [] + }, + "143": { + "name": "Therian", + "evolutions": [], + "types": [], + "dex": "", + "attack": 295, + "defense": 161, + "stamina": 188, + "height": 3, + "weight": 61, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 142, + "evolutions": [], + "types": [ + "Electric", + "Flying" + ], + "dex": "The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1.5, + "weight": 61 + }, + "643": { + "name": "Reshiram", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Fire" + ], + "dex": "When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather.", + "attack": 275, + "defense": 211, + "stamina": 205, + "height": 3.2, + "weight": 330, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "644": { + "name": "Zekrom", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Electric" + ], + "dex": "Concealing itself in lightning clouds, it flies throughout the Unova region. It creates electricity in its tail.", + "attack": 275, + "defense": 211, + "stamina": 205, + "height": 2.9000001, + "weight": 345, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "645": { + "name": "Landorus", + "forms": { + "144": { + "name": "Incarnate", + "attack": 261, + "defense": 182, + "stamina": 205, + "height": 1.5, + "weight": 68, + "quickmove": [], + "chargedmove": [] + }, + "145": { + "name": "Therian", + "attack": 289, + "defense": 179, + "stamina": 205, + "height": 1.5, + "weight": 68, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 144, + "evolutions": [], + "types": [ + "Ground", + "Flying" + ], + "dex": "Lands visited by Landorus grant such bountiful crops that it has been hailed as “The Guardian of the Fields.”", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1.5, + "weight": 68 + }, + "646": { + "name": "Kyurem", + "forms": { + "146": { + "name": "Normal", + "attack": 246, + "defense": 170, + "stamina": 245, + "height": 3, + "weight": 325, + "quickmove": [], + "chargedmove": [] + }, + "147": { + "name": "Black", + "attack": 310, + "defense": 183, + "stamina": 245, + "height": 3, + "weight": 325, + "quickmove": [], + "chargedmove": [] + }, + "148": { + "name": "White", + "attack": 310, + "defense": 183, + "stamina": 245, + "height": 3, + "weight": 325, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 146, + "evolutions": [], + "types": [ + "Dragon", + "Ice" + ], + "dex": "It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Legendary", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 3, + "weight": 325 + }, + "647": { + "name": "Keldeo", + "forms": { + "149": { + "name": "Ordinary", + "attack": 260, + "defense": 192, + "stamina": 209, + "height": 1.4, + "weight": 48.5, + "quickmove": [], + "chargedmove": [] + }, + "150": { + "name": "Resolute", + "attack": 260, + "defense": 192, + "stamina": 209, + "height": 1.4, + "weight": 48.5, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 149, + "evolutions": [], + "types": [ + "Water", + "Fighting" + ], + "dex": "It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 1.4, + "weight": 48.5 + }, + "648": { + "name": "Meloetta", + "forms": { + "151": { + "name": "Aria", + "attack": 250, + "defense": 225, + "stamina": 225, + "height": 0.61, + "weight": 6.5, + "quickmove": [], + "chargedmove": [] + }, + "152": { + "name": "Pirouette", + "attack": 269, + "defense": 188, + "stamina": 225, + "height": 0.61, + "weight": 6.5, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 151, + "evolutions": [], + "types": [ + "Normal", + "Psychic" + ], + "dex": "The melodies sung by Meloetta have the power to make Pokémon that hear them happy or sad.", + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "candy": "", + "buddy_distance": "", + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "", + "height": 0.60000002, + "weight": 6.5 + }, + "649": { + "name": "Genesect", + "forms": { + "593": { + "name": "Normal" + }, + "594": { + "name": "Shock" + }, + "595": { + "name": "Burn" + }, + "596": { + "name": "Chill" + }, + "597": { + "name": "Douse" + } + }, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Steel" + ], + "dex": "This Pokémon existed 300 million years ago. Team Plasma altered it and attached a cannon to its back.", + "attack": 252, + "defense": 199, + "stamina": 174, + "height": 1.5, + "weight": 82.5, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.02, + "flee_rate": 0.0099999998, + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": 20, + "quickmove": [ + "Metal Claw", + "Fury Cutter" + ], + "chargedmove": [ + "X Scissor", + "Magnet Bomb", + "Hyper Beam" + ], + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "650": { + "name": "Chespin", + "forms": {}, + "default_form": "", + "evolutions": [ + 651 + ], + "types": [ + "Grass" + ], + "dex": "Such a thick shell of wood covers its head and back that even a direct hit from a truck wouldn't faze it.", + "attack": 110, + "defense": 106, + "stamina": 148, + "height": 0.41, + "weight": 9, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "651": { + "name": "Quilladin", + "forms": {}, + "default_form": "", + "evolutions": [ + 652 + ], + "types": [ + "Grass" + ], + "dex": "They strengthen their lower bodies by running into one another. They are very kind and won't start fights.", + "attack": 146, + "defense": 156, + "stamina": 156, + "height": 0.71, + "weight": 29, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "652": { + "name": "Chesnaught", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fighting" + ], + "dex": "When it takes a defensive posture with its fists guarding its face, it could withstand a bomb blast.", + "attack": 201, + "defense": 204, + "stamina": 204, + "height": 1.6, + "weight": 90, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "653": { + "name": "Fennekin", + "forms": {}, + "default_form": "", + "evolutions": [ + 654 + ], + "types": [ + "Fire" + ], + "dex": "As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears.", + "attack": 116, + "defense": 102, + "stamina": 120, + "height": 0.41, + "weight": 9.4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "654": { + "name": "Braixen", + "forms": {}, + "default_form": "", + "evolutions": [ + 655 + ], + "types": [ + "Fire" + ], + "dex": "When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies.", + "attack": 171, + "defense": 130, + "stamina": 153, + "height": 0.99, + "weight": 14.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "655": { + "name": "Delphox", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Psychic" + ], + "dex": "Using psychic power, it generates a fiery vortex of 5,400 degrees Fahrenheit, incinerating foes swept into this whirl of flame.", + "attack": 230, + "defense": 189, + "stamina": 181, + "height": 1.5, + "weight": 39, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "656": { + "name": "Froakie", + "forms": {}, + "default_form": "", + "evolutions": [ + 657 + ], + "types": [ + "Water" + ], + "dex": "It protects its skin by covering its body in delicate bubbles. Beneath its happy-go-lucky air, it keeps a watchful eye on its surroundings.", + "attack": 122, + "defense": 84, + "stamina": 121, + "height": 0.3, + "weight": 7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "657": { + "name": "Frogadier", + "forms": {}, + "default_form": "", + "evolutions": [ + "657_0" + ], + "types": [ + "Water" + ], + "dex": "Its swiftness is unparalleled. It can scale a tower of more than 2,000 feet in a minute's time.", + "attack": 168, + "defense": 114, + "stamina": 144, + "height": 0.61, + "weight": 10.9, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "658": { + "name": "Greninja", + "forms": { + "1": { + "name": "Normal", + "attack": 223, + "defense": 152, + "stamina": 176, + "height": 1.5, + "weight": 40, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "Ash", + "attack": 339, + "defense": 155, + "stamina": 176, + "height": 1.5, + "weight": 40, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 1, + "evolutions": [], + "types": [ + "Water", + "Dark" + ], + "dex": "It appears and vanishes with a ninja's grace. It toys with its enemies using swift movements, while slicing them with throwing stars of sharpest water.", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "659": { + "name": "Bunnelby", + "forms": {}, + "default_form": "", + "evolutions": [ + 660 + ], + "types": [ + "Normal" + ], + "dex": "It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly.", + "attack": 68, + "defense": 72, + "stamina": 116, + "height": 0.41, + "weight": 5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "660": { + "name": "Diggersby", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Ground" + ], + "dex": "As powerful as an excavator, its ears can reduce dense bedrock to rubble. When it's finished digging, it lounges lazily.", + "attack": 112, + "defense": 155, + "stamina": 198, + "height": 0.99, + "weight": 42.4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "661": { + "name": "Fletchling", + "forms": {}, + "default_form": "", + "evolutions": [ + 662 + ], + "types": [ + "Normal", + "Flying" + ], + "dex": "Despite the beauty of its lilting voice, it's merciless to intruders that enter its territory.", + "attack": 95, + "defense": 80, + "stamina": 128, + "height": 0.3, + "weight": 1.7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "662": { + "name": "Fletchinder", + "forms": {}, + "default_form": "", + "evolutions": [ + 663 + ], + "types": [ + "Fire", + "Flying" + ], + "dex": "The hotter the flame sac on its belly, the faster it can fly, but it takes some time to get the fire going.", + "attack": 145, + "defense": 110, + "stamina": 158, + "height": 0.71, + "weight": 16, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "663": { + "name": "Talonflame", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Flying" + ], + "dex": "When attacking prey, it can reach speeds of up to 310 mph. It finishes its prey off with a colossal kick.", + "attack": 176, + "defense": 155, + "stamina": 186, + "height": 1.19, + "weight": 24.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "664": { + "name": "Scatterbug", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "The powder that covers its body regulates its temperature, so it can live in any region or climate.", + "attack": 63, + "defense": 63, + "stamina": 116, + "height": 0.3, + "weight": 2.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "665": { + "name": "Spewpa", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "The beaks of bird Pokémon can't begin to scratch its stalwart body. To defend itself, it spews powder.", + "attack": 48, + "defense": 89, + "stamina": 128, + "height": 0.3, + "weight": 8.4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "666": { + "name": "Vivillon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Flying" + ], + "dex": "The patterns on this Pokémon's wings depend on the climate and topography of its habitat. It scatters colorful scales.", + "attack": 176, + "defense": 103, + "stamina": 190, + "height": 1.19, + "weight": 17, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "667": { + "name": "Litleo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Normal" + ], + "dex": "They set off on their own from their pride and live by themselves to become stronger. These hot-blooded Pokémon are quick to fight.", + "attack": 139, + "defense": 112, + "stamina": 158, + "height": 0.61, + "weight": 13.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "668": { + "name": "Pyroar", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Normal" + ], + "dex": "With fiery breath of more than 10,000 degrees Fahrenheit, they viciously threaten any challenger. The females protect the pride's cubs.", + "attack": 221, + "defense": 149, + "stamina": 200, + "height": 1.5, + "weight": 81.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "669": { + "name": "Flab b", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "When it finds a flower it likes, it dwells on that flower its whole life long. It floats in the wind's embrace with an untroubled heart.", + "attack": 108, + "defense": 120, + "stamina": 127, + "height": 0.1, + "weight": 0.1, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "670": { + "name": "Floette", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "When the flowers of a well-tended flower bed bloom, it appears and celebrates with an elegant dance.", + "attack": 136, + "defense": 151, + "stamina": 144, + "height": 0.2, + "weight": 0.9, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "671": { + "name": "Florges", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "In times long past, governors of castles would invite Florges to create flower gardens to embellish the castle domains.", + "attack": 212, + "defense": 244, + "stamina": 186, + "height": 1.09, + "weight": 10, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "672": { + "name": "Skiddo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "If it has sunshine and water, it doesn't need to eat, because it can generate energy from the leaves on its back.", + "attack": 123, + "defense": 102, + "stamina": 165, + "height": 0.89, + "weight": 31, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "673": { + "name": "Gogoat", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "They inhabit mountainous regions. The leader of the herd is decided by a battle of clashing horns.", + "attack": 196, + "defense": 146, + "stamina": 265, + "height": 1.7, + "weight": 91, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "674": { + "name": "Pancham", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "It does its level best to glare and pull a scary face, but it can't help grinning if anyone pats its head.", + "attack": 145, + "defense": 107, + "stamina": 167, + "height": 0.61, + "weight": 8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "675": { + "name": "Pangoro", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting", + "Dark" + ], + "dex": "It charges ahead and bashes its opponents like a berserker, uncaring about any hits it might take. Its arms are mighty enough to snap a telephone pole.", + "attack": 226, + "defense": 146, + "stamina": 216, + "height": 2.11, + "weight": 136, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "676": { + "name": "Furfrou", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "Historically, in the Kalos region, these Pokémon were the designated guardians of the king.", + "attack": 164, + "defense": 167, + "stamina": 181, + "height": 1.19, + "weight": 28, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "677": { + "name": "Espurr", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "It has enough psychic energy to blast everything within 300 feet of itself, but it has no control over its power.", + "attack": 120, + "defense": 114, + "stamina": 158, + "height": 0.3, + "weight": 3.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "678": { + "name": "Meowstic", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "When in danger, it raises its ears and releases enough psychic power to grind a 10-ton truck into dust.", + "attack": 166, + "defense": 167, + "stamina": 179, + "height": 0.61, + "weight": 8.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "679": { + "name": "Honedge", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Ghost" + ], + "dex": "If anyone dares to grab its hilt, it wraps a blue cloth around that person's arm and drains that person's life energy completely.", + "attack": 135, + "defense": 139, + "stamina": 128, + "height": 0.79, + "weight": 2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "680": { + "name": "Doublade", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Ghost" + ], + "dex": "The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay.", + "attack": 188, + "defense": 206, + "stamina": 153, + "height": 0.84, + "weight": 4.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "681": { + "name": "Aegislash", + "forms": { + "0": { + "name": "Blade", + "attack": 291, + "defense": 97, + "stamina": 155, + "height": 1.7, + "weight": 53, + "quickmove": [], + "chargedmove": [] + }, + "1": { + "name": "Shield", + "attack": 97, + "defense": 291, + "stamina": 155, + "height": 1.7, + "weight": 53, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Steel", + "Ghost" + ], + "dex": "Apparently, it can detect the innate qualities of leadership. According to legend, whoever it recognizes is destined to become king.", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "682": { + "name": "Spritzee", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "In the past, rather than using perfume, royal ladies carried a Spritzee that would waft a fragrance they liked.", + "attack": 110, + "defense": 113, + "stamina": 186, + "height": 0.2, + "weight": 0.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "683": { + "name": "Aromatisse", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "Its scent is so overpowering that, unless a Trainer happens to really enjoy the smell, he or she will have a hard time walking alongside it.", + "attack": 173, + "defense": 150, + "stamina": 226, + "height": 0.79, + "weight": 15.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "684": { + "name": "Swirlix", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "Because it eats nothing but sweets, its fur is as sticky sweet as cotton candy.", + "attack": 109, + "defense": 119, + "stamina": 158, + "height": 0.41, + "weight": 3.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "685": { + "name": "Slurpuff", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "Its sense of smell is 100 million times better than a human's, so even the faintest scent tells it about everything in the area. It's like it can see with its nose!", + "attack": 168, + "defense": 163, + "stamina": 193, + "height": 0.79, + "weight": 5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "686": { + "name": "Inkay", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Psychic" + ], + "dex": "It flashes the light-emitting spots on its body, which drains its opponent's will to fight. It takes the opportunity to scuttle away and hide.", + "attack": 98, + "defense": 95, + "stamina": 142, + "height": 0.41, + "weight": 3.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "687": { + "name": "Malamar", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Psychic" + ], + "dex": "It lures its prey close with hypnotic motions, then wraps its tentacles around it before finishing it off with digestive fluids.", + "attack": 177, + "defense": 165, + "stamina": 200, + "height": 1.5, + "weight": 47, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "688": { + "name": "Binacle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Water" + ], + "dex": "They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline.", + "attack": 96, + "defense": 120, + "stamina": 123, + "height": 0.51, + "weight": 31, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "689": { + "name": "Barbaracle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Water" + ], + "dex": "Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders.", + "attack": 194, + "defense": 205, + "stamina": 176, + "height": 1.3, + "weight": 96, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "690": { + "name": "Skrelp", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Water" + ], + "dex": "It looks just like rotten kelp. It hides from foes while storing up power for its evolution.", + "attack": 109, + "defense": 109, + "stamina": 137, + "height": 0.51, + "weight": 7.3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "691": { + "name": "Dragalge", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Dragon" + ], + "dex": "Tales are told of ships that wander into seas where Dragalge live, never to return.", + "attack": 177, + "defense": 207, + "stamina": 163, + "height": 1.8, + "weight": 81.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "692": { + "name": "Clauncher", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "Through controlled explosions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock.", + "attack": 108, + "defense": 117, + "stamina": 137, + "height": 0.51, + "weight": 8.3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "693": { + "name": "Clawitzer", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots.", + "attack": 221, + "defense": 171, + "stamina": 174, + "height": 1.3, + "weight": 35.3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "694": { + "name": "Helioptile", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric", + "Normal" + ], + "dex": "The frills on either side of its head have cells that generate electricity when exposed to sunlight.", + "attack": 115, + "defense": 78, + "stamina": 127, + "height": 0.51, + "weight": 6, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "695": { + "name": "Heliolisk", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric", + "Normal" + ], + "dex": "It stimulates its muscles with electricity, boosting the strength in its legs and enabling it to run 100 yards in five seconds.", + "attack": 219, + "defense": 168, + "stamina": 158, + "height": 0.99, + "weight": 21, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "696": { + "name": "Tyrunt", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Dragon" + ], + "dex": "Its immense jaws have enough destructive force that it can chew up an automobile. It lived 100 million years ago.", + "attack": 158, + "defense": 123, + "stamina": 151, + "height": 0.79, + "weight": 26, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "697": { + "name": "Tyrantrum", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Dragon" + ], + "dex": "Nothing could stop this Pokémon 100 million years ago, so it behaved like a king.", + "attack": 227, + "defense": 191, + "stamina": 193, + "height": 2.49, + "weight": 270, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "698": { + "name": "Amaura", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Ice" + ], + "dex": "This calm Pokémon lived in a cold land where there were no violent predators like Tyrantrum.", + "attack": 124, + "defense": 109, + "stamina": 184, + "height": 1.3, + "weight": 25.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "699": { + "name": "Aurorus", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Ice" + ], + "dex": "Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack.", + "attack": 186, + "defense": 163, + "stamina": 265, + "height": 2.69, + "weight": 225, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "700": { + "name": "Sylveon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "It wraps its ribbonlike feelers around the arm of its beloved Trainer and walks with him or her.", + "attack": 203, + "defense": 205, + "stamina": 216, + "height": 0.99, + "weight": 23.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "701": { + "name": "Hawlucha", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting", + "Flying" + ], + "dex": "With its wings, it controls its position in the air. It likes to attack from above, a maneuver that is difficult to defend against.", + "attack": 195, + "defense": 153, + "stamina": 186, + "height": 0.79, + "weight": 21.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "702": { + "name": "Dedenne", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric", + "Fairy" + ], + "dex": "It uses its tail to absorb electricity from power plants or from outlets in houses, and then it fires the electricity from its whiskers.", + "attack": 164, + "defense": 134, + "stamina": 167, + "height": 0.2, + "weight": 2.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "703": { + "name": "Carbink", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Fairy" + ], + "dex": "It has slept underground for hundreds of millions of years since its birth. It's occasionally found during the excavation of caves.", + "attack": 95, + "defense": 285, + "stamina": 137, + "height": 0.3, + "weight": 5.7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "704": { + "name": "Goomy", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon" + ], + "dex": "It's covered in a slimy membrane that makes any punches or kicks slide off it harmlessly.", + "attack": 101, + "defense": 112, + "stamina": 128, + "height": 0.3, + "weight": 2.8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "705": { + "name": "Sliggoo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon" + ], + "dex": "Its four horns are a high-performance radar system. It uses them to sense sounds and smells, rather than using ears or a nose.", + "attack": 159, + "defense": 176, + "stamina": 169, + "height": 0.79, + "weight": 17.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "706": { + "name": "Goodra", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon" + ], + "dex": "It attacks with retractable horns. It throws a punch that's the equivalent of the force of a hundred pro boxers.", + "attack": 220, + "defense": 242, + "stamina": 207, + "height": 2.01, + "weight": 150.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "707": { + "name": "Klefki", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Fairy" + ], + "dex": "It never lets go of a key that it likes, so people give it the keys to vaults and safes as a way to prevent crime.", + "attack": 160, + "defense": 179, + "stamina": 149, + "height": 0.2, + "weight": 3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "708": { + "name": "Phantump", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Grass" + ], + "dex": "According to old tales, these Pokémon are stumps possessed by the spirits of children who died while lost in the forest.", + "attack": 125, + "defense": 103, + "stamina": 125, + "height": 0.41, + "weight": 7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "709": { + "name": "Trevenant", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Grass" + ], + "dex": "Using its roots as a nervous system, it controls the trees in the forest. It's kind to the Pokémon that reside in its body.", + "attack": 201, + "defense": 154, + "stamina": 198, + "height": 1.5, + "weight": 71, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "710": { + "name": "Pumpkaboo", + "forms": { + "0": { + "name": "Average", + "attack": 121, + "defense": 123, + "stamina": 135, + "height": 0.41, + "weight": 5, + "quickmove": [], + "chargedmove": [] + }, + "1": { + "name": "Super", + "attack": 118, + "defense": 120, + "stamina": 153, + "height": 0.41, + "weight": 5, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "Large", + "attack": 120, + "defense": 122, + "stamina": 144, + "height": 0.41, + "weight": 5, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Ghost", + "Grass" + ], + "dex": "The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active.", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "711": { + "name": "Gourgeist", + "forms": { + "0": { + "name": "Average", + "attack": 175, + "defense": 213, + "stamina": 163, + "height": 1.7, + "weight": 39, + "quickmove": [], + "chargedmove": [] + }, + "1": { + "name": "Small", + "attack": 171, + "defense": 219, + "stamina": 146, + "height": 1.7, + "weight": 39, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "Super", + "attack": 182, + "defense": 200, + "stamina": 198, + "height": 1.7, + "weight": 39, + "quickmove": [], + "chargedmove": [] + }, + "3": { + "name": "Large", + "attack": 179, + "defense": 206, + "stamina": 181, + "height": 1.7, + "weight": 39, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Ghost", + "Grass" + ], + "dex": "Singing in eerie voices, they wander town streets on the night of the new moon. Anyone who hears their song is cursed.", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "712": { + "name": "Bergmite", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "Using air of -150 degrees Fahrenheit, they freeze opponents solid. They live in herds above the snow line on mountains.", + "attack": 117, + "defense": 120, + "stamina": 146, + "height": 0.99, + "weight": 99.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "713": { + "name": "Avalugg", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ice" + ], + "dex": "The way several Bergmite huddle on its back makes it look like an aircraft carrier made of ice.", + "attack": 196, + "defense": 240, + "stamina": 216, + "height": 2.01, + "weight": 505, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "714": { + "name": "Noibat", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Flying", + "Dragon" + ], + "dex": "Even a robust wrestler will become dizzy and unable to stand when exposed to its 200,000-hertz ultrasonic waves.", + "attack": 83, + "defense": 73, + "stamina": 120, + "height": 0.51, + "weight": 8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "715": { + "name": "Noivern", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Flying", + "Dragon" + ], + "dex": "The ultrasonic waves it emits from its ears can reduce a large boulder to pebbles. It swoops out of the dark to attack.", + "attack": 205, + "defense": 175, + "stamina": 198, + "height": 1.5, + "weight": 85, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "716": { + "name": "Xerneas", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "When the horns on its head shine in seven colors, it is said to be sharing everlasting life.", + "attack": 250, + "defense": 185, + "stamina": 246, + "height": 3, + "weight": 215, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "717": { + "name": "Yveltal", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Flying" + ], + "dex": "When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more.", + "attack": 250, + "defense": 185, + "stamina": 246, + "height": 5.79, + "weight": 203, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "718": { + "name": "Zygarde", + "forms": { + "0": { + "name": "Complete", + "attack": 184, + "defense": 207, + "stamina": 389, + "height": 1.19, + "weight": 33.5, + "quickmove": [], + "chargedmove": [] + }, + "1": { + "name": "50%", + "attack": 203, + "defense": 232, + "stamina": 239, + "height": 1.19, + "weight": 33.5, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "10%", + "attack": 205, + "defense": 173, + "stamina": 144, + "height": 1.19, + "weight": 33.5, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Dragon", + "Ground" + ], + "dex": "It's hypothesized that it's monitoring those who destroy the ecosystem from deep in the cave where it lives.", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "719": { + "name": "Diancie", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Fairy" + ], + "dex": "", + "attack": 190, + "defense": 285, + "stamina": 137, + "height": 0.71, + "weight": 8.8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "720": { + "name": "Hoopa", + "forms": { + "0": { + "name": "Unbound", + "attack": 311, + "defense": 191, + "stamina": 173, + "height": 0.51, + "weight": 9, + "quickmove": [], + "chargedmove": [] + }, + "1": { + "name": "Confined", + "attack": 261, + "defense": 187, + "stamina": 173, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 0, + "evolutions": [], + "types": [ + "Psychic", + "Ghost" + ], + "dex": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "721": { + "name": "Volcanion", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Water" + ], + "dex": "", + "attack": 252, + "defense": 216, + "stamina": 190, + "height": 1.7, + "weight": 195, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "722": { + "name": "Rowlet", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Flying" + ], + "dex": "", + "attack": 102, + "defense": 99, + "stamina": 169, + "height": 0.3, + "weight": 1.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "723": { + "name": "Dartrix", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Flying" + ], + "dex": "", + "attack": 142, + "defense": 139, + "stamina": 186, + "height": 0.71, + "weight": 16, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "724": { + "name": "Decidueye", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Ghost" + ], + "dex": "", + "attack": 210, + "defense": 179, + "stamina": 186, + "height": 1.6, + "weight": 36.6, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "725": { + "name": "Litten", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "", + "attack": 128, + "defense": 79, + "stamina": 128, + "height": 0.41, + "weight": 4.3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "726": { + "name": "Torracat", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire" + ], + "dex": "", + "attack": 174, + "defense": 103, + "stamina": 163, + "height": 0.71, + "weight": 25, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "727": { + "name": "Incineroar", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Ghost" + ], + "dex": "", + "attack": 214, + "defense": 175, + "stamina": 216, + "height": 1.8, + "weight": 83, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "728": { + "name": "Popplio", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "", + "attack": 120, + "defense": 103, + "stamina": 137, + "height": 0.41, + "weight": 7.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "729": { + "name": "Brionne", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "", + "attack": 168, + "defense": 145, + "stamina": 155, + "height": 0.61, + "weight": 17.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "730": { + "name": "Primarina", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Fairy" + ], + "dex": "", + "attack": 232, + "defense": 195, + "stamina": 190, + "height": 1.8, + "weight": 44, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "731": { + "name": "Pikipek", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "", + "attack": 136, + "defense": 59, + "stamina": 111, + "height": 0.3, + "weight": 1.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "732": { + "name": "Trumbeak", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "", + "attack": 159, + "defense": 100, + "stamina": 146, + "height": 0.61, + "weight": 14.8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "733": { + "name": "Toucannon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Flying" + ], + "dex": "", + "attack": 222, + "defense": 146, + "stamina": 190, + "height": 1.09, + "weight": 26, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "734": { + "name": "Yungoos", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "", + "attack": 122, + "defense": 56, + "stamina": 134, + "height": 0.41, + "weight": 6, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "735": { + "name": "Gumshoos", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "", + "attack": 194, + "defense": 113, + "stamina": 204, + "height": 0.71, + "weight": 14.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "736": { + "name": "Grubbin", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug" + ], + "dex": "", + "attack": 115, + "defense": 85, + "stamina": 132, + "height": 0.41, + "weight": 4.4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "737": { + "name": "Charjabug", + "forms": {}, + "default_form": "", + "evolutions": [ + "Bug", + "Electric" + ], + "types": [], + "dex": "", + "attack": 145, + "defense": 161, + "stamina": 149, + "height": 0.51, + "weight": 10.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "738": { + "name": "Vikavolt", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Electric" + ], + "dex": "", + "attack": 254, + "defense": 158, + "stamina": 184, + "height": 1.5, + "weight": 45, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "739": { + "name": "Crabrawler", + "forms": {}, + "default_form": "", + "evolutions": [ + "Fighting" + ], + "types": [], + "dex": "", + "attack": 150, + "defense": 104, + "stamina": 132, + "height": 0.61, + "weight": 7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "740": { + "name": "Crabominable", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting", + "Ice" + ], + "dex": "", + "attack": 231, + "defense": 138, + "stamina": 219, + "height": 1.7, + "weight": 180, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "741": { + "name": "Oricorio", + "forms": { + "1": { + "name": "Pa'u Style", + "types": [ + "Psychic", + "Flying" + ], + "attack": 196, + "defense": 145, + "stamina": 181, + "height": 0.61, + "weight": 3.4, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "Sensu Style", + "types": [ + "Ghost", + "Flying" + ], + "attack": 196, + "defense": 145, + "stamina": 181, + "height": 0.61, + "weight": 3.4, + "quickmove": [], + "chargedmove": [] + }, + "3": { + "name": "Baile Style", + "types": [ + "Fire", + "Flying" + ], + "attack": 196, + "defense": 145, + "stamina": 181, + "height": 0.61, + "weight": 3.4, + "quickmove": [], + "chargedmove": [] + }, + "4": { + "name": "Pom-Pom Style", + "types": [ + "Electric", + "Flying" + ], + "attack": 196, + "defense": 145, + "stamina": 181, + "height": 0.61, + "weight": 3.4, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 3, + "evolutions": [], + "dex": "", + "attack": 196, + "defense": 145, + "stamina": 181, + "height": 0.61, + "weight": 3.4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "742": { + "name": "Cutiefly", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Fairy" + ], + "dex": "", + "attack": 110, + "defense": 81, + "stamina": 120, + "height": 0.1, + "weight": 0.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "743": { + "name": "Ribombee", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Fairy" + ], + "dex": "", + "attack": 198, + "defense": 146, + "stamina": 155, + "height": 0.2, + "weight": 0.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "744": { + "name": "Rockruff", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock" + ], + "dex": "", + "attack": 117, + "defense": 78, + "stamina": 128, + "height": 0.51, + "weight": 9.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "745": { + "name": "Lycanroc", + "forms": { + "1": { + "name": "Midday", + "attack": 231, + "defense": 140, + "stamina": 181, + "height": 0.79, + "weight": 25, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "Midnight", + "attack": 218, + "defense": 152, + "stamina": 198, + "height": 0.79, + "weight": 25, + "quickmove": [], + "chargedmove": [] + }, + "3": { + "name": "Dusk", + "attack": 234, + "defense": 139, + "stamina": 181, + "height": 0.79, + "weight": 25, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 1, + "evolutions": [], + "types": [ + "Rock" + ], + "dex": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "746": { + "name": "Wishiwashi", + "forms": { + "1": { + "name": "Solo", + "attack": 46, + "defense": 43, + "stamina": 128, + "height": 0.2, + "weight": 0.3, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "School", + "attack": 255, + "defense": 242, + "stamina": 128, + "height": 0.2, + "weight": 0.3, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 1, + "evolutions": [], + "types": [ + "Water" + ], + "dex": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "747": { + "name": "Mareanie", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Water" + ], + "dex": "", + "attack": 98, + "defense": 110, + "stamina": 137, + "height": 0.41, + "weight": 8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "748": { + "name": "Toxapex", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Water" + ], + "dex": "", + "attack": 114, + "defense": 273, + "stamina": 137, + "height": 0.71, + "weight": 14.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "749": { + "name": "Mudbray", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground" + ], + "dex": "", + "attack": 175, + "defense": 121, + "stamina": 172, + "height": 0.99, + "weight": 110, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "750": { + "name": "Mudsdale", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ground" + ], + "dex": "", + "attack": 214, + "defense": 174, + "stamina": 225, + "height": 2.49, + "weight": 920, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "751": { + "name": "Dewpider", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Bug" + ], + "dex": "", + "attack": 72, + "defense": 117, + "stamina": 116, + "height": 0.3, + "weight": 4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "752": { + "name": "Araquanid", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Bug" + ], + "dex": "", + "attack": 126, + "defense": 219, + "stamina": 169, + "height": 1.8, + "weight": 82, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "753": { + "name": "Fomantis", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "", + "attack": 100, + "defense": 64, + "stamina": 120, + "height": 0.3, + "weight": 1.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "754": { + "name": "Lurantis", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "", + "attack": 192, + "defense": 169, + "stamina": 172, + "height": 0.89, + "weight": 18.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "755": { + "name": "Morelull", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fairy" + ], + "dex": "", + "attack": 108, + "defense": 119, + "stamina": 120, + "height": 0.2, + "weight": 1.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "756": { + "name": "Shiinotic", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fairy" + ], + "dex": "", + "attack": 154, + "defense": 168, + "stamina": 155, + "height": 0.99, + "weight": 11.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "757": { + "name": "Salandit", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Fire" + ], + "dex": "", + "attack": 136, + "defense": 80, + "stamina": 134, + "height": 0.61, + "weight": 4.8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "758": { + "name": "Salazzle", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Fire" + ], + "dex": "", + "attack": 228, + "defense": 130, + "stamina": 169, + "height": 1.19, + "weight": 22.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "female", + "buddy_distance_evolve": "" + }, + "759": { + "name": "Stufful", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Fighting" + ], + "dex": "", + "attack": 136, + "defense": 95, + "stamina": 172, + "height": 0.51, + "weight": 6.8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "760": { + "name": "Bewear", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Fighting" + ], + "dex": "", + "attack": 226, + "defense": 141, + "stamina": 260, + "height": 2.11, + "weight": 135, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "761": { + "name": "Bounsweet", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "", + "attack": 55, + "defense": 69, + "stamina": 123, + "height": 0.3, + "weight": 3.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "762": { + "name": "Steenee", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "", + "attack": 78, + "defense": 94, + "stamina": 141, + "height": 0.71, + "weight": 8.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "763": { + "name": "Tsareena", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass" + ], + "dex": "", + "attack": 222, + "defense": 195, + "stamina": 176, + "height": 1.14, + "weight": 21.4, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "764": { + "name": "Comfey", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fairy" + ], + "dex": "", + "attack": 165, + "defense": 215, + "stamina": 139, + "height": 0.1, + "weight": 0.3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "765": { + "name": "Oranguru", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Psychic" + ], + "dex": "", + "attack": 168, + "defense": 192, + "stamina": 207, + "height": 1.5, + "weight": 76, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "766": { + "name": "Passimian", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting" + ], + "dex": "", + "attack": 222, + "defense": 160, + "stamina": 225, + "height": 2.01, + "weight": 82.8, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "767": { + "name": "Wimpod", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Water" + ], + "dex": "", + "attack": 67, + "defense": 74, + "stamina": 93, + "height": 0.51, + "weight": 12, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "768": { + "name": "Golisopod", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Water" + ], + "dex": "", + "attack": 218, + "defense": 226, + "stamina": 181, + "height": 2.01, + "weight": 108, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "769": { + "name": "Sandygast", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Ground" + ], + "dex": "", + "attack": 120, + "defense": 118, + "stamina": 146, + "height": 0.51, + "weight": 70, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "770": { + "name": "Palossand", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Ground" + ], + "dex": "", + "attack": 178, + "defense": 178, + "stamina": 198, + "height": 1.3, + "weight": 250, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "771": { + "name": "Pyukumuku", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water" + ], + "dex": "", + "attack": 97, + "defense": 224, + "stamina": 146, + "height": 0.3, + "weight": 1.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "772": { + "name": "Type Null", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "", + "attack": 184, + "defense": 184, + "stamina": 216, + "height": 1.91, + "weight": 120.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "773": { + "name": "Silvally", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "", + "attack": 198, + "defense": 198, + "stamina": 216, + "height": 2.31, + "weight": 100.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "774": { + "name": "Minior", + "forms": { + "1": { + "name": "Core", + "attack": 218, + "defense": 131, + "stamina": 155, + "height": 0.3, + "weight": 40, + "quickmove": [], + "chargedmove": [] + }, + "2": { + "name": "Meteor", + "attack": 116, + "defense": 194, + "stamina": 155, + "height": 0.3, + "weight": 40, + "quickmove": [], + "chargedmove": [] + } + }, + "default_form": 1, + "evolutions": [], + "types": [ + "Rock", + "Flying" + ], + "dex": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "775": { + "name": "Komala", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal" + ], + "dex": "", + "attack": 216, + "defense": 165, + "stamina": 163, + "height": 0.41, + "weight": 19.9, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "776": { + "name": "Turtonator", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Dragon" + ], + "dex": "", + "attack": 165, + "defense": 215, + "stamina": 155, + "height": 2.01, + "weight": 212, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "777": { + "name": "Togedemaru", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric", + "Steel" + ], + "dex": "", + "attack": 190, + "defense": 145, + "stamina": 163, + "height": 0.3, + "weight": 3.3, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "778": { + "name": "Mimikyu", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Fairy" + ], + "dex": "", + "attack": 177, + "defense": 199, + "stamina": 146, + "height": 0.2, + "weight": 0.7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "779": { + "name": "Bruxish", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Psychic" + ], + "dex": "", + "attack": 208, + "defense": 145, + "stamina": 169, + "height": 0.89, + "weight": 19, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "780": { + "name": "Drampa", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Normal", + "Dragon" + ], + "dex": "", + "attack": 231, + "defense": 164, + "stamina": 186, + "height": 3, + "weight": 185, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "781": { + "name": "Dhelmise", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Ghost", + "Grass" + ], + "dex": "", + "attack": 233, + "defense": 179, + "stamina": 172, + "height": 3.91, + "weight": 210, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "782": { + "name": "Jangmo-o", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon" + ], + "dex": "", + "attack": 102, + "defense": 108, + "stamina": 128, + "height": 0.61, + "weight": 29.7, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "783": { + "name": "Hakamo-o", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Fighting" + ], + "dex": "", + "attack": 145, + "defense": 162, + "stamina": 146, + "height": 1.14, + "weight": 47, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "784": { + "name": "Kommo-o", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dragon", + "Fighting" + ], + "dex": "", + "attack": 222, + "defense": 240, + "stamina": 181, + "height": 1.6, + "weight": 78.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "785": { + "name": "Tapu Koko", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric", + "Fairy" + ], + "dex": "", + "attack": 250, + "defense": 181, + "stamina": 172, + "height": 1.8, + "weight": 20.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "786": { + "name": "Tapu Lele", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Fairy" + ], + "dex": "", + "attack": 259, + "defense": 208, + "stamina": 172, + "height": 1.19, + "weight": 18.6, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "787": { + "name": "Tapu Bulu", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Fairy" + ], + "dex": "", + "attack": 249, + "defense": 215, + "stamina": 172, + "height": 1.91, + "weight": 45.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "788": { + "name": "Tapu Fini", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Water", + "Fairy" + ], + "dex": "", + "attack": 189, + "defense": 254, + "stamina": 172, + "height": 1.3, + "weight": 21.2, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "789": { + "name": "Cosmog", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic" + ], + "dex": "", + "attack": 54, + "defense": 57, + "stamina": 125, + "height": 0.2, + "weight": 0.1, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "790": { + "name": "Cosmoem", + "forms": {}, + "default_form": "", + "evolutions": [ + "Psychic" + ], + "types": [], + "dex": "", + "attack": 54, + "defense": 242, + "stamina": 125, + "height": 0.1, + "weight": 999.9, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "791": { + "name": "Solgaleo", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Steel" + ], + "dex": "", + "attack": 255, + "defense": 191, + "stamina": 264, + "height": 3.4, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "792": { + "name": "Lunala", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Psychic", + "Ghost" + ], + "dex": "", + "attack": 255, + "defense": 191, + "stamina": 264, + "height": 3.99, + "weight": 120, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "793": { + "name": "Nihilego", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Poison" + ], + "dex": "", + "attack": 249, + "defense": 210, + "stamina": 240, + "height": 1.19, + "weight": 55.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "794": { + "name": "Buzzwole", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Fighting" + ], + "dex": "", + "attack": 236, + "defense": 196, + "stamina": 216, + "height": 2.39, + "weight": 333.6, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "795": { + "name": "Pheromosa", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Bug", + "Fighting" + ], + "dex": "", + "attack": 316, + "defense": 85, + "stamina": 174, + "height": 1.8, + "weight": 25, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "796": { + "name": "Xurkitree", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "", + "attack": 330, + "defense": 144, + "stamina": 195, + "height": 3.81, + "weight": 100, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "797": { + "name": "Celesteela", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Flying" + ], + "dex": "", + "attack": 207, + "defense": 199, + "stamina": 219, + "height": 9.19, + "weight": 999.9, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "798": { + "name": "Kartana", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Grass", + "Steel" + ], + "dex": "", + "attack": 323, + "defense": 182, + "stamina": 139, + "height": 0.3, + "weight": 0.1, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "799": { + "name": "Guzzlord", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Dark", + "Dragon" + ], + "dex": "", + "attack": 188, + "defense": 99, + "stamina": 440, + "height": 5.51, + "weight": 888, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "800": { + "name": "Necrozma", + "forms": { + "0": { + "name": "Necrozma", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [], + "dex": "", + "attack": 251, + "defense": 195, + "stamina": 219, + "height": 2.39, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "1": { + "name": "Ultra", + "evolutions": [], + "types": [], + "dex": "", + "attack": 337, + "defense": 196, + "stamina": 200, + "height": 2.39, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "2": { + "name": "Dusk Mane", + "evolutions": [], + "types": [], + "dex": "", + "attack": 277, + "defense": 220, + "stamina": 200, + "height": 2.39, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "3": { + "name": "Dawn Wings", + "evolutions": [], + "types": [], + "dex": "", + "attack": 277, + "defense": 220, + "stamina": 200, + "height": 2.39, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + } + }, + "default_form": "", + "evolutions": [], + "types": [], + "dex": "", + "attack": 251, + "defense": 195, + "stamina": 219, + "height": 2.39, + "weight": 230, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "801": { + "name": "Magearna", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel", + "Fairy" + ], + "dex": "", + "attack": 246, + "defense": 225, + "stamina": 190, + "height": 0.99, + "weight": 80.5, + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "802": { + "name": "Marshadow", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fighting", + "Ghost" + ], + "dex": "", + "attack": 265, + "defense": 190, + "stamina": 207, + "height": "", + "weight": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "803": { + "name": "Poipole", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison" + ], + "dex": "", + "attack": 145, + "defense": 133, + "stamina": 167, + "height": "", + "weight": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "804": { + "name": "Naganadel", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Poison", + "Dragon" + ], + "dex": "", + "attack": 263, + "defense": 159, + "stamina": 177, + "height": "", + "weight": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "805": { + "name": "Stakataka", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Rock", + "Steel" + ], + "dex": "", + "attack": 213, + "defense": 298, + "stamina": 156, + "height": "", + "weight": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "806": { + "name": "Blacephalon", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Fire", + "Ghost" + ], + "dex": "", + "attack": 315, + "defense": 148, + "stamina": 142, + "height": "", + "weight": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "807": { + "name": "Zeraora", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Electric" + ], + "dex": "", + "attack": 252, + "defense": 177, + "stamina": 204, + "height": "", + "weight": "", + "male_percent": "", + "female_percent": "", + "catch_rate": "", + "flee_rate": "", + "quickmove": [], + "chargedmove": [], + "candy": "", + "buddy_distance": "", + "thirdmove": "", + "evolution_item": "", + "legendary": "", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "808": { + "name": "Meltan", + "forms": {}, + "default_form": "", + "evolutions": [ + 809 + ], + "types": [ + "Steel" + ], + "dex": "", + "attack": 118, + "defense": 99, + "stamina": 130, + "height": 0.2, + "weight": 8, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": "", + "quickmove": [ + "Thunder Shock" + ], + "chargedmove": [ + "Flash Cannon", + "Thunderbolt" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + }, + "809": { + "name": "Melmetal", + "forms": {}, + "default_form": "", + "evolutions": [], + "types": [ + "Steel" + ], + "dex": "", + "attack": 226, + "defense": 190, + "stamina": 264, + "height": 2.5, + "weight": 800, + "male_percent": "", + "female_percent": "", + "catch_rate": 0.30000001, + "flee_rate": "", + "quickmove": [ + "Thunder Shock" + ], + "chargedmove": [ + "Flash Cannon", + "Thunderbolt", + "Hyper Beam" + ], + "candy": 25, + "buddy_distance": 20, + "thirdmove": { + "stardustToUnlock": 100000, + "candyToUnlock": 100 + }, + "evolution_item": "", + "legendary": "Mythical", + "gender_requirement": "", + "buddy_distance_evolve": "" + } + } +} diff --git a/static/data/pokemon.json b/static/data/pokemon.json index f597d47..f6a2a46 100644 --- a/static/data/pokemon.json +++ b/static/data/pokemon.json @@ -2060,7 +2060,7 @@ ] }, "29": { - "name": "Nidoran", + "name": "Nidoran-F", "rarity": "Uncommon", "baseStamina": 146, "baseAttack": 86, @@ -2235,7 +2235,7 @@ ] }, "32": { - "name": "Nidoran", + "name": "Nidoran-M", "rarity": "Uncommon", "baseStamina": 130, "baseAttack": 105, @@ -5524,7 +5524,7 @@ ] }, "83": { - "name": "Farfetch'd", + "name": "Farfetchd", "rarity": "Ultra Rare", "baseStamina": 141, "baseAttack": 124, @@ -5587,16 +5587,12 @@ }, { "nameform": "Galarian", - "protoform": "2335", + "protoform": "2338", "assetsform": "00", "formtypes": [ { - "type": "Normal", + "type": "Fighting", "color": "#8a8a59" - }, - { - "type": "Flying", - "color": "#a890f0" } ] } @@ -7925,7 +7921,7 @@ ] }, "122": { - "name": "Mr. Mime", + "name": "Mr-Mime", "rarity": "Very Rare", "baseStamina": 120, "baseAttack": 192, diff --git a/static/images/ex.png b/static/images/ex.png new file mode 100644 index 0000000..b9acb9d Binary files /dev/null and b/static/images/ex.png differ diff --git a/static/images/pokedex-kanto.png b/static/images/pokedex-kanto.png new file mode 100644 index 0000000..cef35bd Binary files /dev/null and b/static/images/pokedex-kanto.png differ diff --git a/static/images/svg/pokedex.svg b/static/images/svg/pokedex.svg new file mode 100644 index 0000000..1363be6 --- /dev/null +++ b/static/images/svg/pokedex.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/images/types/Bug.png b/static/images/types/Bug.png new file mode 100644 index 0000000..4bd10ea Binary files /dev/null and b/static/images/types/Bug.png differ diff --git a/static/images/types/Dark.png b/static/images/types/Dark.png new file mode 100644 index 0000000..5b5f9f1 Binary files /dev/null and b/static/images/types/Dark.png differ diff --git a/static/images/types/Dragon.png b/static/images/types/Dragon.png new file mode 100644 index 0000000..980131c Binary files /dev/null and b/static/images/types/Dragon.png differ diff --git a/static/images/types/Electric.png b/static/images/types/Electric.png new file mode 100644 index 0000000..e9e504e Binary files /dev/null and b/static/images/types/Electric.png differ diff --git a/static/images/types/Fairy.png b/static/images/types/Fairy.png new file mode 100644 index 0000000..5be5cfa Binary files /dev/null and b/static/images/types/Fairy.png differ diff --git a/static/images/types/Fighting.png b/static/images/types/Fighting.png new file mode 100644 index 0000000..acb456c Binary files /dev/null and b/static/images/types/Fighting.png differ diff --git a/static/images/types/Fire.png b/static/images/types/Fire.png new file mode 100644 index 0000000..6102fcc Binary files /dev/null and b/static/images/types/Fire.png differ diff --git a/static/images/types/Flying.png b/static/images/types/Flying.png new file mode 100644 index 0000000..c702232 Binary files /dev/null and b/static/images/types/Flying.png differ diff --git a/static/images/types/Ghost.png b/static/images/types/Ghost.png new file mode 100644 index 0000000..0f19ece Binary files /dev/null and b/static/images/types/Ghost.png differ diff --git a/static/images/types/Grass.png b/static/images/types/Grass.png new file mode 100644 index 0000000..5f339e2 Binary files /dev/null and b/static/images/types/Grass.png differ diff --git a/static/images/types/Ground.png b/static/images/types/Ground.png new file mode 100644 index 0000000..fa16569 Binary files /dev/null and b/static/images/types/Ground.png differ diff --git a/static/images/types/Ice.png b/static/images/types/Ice.png new file mode 100644 index 0000000..38d1904 Binary files /dev/null and b/static/images/types/Ice.png differ diff --git a/static/images/types/Normal.png b/static/images/types/Normal.png new file mode 100644 index 0000000..144e509 Binary files /dev/null and b/static/images/types/Normal.png differ diff --git a/static/images/types/Poison.png b/static/images/types/Poison.png new file mode 100644 index 0000000..681b184 Binary files /dev/null and b/static/images/types/Poison.png differ diff --git a/static/images/types/Psychic.png b/static/images/types/Psychic.png new file mode 100644 index 0000000..ce04aa6 Binary files /dev/null and b/static/images/types/Psychic.png differ diff --git a/static/images/types/Rock.png b/static/images/types/Rock.png new file mode 100644 index 0000000..4fa8f0f Binary files /dev/null and b/static/images/types/Rock.png differ diff --git a/static/images/types/Steel.png b/static/images/types/Steel.png new file mode 100644 index 0000000..4c1d588 Binary files /dev/null and b/static/images/types/Steel.png differ diff --git a/static/images/types/Water.png b/static/images/types/Water.png new file mode 100644 index 0000000..567b1ce Binary files /dev/null and b/static/images/types/Water.png differ diff --git a/static/js/stats.common.js b/static/js/stats.common.js index 6aba711..841378d 100644 --- a/static/js/stats.common.js +++ b/static/js/stats.common.js @@ -43,13 +43,16 @@ var StoreTypes = { return number.toString() } } - -// set the default parameters here } + var StoreOptions = { 'geofence': { default: geofenceDefault, type: StoreTypes.String + }, + 'navColor': { + default: 'light', + type: StoreTypes.String } } diff --git a/static/js/stats.js b/static/js/stats.js index a8ba66c..fa0f36c 100644 --- a/static/js/stats.js +++ b/static/js/stats.js @@ -4,6 +4,10 @@ var languageLookups = 0 var languageLookupThreshold = 3 var rawDataIsLoading = false +if (getPage !== 'overview' && getPage !== 'pokedex') { + $.fn.DataTable.ext.pager.numbers_length = 5; // limit datatables paging buttons. Only odd numbers. +} + if (raidPage && getPage === 'raids') { var raidTable = $('#raidTable').DataTable({ paging: false, @@ -25,6 +29,50 @@ if (raidPage && getPage === 'raids') { }) } +if (getPage === 'raid_dashboard') { + $.fn.dataTable.ext.search.push(function(settings, data, dataIndex) { + var min = parseInt($('#min-level').val(), 10) + var max = parseInt($('#max-level').val(), 10) + var level = parseFloat(data[4]) || 0 + + if ((isNaN(min) && isNaN(max)) || (isNaN(min) && level <= max) || (min <= level && isNaN(max)) || (min <= level && level <= max)) { + return true + } + return false + }) + + var raidDashboardTable = $('#raidDashboardTable').DataTable({ + paging: true, + lengthMenu: [ + [10, 25, 50, 100, -1], + [i8ln('Show 10 rows'), i8ln('Show 25 rows'), i8ln('Show 50 rows'), i8ln('Show 100 rows'), i8ln('Show all rows')] + ], + searching: true, + info: true, + responsive: false, + scrollX: true, + stateSave: true, + stateSaveCallback: function (settings, data) { + localStorage.setItem('DataTables_' + settings.sInstance, JSON.stringify(data)) + }, + stateLoadCallback: function (settings) { + return JSON.parse(localStorage.getItem('DataTables_' + settings.sInstance)) + }, + stateDuration: 0, + language: { + search: '', + searchPlaceholder: i8ln('Search...'), + emptyTable: i8ln('Loading...') + '', + info: i8ln('Showing _START_ to _END_ of _TOTAL_ entries'), + lengthMenu: '_MENU_', + paginate: { + next: i8ln('Next'), + previous: i8ln('Previous') + } + } + }) +} + if (rewardPage && getPage === 'rewards') { var rewardTable = $('#rewardTable').DataTable({ paging: false, @@ -99,7 +147,8 @@ if (pokemonPage && getPage === 'pokemon') { paging: true, searching: true, info: true, - responsive: true, + responsive: false, + scrollX: true, stateSave: true, stateSaveCallback: function (settings, data) { localStorage.setItem('DataTables_' + settings.sInstance, JSON.stringify(data)) @@ -149,12 +198,14 @@ if (nestPage && getPage === 'nest') { } initSettings() -updateStats() -if (getPage !== 'nest') { - window.setInterval(updateStats, queryDelay * 1000) -} else { - window.setInterval(nestMigrationTimer, 1000) +if (getPage !== 'pokedex') { + updateStats() + if (getPage !== 'nest') { + window.setInterval(updateStats, queryDelay * 1000) + } else { + window.setInterval(nestMigrationTimer, 1000) + } } function loadRawData() { @@ -233,14 +284,86 @@ function processRaids(i, item) { } else { boss = '
' + item['name'] } + raidTable.row.add([ item['lvl'], boss, item['count'], item['percentage'] - ]).draw(false) + ]) +} + +function formatTime(timestamp) { + var date = new Date(timestamp * 1000) + var hours = date.getHours() + var minutes = "0" + date.getMinutes() + var seconds = "0" + date.getSeconds() + var formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2) + + return formattedTime } +function processRaidDashboard(i, item) { + var despawn = '' + var boss = '' + var costume = '' + var ex = '' + var moves = i8ln('n/a') + var hatch = i8ln('n/a') + + var gymColors = ['#999999', '#0051CF', '#FF260E', '#FECC23'] // 'Uncontested', 'Mystic', 'Valor', 'Instinct'] + var color = gymColors[item['team']] + + if (item['raid_pokemon_id'] <= 9) { + item['raid_pokemon_id'] = '00' + item['raid_pokemon_id'] + } else if (item['raid_pokemon_id'] <= 99) { + item['raid_pokemon_id'] = '0' + item['raid_pokemon_id'] + } + + if (item['raid_pokemon_form'] <= 0) { + item['raid_pokemon_form'] = '00' + } + + if (item['raid_pokemon_costume'] > 0) { + costume = '_' + item['raid_pokemon_costume'] + } + + if (item['ex_gym'] > 0) { + ex = '' + } + + + if (item['raid_pokemon_id'] > 0) { + boss = '
' + item['raid_pokemon_name'] + + despawn = formatTime(item['raid_end']) + + moves = '' + item['raid_pokemon_move_1'] + ' ' + + '

' + + '' + item['raid_pokemon_move_2'] + ' ' + } else { + boss = '
' + item['raid_pokemon_name'] + + hatch = formatTime(item['raid_start']) + + despawn = formatTime(item['raid_end']) + } + + var gymName = '' + ex + + '
' + item['gym_name'] + + '
' + + raidDashboardTable.row.add([ + gymName, + boss, + despawn, + hatch, + item['raid_pokemon_level'], + moves + ]) +} + + function processRewards(i, item) { if (item['quest_pokemon_id'] <= 9) { item['quest_pokemon_id'] = '00' + item['quest_pokemon_id'] @@ -270,7 +393,7 @@ function processRewards(i, item) { reward, item['count'], item['percentage'] - ]).draw(false) + ]) } function processShiny(i, item) { @@ -294,7 +417,7 @@ function processShiny(i, item) { item['shiny_count'], rate, item['sample_size'] - ]).draw(false) + ]) } function processInvasions(i, item) { @@ -303,7 +426,7 @@ function processInvasions(i, item) { grunt, item['count'], item['percentage'] - ]).draw(false) + ]) } function processPokemon(i, item) { @@ -322,11 +445,11 @@ function processPokemon(i, item) { if (item['costume'] > 0) { costume = '_' + item['costume'] } - var pokemon = '
' + item['name'] + var pokemon = '
' + item['name'] var types = item['pokemon_types'] var typeDisplay = '' $.each(types, function (index, type) { - typeDisplay += i8ln(type['type']) + '
' + typeDisplay += '' + i8ln(type['type']) + '
' }) pokemonTable.row.add([ item['pokemon_id'], @@ -334,7 +457,7 @@ function processPokemon(i, item) { pokemon, item['count'], item['percentage'] - ]).draw(false) + ]) } function processNests(i, item) { @@ -353,12 +476,19 @@ function processNests(i, item) { pokemon, nestName, item['avg'] - ]).draw(false) + ]) } function initSettings() { if (Store.get('geofence')) { - $('#geofence-button').html(Store.get('geofence')) + $('#geofence').val(Store.get('geofence')) + } + if (Store.get('navColor')) { + if (Store.get('navColor') === 'dark') { + darkMode() + } else if (Store.get('navColor') === 'grey') { + greyMode() + } } } @@ -371,28 +501,38 @@ function updateStats() { $.each(result.spawnpoints, processSpawnpoints) } if (raidPage && getPage === 'raids') { - raidTable.clear().draw() + raidTable.clear() $.each(result.raids, processRaids) + raidTable.draw() + } + if (getPage === 'raid_dashboard') { + raidDashboardTable.clear() + $.each(result.raid_dashboard, processRaidDashboard) + raidDashboardTable.draw(false) } if (rewardPage && getPage === 'rewards') { - rewardTable.clear().draw() + rewardTable.clear() $.each(result.rewards, processRewards) + rewardTable.draw() } if (shinyPage && getPage === 'shiny') { - shinyTable.clear().draw() + shinyTable.clear() $.each(result.shiny, processShiny) + shinyTable.draw() } if (invasionPage && getPage === 'invasion') { - invasionTable.clear().draw() + invasionTable.clear() $.each(result.invasion, processInvasions) + invasionTable.draw() } if (pokemonPage && getPage === 'pokemon') { - pokemonTable.clear().draw(false) + pokemonTable.clear() $.each(result.pokemon, processPokemon) + pokemonTable.draw(false) } if (nestPage && getPage === 'nest') { - nestTable.clear().draw(false) $.each(result.nest, processNests) + nestTable.draw() } }) } @@ -455,11 +595,122 @@ function nestMigrationTimer() { $('#seconds').html(seconds + '' + i8ln('Seconds') + '') } +function lightMode() { + $('nav#navbar_main').removeClass('bg-dark bg-secondary') + $('nav#navbar_main').addClass('bg-light') + $('div.card-header-navbar').removeClass('bg-dark bg-secondary btn-dark') +} +function darkMode() { + $('nav#navbar_main').removeClass('bg-light bg-secondary') + $('nav#navbar_main').addClass('bg-dark') + $('div.card-header-navbar').removeClass('bg-light bg-secondary') + $('div.card-header-navbar').addClass('bg-dark btn-dark') +} +function greyMode() { + $('nav#navbar_main').removeClass('bg-dark bg-light') + $('nav#navbar_main').addClass('bg-secondary') + $('div.card-header-navbar').removeClass('bg-dark bg-light') + $('div.card-header-navbar').addClass('bg-secondary btn-dark') +} + +(function ($) { + $.fn.visible = function (partial) { + var $t = $(this) + var $w = $(window) + var viewTop = $w.scrollTop() + var viewBottom = viewTop + $w.height() + var _top = $t.offset().top + var _bottom = _top + $t.height() + var compareTop = partial === true ? _bottom : _top + var compareBottom = partial === true ? _top : _bottom + + return ((compareBottom <= viewBottom) && (compareTop >= viewTop)) + } +})(jQuery) + $(function () { - $('#geofence a').click(function () { - var geofence = $(this).html() - $('#geofence-button').html(geofence) - Store.set('geofence', geofence) + // Geofence + $('#geofence').change(function () { + Store.set('geofence', this.value) updateStats() }) + + // Pokedex + if (getPage === 'pokedex') { + if (window.location.hash) { + var hash = '#' + window.location.hash.charAt(1).toUpperCase() + window.location.hash.slice(2) + $(hash).modal('show') + $('html, body').animate({ + 'scrollTop': $(hash + '-col').offset().top + }, 2000) + } + + window.onhashchange = function () { + $('div.modal').modal('hide') + var hash = '#' + window.location.hash.charAt(1).toUpperCase() + window.location.hash.slice(2) + setTimeout(function () { + $(hash).modal('show') + }, 300) + $('html, body').animate({ + 'scrollTop': $(hash + '-col').offset().top + }) + } + + $('#pokedex-search-input').on('keyup', function () { + var value = $(this).val().toLowerCase() + $('#pokedex-search-list .pokedex-col').filter(function () { + $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) + }) + }) + } + + // SideNav + $('[data-trigger]').on('click', function () { + var offcanvasId = $(this).attr('data-trigger') + $(offcanvasId).toggleClass('show') + $('.screen-overlay').toggleClass('show') + }) + + $('.screen-overlay').click(function () { + $('.offcanvas').removeClass('show') + $('.screen-overlay').removeClass('show') + }) + + $(window).on('scroll', function () { + if (!$('#header').visible()) { + $('.offcanvas').removeClass('show') + $('.screen-overlay').removeClass('show') + } + }) + + // Nav Styling + $('#color-button-dark').on('click', function () { + darkMode() + Store.set('navColor', 'dark') + }) + + $('#color-button-light').on('click', function () { + lightMode() + Store.set('navColor', 'light') + }) + + $('#color-button-secondary').on('click', function () { + greyMode() + Store.set('navColor', 'grey') + }) + + if (getPage === 'raid_dashboard') { + $('#min-level, #max-level').keyup(function () { + raidDashboardTable.draw() + }) + $('#min-level, #max-level').change(function () { + raidDashboardTable.draw() + }) + + $('a.toggle-column').on('click', function (e) { + e.preventDefault() + var column = raidDashboardTable.column($(this).attr('data-column')) + column.visible(!column.visible()) + }) + } }) diff --git a/static/locales/de.json b/static/locales/de.json index 33d0aaa..92166c1 100644 --- a/static/locales/de.json +++ b/static/locales/de.json @@ -742,10 +742,11 @@ "Zweilous": "Duodino", "Zygarde": "Zygarde", "Gyms": "Arenen", + "Gym": "Arena", "Neutral Gyms": "Neutrale Arenen", - "Mystic Gyms": "Mystic Arenen", - "Valor Gyms": "Valor Arenen", - "Instinct Gyms": "Instinct Arenen", + "Mystic Gyms": "Weisheit Arenen", + "Valor Gyms": "Wagenmut Arenen", + "Instinct Gyms": "Instinkt Arenen", "Field Research": "Quests", "Invasions": "Invasionen", "Normal Lure": "Normale Lockmodule", @@ -789,10 +790,683 @@ "Live Shiny Rates": "Aktuelle Shiny Raten", "Data from the last 24 hours.": "Daten der letzten 24 Stunden.", "Donate": "Spenden", + "User": "Benutzer", "Days": "Tage", "Hours": "Stunden", "Minutes": "Minuten", "Seconds": "Sekunden", "Current Grunts": "Aktuelle Rüpel", - "Current Pokémon": "Aktuelle Pokémon" + "Current Pokémon": "Aktuelle Pokémon", + "Settings": "Einstellungen", + "Absorb": "Absorber", + "Accelerock": "Turbofelsen", + "Acid Armor": "Säurepanzer", + "Acid Spray": "Säurespeier", + "Acid": "Säure", + "Acrobatics": "Akrobatik", + "Acupressure": "Akupressur", + "Aerial Ace": "Aero-Ass", + "Aeroblast": "Luftstoß", + "Agility": "Agilität", + "Air Cutter": "Windschnitt", + "Air Slash": "Luftschnitt", + "Ally Switch": "Seitentausch", + "Amnesia": "Amnesie", + "Anchor Shot": "Ankerschuss", + "Ancient Power": "Antik-Kraft", + "Aqua Jet": "Wasserdüse", + "Aqua Ring": "Wasserring", + "Aqua Tail": "Nassschweif", + "Aromatherapy": "Aromakur", + "Aromatic Mist": "Duftwolke", + "Assist": "Zuschuss", + "Assurance": "Gewissheit", + "Astonish": "Erstauner", + "Attack Order": "Schlagbefehl", + "Attract": "Anziehung", + "Aura Sphere": "Aurasphäre", + "Aurora Beam": "Aurorastrahl", + "Aurora Veil": "Auroraschleier", + "Autotomize": "Autotomie", + "Avalanche": "Lawine", + "Baby-Doll Eyes": "Kulleraugen", + "Baneful Bunker": "Bunker", + "Barrage": "Stakkato", + "Barrier": "Barriere", + "Beak Blast": "Schnabelkanone", + "Beat Up": "Prügler", + "Belch": "Rülpser", + "Belly Drum": "Bauchtrommel", + "Bestow": "Offerte", + "Bide": "Geduld", + "Bind": "Klammergriff", + "Bite": "Biss", + "Blast Burn": "Lohekanonade", + "Blaze Kick": "Feuerfeger", + "Blizzard": "Blizzard", + "Block": "Rückentzug", + "Blue Flare": "Blauflammen", + "Body Slam": "Bodyslam", + "Bolt Strike": "Blitzschlag", + "Bone Club": "Knochenkeule", + "Bone Rush": "Knochenhatz", + "Bonemerang": "Knochmerang", + "Boomburst": "Überschallknall", + "Bounce": "Sprungfeder", + "Brave Bird": "Sturzflug", + "Brick Break": "Durchbruch", + "Brine": "Lake", + "Brutal Swing": "Wirbler", + "Bubble Beam": "Blubbstrahl", + "Bubble": "Blubber", + "Bug Bite": "Käferbiss", + "Bug Buzz": "Käfergebrumm", + "Bulk Up": "Protzer", + "Bulldoze": "Dampfwalze", + "Bullet Punch": "Patronenhieb", + "Bullet Seed": "Kugelsaat", + "Burn Up": "Ausbrennen", + "Calm Mind": "Gedankengut", + "Camouflage": "Tarnung", + "Captivate": "Liebreiz", + "Celebrate": "Ehrentag", + "Charge Beam": "Ladestrahl", + "Charge": "Ladevorgang", + "Chatter": "Geschwätz", + "Chip Away": "Zermürben", + "Circle Throw": "Überkopfwurf", + "Clamp": "Schnapper", + "Clanging Scales": "Schuppenrasseln", + "Clear Smog": "Klärsmog", + "Close Combat": "Nahkampf", + "Coil": "Einrollen", + "Comet Punch": "Kometenhieb", + "Confuse Ray": "Konfustrahl", + "Confusion": "Konfusion", + "Constrict": "Umklammerung", + "Conversion 2": "Umwandlung2", + "Conversion": "Umwandlung", + "Copycat": "Imitator", + "Core Enforcer": "Sanktionskern", + "Cosmic Power": "Kosmik-Kraft", + "Cotton Guard": "Watteschild", + "Cotton Spore": "Baumwollsaat", + "Counter": "Konter", + "Covet": "Bezirzer", + "Crabhammer": "Krabbhammer", + "Crafty Shield": "Trickschutz", + "Cross Chop": "Kreuzhieb", + "Cross Poison": "Giftstreich", + "Crunch": "Knirscher", + "Crush Claw": "Zermalmklaue", + "Crush Grip": "Quetschgriff", + "Curse": "Fluch", + "Cut": "Zerschneider", + "Dark Pulse": "Finsteraura", + "Dark Void": "Schlummerort", + "Dazzling Gleam": "Zauberschein", + "Defend Order": "Blockbefehl", + "Defense Curl": "Einigler", + "Defog": "Auflockern", + "Destiny Bond": "Abgangsbund", + "Detect": "Scanner", + "Diamond Storm": "Diamantsturm", + "Dig": "Schaufler", + "Disable": "Aussetzer", + "Disarming Voice": "Säuselstimme", + "Discharge": "Ladungsstoß", + "Dive": "Taucher", + "Dizzy Punch": "Irrschlag", + "Doom Desire": "Kismetwunsch", + "Double Hit": "Doppelschlag", + "Double Kick": "Doppelkick", + "Double Slap": "Duplexhieb", + "Double Team": "Doppelteam", + "Double-Edge": "Risikotackle", + "Draco Meteor": "Draco Meteor", + "Dragon Ascent": "Zenitstürmer", + "Dragon Breath": "Feuerodem", + "Dragon Claw": "Drachenklaue", + "Dragon Dance": "Drachentanz", + "Dragon Hammer": "Drachenhammer", + "Dragon Pulse": "Drachenpuls", + "Dragon Rage": "Drachenwut", + "Dragon Rush": "Drachenstoß", + "Dragon Tail": "Drachenrute", + "Drain Punch": "Ableithieb", + "Draining Kiss": "Diebeskuss", + "Dream Eater": "Traumfresser", + "Drill Peck": "Bohrschnabel", + "Drill Run": "Schlagbohrer", + "Dual Chop": "Doppelhieb", + "Dynamic Punch": "Wuchtschlag", + "Earth Power": "Erdkräfte", + "Earthquake": "Erdbeben", + "Echoed Voice": "Widerhall", + "Eerie Impulse": "Mystowellen", + "Egg Bomb": "Eierbombe", + "Electric Terrain": "Elektrofeld", + "Electrify": "Elektrifizierung", + "Electroweb": "Elektronetz", + "Embargo": "Itemsperre", + "Encore": "Zugabe", + "Endeavor": "Notsituation", + "Endure": "Ausdauer", + "Energy Ball": "Energieball", + "Eruption": "Eruption", + "Explosion": "Explosion", + "Extrasensory": "Sondersensor", + "Extreme Speed": "Turbotempo", + "Facade": "Fassade", + "Fairy Lock": "Feenschloss", + "Fairy Wind": "Feenbrise", + "Fake Out": "Mogelhieb", + "Fake Tears": "Trugträne", + "False Swipe": "Trugschlag", + "Feather Dance": "Daunenreigen", + "Feint Attack": "Finte", + "Feint": "Offenlegung", + "Fell Stinger": "Stachelfinale", + "Fiery Dance": "Feuerreigen", + "Final Gambit": "Wagemut", + "Fire Blast": "Feuersturm", + "Fire Fang": "Feuerzahn", + "Fire Lash": "Feuerpeitsche", + "Fire Pledge": "Feuersäulen", + "Fire Punch": "Feuerschlag", + "Fire Spin": "Feuerwirbel", + "First Impression": "Überrumpler", + "Fissure": "Geofissur", + "Flail": "Dreschflegel", + "Flame Burst": "Funkenflug", + "Flame Charge": "Nitroladung", + "Flame Wheel": "Flammenrad", + "Flamethrower": "Flammenwurf", + "Flare Blitz": "Flammenblitz", + "Flash Cannon": "Lichtkanone", + "Flash": "Blitz", + "Flatter": "Schmeichler", + "Fleur Cannon": "Kanonenbouquet", + "Fling": "Schleuder", + "Flower Shield": "Floraschutz", + "Fly": "Fliegen", + "Flying Press": "Flying Press", + "Focus Blast": "Fokusstoß", + "Focus Energy": "Energiefokus", + "Focus Punch": "Power-Punch", + "Follow Me": "Spotlight", + "Force Palm": "Kraftwelle", + "Foresight": "Gesichte", + "Forest's Curse": "Waldesfluch", + "Foul Play": "Schmarotzer", + "Freeze Shock": "Frostvolt", + "Freeze-Dry": "Gefriertrockner", + "Frenzy Plant": "Flora-Statue", + "Frost Breath": "Eisesodem", + "Frustration": "Frustration", + "Fury Attack": "Furienschlag", + "Fury Cutter": "Zornklinge", + "Fury Swipes": "Kratzfurie", + "Fusion Bolt": "Kreuzdonner", + "Fusion Flare": "Kreuzflamme", + "Future Sight": "Seher", + "Gastro Acid": "Magensäfte", + "Gear Up": "Hilfsmechanik", + "Geomancy": "Geokontrolle", + "Giga Drain": "Gigasauger", + "Giga Impact": "Gigastoß", + "Glaciate": "Eiszeit", + "Glare": "Giftblick", + "Grass Knot": "Strauchler", + "Grass Pledge": "Pflanzensäulen", + "Grass Whistle": "Grasflöte", + "Grassy Terrain": "Grasfeld", + "Gravity": "Erdanziehung", + "Growl": "Heuler", + "Growth": "Wachstum", + "Grudge": "Nachspiel", + "Guard Split": "Schutzteiler", + "Guard Swap": "Schutztausch", + "Guillotine": "Guillotine", + "Gunk Shot": "Mülltreffer", + "Gust": "Windstoß", + "Gyro Ball": "Gyroball", + "Hail": "Hagelsturm", + "Hammer Arm": "Hammerarm", + "Happy Hour": "Goldene Zeiten", + "Harden": "Härtner", + "Haze": "Dunkelnebel", + "Head Charge": "Steinschädel", + "Head Smash": "Kopfstoß", + "Headbutt": "Kopfnuss", + "Heal Bell": "Vitalglocke", + "Heal Block": "Heilblockade", + "Heal Order": "Heilbefehl", + "Heal Pulse": "Heilwoge", + "Healing Wish": "Heilopfer", + "Heart Stamp": "Herzstempel", + "Heart Swap": "Statustausch", + "Heat Crash": "Brandstempel", + "Heat Wave": "Hitzewelle", + "Heavy Slam": "Rammboss", + "Helping Hand": "Rechte Hand", + "Hex": "Bürde", + "Hidden Power": "Kraftreserve", + "High Horsepower": "Pferdestärke", + "High Jump Kick": "Turmkick", + "Hold Back": "Zurückhaltung", + "Hold Hands": "Händchenhalten", + "Hone Claws": "Klauenwetzer", + "Horn Attack": "Hornattacke", + "Horn Drill": "Hornbohrer", + "Horn Leech": "Holzgeweih", + "Howl": "Jauler", + "Hurricane": "Orkan", + "Hydro Cannon": "Aquahaubitze", + "Hydro Pump": "Hydropumpe", + "Hyper Beam": "Hyperstrahl", + "Hyper Fang": "Hyperzahn", + "Hyper Voice": "Schallwelle", + "Hyperspace Fury": "Dimensionswahn", + "Hyperspace Hole": "Dimensionsloch", + "Hypnosis": "Hypnose", + "Ice Ball": "Frostbeule", + "Ice Beam": "Eisstrahl", + "Ice Burn": "Frosthauch", + "Ice Fang": "Eiszahn", + "Ice Hammer": "Eishammer", + "Ice Punch": "Eishieb", + "Ice Shard": "Eissplitter", + "Icicle Crash": "Eiszapfhagel", + "Icicle Spear": "Eisspeer", + "Icy Wind": "Eissturm", + "Imprison": "Begrenzer", + "Incinerate": "Einäschern", + "Infestation": "Plage", + "Ingrain": "Verwurzler", + "Instruct": "Kommando", + "Ion Deluge": "Plasmaschauer", + "Iron Defense": "Eisenabwehr", + "Iron Head": "Eisenschädel", + "Iron Tail": "Eisenschweif", + "Judgment": "Urteilskraft", + "Jump Kick": "Sprungkick", + "Karate Chop": "Karateschlag", + "Kinesis": "Psykraft", + "King's Shield": "Königsschild", + "Knock Off": "Abschlag", + "Land's Wrath": "Bodengewalt", + "Laser Focus": "Konzentration", + "Last Resort": "Zuflucht", + "Lava Plume": "Flammensturm", + "Leaf Blade": "Laubklinge", + "Leaf Storm": "Blättersturm", + "Leaf Tornado": "Grasmixer", + "Leafage": "Blattwerk", + "Leech Life": "Blutsauger", + "Leech Seed": "Egelsamen", + "Leer": "Silberblick", + "Lick": "Schlecker", + "Light Screen": "Lichtschild", + "Light of Ruin": "Lux Calamitatis", + "Liquidation": "Aquadurchstoß", + "Lock-on": "Zielschuss", + "Lovely Kiss": "Todeskuss", + "Low Kick": "Fußkick", + "Low Sweep": "Fußtritt", + "Lucky Chant": "Beschwörung", + "Lunar Dance": "Lunartanz", + "Lunge": "Anfallen", + "Luster Purge": "Scheinwerfer", + "Mach Punch": "Tempohieb", + "Magic Coat": "Magiemantel", + "Magic Room": "Magieraum", + "Magical Leaf": "Zauberblatt", + "Magma Storm": "Lavasturm", + "Magnet Bomb": "Magnetbombe", + "Magnet Rise": "Magnetflug", + "Magnetic Flux": "Magnetregler", + "Magnitude": "Intensität", + "Mat Block": "Tatami-Schild", + "Me First": "Egotrip", + "Mean Look": "Horrorblick", + "Mega Drain": "Megasauger", + "Mega Kick": "Megakick", + "Mega Punch": "Megahieb", + "Megahorn": "Vielender", + "Memento": "Memento-Mori", + "Metal Burst": "Metallstoß", + "Metal Claw": "Metallklaue", + "Metal Sound": "Metallsound", + "Meteor Mash": "Sternenhieb", + "Metronome": "Metronom", + "Milk Drink": "Milchgetränk", + "Mind Reader": "Willensleser", + "Minimize": "Komprimator", + "Miracle Eye": "Wunderauge", + "Mirror Coat": "Spiegelcape", + "Mirror Move": "Spiegeltrick", + "Mirror Shot": "Spiegelsalve", + "Mist Ball": "Nebelball", + "Mist": "Weißnebel", + "Misty Terrain": "Nebelfeld", + "Moonblast": "Mondgewalt", + "Moongeist Beam": "Schattenstrahl", + "Moonlight": "Mondschein", + "Morning Sun": "Morgengrauen", + "Mud Bomb": "Schlammbombe", + "Mud Shot": "Lehmschuss", + "Mud Slap": "Lehmschelle", + "Mud Sport": "Lehmsuhler", + "Mud-Slap": "Lehmschelle", + "Muddy Water": "Lehmbrühe", + "Multi-Attack": "Multi-Angriff", + "Mystical Fire": "Magieflamme", + "Nasty Plot": "Ränkeschmied", + "Natural Gift": "Beerenkräfte", + "Nature Power": "Natur-Kraft", + "Nature's Madness": "Naturzorn", + "Needle Arm": "Nietenranke", + "Night Daze": "Nachtflut", + "Night Shade": "Nachtnebel", + "Night Slash": "Nachthieb", + "Nightmare": "Nachtmahr", + "Noble Roar": "Kampfgebrüll", + "Nuzzle": "Wangenrubbler", + "Oblivion Wing": "Unheilsschwingen", + "Odor Sleuth": "Schnüffler", + "Ominous Wind": "Unheilböen", + "Origin Pulse": "Ursprungswoge", + "Outrage": "Wutanfall", + "Overheat": "Hitzekoller", + "Pain Split": "Leidteiler", + "Parabolic Charge": "Parabolladung", + "Parting Shot": "Abgangstirade", + "Pay Day": "Zahltag", + "Payback": "Gegenstoß", + "Peck": "Schnabel", + "Perish Song": "Abgesang", + "Petal Blizzard": "Blütenwirbel", + "Petal Dance": "Blättertanz", + "Phantom Force": "Phantomkraft", + "Pin Missile": "Nadelrakete", + "Play Nice": "Kameradschaft", + "Play Rough": "Knuddler", + "Pluck": "Pflücker", + "Poison Fang": "Giftzahn", + "Poison Gas": "Giftwolke", + "Poison Jab": "Gifthieb", + "Poison Powder": "Giftpuder", + "Poison Sting": "Giftstachel", + "Poison Tail": "Giftschweif", + "Pollen Puff": "Pollenknödel", + "Pound": "Pfund", + "Powder Snow": "Pulverschnee", + "Powder": "Pulverschleuder", + "Power Gem": "Juwelenkraft", + "Power Split": "Kraftteiler", + "Power Swap": "Krafttausch", + "Power Trick": "Krafttrick", + "Power Trip": "Überheblichkeit", + "Power Whip": "Blattgeißel", + "Power-Up Punch": "Steigerungshieb", + "Precipice Blades": "Abgrundsklinge", + "Present": "Geschenk", + "Prismatic Laser": "Prisma-Laser", + "Protect": "Schutzschild", + "Psybeam": "Psystrahl", + "Psych Up": "Psycho-Plus", + "Psychic (Move)": "Psychokinese", + "Psychic Fangs": "Psychobeißer", + "Psychic Terrain": "Psychofeld", + "Psycho Boost": "Psyschub", + "Psycho Cut": "Psychoklinge", + "Psycho Shift": "Psybann", + "Psyshock": "Psychoschock", + "Psystrike": "Psychostoß", + "Psywave": "Psywelle", + "Punishment": "Strafattacke", + "Purify": "Läuterung", + "Pursuit": "Verfolgung", + "Quash": "Verzögerung", + "Quick Attack": "Ruckzuckhieb", + "Quick Guard": "Rapidschutz", + "Quiver Dance": "Falterreigen", + "Rage Powder": "Wutpulver", + "Rage": "Raserei", + "Rain Dance": "Regentanz", + "Rapid Spin": "Turbodreher", + "Razor Leaf": "Rasierblatt", + "Razor Shell": "Kalkklinge", + "Razor Wind": "Klingensturm", + "Recover": "Genesung", + "Recycle": "Aufbereitung", + "Reflect Type": "Typenspiegel", + "Reflect": "Reflektor", + "Refresh": "Heilung", + "Relic Song": "Urgesang", + "Rest": "Erholung", + "Retaliate": "Heimzahlung", + "Return": "Rückkehr", + "Revelation Dance": "Wecktanz", + "Revenge": "Vergeltung", + "Reversal": "Gegenschlag", + "Roar of Time": "Zeitenlärm", + "Roar": "Brüller", + "Rock Blast": "Felswurf", + "Rock Climb": "Kraxler", + "Rock Polish": "Steinpolitur", + "Rock Slide": "Steinhagel", + "Rock Smash": "Zertrümmerer", + "Rock Throw": "Steinwurf", + "Rock Tomb": "Felsgrab", + "Rock Wrecker": "Felswerfer", + "Role Play": "Rollentausch", + "Rolling Kick": "Fegekick", + "Rollout": "Walzer", + "Roost": "Ruheort", + "Rototiller": "Pflüger", + "Round": "Kanon", + "Sacred Fire": "Läuterfeuer", + "Sacred Sword": "Sanctoklinge", + "Safeguard": "Bodyguard", + "Sand Attack": "Sandwirbel", + "Sand Tomb": "Sandgrab", + "Sandstorm": "Sandsturm", + "Scald": "Siedewasser", + "Scary Face": "Grimasse", + "Scratch": "Kratzer", + "Screech": "Kreideschrei", + "Searing Shot": "Flammenball", + "Secret Power": "Geheimpower", + "Secret Sword": "Mystoschwert", + "Seed Bomb": "Samenbomben", + "Seed Flare": "Schocksamen", + "Seismic Toss": "Geowurf", + "Shadow Ball": "Spukball", + "Shadow Bone": "Schattenknochen", + "Shadow Claw": "Dunkelklaue", + "Shadow Force": "Schemenkraft", + "Shadow Punch": "Finsterfaust", + "Shadow Sneak": "Schattenstoß", + "Sharpen": "Schärfer", + "Sheer Cold": "Eiseskälte", + "Shell Smash": "Hausbruch", + "Shell Trap": "Panzerfalle", + "Shift Gear": "Gangwechsel", + "Shock Wave": "Schockwelle", + "Signal Beam": "Ampelleuchte", + "Silver Wind": "Silberhauch", + "Simple Beam": "Wankelstrahl", + "Sing": "Gesang", + "Sketch": "Nachahmer", + "Skill Swap": "Wertewechsel", + "Skull Bash": "Schädelwumme", + "Sky Attack": "Himmelsfeger", + "Sky Drop": "Freier Fall", + "Sky Uppercut": "Himmelhieb", + "Slack Off": "Tagedieb", + "Slam": "Slam", + "Slash": "Schlitzer", + "Sleep Powder": "Schlafpuder", + "Sleep Talk": "Schlafrede", + "Sludge Bomb": "Matschbombe", + "Sludge Wave": "Schlammwoge", + "Sludge": "Schlammbad", + "Smack Down": "Katapult", + "Smart Strike": "Schmalhorn", + "Smelling Salts": "Riechsalz", + "Smog": "Smog", + "Smokescreen": "Rauchwolke", + "Snarl": "Standpauke", + "Snatch": "Übernahme", + "Snore": "Schnarcher", + "Soak": "Überflutung", + "Soft-Boiled": "Weichei", + "Solar Beam": "Solarstrahl", + "Solar Blade": "Solarklinge", + "Sonic Boom": "Ultraschall", + "Spacial Rend": "Raumschlag", + "Spark": "Funkensprung", + "Sparkling Aria": "Schaumserenade", + "Spectral Thief": "Diebesschatten", + "Speed Swap": "Initiativetausch", + "Spider Web": "Spinnennetz", + "Spike Cannon": "Dornkanone", + "Spikes": "Stachler", + "Spiky Shield": "Schutzstacheln", + "Spirit Shackle": "Schattenfessel", + "Spit Up": "Entfessler", + "Spite": "Groll", + "Splash": "Platscher", + "Spore": "Pilzspore", + "Spotlight": "Rampenlicht", + "Stealth Rock": "Tarnsteine", + "Steam Eruption": "Dampfschwall", + "Steamroller": "Quetschwalze", + "Steel Wing": "Stahlflügel", + "Sticky Web": "Klebenetz", + "Stockpile": "Horter", + "Stomp": "Stampfer", + "Stomping Tantrum": "Fruststampfer", + "Stone Edge": "Steinkante", + "Stored Power": "Kraftvorrat", + "Storm Throw": "Bergsturm", + "Strength Sap": "Kraftabsorber", + "Strength": "Stärke", + "String Shot": "Fadenschuss", + "Struggle Bug": "Käfertrutz", + "Struggle": "Verzweifler", + "Stun Spore": "Stachelspore", + "Submission": "Überroller", + "Substitute": "Delegator", + "Sucker Punch": "Tiefschlag", + "Sunny Day": "Sonnentag", + "Sunsteel Strike": "Stahlgestirn", + "Super Fang": "Superzahn", + "Superpower": "Kraftkoloss", + "Supersonic": "Superschall", + "Surf": "Surfer", + "Swagger": "Angeberei", + "Swallow": "Verzehrer", + "Sweet Kiss": "Bitterkuss", + "Sweet Scent": "Lockduft", + "Swift": "Sternschauer", + "Switcheroo": "Wechseldich", + "Swords Dance": "Schwerttanz", + "Synchronoise": "Synchrolärm", + "Synthesis": "Synthese", + "Tackle": "Tackle", + "Tail Glow": "Schweifglanz", + "Tail Slap": "Kehrschelle", + "Tail Whip": "Rutenschlag", + "Tailwind": "Rückenwind", + "Take Down": "Bodycheck", + "Taunt": "Verhöhner", + "Tearful Look": "Tränendrüse", + "Techno Blast": "Techblaster", + "Teeter Dance": "Taumeltanz", + "Telekinesis": "Telekinese", + "Teleport": "Teleport", + "Thief": "Raub", + "Thousand Arrows": "Tausend Pfeile", + "Thousand Waves": "Tausend Wellen", + "Thrash": "Fuchtler", + "Throat Chop": "Neck Strike", + "Thunder Fang": "Donnerzahn", + "Thunder Punch": "Donnerschlag", + "Thunder Shock": "Donnerschock", + "Thunder Wave": "Donnerwelle", + "Thunder": "Donner", + "Thunderbolt": "Donnerblitz", + "Tickle": "Spaßkanone", + "Torment": "Folterknecht", + "Toxic Spikes": "Giftspitzen", + "Toxic Thread": "Giftfaden", + "Toxic": "Toxin", + "Transform": "Wandler", + "Trick": "Trickbetrug", + "Trick-or-Treat": "Halloween", + "Triple Kick": "Dreifachkick", + "Trump Card": "Trumpfkarte", + "Twineedle": "Duonadel", + "Twister": "Windhose", + "U-turn": "Kehrtwende", + "Uproar": "Aufruhr", + "V-create": "V-Generator", + "Vacuum Wave": "Vakuumwelle", + "Venom Drench": "Giftfalle", + "Venoshock": "Giftschock", + "Vice Grip": "Klammer", + "Vine Whip": "Rankenhieb", + "Vital Throw": "Überwurf", + "Volt Switch": "Voltwechsel", + "Volt Tackle": "Volttackle", + "Wake-Up Slap": "Weckruf", + "Water Gun": "Aquaknarre", + "Water Pledge": "Wassersäulen", + "Water Pulse": "Aquawelle", + "Water Shuriken": "Wasser-Shuriken", + "Water Sport": "Nassmacher", + "Water Spout": "Fontränen", + "Waterfall": "Kaskade", + "Weather Ball": "Meteorologe", + "Whirlpool": "Whirlpool", + "Whirlwind": "Wirbelwind", + "Wide Guard": "Rundumschutz", + "Wild Charge": "Stromstoß", + "Wing Attack": "Flügelschlag", + "Wish": "Wunschtraum", + "Withdraw": "Panzerschutz", + "Wonder Room": "Wunderraum", + "Wood Hammer": "Holzhammer", + "Work Up": "Kraftschub", + "Worry Seed": "Sorgensamen", + "Wrap (Green)": "Wickel (Grün)", + "Wrap (Pink)": "Wickel (Lila)", + "Wrap": "Wickel", + "Wring Out": "Auswringen", + "X-Scissor": "Kreuzschere", + "Yawn": "Gähner", + "Zap Cannon": "Blitzkanone", + "Zen Headbutt": "Zen-Kopfstoß", + "Zing Zap": "Elektropikser", + "Third Move Cost": "Drittattacke kosten", + "Buddy Distance" : "Kumpel Distanze", + "Attack / Defense / Stamina": "Angriff / Verteidigung / Ausdauer", + "Quick Moves": "Schnellangriff", + "Charge Moves": "Ladeangriff", + "Moves": "Attacken", + "Stardust": "Sternenstaub", + "Candy": "Bonbon", + "Next": "Weiter", + "Close": "Schließen", + "Previous": "Zurück", + "Despawn": "Verschwindet um", + "Hatch": "Schlüpft um", + "Dashboard Pages": "Dashboards", + "Stats Pages": "Stats", + "Menu Color": "Menü Farbe", + "Nests Dashboard": "Nester Dashboard", + "Logout": "Abmelden" } diff --git a/static/locales/pl.json b/static/locales/pl.json index 41c9628..1cee52c 100644 --- a/static/locales/pl.json +++ b/static/locales/pl.json @@ -1,10 +1,10 @@ { "Welcome": "Witaj", "Overview": "Przegląd", - "Pokémon": "Pokemon", + "Pokémon": "Pokémon", "Gyms": "Gymy", "Raids": "Raidy", - "Pokéstops": "Pokestopy", + "Pokéstops": "Pokéstopy", "Teams": "Teamy", "Neutral Gyms": "Neutralne", "Mystic Gyms": "Mystic", @@ -27,7 +27,7 @@ "Search:": "Szukaj:", "Type": "Typ", "Count": "Liczba", - "Current Pokémon": "Pokemony na mapie", + "Current Pokémon": "Pokémony na mapie", "egg": "jajo", "Reward": "Nagroda", "Grunt": "Inwazja", @@ -47,8 +47,45 @@ "Live Shiny Rates": "Aktualne szanse na Shiny (Shiny Rate)", "Data from the last 24 hours.": "Dane z ostatnich 24 godzin", "Follow Us": "Śledź nas na:", - "This website or the authors have no relationship with Niantic, Nintendo or any other Pokémon Go responsible.": "Ta strona jak i jej autorzy nie mają żadnych powiązań z Niantic, Nintendo czy inną marką związaną z Pokemon GO.", + "This website or the authors have no relationship with Niantic, Nintendo or any other Pokémon Go responsible.": "Ta strona jak i jej autorzy nie mają żadnych powiązań z Niantic, Nintendo czy inną marką związaną z Pokémon GO.", "Pokémon Go is ©2016 Niantic, Inc. ©2016 Pokémon. ©1995–2016 Nintendo / Creatures Inc. / GAME FREAK Inc.": "Pokémon Go należy do ©2016 Niantic, Inc. ©2016 Pokémon. ©1995–2016 Nintendo / Creatures Inc. / GAME FREAK Inc.", - "Pokémon and Pokémon character names are trademarks of Nintendo. Other trademarks are the property of their respective owners.": "Pokemony i ich nazwy to znaki handlowe należące do Nintendo. Inne znaki handlowe należą do ich prawowitych właścicieli.", - "ID": "Numer" + "Pokémon and Pokémon character names are trademarks of Nintendo. Other trademarks are the property of their respective owners.": "Pokémony i ich nazwy to znaki handlowe należące do Nintendo. Inne znaki handlowe należą do ich prawowitych właścicieli.", + "ID": "Numer", + "Nests": "Nesty", + "Nest Name": "Nazwa Nesta", + "Avarage/h": "Ilość Poków na godzinę", + "Until the next Pokémon GO nest migration.": "Do następnej migracji Nestów", + "Previous": "Poprzednia", + "Next": "Następna", + "Showing _START_ to _END_ of _TOTAL_ entries": "Pozycje _START_-_END_ spośród _TOTAL_ pozycji", + "Show _MENU_ entries": "Wyświetl _MENU_ pozycji", + "Days": "Dni", + "Hours": "Godzin", + "Minutes": "Minut", + "Seconds": "Sekund", + "Select Area": "Wybierz obszar", + "Third Move Cost": "Koszt drugiego ataku", + "Buddy Distance": "Dystans buddy", + "Attack / Defense / Stamina": "Atak / Obrona / HP", + "Prev": "Poprzednia", + "Close": "Zamknij", + "Stats Pages": "Statystyki", + "Settings": "Ustawienia", + "User": "Użytkownik", + "Dashboard Pages": "Strony Informacyjne", + "Raid Dashboard": "Raidy", + "Nests Dashboard": "Nesty", + "Menu Color": "Kolor menu", + "Show 10 rows": "Pokaż 10 pozycji", + "Show 25 rows": "Pokaż 25 pozycji", + "Show 50 rows": "Pokaż 50 pozycji", + "Show 100 rows": "Pokaż 100 pozycji", + "Show all rows": "Pokaż wszystkie pozycje", + "Search...": "Szukaj...", + "Hatch": "Klucie", + "Despawn": "Koniec", + "Moves": "Ataki", + "n/a": "-", + "Min Level": "Min. lvl", + "Max Level": "Max. lvl" } diff --git a/static/sass/layout/_footer.scss b/static/sass/layout/_footer.scss index d4faca1..61aada9 100644 --- a/static/sass/layout/_footer.scss +++ b/static/sass/layout/_footer.scss @@ -11,7 +11,6 @@ footer a { transition-duration: 0.2s; } - .copy { font-size: 12px; padding: 10px; @@ -104,3 +103,14 @@ ul.social-network li { .social-network a { background-color: #F9F9F9; } + +.flex-wrapper { + display: flex; + min-height: 100vh; + flex-direction: column; + justify-content: space-between +} + +main { + flex-grow: 1; +} diff --git a/static/sass/layout/_main.scss b/static/sass/layout/_main.scss index c6cfe9a..81e270b 100644 --- a/static/sass/layout/_main.scss +++ b/static/sass/layout/_main.scss @@ -3,14 +3,14 @@ html, body { overflow-x: hidden; } -a.valor i,.valor h4.list-group-item-heading { +div.valor i,.valor h4.list-group-item-heading { color: #f71208; } -a.mystic i,.mystic h4.list-group-item-heading { +div.mystic i,.mystic h4.list-group-item-heading { color:#0076f3; } -a.instinct i,.instinct h4.list-group-item-heading { +div.instinct i,.instinct h4.list-group-item-heading { color:#ffd200; } diff --git a/static/sass/layout/_nav.scss b/static/sass/layout/_nav.scss index f3a5a0a..29ea2c8 100644 --- a/static/sass/layout/_nav.scss +++ b/static/sass/layout/_nav.scss @@ -1,3 +1,11 @@ +.nav-icon { + color:#999c9f; + cursor: pointer; +} +.nav-icon:hover { + color: white !important; +} + a.dropdown-item:hover { background-color: #dadada78; background-image: none; @@ -9,15 +17,10 @@ a.dropdown-item:hover { } .language-dropdown { - top: 46px; + top: 47px; left: -115px; } -.navbar-dropdown { - top: 46px; - left: -20px; -} - a.navbar-brand { left: 70px; position: absolute; @@ -25,4 +28,107 @@ a.navbar-brand { .navbar { margin-bottom: 20px; + height: 60px; + padding: .5rem 1rem; +} + +.offcanvas-header { + display: block; +} + +.screen-overlay { + height: 100%; + z-index: 30; + position: absolute; + top: 0; + left: 0; + opacity: 0; + visibility: hidden; + background-color: rgba(0,0,0, 0.9); + transition: opacity .2s linear, visibility .1s, width 1s ease-in; +} +.screen-overlay.show { + transition: opacity .5s ease, width 0s; + opacity: 0.4; + width: 100%; + top:60px; + visibility: visible; +} + +.offcanvas { + visibility: hidden; + transform: translateX(-100%); + border-radius: 5px; + display: block; + position: absolute; + top: 60px; + left: 0; + height: 92%; + z-index: 1200; + width: 18em; + overflow-y: scroll; + overflow-x: hidden; + transition: visibility .2s ease-in-out, transform .2s ease-in-out; +} + +.offcanvas.show { + visibility: visible; + transform: translateX(0); +} + +.heading-title { + top: 6px; + position: relative; +} + +.card-header-navbar[aria-expanded="false"]:after { + content: "\f067"; /* fa-plus */ + font-family: 'Font Awesome\ 5 Free'; + font-weight: 900; + position: absolute; + right: 30px; + top: 21px; + font-size: 10px; +} +.card-header-navbar[aria-expanded="true"]:after { + content: "\f068"; /* fa-minus */ + font-family: 'Font Awesome\ 5 Free'; + font-weight: 900; + position: absolute; + right: 30px; + top: 21px; + font-size: 10px; +} + +.btn:focus { + box-shadow: none; +} +.dropdown-item:active { + background-color: #fff; +} + +.border { + border: 1px solid #dfdfdf; +} + +.card.z-depth-0.bordered { + width: 114%; + margin-left: -18px; +} + +.color-button { + height: 21px; + width: 21px; + margin-right: 5px; + border: 1px solid #ced4da; + border-radius: 10px; + position: relative; + top: 2px; + -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; + -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; + outline: none !important; +} + +.form-control { + margin-bottom: 15px; } diff --git a/static/sass/layout/_pokedex.scss b/static/sass/layout/_pokedex.scss new file mode 100644 index 0000000..0406d2c --- /dev/null +++ b/static/sass/layout/_pokedex.scss @@ -0,0 +1,31 @@ +.pokedex-col { + min-width: 110px !important; + border: 1px solid #9a9a9a; + margin: 1px; + background-color: #ffe0e01a; +} + +div.pokedex-col:hover { + background-color: #48464e29; +} + +.pokedex-row { + border: 1px solid #9a9a9a; +} + +.has-search .form-control { + padding-left: 2.375rem; +} + +.has-search .form-control-feedback { + position: absolute; + z-index: 2; + display: block; + width: 2.375rem; + height: 2.375rem; + line-height: 2.375rem; + text-align: center; + pointer-events: none; + color: #aaa; +} + diff --git a/static/sass/layout/_table.scss b/static/sass/layout/_table.scss index 35c1aa1..1192d86 100644 --- a/static/sass/layout/_table.scss +++ b/static/sass/layout/_table.scss @@ -17,3 +17,8 @@ td, th { .tableIcon { height: 60px; } + +select.custom-select.custom-select-sm.form-control.form-control-sm { + position: relative; + top: 6px; +} diff --git a/static/sass/main.scss b/static/sass/main.scss index 9a5c316..a365d31 100644 --- a/static/sass/main.scss +++ b/static/sass/main.scss @@ -2,4 +2,5 @@ @import 'layout/nav'; @import 'layout/table'; @import 'layout/timer'; +@import 'layout/pokedex'; @import 'layout/footer';