Skip to content

Instantly share code, notes, and snippets.

@Rplus
Last active December 31, 2017 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rplus/6052a6de6ea975b2a7147deee5fe4198 to your computer and use it in GitHub Desktop.
Save Rplus/6052a6de6ea975b2a7147deee5fe4198 to your computer and use it in GitHub Desktop.
Pokémons' CP Calculator [Vue] -- https://codepen.io/Rplus/full/POMKVv/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>max CP by level Pokémons</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<h1 class="intro">Pokémons' CP calculator<small>vue version</small></h1>
<div class="box">
<div class="pokeMaxCP" id="pokeMaxCP">
<input class="ctrlFilter__checkbox sr-only ck-normal" type="checkbox" id="ck-normal" v-model="filter.type" value="normal"/>
<input class="ctrlFilter__checkbox sr-only ck-fighting" type="checkbox" id="ck-fighting" v-model="filter.type" value="fighting"/>
<input class="ctrlFilter__checkbox sr-only ck-flying" type="checkbox" id="ck-flying" v-model="filter.type" value="flying"/>
<input class="ctrlFilter__checkbox sr-only ck-poison" type="checkbox" id="ck-poison" v-model="filter.type" value="poison"/>
<input class="ctrlFilter__checkbox sr-only ck-ground" type="checkbox" id="ck-ground" v-model="filter.type" value="ground"/>
<input class="ctrlFilter__checkbox sr-only ck-rock" type="checkbox" id="ck-rock" v-model="filter.type" value="rock"/>
<input class="ctrlFilter__checkbox sr-only ck-bug" type="checkbox" id="ck-bug" v-model="filter.type" value="bug"/>
<input class="ctrlFilter__checkbox sr-only ck-ghost" type="checkbox" id="ck-ghost" v-model="filter.type" value="ghost"/>
<input class="ctrlFilter__checkbox sr-only ck-steel" type="checkbox" id="ck-steel" v-model="filter.type" value="steel"/>
<input class="ctrlFilter__checkbox sr-only ck-fire" type="checkbox" id="ck-fire" v-model="filter.type" value="fire"/>
<input class="ctrlFilter__checkbox sr-only ck-water" type="checkbox" id="ck-water" v-model="filter.type" value="water"/>
<input class="ctrlFilter__checkbox sr-only ck-grass" type="checkbox" id="ck-grass" v-model="filter.type" value="grass"/>
<input class="ctrlFilter__checkbox sr-only ck-electric" type="checkbox" id="ck-electric" v-model="filter.type" value="electric"/>
<input class="ctrlFilter__checkbox sr-only ck-psychic" type="checkbox" id="ck-psychic" v-model="filter.type" value="psychic"/>
<input class="ctrlFilter__checkbox sr-only ck-ice" type="checkbox" id="ck-ice" v-model="filter.type" value="ice"/>
<input class="ctrlFilter__checkbox sr-only ck-dragon" type="checkbox" id="ck-dragon" v-model="filter.type" value="dragon"/>
<input class="ctrlFilter__checkbox sr-only ck-dark" type="checkbox" id="ck-dark" v-model="filter.type" value="dark"/>
<input class="ctrlFilter__checkbox sr-only ck-fairy" type="checkbox" id="ck-fairy" v-model="filter.type" value="fairy"/>
<div class="pokeMaxCP__ctrl">
<table>
<col width="35%"/>
<col width="15%"/>
<col/>
<tr>
<th>
<label for="masterLv" :data-level="trainerLevel">Your Level:</label>
</th>
<td>
<input type="number" min="1" max="40" v-model.number="trainerLevel"/>
</td>
<td>
<input id="masterLv" type="range" min="1" max="40" v-model.number="trainerLevel"/>
</td>
</tr>
<tr>
<th>
<label>
<input type="checkbox" v-model.booleam="isPmWild"/>wild?
</label>
<label for="pmLv" :data-level="pmLv">PM Level:</label>
</th>
<td>
<input type="number" min="1" :max="pmMaxLv" step="0.5" v-model.number="pmLv"/>
</td>
<td>
<input id="pmLv" type="range" min="1" :max="pmMaxLv" step="0.5" :style="{ maxWidth: pmWidthRatio }" v-model.number="pmLv"/>
</td>
</tr>
<tr>
<td>
<label for="iv-a">attack:</label>
</td>
<td>
<input type="number" min="0" max="15" v-model.number="iv.attack"/>
</td>
<td>
<input id="iv-a" type="range" min="0" max="15" v-model.number="iv.attack"/>
</td>
</tr>
<tr>
<td>
<label for="iv-d">defense:</label>
</td>
<td>
<input type="number" min="0" max="15" v-model.number="iv.defense"/>
</td>
<td>
<input id="iv-d" type="range" min="0" max="15" v-model.number="iv.defense"/>
</td>
</tr>
<tr>
<td>
<label for="iv-s">stamina:</label>
</td>
<td>
<input type="number" min="0" max="15" v-model.number="iv.stamina"/>
</td>
<td>
<input id="iv-s" type="range" min="0" max="15" v-model.number="iv.stamina"/>
</td>
</tr>
<tr>
<td>IV</td>
<td colspan="2">: {{ getIv }}%</td>
</tr>
</table>
<div class="ctrlSort">
<button :class="['ctrlSort__btn', { 'is-active': sort.by === 'id' }]" :data-sort-dir="sort.dir === 1 ? '▲' : '▼'" @click="sortBy('id')">ID</button>
<button :class="['ctrlSort__btn', { 'is-active': sort.by === 'maxcp' }]" :data-sort-dir="sort.dir === 1 ? '▲' : '▼'" @click="sortBy('maxcp')">CP</button>
</div>
<div class="ctrlFilter--wrap">
<div class="ctrlFilter__header">
<button @click="selectAll(false)">none</button>filter by types
<button @click="selectAll(true)">all</button>
</div>
<div class="ctrlFilter">
<label class="ctrlFilter__label" for="ck-normal">normal</label>
<label class="ctrlFilter__label" for="ck-fighting">fighting</label>
<label class="ctrlFilter__label" for="ck-flying">flying</label>
<label class="ctrlFilter__label" for="ck-poison">poison</label>
<label class="ctrlFilter__label" for="ck-ground">ground</label>
<label class="ctrlFilter__label" for="ck-rock">rock</label>
<label class="ctrlFilter__label" for="ck-bug">bug</label>
<label class="ctrlFilter__label" for="ck-ghost">ghost</label>
<label class="ctrlFilter__label" for="ck-steel">steel</label>
<label class="ctrlFilter__label" for="ck-fire">fire</label>
<label class="ctrlFilter__label" for="ck-water">water</label>
<label class="ctrlFilter__label" for="ck-grass">grass</label>
<label class="ctrlFilter__label" for="ck-electric">electric</label>
<label class="ctrlFilter__label" for="ck-psychic">psychic</label>
<label class="ctrlFilter__label" for="ck-ice">ice</label>
<label class="ctrlFilter__label" for="ck-dragon">dragon</label>
<label class="ctrlFilter__label" for="ck-dark">dark</label>
<label class="ctrlFilter__label" for="ck-fairy">fairy</label>
</div>
<div class="pokedexRange">
<h3 class="pokedexRange__header">filter by pokedex</h3>
<label for="pokedexRange1" :style="`--value: ${range1}`">
<input id="pokedexRange1" type="range" min="1" :max="pokemons.length" v-model.number="range1"/>
</label>
<label for="pokedexRange2" :style="`--value: ${range2}`">
<input id="pokedexRange2" type="range" min="1" :max="pokemons.length" v-model.number="range2"/>
</label>
</div>
</div>
</div>
<ul class="pokeList">
<li class="poke" v-for="pokemon in pokemons" :title="`#${pokemon.id} ${pokemon.name}
typs: ${pokemon.types}
HP: ${pokemon.hp}
A:${pokemon.stats.baseAttack}
D:${pokemon.stats.baseDefense}
S:${pokemon.stats.baseStamina}`" :data-type="pokemon.types" :data-id="pokemon.id" :data-family-id="pokemon.familyId" @mousedown="selectFamily(pokemon.familyId)" @touchstart="selectFamily(pokemon.familyId)" @mouseup="selectFamily(null)" @touchend="selectFamily(null)" :class="{ 'is-family-id-marked': filter.familyId === pokemon.familyId, 'is-hidden': pokemon.isHidden }">
<div class="poke__img" :style="'--poke-col:' + pokemon.gridCol + '; --poke-row:' + pokemon.gridRow"></div>
<div class="poke__name">{{ pokemon.name }}</div>
<div class="poke__maxcp">{{ getMaxCpWithLv(pokemon, pmLv) }}</div>
</li>
<li class="poke">
<div class="poke__img"></div>
</li>
<li class="poke"></li>
<li class="poke"></li>
<li class="poke"></li>
<li class="poke"></li>
<li class="poke"></li>
</ul>
</div>
</div>
<blockquote class="info">Pokemons original data source: <a href="https://github.com/BrunnerLivio/pokemongo-json-pokedex/blob/master/output/pokemon.json">pokemongo-json-pokedex</a></blockquote>
<style class="pokeInitCP"></style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.1/vue.js"></script>
<script src="script.js"></script>
</body>
</html>
[ { "number": "1", "image": " <a href=\"/pokemon/1\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-08/1_0.png?itok=soCtT4Im\" width=\"35\" height=\"32\" alt=\"Bulbasaur\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/1\" hreflang=\"en\">Bulbasaur</a>", "sta": "90", "atk": "118", "def": "118", "cp": "981", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "妙蛙種子", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "560.92", "hatch": "", "candy": "25" }, { "number": "2", "image": " <a href=\"/pokemon/2\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-08/2.png?itok=thfoifyW\" width=\"35\" height=\"32\" alt=\"Ivysaur\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/2\" hreflang=\"en\">Ivysaur</a>", "sta": "120", "atk": "151", "def": "151", "cp": "1552", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "妙蛙草", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "886.87", "hatch": "", "candy": "100" }, { "number": "3", "image": " <a href=\"/pokemon/3\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/3.png?itok=G_BBDSVx\" width=\"35\" height=\"32\" alt=\"Venusaur\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/3\" hreflang=\"en\">Venusaur</a>", "sta": "160", "atk": "198", "def": "198", "cp": "2568", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "妙蛙花", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1467.64", "hatch": "", "candy": "" }, { "number": "4", "image": " <a href=\"/pokemon/4\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/4.png?itok=nyR29XeI\" width=\"35\" height=\"32\" alt=\"Charmander\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/4\" hreflang=\"en\">Charmander</a>", "sta": "78", "atk": "116", "def": "96", "cp": "831", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "小火龍", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "475.01", "hatch": "", "candy": "25" }, { "number": "5", "image": " <a href=\"/pokemon/5\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/5.png?itok=fbFpi6IR\" width=\"35\" height=\"32\" alt=\"Charmeleon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/5\" hreflang=\"en\">Charmeleon</a>", "sta": "116", "atk": "158", "def": "129", "cp": "1484", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "火恐龍", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "848.00", "hatch": "", "candy": "100" }, { "number": "6", "image": " <a href=\"/pokemon/6\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/6.png?itok=UB5wlAi5\" width=\"35\" height=\"32\" alt=\"Charizard\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/6\" hreflang=\"en\">Charizard</a>", "sta": "156", "atk": "223", "def": "176", "cp": "2686", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire, Flying", "title_1": "噴火龍", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1535.05", "hatch": "", "candy": "" }, { "number": "7", "image": " <a href=\"/pokemon/7\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/7.png?itok=TJNshgQy\" width=\"35\" height=\"32\" alt=\"Squirtle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/7\" hreflang=\"en\">Squirtle</a>", "sta": "88", "atk": "94", "def": "122", "cp": "808", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "傑尼龜", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "462.10", "hatch": "", "candy": "25" }, { "number": "8", "image": " <a href=\"/pokemon/8\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/8.png?itok=f4JPipmn\" width=\"35\" height=\"32\" alt=\"Wartortle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/8\" hreflang=\"en\">Wartortle</a>", "sta": "118", "atk": "126", "def": "155", "cp": "1324", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "卡咪龜", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "756.66", "hatch": "", "candy": "100" }, { "number": "9", "image": " <a href=\"/pokemon/9\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/9.png?itok=Wq8LRmWS\" width=\"35\" height=\"32\" alt=\"Blastoise\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/9\" hreflang=\"en\">Blastoise</a>", "sta": "158", "atk": "171", "def": "210", "cp": "2291", "rating": "3", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "水箭龜", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1309.66", "hatch": "", "candy": "" }, { "number": "10", "image": " <a href=\"/pokemon/10\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/10.png?itok=Y8QcTbrw\" width=\"35\" height=\"32\" alt=\"Caterpie\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/10\" hreflang=\"en\">Caterpie</a>", "sta": "90", "atk": "55", "def": "62", "cp": "393", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug", "title_1": "綠毛蟲", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "224.63", "hatch": "", "candy": "12" }, { "number": "11", "image": " <a href=\"/pokemon/11\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/11.png?itok=soz2vbsP\" width=\"35\" height=\"32\" alt=\"Metapod\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/11\" hreflang=\"en\">Metapod</a>", "sta": "100", "atk": "45", "def": "94", "cp": "419", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug", "title_1": "鐵甲蛹", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "239.74", "hatch": "", "candy": "50" }, { "number": "12", "image": " <a href=\"/pokemon/12\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/12.png?itok=WAdrzzfP\" width=\"35\" height=\"32\" alt=\"Butterfree\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/12\" hreflang=\"en\">Butterfree</a>", "sta": "120", "atk": "167", "def": "151", "cp": "1701", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Flying", "title_1": "巴大蝶", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "972.35", "hatch": "", "candy": "" }, { "number": "13", "image": " <a href=\"/pokemon/13\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/13.png?itok=ydGefVAV\" width=\"35\" height=\"32\" alt=\"Weedle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/13\" hreflang=\"en\">Weedle</a>", "sta": "80", "atk": "63", "def": "55", "cp": "397", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Poison", "title_1": "獨角蟲", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "227.01", "hatch": "", "candy": "12" }, { "number": "14", "image": " <a href=\"/pokemon/14\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/14.png?itok=qrJ6jlv8\" width=\"35\" height=\"32\" alt=\"Kakuna\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/14\" hreflang=\"en\">Kakuna</a>", "sta": "90", "atk": "46", "def": "86", "cp": "392", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Poison", "title_1": "鐵殼蛹", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "224.19", "hatch": "", "candy": "50" }, { "number": "15", "image": " <a href=\"/pokemon/15\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/15.png?itok=g7ZHsUcv\" width=\"35\" height=\"32\" alt=\"Beedrill\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/15\" hreflang=\"en\">Beedrill</a>", "sta": "130", "atk": "169", "def": "150", "cp": "1777", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Poison", "title_1": "大針蜂", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1015.72", "hatch": "", "candy": "" }, { "number": "16", "image": " <a href=\"/pokemon/16\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/16.png?itok=iDP6OjN9\" width=\"35\" height=\"32\" alt=\"Pidgey\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/16\" hreflang=\"en\">Pidgey</a>", "sta": "80", "atk": "85", "def": "76", "cp": "580", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "波波", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "331.83", "hatch": "", "candy": "12" }, { "number": "17", "image": " <a href=\"/pokemon/17\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/17.png?itok=lg6R8M8C\" width=\"35\" height=\"32\" alt=\"Pidgeotto\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/17\" hreflang=\"en\">Pidgeotto</a>", "sta": "126", "atk": "117", "def": "108", "cp": "1085", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "比比鳥", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "620.39", "hatch": "", "candy": "50" }, { "number": "18", "image": " <a href=\"/pokemon/18\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/18.png?itok=aTYyRAIz\" width=\"35\" height=\"32\" alt=\"Pidgeot\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/18\" hreflang=\"en\">Pidgeot</a>", "sta": "166", "atk": "166", "def": "157", "cp": "1994", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "大比鳥", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1139.76", "hatch": "", "candy": "" }, { "number": "19", "image": " <a href=\"/pokemon/19\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/19.png?itok=dhonDZwO\" width=\"35\" height=\"32\" alt=\"Rattata\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/19\" hreflang=\"en\">Rattata</a>", "sta": "60", "atk": "103", "def": "70", "cp": "588", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "小拉達", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "336.24", "hatch": "", "candy": "25" }, { "number": "20", "image": " <a href=\"/pokemon/20\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/20.png?itok=c8ES1WXW\" width=\"35\" height=\"32\" alt=\"Raticate\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/20\" hreflang=\"en\">Raticate</a>", "sta": "110", "atk": "161", "def": "144", "cp": "1549", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "拉達", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "885.52", "hatch": "", "candy": "" }, { "number": "21", "image": " <a href=\"/pokemon/21\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/21.png?itok=irO-l_1K\" width=\"35\" height=\"32\" alt=\"pearow\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/21\" hreflang=\"en\">Spearow</a>", "sta": "80", "atk": "112", "def": "61", "cp": "673", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "烈雀", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "385.13", "hatch": "", "candy": "50" }, { "number": "22", "image": " <a href=\"/pokemon/22\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/22.png?itok=7SUwsLVY\" width=\"35\" height=\"32\" alt=\"Fearow\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/22\" hreflang=\"en\">Fearow</a>", "sta": "130", "atk": "182", "def": "135", "cp": "1814", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "大嘴雀", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1036.87", "hatch": "", "candy": "" }, { "number": "23", "image": " <a href=\"/pokemon/23\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/23.png?itok=BEEn3ztk\" width=\"35\" height=\"32\" alt=\"Ekans\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/23\" hreflang=\"en\">Ekans</a>", "sta": "70", "atk": "110", "def": "102", "cp": "778", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "阿柏蛇", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "444.88", "hatch": "", "candy": "50" }, { "number": "24", "image": " <a href=\"/pokemon/24\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/24.png?itok=9qFktulo\" width=\"35\" height=\"32\" alt=\"Arbok\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/24\" hreflang=\"en\">Arbok</a>", "sta": "120", "atk": "167", "def": "158", "cp": "1737", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "阿柏怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "992.64", "hatch": "", "candy": "" }, { "number": "25", "image": " <a href=\"/pokemon/25\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/25.png?itok=HARuZQo3\" width=\"35\" height=\"32\" alt=\"Pikachu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/25\" hreflang=\"en\">Pikachu</a>", "sta": "70", "atk": "112", "def": "101", "cp": "787", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric", "title_1": "皮卡丘", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "450.06", "hatch": "", "candy": "50" }, { "number": "26", "image": " <a href=\"/pokemon/26\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/26.png?itok=acw8JO3w\" width=\"35\" height=\"32\" alt=\"Raichu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/26\" hreflang=\"en\">Raichu</a>", "sta": "120", "atk": "193", "def": "165", "cp": "2025", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric", "title_1": "雷丘", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1157.17", "hatch": "", "candy": "" }, { "number": "27", "image": " <a href=\"/pokemon/27\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/27.png?itok=aM7kPW3M\" width=\"35\" height=\"32\" alt=\"Sandshrew\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/27\" hreflang=\"en\">Sandshrew</a>", "sta": "100", "atk": "126", "def": "145", "cp": "1194", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground", "title_1": "穿山鼠", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "682.59", "hatch": "", "candy": "50" }, { "number": "28", "image": " <a href=\"/pokemon/28\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/28.png?itok=CSuBuFF_\" width=\"35\" height=\"32\" alt=\"Sandslash\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/28\" hreflang=\"en\">Sandslash</a>", "sta": "150", "atk": "182", "def": "202", "cp": "2328", "rating": "2", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground", "title_1": "穿山王", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1330.36", "hatch": "", "candy": "" }, { "number": "29", "image": " <a href=\"/pokemon/29\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/29.png?itok=3mOpeHZl\" width=\"35\" height=\"32\" alt=\"Nidoran Female\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/29\" hreflang=\"en\">Nidoran♀</a>", "sta": "110", "atk": "86", "def": "94", "cp": "736", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "尼多蘭", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "420.75", "hatch": "2 km", "candy": "25" }, { "number": "30", "image": " <a href=\"/pokemon/30\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/30.png?itok=Li2432r9\" width=\"35\" height=\"32\" alt=\"Nidorina\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/30\" hreflang=\"en\">Nidorina</a>", "sta": "140", "atk": "117", "def": "126", "cp": "1218", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "尼多娜", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "696.43", "hatch": "", "candy": "100" }, { "number": "31", "image": " <a href=\"/pokemon/31\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/31.png?itok=c0qVlQCT\" width=\"35\" height=\"32\" alt=\"Nidoqueen\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/31\" hreflang=\"en\">Nidoqueen</a>", "sta": "180", "atk": "180", "def": "174", "cp": "2338", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Poison", "title_1": "尼多后", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1336.02", "hatch": "", "candy": "" }, { "number": "32", "image": " <a href=\"/pokemon/32\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/32.png?itok=HxZB7YhK\" width=\"35\" height=\"32\" alt=\"Nidoran Male\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/32\" hreflang=\"en\">Nidoran♂</a>", "sta": "92", "atk": "105", "def": "76", "cp": "739", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "尼多朗", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "422.60", "hatch": "2 km", "candy": "25" }, { "number": "33", "image": " <a href=\"/pokemon/33\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/33.png?itok=jqFD3Hfw\" width=\"35\" height=\"32\" alt=\"Nidorino\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/33\" hreflang=\"en\">Nidorino</a>", "sta": "122", "atk": "137", "def": "112", "cp": "1252", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "尼多力諾", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "715.54", "hatch": "", "candy": "100" }, { "number": "34", "image": " <a href=\"/pokemon/34\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/34.png?itok=vDYzOdT_\" width=\"35\" height=\"32\" alt=\"Nidoking\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/34\" hreflang=\"en\">Nidoking</a>", "sta": "162", "atk": "204", "def": "157", "cp": "2386", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Poison", "title_1": "尼多王", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1363.72", "hatch": "", "candy": "" }, { "number": "35", "image": " <a href=\"/pokemon/35\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/35.png?itok=pD519OKq\" width=\"35\" height=\"32\" alt=\"Clefairy\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/35\" hreflang=\"en\">Clefairy</a>", "sta": "140", "atk": "107", "def": "116", "cp": "1085", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fairy", "title_1": "皮皮", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "620.43", "hatch": "", "candy": "50" }, { "number": "36", "image": " <a href=\"/pokemon/36\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/36.png?itok=y7O934En\" width=\"35\" height=\"32\" alt=\"Clefable\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/36\" hreflang=\"en\">Clefable</a>", "sta": "190", "atk": "178", "def": "171", "cp": "2353", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fairy", "title_1": "皮可西", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1345.00", "hatch": "", "candy": "" }, { "number": "37", "image": " <a href=\"/pokemon/37\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/37.png?itok=1TDCCKhT\" width=\"35\" height=\"32\" alt=\"Vulpix\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/37\" hreflang=\"en\">Vulpix</a>", "sta": "76", "atk": "96", "def": "122", "cp": "774", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "六尾", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "442.32", "hatch": "", "candy": "50" }, { "number": "38", "image": " <a href=\"/pokemon/38\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/38.png?itok=95rHYdEs\" width=\"35\" height=\"32\" alt=\"Ninetales\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/38\" hreflang=\"en\">Ninetales</a>", "sta": "146", "atk": "169", "def": "204", "cp": "2157", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "九尾", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1233.06", "hatch": "", "candy": "" }, { "number": "39", "image": " <a href=\"/pokemon/39\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/39.png?itok=NlncwUiI\" width=\"35\" height=\"32\" alt=\"Jigglypuff\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/39\" hreflang=\"en\">Jigglypuff</a>", "sta": "230", "atk": "80", "def": "44", "cp": "713", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fairy, Normal", "title_1": "胖丁", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "407.63", "hatch": "", "candy": "50" }, { "number": "40", "image": " <a href=\"/pokemon/40\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/40.png?itok=RRlyPa0o\" width=\"35\" height=\"32\" alt=\"Wigglytuff\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/40\" hreflang=\"en\">Wigglytuff</a>", "sta": "280", "atk": "156", "def": "93", "cp": "1906", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fairy, Normal", "title_1": "胖可丁", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1089.30", "hatch": "", "candy": "" }, { "number": "41", "image": " <a href=\"/pokemon/41\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/41.png?itok=5fo5q0bm\" width=\"35\" height=\"32\" alt=\"Zubat\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/41\" hreflang=\"en\">Zubat</a>", "sta": "80", "atk": "83", "def": "76", "cp": "569", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Poison", "title_1": "超音蝠", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "325.19", "hatch": "", "candy": "25" }, { "number": "42", "image": " <a href=\"/pokemon/42\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/42.png?itok=kD3F0WT7\" width=\"35\" height=\"32\" alt=\"Golbat\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/42\" hreflang=\"en\">Golbat</a>", "sta": "150", "atk": "161", "def": "153", "cp": "1830", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Poison", "title_1": "大嘴蝠", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1045.78", "hatch": "", "candy": "100" }, { "number": "43", "image": " <a href=\"/pokemon/43\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/43.png?itok=gKbTqkiW\" width=\"35\" height=\"32\" alt=\"Oddish\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/43\" hreflang=\"en\">Oddish</a>", "sta": "90", "atk": "131", "def": "116", "cp": "1069", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "走路草", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "611.10", "hatch": "2 km", "candy": "25" }, { "number": "44", "image": " <a href=\"/pokemon/44\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/44.png?itok=BgMWwm3f\" width=\"35\" height=\"32\" alt=\"Gloom\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/44\" hreflang=\"en\">Gloom</a>", "sta": "120", "atk": "153", "def": "139", "cp": "1512", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "臭臭花", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "864.50", "hatch": "", "candy": "100" }, { "number": "45", "image": " <a href=\"/pokemon/45\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/45.png?itok=ijPhXN8v\" width=\"35\" height=\"32\" alt=\"Vileplume\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/45\" hreflang=\"en\">Vileplume</a>", "sta": "150", "atk": "202", "def": "170", "cp": "2367", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "霸王花", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1353.06", "hatch": "", "candy": "" }, { "number": "46", "image": " <a href=\"/pokemon/46\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/46.png?itok=L64sPzwO\" width=\"35\" height=\"32\" alt=\"Paras\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/46\" hreflang=\"en\">Paras</a>", "sta": "70", "atk": "121", "def": "99", "cp": "836", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Grass", "title_1": "派拉斯", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "477.78", "hatch": "", "candy": "50" }, { "number": "47", "image": " <a href=\"/pokemon/47\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/47.png?itok=K1EAJ1FS\" width=\"35\" height=\"32\" alt=\"Parasect\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/47\" hreflang=\"en\">Parasect</a>", "sta": "120", "atk": "165", "def": "146", "cp": "1657", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Grass", "title_1": "派拉斯特", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "947.07", "hatch": "", "candy": "" }, { "number": "48", "image": " <a href=\"/pokemon/48\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/48.png?itok=-G7QmwJp\" width=\"35\" height=\"32\" alt=\"Venonat\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/48\" hreflang=\"en\">Venonat</a>", "sta": "120", "atk": "100", "def": "102", "cp": "902", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Poison", "title_1": "毛球", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "515.81", "hatch": "", "candy": "50" }, { "number": "49", "image": " <a href=\"/pokemon/49\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/49.png?itok=JOTLFvTH\" width=\"35\" height=\"32\" alt=\"Venomoth\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/49\" hreflang=\"en\">Venomoth</a>", "sta": "140", "atk": "179", "def": "150", "cp": "1937", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Poison", "title_1": "摩魯蛾", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1107.24", "hatch": "", "candy": "" }, { "number": "50", "image": " <a href=\"/pokemon/50\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/50.png?itok=f_kJUoQS\" width=\"35\" height=\"32\" alt=\"Diglett\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/50\" hreflang=\"en\">Diglett</a>", "sta": "20", "atk": "109", "def": "88", "cp": "465", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground", "title_1": "地鼠", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "265.71", "hatch": "2 km", "candy": "50" }, { "number": "51", "image": " <a href=\"/pokemon/51\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/51.png?itok=RjuWlupz\" width=\"35\" height=\"32\" alt=\"Dugtrio\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/51\" hreflang=\"en\">Dugtrio</a>", "sta": "70", "atk": "167", "def": "147", "cp": "1333", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground", "title_1": "三地鼠", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "762.20", "hatch": "", "candy": "" }, { "number": "52", "image": " <a href=\"/pokemon/52\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/52.png?itok=zfCTAPjE\" width=\"35\" height=\"32\" alt=\"Meowth\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/52\" hreflang=\"en\">Meowth</a>", "sta": "80", "atk": "92", "def": "81", "cp": "638", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "喵喵", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "364.68", "hatch": "", "candy": "50" }, { "number": "53", "image": " <a href=\"/pokemon/53\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/53.png?itok=TX2JdCZw\" width=\"35\" height=\"32\" alt=\"Persian\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/53\" hreflang=\"en\">Persian</a>", "sta": "130", "atk": "150", "def": "139", "cp": "1539", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "貓老大", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "879.95", "hatch": "", "candy": "" }, { "number": "54", "image": " <a href=\"/pokemon/54\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/54.png?itok=Sfnd4ddf\" width=\"35\" height=\"32\" alt=\"Psyduck\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/54\" hreflang=\"en\">Psyduck</a>", "sta": "100", "atk": "122", "def": "96", "cp": "966", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "可達鴨", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "552.41", "hatch": "", "candy": "50" }, { "number": "55", "image": " <a href=\"/pokemon/55\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/55.png?itok=32KMw_Iz\" width=\"35\" height=\"32\" alt=\"Golduck\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/55\" hreflang=\"en\">Golduck</a>", "sta": "160", "atk": "191", "def": "163", "cp": "2270", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "哥達鴨", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1297.56", "hatch": "", "candy": "" }, { "number": "56", "image": " <a href=\"/pokemon/56\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/56.png?itok=ASky6-w_\" width=\"35\" height=\"32\" alt=\"Mankey\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/56\" hreflang=\"en\">Mankey</a>", "sta": "80", "atk": "148", "def": "87", "cp": "1002", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "猴怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "572.64", "hatch": "", "candy": "50" }, { "number": "57", "image": " <a href=\"/pokemon/57\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/57.png?itok=LmstZqpi\" width=\"35\" height=\"32\" alt=\"Primeape\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/57\" hreflang=\"en\">Primeape</a>", "sta": "130", "atk": "207", "def": "144", "cp": "2105", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "火爆猴", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1203.00", "hatch": "", "candy": "" }, { "number": "58", "image": " <a href=\"/pokemon/58\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/58.png?itok=3jiLr5N4\" width=\"35\" height=\"32\" alt=\"Growlithe\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/58\" hreflang=\"en\">Growlithe</a>", "sta": "110", "atk": "136", "def": "96", "cp": "1110", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "卡蒂狗", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "634.78", "hatch": "5 km", "candy": "50" }, { "number": "59", "image": " <a href=\"/pokemon/59\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/59.png?itok=FG5Eijyt\" width=\"35\" height=\"32\" alt=\"Arcanine\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/59\" hreflang=\"en\">Arcanine</a>", "sta": "180", "atk": "227", "def": "166", "cp": "2839", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "風速狗", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1622.57", "hatch": "", "candy": "" }, { "number": "60", "image": " <a href=\"/pokemon/60\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/60.png?itok=4d6HO2Zk\" width=\"35\" height=\"32\" alt=\"Poliwag\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/60\" hreflang=\"en\">Poliwag</a>", "sta": "80", "atk": "101", "def": "82", "cp": "695", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "蚊香蝌蚪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "397.41", "hatch": "5 km", "candy": "25" }, { "number": "61", "image": " <a href=\"/pokemon/61\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/61.png?itok=Gc9oHcus\" width=\"35\" height=\"32\" alt=\"Poliwhirl\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/61\" hreflang=\"en\">Poliwhirl</a>", "sta": "130", "atk": "130", "def": "130", "cp": "1313", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "蚊香君", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "750.35", "hatch": "", "candy": "100" }, { "number": "62", "image": " <a href=\"/pokemon/62\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/62.png?itok=BU-6P7Oo\" width=\"35\" height=\"32\" alt=\"Poliwrath\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/62\" hreflang=\"en\">Poliwrath</a>", "sta": "180", "atk": "182", "def": "187", "cp": "2441", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting, Water", "title_1": "蚊香泳士", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1395.37", "hatch": "", "candy": "" }, { "number": "63", "image": " <a href=\"/pokemon/63\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/63.png?itok=xmVVTsEt\" width=\"35\" height=\"32\" alt=\"Abra\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/63\" hreflang=\"en\">Abra</a>", "sta": "50", "atk": "195", "def": "103", "cp": "1148", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "凱西", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "656.37", "hatch": "2 km", "candy": "25" }, { "number": "64", "image": " <a href=\"/pokemon/64\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/64.png?itok=iOweFIXN\" width=\"35\" height=\"32\" alt=\"Kadabra\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/64\" hreflang=\"en\">Kadabra</a>", "sta": "80", "atk": "232", "def": "138", "cp": "1859", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "勇基拉", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1062.76", "hatch": "", "candy": "100" }, { "number": "65", "image": " <a href=\"/pokemon/65\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/65.png?itok=tkY7fB9r\" width=\"35\" height=\"32\" alt=\"Alakazam\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/65\" hreflang=\"en\">Alakazam</a>", "sta": "110", "atk": "271", "def": "194", "cp": "2887", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "胡地", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1649.77", "hatch": "", "candy": "" }, { "number": "66", "image": " <a href=\"/pokemon/66\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/66.png?itok=C2DM_Z8_\" width=\"35\" height=\"32\" alt=\"Machop\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/66\" hreflang=\"en\">Machop</a>", "sta": "140", "atk": "137", "def": "88", "cp": "1199", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "腕力", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "685.42", "hatch": "2 km", "candy": "25" }, { "number": "67", "image": " <a href=\"/pokemon/67\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/67.png?itok=doklvJJL\" width=\"35\" height=\"32\" alt=\"Machoke\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/67\" hreflang=\"en\">Machoke</a>", "sta": "160", "atk": "177", "def": "130", "cp": "1910", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "豪力", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1091.53", "hatch": "", "candy": "100" }, { "number": "68", "image": " <a href=\"/pokemon/68\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/68.png?itok=ycfeV7PS\" width=\"35\" height=\"32\" alt=\"Machamp\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/68\" hreflang=\"en\">Machamp</a>", "sta": "180", "atk": "234", "def": "162", "cp": "2889", "rating": "5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "怪力", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1650.95", "hatch": "", "candy": "" }, { "number": "69", "image": " <a href=\"/pokemon/69\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/69.png?itok=dU_3wnVL\" width=\"35\" height=\"32\" alt=\"Bellsprout\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/69\" hreflang=\"en\">Bellsprout</a>", "sta": "100", "atk": "139", "def": "64", "cp": "916", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "喇叭芽", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "523.86", "hatch": "", "candy": "25" }, { "number": "70", "image": " <a href=\"/pokemon/70\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/70_0.png?itok=mgBbQQA4\" width=\"35\" height=\"32\" alt=\"Weepinbell\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/70\" hreflang=\"en\">Weepinbell</a>", "sta": "130", "atk": "172", "def": "95", "cp": "1475", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "口呆花", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "842.85", "hatch": "", "candy": "100" }, { "number": "71", "image": " <a href=\"/pokemon/71\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/71.png?itok=D0_iQ4mS\" width=\"35\" height=\"32\" alt=\"Victreebel\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/71\" hreflang=\"en\">Victreebel</a>", "sta": "160", "atk": "207", "def": "138", "cp": "2268", "rating": "3", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Poison", "title_1": "大食花", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1296.43", "hatch": "", "candy": "100" }, { "number": "72", "image": " <a href=\"/pokemon/72\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/72.png?itok=vCu3NZ-F\" width=\"35\" height=\"32\" alt=\"Tentacool\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/72\" hreflang=\"en\">Tentacool</a>", "sta": "80", "atk": "97", "def": "182", "cp": "956", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison, Water", "title_1": "瑪瑙水母", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "546.82", "hatch": "", "candy": "50" }, { "number": "73", "image": " <a href=\"/pokemon/73\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/73.png?itok=s2Vg18If\" width=\"35\" height=\"32\" alt=\"Tentacruel\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/73\" hreflang=\"en\">Tentacruel</a>", "sta": "160", "atk": "166", "def": "237", "cp": "2374", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison, Water", "title_1": "毒刺水母", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1356.53", "hatch": "", "candy": "" }, { "number": "74", "image": " <a href=\"/pokemon/74\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/74.png?itok=uE0DpnOj\" width=\"35\" height=\"32\" alt=\"Geodude\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/74\" hreflang=\"en\">Geodude</a>", "sta": "80", "atk": "132", "def": "163", "cp": "1193", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Rock", "title_1": "小拳石", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "682.21", "hatch": "2 km", "candy": "25" }, { "number": "75", "image": " <a href=\"/pokemon/75\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/75.png?itok=LEyo5xa8\" width=\"35\" height=\"32\" alt=\"Graveler\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/75\" hreflang=\"en\">Graveler</a>", "sta": "110", "atk": "164", "def": "196", "cp": "1815", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Rock", "title_1": "隆隆石", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1037.48", "hatch": "", "candy": "100" }, { "number": "76", "image": " <a href=\"/pokemon/76\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/76.png?itok=iLf5qGXT\" width=\"35\" height=\"32\" alt=\"Golem\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/76\" hreflang=\"en\">Golem</a>", "sta": "160", "atk": "211", "def": "229", "cp": "2916", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Rock", "title_1": "隆隆岩", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1666.68", "hatch": "", "candy": "" }, { "number": "77", "image": " <a href=\"/pokemon/77\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/77.png?itok=b8WZQmsZ\" width=\"35\" height=\"32\" alt=\"Ponyta\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/77\" hreflang=\"en\">Ponyta</a>", "sta": "100", "atk": "170", "def": "132", "cp": "1502", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "小火馬", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "858.44", "hatch": "5 km", "candy": "50" }, { "number": "78", "image": " <a href=\"/pokemon/78\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/78.png?itok=84kSP0wG\" width=\"35\" height=\"32\" alt=\"Rapidash\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/78\" hreflang=\"en\">Rapidash</a>", "sta": "130", "atk": "207", "def": "167", "cp": "2252", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "烈焰馬", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1287.07", "hatch": "", "candy": "" }, { "number": "79", "image": " <a href=\"/pokemon/79\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/79.png?itok=YdX0yMPK\" width=\"35\" height=\"32\" alt=\"Slowpoke\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/79\" hreflang=\"en\">Slowpoke</a>", "sta": "180", "atk": "109", "def": "109", "cp": "1204", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic, Water", "title_1": "呆呆獸", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "688.15", "hatch": "2 km", "candy": "50" }, { "number": "80", "image": " <a href=\"/pokemon/80\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/80_0.png?itok=lPz545dM\" width=\"35\" height=\"32\" alt=\"Slowbro\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/80\" hreflang=\"en\">Slowbro</a>", "sta": "190", "atk": "177", "def": "194", "cp": "2482", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic, Water", "title_1": "呆殼獸", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1418.34", "hatch": "", "candy": "" }, { "number": "81", "image": " <a href=\"/pokemon/81\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/81.png?itok=VDzRdzZP\" width=\"35\" height=\"32\" alt=\"Magnemite\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/81\" hreflang=\"en\">Magnemite</a>", "sta": "50", "atk": "165", "def": "128", "cp": "1083", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric, Steel", "title_1": "小磁怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "619.34", "hatch": "", "candy": "50" }, { "number": "82", "image": " <a href=\"/pokemon/82\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/82.png?itok=-52zSbjZ\" width=\"35\" height=\"32\" alt=\"Magneton\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/82\" hreflang=\"en\">Magneton</a>", "sta": "100", "atk": "223", "def": "182", "cp": "2237", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric, Steel", "title_1": "三合一磁怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1278.47", "hatch": "", "candy": "" }, { "number": "83", "image": " <a href=\"/pokemon/83\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/83.png?itok=uir9jss_\" width=\"35\" height=\"32\" alt=\"Farfetch&#039;d\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/83\" hreflang=\"en\">Farfetch&#039;d</a>", "sta": "104", "atk": "124", "def": "118", "cp": "1092", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "大蔥鴨", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "624.09", "hatch": "", "candy": "" }, { "number": "84", "image": " <a href=\"/pokemon/84\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/84.png?itok=UKZAcclY\" width=\"35\" height=\"32\" alt=\"Doduo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/84\" hreflang=\"en\">Doduo</a>", "sta": "70", "atk": "158", "def": "88", "cp": "1011", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "嘟嘟", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "577.70", "hatch": "", "candy": "50" }, { "number": "85", "image": " <a href=\"/pokemon/85\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/85.png?itok=ApefuVx1\" width=\"35\" height=\"32\" alt=\"Dodrio\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/85\" hreflang=\"en\">Dodrio</a>", "sta": "120", "atk": "218", "def": "145", "cp": "2138", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Normal", "title_1": "嘟嘟利", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1222.12", "hatch": "", "candy": "" }, { "number": "86", "image": " <a href=\"/pokemon/86\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/86.png?itok=-mTfWCJd\" width=\"35\" height=\"32\" alt=\"Seel\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/86\" hreflang=\"en\">Seel</a>", "sta": "130", "atk": "85", "def": "128", "cp": "899", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "小海獅", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "513.91", "hatch": "5 km", "candy": "50" }, { "number": "87", "image": " <a href=\"/pokemon/87\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/87.png?itok=s7t0c39s\" width=\"35\" height=\"32\" alt=\"Dewgong\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/87\" hreflang=\"en\">Dewgong</a>", "sta": "180", "atk": "139", "def": "184", "cp": "1894", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ice, Water", "title_1": "白海獅", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1082.67", "hatch": "", "candy": "" }, { "number": "88", "image": " <a href=\"/pokemon/88\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/88.png?itok=P_T26_FX\" width=\"35\" height=\"32\" alt=\"Grimer\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/88\" hreflang=\"en\">Grimer</a>", "sta": "160", "atk": "135", "def": "90", "cp": "1269", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "臭泥", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "725.66", "hatch": "5 km", "candy": "50" }, { "number": "89", "image": " <a href=\"/pokemon/89\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/89.png?itok=XrDdr1AV\" width=\"35\" height=\"32\" alt=\"Muk\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/89\" hreflang=\"en\">Muk</a>", "sta": "210", "atk": "190", "def": "184", "cp": "2709", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "臭臭泥", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1548.11", "hatch": "", "candy": "" }, { "number": "90", "image": " <a href=\"/pokemon/90\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/90.png?itok=otWp2MMu\" width=\"35\" height=\"32\" alt=\"Shellder\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/90\" hreflang=\"en\">Shellder</a>", "sta": "60", "atk": "116", "def": "168", "cp": "958", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "大舌貝", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "547.72", "hatch": "5 km", "candy": "50" }, { "number": "91", "image": " <a href=\"/pokemon/91\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/91.png?itok=tAoyXpGg\" width=\"35\" height=\"32\" alt=\"Cloyster\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/91\" hreflang=\"en\">Cloyster</a>", "sta": "100", "atk": "186", "def": "323", "cp": "2475", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ice, Water", "title_1": "刺甲貝", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1414.27", "hatch": "", "candy": "" }, { "number": "92", "image": " <a href=\"/pokemon/92\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/92.png?itok=xko9xpyG\" width=\"35\" height=\"32\" alt=\"Gastly\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/92\" hreflang=\"en\">Gastly</a>", "sta": "60", "atk": "186", "def": "70", "cp": "1002", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ghost, Poison", "title_1": "鬼斯", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "572.75", "hatch": "2 km", "candy": "25" }, { "number": "93", "image": " <a href=\"/pokemon/93\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/93.png?itok=g8LbSCId\" width=\"35\" height=\"32\" alt=\"Haunter\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/93\" hreflang=\"en\">Haunter</a>", "sta": "90", "atk": "223", "def": "112", "cp": "1716", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ghost, Poison", "title_1": "鬼斯通", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "980.85", "hatch": "", "candy": "100" }, { "number": "94", "image": " <a href=\"/pokemon/94\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/94.png?itok=iGGPi828\" width=\"35\" height=\"32\" alt=\"Gengar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/94\" hreflang=\"en\">Gengar</a>", "sta": "120", "atk": "261", "def": "156", "cp": "2619", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ghost, Poison", "title_1": "耿鬼", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1496.60", "hatch": "", "candy": "" }, { "number": "95", "image": " <a href=\"/pokemon/95\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/95.png?itok=OEdB6lAJ\" width=\"35\" height=\"32\" alt=\"Onix\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/95\" hreflang=\"en\">Onix</a>", "sta": "70", "atk": "85", "def": "288", "cp": "1002", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Rock", "title_1": "大岩蛇", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "572.75", "hatch": "5 km", "candy": "50" }, { "number": "96", "image": " <a href=\"/pokemon/96\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/96.png?itok=jOPm8FGw\" width=\"35\" height=\"32\" alt=\"Drowzee\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/96\" hreflang=\"en\">Drowzee</a>", "sta": "120", "atk": "89", "def": "158", "cp": "992", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "催眠貘", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "567.22", "hatch": "5 km", "candy": "50" }, { "number": "97", "image": " <a href=\"/pokemon/97\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/97.png?itok=wkF9eJY6\" width=\"35\" height=\"32\" alt=\"Hypno\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/97\" hreflang=\"en\">Hypno</a>", "sta": "170", "atk": "144", "def": "215", "cp": "2048", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "引夢貘人", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1170.52", "hatch": "", "candy": "" }, { "number": "98", "image": " <a href=\"/pokemon/98\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/98.png?itok=5RtAI8Mi\" width=\"35\" height=\"32\" alt=\"Krabby\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/98\" hreflang=\"en\">Krabby</a>", "sta": "60", "atk": "181", "def": "156", "cp": "1386", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "大鉗蟹", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "792.16", "hatch": "2 km", "candy": "50" }, { "number": "99", "image": " <a href=\"/pokemon/99\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/99.png?itok=jWAyaIxt\" width=\"35\" height=\"32\" alt=\"Kingler\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/99\" hreflang=\"en\">Kingler</a>", "sta": "110", "atk": "240", "def": "214", "cp": "2694", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "巨鉗蟹", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1539.73", "hatch": "", "candy": "" }, { "number": "100", "image": " <a href=\"/pokemon/100\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/100.png?itok=KDJZN137\" width=\"35\" height=\"32\" alt=\"Voltorb\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/100\" hreflang=\"en\">Voltorb</a>", "sta": "80", "atk": "109", "def": "114", "cp": "857", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric", "title_1": "霹靂電球", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "489.90", "hatch": "5 km", "candy": "50" }, { "number": "101", "image": " <a href=\"/pokemon/101\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/101.png?itok=XZ1DWnU8\" width=\"35\" height=\"32\" alt=\"Electrode\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/101\" hreflang=\"en\">Electrode</a>", "sta": "120", "atk": "173", "def": "179", "cp": "1900", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric", "title_1": "頑皮雷彈", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1085.82", "hatch": "", "candy": "" }, { "number": "102", "image": " <a href=\"/pokemon/102\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/102.png?itok=PJFsxFO5\" width=\"35\" height=\"32\" alt=\"Exeggcute\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/102\" hreflang=\"en\">Exeggcute</a>", "sta": "120", "atk": "107", "def": "140", "cp": "1102", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Psychic", "title_1": "蛋蛋", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "629.83", "hatch": "2 km", "candy": "50" }, { "number": "103", "image": " <a href=\"/pokemon/103\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/103.png?itok=e8LLysrt\" width=\"35\" height=\"32\" alt=\"Exeggutor\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/103\" hreflang=\"en\">Exeggutor</a>", "sta": "190", "atk": "233", "def": "158", "cp": "2916", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass, Psychic", "title_1": "椰蛋樹", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1666.79", "hatch": "", "candy": "" }, { "number": "104", "image": " <a href=\"/pokemon/104\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/104.png?itok=eDkoRSOI\" width=\"35\" height=\"32\" alt=\"Cubone\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/104\" hreflang=\"en\">Cubone</a>", "sta": "100", "atk": "90", "def": "165", "cp": "943", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground", "title_1": "卡拉卡拉", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "539.14", "hatch": "5 km", "candy": "50" }, { "number": "105", "image": " <a href=\"/pokemon/105\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/105.png?itok=gSm_YcC0\" width=\"35\" height=\"32\" alt=\"Marowak\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/105\" hreflang=\"en\">Marowak</a>", "sta": "120", "atk": "144", "def": "200", "cp": "1691", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground", "title_1": "嘎啦嘎啦", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "966.75", "hatch": "", "candy": "" }, { "number": "106", "image": " <a href=\"/pokemon/106\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/106.png?itok=zRLzhX5-\" width=\"35\" height=\"32\" alt=\"Hitmonlee\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/106\" hreflang=\"en\">Hitmonlee</a>", "sta": "100", "atk": "224", "def": "211", "cp": "2406", "rating": "2.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "飛腿郎", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1375.09", "hatch": "", "candy": "" }, { "number": "107", "image": " <a href=\"/pokemon/107\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/107.png?itok=vYxmaJ9m\" width=\"35\" height=\"32\" alt=\"Hitmonchan\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/107\" hreflang=\"en\">Hitmonchan</a>", "sta": "100", "atk": "193", "def": "212", "cp": "2098", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fighting", "title_1": "快拳郎", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1199.38", "hatch": "", "candy": "" }, { "number": "108", "image": " <a href=\"/pokemon/108\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/108.png?itok=Pa1quDEa\" width=\"35\" height=\"32\" alt=\"Lickitung\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/108\" hreflang=\"en\">Lickitung</a>", "sta": "180", "atk": "108", "def": "137", "cp": "1322", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "大舌頭", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "755.74", "hatch": "5 km", "candy": "" }, { "number": "109", "image": " <a href=\"/pokemon/109\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/109.png?itok=M30_URka\" width=\"35\" height=\"32\" alt=\"Koffing\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/109\" hreflang=\"en\">Koffing</a>", "sta": "80", "atk": "119", "def": "164", "cp": "1091", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "瓦斯彈", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "623.63", "hatch": "5 km", "candy": "50" }, { "number": "110", "image": " <a href=\"/pokemon/110\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/110.png?itok=6exs5b5O\" width=\"35\" height=\"32\" alt=\"Weezing\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/110\" hreflang=\"en\">Weezing</a>", "sta": "130", "atk": "174", "def": "221", "cp": "2183", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Poison", "title_1": "雙彈瓦斯", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1247.76", "hatch": "", "candy": "" }, { "number": "111", "image": " <a href=\"/pokemon/111\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/111.png?itok=_xIatmmc\" width=\"35\" height=\"32\" alt=\"Rhyhorn\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/111\" hreflang=\"en\">Rhyhorn</a>", "sta": "160", "atk": "140", "def": "157", "cp": "1679", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Rock", "title_1": "獨角犀牛", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "959.72", "hatch": "5 km", "candy": "50" }, { "number": "112", "image": " <a href=\"/pokemon/112\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/112.png?itok=TbPUV7wU\" width=\"35\" height=\"32\" alt=\"Rhydon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/112\" hreflang=\"en\">Rhydon</a>", "sta": "210", "atk": "222", "def": "206", "cp": "3300", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ground, Rock", "title_1": "鑽角犀獸", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1886.11", "hatch": "", "candy": "" }, { "number": "113", "image": " <a href=\"/pokemon/113\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/113.png?itok=FsK5cf46\" width=\"35\" height=\"32\" alt=\"Chansey\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/113\" hreflang=\"en\">Chansey</a>", "sta": "500", "atk": "60", "def": "176", "cp": "1469", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "吉利蛋", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "839.48", "hatch": "10 km", "candy": "50" }, { "number": "114", "image": " <a href=\"/pokemon/114\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/114.png?itok=i-NN83MY\" width=\"35\" height=\"32\" alt=\"Tangela\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/114\" hreflang=\"en\">Tangela</a>", "sta": "130", "atk": "183", "def": "205", "cp": "2208", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Grass", "title_1": "蔓藤怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1262.09", "hatch": "5 km", "candy": "" }, { "number": "115", "image": " <a href=\"/pokemon/115\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/115.png?itok=WUx0Y0jw\" width=\"35\" height=\"32\" alt=\"Kangaskhan\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/115\" hreflang=\"en\">Kangaskhan</a>", "sta": "210", "atk": "181", "def": "165", "cp": "2463", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "袋獸", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1407.71", "hatch": "", "candy": "" }, { "number": "116", "image": " <a href=\"/pokemon/116\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/116.png?itok=NaWKInlH\" width=\"35\" height=\"32\" alt=\"Horsea\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/116\" hreflang=\"en\">Horsea</a>", "sta": "60", "atk": "129", "def": "125", "cp": "921", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "墨海馬", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "526.61", "hatch": "", "candy": "25" }, { "number": "117", "image": " <a href=\"/pokemon/117\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/117.png?itok=isE70vn-\" width=\"35\" height=\"32\" alt=\"Seadra\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/117\" hreflang=\"en\">Seadra</a>", "sta": "110", "atk": "187", "def": "182", "cp": "1979", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "海刺龍", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1131.28", "hatch": "", "candy": "100" }, { "number": "118", "image": " <a href=\"/pokemon/118\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/118.png?itok=JyeY2DVh\" width=\"35\" height=\"32\" alt=\"Goldeen\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/118\" hreflang=\"en\">Goldeen</a>", "sta": "90", "atk": "123", "def": "115", "cp": "1006", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "角金魚", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "575.41", "hatch": "", "candy": "50" }, { "number": "119", "image": " <a href=\"/pokemon/119\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/119.png?itok=Kcz76TY0\" width=\"35\" height=\"32\" alt=\"Seaking\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/119\" hreflang=\"en\">Seaking</a>", "sta": "160", "atk": "175", "def": "154", "cp": "2040", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "金魚王", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1166.13", "hatch": "", "candy": "" }, { "number": "120", "image": " <a href=\"/pokemon/120\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/120.png?itok=HrHL8gqV\" width=\"35\" height=\"32\" alt=\"Staryu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/120\" hreflang=\"en\">Staryu</a>", "sta": "60", "atk": "137", "def": "112", "cp": "926", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "海星星", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "529.43", "hatch": "", "candy": "50" }, { "number": "121", "image": " <a href=\"/pokemon/121\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/121.png?itok=VG08GtEZ\" width=\"35\" height=\"32\" alt=\"Starmie\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/121\" hreflang=\"en\">Starmie</a>", "sta": "120", "atk": "210", "def": "184", "cp": "2303", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic, Water", "title_1": "寶石海星", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1316.15", "hatch": "", "candy": "" }, { "number": "122", "image": " <a href=\"/pokemon/122\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/122.png?itok=qncoxXes\" width=\"35\" height=\"32\" alt=\"Mr. Mime\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/122\" hreflang=\"en\">Mr. Mime</a>", "sta": "80", "atk": "192", "def": "233", "cp": "1984", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fairy, Psychic", "title_1": "魔牆人偶", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1133.94", "hatch": "", "candy": "" }, { "number": "123", "image": " <a href=\"/pokemon/123\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/123.png?itok=4-XEOBlg\" width=\"35\" height=\"32\" alt=\"Scyther\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/123\" hreflang=\"en\">Scyther</a>", "sta": "140", "atk": "218", "def": "170", "cp": "2464", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug, Flying", "title_1": "飛天螳螂", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1408.11", "hatch": "5 km", "candy": "50" }, { "number": "124", "image": " <a href=\"/pokemon/124\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/124.png?itok=HNMrOiK-\" width=\"35\" height=\"32\" alt=\"Jynx\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/124\" hreflang=\"en\">Jynx</a>", "sta": "130", "atk": "223", "def": "182", "cp": "2512", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ice, Psychic", "title_1": "迷唇姐", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1435.57", "hatch": "", "candy": "" }, { "number": "125", "image": " <a href=\"/pokemon/125\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/125.png?itok=uOVwGUHx\" width=\"35\" height=\"32\" alt=\"Electabuzz\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/125\" hreflang=\"en\">Electabuzz</a>", "sta": "130", "atk": "198", "def": "173", "cp": "2196", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric", "title_1": "電擊獸", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1255.08", "hatch": "", "candy": "" }, { "number": "126", "image": " <a href=\"/pokemon/126\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/126.png?itok=s9R6iBEm\" width=\"35\" height=\"32\" alt=\"Magmar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/126\" hreflang=\"en\">Magmar</a>", "sta": "130", "atk": "206", "def": "169", "cp": "2254", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "鴨嘴火獸", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1288.30", "hatch": "", "candy": "" }, { "number": "127", "image": " <a href=\"/pokemon/127\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/127.png?itok=6r4O2rlJ\" width=\"35\" height=\"32\" alt=\"Pinsir\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/127\" hreflang=\"en\">Pinsir</a>", "sta": "130", "atk": "238", "def": "197", "cp": "2770", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Bug", "title_1": "凱羅斯", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1583.08", "hatch": "5 km", "candy": "" }, { "number": "128", "image": " <a href=\"/pokemon/128\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/128.png?itok=EOCnY6KB\" width=\"35\" height=\"32\" alt=\"Tauros\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/128\" hreflang=\"en\">Tauros</a>", "sta": "150", "atk": "198", "def": "197", "cp": "2488", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "肯泰羅", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1421.74", "hatch": "", "candy": "" }, { "number": "129", "image": " <a href=\"/pokemon/129\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/129.png?itok=mR9Lgvi6\" width=\"35\" height=\"32\" alt=\"Magikarp\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/129\" hreflang=\"en\">Magikarp</a>", "sta": "40", "atk": "29", "def": "102", "cp": "220", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "鯉魚王", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "125.97", "hatch": "", "candy": "400" }, { "number": "130", "image": " <a href=\"/pokemon/130\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/130.png?itok=pI47qVqH\" width=\"35\" height=\"32\" alt=\"Gyarados\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/130\" hreflang=\"en\">Gyarados</a>", "sta": "190", "atk": "237", "def": "197", "cp": "3281", "rating": "5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Water", "title_1": "暴鯉龍", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1874.89", "hatch": "", "candy": "" }, { "number": "131", "image": " <a href=\"/pokemon/131\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/131.png?itok=PsTj-fps\" width=\"35\" height=\"32\" alt=\"Lapras\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/131\" hreflang=\"en\">Lapras</a>", "sta": "260", "atk": "165", "def": "180", "cp": "2603", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Ice, Water", "title_1": "拉普拉斯", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1487.60", "hatch": "10 km", "candy": "" }, { "number": "132", "image": " <a href=\"/pokemon/132\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/132.png?itok=wKaRNFcw\" width=\"35\" height=\"32\" alt=\"Ditto\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/132\" hreflang=\"en\">Ditto</a>", "sta": "96", "atk": "91", "def": "91", "cp": "718", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "百變怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "410.35", "hatch": "", "candy": "" }, { "number": "133", "image": " <a href=\"/pokemon/133\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/133.png?itok=3ZrvOKvz\" width=\"35\" height=\"32\" alt=\"Eevee\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/133\" hreflang=\"en\">Eevee</a>", "sta": "110", "atk": "104", "def": "121", "cp": "969", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "伊布", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "553.74", "hatch": "5 km", "candy": "25" }, { "number": "134", "image": " <a href=\"/pokemon/134\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/134.png?itok=E10LaPVY\" width=\"35\" height=\"32\" alt=\"Vaporeon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/134\" hreflang=\"en\">Vaporeon</a>", "sta": "260", "atk": "205", "def": "177", "cp": "3157", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Water", "title_1": "水伊布", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1804.14", "hatch": "", "candy": "" }, { "number": "135", "image": " <a href=\"/pokemon/135\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/135.png?itok=tuGiiQLt\" width=\"35\" height=\"32\" alt=\"Jolteon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/135\" hreflang=\"en\">Jolteon</a>", "sta": "130", "atk": "232", "def": "201", "cp": "2730", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric", "title_1": "雷伊布", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1560.05", "hatch": "", "candy": "" }, { "number": "136", "image": " <a href=\"/pokemon/136\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/136.png?itok=AwdooRIU\" width=\"35\" height=\"32\" alt=\"Flareon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/136\" hreflang=\"en\">Flareon</a>", "sta": "130", "atk": "246", "def": "204", "cp": "2904", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire", "title_1": "火伊布", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1659.88", "hatch": "", "candy": "" }, { "number": "137", "image": " <a href=\"/pokemon/137\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/137.png?itok=Gyl3QxjM\" width=\"35\" height=\"32\" alt=\"Porygon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/137\" hreflang=\"en\">Porygon</a>", "sta": "130", "atk": "153", "def": "139", "cp": "1567", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "多邊獸", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "895.95", "hatch": "10 km", "candy": "50" }, { "number": "138", "image": " <a href=\"/pokemon/138\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/138.png?itok=zBHGYOrJ\" width=\"35\" height=\"32\" alt=\"Omanyte\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/138\" hreflang=\"en\">Omanyte</a>", "sta": "70", "atk": "155", "def": "174", "cp": "1345", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Rock, Water", "title_1": "菊石獸", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "768.99", "hatch": "5 km", "candy": "50" }, { "number": "139", "image": " <a href=\"/pokemon/139\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/139.png?itok=QvariPQp\" width=\"35\" height=\"32\" alt=\"Omastar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/139\" hreflang=\"en\">Omastar</a>", "sta": "140", "atk": "207", "def": "227", "cp": "2685", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Rock, Water", "title_1": "多刺菊石獸", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1534.46", "hatch": "", "candy": "" }, { "number": "140", "image": " <a href=\"/pokemon/140\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/140.png?itok=_sKLfzAD\" width=\"35\" height=\"32\" alt=\"Kabuto\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/140\" hreflang=\"en\">Kabuto</a>", "sta": "60", "atk": "148", "def": "162", "cp": "1172", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Rock, Water", "title_1": "化石盔", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "670.25", "hatch": "5 km", "candy": "50" }, { "number": "141", "image": " <a href=\"/pokemon/141\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/141.png?itok=PvXeYBaH\" width=\"35\" height=\"32\" alt=\"Kabutops\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/141\" hreflang=\"en\">Kabutops</a>", "sta": "120", "atk": "220", "def": "203", "cp": "2517", "rating": "4", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Rock, Water", "title_1": "鐮刀盔", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1438.78", "hatch": "", "candy": "" }, { "number": "142", "image": " <a href=\"/pokemon/142\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/142.png?itok=gBaNznEg\" width=\"35\" height=\"32\" alt=\"Aerodactyl\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/142\" hreflang=\"en\">Aerodactyl</a>", "sta": "160", "atk": "221", "def": "164", "cp": "2608", "rating": "3.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Rock", "title_1": "化石翼龍", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1490.69", "hatch": "10 km", "candy": "" }, { "number": "143", "image": " <a href=\"/pokemon/143\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/143.png?itok=cxR3y7fA\" width=\"35\" height=\"32\" alt=\"Snorlax\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/143\" hreflang=\"en\">Snorlax</a>", "sta": "320", "atk": "190", "def": "190", "cp": "3355", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Normal", "title_1": "卡比獸", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1917.27", "hatch": "10 km", "candy": "" }, { "number": "144", "image": " <a href=\"/pokemon/144\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/144.png?itok=n_ZMmNtX\" width=\"35\" height=\"32\" alt=\"Articuno\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/144\" hreflang=\"en\">Articuno</a>", "sta": "180", "atk": "192", "def": "249", "cp": "2933", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Flying, Ice", "title_1": "急凍鳥", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1676.18", "hatch": "", "candy": "" }, { "number": "145", "image": " <a href=\"/pokemon/145\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/145.png?itok=y0k40-3A\" width=\"35\" height=\"32\" alt=\"Zapdos\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/145\" hreflang=\"en\">Zapdos</a>", "sta": "180", "atk": "253", "def": "188", "cp": "3330", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Electric, Flying", "title_1": "閃電鳥", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1902.96", "hatch": "", "candy": "" }, { "number": "146", "image": " <a href=\"/pokemon/146\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/146.png?itok=Z1kZe-Kl\" width=\"35\" height=\"32\" alt=\"Moltres\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/146\" hreflang=\"en\">Moltres</a>", "sta": "180", "atk": "251", "def": "184", "cp": "3272", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Fire, Flying", "title_1": "火焰鳥", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1870.06", "hatch": "", "candy": "" }, { "number": "147", "image": " <a href=\"/pokemon/147\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/147.png?itok=h4YighFl\" width=\"35\" height=\"32\" alt=\"Dratini\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/147\" hreflang=\"en\">Dratini</a>", "sta": "82", "atk": "119", "def": "94", "cp": "860", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Dragon", "title_1": "迷你龍", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "491.74", "hatch": "10 km", "candy": "25" }, { "number": "148", "image": " <a href=\"/pokemon/148\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/148.png?itok=o5m1eZdj\" width=\"35\" height=\"32\" alt=\"Dragonair\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/148\" hreflang=\"en\">Dragonair</a>", "sta": "122", "atk": "163", "def": "138", "cp": "1609", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Dragon", "title_1": "哈克龍", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "919.72", "hatch": "", "candy": "100" }, { "number": "149", "image": " <a href=\"/pokemon/149\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/149.png?itok=Sz9GZZHf\" width=\"35\" height=\"32\" alt=\"Dragonite\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/149\" hreflang=\"en\">Dragonite</a>", "sta": "182", "atk": "263", "def": "201", "cp": "3581", "rating": "4.5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Dragon, Flying", "title_1": "快龍", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "2046.61", "hatch": "", "candy": "" }, { "number": "150", "image": " <a href=\"/pokemon/150\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/150.png?itok=JLyAgZNx\" width=\"35\" height=\"32\" alt=\"Mewtwo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/150\" hreflang=\"en\">Mewtwo</a>", "sta": "193", "atk": "300", "def": "182", "cp": "3982", "rating": "5", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "超夢", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2275.65", "hatch": "", "candy": "" }, { "number": "151", "image": " <a href=\"/pokemon/151\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-07/151.png?itok=m9hoWyX8\" width=\"35\" height=\"32\" alt=\"Mew\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/151\" hreflang=\"en\">Mew</a>", "sta": "200", "atk": "210", "def": "210", "cp": "3090", "rating": "-", "field_pokemon_generation": "Generation 1", "field_pokemon_type": "Psychic", "title_1": "夢幻", "pokemon_class": "Mythic", "buddy": "20 km", "egg_cp": "1766.13", "hatch": "", "candy": "" }, { "number": "152", "image": " <a href=\"/pokemon/152\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/152.png?itok=brK2W3kW\" width=\"32\" height=\"32\" alt=\"Chikorita\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/152\" hreflang=\"en\">Chikorita</a>", "sta": "90", "atk": "92", "def": "122", "cp": "801", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass", "title_1": "菊草葉", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "458.00", "hatch": "5 km", "candy": "25" }, { "number": "153", "image": " <a href=\"/pokemon/153\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/153.png?itok=pXnWpPNW\" width=\"32\" height=\"32\" alt=\"Bayleef\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/153\" hreflang=\"en\">Bayleef</a>", "sta": "120", "atk": "122", "def": "155", "cp": "1296", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass", "title_1": "月桂葉", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "740.70", "hatch": "", "candy": "100" }, { "number": "154", "image": " <a href=\"/pokemon/154\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/154.png?itok=5m5CwI1d\" width=\"32\" height=\"32\" alt=\"Meganium\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/154\" hreflang=\"en\">Meganium</a>", "sta": "160", "atk": "168", "def": "202", "cp": "2227", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass", "title_1": "大竺葵", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1272.71", "hatch": "", "candy": "" }, { "number": "155", "image": " <a href=\"/pokemon/155\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/155.png?itok=-ScBd7AW\" width=\"32\" height=\"32\" alt=\"Cyndaquil\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/155\" hreflang=\"en\">Cyndaquil</a>", "sta": "78", "atk": "116", "def": "96", "cp": "831", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire", "title_1": "火球鼠", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "475.01", "hatch": "5 km", "candy": "25" }, { "number": "156", "image": " <a href=\"/pokemon/156\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/156.png?itok=eFJs8Rcm\" width=\"32\" height=\"32\" alt=\"Quilava\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/156\" hreflang=\"en\">Quilava</a>", "sta": "116", "atk": "158", "def": "129", "cp": "1484", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire", "title_1": "火岩鼠", "pokemon_class": "", "buddy": "3 km", "egg_cp": "848.00", "hatch": "", "candy": "100" }, { "number": "157", "image": " <a href=\"/pokemon/157\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/157.png?itok=ZlQcjODJ\" width=\"32\" height=\"32\" alt=\"バクフーン\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/157\" hreflang=\"en\">Typhlosion</a>", "sta": "156", "atk": "223", "def": "176", "cp": "2686", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire", "title_1": "火爆獸", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1535.05", "hatch": "", "candy": "" }, { "number": "158", "image": " <a href=\"/pokemon/158\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/158.png?itok=TCbu-727\" width=\"32\" height=\"32\" alt=\"Totodile\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/158\" hreflang=\"en\">Totodile</a>", "sta": "100", "atk": "117", "def": "116", "cp": "1011", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "小鋸鱷", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "578.21", "hatch": "5 km", "candy": "25" }, { "number": "159", "image": " <a href=\"/pokemon/159\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/159.png?itok=sxGwxdbm\" width=\"32\" height=\"32\" alt=\"Crocrodil\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/159\" hreflang=\"en\">Croconaw</a>", "sta": "130", "atk": "150", "def": "151", "cp": "1598", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "藍鱷", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "913.59", "hatch": "", "candy": "100" }, { "number": "160", "image": " <a href=\"/pokemon/160\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/160.png?itok=gfux1GA6\" width=\"32\" height=\"32\" alt=\"Feraligatr\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/160\" hreflang=\"en\">Feraligatr</a>", "sta": "170", "atk": "205", "def": "197", "cp": "2721", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "大力鱷", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1554.92", "hatch": "", "candy": "" }, { "number": "161", "image": " <a href=\"/pokemon/161\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/161.png?itok=oqgtlxTH\" width=\"32\" height=\"32\" alt=\"Sentret\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/161\" hreflang=\"en\">Sentret</a>", "sta": "70", "atk": "79", "def": "77", "cp": "519", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "尾立", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "296.66", "hatch": "", "candy": "25" }, { "number": "162", "image": " <a href=\"/pokemon/162\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/162.png?itok=hkSBy3SI\" width=\"32\" height=\"32\" alt=\"Furret\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/162\" hreflang=\"en\">Furret</a>", "sta": "170", "atk": "148", "def": "130", "cp": "1667", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "大尾立", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "952.77", "hatch": "", "candy": "" }, { "number": "163", "image": " <a href=\"/pokemon/163\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/163.png?itok=7KcCVZne\" width=\"32\" height=\"32\" alt=\"Hoothoot\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/163\" hreflang=\"en\">Hoothoot</a>", "sta": "120", "atk": "67", "def": "101", "cp": "640", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Normal", "title_1": "咕咕", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "366.22", "hatch": "", "candy": "50" }, { "number": "164", "image": " <a href=\"/pokemon/164\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/164.png?itok=lb049cPq\" width=\"32\" height=\"32\" alt=\"Noctowl\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/164\" hreflang=\"en\">Noctowl</a>", "sta": "200", "atk": "145", "def": "179", "cp": "2040", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Normal", "title_1": "貓頭夜鷹", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1166.19", "hatch": "", "candy": "" }, { "number": "165", "image": " <a href=\"/pokemon/165\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/165.png?itok=1mBKhkQW\" width=\"32\" height=\"32\" alt=\"Ledyba\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/165\" hreflang=\"en\">Ledyba</a>", "sta": "80", "atk": "72", "def": "142", "cp": "663", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Flying", "title_1": "芭瓢蟲", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "379.19", "hatch": "", "candy": "50" }, { "number": "166", "image": " <a href=\"/pokemon/166\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/166.png?itok=85YdQjI0\" width=\"32\" height=\"32\" alt=\"Ledian\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/166\" hreflang=\"en\">Ledian</a>", "sta": "110", "atk": "107", "def": "209", "cp": "1275", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Flying", "title_1": "安瓢蟲", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "728.57", "hatch": "", "candy": "" }, { "number": "167", "image": " <a href=\"/pokemon/167\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/167.png?itok=9ZgYRDwR\" width=\"32\" height=\"32\" alt=\"Spinarak\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/167\" hreflang=\"en\">Spinarak</a>", "sta": "80", "atk": "105", "def": "73", "cp": "685", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Poison", "title_1": "圓絲蛛", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "391.58", "hatch": "2 km", "candy": "50" }, { "number": "168", "image": " <a href=\"/pokemon/168\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/168.png?itok=8TF_wSfm\" width=\"32\" height=\"32\" alt=\"Ariados\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/168\" hreflang=\"en\">Ariados</a>", "sta": "140", "atk": "161", "def": "128", "cp": "1636", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Poison", "title_1": "阿利多斯", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "935.14", "hatch": "", "candy": "" }, { "number": "169", "image": " <a href=\"/pokemon/169\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/169.png?itok=O_ms3wuV\" width=\"32\" height=\"32\" alt=\"Crobat\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/169\" hreflang=\"en\">Crobat</a>", "sta": "170", "atk": "194", "def": "178", "cp": "2466", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Poison", "title_1": "叉字蝠", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "1409.42", "hatch": "", "candy": "" }, { "number": "170", "image": " <a href=\"/pokemon/170\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/170.png?itok=FVOqAuW0\" width=\"32\" height=\"32\" alt=\"Chinchou\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/170\" hreflang=\"en\">Chinchou</a>", "sta": "150", "atk": "106", "def": "106", "cp": "1067", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric, Water", "title_1": "燈籠魚", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "610.17", "hatch": "5 km", "candy": "50" }, { "number": "171", "image": " <a href=\"/pokemon/171\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/171.png?itok=4kWeaQ7f\" width=\"32\" height=\"32\" alt=\"Lanturn\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/171\" hreflang=\"en\">Lanturn</a>", "sta": "250", "atk": "146", "def": "146", "cp": "2077", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric, Water", "title_1": "電燈怪", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "1186.84", "hatch": "", "candy": "" }, { "number": "172", "image": " <a href=\"/pokemon/172\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/172.png?itok=-j7gSeh4\" width=\"32\" height=\"32\" alt=\"Pichu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/172\" hreflang=\"en\">Pichu</a>", "sta": "40", "atk": "77", "def": "63", "cp": "376", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric", "title_1": "皮丘", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "215.05", "hatch": "2 km", "candy": "25" }, { "number": "173", "image": " <a href=\"/pokemon/173\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/173.png?itok=4991mgj5\" width=\"32\" height=\"32\" alt=\"Cleffa\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/173\" hreflang=\"en\">Cleffa</a>", "sta": "100", "atk": "75", "def": "91", "cp": "620", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy", "title_1": "皮寶寶", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "354.63", "hatch": "2 km", "candy": "25" }, { "number": "174", "image": " <a href=\"/pokemon/174\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/174.png?itok=PXmYScCg\" width=\"32\" height=\"32\" alt=\"Igglybuff\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/174\" hreflang=\"en\">Igglybuff</a>", "sta": "180", "atk": "69", "def": "34", "cp": "512", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy, Normal", "title_1": "寶寶丁", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "293.04", "hatch": "2 km", "candy": "25" }, { "number": "175", "image": " <a href=\"/pokemon/175\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/175.png?itok=9uJf3LAq\" width=\"32\" height=\"32\" alt=\"Togepi\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/175\" hreflang=\"en\">Togepi</a>", "sta": "70", "atk": "67", "def": "116", "cp": "540", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy", "title_1": "波克比", "pokemon_class": "", "buddy": "3 km", "egg_cp": "308.81", "hatch": "2 km", "candy": "50" }, { "number": "176", "image": " <a href=\"/pokemon/176\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/176.png?itok=Qh4Zby4F\" width=\"32\" height=\"32\" alt=\"Togetic\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/176\" hreflang=\"en\">Togetic</a>", "sta": "110", "atk": "139", "def": "191", "cp": "1543", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy, Flying", "title_1": "波克基古", "pokemon_class": "Normal", "buddy": "3 km", "egg_cp": "881.94", "hatch": "", "candy": "" }, { "number": "177", "image": " <a href=\"/pokemon/177\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/177.png?itok=pHhcR4nJ\" width=\"32\" height=\"32\" alt=\"Natu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/177\" hreflang=\"en\">Natu</a>", "sta": "80", "atk": "134", "def": "89", "cp": "925", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Psychic", "title_1": "天然雀", "pokemon_class": "", "buddy": "3 km", "egg_cp": "528.56", "hatch": "5 km", "candy": "50" }, { "number": "178", "image": " <a href=\"/pokemon/178\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/178.png?itok=GfLnNCJ-\" width=\"32\" height=\"32\" alt=\"Xatu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/178\" hreflang=\"en\">Xatu</a>", "sta": "130", "atk": "192", "def": "146", "cp": "1975", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Psychic", "title_1": "天然鳥", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1128.75", "hatch": "", "candy": "" }, { "number": "179", "image": " <a href=\"/pokemon/179\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/179.png?itok=5dGz44BT\" width=\"32\" height=\"32\" alt=\"Mareep\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/179\" hreflang=\"en\">Mareep</a>", "sta": "110", "atk": "114", "def": "82", "cp": "887", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric", "title_1": "咩利羊", "pokemon_class": "", "buddy": "5 km", "egg_cp": "506.95", "hatch": "10 km", "candy": "25" }, { "number": "180", "image": " <a href=\"/pokemon/180\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/180.png?itok=VRMa7nf0\" width=\"32\" height=\"32\" alt=\"Flaaffy\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/180\" hreflang=\"en\">Flaaffy</a>", "sta": "140", "atk": "145", "def": "112", "cp": "1402", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric", "title_1": "茸茸羊", "pokemon_class": "", "buddy": "5 km", "egg_cp": "801.16", "hatch": "", "candy": "100" }, { "number": "181", "image": " <a href=\"/pokemon/181\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/181.png?itok=lfxBCM0z\" width=\"32\" height=\"32\" alt=\"Ampharos\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/181\" hreflang=\"en\">Ampharos</a>", "sta": "180", "atk": "211", "def": "172", "cp": "2695", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric", "title_1": "電龍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1540.20", "hatch": "", "candy": "" }, { "number": "182", "image": " <a href=\"/pokemon/182\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/182.png?itok=h1A2yrHm\" width=\"32\" height=\"32\" alt=\"Bellossom\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/182\" hreflang=\"en\">Bellossom</a>", "sta": "150", "atk": "169", "def": "189", "cp": "2108", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass", "title_1": "美麗花", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1204.77", "hatch": "", "candy": "" }, { "number": "183", "image": " <a href=\"/pokemon/183\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/183.png?itok=4uo4PTny\" width=\"32\" height=\"32\" alt=\"Marill\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/183\" hreflang=\"en\">Marill</a>", "sta": "140", "atk": "37", "def": "93", "cp": "420", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy, Water", "title_1": "瑪力露", "pokemon_class": "", "buddy": "3 km", "egg_cp": "240.11", "hatch": "5 km", "candy": "" }, { "number": "184", "image": " <a href=\"/pokemon/184\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/184.png?itok=N7rHZaWK\" width=\"32\" height=\"32\" alt=\"Azumarill\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/184\" hreflang=\"en\">Azumarill</a>", "sta": "200", "atk": "112", "def": "152", "cp": "1503", "rating": "2", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy, Water", "title_1": "瑪力露麗", "pokemon_class": "", "buddy": "3 km", "egg_cp": "858.84", "hatch": "", "candy": "" }, { "number": "185", "image": " <a href=\"/pokemon/185\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/185.png?itok=RNi3UT-J\" width=\"32\" height=\"32\" alt=\"Sudowoodo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/185\" hreflang=\"en\">Sudowoodo</a>", "sta": "140", "atk": "167", "def": "198", "cp": "2065", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Rock", "title_1": "樹才怪", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1180.21", "hatch": "10 km", "candy": "" }, { "number": "186", "image": " <a href=\"/pokemon/186\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/186.png?itok=MILHifKp\" width=\"32\" height=\"32\" alt=\"Politoed\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/186\" hreflang=\"en\">Politoed</a>", "sta": "180", "atk": "174", "def": "192", "cp": "2371", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "蚊香蛙皇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1355.17", "hatch": "", "candy": "" }, { "number": "187", "image": " <a href=\"/pokemon/187\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/187.png?itok=3I1xnw7v\" width=\"32\" height=\"32\" alt=\"Hoppip\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/187\" hreflang=\"en\">Hoppip</a>", "sta": "70", "atk": "67", "def": "101", "cp": "508", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Grass", "title_1": "毽子草", "pokemon_class": "", "buddy": "3 km", "egg_cp": "290.59", "hatch": "5 km", "candy": "25" }, { "number": "188", "image": " <a href=\"/pokemon/188\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/188.png?itok=UxWddUup\" width=\"32\" height=\"32\" alt=\"Skiploom\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/188\" hreflang=\"en\">Skiploom</a>", "sta": "110", "atk": "91", "def": "127", "cp": "882", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Grass", "title_1": "毽子花", "pokemon_class": "", "buddy": "3 km", "egg_cp": "504.01", "hatch": "", "candy": "100" }, { "number": "189", "image": " <a href=\"/pokemon/189\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/189.png?itok=OcCTsEfh\" width=\"32\" height=\"32\" alt=\"Jumpluff\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/189\" hreflang=\"en\">Jumpluff</a>", "sta": "150", "atk": "118", "def": "197", "cp": "1553", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Grass", "title_1": "毽子棉", "pokemon_class": "", "buddy": "3 km", "egg_cp": "887.75", "hatch": "", "candy": "" }, { "number": "190", "image": " <a href=\"/pokemon/190\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/190.png?itok=Qh2NqLBt\" width=\"32\" height=\"32\" alt=\"Aipom\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/190\" hreflang=\"en\">Aipom</a>", "sta": "110", "atk": "136", "def": "112", "cp": "1188", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "長尾怪手", "pokemon_class": "", "buddy": "3 km", "egg_cp": "678.99", "hatch": "2 km", "candy": "" }, { "number": "191", "image": " <a href=\"/pokemon/191\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/191.png?itok=2jlIt22s\" width=\"32\" height=\"32\" alt=\"Sunkern\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/191\" hreflang=\"en\">Sunkern</a>", "sta": "60", "atk": "55", "def": "55", "cp": "316", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass", "title_1": "向日種子", "pokemon_class": "", "buddy": "3 km", "egg_cp": "181.01", "hatch": "", "candy": "50" }, { "number": "192", "image": " <a href=\"/pokemon/192\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/192.png?itok=uTBZTZcO\" width=\"32\" height=\"32\" alt=\"Sunflora\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/192\" hreflang=\"en\">Sunflora</a>", "sta": "150", "atk": "185", "def": "148", "cp": "2048", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass", "title_1": "向日花怪", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1170.57", "hatch": "", "candy": "" }, { "number": "193", "image": " <a href=\"/pokemon/193\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/193.png?itok=kjWDVsCK\" width=\"32\" height=\"32\" alt=\"Yanma\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/193\" hreflang=\"en\">Yanma</a>", "sta": "130", "atk": "154", "def": "94", "cp": "1326", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Flying", "title_1": "蜻蜻蜓", "pokemon_class": "", "buddy": "3 km", "egg_cp": "758.25", "hatch": "", "candy": "" }, { "number": "194", "image": " <a href=\"/pokemon/194\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/194.png?itok=OS8IS11v\" width=\"32\" height=\"32\" alt=\"Wooper\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/194\" hreflang=\"en\">Wooper</a>", "sta": "110", "atk": "75", "def": "75", "cp": "596", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Water", "title_1": "烏波", "pokemon_class": "", "buddy": "3 km", "egg_cp": "340.68", "hatch": "5 km", "candy": "50" }, { "number": "195", "image": " <a href=\"/pokemon/195\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/195.png?itok=2uyURgnw\" width=\"32\" height=\"32\" alt=\"Quagsire\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/195\" hreflang=\"en\">Quagsire</a>", "sta": "190", "atk": "152", "def": "152", "cp": "1929", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Water", "title_1": "沼王", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1102.76", "hatch": "", "candy": "" }, { "number": "196", "image": " <a href=\"/pokemon/196\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/196.png?itok=55GYRBKL\" width=\"32\" height=\"32\" alt=\"Espeon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/196\" hreflang=\"en\">Espeon</a>", "sta": "130", "atk": "261", "def": "194", "cp": "3000", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Psychic", "title_1": "太陽伊布", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1714.73", "hatch": "", "candy": "" }, { "number": "197", "image": " <a href=\"/pokemon/197\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/197.png?itok=WxdfrPzE\" width=\"32\" height=\"32\" alt=\"Umbreon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/197\" hreflang=\"en\">Umbreon</a>", "sta": "190", "atk": "126", "def": "250", "cp": "2052", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dark", "title_1": "月亮伊布", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1172.87", "hatch": "", "candy": "" }, { "number": "198", "image": " <a href=\"/pokemon/198\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/198.png?itok=ZrFUZ0tg\" width=\"32\" height=\"32\" alt=\"Murkrow\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/198\" hreflang=\"en\">Murkrow</a>", "sta": "120", "atk": "175", "def": "87", "cp": "1392", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dark, Flying", "title_1": "黑暗鴉", "pokemon_class": "", "buddy": "3 km", "egg_cp": "795.70", "hatch": "", "candy": "" }, { "number": "199", "image": " <a href=\"/pokemon/199\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/199.png?itok=s2kBQ4ow\" width=\"32\" height=\"32\" alt=\"Slowking\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/199\" hreflang=\"en\">Slowking</a>", "sta": "190", "atk": "177", "def": "194", "cp": "2482", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Psychic, Water", "title_1": "呆呆王", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1418.34", "hatch": "", "candy": "" }, { "number": "200", "image": " <a href=\"/pokemon/200\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/200.png?itok=7tjoCFlM\" width=\"32\" height=\"32\" alt=\"Misdreavus\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/200\" hreflang=\"en\">Misdreavus</a>", "sta": "120", "atk": "167", "def": "167", "cp": "1781", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ghost", "title_1": "夢妖", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1018.13", "hatch": "2 km", "candy": "" }, { "number": "201", "image": " <a href=\"/pokemon/201\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/201.png?itok=N2nddj-i\" width=\"32\" height=\"32\" alt=\"Unown\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/201\" hreflang=\"en\">Unown</a>", "sta": "96", "atk": "136", "def": "91", "cp": "1022", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Psychic", "title_1": "未知圖騰", "pokemon_class": "", "buddy": "5 km", "egg_cp": "584.55", "hatch": "", "candy": "" }, { "number": "202", "image": " <a href=\"/pokemon/202\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/202.png?itok=3GwczORd\" width=\"32\" height=\"32\" alt=\"Wobbuffet\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/202\" hreflang=\"en\">Wobbuffet</a>", "sta": "380", "atk": "60", "def": "106", "cp": "1024", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Psychic", "title_1": "果然翁", "pokemon_class": "", "buddy": "3 km", "egg_cp": "585.17", "hatch": "5 km", "candy": "" }, { "number": "203", "image": " <a href=\"/pokemon/203\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/203.png?itok=qbDtI_ax\" width=\"32\" height=\"32\" alt=\"Girafarig\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/203\" hreflang=\"en\">Girafarig</a>", "sta": "140", "atk": "182", "def": "133", "cp": "1863", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal, Psychic", "title_1": "麒麟奇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1064.86", "hatch": "5 km", "candy": "" }, { "number": "204", "image": " <a href=\"/pokemon/204\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/204.png?itok=QUJYxvWt\" width=\"32\" height=\"32\" alt=\"Pineco\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/204\" hreflang=\"en\">Pineco</a>", "sta": "100", "atk": "108", "def": "146", "cp": "1045", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug", "title_1": "榛果球", "pokemon_class": "", "buddy": "5 km", "egg_cp": "597.31", "hatch": "5 km", "candy": "50" }, { "number": "205", "image": " <a href=\"/pokemon/205\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/205.png?itok=3zWsn4u4\" width=\"32\" height=\"32\" alt=\"Forretress\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/205\" hreflang=\"en\">Forretress</a>", "sta": "150", "atk": "161", "def": "242", "cp": "2263", "rating": "2", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Steel", "title_1": "佛烈托斯", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1293.46", "hatch": "", "candy": "" }, { "number": "206", "image": " <a href=\"/pokemon/206\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/206.png?itok=oDjMFK1K\" width=\"32\" height=\"32\" alt=\"Dunsparce\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/206\" hreflang=\"en\">Dunsparce</a>", "sta": "200", "atk": "131", "def": "131", "cp": "1615", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "土龍弟弟", "pokemon_class": "", "buddy": "3 km", "egg_cp": "923.16", "hatch": "5 km", "candy": "" }, { "number": "207", "image": " <a href=\"/pokemon/207\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/207.png?itok=otEXm4fp\" width=\"32\" height=\"32\" alt=\"Gligar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/207\" hreflang=\"en\">Gligar</a>", "sta": "130", "atk": "143", "def": "204", "cp": "1758", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Ground", "title_1": "天蠍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1004.83", "hatch": "5 km", "candy": "" }, { "number": "208", "image": " <a href=\"/pokemon/208\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/208.png?itok=wym-5CMb\" width=\"32\" height=\"32\" alt=\"Steelix\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/208\" hreflang=\"en\">Steelix</a>", "sta": "150", "atk": "148", "def": "333", "cp": "2439", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Steel", "title_1": "大鋼蛇", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1393.96", "hatch": "", "candy": "" }, { "number": "209", "image": " <a href=\"/pokemon/209\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/209.png?itok=C4BJhxx5\" width=\"32\" height=\"32\" alt=\"Snubbull\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/209\" hreflang=\"en\">Snubbull</a>", "sta": "120", "atk": "137", "def": "89", "cp": "1124", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy", "title_1": "布魯", "pokemon_class": "", "buddy": "3 km", "egg_cp": "642.77", "hatch": "5 km", "candy": "50" }, { "number": "210", "image": " <a href=\"/pokemon/210\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/210.png?itok=a2Cc3E4t\" width=\"32\" height=\"32\" alt=\"Granbull\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/210\" hreflang=\"en\">Granbull</a>", "sta": "180", "atk": "212", "def": "137", "cp": "2440", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fairy", "title_1": "布魯皇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1394.75", "hatch": "", "candy": "" }, { "number": "211", "image": " <a href=\"/pokemon/211\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/211.png?itok=n5lPhfeB\" width=\"32\" height=\"32\" alt=\"Qwilfish\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/211\" hreflang=\"en\">Qwilfish</a>", "sta": "130", "atk": "184", "def": "148", "cp": "1910", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Poison, Water", "title_1": "千針魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1091.85", "hatch": "5 km", "candy": "" }, { "number": "212", "image": " <a href=\"/pokemon/212\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/212.png?itok=Q7EYC1uf\" width=\"32\" height=\"32\" alt=\"Scizor\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/212\" hreflang=\"en\">Scizor</a>", "sta": "140", "atk": "236", "def": "191", "cp": "2801", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Steel", "title_1": "巨鉗螳螂", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1600.68", "hatch": "", "candy": "" }, { "number": "213", "image": " <a href=\"/pokemon/213\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/213.png?itok=hKicu-dy\" width=\"32\" height=\"32\" alt=\"Shuckle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/213\" hreflang=\"en\">Shuckle</a>", "sta": "40", "atk": "17", "def": "396", "cp": "300", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Rock", "title_1": "壺壺", "pokemon_class": "", "buddy": "3 km", "egg_cp": "171.71", "hatch": "5 km", "candy": "" }, { "number": "214", "image": " <a href=\"/pokemon/214\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/214.png?itok=JdE7amdB\" width=\"32\" height=\"32\" alt=\"Heracross\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/214\" hreflang=\"en\">Heracross</a>", "sta": "160", "atk": "234", "def": "189", "cp": "2938", "rating": "4.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Bug, Fighting", "title_1": "赫拉克羅斯", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1679.05", "hatch": "", "candy": "" }, { "number": "215", "image": " <a href=\"/pokemon/215\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/215.png?itok=SmtxrUzy\" width=\"32\" height=\"32\" alt=\"Sneasel\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/215\" hreflang=\"en\">Sneasel</a>", "sta": "110", "atk": "189", "def": "157", "cp": "1868", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dark, Ice", "title_1": "狃拉", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1067.53", "hatch": "5 km", "candy": "" }, { "number": "216", "image": " <a href=\"/pokemon/216\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/216.png?itok=YK1VR4pQ\" width=\"32\" height=\"32\" alt=\"Teddiursa\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/216\" hreflang=\"en\">Teddiursa</a>", "sta": "120", "atk": "142", "def": "93", "cp": "1184", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "熊寶寶", "pokemon_class": "", "buddy": "3 km", "egg_cp": "676.56", "hatch": "5 km", "candy": "50" }, { "number": "217", "image": " <a href=\"/pokemon/217\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/217.png?itok=BaVaRt8k\" width=\"32\" height=\"32\" alt=\"Ursaring\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/217\" hreflang=\"en\">Ursaring</a>", "sta": "180", "atk": "236", "def": "144", "cp": "2760", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "圈圈熊", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1577.32", "hatch": "", "candy": "" }, { "number": "218", "image": " <a href=\"/pokemon/218\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/218.png?itok=BCrFLefd\" width=\"32\" height=\"32\" alt=\"Limagma\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/218\" hreflang=\"en\">Slugma</a>", "sta": "80", "atk": "118", "def": "71", "cp": "750", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire", "title_1": "熔岩蟲", "pokemon_class": "", "buddy": "1 km", "egg_cp": "429.04", "hatch": "2 km", "candy": "50" }, { "number": "219", "image": " <a href=\"/pokemon/219\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/219.png?itok=JTTuocIg\" width=\"32\" height=\"32\" alt=\"Magcargo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/219\" hreflang=\"en\">Magcargo</a>", "sta": "100", "atk": "139", "def": "209", "cp": "1543", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire, Rock", "title_1": "熔岩蝸牛", "pokemon_class": "", "buddy": "1 km", "egg_cp": "882.11", "hatch": "", "candy": "" }, { "number": "220", "image": " <a href=\"/pokemon/220\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/220.png?itok=-u5xcSI3\" width=\"32\" height=\"32\" alt=\"Swinub\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/220\" hreflang=\"en\">Swinub</a>", "sta": "100", "atk": "90", "def": "74", "cp": "663", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Ice", "title_1": "小山豬", "pokemon_class": "", "buddy": "3 km", "egg_cp": "379.11", "hatch": "5 km", "candy": "50" }, { "number": "221", "image": " <a href=\"/pokemon/221\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/221.png?itok=DZvDgtp7\" width=\"32\" height=\"32\" alt=\"Piloswine\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/221\" hreflang=\"en\">Piloswine</a>", "sta": "200", "atk": "181", "def": "147", "cp": "2284", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Ice", "title_1": "長毛豬", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1305.46", "hatch": "", "candy": "" }, { "number": "222", "image": " <a href=\"/pokemon/222\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/222.png?itok=FSGNEvlP\" width=\"32\" height=\"32\" alt=\"Corsola\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/222\" hreflang=\"en\">Corsola</a>", "sta": "110", "atk": "118", "def": "156", "cp": "1214", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Rock, Water", "title_1": "太陽珊瑚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "693.96", "hatch": "", "candy": "" }, { "number": "223", "image": " <a href=\"/pokemon/223\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/223.png?itok=R9ofGKud\" width=\"32\" height=\"32\" alt=\"Remoraid\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/223\" hreflang=\"en\">Remoraid</a>", "sta": "70", "atk": "127", "def": "69", "cp": "749", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "鐵炮魚", "pokemon_class": "", "buddy": "1 km", "egg_cp": "428.22", "hatch": "2 km", "candy": "50" }, { "number": "224", "image": " <a href=\"/pokemon/224\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/224.png?itok=j58xB-yb\" width=\"32\" height=\"32\" alt=\"Octillery\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/224\" hreflang=\"en\">Octillery</a>", "sta": "150", "atk": "197", "def": "141", "cp": "2124", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "章魚桶", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1213.87", "hatch": "", "candy": "" }, { "number": "225", "image": " <a href=\"/pokemon/225\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/225.png?itok=52iCHZX0\" width=\"32\" height=\"32\" alt=\"Delibird\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/225\" hreflang=\"en\">Delibird</a>", "sta": "90", "atk": "128", "def": "90", "cp": "937", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Ice", "title_1": "信使鳥", "pokemon_class": "", "buddy": "5 km", "egg_cp": "535.87", "hatch": "", "candy": "" }, { "number": "226", "image": " <a href=\"/pokemon/226\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/226.png?itok=YibeC03S\" width=\"32\" height=\"32\" alt=\"Mantine\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/226\" hreflang=\"en\">Mantine</a>", "sta": "130", "atk": "148", "def": "260", "cp": "2032", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Water", "title_1": "巨翅飛魚", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1161.63", "hatch": "5 km", "candy": "" }, { "number": "227", "image": " <a href=\"/pokemon/227\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/227.png?itok=3-K_R-ql\" width=\"32\" height=\"32\" alt=\"Skarmory\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/227\" hreflang=\"en\">Skarmory</a>", "sta": "130", "atk": "148", "def": "260", "cp": "2032", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Steel", "title_1": "盔甲鳥", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1161.63", "hatch": "10 km", "candy": "" }, { "number": "228", "image": " <a href=\"/pokemon/228\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/228.png?itok=CXoj5QZT\" width=\"32\" height=\"32\" alt=\"Houndour\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/228\" hreflang=\"en\">Houndour</a>", "sta": "90", "atk": "152", "def": "93", "cp": "1110", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dark, Fire", "title_1": "戴魯比", "pokemon_class": "", "buddy": "3 km", "egg_cp": "634.68", "hatch": "5 km", "candy": "50" }, { "number": "229", "image": " <a href=\"/pokemon/229\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/229.png?itok=5p8Bx9Op\" width=\"32\" height=\"32\" alt=\"Houndoom\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/229\" hreflang=\"en\">Houndoom</a>", "sta": "150", "atk": "224", "def": "159", "cp": "2529", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dark, Fire", "title_1": "黑魯加", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1445.26", "hatch": "", "candy": "" }, { "number": "230", "image": " <a href=\"/pokemon/230\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/230.png?itok=JgWVmHKG\" width=\"32\" height=\"32\" alt=\"Kingdra\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/230\" hreflang=\"en\">Kingdra</a>", "sta": "150", "atk": "194", "def": "194", "cp": "2424", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dragon, Water", "title_1": "刺龍王", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1385.13", "hatch": "", "candy": "" }, { "number": "231", "image": " <a href=\"/pokemon/231\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/231.png?itok=w3CNsZF1\" width=\"32\" height=\"32\" alt=\"Phanpy\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/231\" hreflang=\"en\">Phanpy</a>", "sta": "180", "atk": "107", "def": "107", "cp": "1175", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground", "title_1": "小小象", "pokemon_class": "", "buddy": "3 km", "egg_cp": "671.56", "hatch": "5 km", "candy": "50" }, { "number": "232", "image": " <a href=\"/pokemon/232\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/232.png?itok=3Q8-3-Wu\" width=\"32\" height=\"32\" alt=\"Donphan\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/232\" hreflang=\"en\">Donphan</a>", "sta": "180", "atk": "214", "def": "214", "cp": "3022", "rating": "4.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground", "title_1": "頓甲", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1727.03", "hatch": "", "candy": "" }, { "number": "233", "image": " <a href=\"/pokemon/233\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/233.png?itok=lHPnlFlg\" width=\"32\" height=\"32\" alt=\"Porygon2\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/233\" hreflang=\"en\">Porygon2</a>", "sta": "170", "atk": "198", "def": "183", "cp": "2546", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "多邊獸Ⅱ", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1454.88", "hatch": "", "candy": "" }, { "number": "234", "image": " <a href=\"/pokemon/234\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/234.png?itok=0BakjdV0\" width=\"32\" height=\"32\" alt=\"Stantler\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/234\" hreflang=\"en\">Stantler</a>", "sta": "146", "atk": "192", "def": "132", "cp": "1988", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "驚角鹿", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1136.51", "hatch": "5 km", "candy": "" }, { "number": "235", "image": " <a href=\"/pokemon/235\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/235.png?itok=mYqBd3Nn\" width=\"32\" height=\"32\" alt=\"Smeargle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/235\" hreflang=\"en\">Smeargle</a>", "sta": "110", "atk": "40", "def": "88", "cp": "389", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "圖圖犬", "pokemon_class": "", "buddy": "3 km", "egg_cp": "222.72", "hatch": "", "candy": "" }, { "number": "236", "image": " <a href=\"/pokemon/236\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/236.png?itok=6mmqhFqw\" width=\"32\" height=\"32\" alt=\"Tyrogue\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/236\" hreflang=\"en\">Tyrogue</a>", "sta": "70", "atk": "64", "def": "64", "cp": "404", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fighting", "title_1": "無畏小子", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "231.04", "hatch": "5 km", "candy": "25" }, { "number": "237", "image": " <a href=\"/pokemon/237\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/237.png?itok=uan6c82Z\" width=\"32\" height=\"32\" alt=\"Hitmontop\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/237\" hreflang=\"en\">Hitmontop</a>", "sta": "100", "atk": "173", "def": "214", "cp": "1905", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fighting", "title_1": "戰舞郎", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1088.82", "hatch": "", "candy": "" }, { "number": "238", "image": " <a href=\"/pokemon/238\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/238.png?itok=HCTMqNUK\" width=\"32\" height=\"32\" alt=\"Smoochum\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/238\" hreflang=\"en\">Smoochum</a>", "sta": "90", "atk": "153", "def": "116", "cp": "1230", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ice, Psychic", "title_1": "迷唇娃", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "703.19", "hatch": "5 km", "candy": "25" }, { "number": "239", "image": " <a href=\"/pokemon/239\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/239.png?itok=7lSVIeeL\" width=\"32\" height=\"32\" alt=\"Elekid\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/239\" hreflang=\"en\">Elekid</a>", "sta": "90", "atk": "135", "def": "110", "cp": "1073", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric", "title_1": "電擊怪", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "613.30", "hatch": "5 km", "candy": "25" }, { "number": "240", "image": " <a href=\"/pokemon/240\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/240.png?itok=w4ZJZvNd\" width=\"32\" height=\"32\" alt=\"Magby\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/240\" hreflang=\"en\">Magby</a>", "sta": "90", "atk": "151", "def": "108", "cp": "1178", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire", "title_1": "鴨嘴寶寶", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "673.27", "hatch": "5 km", "candy": "25" }, { "number": "241", "image": " <a href=\"/pokemon/241\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/241.png?itok=BgMz1VYV\" width=\"32\" height=\"32\" alt=\"Miltank\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/241\" hreflang=\"en\">Miltank</a>", "sta": "190", "atk": "157", "def": "211", "cp": "2312", "rating": "3.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "大奶罐", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1321.27", "hatch": "10 km", "candy": "" }, { "number": "242", "image": " <a href=\"/pokemon/242\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/242.png?itok=XRQDmo0T\" width=\"32\" height=\"32\" alt=\"Blissey\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/242\" hreflang=\"en\">Blissey</a>", "sta": "510", "atk": "129", "def": "229", "cp": "3219", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Normal", "title_1": "幸福蛋", "pokemon_class": "Normal", "buddy": "5 km", "egg_cp": "1839.36", "hatch": "", "candy": "" }, { "number": "243", "image": " <a href=\"/pokemon/243\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/243.png?itok=vDoxuA57\" width=\"32\" height=\"32\" alt=\"Raikou\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/243\" hreflang=\"en\">Raikou</a>", "sta": "180", "atk": "241", "def": "210", "cp": "3349", "rating": "4.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Electric", "title_1": "雷公", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1913.72", "hatch": "", "candy": "" }, { "number": "244", "image": " <a href=\"/pokemon/244\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/244.png?itok=NPdJ1IDK\" width=\"32\" height=\"32\" alt=\"Entei\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/244\" hreflang=\"en\">Entei</a>", "sta": "230", "atk": "235", "def": "176", "cp": "3377", "rating": "4.5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire", "title_1": "炎帝", "pokemon_class": "", "buddy": "20 km", "egg_cp": "1930.06", "hatch": "", "candy": "" }, { "number": "245", "image": " <a href=\"/pokemon/245\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/245.png?itok=X_cwaTbd\" width=\"32\" height=\"32\" alt=\"Suicune\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/245\" hreflang=\"en\">Suicune</a>", "sta": "200", "atk": "180", "def": "235", "cp": "2823", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Water", "title_1": "水君", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1613.45", "hatch": "", "candy": "" }, { "number": "246", "image": " <a href=\"/pokemon/246\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/246.png?itok=_amJQbq4\" width=\"32\" height=\"32\" alt=\"Larvitar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/246\" hreflang=\"en\">Larvitar</a>", "sta": "100", "atk": "115", "def": "93", "cp": "904", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Rock", "title_1": "幼基拉斯", "pokemon_class": "", "buddy": "5 km", "egg_cp": "517.05", "hatch": "10 km", "candy": "25" }, { "number": "247", "image": " <a href=\"/pokemon/247\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/247.png?itok=7pkPNbfI\" width=\"32\" height=\"32\" alt=\"Pupitar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/247\" hreflang=\"en\">Pupitar</a>", "sta": "140", "atk": "155", "def": "133", "cp": "1608", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Ground, Rock", "title_1": "沙基拉斯", "pokemon_class": "", "buddy": "5 km", "egg_cp": "918.92", "hatch": "", "candy": "100" }, { "number": "248", "image": " <a href=\"/pokemon/248\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/248.png?itok=Pth7rPr1\" width=\"32\" height=\"32\" alt=\"Tyranitar\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/248\" hreflang=\"en\">Tyranitar</a>", "sta": "200", "atk": "251", "def": "212", "cp": "3670", "rating": "5", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Dark, Rock", "title_1": "班基拉斯", "pokemon_class": "", "buddy": "5 km", "egg_cp": "2097.22", "hatch": "", "candy": "" }, { "number": "249", "image": " <a href=\"/pokemon/249\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/249.png?itok=n3LWeIK2\" width=\"32\" height=\"32\" alt=\"Lugia\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/249\" hreflang=\"en\">Lugia</a>", "sta": "212", "atk": "193", "def": "323", "cp": "3598", "rating": "4", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Flying, Psychic", "title_1": "洛奇亞", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2056.20", "hatch": "", "candy": "" }, { "number": "250", "image": " <a href=\"/pokemon/250\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/250.png?itok=bv22xDm6\" width=\"32\" height=\"32\" alt=\"Ho-Oh\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/250\" hreflang=\"en\">Ho-Oh</a>", "sta": "193", "atk": "239", "def": "274", "cp": "3889", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Fire, Flying", "title_1": "鳳王", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2222.52", "hatch": "", "candy": "" }, { "number": "251", "image": " <a href=\"/pokemon/251\"><img src=\"/sites/default/files/styles/pokemon_small/public/2016-09/251.png?itok=xbShPnNz\" width=\"32\" height=\"32\" alt=\"Celebi\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/251\" hreflang=\"en\">Celebi</a>", "sta": "200", "atk": "210", "def": "210", "cp": "3090", "rating": "-", "field_pokemon_generation": "Generation 2", "field_pokemon_type": "Grass, Psychic", "title_1": "時拉比", "pokemon_class": "Legendary", "buddy": "5 km", "egg_cp": "1766.13", "hatch": "", "candy": "" }, { "number": "252", "image": " <a href=\"/pokemon/252\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/252_1.png?itok=wcBjxvhV\" width=\"32\" height=\"32\" alt=\"Treecko\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/252\" hreflang=\"en\">Treecko</a>", "sta": "80", "atk": "124", "def": "104", "cp": "923", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass", "title_1": "木守宮", "pokemon_class": "", "buddy": "3 km", "egg_cp": "527.45", "hatch": "5 km", "candy": "25" }, { "number": "253", "image": " <a href=\"/pokemon/253\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/253_1.png?itok=XLTUjMAe\" width=\"32\" height=\"32\" alt=\"Grovyle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/253\" hreflang=\"en\">Grovyle</a>", "sta": "100", "atk": "172", "def": "130", "cp": "1508", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass", "title_1": "森林蜥蜴", "pokemon_class": "", "buddy": "3 km", "egg_cp": "861.80", "hatch": "", "candy": "100" }, { "number": "254", "image": " <a href=\"/pokemon/254\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/254_0.png?itok=ZOp1BabI\" width=\"32\" height=\"32\" alt=\"Sceptile\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/254\" hreflang=\"en\">Sceptile</a>", "sta": "140", "atk": "223", "def": "180", "cp": "2584", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass", "title_1": "蜥蜴王", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1476.69", "hatch": "", "candy": "" }, { "number": "255", "image": " <a href=\"/pokemon/255\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/255_0.png?itok=tUhORKRS\" width=\"32\" height=\"32\" alt=\"Torchic\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/255\" hreflang=\"en\">Torchic</a>", "sta": "90", "atk": "130", "def": "92", "cp": "959", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fire", "title_1": "火稚雞", "pokemon_class": "", "buddy": "3 km", "egg_cp": "548.51", "hatch": "5 km", "candy": "25" }, { "number": "256", "image": " <a href=\"/pokemon/256\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/256_0.png?itok=MZ4AG3u1\" width=\"32\" height=\"32\" alt=\"Combusken\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/256\" hreflang=\"en\">Combusken</a>", "sta": "120", "atk": "163", "def": "115", "cp": "1472", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting, Fire", "title_1": "力壯雞", "pokemon_class": "", "buddy": "3 km", "egg_cp": "841.57", "hatch": "", "candy": "100" }, { "number": "257", "image": " <a href=\"/pokemon/257\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/257_0.png?itok=QwpaRfSi\" width=\"32\" height=\"32\" alt=\"Blaziken\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/257\" hreflang=\"en\">Blaziken</a>", "sta": "160", "atk": "240", "def": "141", "cp": "2631", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting, Fire", "title_1": "火焰雞", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1503.67", "hatch": "", "candy": "" }, { "number": "258", "image": " <a href=\"/pokemon/258\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/258_0.png?itok=9Je26Nxd\" width=\"32\" height=\"32\" alt=\"Mudkip\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/258\" hreflang=\"en\">Mudkip</a>", "sta": "100", "atk": "126", "def": "93", "cp": "981", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "水躍魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "560.80", "hatch": "5 km", "candy": "25" }, { "number": "259", "image": " <a href=\"/pokemon/259\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/259_0.png?itok=XdOuwA_-\" width=\"32\" height=\"32\" alt=\"Marshtomp\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/259\" hreflang=\"en\">Marshtomp</a>", "sta": "140", "atk": "156", "def": "133", "cp": "1617", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground, Water", "title_1": "沼躍魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "924.32", "hatch": "", "candy": "100" }, { "number": "260", "image": " <a href=\"/pokemon/260\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/260_0.png?itok=vnHcTy8o\" width=\"32\" height=\"32\" alt=\"Swampert\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/260\" hreflang=\"en\">Swampert</a>", "sta": "200", "atk": "208", "def": "175", "cp": "2815", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground, Water", "title_1": "巨沼怪", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1608.54", "hatch": "", "candy": "" }, { "number": "261", "image": " <a href=\"/pokemon/261\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/261_0.png?itok=ojDwGdxZ\" width=\"32\" height=\"32\" alt=\"Poochyena\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/261\" hreflang=\"en\">Poochyena</a>", "sta": "70", "atk": "96", "def": "63", "cp": "564", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark", "title_1": "土狼犬", "pokemon_class": "", "buddy": "1 km", "egg_cp": "322.56", "hatch": "2 km", "candy": "50" }, { "number": "262", "image": " <a href=\"/pokemon/262\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/262_0.png?itok=dW4JC0sD\" width=\"32\" height=\"32\" alt=\"Mightyena\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/262\" hreflang=\"en\">Mightyena</a>", "sta": "140", "atk": "171", "def": "137", "cp": "1783", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark", "title_1": "大狼犬", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1018.90", "hatch": "", "candy": "" }, { "number": "263", "image": " <a href=\"/pokemon/263\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/263_0.png?itok=t3e0WD3f\" width=\"32\" height=\"32\" alt=\"Zigzagoon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/263\" hreflang=\"en\">Zigzagoon</a>", "sta": "76", "atk": "58", "def": "80", "cp": "423", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "蛇紋熊", "pokemon_class": "", "buddy": "1 km", "egg_cp": "242.23", "hatch": "2 km", "candy": "50" }, { "number": "264", "image": " <a href=\"/pokemon/264\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/264.png?itok=PQdBXs43\" width=\"32\" height=\"32\" alt=\"Linoone\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/264\" hreflang=\"en\">Linoone</a>", "sta": "156", "atk": "142", "def": "128", "cp": "1533", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "直衝熊", "pokemon_class": "", "buddy": "1 km", "egg_cp": "876.19", "hatch": "", "candy": "" }, { "number": "265", "image": " <a href=\"/pokemon/265\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/265_0.png?itok=qJVtFRj3\" width=\"32\" height=\"32\" alt=\"Wurmple\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/265\" hreflang=\"en\">Wurmple</a>", "sta": "90", "atk": "75", "def": "61", "cp": "502", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug", "title_1": "刺尾蟲", "pokemon_class": "", "buddy": "1 km", "egg_cp": "286.93", "hatch": "2 km", "candy": "12" }, { "number": "266", "image": " <a href=\"/pokemon/266\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/266.png?itok=bd2QGt2o\" width=\"32\" height=\"32\" alt=\"Silcoon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/266\" hreflang=\"en\">Silcoon</a>", "sta": "100", "atk": "60", "def": "91", "cp": "517", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug", "title_1": "甲殼繭", "pokemon_class": "", "buddy": "1 km", "egg_cp": "295.53", "hatch": "", "candy": "50" }, { "number": "267", "image": " <a href=\"/pokemon/267\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/267.png?itok=Hga_igOH\" width=\"32\" height=\"32\" alt=\"Beautifly\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/267\" hreflang=\"en\">Beautifly</a>", "sta": "120", "atk": "189", "def": "98", "cp": "1573", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Flying", "title_1": "狩獵鳳蝶", "pokemon_class": "", "buddy": "1 km", "egg_cp": "899.22", "hatch": "", "candy": "" }, { "number": "268", "image": " <a href=\"/pokemon/268\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/268.png?itok=2h_68Kku\" width=\"32\" height=\"32\" alt=\"Cascoon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/268\" hreflang=\"en\">Cascoon</a>", "sta": "100", "atk": "60", "def": "91", "cp": "517", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug", "title_1": "盾甲繭", "pokemon_class": "", "buddy": "1 km", "egg_cp": "295.53", "hatch": "", "candy": "50" }, { "number": "269", "image": " <a href=\"/pokemon/269\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/269_0.png?itok=xkS-OSK9\" width=\"32\" height=\"32\" alt=\"Dustox\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/269\" hreflang=\"en\">Dustox</a>", "sta": "120", "atk": "98", "def": "172", "cp": "1121", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Poison", "title_1": "毒粉蛾", "pokemon_class": "", "buddy": "1 km", "egg_cp": "640.76", "hatch": "", "candy": "" }, { "number": "270", "image": " <a href=\"/pokemon/270\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/270_0.png?itok=w86A-Lap\" width=\"32\" height=\"32\" alt=\"ハスボー\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/270\" hreflang=\"en\">Lotad</a>", "sta": "80", "atk": "71", "def": "86", "cp": "526", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass, Water", "title_1": "蓮葉童子", "pokemon_class": "", "buddy": "3 km", "egg_cp": "300.64", "hatch": "", "candy": "25" }, { "number": "271", "image": " <a href=\"/pokemon/271\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/271_0.png?itok=gNXoQYGA\" width=\"32\" height=\"32\" alt=\"Lombre\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/271\" hreflang=\"en\">Lombre</a>", "sta": "120", "atk": "112", "def": "128", "cp": "1102", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass, Water", "title_1": "蓮帽小童", "pokemon_class": "", "buddy": "3 km", "egg_cp": "629.75", "hatch": "", "candy": "100" }, { "number": "272", "image": " <a href=\"/pokemon/272\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/272_0.png?itok=PdQbj4Ck\" width=\"32\" height=\"32\" alt=\"Ludicolo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/272\" hreflang=\"en\">Ludicolo</a>", "sta": "160", "atk": "173", "def": "191", "cp": "2229", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass, Water", "title_1": "樂天河童", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1273.92", "hatch": "", "candy": "" }, { "number": "273", "image": " <a href=\"/pokemon/273\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/273_0.png?itok=7wFjrrN1\" width=\"32\" height=\"32\" alt=\"Seedot\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/273\" hreflang=\"en\">Seedot</a>", "sta": "80", "atk": "71", "def": "86", "cp": "526", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass", "title_1": "橡實果", "pokemon_class": "", "buddy": "3 km", "egg_cp": "300.64", "hatch": "", "candy": "25" }, { "number": "274", "image": " <a href=\"/pokemon/274\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/274_0.png?itok=1C39ebcZ\" width=\"32\" height=\"32\" alt=\"Nuzleaf\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/274\" hreflang=\"en\">Nuzleaf</a>", "sta": "140", "atk": "134", "def": "78", "cp": "1117", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Grass", "title_1": "長鼻葉", "pokemon_class": "", "buddy": "3 km", "egg_cp": "638.45", "hatch": "", "candy": "100" }, { "number": "275", "image": " <a href=\"/pokemon/275\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/275_0.png?itok=sAADixGN\" width=\"32\" height=\"32\" alt=\"Shiftry\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/275\" hreflang=\"en\">Shiftry</a>", "sta": "180", "atk": "200", "def": "121", "cp": "2186", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Grass", "title_1": "狡猾天狗", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1249.56", "hatch": "", "candy": "" }, { "number": "276", "image": " <a href=\"/pokemon/276\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/276_0.png?itok=Dc8it7cX\" width=\"32\" height=\"32\" alt=\"Taillow\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/276\" hreflang=\"en\">Taillow</a>", "sta": "80", "atk": "106", "def": "61", "cp": "642", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Flying, Normal", "title_1": "傲骨燕", "pokemon_class": "", "buddy": "1 km", "egg_cp": "366.93", "hatch": "", "candy": "50" }, { "number": "277", "image": " <a href=\"/pokemon/277\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/277_0.png?itok=8qmep603\" width=\"32\" height=\"32\" alt=\"Swellow\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/277\" hreflang=\"en\">Swellow</a>", "sta": "120", "atk": "185", "def": "130", "cp": "1747", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Flying, Normal", "title_1": "大王燕", "pokemon_class": "", "buddy": "1 km", "egg_cp": "998.65", "hatch": "", "candy": "" }, { "number": "278", "image": " <a href=\"/pokemon/278\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/278_0.png?itok=o-akEDQ0\" width=\"32\" height=\"32\" alt=\"Wingull\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/278\" hreflang=\"en\">Wingull</a>", "sta": "80", "atk": "106", "def": "61", "cp": "642", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Flying, Water", "title_1": "長翅鷗", "pokemon_class": "", "buddy": "3 km", "egg_cp": "366.93", "hatch": "", "candy": "50" }, { "number": "279", "image": " <a href=\"/pokemon/279\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/279_0.png?itok=Ij2Rc2R9\" width=\"32\" height=\"32\" alt=\"Pelipper\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/279\" hreflang=\"en\">Pelipper</a>", "sta": "120", "atk": "175", "def": "189", "cp": "1969", "rating": "2.5", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Flying, Water", "title_1": "大嘴鷗", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1125.29", "hatch": "", "candy": "" }, { "number": "280", "image": " <a href=\"/pokemon/280\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/280_0.png?itok=cS4T5T3n\" width=\"32\" height=\"32\" alt=\"Ralts\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/280\" hreflang=\"en\">Ralts</a>", "sta": "56", "atk": "79", "def": "63", "cp": "436", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fairy, Psychic", "title_1": "拉魯拉絲", "pokemon_class": "", "buddy": "5 km", "egg_cp": "249.65", "hatch": "10 km", "candy": "25" }, { "number": "281", "image": " <a href=\"/pokemon/281\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/281_0.png?itok=qgZMLfQs\" width=\"32\" height=\"32\" alt=\"Kirlia\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/281\" hreflang=\"en\">Kirlia</a>", "sta": "76", "atk": "117", "def": "100", "cp": "843", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fairy, Psychic", "title_1": "奇魯莉安", "pokemon_class": "", "buddy": "5 km", "egg_cp": "481.92", "hatch": "", "candy": "100" }, { "number": "282", "image": " <a href=\"/pokemon/282\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/282_0.png?itok=AQKNyQFj\" width=\"32\" height=\"32\" alt=\"Gardevoir\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/282\" hreflang=\"en\">Gardevoir</a>", "sta": "136", "atk": "237", "def": "220", "cp": "2964", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fairy, Psychic", "title_1": "沙奈朵", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1694.16", "hatch": "", "candy": "" }, { "number": "283", "image": " <a href=\"/pokemon/283\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/283_0.png?itok=Vwul9fUn\" width=\"32\" height=\"32\" alt=\"Surskit\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/283\" hreflang=\"en\">Surskit</a>", "sta": "80", "atk": "93", "def": "97", "cp": "695", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Water", "title_1": "溜溜糖球", "pokemon_class": "", "buddy": "1 km", "egg_cp": "397.58", "hatch": "", "candy": "50" }, { "number": "284", "image": " <a href=\"/pokemon/284\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/284_0.png?itok=zdh6I6u8\" width=\"32\" height=\"32\" alt=\"Masquerain\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/284\" hreflang=\"en\">Masquerain</a>", "sta": "140", "atk": "192", "def": "161", "cp": "2135", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Flying", "title_1": "雨翅蛾", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1220.18", "hatch": "", "candy": "" }, { "number": "285", "image": " <a href=\"/pokemon/285\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/285_0.png?itok=r1K4FNOJ\" width=\"32\" height=\"32\" alt=\"Shroomish\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/285\" hreflang=\"en\">Shroomish</a>", "sta": "120", "atk": "74", "def": "110", "cp": "722", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass", "title_1": "蘑蘑菇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "412.61", "hatch": "5 km", "candy": "50" }, { "number": "286", "image": " <a href=\"/pokemon/286\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/286_0.png?itok=KQczxv4f\" width=\"32\" height=\"32\" alt=\"Breloom\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/286\" hreflang=\"en\">Breloom</a>", "sta": "120", "atk": "241", "def": "153", "cp": "2407", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting, Grass", "title_1": "斗笠菇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1375.92", "hatch": "", "candy": "" }, { "number": "287", "image": " <a href=\"/pokemon/287\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/287_0.png?itok=4_e18t7C\" width=\"32\" height=\"32\" alt=\"Slakoth\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/287\" hreflang=\"en\">Slakoth</a>", "sta": "120", "atk": "104", "def": "104", "cp": "942", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "懶人獺", "pokemon_class": "", "buddy": "5 km", "egg_cp": "538.29", "hatch": "10 km", "candy": "25" }, { "number": "288", "image": " <a href=\"/pokemon/288\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/288_0.png?itok=5OcYkNZ8\" width=\"32\" height=\"32\" alt=\"Vigoroth\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/288\" hreflang=\"en\">Vigoroth</a>", "sta": "160", "atk": "159", "def": "159", "cp": "1896", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "過動猿", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1083.61", "hatch": "", "candy": "100" }, { "number": "289", "image": " <a href=\"/pokemon/289\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/289_0.png?itok=Z_VCV_Gy\" width=\"32\" height=\"32\" alt=\"Slaking\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/289\" hreflang=\"en\">Slaking</a>", "sta": "273", "atk": "290", "def": "183", "cp": "4548", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "請假王", "pokemon_class": "", "buddy": "5 km", "egg_cp": "2599.32", "hatch": "", "candy": "" }, { "number": "290", "image": " <a href=\"/pokemon/290\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/290_0.png?itok=skW7UIBm\" width=\"32\" height=\"32\" alt=\"Nincada\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/290\" hreflang=\"en\">Nincada</a>", "sta": "62", "atk": "80", "def": "153", "cp": "674", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Ground", "title_1": "土居忍士", "pokemon_class": "", "buddy": "5 km", "egg_cp": "385.62", "hatch": "", "candy": "50" }, { "number": "291", "image": " <a href=\"/pokemon/291\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/291_0.png?itok=x2PnAQkY\" width=\"32\" height=\"32\" alt=\"Ninjask\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/291\" hreflang=\"en\">Ninjask</a>", "sta": "122", "atk": "196", "def": "114", "cp": "1751", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Flying", "title_1": "鐵面忍者", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1001.08", "hatch": "", "candy": "" }, { "number": "292", "image": " <a href=\"/pokemon/292\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/292_0.png?itok=CDnmB3Vc\" width=\"32\" height=\"32\" alt=\"Shedinja\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/292\" hreflang=\"en\">Shedinja</a>", "sta": "2", "atk": "153", "def": "80", "cp": "421", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Ghost", "title_1": "脫殼忍者", "pokemon_class": "", "buddy": "5 km", "egg_cp": "240.95", "hatch": "", "candy": "" }, { "number": "293", "image": " <a href=\"/pokemon/293\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/293_0.png?itok=e1eQO8ie\" width=\"32\" height=\"32\" alt=\"Chuchmur\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/293\" hreflang=\"en\">Whismur</a>", "sta": "128", "atk": "92", "def": "42", "cp": "603", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "咕妞妞", "pokemon_class": "", "buddy": "1 km", "egg_cp": "344.76", "hatch": "", "candy": "12" }, { "number": "294", "image": " <a href=\"/pokemon/294\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/294_0.png?itok=_nW9LvF_\" width=\"32\" height=\"32\" alt=\"Loudred\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/294\" hreflang=\"en\">Loudred</a>", "sta": "168", "atk": "134", "def": "81", "cp": "1233", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "吼爆彈", "pokemon_class": "", "buddy": "1 km", "egg_cp": "704.82", "hatch": "", "candy": "50" }, { "number": "295", "image": " <a href=\"/pokemon/295\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/295_0.png?itok=PKq9H0UL\" width=\"32\" height=\"32\" alt=\"Exploud\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/295\" hreflang=\"en\">Exploud</a>", "sta": "208", "atk": "179", "def": "142", "cp": "2267", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "爆音怪", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1295.49", "hatch": "", "candy": "" }, { "number": "296", "image": " <a href=\"/pokemon/296\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/296_0.png?itok=KOWNDD02\" width=\"32\" height=\"32\" alt=\"Makuhita\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/296\" hreflang=\"en\">Makuhita</a>", "sta": "144", "atk": "99", "def": "54", "cp": "745", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting", "title_1": "幕下力士", "pokemon_class": "", "buddy": "3 km", "egg_cp": "426.15", "hatch": "5 km", "candy": "50" }, { "number": "297", "image": " <a href=\"/pokemon/297\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/297_0.png?itok=cwPVZM3_\" width=\"32\" height=\"32\" alt=\"Hariyama\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/297\" hreflang=\"en\">Hariyama</a>", "sta": "288", "atk": "209", "def": "114", "cp": "2765", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting", "title_1": "鐵掌力士", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1580.50", "hatch": "", "candy": "" }, { "number": "298", "image": " <a href=\"/pokemon/298\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/298_0.png?itok=MYMaLwrO\" width=\"32\" height=\"32\" alt=\"Azurill\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/298\" hreflang=\"en\">Azurill</a>", "sta": "100", "atk": "36", "def": "71", "cp": "316", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fairy, Normal", "title_1": "露力麗", "pokemon_class": "", "buddy": "3 km", "egg_cp": "181.01", "hatch": "5 km", "candy": "" }, { "number": "299", "image": " <a href=\"/pokemon/299\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/299_0.png?itok=uFMN6Axr\" width=\"32\" height=\"32\" alt=\"Nosepass\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/299\" hreflang=\"en\">Nosepass</a>", "sta": "60", "atk": "82", "def": "236", "cp": "831", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Rock", "title_1": "朝北鼻", "pokemon_class": "", "buddy": "3 km", "egg_cp": "474.97", "hatch": "", "candy": "" }, { "number": "300", "image": " <a href=\"/pokemon/300\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/300_0.png?itok=r5BSR2on\" width=\"32\" height=\"32\" alt=\"Skitty\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/300\" hreflang=\"en\">Skitty</a>", "sta": "100", "atk": "84", "def": "84", "cp": "659", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "向尾喵", "pokemon_class": "", "buddy": "3 km", "egg_cp": "376.99", "hatch": "", "candy": "50" }, { "number": "301", "image": " <a href=\"/pokemon/301\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/301_0.png?itok=AZHVJYGm\" width=\"32\" height=\"32\" alt=\"Delcatty\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/301\" hreflang=\"en\">Delcatty</a>", "sta": "140", "atk": "132", "def": "132", "cp": "1385", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "優雅貓", "pokemon_class": "", "buddy": "3 km", "egg_cp": "791.90", "hatch": "", "candy": "" }, { "number": "302", "image": " <a href=\"/pokemon/302\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/302_0.png?itok=qrcwp7eg\" width=\"32\" height=\"32\" alt=\"Sableye\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/302\" hreflang=\"en\">Sableye</a>", "sta": "100", "atk": "141", "def": "141", "cp": "1305", "rating": "3", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Ghost", "title_1": "勾魂眼", "pokemon_class": "", "buddy": "5 km", "egg_cp": "745.70", "hatch": "10 km", "candy": "" }, { "number": "303", "image": " <a href=\"/pokemon/303\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/303_0.png?itok=ugyKeWMo\" width=\"32\" height=\"32\" alt=\"Mawile\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/303\" hreflang=\"en\">Mawile</a>", "sta": "100", "atk": "155", "def": "155", "cp": "1484", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fairy, Steel", "title_1": "大嘴娃", "pokemon_class": "", "buddy": "5 km", "egg_cp": "848.31", "hatch": "", "candy": "" }, { "number": "304", "image": " <a href=\"/pokemon/304\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/304_0.png?itok=gNiKCqdY\" width=\"32\" height=\"32\" alt=\"Aron\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/304\" hreflang=\"en\">Aron</a>", "sta": "100", "atk": "121", "def": "168", "cp": "1232", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Rock, Steel", "title_1": "可可多拉", "pokemon_class": "", "buddy": "1 km", "egg_cp": "704.12", "hatch": "", "candy": "25" }, { "number": "305", "image": " <a href=\"/pokemon/305\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/305_0.png?itok=P2Y72sf-\" width=\"32\" height=\"32\" alt=\"Lairon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/305\" hreflang=\"en\">Lairon</a>", "sta": "120", "atk": "158", "def": "240", "cp": "2004", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Rock, Steel", "title_1": "可多拉", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1145.55", "hatch": "", "candy": "100" }, { "number": "306", "image": " <a href=\"/pokemon/306\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/306_0.png?itok=wJvpaY9A\" width=\"32\" height=\"32\" alt=\"Aggron\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/306\" hreflang=\"en\">Aggron</a>", "sta": "140", "atk": "198", "def": "314", "cp": "3004", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Rock, Steel", "title_1": "波士可多拉", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1716.62", "hatch": "", "candy": "" }, { "number": "307", "image": " <a href=\"/pokemon/307\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/307_0.png?itok=uS2p6gMS\" width=\"32\" height=\"32\" alt=\"Meditite\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/307\" hreflang=\"en\">Meditite</a>", "sta": "60", "atk": "78", "def": "107", "cp": "555", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting, Psychic", "title_1": "瑪沙那", "pokemon_class": "", "buddy": "3 km", "egg_cp": "317.49", "hatch": "", "candy": "50" }, { "number": "308", "image": " <a href=\"/pokemon/308\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/308_0.png?itok=jr5ghVac\" width=\"32\" height=\"32\" alt=\"Medicham\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/308\" hreflang=\"en\">Medicham</a>", "sta": "120", "atk": "121", "def": "152", "cp": "1275", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fighting, Psychic", "title_1": "恰雷姆", "pokemon_class": "", "buddy": "3 km", "egg_cp": "728.78", "hatch": "", "candy": "" }, { "number": "309", "image": " <a href=\"/pokemon/309\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/309_0.png?itok=uYqwWL6I\" width=\"32\" height=\"32\" alt=\"Electrike\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/309\" hreflang=\"en\">Electrike</a>", "sta": "80", "atk": "123", "def": "78", "cp": "810", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Electric", "title_1": "落雷獸", "pokemon_class": "", "buddy": "3 km", "egg_cp": "462.93", "hatch": "", "candy": "50" }, { "number": "310", "image": " <a href=\"/pokemon/310\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/310_0.png?itok=J4O5rfxQ\" width=\"32\" height=\"32\" alt=\"Manectric\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/310\" hreflang=\"en\">Manectric</a>", "sta": "140", "atk": "215", "def": "127", "cp": "2131", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Electric", "title_1": "雷電獸", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1217.78", "hatch": "", "candy": "" }, { "number": "311", "image": " <a href=\"/pokemon/311\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/311_0.png?itok=_d-b5fPa\" width=\"32\" height=\"32\" alt=\"Plusle\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/311\" hreflang=\"en\">Plusle</a>", "sta": "120", "atk": "167", "def": "147", "cp": "1681", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Electric", "title_1": "正電拍拍", "pokemon_class": "", "buddy": "3 km", "egg_cp": "960.56", "hatch": "", "candy": "" }, { "number": "312", "image": " <a href=\"/pokemon/312\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/312_0.png?itok=2bm_U81a\" width=\"32\" height=\"32\" alt=\"マイナン\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/312\" hreflang=\"en\">Minun</a>", "sta": "120", "atk": "147", "def": "167", "cp": "1585", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Electric", "title_1": "負電拍拍", "pokemon_class": "", "buddy": "3 km", "egg_cp": "906.25", "hatch": "", "candy": "" }, { "number": "313", "image": " <a href=\"/pokemon/313\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/313_0.png?itok=Z96ITMjN\" width=\"32\" height=\"32\" alt=\"Volbeat\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/313\" hreflang=\"en\">Volbeat</a>", "sta": "130", "atk": "143", "def": "171", "cp": "1620", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug", "title_1": "電螢蟲", "pokemon_class": "", "buddy": "3 km", "egg_cp": "926.04", "hatch": "", "candy": "" }, { "number": "314", "image": " <a href=\"/pokemon/314\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/314_0.png?itok=9UKvEH6V\" width=\"32\" height=\"32\" alt=\"Illumise\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/314\" hreflang=\"en\">Illumise</a>", "sta": "130", "atk": "143", "def": "171", "cp": "1620", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug", "title_1": "甜甜螢", "pokemon_class": "", "buddy": "3 km", "egg_cp": "926.04", "hatch": "", "candy": "" }, { "number": "315", "image": " <a href=\"/pokemon/315\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/315_0.png?itok=SS_szVvB\" width=\"32\" height=\"32\" alt=\"Roselia\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/315\" hreflang=\"en\">Roselia</a>", "sta": "100", "atk": "186", "def": "148", "cp": "1718", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass, Poison", "title_1": "毒薔薇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "982.13", "hatch": "", "candy": "" }, { "number": "316", "image": " <a href=\"/pokemon/316\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/316_0.png?itok=ZAXNSXvZ\" width=\"32\" height=\"32\" alt=\"Gulpin\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/316\" hreflang=\"en\">Gulpin</a>", "sta": "140", "atk": "80", "def": "99", "cp": "788", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Poison", "title_1": "溶食獸", "pokemon_class": "", "buddy": "1 km", "egg_cp": "450.68", "hatch": "2 km", "candy": "50" }, { "number": "317", "image": " <a href=\"/pokemon/317\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/317_0.png?itok=ep3ZX6Bh\" width=\"32\" height=\"32\" alt=\"Swalot\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/317\" hreflang=\"en\">Swalot</a>", "sta": "200", "atk": "140", "def": "159", "cp": "1872", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Poison", "title_1": "吞食獸", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1069.93", "hatch": "", "candy": "" }, { "number": "318", "image": " <a href=\"/pokemon/318\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/318_1.png?itok=D2GbQsWs\" width=\"32\" height=\"32\" alt=\"Carvanha\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/318\" hreflang=\"en\">Carvanha</a>", "sta": "90", "atk": "171", "def": "39", "cp": "874", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Water", "title_1": "利牙魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "499.85", "hatch": "", "candy": "50" }, { "number": "319", "image": " <a href=\"/pokemon/319\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/319_0.png?itok=0Qw9KEH_\" width=\"32\" height=\"32\" alt=\"Sharpedo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/319\" hreflang=\"en\">Sharpedo</a>", "sta": "140", "atk": "243", "def": "83", "cp": "1986", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Water", "title_1": "巨牙鯊", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1134.83", "hatch": "", "candy": "" }, { "number": "320", "image": " <a href=\"/pokemon/320\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/320_0.png?itok=w62-5CqN\" width=\"32\" height=\"32\" alt=\"Wailmer\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/320\" hreflang=\"en\">Wailmer</a>", "sta": "260", "atk": "136", "def": "68", "cp": "1424", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "吼吼鯨", "pokemon_class": "Normal", "buddy": "1 km", "egg_cp": "814.17", "hatch": "", "candy": "400" }, { "number": "321", "image": " <a href=\"/pokemon/321\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/321_0.png?itok=7Cgg78yo\" width=\"32\" height=\"32\" alt=\"Wailord\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/321\" hreflang=\"en\">Wailord</a>", "sta": "340", "atk": "175", "def": "87", "cp": "2258", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "吼鯨王", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1290.32", "hatch": "", "candy": "" }, { "number": "322", "image": " <a href=\"/pokemon/322\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/322_0.png?itok=2JXd0MSD\" width=\"32\" height=\"32\" alt=\"Numel\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/322\" hreflang=\"en\">Numel</a>", "sta": "120", "atk": "119", "def": "82", "cp": "957", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fire, Ground", "title_1": "呆火駝", "pokemon_class": "", "buddy": "3 km", "egg_cp": "547.25", "hatch": "", "candy": "50" }, { "number": "323", "image": " <a href=\"/pokemon/323\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/323_0.png?itok=EkxI9hD5\" width=\"32\" height=\"32\" alt=\"Camerupt\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/323\" hreflang=\"en\">Camerupt</a>", "sta": "140", "atk": "194", "def": "139", "cp": "2016", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fire, Ground", "title_1": "噴火駝", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1152.40", "hatch": "", "candy": "" }, { "number": "324", "image": " <a href=\"/pokemon/324\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/324_0.png?itok=dgIW4cGG\" width=\"32\" height=\"32\" alt=\"Torkoal\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/324\" hreflang=\"en\">Torkoal</a>", "sta": "140", "atk": "151", "def": "234", "cp": "2036", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Fire", "title_1": "煤炭龜", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1163.87", "hatch": "", "candy": "" }, { "number": "325", "image": " <a href=\"/pokemon/325\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/325_0.png?itok=GRYC4q2V\" width=\"32\" height=\"32\" alt=\"Spoink\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/325\" hreflang=\"en\">Spoink</a>", "sta": "120", "atk": "125", "def": "145", "cp": "1285", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic", "title_1": "跳跳豬", "pokemon_class": "", "buddy": "1 km", "egg_cp": "734.32", "hatch": "2 km", "candy": "50" }, { "number": "326", "image": " <a href=\"/pokemon/326\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/326_0.png?itok=AHtToTy_\" width=\"32\" height=\"32\" alt=\"Grumpig\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/326\" hreflang=\"en\">Grumpig</a>", "sta": "160", "atk": "171", "def": "211", "cp": "2310", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic", "title_1": "噗噗豬", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1320.13", "hatch": "", "candy": "" }, { "number": "327", "image": " <a href=\"/pokemon/327\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/327_0.png?itok=iSx2cAx1\" width=\"32\" height=\"32\" alt=\"Spinda\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/327\" hreflang=\"en\">Spinda</a>", "sta": "120", "atk": "116", "def": "116", "cp": "1088", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "晃晃斑", "pokemon_class": "", "buddy": "3 km", "egg_cp": "621.73", "hatch": "", "candy": "" }, { "number": "328", "image": " <a href=\"/pokemon/328\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/328_0.png?itok=7vj6PI00\" width=\"32\" height=\"32\" alt=\"Trapinch\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/328\" hreflang=\"en\">Trapinch</a>", "sta": "90", "atk": "162", "def": "78", "cp": "1092", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground", "title_1": "大顎蟻", "pokemon_class": "", "buddy": "5 km", "egg_cp": "624.22", "hatch": "", "candy": "25" }, { "number": "329", "image": " <a href=\"/pokemon/329\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/329_0.png?itok=VLBqR2Vg\" width=\"32\" height=\"32\" alt=\"Vibrava\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/329\" hreflang=\"en\">Vibrava</a>", "sta": "100", "atk": "134", "def": "99", "cp": "1065", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Ground", "title_1": "超音波幼蟲", "pokemon_class": "", "buddy": "5 km", "egg_cp": "608.86", "hatch": "", "candy": "100" }, { "number": "330", "image": " <a href=\"/pokemon/330\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/330_0.png?itok=mpQAWi0W\" width=\"32\" height=\"32\" alt=\"Flygon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/330\" hreflang=\"en\">Flygon</a>", "sta": "160", "atk": "205", "def": "168", "cp": "2458", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Ground", "title_1": "沙漠蜻蜓", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1405.07", "hatch": "", "candy": "" }, { "number": "331", "image": " <a href=\"/pokemon/331\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/331_0.png?itok=hJVat6Sr\" width=\"32\" height=\"32\" alt=\"Cacnea\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/331\" hreflang=\"en\">Cacnea</a>", "sta": "100", "atk": "156", "def": "74", "cp": "1080", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass", "title_1": "刺球仙人掌", "pokemon_class": "", "buddy": "3 km", "egg_cp": "617.41", "hatch": "", "candy": "50" }, { "number": "332", "image": " <a href=\"/pokemon/332\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/332_0.png?itok=RgFXheaA\" width=\"32\" height=\"32\" alt=\"ノクタス\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/332\" hreflang=\"en\">Cacturne</a>", "sta": "140", "atk": "221", "def": "115", "cp": "2092", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Grass", "title_1": "夢歌仙人掌", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1195.58", "hatch": "", "candy": "" }, { "number": "333", "image": " <a href=\"/pokemon/333\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/333_0.png?itok=QsRPcaHQ\" width=\"32\" height=\"32\" alt=\"Swablu\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/333\" hreflang=\"en\">Swablu</a>", "sta": "90", "atk": "76", "def": "139", "cp": "722", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Flying, Normal", "title_1": "青綿鳥", "pokemon_class": "", "buddy": "1 km", "egg_cp": "412.98", "hatch": "", "candy": "50" }, { "number": "334", "image": " <a href=\"/pokemon/334\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/334_0.png?itok=eRUq14Wj\" width=\"32\" height=\"32\" alt=\"Altaria\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/334\" hreflang=\"en\">Altaria</a>", "sta": "150", "atk": "141", "def": "208", "cp": "1868", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Flying", "title_1": "七夕青鳥", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1067.95", "hatch": "", "candy": "" }, { "number": "335", "image": " <a href=\"/pokemon/335\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/335_0.png?itok=VjH6A4ol\" width=\"32\" height=\"32\" alt=\"Zangoose\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/335\" hreflang=\"en\">Zangoose</a>", "sta": "146", "atk": "222", "def": "124", "cp": "2214", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "貓鼬斬", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1265.32", "hatch": "", "candy": "" }, { "number": "336", "image": " <a href=\"/pokemon/336\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/336_0.png?itok=1QdL2p7i\" width=\"32\" height=\"32\" alt=\"Seviper\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/336\" hreflang=\"en\">Seviper</a>", "sta": "146", "atk": "196", "def": "118", "cp": "1928", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Poison", "title_1": "飯匙蛇", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1101.92", "hatch": "", "candy": "" }, { "number": "336", "image": " <a href=\"/pokemon/336-0\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/337_0.png?itok=ipQa6UKQ\" width=\"32\" height=\"32\" alt=\"Lunatone\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/336-0\" hreflang=\"en\">Lunatone</a>", "sta": "180", "atk": "178", "def": "163", "cp": "2245", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic, Rock", "title_1": "月石", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1283.26", "hatch": "", "candy": "" }, { "number": "338", "image": " <a href=\"/pokemon/338\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/338_0.png?itok=79rcC0cL\" width=\"32\" height=\"32\" alt=\"Solrock\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/338\" hreflang=\"en\">Solrock</a>", "sta": "180", "atk": "178", "def": "163", "cp": "2245", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic, Rock", "title_1": "太陽岩", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1283.26", "hatch": "", "candy": "" }, { "number": "339", "image": " <a href=\"/pokemon/339\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/339_0.png?itok=H505f6Ae\" width=\"32\" height=\"32\" alt=\"Barboach\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/339\" hreflang=\"en\">Barboach</a>", "sta": "100", "atk": "93", "def": "83", "cp": "716", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground, Water", "title_1": "泥泥鰍", "pokemon_class": "", "buddy": "1 km", "egg_cp": "409.18", "hatch": "", "candy": "50" }, { "number": "340", "image": " <a href=\"/pokemon/340\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/340_0.png?itok=KI0A4IcR\" width=\"32\" height=\"32\" alt=\"Whiscash\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/340\" hreflang=\"en\">Whiscash</a>", "sta": "220", "atk": "151", "def": "142", "cp": "1991", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground, Water", "title_1": "鯰魚王", "pokemon_class": "", "buddy": "1 km", "egg_cp": "1137.95", "hatch": "", "candy": "" }, { "number": "341", "image": " <a href=\"/pokemon/341\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/341_0.png?itok=3FuJw6JA\" width=\"32\" height=\"32\" alt=\"Corphish\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/341\" hreflang=\"en\">Corphish</a>", "sta": "86", "atk": "141", "def": "113", "cp": "1107", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "龍蝦小兵", "pokemon_class": "", "buddy": "3 km", "egg_cp": "633.03", "hatch": "", "candy": "50" }, { "number": "342", "image": " <a href=\"/pokemon/342\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/342_0.png?itok=a2xKlTXk\" width=\"32\" height=\"32\" alt=\"Crawdaunt\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/342\" hreflang=\"en\">Crawdaunt</a>", "sta": "126", "atk": "224", "def": "156", "cp": "2317", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark, Water", "title_1": "鐵螯龍蝦", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1324.45", "hatch": "", "candy": "" }, { "number": "343", "image": " <a href=\"/pokemon/343\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/343_0.png?itok=5dJ9h66W\" width=\"32\" height=\"32\" alt=\"Baltoy\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/343\" hreflang=\"en\">Baltoy</a>", "sta": "80", "atk": "77", "def": "131", "cp": "676", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground, Psychic", "title_1": "天秤偶", "pokemon_class": "", "buddy": "3 km", "egg_cp": "386.68", "hatch": "", "candy": "50" }, { "number": "344", "image": " <a href=\"/pokemon/344\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/344_0.png?itok=I2VzBWFF\" width=\"32\" height=\"32\" alt=\"Claydol\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/344\" hreflang=\"en\">Claydol</a>", "sta": "120", "atk": "140", "def": "236", "cp": "1782", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground, Psychic", "title_1": "念力土偶", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1018.28", "hatch": "", "candy": "" }, { "number": "345", "image": " <a href=\"/pokemon/345\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/345_0.png?itok=Y9xNvBAk\" width=\"32\" height=\"32\" alt=\"Lileep\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/345\" hreflang=\"en\">Lileep</a>", "sta": "132", "atk": "105", "def": "154", "cp": "1181", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass, Rock", "title_1": "觸手百合", "pokemon_class": "", "buddy": "3 km", "egg_cp": "675.02", "hatch": "", "candy": "50" }, { "number": "346", "image": " <a href=\"/pokemon/346\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/346_0.png?itok=hxWq2zlZ\" width=\"32\" height=\"32\" alt=\"Cradily\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/346\" hreflang=\"en\">Cradily</a>", "sta": "172", "atk": "152", "def": "198", "cp": "2081", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Grass, Rock", "title_1": "搖籃百合", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1189.48", "hatch": "", "candy": "" }, { "number": "347", "image": " <a href=\"/pokemon/347\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/347_0.png?itok=sSS73g-8\" width=\"32\" height=\"32\" alt=\"Anorith\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/347\" hreflang=\"en\">Anorith</a>", "sta": "90", "atk": "176", "def": "100", "cp": "1310", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Rock", "title_1": "太古羽蟲", "pokemon_class": "", "buddy": "3 km", "egg_cp": "749.04", "hatch": "", "candy": "50" }, { "number": "348", "image": " <a href=\"/pokemon/348\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/348_0.png?itok=5r2xy72e\" width=\"32\" height=\"32\" alt=\"Armaldo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/348\" hreflang=\"en\">Armaldo</a>", "sta": "150", "atk": "222", "def": "183", "cp": "2675", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Bug, Rock", "title_1": "太古盔甲", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1528.81", "hatch": "", "candy": "" }, { "number": "349", "image": " <a href=\"/pokemon/349\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/349_0.png?itok=c7iuNp_O\" width=\"32\" height=\"32\" alt=\"Feebas\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/349\" hreflang=\"en\">Feebas</a>", "sta": "40", "atk": "29", "def": "102", "cp": "220", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "醜醜魚", "pokemon_class": "", "buddy": "5 km", "egg_cp": "125.97", "hatch": "", "candy": "100" }, { "number": "350", "image": " <a href=\"/pokemon/350\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/350_0.png?itok=rb29R1lD\" width=\"32\" height=\"32\" alt=\"Milotic\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/350\" hreflang=\"en\">Milotic</a>", "sta": "190", "atk": "192", "def": "242", "cp": "2967", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "美納斯", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1695.68", "hatch": "", "candy": "" }, { "number": "351", "image": " <a href=\"/pokemon/351\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/351_0.png?itok=ybwB0_SZ\" width=\"32\" height=\"32\" alt=\"Castform\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/351\" hreflang=\"en\">Castform</a>", "sta": "140", "atk": "139", "def": "139", "cp": "1486", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "飄浮泡泡", "pokemon_class": "", "buddy": "5 km", "egg_cp": "849.14", "hatch": "", "candy": "" }, { "number": "352", "image": " <a href=\"/pokemon/352\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/352_0.png?itok=Z9wacA6q\" width=\"32\" height=\"32\" alt=\"Kecleon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/352\" hreflang=\"en\">Kecleon</a>", "sta": "120", "atk": "161", "def": "212", "cp": "1924", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Normal", "title_1": "變隱龍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1099.57", "hatch": "", "candy": "" }, { "number": "353", "image": " <a href=\"/pokemon/353\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/353_0.png?itok=lUHvQWoV\" width=\"32\" height=\"32\" alt=\"Shuppet\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/353\" hreflang=\"en\">Shuppet</a>", "sta": "88", "atk": "138", "def": "66", "cp": "872", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ghost", "title_1": "怨影娃娃", "pokemon_class": "", "buddy": "3 km", "egg_cp": "498.75", "hatch": "5 km", "candy": "50" }, { "number": "354", "image": " <a href=\"/pokemon/354\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/354_0.png?itok=m1XT_WRe\" width=\"32\" height=\"32\" alt=\"Banette\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/354\" hreflang=\"en\">Banette</a>", "sta": "128", "atk": "218", "def": "127", "cp": "2073", "rating": "4", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ghost", "title_1": "詛咒娃娃", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1184.95", "hatch": "", "candy": "" }, { "number": "355", "image": " <a href=\"/pokemon/355\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/355_0.png?itok=1hd3tIr_\" width=\"32\" height=\"32\" alt=\"Duskull\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/355\" hreflang=\"en\">Duskull</a>", "sta": "40", "atk": "70", "def": "162", "cp": "523", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ghost", "title_1": "夜巡靈", "pokemon_class": "", "buddy": "3 km", "egg_cp": "299.31", "hatch": "5 km", "candy": "50" }, { "number": "356", "image": " <a href=\"/pokemon/356\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/356_0.png?itok=ForTMa1P\" width=\"32\" height=\"32\" alt=\"Dusclops\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/356\" hreflang=\"en\">Dusclops</a>", "sta": "80", "atk": "124", "def": "234", "cp": "1335", "rating": "3.5", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ghost", "title_1": "彷徨夜靈", "pokemon_class": "", "buddy": "3 km", "egg_cp": "762.97", "hatch": "", "candy": "" }, { "number": "357", "image": " <a href=\"/pokemon/357\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/357_0.png?itok=ky-QYitU\" width=\"32\" height=\"32\" alt=\"Tropius\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/357\" hreflang=\"en\">Tropius</a>", "sta": "198", "atk": "136", "def": "165", "cp": "1846", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Flying, Grass", "title_1": "熱帶龍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1055.20", "hatch": "", "candy": "" }, { "number": "358", "image": " <a href=\"/pokemon/358\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/358_0.png?itok=iPVLJbBr\" width=\"32\" height=\"32\" alt=\"Chimecho\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/358\" hreflang=\"en\">Chimecho</a>", "sta": "150", "atk": "175", "def": "174", "cp": "2095", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic", "title_1": "風鈴鈴", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1197.45", "hatch": "", "candy": "" }, { "number": "359", "image": " <a href=\"/pokemon/359\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/359_0.png?itok=x2wZ0Jtw\" width=\"32\" height=\"32\" alt=\"Absol\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/359\" hreflang=\"en\">Absol</a>", "sta": "130", "atk": "246", "def": "120", "cp": "2280", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dark", "title_1": "阿勃梭魯", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1303.23", "hatch": "", "candy": "" }, { "number": "360", "image": " <a href=\"/pokemon/360\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/360_0.png?itok=FlzjR7F0\" width=\"32\" height=\"32\" alt=\"Wynaut\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/360\" hreflang=\"en\">Wynaut</a>", "sta": "190", "atk": "41", "def": "86", "cp": "503", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic", "title_1": "小果然", "pokemon_class": "", "buddy": "3 km", "egg_cp": "287.58", "hatch": "5 km", "candy": "50" }, { "number": "361", "image": " <a href=\"/pokemon/361\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/361_0.png?itok=1-3aoX4N\" width=\"32\" height=\"32\" alt=\"Snorunt\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/361\" hreflang=\"en\">Snorunt</a>", "sta": "100", "atk": "95", "def": "95", "cp": "772", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ice", "title_1": "雪童子", "pokemon_class": "", "buddy": "3 km", "egg_cp": "441.54", "hatch": "", "candy": "50" }, { "number": "362", "image": " <a href=\"/pokemon/362\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/362_0.png?itok=IhlE68nc\" width=\"32\" height=\"32\" alt=\"Glalie\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/362\" hreflang=\"en\">Glalie</a>", "sta": "160", "atk": "162", "def": "162", "cp": "1945", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ice", "title_1": "冰鬼護", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1111.76", "hatch": "", "candy": "" }, { "number": "363", "image": " <a href=\"/pokemon/363\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/363_0.png?itok=FUGqvGcS\" width=\"32\" height=\"32\" alt=\"Spheal\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/363\" hreflang=\"en\">Spheal</a>", "sta": "140", "atk": "95", "def": "90", "cp": "876", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ice, Water", "title_1": "海豹球", "pokemon_class": "", "buddy": "3 km", "egg_cp": "500.82", "hatch": "", "candy": "25" }, { "number": "364", "image": " <a href=\"/pokemon/364\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/364_0.png?itok=yFmuRWYr\" width=\"32\" height=\"32\" alt=\"Sealeo\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/364\" hreflang=\"en\">Sealeo</a>", "sta": "180", "atk": "137", "def": "132", "cp": "1607", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ice, Water", "title_1": "海魔獅", "pokemon_class": "", "buddy": "3 km", "egg_cp": "918.44", "hatch": "", "candy": "100" }, { "number": "365", "image": " <a href=\"/pokemon/365\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/365_0.png?itok=2Jfp0dL1\" width=\"32\" height=\"32\" alt=\"Walrein\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/365\" hreflang=\"en\">Walrein</a>", "sta": "220", "atk": "182", "def": "176", "cp": "2606", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ice, Water", "title_1": "帝牙海獅", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1489.52", "hatch": "", "candy": "" }, { "number": "366", "image": " <a href=\"/pokemon/366\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/366_0.png?itok=255atAg1\" width=\"32\" height=\"32\" alt=\"Clamperl\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/366\" hreflang=\"en\">Clamperl</a>", "sta": "70", "atk": "133", "def": "149", "cp": "1091", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "珍珠貝", "pokemon_class": "", "buddy": "3 km", "egg_cp": "623.63", "hatch": "", "candy": "50" }, { "number": "367", "image": " <a href=\"/pokemon/367\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/367_0.png?itok=ZsYeec3V\" width=\"32\" height=\"32\" alt=\"Huntail\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/367\" hreflang=\"en\">Huntail</a>", "sta": "110", "atk": "197", "def": "194", "cp": "2140", "rating": "3", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "獵斑魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1222.91", "hatch": "", "candy": "" }, { "number": "368", "image": " <a href=\"/pokemon/368\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/368_0.png?itok=LCUawIcg\" width=\"32\" height=\"32\" alt=\"Gorebyss\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/368\" hreflang=\"en\">Gorebyss</a>", "sta": "110", "atk": "211", "def": "194", "cp": "2281", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "櫻花魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "1303.67", "hatch": "", "candy": "" }, { "number": "369", "image": " <a href=\"/pokemon/369\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/369_0.png?itok=GMRrNUh5\" width=\"32\" height=\"32\" alt=\"Relicanth\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/369\" hreflang=\"en\">Relicanth</a>", "sta": "200", "atk": "162", "def": "234", "cp": "2557", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Rock, Water", "title_1": "古空棘魚", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1461.58", "hatch": "", "candy": "" }, { "number": "370", "image": " <a href=\"/pokemon/370\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/370_0.png?itok=ORqCHcQy\" width=\"32\" height=\"32\" alt=\"Luvdisc\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/370\" hreflang=\"en\">Luvdisc</a>", "sta": "86", "atk": "81", "def": "134", "cp": "735", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "愛心魚", "pokemon_class": "", "buddy": "3 km", "egg_cp": "420.30", "hatch": "", "candy": "" }, { "number": "371", "image": " <a href=\"/pokemon/371\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/371_0.png?itok=pRr5L0_5\" width=\"32\" height=\"32\" alt=\"Bagon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/371\" hreflang=\"en\">Bagon</a>", "sta": "90", "atk": "134", "def": "107", "cp": "1053", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon", "title_1": "寶貝龍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "601.85", "hatch": "", "candy": "25" }, { "number": "372", "image": " <a href=\"/pokemon/372\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/372_0.png?itok=fhSa6n_q\" width=\"32\" height=\"32\" alt=\"Shelgon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/372\" hreflang=\"en\">Shelgon</a>", "sta": "130", "atk": "172", "def": "179", "cp": "1958", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon", "title_1": "甲殼龍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "1119.33", "hatch": "", "candy": "100" }, { "number": "373", "image": " <a href=\"/pokemon/373\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/373_0.png?itok=1WhmK2_f\" width=\"32\" height=\"32\" alt=\"Salamence\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/373\" hreflang=\"en\">Salamence</a>", "sta": "190", "atk": "277", "def": "168", "cp": "3532", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Flying", "title_1": "暴飛龍", "pokemon_class": "", "buddy": "5 km", "egg_cp": "2018.44", "hatch": "", "candy": "" }, { "number": "374", "image": " <a href=\"/pokemon/374\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/374_0.png?itok=Go2QsaHQ\" width=\"32\" height=\"32\" alt=\"Beldum\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/374\" hreflang=\"en\">Beldum</a>", "sta": "80", "atk": "96", "def": "141", "cp": "843", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic, Steel", "title_1": "鐵啞鈴", "pokemon_class": "", "buddy": "5 km", "egg_cp": "482.26", "hatch": "", "candy": "25" }, { "number": "375", "image": " <a href=\"/pokemon/375\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/375_0.png?itok=wAadMQWV\" width=\"32\" height=\"32\" alt=\"Metang\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/375\" hreflang=\"en\">Metang</a>", "sta": "120", "atk": "138", "def": "185", "cp": "1570", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic, Steel", "title_1": "金屬怪", "pokemon_class": "", "buddy": "5 km", "egg_cp": "897.23", "hatch": "", "candy": "100" }, { "number": "376", "image": " <a href=\"/pokemon/376\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/376_0.png?itok=42sWM9dv\" width=\"32\" height=\"32\" alt=\"Metagross\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/376\" hreflang=\"en\">Metagross</a>", "sta": "160", "atk": "257", "def": "247", "cp": "3637", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic, Steel", "title_1": "巨金怪", "pokemon_class": "", "buddy": "5 km", "egg_cp": "2078.59", "hatch": "", "candy": "" }, { "number": "377", "image": " <a href=\"/pokemon/377\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/377_0.png?itok=5fZgWDP6\" width=\"32\" height=\"32\" alt=\"Regirock\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/377\" hreflang=\"en\">Regirock</a>", "sta": "160", "atk": "179", "def": "356", "cp": "3087", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Rock", "title_1": "雷吉洛克", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1764.16", "hatch": "", "candy": "" }, { "number": "378", "image": " <a href=\"/pokemon/378\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/378_0.png?itok=gVxfR59u\" width=\"32\" height=\"32\" alt=\"Regice\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/378\" hreflang=\"en\">Regice</a>", "sta": "160", "atk": "179", "def": "356", "cp": "3087", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ice", "title_1": "雷吉艾斯", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1764.16", "hatch": "", "candy": "" }, { "number": "379", "image": " <a href=\"/pokemon/379\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/379_0.png?itok=duYMsEkv\" width=\"32\" height=\"32\" alt=\"Registeel\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/379\" hreflang=\"en\">Registeel</a>", "sta": "160", "atk": "143", "def": "285", "cp": "2261", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Steel", "title_1": "雷吉斯奇魯", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1292.01", "hatch": "", "candy": "" }, { "number": "380", "image": " <a href=\"/pokemon/380\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/380_0.png?itok=QVMGt-yE\" width=\"32\" height=\"32\" alt=\"Latias\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/380\" hreflang=\"en\">Latias</a>", "sta": "160", "atk": "228", "def": "268", "cp": "3377", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Psychic", "title_1": "拉帝亞斯", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1929.96", "hatch": "", "candy": "" }, { "number": "381", "image": " <a href=\"/pokemon/381\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/381_0.png?itok=csNSBrxy\" width=\"32\" height=\"32\" alt=\"Latios\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/381\" hreflang=\"en\">Latios</a>", "sta": "160", "atk": "268", "def": "228", "cp": "3644", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Psychic", "title_1": "拉帝歐斯", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2082.76", "hatch": "", "candy": "" }, { "number": "382", "image": " <a href=\"/pokemon/382\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/382_0.png?itok=oPDVodS5\" width=\"32\" height=\"32\" alt=\"Kyogre\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/382\" hreflang=\"en\">Kyogre</a>", "sta": "200", "atk": "297", "def": "276", "cp": "4874", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Water", "title_1": "蓋歐卡", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2785.16", "hatch": "", "candy": "" }, { "number": "383", "image": " <a href=\"/pokemon/383\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/383_0.png?itok=kHrk25oQ\" width=\"32\" height=\"32\" alt=\"Groudon\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/383\" hreflang=\"en\">Groudon</a>", "sta": "182", "atk": "270", "def": "251", "cp": "4074", "rating": "5", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Ground", "title_1": "固拉多", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2328.36", "hatch": "", "candy": "" }, { "number": "384", "image": " <a href=\"/pokemon/384\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/384_0.png?itok=LMiqWSDC\" width=\"32\" height=\"32\" alt=\"Rayquaza\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/384\" hreflang=\"en\">Rayquaza</a>", "sta": "210", "atk": "312", "def": "187", "cp": "4354", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Dragon, Flying", "title_1": "烈空坐", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "2487.97", "hatch": "", "candy": "" }, { "number": "385", "image": " <a href=\"/pokemon/385\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/385_0.png?itok=lRe_8Uha\" width=\"32\" height=\"32\" alt=\"Jirachi\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/385\" hreflang=\"en\">Jirachi</a>", "sta": "200", "atk": "210", "def": "210", "cp": "3090", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic, Steel", "title_1": "基拉祈", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1766.13", "hatch": "", "candy": "" }, { "number": "386", "image": " <a href=\"/pokemon/386\"><img src=\"/sites/default/files/styles/pokemon_small/public/2017-08/386_0.png?itok=BtTlL4Aj\" width=\"32\" height=\"32\" alt=\"Deoxys\" typeof=\"foaf:Image\" class=\"image-style-pokemon-small\" />\n\n</a>\n", "title": "<a href=\"/pokemon/386\" hreflang=\"en\">Deoxys</a>", "sta": "100", "atk": "345", "def": "115", "cp": "2749", "rating": "-", "field_pokemon_generation": "Generation 3", "field_pokemon_type": "Psychic", "title_1": "代歐奇希斯", "pokemon_class": "Legendary", "buddy": "20 km", "egg_cp": "1570.92", "hatch": "", "candy": "" } ]
/* globals localStorage, fetch, Vue */
// const BEST_PROPERTY = 15;
const MAX_LV = 40;
const WILD_PM_MAX_LV = 35;
const VERSION = '2017-12-31';
const ALL_TYPES = ['normal', 'fighting', 'flying', 'poison', 'ground', 'rock', 'bug', 'ghost', 'steel', 'fire', 'water', 'grass', 'electric', 'psychic', 'ice', 'dragon', 'dark', 'fairy'];
let localVersion = localStorage.getItem(VERSION);
let isOutdated = !localVersion;
let localData = {
pokeData: null,
levelCpMultiplier: null
};
if (isOutdated) {
localStorage.clear();
localData = {};
}
let upstreamUrls = {
pokeData: 'https://raw.githubusercontent.com/Rplus/pokemongo-json-pokedex/master/output/pokemon.json',
newPMs: 'pms.json',
levelCpMultiplier: 'https://cdn.rawgit.com/Rplus/a4f16be334a5a458144c1fc425034ed3/raw/ced3970da1e6eed8b7fc4512bc2231159ad4cbde/levelCpMultiplier.json'
};
// for dev
// if (/^\/_dist/.test(window.location.pathname)) {
// for (var name in upstreamUrls) {
// upstreamUrls[name] = upstreamUrls[name].match(/.*\/(.+?\.json)$/)[1];
// }
// }
// source: https://github.com/vinnymac/PokeNurse/blob/v1.5.4/app/utils.js#L164-L170
let getMaxCpWithLv = (poke, pmLv) => {
let _iv = vm.iv;
let maxPokemonLevel = Math.min(MAX_LV, pmLv);
let maxCpMultiplier = localData.levelCpMultiplier[maxPokemonLevel];
let ADS = (poke.stats.baseAttack + _iv.attack) * Math.pow((poke.stats.baseDefense + _iv.defense) * (poke.stats.baseStamina + _iv.stamina), 0.5);
let total = ADS * Math.pow(maxCpMultiplier, 2.0);
poke.hp = Math.floor((poke.stats.baseStamina + _iv.stamina) * maxCpMultiplier);
return Math.floor(total / 10);
};
let initData = {
lv: MAX_LV
};
if (window.location.search) {
try {
initData = JSON.parse(decodeURIComponent(window.location.search.slice(1)));
} catch (e) {
console.error(e);
}
}
let vm = new Vue({
el: '#pokeMaxCP',
data: {
trainerLevel: initData.lv,
pmLv: initData.pmLv || WILD_PM_MAX_LV,
isPmWild: initData.isPmWild !== undefined ? initData.isPmWild : true,
filter: {
type: initData.filter || ALL_TYPES,
familyId: 1
},
iv: {
attack: 15,
defense: 15,
stamina: 15,
...initData.iv
},
sort: {
by: 'id',
dir: 1
},
range1: initData.range1 || 1,
range2: initData.range2 || 1,
pokemons: []
},
watch: {
range1 () {
this.updateFilterOfPokedex();
},
range2 () {
this.updateFilterOfPokedex();
},
trainerLevel () {
this.reCalcPmLv();
},
isPmWild () {
this.reCalcPmLv();
},
pmLv () {
this.reCalcPmLv();
}
},
computed: {
pmWidthRatio () {
return `${this.pmMaxLv * 100 / MAX_LV}%`;
},
getIv () {
return ((this.iv.attack + this.iv.defense + this.iv.stamina) * 100 / 45).toFixed();
},
pmMaxLv () {
return Math.min(this.isPmWild ? WILD_PM_MAX_LV : MAX_LV, this.trainerLevel + 2);
}
},
mounted () {
this.customStyleNode = document.createElement('style');
this.$el.querySelector('.pokedexRange').appendChild(this.customStyleNode);
this.updateFilterOfPokedex();
},
methods: {
getMaxCpWithLv,
updateFilterOfPokedex () {
let [min, max] = [this.range1, this.range2].sort((a, b) => a - b);
this.pokemons.forEach((pm) => {
pm.isHidden = pm.dex < min || pm.dex > max;
});
},
updateURL () {
let o = {
lv: this.trainerLevel,
pmLv: this.pmLv,
isPmWild: this.isPmWild,
iv: this.iv,
range1: this.range1,
range2: this.range2,
filter: this.filter.type
};
window.history.pushState(null, '', `?${encodeURIComponent(JSON.stringify(o))}`);
},
reCalcPmLv () {
this.pmLv = Math.min.call(null, this.isPmWild ? WILD_PM_MAX_LV : MAX_LV, this.pmLv, this.pmMaxLv);
// this.updateURL();
},
getPmMaxLv () {
this.pmMaxLv = Math.min(MAX_LV, this.trainerLevel + 2);
},
selectFamily (familyId) {
if (!familyId) {
this.filter.familyId = null;
}
this.filter.familyId = familyId;
},
selectAll (all) {
if (all) {
this.filter.type = ALL_TYPES;
} else {
this.filter.type = [];
}
},
sortBy (by = 'id') {
this.sort.dir *= (this.sort.by === by) ? -1 : 1;
this.sort.by = by;
let dir = this.sort.dir;
this.pokemons.sort((a, b) => {
return (a[by] * dir) - (b[by] * dir);
});
}
},
updated () {
this.updateURL();
}
});
let getData = (name) => {
return new Promise((resolve, reject) => {
if (isOutdated) {
fetch(upstreamUrls[name])
.then((d) => d.json())
.then((d) => {
localData[name] = d;
resolve(d);
});
} else {
let data = JSON.parse(localStorage.getItem(`${VERSION}-${name}`));
localData[name] = data;
resolve(data);
}
});
};
Promise.all([
getData('newPMs'),
getData('pokeData'),
getData('levelCpMultiplier')
]).then((results) => {
handlePokeData();
if (isOutdated) {
localStorage.setItem(VERSION, true);
for (var name in localData) {
localStorage.setItem(`${VERSION}-${name}`, JSON.stringify(localData[name]));
}
}
});
let handlePokeData = () => {
let newPMs = localData.newPMs;
let pokemons = localData.pokeData;
let colCount = Number(window.getComputedStyle(document.querySelector('.pokeMaxCP')).getPropertyValue('--sprite-grid-col'));
vm.range2 = initData.range2 || pokemons.length;
vm.pokemons = pokemons.map((poke, idx) => {
let dex = poke.dex;
let index = dex - 1;
let row = ~~(index / colCount);
let col = index % colCount;
poke.name = newPMs[idx].title_1;
poke.id = dex;
poke.familyId = poke.family.id;
poke.maxcp = getMaxCpWithLv(poke, MAX_LV);
if (typeof poke.types[0] !== 'string') {
poke.types = poke.types.reduce((all, v) => all.concat(v.name && v.name.toLowerCase()), []);
}
poke.gridCol = col;
poke.gridRow = row;
return poke;
});
vm.$mount('#pokeMaxCP');
};
.pokeMaxCP {
--sprite-grid-col: 25;
--sprite-grid-row: 16;
margin: auto; }
.pokeMaxCP__ctrl {
max-width: 50rem;
margin: auto;
text-align: center; }
.pokeMaxCP__ctrl table {
max-width: 90%;
margin: 0 auto 2em; }
.pokeMaxCP__ctrl tr :first-child {
text-align: right; }
.pokeMaxCP__ctrl label {
white-space: nowrap; }
.pokeMaxCP__ctrl td {
width: auto;
text-align: left;
text-transform: capitalize; }
.pokeMaxCP__ctrl td::first-letter {
font-weight: 900;
color: #000; }
.pokeMaxCP__ctrl td:first-child {
color: rgba(0, 0, 0, 0.5); }
.pokeMaxCP__ctrl td:last-child {
width: 50%; }
.pokeMaxCP__ctrl td input {
width: 100%; }
.ctrlSort {
margin-bottom: 2em; }
.ctrlSort::before {
content: 'sort by';
margin-right: .5em;
font-style: italic;
opacity: .5; }
.ctrlSort__btn {
font-size: larger; }
.ctrlSort__btn.is-active {
background-color: rgba(255, 255, 153, 0.5); }
.ctrlSort__btn.is-active::after {
content: attr(data-sort-dir); }
.ctrlFilter--wrap {
margin-bottom: 2em;
padding: 0 1em; }
.ctrlFilter__header {
display: -ms-flexbox;
display: flex;
width: 100%;
-ms-flex-pack: distribute;
justify-content: space-around;
-ms-flex: 1 0 4rem;
flex: 1 0 4rem;
margin-bottom: 1em;
font-style: italic;
color: rgba(0, 0, 0, 0.5); }
.ctrlFilter {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: center;
justify-content: center;
text-align: start; }
.ctrlFilter__label {
position: relative;
-ms-flex-preferred-size: 5.5em;
flex-basis: 5.5em;
padding-left: 1.75em;
margin-left: 1vw;
margin-right: 1vw;
margin-bottom: .7em;
transform-origin: 0 0;
text-transform: capitalize;
cursor: pointer;
color: rgba(0, 0, 0, 0.8);
font-size: smaller; }
.ctrlFilter__label::before {
content: '';
position: absolute;
top: -.5em;
left: -.5em;
width: 2.4em;
height: 2.4em;
z-index: -1;
background-image: var(--bgi);
background-size: 1.5em 1.5em;
background-repeat: no-repeat;
background-position: 50% 50%;
background-color: rgba(255,255,100, calc(var(--activity, 0) * .3));
border-radius: 50%;
opacity: var(--activity, 0.3);
filter: contrast(var(--activity, 0)); }
.ck-normal:checked ~ .pokeList .poke[data-type*="normal"]:not(.is-hidden), .ck-fighting:checked ~ .pokeList .poke[data-type*="fighting"]:not(.is-hidden), .ck-flying:checked ~ .pokeList .poke[data-type*="flying"]:not(.is-hidden), .ck-poison:checked ~ .pokeList .poke[data-type*="poison"]:not(.is-hidden), .ck-ground:checked ~ .pokeList .poke[data-type*="ground"]:not(.is-hidden), .ck-rock:checked ~ .pokeList .poke[data-type*="rock"]:not(.is-hidden), .ck-bug:checked ~ .pokeList .poke[data-type*="bug"]:not(.is-hidden), .ck-ghost:checked ~ .pokeList .poke[data-type*="ghost"]:not(.is-hidden), .ck-steel:checked ~ .pokeList .poke[data-type*="steel"]:not(.is-hidden), .ck-fire:checked ~ .pokeList .poke[data-type*="fire"]:not(.is-hidden), .ck-water:checked ~ .pokeList .poke[data-type*="water"]:not(.is-hidden), .ck-grass:checked ~ .pokeList .poke[data-type*="grass"]:not(.is-hidden), .ck-electric:checked ~ .pokeList .poke[data-type*="electric"]:not(.is-hidden), .ck-psychic:checked ~ .pokeList .poke[data-type*="psychic"]:not(.is-hidden), .ck-ice:checked ~ .pokeList .poke[data-type*="ice"]:not(.is-hidden), .ck-dragon:checked ~ .pokeList .poke[data-type*="dragon"]:not(.is-hidden), .ck-dark:checked ~ .pokeList .poke[data-type*="dark"]:not(.is-hidden), .ck-fairy:checked ~ .pokeList .poke[data-type*="fairy"]:not(.is-hidden) {
display: unset; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-normal"]::before {
background-image: url("type_normal.png"); } }
.ck-normal:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-normal"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-fighting"]::before {
background-image: url("type_fighting.png"); } }
.ck-fighting:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-fighting"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-flying"]::before {
background-image: url("type_flying.png"); } }
.ck-flying:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-flying"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-poison"]::before {
background-image: url("type_poison.png"); } }
.ck-poison:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-poison"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-ground"]::before {
background-image: url("type_ground.png"); } }
.ck-ground:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-ground"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-rock"]::before {
background-image: url("type_rock.png"); } }
.ck-rock:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-rock"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-bug"]::before {
background-image: url("type_bug.png"); } }
.ck-bug:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-bug"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-ghost"]::before {
background-image: url("type_ghost.png"); } }
.ck-ghost:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-ghost"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-steel"]::before {
background-image: url("type_steel.png"); } }
.ck-steel:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-steel"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-fire"]::before {
background-image: url("type_fire.png"); } }
.ck-fire:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-fire"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-water"]::before {
background-image: url("type_water.png"); } }
.ck-water:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-water"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-grass"]::before {
background-image: url("type_grass.png"); } }
.ck-grass:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-grass"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-electric"]::before {
background-image: url("type_electric.png"); } }
.ck-electric:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-electric"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-psychic"]::before {
background-image: url("type_psychic.png"); } }
.ck-psychic:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-psychic"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-ice"]::before {
background-image: url("type_ice.png"); } }
.ck-ice:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-ice"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-dragon"]::before {
background-image: url("type_dragon.png"); } }
.ck-dragon:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-dragon"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-dark"]::before {
background-image: url("type_dark.png"); } }
.ck-dark:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-dark"] {
--activity: 1; }
@media (min-width: 800px) {
.ctrlFilter__label[for="ck-fairy"]::before {
background-image: url("type_fairy.png"); } }
.ck-fairy:checked ~ .pokeMaxCP__ctrl .ctrlFilter__label[for="ck-fairy"] {
--activity: 1; }
.pokedexRange {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
width: 50%;
margin: .5em auto;
border-top: 1px dashed rgba(0, 0, 0, 0.1); }
.pokedexRange > label {
position: relative;
display: block;
width: 100%;
counter-reset: value var(--value);
-ms-flex-order: var(--value);
order: var(--value);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0, transparent 39.11917%, rgba(0, 0, 0, 0.05) 0, transparent 65.02591%, rgba(0, 0, 0, 0.05) 0, transparent); }
.pokedexRange > label::before {
content: counter(value);
position: absolute;
right: 100%;
margin-right: .5em; }
.pokedexRange input {
width: 100%; }
.pokedexRange__header {
position: relative;
margin: 0;
padding-top: .5em;
padding-bottom: 1em;
font-weight: 500;
font-size: 1em;
font-style: italic;
color: rgba(0, 0, 0, 0.5); }
.pokedexRange__header::before, .pokedexRange__header::after {
content: '~ 151';
position: absolute;
top: 2em;
right: 60.88083%;
font-size: smaller;
font-style: normal;
opacity: .5; }
.pokedexRange__header::after {
content: '~ 251';
right: 34.97409%; }
.pokeList {
display: -ms-grid;
display: grid;
-ms-grid-columns: (minmax(160px, 1fr))[auto-fill];
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
margin: 0;
padding: 0;
list-style-type: none;
-ms-grid-column-align: center;
justify-items: center; }
.poke:hover .poke__img, .pokeList:active .poke.is-family-id-marked .poke__img {
opacity: .7; }
.poke {
position: relative;
display: none;
width: 90%;
margin: 1em;
transition: opacity .3s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.poke::after {
content: "#" attr(data-id);
position: absolute;
left: 0;
bottom: 0;
color: rgba(0, 0, 0, 0.2); }
.poke .poke__img {
display: block;
width: 80px;
height: 80px;
margin: auto;
overflow: hidden;
background: url("https://lh3.googleusercontent.com/aAXfL381irDIoHvnIfAxH5g-gM5kB9HvKjgb9irJElAnTXu5sG3WigmCQ6T-Rg_5uct2DKmft9Z7EI_hHMNlkHmUE3lPwyJJNVyBuUo9iwVjoWvTWssErjclWpQZgRXtVTuMTr6t6A=w1480-h947-no") no-repeat;
background-position: calc(var(--poke-col) * -80px) calc(var(--poke-row) * -80px);
background-size: calc(var(--sprite-grid-col) * 80px) calc(var(--sprite-grid-row) * 80px);
text-align: right;
opacity: .3;
letter-spacing: -.025em;
will-change: opacity;
transition: opacity .3s; }
.poke:empty {
display: inline-block;
height: 0;
margin-top: unset;
margin-bottom: unset;
visibility: hidden;
overflow: hidden; }
.pokeList:active .poke {
opacity: .3; }
.pokeList:active .poke.is-family-id-marked {
opacity: 1; }
.poke__name {
position: absolute;
right: 0;
bottom: 0;
padding: 0 .2em;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
background-color: rgba(255, 255, 255, 0.8);
opacity: .3;
font-size: smaller;
will-change: opacity;
transition: opacity .3s; }
.poke:hover .poke__name {
opacity: 1; }
.poke__maxcp {
position: absolute;
top: 0;
left: 0;
font: 100 calc(1em + 2vmin) monospace;
letter-spacing: -.03em;
will-change: opacity;
transition: all .3s; }
.poke:hover .poke__maxcp {
opacity: .7;
text-shadow: 0 0 0.25em rgba(255, 255, 0, 0.5); }
.box {
-ms-flex: 1;
flex: 1; }
*,
*::before,
*::after {
box-sizing: border-box; }
html {
height: 100%; }
body {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100%;
margin: 0;
line-height: 1.4;
background-color: #fff;
overflow-y: scroll; }
.intro {
width: 90%;
max-width: 36rem;
padding-bottom: 1rem;
margin: 0 auto 1em;
padding-top: .5em;
font-size: calc(1rem + 2vmin);
text-transform: capitalize;
border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
text-align: center; }
.intro small {
display: block;
opacity: .5;
font-style: italic;
text-transform: none; }
.info {
margin: 0;
padding: 1em;
font-size: .9em;
font-style: italic;
font-family: serif;
text-align: right;
opacity: .5; }
.info a {
color: inherit; }
.sr-only {
position: fixed;
top: 0;
left: 0;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment