Giter VIP home page Giter VIP logo

angular-pokemon's Introduction

Angular Day1

We are going to create a list that will display cards of pokemon. We will be able to see a list of cards (hard coded into our code because we're not doing HTTP calls till tomorrow) Add new cards. And filter cards based on the type of pokemon they are.

We may add additional filters/functionality if we have time.

CDN for base angular that we are using.

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.js" charset="utf-8"></script>

CDNs are an alternative way to get javascript into our code. Some advantages they have is they can be cached across sites. So if another website your user has visited uses the same CDN asset, they could already have it cached, even if they've never visited your site before.

General outline

Create HTML File

Add css link to our stylesheet Add Angular scripts Add scr tag to our app.js

Create cardVierwer app and attach it to the html

Create listCtrl controller and attach it to the body

Put single card onto the $scope Object as card

Structure of card for styles.

 <div class="card">
  <div class="name"><name>
  <div class="picture"><picture>
  <div class="stats"><stats>
 <card>
$scope.card = {
  name:'Pikachu',
  url:'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-BjyF2HMWR8a-uocWUjEt0FS65HhBtuh2AKkmuBs6Hp_CjhjI',
  type:'electric',
  stats:{
    "hp":270,
    "atk":52,
    "def":34
    }
  }

Display the card

Put existing card array onto the $scope Object as cards

ng-repeat over the cards array and display each individual card. (class: card, name, picture, stats, stat)

Structure of Card List for Styles

<div class="cardList">
  <div class="card"> ... </div>
  <div class="card"> ... </div>
  <div class="card"> ... </div>
  <div class="card"> ... </div>
</div>

add filter to select types (class filters)

add new card form (class addNew)

ng-select for url image

add new card previewer

Make new card section be able to show/hide

Duplicated dummy info here in case it gets deleted.

getCards()
function getCards(){
  return [
    {name:'Charmander',url:'https://static.giantbomb.com/uploads/scale_small/0/6087/2438704-1202149925_t.png'
    ,type:'fire', stats:{"hp": 213,"atk": 86,"def": 87}},
    {name:'Squirtle',url:'http://www.freepngimg.com/download/pokemon/11-2-pokemon-png.png'
    ,type:'water', stats:{"hp":243,"atk":17,"def":89}},
    {name:'Bulbasaur',url:'http://www.freepngimg.com/download/pokemon/10-2-pokemon-picture.png'
    ,type:'grass poison', stats:{"hp":255,"atk":23,"def":79}},
    {name:'Pikachu',url:'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-BjyF2HMWR8a-uocWUjEt0FS65HhBtuh2AKkmuBs6Hp_CjhjI'
    ,type:'electric', stats:{"hp":270,"atk":52,"def":34}},
    {name:'Eevee',url:'http://vignette4.wikia.nocookie.net/pokemon/images/2/26/133Eevee_Pokemon_Mystery_Dungeon_Red_and_Blue_Rescue_Teams.png/revision/latest?cb=20150106012220'
    ,type:'normal', stats:{"hp":65,"atk":36,"def":42}},
    {name:'Alakazam',url:'https://pokemon.gameinfo.io/images/pokemon/65.png'
    ,type:'psychic', stats:{"hp":174,"atk":18,"def":51}},
    {name:'Gengar',url:'https://pokemon.gameinfo.io/images/pokemon/94.png'
    ,type:'ghost poison', stats:{"hp":204,"atk":97,"def":25}},
    {name:'Vaporeon',url:'https://assets.pokemon.com/assets/cms2/img/pokedex/full/134.png'
    ,type:'water', stats:{"hp":288,"atk":55,"def":26}},
    {name:'Ekans',url:'http://clipart.toonarific.com/data/media/11/pokemon023.gif'
    ,type:'poison', stats:{"hp":271,"atk":27,"def":44}},
  ]
}
getImages()
function getImages(){
  var ary = [{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/460.png","number":"460","name":"Abomasnow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/63.png","number":"63","name":"Abra"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/359.png","number":"359","name":"Absol"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/617.png","number":"617","name":"Accelgor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/681.png","number":"681","name":"Aegislash"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/142.png","number":"142","name":"Aerodactyl"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/306.png","number":"306","name":"Aggron"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/190.png","number":"190","name":"Aipom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/65.png","number":"65","name":"Alakazam"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/594.png","number":"594","name":"Alomomola"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/334.png","number":"334","name":"Altaria"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/698.png","number":"698","name":"Amaura"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/424.png","number":"424","name":"Ambipom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/591.png","number":"591","name":"Amoonguss"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/181.png","number":"181","name":"Ampharos"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/347.png","number":"347","name":"Anorith"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/24.png","number":"24","name":"Arbok"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/59.png","number":"59","name":"Arcanine"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/493.png","number":"493","name":"Arceus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/566.png","number":"566","name":"Archen"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/567.png","number":"567","name":"Archeops"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/168.png","number":"168","name":"Ariados"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/348.png","number":"348","name":"Armaldo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/683.png","number":"683","name":"Aromatisse"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/304.png","number":"304","name":"Aron"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/144.png","number":"144","name":"Articuno"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/531.png","number":"531","name":"Audino"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/699.png","number":"699","name":"Aurorus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/713.png","number":"713","name":"Avalugg"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/610.png","number":"610","name":"Axew"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/482.png","number":"482","name":"Azelf"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/184.png","number":"184","name":"Azumarill"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/298.png","number":"298","name":"Azurill"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/371.png","number":"371","name":"Bagon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/343.png","number":"343","name":"Baltoy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/354.png","number":"354","name":"Banette"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/689.png","number":"689","name":"Barbaracle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/339.png","number":"339","name":"Barboach"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/550.png","number":"550","name":"Basculin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/411.png","number":"411","name":"Bastiodon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/153.png","number":"153","name":"Bayleef"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/614.png","number":"614","name":"Beartic"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/267.png","number":"267","name":"Beautifly"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/15.png","number":"15","name":"Beedrill"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/606.png","number":"606","name":"Beheeyem"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/374.png","number":"374","name":"Beldum"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/182.png","number":"182","name":"Bellossom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/69.png","number":"69","name":"Bellsprout"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/712.png","number":"712","name":"Bergmite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/400.png","number":"400","name":"Bibarel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/399.png","number":"399","name":"Bidoof"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/688.png","number":"688","name":"Binacle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/625.png","number":"625","name":"Bisharp"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/9.png","number":"9","name":"Blastoise"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/257.png","number":"257","name":"Blaziken"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/242.png","number":"242","name":"Blissey"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/522.png","number":"522","name":"Blitzle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/525.png","number":"525","name":"Boldore"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/438.png","number":"438","name":"Bonsly"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/626.png","number":"626","name":"Bouffalant"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/654.png","number":"654","name":"Braixen"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/628.png","number":"628","name":"Braviary"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/286.png","number":"286","name":"Breloom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/437.png","number":"437","name":"Bronzong"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/436.png","number":"436","name":"Bronzor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/406.png","number":"406","name":"Budew"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/418.png","number":"418","name":"Buizel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png","number":"1","name":"Bulbasaur"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/427.png","number":"427","name":"Buneary"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/659.png","number":"659","name":"Bunnelby"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/412.png","number":"412","name":"Burmy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/12.png","number":"12","name":"Butterfree"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/331.png","number":"331","name":"Cacnea"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/332.png","number":"332","name":"Cacturne"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/2.png","number":"2","name":"Calsaur"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/323.png","number":"323","name":"Camerupt"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/703.png","number":"703","name":"Carbink"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/455.png","number":"455","name":"Carnivine"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/565.png","number":"565","name":"Carracosta"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/318.png","number":"318","name":"Carvanha"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/268.png","number":"268","name":"Cascoon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/351.png","number":"351","name":"Castform"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/10.png","number":"10","name":"Caterpie"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/251.png","number":"251","name":"Celebi"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/609.png","number":"609","name":"Chandelure"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/113.png","number":"113","name":"Chansey"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/6.png","number":"6","name":"Charizard"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/4.png","number":"4","name":"Charmander"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/5.png","number":"5","name":"Charmeleon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/441.png","number":"441","name":"Chatot"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/421.png","number":"421","name":"Cherrim"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/420.png","number":"420","name":"Cherubi"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/652.png","number":"652","name":"Chesnaught"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/650.png","number":"650","name":"Chespin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/152.png","number":"152","name":"Chikorita"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/390.png","number":"390","name":"Chimchar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/358.png","number":"358","name":"Chimecho"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/170.png","number":"170","name":"Chinchou"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/433.png","number":"433","name":"Chingling"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/573.png","number":"573","name":"Cinccino"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/366.png","number":"366","name":"Clamperl"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/692.png","number":"692","name":"Clauncher"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/693.png","number":"693","name":"Clawitzer"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/344.png","number":"344","name":"Claydol"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/36.png","number":"36","name":"Clefable"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/35.png","number":"35","name":"Clefairy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/173.png","number":"173","name":"Cleffa"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/91.png","number":"91","name":"Cloyster"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/638.png","number":"638","name":"Cobalion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/563.png","number":"563","name":"Cofagrigus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/415.png","number":"415","name":"Combee"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/256.png","number":"256","name":"Combusken"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/534.png","number":"534","name":"Conkeldurr"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/341.png","number":"341","name":"Corphish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/222.png","number":"222","name":"Corsola"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/546.png","number":"546","name":"Cottonee"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/346.png","number":"346","name":"Cradily"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/408.png","number":"408","name":"Cranidos"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/342.png","number":"342","name":"Crawdaunt"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/488.png","number":"488","name":"Cresselia"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/453.png","number":"453","name":"Croagunk"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/169.png","number":"169","name":"Crobat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/159.png","number":"159","name":"Croconaw"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/558.png","number":"558","name":"Crustle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/615.png","number":"615","name":"Cryogonal"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/613.png","number":"613","name":"Cubchoo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/104.png","number":"104","name":"Cubone"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/155.png","number":"155","name":"Cyndaquil"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/491.png","number":"491","name":"Darkrai"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/555.png","number":"555","name":"Darmanitan"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/554.png","number":"554","name":"Darumaka"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/702.png","number":"702","name":"Dedenne"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/585.png","number":"585","name":"Deerling"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/633.png","number":"633","name":"Deino"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/301.png","number":"301","name":"Delcatty"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/225.png","number":"225","name":"Delibird"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/655.png","number":"655","name":"Delphox"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/386.png","number":"386","name":"Deoxys"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/87.png","number":"87","name":"Dewgong"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/502.png","number":"502","name":"Dewott"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/483.png","number":"483","name":"Dialga"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/719.png","number":"719","name":"Diancie"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/660.png","number":"660","name":"Diggersby"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/50.png","number":"50","name":"Diglett"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/132.png","number":"132","name":"Ditto"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/85.png","number":"85","name":"Dodrio"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/84.png","number":"84","name":"Doduo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/232.png","number":"232","name":"Donphan"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/680.png","number":"680","name":"Doublade"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/691.png","number":"691","name":"Dragalge"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/148.png","number":"148","name":"Dragonair"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/149.png","number":"149","name":"Dragonite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/452.png","number":"452","name":"Drapion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/147.png","number":"147","name":"Dratini"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/426.png","number":"426","name":"Drifblim"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/425.png","number":"425","name":"Drifloon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/529.png","number":"529","name":"Drilbur"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/96.png","number":"96","name":"Drowzee"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/621.png","number":"621","name":"Druddigon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/580.png","number":"580","name":"Ducklett"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/51.png","number":"51","name":"Dugtrio"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/206.png","number":"206","name":"Dunsparce"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/578.png","number":"578","name":"Duosion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/632.png","number":"632","name":"Durant"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/356.png","number":"356","name":"Dusclops"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/477.png","number":"477","name":"Dusknoir"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/355.png","number":"355","name":"Duskull"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/269.png","number":"269","name":"Dustox"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/557.png","number":"557","name":"Dwebble"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/603.png","number":"603","name":"Eelektrik"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/604.png","number":"604","name":"Eelektross"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/133.png","number":"133","name":"Eevee"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/23.png","number":"23","name":"Ekans"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/125.png","number":"125","name":"Electabuzz"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/466.png","number":"466","name":"Electivire"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/309.png","number":"309","name":"Electrike"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/101.png","number":"101","name":"Electrode"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/239.png","number":"239","name":"Elekid"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/605.png","number":"605","name":"Elgyem"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/500.png","number":"500","name":"Emboar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/587.png","number":"587","name":"Emolga"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/395.png","number":"395","name":"Empoleon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/244.png","number":"244","name":"Entei"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/589.png","number":"589","name":"Escavalier"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/196.png","number":"196","name":"Espeon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/677.png","number":"677","name":"Espurr"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/530.png","number":"530","name":"Excadrill"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/102.png","number":"102","name":"Exeggcute"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/103.png","number":"103","name":"Exeggutor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/295.png","number":"295","name":"Exploud"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/83.png","number":"83","name":"Farfetch'd"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/22.png","number":"22","name":"Fearow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/349.png","number":"349","name":"Feebas"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/653.png","number":"653","name":"Fennekin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/160.png","number":"160","name":"Feraligatr"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/597.png","number":"597","name":"Ferroseed"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/598.png","number":"598","name":"Ferrothorn"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/456.png","number":"456","name":"Finneon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/180.png","number":"180","name":"Flaaffy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/669.png","number":"669","name":"Flabébé"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/136.png","number":"136","name":"Flareon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/662.png","number":"662","name":"Fletchinder"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/661.png","number":"661","name":"Fletchling"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/419.png","number":"419","name":"Floatzel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/670.png","number":"670","name":"Floette"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/671.png","number":"671","name":"Florges"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/330.png","number":"330","name":"Flygon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/590.png","number":"590","name":"Foongus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/205.png","number":"205","name":"Forretress"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/611.png","number":"611","name":"Fraxure"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/592.png","number":"592","name":"Frillish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/656.png","number":"656","name":"Froakie"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/657.png","number":"657","name":"Frogadier"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/478.png","number":"478","name":"Froslass"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/676.png","number":"676","name":"Furfrou"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/162.png","number":"162","name":"Furret"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/444.png","number":"444","name":"Gabite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/475.png","number":"475","name":"Gallade"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/596.png","number":"596","name":"Galvantula"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/569.png","number":"569","name":"Garbodor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/445.png","number":"445","name":"Garchomp"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/282.png","number":"282","name":"Gardevoir"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/92.png","number":"92","name":"Gastly"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/423.png","number":"423","name":"Gastrodon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/649.png","number":"649","name":"Genesect"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/94.png","number":"94","name":"Gengar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/74.png","number":"74","name":"Geodude"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/443.png","number":"443","name":"Gible"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/526.png","number":"526","name":"Gigalith"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/203.png","number":"203","name":"Girafarig"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/487.png","number":"487","name":"Giratina"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/471.png","number":"471","name":"Glaceon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/362.png","number":"362","name":"Glalie"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/431.png","number":"431","name":"Glameow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/207.png","number":"207","name":"Gligar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/472.png","number":"472","name":"Gliscor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/44.png","number":"44","name":"Gloom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/673.png","number":"673","name":"Gogoat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/42.png","number":"42","name":"Golbat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/118.png","number":"118","name":"Goldeen"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/55.png","number":"55","name":"Golduck"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/76.png","number":"76","name":"Golem"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/622.png","number":"622","name":"Golett"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/623.png","number":"623","name":"Golurk"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/706.png","number":"706","name":"Goodra"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/704.png","number":"704","name":"Goomy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/368.png","number":"368","name":"Gorebyss"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/574.png","number":"574","name":"Gothita"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/576.png","number":"576","name":"Gothitelle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/575.png","number":"575","name":"Gothorita"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/711.png","number":"711","name":"Gourgeist"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/210.png","number":"210","name":"Granbull"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/75.png","number":"75","name":"Graveler"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/658.png","number":"658","name":"Greninja"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/88.png","number":"88","name":"Grimer"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/388.png","number":"388","name":"Grotle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/383.png","number":"383","name":"Groudon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/253.png","number":"253","name":"Grovyle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/58.png","number":"58","name":"Growlithe"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/326.png","number":"326","name":"Grumpig"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/316.png","number":"316","name":"Gulpin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/533.png","number":"533","name":"Gurdurr"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/130.png","number":"130","name":"Gyarados"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/440.png","number":"440","name":"Happiny"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/297.png","number":"297","name":"Hariyama"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/93.png","number":"93","name":"Haunter"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/701.png","number":"701","name":"Hawlucha"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/612.png","number":"612","name":"Haxorus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/631.png","number":"631","name":"Heatmor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/485.png","number":"485","name":"Heatran"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/695.png","number":"695","name":"Heliolisk"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/694.png","number":"694","name":"Helioptile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/214.png","number":"214","name":"Heracross"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/507.png","number":"507","name":"Herdier"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/449.png","number":"449","name":"Hippopotas"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/450.png","number":"450","name":"Hippowdon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/107.png","number":"107","name":"Hitmonchan"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/106.png","number":"106","name":"Hitmonlee"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/237.png","number":"237","name":"Hitmontop"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/250.png","number":"250","name":"Ho-Oh"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/430.png","number":"430","name":"Honchkrow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/679.png","number":"679","name":"Honedge"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/720.png","number":"720","name":"Hoopa"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/163.png","number":"163","name":"Hoothoot"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/187.png","number":"187","name":"Hoppip"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/116.png","number":"116","name":"Horsea"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/229.png","number":"229","name":"Houndoom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/228.png","number":"228","name":"Houndour"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/367.png","number":"367","name":"Huntail"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/635.png","number":"635","name":"Hydreigon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/97.png","number":"97","name":"Hypno"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/174.png","number":"174","name":"Igglybuff"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/314.png","number":"314","name":"Illumise"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/392.png","number":"392","name":"Infernape"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/686.png","number":"686","name":"Inkay"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/593.png","number":"593","name":"Jellicent"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/39.png","number":"39","name":"Jigglypuff"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/385.png","number":"385","name":"Jirachi"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/135.png","number":"135","name":"Jolteon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/595.png","number":"595","name":"Joltik"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/189.png","number":"189","name":"Jumpluff"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/124.png","number":"124","name":"Jynx"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/140.png","number":"140","name":"Kabuto"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/141.png","number":"141","name":"Kabutops"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/64.png","number":"64","name":"Kadabra"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/14.png","number":"14","name":"Kakuna"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/115.png","number":"115","name":"Kangaskhan"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/588.png","number":"588","name":"Karrablast"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/352.png","number":"352","name":"Kecleon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/647.png","number":"647","name":"Keldeo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/230.png","number":"230","name":"Kingdra"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/99.png","number":"99","name":"Kingler"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/281.png","number":"281","name":"Kirlia"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/600.png","number":"600","name":"Klang"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/707.png","number":"707","name":"Klefki"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/599.png","number":"599","name":"Klink"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/601.png","number":"601","name":"Klinklang"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/109.png","number":"109","name":"Koffing"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/98.png","number":"98","name":"Krabby"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/401.png","number":"401","name":"Kricketot"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/402.png","number":"402","name":"Kricketune"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/552.png","number":"552","name":"Krokorok"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/553.png","number":"553","name":"Krookodile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/382.png","number":"382","name":"Kyogre"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/646.png","number":"646","name":"Kyurem"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/305.png","number":"305","name":"Lairon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/608.png","number":"608","name":"Lampent"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/645.png","number":"645","name":"Landorus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/171.png","number":"171","name":"Lanturn"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/131.png","number":"131","name":"Lapras"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/636.png","number":"636","name":"Larvesta"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/246.png","number":"246","name":"Larvitar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/380.png","number":"380","name":"Latias"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/381.png","number":"381","name":"Latios"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/470.png","number":"470","name":"Leafeon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/542.png","number":"542","name":"Leavanny"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/166.png","number":"166","name":"Ledian"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/165.png","number":"165","name":"Ledyba"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/463.png","number":"463","name":"Lickilicky"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/108.png","number":"108","name":"Lickitung"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/510.png","number":"510","name":"Liepard"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/345.png","number":"345","name":"Lileep"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/549.png","number":"549","name":"Lilligant"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/506.png","number":"506","name":"Lillipup"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/264.png","number":"264","name":"Linoone"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/667.png","number":"667","name":"Litleo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/607.png","number":"607","name":"Litwick"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/271.png","number":"271","name":"Lombre"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/428.png","number":"428","name":"Lopunny"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/270.png","number":"270","name":"Lotad"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/294.png","number":"294","name":"Loudred"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/448.png","number":"448","name":"Lucario"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/272.png","number":"272","name":"Ludicolo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/249.png","number":"249","name":"Lugia"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/457.png","number":"457","name":"Lumineon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/337.png","number":"337","name":"Lunatone"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/370.png","number":"370","name":"Luvdisc"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/404.png","number":"404","name":"Luxio"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/405.png","number":"405","name":"Luxray"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/68.png","number":"68","name":"Machamp"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/67.png","number":"67","name":"Machoke"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/66.png","number":"66","name":"Machop"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/240.png","number":"240","name":"Magby"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/219.png","number":"219","name":"Magcargo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/129.png","number":"129","name":"Magikarp"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/126.png","number":"126","name":"Magmar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/467.png","number":"467","name":"Magmortar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/81.png","number":"81","name":"Magnemite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/82.png","number":"82","name":"Magneton"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/462.png","number":"462","name":"Magnezone"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/296.png","number":"296","name":"Makuhita"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/687.png","number":"687","name":"Malamar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/473.png","number":"473","name":"Mamoswine"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/490.png","number":"490","name":"Manaphy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/630.png","number":"630","name":"Mandibuzz"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/310.png","number":"310","name":"Manectric"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/56.png","number":"56","name":"Mankey"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/226.png","number":"226","name":"Mantine"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/458.png","number":"458","name":"Mantyke"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/556.png","number":"556","name":"Maractus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/179.png","number":"179","name":"Mareep"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/183.png","number":"183","name":"Marill"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/105.png","number":"105","name":"Marowak"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/259.png","number":"259","name":"Marshtomp"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/284.png","number":"284","name":"Masquerain"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/303.png","number":"303","name":"Mawile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/308.png","number":"308","name":"Medicham"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/307.png","number":"307","name":"Meditite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/154.png","number":"154","name":"Meganium"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/648.png","number":"648","name":"Meloetta"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/678.png","number":"678","name":"Meowstic"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/52.png","number":"52","name":"Meowth"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/481.png","number":"481","name":"Mesprit"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/376.png","number":"376","name":"Metagross"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/375.png","number":"375","name":"Metang"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/11.png","number":"11","name":"Metapod"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/151.png","number":"151","name":"Mew"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/150.png","number":"150","name":"Mewtwo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/619.png","number":"619","name":"Mienfoo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/620.png","number":"620","name":"Mienshao"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/262.png","number":"262","name":"Mightyena"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/350.png","number":"350","name":"Milotic"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/241.png","number":"241","name":"Miltank"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/439.png","number":"439","name":"Mime Jr."},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/572.png","number":"572","name":"Minccino"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/312.png","number":"312","name":"Minun"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/200.png","number":"200","name":"Misdreavus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/429.png","number":"429","name":"Mismagius"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/146.png","number":"146","name":"Moltres"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/391.png","number":"391","name":"Monferno"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/414.png","number":"414","name":"Mothim"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/122.png","number":"122","name":"Mr. Mime"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/258.png","number":"258","name":"Mudkip"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/89.png","number":"89","name":"Muk"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/446.png","number":"446","name":"Munchlax"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/517.png","number":"517","name":"Munna"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/198.png","number":"198","name":"Murkrow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/518.png","number":"518","name":"Musharna"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/177.png","number":"177","name":"Natu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/34.png","number":"34","name":"Nidoking"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/31.png","number":"31","name":"Nidoqueen"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/29.png","number":"29","name":"Nidoran♀"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/32.png","number":"32","name":"Nidoran♂"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/30.png","number":"30","name":"Nidorina"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/33.png","number":"33","name":"Nidorino"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/290.png","number":"290","name":"Nincada"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/38.png","number":"38","name":"Ninetales"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/291.png","number":"291","name":"Ninjask"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/164.png","number":"164","name":"Noctowl"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/714.png","number":"714","name":"Noibat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/715.png","number":"715","name":"Noivern"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/299.png","number":"299","name":"Nosepass"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/322.png","number":"322","name":"Numel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/274.png","number":"274","name":"Nuzleaf"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/224.png","number":"224","name":"Octillery"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/43.png","number":"43","name":"Oddish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/138.png","number":"138","name":"Omanyte"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/139.png","number":"139","name":"Omastar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/95.png","number":"95","name":"Onix"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/501.png","number":"501","name":"Oshawott"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/417.png","number":"417","name":"Pachirisu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/484.png","number":"484","name":"Palkia"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/536.png","number":"536","name":"Palpitoad"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/674.png","number":"674","name":"Pancham"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/675.png","number":"675","name":"Pangoro"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/515.png","number":"515","name":"Panpour"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/511.png","number":"511","name":"Pansage"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/513.png","number":"513","name":"Pansear"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/46.png","number":"46","name":"Paras"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/47.png","number":"47","name":"Parasect"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/504.png","number":"504","name":"Patrat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/624.png","number":"624","name":"Pawniard"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/279.png","number":"279","name":"Pelipper"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/53.png","number":"53","name":"Persian"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/548.png","number":"548","name":"Petilil"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/231.png","number":"231","name":"Phanpy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/708.png","number":"708","name":"Phantump"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/489.png","number":"489","name":"Phione"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/172.png","number":"172","name":"Pichu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/18.png","number":"18","name":"Pidgeot"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/17.png","number":"17","name":"Pidgeotto"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/16.png","number":"16","name":"Pidgey"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/519.png","number":"519","name":"Pidove"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/499.png","number":"499","name":"Pignite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/25.png","number":"25","name":"Pikachu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/221.png","number":"221","name":"Piloswine"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/204.png","number":"204","name":"Pineco"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/127.png","number":"127","name":"Pinsir"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/393.png","number":"393","name":"Piplup"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/311.png","number":"311","name":"Plusle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/186.png","number":"186","name":"Politoed"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/60.png","number":"60","name":"Poliwag"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/61.png","number":"61","name":"Poliwhirl"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/62.png","number":"62","name":"Poliwrath"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/77.png","number":"77","name":"Ponyta"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/261.png","number":"261","name":"Poochyena"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/137.png","number":"137","name":"Porygon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/474.png","number":"474","name":"Porygon-Z"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/233.png","number":"233","name":"Porygon2"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/57.png","number":"57","name":"Primeape"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/394.png","number":"394","name":"Prinplup"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/476.png","number":"476","name":"Probopass"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/54.png","number":"54","name":"Psyduck"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/710.png","number":"710","name":"Pumpkaboo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/247.png","number":"247","name":"Pupitar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/509.png","number":"509","name":"Purrloin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/432.png","number":"432","name":"Purugly"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/668.png","number":"668","name":"Pyroar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/195.png","number":"195","name":"Quagsire"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/156.png","number":"156","name":"Quilava"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/651.png","number":"651","name":"Quilladin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/211.png","number":"211","name":"Qwilfish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/26.png","number":"26","name":"Raichu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/243.png","number":"243","name":"Raikou"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/280.png","number":"280","name":"Ralts"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/409.png","number":"409","name":"Rampardos"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/78.png","number":"78","name":"Rapidash"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/20.png","number":"20","name":"Raticate"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/19.png","number":"19","name":"Rattata"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/384.png","number":"384","name":"Rayquaza"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/378.png","number":"378","name":"Regice"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/486.png","number":"486","name":"Regigigas"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/377.png","number":"377","name":"Regirock"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/379.png","number":"379","name":"Registeel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/369.png","number":"369","name":"Relicanth"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/223.png","number":"223","name":"Remoraid"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/643.png","number":"643","name":"Reshiram"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/579.png","number":"579","name":"Reuniclus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/112.png","number":"112","name":"Rhydon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/111.png","number":"111","name":"Rhyhorn"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/464.png","number":"464","name":"Rhyperior"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/447.png","number":"447","name":"Riolu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/524.png","number":"524","name":"Roggenrola"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/315.png","number":"315","name":"Roselia"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/407.png","number":"407","name":"Roserade"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/479.png","number":"479","name":"Rotom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/627.png","number":"627","name":"Rufflet"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/302.png","number":"302","name":"Sableye"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/373.png","number":"373","name":"Salamence"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/503.png","number":"503","name":"Samurott"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/551.png","number":"551","name":"Sandile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/27.png","number":"27","name":"Sandshrew"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/28.png","number":"28","name":"Sandslash"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/539.png","number":"539","name":"Sawk"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/586.png","number":"586","name":"Sawsbuck"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/664.png","number":"664","name":"Scatterbug"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/254.png","number":"254","name":"Sceptile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/212.png","number":"212","name":"Scizor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/545.png","number":"545","name":"Scolipede"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/560.png","number":"560","name":"Scrafty"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/559.png","number":"559","name":"Scraggy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/123.png","number":"123","name":"Scyther"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/117.png","number":"117","name":"Seadra"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/119.png","number":"119","name":"Seaking"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/364.png","number":"364","name":"Sealeo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/273.png","number":"273","name":"Seedot"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/86.png","number":"86","name":"Seel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/537.png","number":"537","name":"Seismitoad"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/161.png","number":"161","name":"Sentret"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/497.png","number":"497","name":"Serperior"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/496.png","number":"496","name":"Servine"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/336.png","number":"336","name":"Seviper"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/540.png","number":"540","name":"Sewaddle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/319.png","number":"319","name":"Sharpedo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/492.png","number":"492","name":"Shaymin"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/292.png","number":"292","name":"Shedinja"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/372.png","number":"372","name":"Shelgon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/90.png","number":"90","name":"Shellder"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/422.png","number":"422","name":"Shellos"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/616.png","number":"616","name":"Shelmet"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/410.png","number":"410","name":"Shieldon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/275.png","number":"275","name":"Shiftry"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/403.png","number":"403","name":"Shinx"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/285.png","number":"285","name":"Shroomish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/213.png","number":"213","name":"Shuckle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/353.png","number":"353","name":"Shuppet"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/561.png","number":"561","name":"Sigilyph"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/266.png","number":"266","name":"Silcoon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/516.png","number":"516","name":"Simipour"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/512.png","number":"512","name":"Simisage"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/514.png","number":"514","name":"Simisear"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/227.png","number":"227","name":"Skarmory"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/672.png","number":"672","name":"Skiddo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/188.png","number":"188","name":"Skiploom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/300.png","number":"300","name":"Skitty"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/451.png","number":"451","name":"Skorupi"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/690.png","number":"690","name":"Skrelp"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/435.png","number":"435","name":"Skuntank"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/289.png","number":"289","name":"Slaking"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/287.png","number":"287","name":"Slakoth"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/705.png","number":"705","name":"Sliggoo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/80.png","number":"80","name":"Slowbro"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/199.png","number":"199","name":"Slowking"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/79.png","number":"79","name":"Slowpoke"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/218.png","number":"218","name":"Slugma"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/685.png","number":"685","name":"Slurpuff"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/235.png","number":"235","name":"Smeargle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/238.png","number":"238","name":"Smoochum"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/215.png","number":"215","name":"Sneasel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/495.png","number":"495","name":"Snivy"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/143.png","number":"143","name":"Snorlax"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/361.png","number":"361","name":"Snorunt"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/459.png","number":"459","name":"Snover"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/209.png","number":"209","name":"Snubbull"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/577.png","number":"577","name":"Solosis"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/338.png","number":"338","name":"Solrock"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/21.png","number":"21","name":"Spearow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/665.png","number":"665","name":"Spewpa"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/363.png","number":"363","name":"Spheal"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/167.png","number":"167","name":"Spinarak"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/327.png","number":"327","name":"Spinda"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/442.png","number":"442","name":"Spiritomb"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/325.png","number":"325","name":"Spoink"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/682.png","number":"682","name":"Spritzee"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/7.png","number":"7","name":"Squirtle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/234.png","number":"234","name":"Stantler"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/398.png","number":"398","name":"Staraptor"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/397.png","number":"397","name":"Staravia"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/396.png","number":"396","name":"Starly"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/121.png","number":"121","name":"Starmie"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/120.png","number":"120","name":"Staryu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/208.png","number":"208","name":"Steelix"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/508.png","number":"508","name":"Stoutland"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/618.png","number":"618","name":"Stunfisk"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/434.png","number":"434","name":"Stunky"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/185.png","number":"185","name":"Sudowoodo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/245.png","number":"245","name":"Suicune"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/192.png","number":"192","name":"Sunflora"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/191.png","number":"191","name":"Sunkern"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/283.png","number":"283","name":"Surskit"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/333.png","number":"333","name":"Swablu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/541.png","number":"541","name":"Swadloon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/317.png","number":"317","name":"Swalot"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/260.png","number":"260","name":"Swampert"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/581.png","number":"581","name":"Swanna"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/277.png","number":"277","name":"Swellow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/220.png","number":"220","name":"Swinub"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/684.png","number":"684","name":"Swirlix"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/528.png","number":"528","name":"Swoobat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/700.png","number":"700","name":"Sylveon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/276.png","number":"276","name":"Taillow"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/663.png","number":"663","name":"Talonflame"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/114.png","number":"114","name":"Tangela"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/465.png","number":"465","name":"Tangrowth"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/128.png","number":"128","name":"Tauros"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/216.png","number":"216","name":"Teddiursa"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/72.png","number":"72","name":"Tentacool"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/73.png","number":"73","name":"Tentacruel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/498.png","number":"498","name":"Tepig"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/639.png","number":"639","name":"Terrakion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/538.png","number":"538","name":"Throh"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/642.png","number":"642","name":"Thundurus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/532.png","number":"532","name":"Timburr"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/564.png","number":"564","name":"Tirtouga"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/468.png","number":"468","name":"Togekiss"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/175.png","number":"175","name":"Togepi"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/176.png","number":"176","name":"Togetic"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/255.png","number":"255","name":"Torchic"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/324.png","number":"324","name":"Torkoal"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/641.png","number":"641","name":"Tornadus"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/389.png","number":"389","name":"Torterra"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/158.png","number":"158","name":"Totodile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/454.png","number":"454","name":"Toxicroak"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/520.png","number":"520","name":"Tranquill"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/328.png","number":"328","name":"Trapinch"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/252.png","number":"252","name":"Treecko"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/709.png","number":"709","name":"Trevenant"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/357.png","number":"357","name":"Tropius"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/568.png","number":"568","name":"Trubbish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/387.png","number":"387","name":"Turtwig"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/535.png","number":"535","name":"Tympole"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/602.png","number":"602","name":"Tynamo"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/157.png","number":"157","name":"Typhlosion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/248.png","number":"248","name":"Tyranitar"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/697.png","number":"697","name":"Tyrantrum"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/236.png","number":"236","name":"Tyrogue"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/696.png","number":"696","name":"Tyrunt"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/197.png","number":"197","name":"Umbreon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/521.png","number":"521","name":"Unfezant"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/201.png","number":"201","name":"Unown"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/217.png","number":"217","name":"Ursaring"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/480.png","number":"480","name":"Uxie"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/583.png","number":"583","name":"Vanillish"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/582.png","number":"582","name":"Vanillite"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/584.png","number":"584","name":"Vanilluxe"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/134.png","number":"134","name":"Vaporeon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/543.png","number":"543","name":"Venipede"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/49.png","number":"49","name":"Venomoth"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/48.png","number":"48","name":"Venonat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/3.png","number":"3","name":"Venusaur"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/416.png","number":"416","name":"Vespiquen"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/329.png","number":"329","name":"Vibrava"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/494.png","number":"494","name":"Victini"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/71.png","number":"71","name":"Victreebel"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/288.png","number":"288","name":"Vigoroth"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/45.png","number":"45","name":"Vileplume"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/640.png","number":"640","name":"Virizion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/666.png","number":"666","name":"Vivillon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/313.png","number":"313","name":"Volbeat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/721.png","number":"721","name":"Volcanion"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/637.png","number":"637","name":"Volcarona"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/100.png","number":"100","name":"Voltorb"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/629.png","number":"629","name":"Vullaby"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/37.png","number":"37","name":"Vulpix"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/320.png","number":"320","name":"Wailmer"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/321.png","number":"321","name":"Wailord"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/365.png","number":"365","name":"Walrein"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/8.png","number":"8","name":"Wartortle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/505.png","number":"505","name":"Watchog"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/461.png","number":"461","name":"Weavile"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/13.png","number":"13","name":"Weedle"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/70.png","number":"70","name":"Weepinbell"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/110.png","number":"110","name":"Weezing"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/547.png","number":"547","name":"Whimsicott"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/544.png","number":"544","name":"Whirlipede"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/340.png","number":"340","name":"Whiscash"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/293.png","number":"293","name":"Whismur"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/40.png","number":"40","name":"Wigglytuff"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/278.png","number":"278","name":"Wingull"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/202.png","number":"202","name":"Wobbuffet"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/527.png","number":"527","name":"Woobat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/194.png","number":"194","name":"Wooper"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/413.png","number":"413","name":"Wormadam"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/265.png","number":"265","name":"Wurmple"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/360.png","number":"360","name":"Wynaut"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/178.png","number":"178","name":"Xatu"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/716.png","number":"716","name":"Xerneas"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/562.png","number":"562","name":"Yamask"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/193.png","number":"193","name":"Yanma"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/469.png","number":"469","name":"Yanmega"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/717.png","number":"717","name":"Yveltal"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/335.png","number":"335","name":"Zangoose"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/145.png","number":"145","name":"Zapdos"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/523.png","number":"523","name":"Zebstrika"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/644.png","number":"644","name":"Zekrom"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/263.png","number":"263","name":"Zigzagoon"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/571.png","number":"571","name":"Zoroark"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/570.png","number":"570","name":"Zorua"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/41.png","number":"41","name":"Zubat"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/634.png","number":"634","name":"Zweilous"},{"url":"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/718.png","number":"718","name":"Zygarde"}]
    return ary;
}

angular-pokemon's People

Contributors

brackcarmony avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.