dpe1 commited on
Commit
e0cfb39
1 Parent(s): 7a9d05f

big chungus license means big chungus holds legal rights to the file called app.py and wahtever.py and the rest is from pokemon.db i have no rights to it and to the best of my knowledge neither does big chungus thank you for your understanding

Browse files
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import wahtever
2
+ import gradio as gr
3
+ from gradio.components import Textbox
4
+
5
+ demo = gr.Interface(
6
+ wahtever.isisisisis,
7
+ [
8
+ Textbox(label="enter pokemons name (it uses fuzzy search)"),
9
+ ],
10
+ [
11
+ Textbox(label="can it evolve????"),
12
+ ],
13
+ live=True,
14
+ title='Can this Pokemon evolve?',
15
+ description="This shows you if a Pokemon can evolve and how. Unlike using Wiki, this doesn't spoil what it evolves into and at what level.\nI also used real time fuzzy search so that you don't have to enter exact name of a Pokemon.",
16
+ article="""NOTE I used a hole Bunch of data from https://pokemondb.net/evolution/level.
17
+
18
+ Most pokemon evolve upon reaching a certain level. A few Pokémon also need to meet a condition such as gender to evolve; these are also listed.
19
+
20
+ To evolve a Pokémon via stone, simply select the item to use in your bag, then select the Pokémon to apply it to - they will evolve straight away.
21
+
22
+ A Pokémon's Friendship (aka happiness) can be increased in many ways. The simplest is walking around with the Pokémon in your party, battling and growing them, but not letting them faint. Massages and haircuts increase Friendship by a larger amount. Giving them a Soothe Bell to hold increases the effect of the other methods. See more in the glossary or this PokéBase question.
23
+
24
+ For special conditions, Once the condition is met, the Pokémon needs to level up once more in order to evolve."""
25
+ )
26
+
27
+ demo.launch()
wahtever.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ with open('whatever stuff is neede/all pokemons.txt', 'r') as a: all_pokemons = a.read().split(',')
2
+ with open('whatever stuff is neede/evolvable pokemons.txt', 'r') as a: evolvable_pokemons = a.read().split(',')
3
+
4
+ import csv
5
+ with open('whatever stuff is neede/all.csv', 'r') as stone: stone = {i[0].lower():i[2] for i in list(csv.reader(stone, delimiter=","))}
6
+ import difflib
7
+
8
+ if __name__=='__main__':
9
+ pokemon = input('Can it evolve?????? ').lower()
10
+ stuff = difflib.get_close_matches(pokemon, all_pokemons, n=1, cutoff=0)
11
+ if len(stuff)==0: print(f'sry `{pokemon}` pokemon not found (idk why)')
12
+ else:
13
+ stuff=stuff[0].title()
14
+ from difflib import SequenceMatcher as SM
15
+ if SM(None, pokemon.title(), stuff).ratio()<0.6: print(f'NOTE idk if u meant {stuff} or not tho but thats the closest match')
16
+ if stuff.lower() in stone: print(f'YES {stuff} can evolve: {stone[stuff.lower()]}')
17
+ else: print(f'NO {stuff} can\'t evolve')
18
+
19
+ def isisisisis(pokemon,all_pokemons=all_pokemons, evolvable_pokemons=evolvable_pokemons,stone=stone):
20
+ if len(pokemon) ==0: return 'Write pokemons name (it uses fuzzy search)'
21
+ stuff = difflib.get_close_matches(pokemon, all_pokemons, n=1, cutoff=0)
22
+ if len(stuff)==0: return f'sry `{pokemon}` pokemon not found (idk why)'
23
+ else:
24
+ stuff=stuff[0].title()
25
+ from difflib import SequenceMatcher as SM
26
+ #if SM(None, pokemon.title(), stuff).ratio()<0.6: print(f'NOTE idk if u meant {stuff} or not tho but thats the closest match')
27
+ if stuff.lower() in stone: return f'YES {stuff} can evolve: {stone[stuff.lower()]}'
28
+ else: return f'NO {stuff} can\'t evolve'
29
+
whatever stuff is neede/all pokemons.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ bulbasaur,ivysaur,venusaur,charmander,charmeleon,charizard,squirtle,wartortle,blastoise,caterpie,metapod,butterfree,weedle,kakuna,beedrill,pidgey,pidgeotto,pidgeot,rattata,raticate,spearow,fearow,ekans,arbok,pikachu,raichu,sandshrew,sandslash,nidoran f,nidorina,nidoqueen,nidoran m,nidorino,nidoking,clefairy,clefable,vulpix,ninetales,jigglypuff,wigglytuff,zubat,golbat,oddish,gloom,vileplume,paras,parasect,venonat,venomoth,diglett,dugtrio,meowth,persian,psyduck,golduck,mankey,primeape,growlithe,arcanine,poliwag,poliwhirl,poliwrath,abra,kadabra,alakazam,machop,machoke,machamp,bellsprout,weepinbell,victreebel,tentacool,tentacruel,geodude,graveler,golem,ponyta,rapidash,slowpoke,slowbro,magnemite,magneton,farfetch'd,doduo,dodrio,seel,dewgong,grimer,muk,shellder,cloyster,gastly,haunter,gengar,onix,drowzee,hypno,krabby,kingler,voltorb,electrode,exeggcute,exeggutor,cubone,marowak,hitmonlee,hitmonchan,lickitung,koffing,weezing,rhyhorn,rhydon,chansey,tangela,kangaskhan,horsea,seadra,goldeen,seaking,staryu,starmie,mr. mime,scyther,jynx,electabuzz,magmar,pinsir,tauros,magikarp,gyarados,lapras,ditto,eevee,vaporeon,jolteon,flareon,porygon,omanyte,omastar,kabuto,kabutops,aerodactyl,snorlax,articuno,zapdos,moltres,dratini,dragonair,dragonite,mewtwo,mew,chikorita,bayleef,meganium,cyndaquil,quilava,typhlosion,totodile,croconaw,feraligatr,sentret,furret,hoothoot,noctowl,ledyba,ledian,spinarak,ariados,crobat,chinchou,lanturn,pichu,cleffa,igglybuff,togepi,togetic,natu,xatu,mareep,flaaffy,ampharos,bellossom,marill,azumarill,sudowoodo,politoed,hoppip,skiploom,jumpluff,aipom,sunkern,sunflora,yanma,wooper,quagsire,espeon,umbreon,murkrow,slowking,misdreavus,unown,wobbuffet,girafarig,pineco,forretress,dunsparce,gligar,steelix,snubbull,granbull,qwilfish,scizor,shuckle,heracross,sneasel,teddiursa,ursaring,slugma,magcargo,swinub,piloswine,corsola,remoraid,octillery,delibird,mantine,skarmory,houndour,houndoom,kingdra,phanpy,donphan,porygon2,stantler,smeargle,tyrogue,hitmontop,smoochum,elekid,magby,miltank,blissey,raikou,entei,suicune,larvitar,pupitar,tyranitar,lugia,ho-oh,celebi,treecko,grovyle,sceptile,torchic,combusken,blaziken,mudkip,marshtomp,swampert,poochyena,mightyena,zigzagoon,linoone,wurmple,silcoon,beautifly,cascoon,dustox,lotad,lombre,ludicolo,seedot,nuzleaf,shiftry,taillow,swellow,wingull,pelipper,ralts,kirlia,gardevoir,surskit,masquerain,shroomish,breloom,slakoth,vigoroth,slaking,nincada,ninjask,shedinja,whismur,loudred,exploud,makuhita,hariyama,azurill,nosepass,skitty,delcatty,sableye,mawile,aron,lairon,aggron,meditite,medicham,electrike,manectric,plusle,minun,volbeat,illumise,roselia,gulpin,swalot,carvanha,sharpedo,wailmer,wailord,numel,camerupt,torkoal,spoink,grumpig,spinda,trapinch,vibrava,flygon,cacnea,cacturne,swablu,altaria,zangoose,seviper,lunatone,solrock,barboach,whiscash,corphish,crawdaunt,baltoy,claydol,lileep,cradily,anorith,armaldo,feebas,milotic,castform,kecleon,shuppet,banette,duskull,dusclops,tropius,chimecho,absol,wynaut,snorunt,glalie,spheal,sealeo,walrein,clamperl,huntail,gorebyss,relicanth,luvdisc,bagon,shelgon,salamence,beldum,metang,metagross,regirock,regice,registeel,latias,latios,kyogre,groudon,rayquaza,jirachi,deoxys,turtwig,grotle,torterra,chimchar,monferno,infernape,piplup,prinplup,empoleon,starly,staravia,staraptor,bidoof,bibarel,kricketot,kricketune,shinx,luxio,luxray,budew,roserade,cranidos,rampardos,shieldon,bastiodon,burmy,wormadam,mothim,combee,vespiquen,pachirisu,buizel,floatzel,cherubi,cherrim,shellos,gastrodon,ambipom,drifloon,drifblim,buneary,lopunny,mismagius,honchkrow,glameow,purugly,chingling,stunky,skuntank,bronzor,bronzong,bonsly,mime jr.,happiny,chatot,spiritomb,gible,gabite,garchomp,munchlax,riolu,lucario,hippopotas,hippowdon,skorupi,drapion,croagunk,toxicroak,carnivine,finneon,lumineon,mantyke,snover,abomasnow,weavile,magnezone,lickilicky,rhyperior,tangrowth,electivire,magmortar,togekiss,yanmega,leafeon,glaceon,gliscor,mamoswine,porygon z,gallade,probopass,dusknoir,froslass,rotom,uxie,mesprit,azelf,dialga,palkia,heatran,regigigas,giratina,cresselia,phione,manaphy,darkrai,shaymin,arceus,victini,snivy,servine,serperior,tepig,pignite,emboar,oshawott,dewott,samurott,patrat,watchog,lillipup,herdier,stoutland,purrloin,liepard,pansage,simisage,pansear,simisear,panpour,simipour,munna,musharna,pidove,tranquill,unfezant,blitzle,zebstrika,roggenrola,boldore,gigalith,woobat,swoobat,drilbur,excadrill,audino,timburr,gurdurr,conkeldurr,tympole,palpitoad,seismitoad,throh,sawk,sewaddle,swadloon,leavanny,venipede,whirlipede,scolipede,cottonee,whimsicott,petilil,lilligant,basculin,sandile,krokorok,krookodile,darumaka,darmanitan,maractus,dwebble,crustle,scraggy,scrafty,sigilyph,yamask,cofagrigus,tirtouga,carracosta,archen,archeops,trubbish,garbodor,zorua,zoroark,minccino,cinccino,gothita,gothorita,gothitelle,solosis,duosion,reuniclus,ducklett,swanna,vanillite,vanillish,vanilluxe,deerling,sawsbuck,emolga,karrablast,escavalier,foongus,amoonguss,frillish,jellicent,alomomola,joltik,galvantula,ferroseed,ferrothorn,klink,klang,klinklang,tynamo,eelektrik,eelektross,elgyem,beheeyem,litwick,lampent,chandelure,axew,fraxure,haxorus,cubchoo,beartic,cryogonal,shelmet,accelgor,stunfisk,mienfoo,mienshao,druddigon,golett,golurk,pawniard,bisharp,bouffalant,rufflet,braviary,vullaby,mandibuzz,heatmor,durant,deino,zweilous,hydreigon,larvesta,volcarona,cobalion,terrakion,virizion,tornadus,thundurus,reshiram,zekrom,landorus,kyurem,keldeo,meloetta,genesect,chespin,quilladin,chesnaught,fennekin,braixen,delphox,froakie,frogadier,greninja,bunnelby,diggersby,fletchling,fletchinder,talonflame,scatterbug,spewpa,vivillon,litleo,pyroar,flab�b�,floette,florges,skiddo,gogoat,pancham,pangoro,furfrou,espurr,meowstic,honedge,doublade,aegislash shield,spritzee,aromatisse,swirlix,slurpuff,inkay,malamar,binacle,barbaracle,skrelp,dragalge,clauncher,clawitzer,helioptile,heliolisk,tyrunt,tyrantrum,amaura,aurorus,sylveon,hawlucha,dedenne,carbink,goomy,sliggoo,goodra,klefki,phantump,trevenant,pumpkaboo,gourgeist,bergmite,avalugg,noibat,noivern,xerneas,yveltal,zygarde,diancie,hoopa,volcanion,rowlet,dartrix,decidueye,litten,torracat,incineroar,popplio,brionne,primarina,pikipek,trumbeak,toucannon,yungoos,gumshoos,grubbin,charjabug,vikavolt,crabrawler,crabominable,oricorio,cutiefly,ribombee,rockruff,lycanroc,wishiwashi,mareanie,toxapex,mudbray,mudsdale,dewpider,araquanid,fomantis,lurantis,morelull,shiinotic,salandit,salazzle,stufful,bewear,bounsweet,steenee,tsareena,comfey,oranguru,passimian,wimpod,golisopod,sandygast,palossand,pyukumuku,type: null,silvally,minior,komala,turtonator,togedemaru,mimikyu,bruxish,drampa,dhelmise,jangmo-o,hakamo-o,kommo-o,tapu koko,tapu lele,tapu bulu,tapu fini,cosmog,cosmoem,solgaleo,lunala,nihilego,buzzwole,pheromosa,xurkitree,celesteela,kartana,guzzlord,necrozma,magearna,marshadow,poipole,naganadel,stakataka,blacephalon,zeraora,meltan,melmetal,grookey,thwackey,rillaboom,scorbunny,raboot,cinderace,sobble,drizzile,inteleon,skwovet,greedent,rookidee,corvisquire,corviknight,blipbug,dottler,orbeetle,nickit,thievul,gossifleur,eldegoss,wooloo,dubwool,chewtle,drednaw,yamper,boltund,rolycoly,carkol,coalossal,applin,flapple,appletun,silicobra,sandaconda,cramorant,arrokuda,barraskewda,toxel,toxtricity,sizzlipede,centiskorch,clobbopus,grapploct,sinistea,polteageist,hatenna,hattrem,hatterene,impidimp,morgrem,grimmsnarl,obstagoon,perrserker,cursola,sirfetch'd,mr. rime,runerigus,milcery,alcremie,falinks,pincurchin,snom,frosmoth,stonjourner,eiscue,indeedee,morpeko,cufant,copperajah,dracozolt,arctozolt,dracovish,arctovish,duraludon,dreepy,drakloak,dragapult,zacian,zamazenta,eternatus,kubfu,urshifu,zarude,regieleki,regidrago,glastrier,spectrier,calyrex,wyrdeer,kleavor,ursaluna,basculegion,sneasler,overqwil,enamorus
whatever stuff is neede/all.csv ADDED
@@ -0,0 +1,682 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ bulbasaur,ivysaur,Evolves by level.
2
+ ivysaur,venusaur,Evolves by level.
3
+ charmander,charmeleon,Evolves by level.
4
+ charmeleon,charizard,Evolves by level.
5
+ squirtle,wartortle,Evolves by level.
6
+ wartortle,blastoise,Evolves by level.
7
+ caterpie,metapod,Evolves by level.
8
+ metapod,butterfree,Evolves by level.
9
+ weedle,kakuna,Evolves by level.
10
+ kakuna,beedrill,Evolves by level.
11
+ pidgey,pidgeotto,Evolves by level.
12
+ pidgeotto,pidgeot,Evolves by level.
13
+ rattata,raticate,Evolves by level.
14
+ rattata,raticate,Evolves by level. Nighttime
15
+ spearow,fearow,Evolves by level.
16
+ ekans,arbok,Evolves by level.
17
+ sandshrew,sandslash,Evolves by level.
18
+ nidoran♐,nidorina,Evolves by level.
19
+ nidoran♂,nidorino,Evolves by level.
20
+ zubat,golbat,Evolves by level.
21
+ oddish,gloom,Evolves by level.
22
+ paras,parasect,Evolves by level.
23
+ venonat,venomoth,Evolves by level.
24
+ diglett,dugtrio,Evolves by level.
25
+ diglett,dugtrio,Evolves by level.
26
+ meowth,persian,Evolves by level.
27
+ meowth,perrserker,Evolves by level.
28
+ psyduck,golduck,Evolves by level.
29
+ mankey,primeape,Evolves by level.
30
+ poliwag,poliwhirl,Evolves by level.
31
+ abra,kadabra,Evolves by level.
32
+ machop,machoke,Evolves by level.
33
+ bellsprout,weepinbell,Evolves by level.
34
+ tentacool,tentacruel,Evolves by level.
35
+ geodude,graveler,Evolves by level.
36
+ geodude,graveler,Evolves by level.
37
+ ponyta,rapidash,Evolves by level.
38
+ ponyta,rapidash,Evolves by level.
39
+ slowpoke,slowbro,Evolves by level.
40
+ magnemite,magneton,Evolves by level.
41
+ doduo,dodrio,Evolves by level.
42
+ seel,dewgong,Evolves by level.
43
+ grimer,muk,Evolves by level.
44
+ grimer,muk,Evolves by level.
45
+ gastly,haunter,Evolves by level.
46
+ drowzee,hypno,Evolves by level.
47
+ krabby,kingler,Evolves by level.
48
+ voltorb,electrode,Evolves by level.
49
+ cubone,marowak,Evolves by level. outside Alola
50
+ cubone,"marowak
51
+ alolan marowak","Evolves by level. Nighttime, in Alola"
52
+ tyrogue,hitmonlee,Evolves by level. Attack > Defense
53
+ tyrogue,hitmonchan,Evolves by level. Attack < Defense
54
+ tyrogue,hitmontop,Evolves by level. Attack = Defense
55
+ koffing,weezing,Evolves by level. outside Galar
56
+ koffing,"weezing
57
+ galarian weezing",Evolves by level. in Galar
58
+ rhyhorn,rhydon,Evolves by level.
59
+ horsea,seadra,Evolves by level.
60
+ goldeen,seaking,Evolves by level.
61
+ mr. mime,mr. rime,Evolves by level.
62
+ smoochum,jynx,Evolves by level.
63
+ elekid,electabuzz,Evolves by level.
64
+ magby,magmar,Evolves by level.
65
+ magikarp,gyarados,Evolves by level.
66
+ omanyte,omastar,Evolves by level.
67
+ kabuto,kabutops,Evolves by level.
68
+ dratini,dragonair,Evolves by level.
69
+ dragonair,dragonite,Evolves by level.
70
+ chikorita,bayleef,Evolves by level.
71
+ bayleef,meganium,Evolves by level.
72
+ cyndaquil,quilava,Evolves by level. or Level 17 in Legends: Arceus
73
+ quilava,typhlosion,Evolves by level.
74
+ quilava,"typhlosion
75
+ hisuian typhlosion",Evolves by level. in Legends: Arceus
76
+ totodile,croconaw,Evolves by level.
77
+ croconaw,feraligatr,Evolves by level.
78
+ sentret,furret,Evolves by level.
79
+ hoothoot,noctowl,Evolves by level.
80
+ ledyba,ledian,Evolves by level.
81
+ spinarak,ariados,Evolves by level.
82
+ chinchou,lanturn,Evolves by level.
83
+ natu,xatu,Evolves by level.
84
+ mareep,flaaffy,Evolves by level.
85
+ flaaffy,ampharos,Evolves by level.
86
+ marill,azumarill,Evolves by level.
87
+ hoppip,skiploom,Evolves by level.
88
+ skiploom,jumpluff,Evolves by level.
89
+ wooper,quagsire,Evolves by level.
90
+ wooper,clodsire,Evolves by level.
91
+ wynaut,wobbuffet,Evolves by level.
92
+ pineco,forretress,Evolves by level.
93
+ snubbull,granbull,Evolves by level.
94
+ teddiursa,ursaring,Evolves by level.
95
+ slugma,magcargo,Evolves by level.
96
+ swinub,piloswine,Evolves by level.
97
+ remoraid,octillery,Evolves by level.
98
+ houndour,houndoom,Evolves by level.
99
+ phanpy,donphan,Evolves by level.
100
+ larvitar,pupitar,Evolves by level.
101
+ pupitar,tyranitar,Evolves by level.
102
+ treecko,grovyle,Evolves by level.
103
+ grovyle,sceptile,Evolves by level.
104
+ torchic,combusken,Evolves by level.
105
+ combusken,blaziken,Evolves by level.
106
+ mudkip,marshtomp,Evolves by level.
107
+ marshtomp,swampert,Evolves by level.
108
+ poochyena,mightyena,Evolves by level.
109
+ zigzagoon,linoone,Evolves by level.
110
+ zigzagoon,linoone,Evolves by level.
111
+ linoone,obstagoon,Evolves by level. Nighttime
112
+ wurmple,silcoon,Evolves by level. random based on personality
113
+ silcoon,beautifly,Evolves by level.
114
+ wurmple,cascoon,Evolves by level. random based on personality
115
+ cascoon,dustox,Evolves by level.
116
+ lotad,lombre,Evolves by level.
117
+ seedot,nuzleaf,Evolves by level.
118
+ taillow,swellow,Evolves by level.
119
+ wingull,pelipper,Evolves by level.
120
+ ralts,kirlia,Evolves by level.
121
+ kirlia,gardevoir,Evolves by level.
122
+ surskit,masquerain,Evolves by level.
123
+ shroomish,breloom,Evolves by level.
124
+ slakoth,vigoroth,Evolves by level.
125
+ vigoroth,slaking,Evolves by level.
126
+ nincada,ninjask,Evolves by level.
127
+ nincada,shedinja,"Evolves by level. empty spot in party, Pokéball in bag"
128
+ whismur,loudred,Evolves by level.
129
+ loudred,exploud,Evolves by level.
130
+ makuhita,hariyama,Evolves by level.
131
+ aron,lairon,Evolves by level.
132
+ lairon,aggron,Evolves by level.
133
+ meditite,medicham,Evolves by level.
134
+ electrike,manectric,Evolves by level.
135
+ gulpin,swalot,Evolves by level.
136
+ carvanha,sharpedo,Evolves by level.
137
+ wailmer,wailord,Evolves by level.
138
+ numel,camerupt,Evolves by level.
139
+ spoink,grumpig,Evolves by level.
140
+ trapinch,vibrava,Evolves by level.
141
+ vibrava,flygon,Evolves by level.
142
+ cacnea,cacturne,Evolves by level.
143
+ swablu,altaria,Evolves by level.
144
+ barboach,whiscash,Evolves by level.
145
+ corphish,crawdaunt,Evolves by level.
146
+ baltoy,claydol,Evolves by level.
147
+ lileep,cradily,Evolves by level.
148
+ anorith,armaldo,Evolves by level.
149
+ shuppet,banette,Evolves by level.
150
+ duskull,dusclops,Evolves by level.
151
+ snorunt,glalie,Evolves by level.
152
+ spheal,sealeo,Evolves by level.
153
+ sealeo,walrein,Evolves by level.
154
+ bagon,shelgon,Evolves by level.
155
+ shelgon,salamence,Evolves by level.
156
+ beldum,metang,Evolves by level.
157
+ metang,metagross,Evolves by level.
158
+ turtwig,grotle,Evolves by level.
159
+ grotle,torterra,Evolves by level.
160
+ chimchar,monferno,Evolves by level.
161
+ monferno,infernape,Evolves by level.
162
+ piplup,prinplup,Evolves by level.
163
+ prinplup,empoleon,Evolves by level.
164
+ starly,staravia,Evolves by level.
165
+ staravia,staraptor,Evolves by level.
166
+ bidoof,bibarel,Evolves by level.
167
+ kricketot,kricketune,Evolves by level.
168
+ shinx,luxio,Evolves by level.
169
+ luxio,luxray,Evolves by level.
170
+ cranidos,rampardos,Evolves by level.
171
+ shieldon,bastiodon,Evolves by level.
172
+ burmy,mothim,Evolves by level. Male
173
+ burmy,wormadam,"Evolves by level. Female, in grass"
174
+ burmy,wormadam,"Evolves by level. Female, in caves"
175
+ burmy,wormadam,"Evolves by level. Female, in buildings"
176
+ combee,vespiquen,Evolves by level. Female
177
+ buizel,floatzel,Evolves by level.
178
+ cherubi,cherrim,Evolves by level.
179
+ shellos,gastrodon,Evolves by level.
180
+ drifloon,drifblim,Evolves by level.
181
+ glameow,purugly,Evolves by level.
182
+ stunky,skuntank,Evolves by level.
183
+ bronzor,bronzong,Evolves by level.
184
+ gible,gabite,Evolves by level.
185
+ gabite,garchomp,Evolves by level.
186
+ hippopotas,hippowdon,Evolves by level.
187
+ skorupi,drapion,Evolves by level.
188
+ croagunk,toxicroak,Evolves by level.
189
+ finneon,lumineon,Evolves by level.
190
+ snover,abomasnow,Evolves by level.
191
+ snivy,servine,Evolves by level.
192
+ servine,serperior,Evolves by level.
193
+ tepig,pignite,Evolves by level.
194
+ pignite,emboar,Evolves by level.
195
+ oshawott,dewott,Evolves by level.
196
+ dewott,samurott,Evolves by level.
197
+ dewott,"samurott
198
+ hisuian samurott",Evolves by level. in Legends: Arceus
199
+ patrat,watchog,Evolves by level.
200
+ lillipup,herdier,Evolves by level.
201
+ herdier,stoutland,Evolves by level.
202
+ purrloin,liepard,Evolves by level.
203
+ pidove,tranquill,Evolves by level.
204
+ tranquill,unfezant,Evolves by level.
205
+ blitzle,zebstrika,Evolves by level.
206
+ roggenrola,boldore,Evolves by level.
207
+ drilbur,excadrill,Evolves by level.
208
+ timburr,gurdurr,Evolves by level.
209
+ tympole,palpitoad,Evolves by level.
210
+ palpitoad,seismitoad,Evolves by level.
211
+ sewaddle,swadloon,Evolves by level.
212
+ venipede,whirlipede,Evolves by level.
213
+ whirlipede,scolipede,Evolves by level.
214
+ sandile,krokorok,Evolves by level.
215
+ krokorok,krookodile,Evolves by level.
216
+ darumaka,"darmanitan
217
+ standard mode",Evolves by level.
218
+ dwebble,crustle,Evolves by level.
219
+ scraggy,scrafty,Evolves by level.
220
+ yamask,cofagrigus,Evolves by level.
221
+ tirtouga,carracosta,Evolves by level.
222
+ archen,archeops,Evolves by level.
223
+ trubbish,garbodor,Evolves by level.
224
+ zorua,zoroark,Evolves by level.
225
+ zorua,zoroark,Evolves by level. in Legends: Arceus
226
+ gothita,gothorita,Evolves by level.
227
+ gothorita,gothitelle,Evolves by level.
228
+ solosis,duosion,Evolves by level.
229
+ duosion,reuniclus,Evolves by level.
230
+ ducklett,swanna,Evolves by level.
231
+ vanillite,vanillish,Evolves by level.
232
+ vanillish,vanilluxe,Evolves by level.
233
+ deerling,sawsbuck,Evolves by level.
234
+ foongus,amoonguss,Evolves by level.
235
+ frillish,jellicent,Evolves by level.
236
+ joltik,galvantula,Evolves by level.
237
+ ferroseed,ferrothorn,Evolves by level.
238
+ klink,klang,Evolves by level.
239
+ klang,klinklang,Evolves by level.
240
+ tynamo,eelektrik,Evolves by level.
241
+ elgyem,beheeyem,Evolves by level.
242
+ litwick,lampent,Evolves by level.
243
+ axew,fraxure,Evolves by level.
244
+ fraxure,haxorus,Evolves by level.
245
+ cubchoo,beartic,Evolves by level.
246
+ mienfoo,mienshao,Evolves by level.
247
+ golett,golurk,Evolves by level.
248
+ pawniard,bisharp,Evolves by level.
249
+ rufflet,braviary,Evolves by level.
250
+ rufflet,"braviary
251
+ hisuian braviary",Evolves by level. in Legends: Arceus
252
+ vullaby,mandibuzz,Evolves by level.
253
+ deino,zweilous,Evolves by level.
254
+ zweilous,hydreigon,Evolves by level.
255
+ larvesta,volcarona,Evolves by level.
256
+ chespin,quilladin,Evolves by level.
257
+ quilladin,chesnaught,Evolves by level.
258
+ fennekin,braixen,Evolves by level.
259
+ braixen,delphox,Evolves by level.
260
+ froakie,frogadier,Evolves by level.
261
+ frogadier,greninja,Evolves by level.
262
+ bunnelby,diggersby,Evolves by level.
263
+ fletchling,fletchinder,Evolves by level.
264
+ fletchinder,talonflame,Evolves by level.
265
+ scatterbug,spewpa,Evolves by level.
266
+ spewpa,vivillon,Evolves by level.
267
+ litleo,pyroar,Evolves by level.
268
+ flab�b�,floette,Evolves by level.
269
+ skiddo,gogoat,Evolves by level.
270
+ pancham,pangoro,Evolves by level. Dark type Pokémon in party
271
+ espurr,"meowstic
272
+ male",Evolves by level. Male
273
+ espurr,"meowstic
274
+ female",Evolves by level. Female
275
+ honedge,doublade,Evolves by level.
276
+ inkay,malamar,Evolves by level. holding console upside down
277
+ binacle,barbaracle,Evolves by level.
278
+ skrelp,dragalge,Evolves by level.
279
+ clauncher,clawitzer,Evolves by level.
280
+ tyrunt,tyrantrum,Evolves by level. Daytime
281
+ amaura,aurorus,Evolves by level. Nighttime
282
+ goomy,sliggoo,Evolves by level.
283
+ sliggoo,goodra,Evolves by level. during rain
284
+ goomy,"sliggoo
285
+ hisuian sliggoo",Evolves by level. in Legends: Arceus
286
+ sliggoo,goodra,"Evolves by level. during rain, in Legends: Arceus"
287
+ bergmite,avalugg,Evolves by level.
288
+ bergmite,"avalugg
289
+ hisuian avalugg",Evolves by level. in Legends: Arceus
290
+ noibat,noivern,Evolves by level.
291
+ rowlet,dartrix,Evolves by level.
292
+ dartrix,decidueye,Evolves by level.
293
+ dartrix,"decidueye
294
+ hisuian decidueye",Evolves by level. in Legends: Arceus
295
+ litten,torracat,Evolves by level.
296
+ torracat,incineroar,Evolves by level.
297
+ popplio,brionne,Evolves by level.
298
+ brionne,primarina,Evolves by level.
299
+ pikipek,trumbeak,Evolves by level.
300
+ trumbeak,toucannon,Evolves by level.
301
+ yungoos,gumshoos,Evolves by level. Daytime
302
+ grubbin,charjabug,Evolves by level.
303
+ cutiefly,ribombee,Evolves by level.
304
+ rockruff,"lycanroc
305
+ midday form",Evolves by level. Daytime
306
+ rockruff,"lycanroc
307
+ midnight form",Evolves by level. Nighttime
308
+ rockruff,lycanroc,Evolves by level. Dusk
309
+ mareanie,toxapex,Evolves by level.
310
+ mudbray,mudsdale,Evolves by level.
311
+ dewpider,araquanid,Evolves by level.
312
+ fomantis,lurantis,Evolves by level. Daytime
313
+ morelull,shiinotic,Evolves by level.
314
+ salandit,salazzle,Evolves by level. Female
315
+ stufful,bewear,Evolves by level.
316
+ bounsweet,steenee,Evolves by level.
317
+ wimpod,golisopod,Evolves by level.
318
+ sandygast,palossand,Evolves by level.
319
+ jangmo-o,hakamo-o,Evolves by level.
320
+ hakamo-o,kommo-o,Evolves by level.
321
+ cosmog,cosmoem,Evolves by level.
322
+ cosmoem,solgaleo,Evolves by level. in Pokémon Sun or Ultra Sun
323
+ cosmoem,lunala,Evolves by level. in Pokémon Moon or Ultra Moon
324
+ grookey,thwackey,Evolves by level.
325
+ thwackey,rillaboom,Evolves by level.
326
+ scorbunny,raboot,Evolves by level.
327
+ raboot,cinderace,Evolves by level.
328
+ sobble,drizzile,Evolves by level.
329
+ drizzile,inteleon,Evolves by level.
330
+ blipbug,dottler,Evolves by level.
331
+ dottler,orbeetle,Evolves by level.
332
+ rookidee,corvisquire,Evolves by level.
333
+ corvisquire,corviknight,Evolves by level.
334
+ skwovet,greedent,Evolves by level.
335
+ nickit,thievul,Evolves by level.
336
+ wooloo,dubwool,Evolves by level.
337
+ chewtle,drednaw,Evolves by level.
338
+ yamper,boltund,Evolves by level.
339
+ gossifleur,eldegoss,Evolves by level.
340
+ sizzlipede,centiskorch,Evolves by level.
341
+ rolycoly,carkol,Evolves by level.
342
+ carkol,coalossal,Evolves by level.
343
+ arrokuda,barraskewda,Evolves by level.
344
+ corsola,cursola,Evolves by level.
345
+ impidimp,morgrem,Evolves by level.
346
+ morgrem,grimmsnarl,Evolves by level.
347
+ hatenna,hattrem,Evolves by level.
348
+ hattrem,hatterene,Evolves by level.
349
+ cufant,copperajah,Evolves by level.
350
+ toxel,"toxtricity
351
+ amped form",Evolves by level. with an amped Nature
352
+ toxel,"toxtricity
353
+ low key form",Evolves by level. with a low key Nature
354
+ silicobra,sandaconda,Evolves by level.
355
+ dreepy,drakloak,Evolves by level.
356
+ drakloak,dragapult,Evolves by level.
357
+ sprigatito,floragato,Evolves by level.
358
+ floragato,meowscarada,Evolves by level.
359
+ fuecoco,crocalor,Evolves by level.
360
+ crocalor,skeledirge,Evolves by level.
361
+ quaxly,quaxwell,Evolves by level.
362
+ quaxwell,quaquaval,Evolves by level.
363
+ lechonk,"oinkologne
364
+ male",Evolves by level. Male
365
+ lechonk,"oinkologne
366
+ female",Evolves by level. Female
367
+ tarountula,spidops,Evolves by level.
368
+ nymble,lokix,Evolves by level.
369
+ greavard,houndstone,Evolves by level. Nighttime
370
+ flittle,espathra,Evolves by level.
371
+ wiglett,wugtrio,Evolves by level.
372
+ finizen,"palafin
373
+ zero form",Evolves by level. while in multiplayer
374
+ smoliv,dolliv,Evolves by level.
375
+ dolliv,arboliva,Evolves by level.
376
+ varoom,revavroom,Evolves by level.
377
+ tandemaus,"maushold
378
+ family of three",Evolves by level. rare
379
+ tandemaus,"maushold
380
+ family of four",Evolves by level.
381
+ frigibax,arctibax,Evolves by level.
382
+ arctibax,baxcalibur,Evolves by level.
383
+ pawmi,pawmo,Evolves by level.
384
+ wattrel,kilowattrel,Evolves by level.
385
+ nacli,naclstack,Evolves by level.
386
+ naclstack,garganacl,Evolves by level.
387
+ glimmet,glimmora,Evolves by level.
388
+ shroodle,grafaiai,Evolves by level.
389
+ fidough,dachsbun,Evolves by level.
390
+ maschiff,mabosstiff,Evolves by level.
391
+ tinkatink,tinkatuff,Evolves by level.
392
+ tinkatuff,tinkaton,Evolves by level.
393
+ toedscool,toedscruel,Evolves by level.
394
+ alolan rattata,alolan raticate,Evolves by level. Nighttime
395
+ alolan diglett,alolan dugtrio,Evolves by level.
396
+ galarian meowth,perrserker,Evolves by level.
397
+ alolan geodude,alolan graveler,Evolves by level.
398
+ galarian ponyta,galarian rapidash,Evolves by level.
399
+ alolan grimer,alolan muk,Evolves by level.
400
+ galarian mr. mime,mr. rime,Evolves by level.
401
+ paldean wooper,clodsire,Evolves by level.
402
+ galarian zigzagoon,galarian linoone,Evolves by level.
403
+ galarian linoone,obstagoon,Evolves by level. Nighttime
404
+ plant cloak,mothim,Evolves by level. Male
405
+ plant cloak,plant cloak,"Evolves by level. Female, in grass"
406
+ sandy cloak,sandy cloak,"Evolves by level. Female, in caves"
407
+ trash cloak,trash cloak,"Evolves by level. Female, in buildings"
408
+ hisuian zorua,hisuian zoroark,Evolves by level. in Legends: Arceus
409
+ hisuian sliggoo,hisuian goodra,"Evolves by level. during rain, in Legends: Arceus"
410
+ own tempo rockruff,dusk form,Evolves by level. Dusk
411
+ galarian corsola,cursola,Evolves by level.
412
+ pikachu,raichu,"Evolves by stone: Thunder Stone, outside Alola"
413
+ pikachu,"raichu
414
+ alolan raichu","Evolves by stone: Thunder Stone, in Alola"
415
+ sandshrew,sandslash,Evolves by stone: Ice Stone
416
+ nidorina,nidoqueen,Evolves by stone: Moon Stone
417
+ nidorino,nidoking,Evolves by stone: Moon Stone
418
+ clefairy,clefable,Evolves by stone: Moon Stone
419
+ vulpix,ninetales,Evolves by stone: Fire Stone
420
+ vulpix,ninetales,Evolves by stone: Ice Stone
421
+ jigglypuff,wigglytuff,Evolves by stone: Moon Stone
422
+ gloom,vileplume,Evolves by stone: Leaf Stone
423
+ gloom,bellossom,Evolves by stone: Sun Stone
424
+ growlithe,arcanine,Evolves by stone: Fire Stone
425
+ growlithe,arcanine,Evolves by stone: Fire Stone
426
+ poliwhirl,poliwrath,Evolves by stone: Water Stone
427
+ weepinbell,victreebel,Evolves by stone: Leaf Stone
428
+ slowpoke,slowbro,Evolves by stone: Galarica Cuff
429
+ slowpoke,slowking,Evolves by stone: Galarica Wreath
430
+ magneton,magnezone,"Evolves by stone: Thunder Stone, in Gen 8+, or level up in a Magnetic Field area"
431
+ shellder,cloyster,Evolves by stone: Water Stone
432
+ voltorb,electrode,Evolves by stone: Leaf Stone
433
+ exeggcute,exeggutor,"Evolves by stone: Leaf Stone, outside Alola"
434
+ exeggcute,"exeggutor
435
+ alolan exeggutor","Evolves by stone: Leaf Stone, in Alola"
436
+ staryu,starmie,Evolves by stone: Water Stone
437
+ scyther,kleavor,Evolves by stone: Black Augurite
438
+ eevee,vaporeon,Evolves by stone: Water Stone
439
+ eevee,jolteon,Evolves by stone: Thunder Stone
440
+ eevee,flareon,Evolves by stone: Fire Stone
441
+ eevee,leafeon,"Evolves by stone: Leaf Stone, or level up near a Mossy Rock"
442
+ eevee,glaceon,"Evolves by stone: Ice Stone, or level up near an Icy Rock"
443
+ togetic,togekiss,Evolves by stone: Shiny Stone
444
+ sunkern,sunflora,Evolves by stone: Sun Stone
445
+ murkrow,honchkrow,Evolves by stone: Dusk Stone
446
+ misdreavus,mismagius,Evolves by stone: Dusk Stone
447
+ sneasel,sneasler,"Evolves by stone: Razor Claw, Daytime"
448
+ ursaring,ursaluna,"Evolves by stone: Peat Block, under a full moon, in Legends: Arceus"
449
+ lombre,ludicolo,Evolves by stone: Water Stone
450
+ nuzleaf,shiftry,Evolves by stone: Leaf Stone
451
+ kirlia,gallade,"Evolves by stone: Dawn Stone, Male"
452
+ skitty,delcatty,Evolves by stone: Moon Stone
453
+ roselia,roserade,Evolves by stone: Shiny Stone
454
+ snorunt,froslass,"Evolves by stone: Dawn Stone, Female"
455
+ pansage,simisage,Evolves by stone: Leaf Stone
456
+ pansear,simisear,Evolves by stone: Fire Stone
457
+ panpour,simipour,Evolves by stone: Water Stone
458
+ munna,musharna,Evolves by stone: Moon Stone
459
+ cottonee,whimsicott,Evolves by stone: Sun Stone
460
+ petilil,lilligant,Evolves by stone: Sun Stone
461
+ petilil,"lilligant
462
+ hisuian lilligant","Evolves by stone: Sun Stone, in Legends: Arceus"
463
+ darumaka,darmanitan,Evolves by stone: Ice Stone
464
+ minccino,cinccino,Evolves by stone: Shiny Stone
465
+ eelektrik,eelektross,Evolves by stone: Thunder Stone
466
+ lampent,chandelure,Evolves by stone: Dusk Stone
467
+ floette,florges,Evolves by stone: Shiny Stone
468
+ doublade,"aegislash
469
+ shield forme",Evolves by stone: Dusk Stone
470
+ helioptile,heliolisk,Evolves by stone: Sun Stone
471
+ charjabug,vikavolt,"Evolves by stone: Thunder Stone, in Gen 8, or level up in a Magnetic Field area"
472
+ crabrawler,crabominable,"Evolves by stone: Ice Stone, or at Mount Lanakila in Alola"
473
+ applin,flapple,Evolves by stone: Tart Apple
474
+ applin,appletun,Evolves by stone: Sweet Apple
475
+ sinistea,polteageist,Evolves by stone: Cracked Pot
476
+ kubfu,"urshifu
477
+ single strike style","Evolves by stone: Scroll Of Darkness, or in Tower of Darkness in Galar"
478
+ kubfu,"urshifu
479
+ rapid strike style","Evolves by stone: Scroll Of Waters, or in Tower of Water in Galar"
480
+ capsakid,scovillain,Evolves by stone: Fire Stone
481
+ tadbulb,bellibolt,Evolves by stone: Thunder Stone
482
+ cetoddle,cetitan,Evolves by stone: Ice Stone
483
+ charcadet,armarouge,Evolves by stone: Auspicious Armor
484
+ charcadet,ceruledge,Evolves by stone: Malicious Armor
485
+ alolan sandshrew,alolan sandslash,Evolves by stone: Ice Stone
486
+ alolan vulpix,alolan ninetales,Evolves by stone: Ice Stone
487
+ hisuian growlithe,hisuian arcanine,Evolves by stone: Fire Stone
488
+ galarian slowpoke,galarian slowbro,Evolves by stone: Galarica Cuff
489
+ galarian slowpoke,galarian slowking,Evolves by stone: Galarica Wreath
490
+ hisuian voltorb,hisuian electrode,Evolves by stone: Leaf Stone
491
+ hisuian sneasel,sneasler,"Evolves by stone: Razor Claw, Daytime"
492
+ galarian darumaka,galarian standard mode,Evolves by stone: Ice Stone
493
+ poliwhirl,politoed,Evolves by trading. Kings Rock
494
+ kadabra,alakazam,Evolves by trading.
495
+ machoke,machamp,Evolves by trading.
496
+ graveler,golem,Evolves by trading.
497
+ graveler,golem,Evolves by trading.
498
+ slowpoke,slowking,Evolves by trading. Kings Rock
499
+ haunter,gengar,Evolves by trading.
500
+ onix,steelix,Evolves by trading. Metal Coat
501
+ rhydon,rhyperior,Evolves by trading. Protector
502
+ seadra,kingdra,Evolves by trading. Dragon Scale
503
+ scyther,scizor,Evolves by trading. Metal Coat
504
+ electabuzz,electivire,Evolves by trading. Electirizer
505
+ magmar,magmortar,Evolves by trading. Magmarizer
506
+ porygon,porygon2,Evolves by trading. Upgrade
507
+ porygon2,porygon-z,Evolves by trading. Dubious Disc
508
+ feebas,milotic,"Evolves by trading. Prism Scale, or level up with max Beauty"
509
+ dusclops,dusknoir,Evolves by trading. Reaper Cloth
510
+ clamperl,huntail,Evolves by trading. Deep Sea Tooth
511
+ clamperl,gorebyss,Evolves by trading. Deep Sea Scale
512
+ boldore,gigalith,Evolves by trading.
513
+ gurdurr,conkeldurr,Evolves by trading.
514
+ karrablast,escavalier,Evolves by trading. Trade with Shelmet
515
+ shelmet,accelgor,Evolves by trading. Trade with Karrablast
516
+ spritzee,aromatisse,Evolves by trading. Sachet
517
+ swirlix,slurpuff,Evolves by trading. Whipped Dream
518
+ phantump,trevenant,Evolves by trading.
519
+ pumpkaboo,gourgeist,Evolves by trading.
520
+ alolan graveler,alolan golem,Evolves by trading.
521
+ average size,average size,Evolves by trading.
522
+ pichu,pikachu,Evolves by friendship.
523
+ cleffa,clefairy,Evolves by friendship.
524
+ igglybuff,jigglypuff,Evolves by friendship.
525
+ golbat,crobat,Evolves by friendship.
526
+ meowth,persian,Evolves by friendship.
527
+ chansey,blissey,Evolves by friendship.
528
+ eevee,espeon,Evolves by friendship. Daytime
529
+ eevee,umbreon,Evolves by friendship. Nighttime
530
+ eevee,sylveon,Evolves by friendship. after Fairy-type move learnedand either ♥♥ Affection in Gen 6-7 or high friendship in Gen 8+
531
+ munchlax,snorlax,Evolves by friendship.
532
+ togepi,togetic,Evolves by friendship.
533
+ azurill,marill,Evolves by friendship.
534
+ budew,roselia,Evolves by friendship. Daytime
535
+ chingling,chimecho,Evolves by friendship. Nighttime
536
+ buneary,lopunny,Evolves by friendship.
537
+ riolu,lucario,Evolves by friendship. Daytime
538
+ woobat,swoobat,Evolves by friendship.
539
+ swadloon,leavanny,Evolves by friendship.
540
+ type: null,silvally,Evolves by friendship.
541
+ snom,frosmoth,Evolves by friendship. Nighttime
542
+ alolan meowth,alolan persian,Evolves by friendship.
543
+ rattata,raticate,Evolves by special condition: Nighttime
544
+ pikachu,raichu,"Evolves by special condition: use Thunder Stone, outside Alola"
545
+ pikachu,"raichu
546
+ alolan raichu","Evolves by special condition: use Thunder Stone, in Alola"
547
+ primeape,annihilape,Evolves by special condition: Use Rage Fist 20 times
548
+ magneton,magnezone,"Evolves by special condition: use Thunder Stone, in Gen 8+, or level up in a Magnetic Field area"
549
+ exeggcute,exeggutor,"Evolves by special condition: use Leaf Stone, outside Alola"
550
+ exeggcute,"exeggutor
551
+ alolan exeggutor","Evolves by special condition: use Leaf Stone, in Alola"
552
+ cubone,marowak,Evolves by special condition: outside Alola
553
+ cubone,"marowak
554
+ alolan marowak","Evolves by special condition: Nighttime, in Alola"
555
+ tyrogue,hitmonlee,Evolves by special condition: Attack > Defense
556
+ tyrogue,hitmonchan,Evolves by special condition: Attack < Defense
557
+ tyrogue,hitmontop,Evolves by special condition: Attack = Defense
558
+ lickitung,lickilicky,Evolves by special condition: after Rollout learned
559
+ koffing,weezing,Evolves by special condition: outside Galar
560
+ koffing,"weezing
561
+ galarian weezing",Evolves by special condition: in Galar
562
+ happiny,chansey,"Evolves by special condition: hold Oval Stone, Daytime"
563
+ tangela,tangrowth,Evolves by special condition: after Ancient Power learned
564
+ mime jr.,mr. mime,"Evolves by special condition: after Mimic learned, outside Galar"
565
+ mime jr.,"mr. mime
566
+ galarian mr. mime","Evolves by special condition: after Mimic learned, in Galar"
567
+ eevee,leafeon,"Evolves by special condition: use Leaf Stone, or level up near a Mossy Rock"
568
+ eevee,glaceon,"Evolves by special condition: use Ice Stone, or level up near an Icy Rock"
569
+ cyndaquil,quilava,Evolves by special condition: or Level 17 in Legends: Arceus
570
+ quilava,"typhlosion
571
+ hisuian typhlosion",Evolves by special condition: in Legends: Arceus
572
+ bonsly,sudowoodo,Evolves by special condition: after Mimic learned
573
+ aipom,ambipom,Evolves by special condition: after Double Hit learned
574
+ yanma,yanmega,Evolves by special condition: after Ancient Power learned
575
+ gligar,gliscor,"Evolves by special condition: hold Razor Fang, Nighttime"
576
+ sneasel,weavile,"Evolves by special condition: hold Razor Claw, Nighttime"
577
+ sneasel,sneasler,"Evolves by special condition: use Razor Claw, Daytime"
578
+ ursaring,ursaluna,"Evolves by special condition: use Peat Block, under a full moon, in Legends: Arceus"
579
+ piloswine,mamoswine,Evolves by special condition: after Ancient Power learned
580
+ mantyke,mantine,Evolves by special condition: with Remoraid in party
581
+ linoone,obstagoon,Evolves by special condition: Nighttime
582
+ wurmple,silcoon,Evolves by special condition: random based on personality
583
+ wurmple,cascoon,Evolves by special condition: random based on personality
584
+ kirlia,gallade,"Evolves by special condition: use Dawn Stone, Male"
585
+ nincada,shedinja,"Evolves by special condition: empty spot in party, Pokéball in bag"
586
+ nosepass,probopass,Evolves by special condition: level up in a Magnetic Field area
587
+ feebas,milotic,"Evolves by special condition: trade holding Prism Scale, or level up with max Beauty"
588
+ snorunt,froslass,"Evolves by special condition: use Dawn Stone, Female"
589
+ burmy,mothim,Evolves by special condition: Male
590
+ burmy,wormadam,"Evolves by special condition: Female, in grass"
591
+ burmy,wormadam,"Evolves by special condition: Female, in caves"
592
+ burmy,wormadam,"Evolves by special condition: Female, in buildings"
593
+ combee,vespiquen,Evolves by special condition: Female
594
+ dewott,"samurott
595
+ hisuian samurott",Evolves by special condition: in Legends: Arceus
596
+ petilil,"lilligant
597
+ hisuian lilligant","Evolves by special condition: use Sun Stone, in Legends: Arceus"
598
+ yamask,runerigus,Evolves by special condition: near Dusty Bowl
599
+ zorua,zoroark,Evolves by special condition: in Legends: Arceus
600
+ bisharp,kingambit,Evolves by special condition: defeat 3 Bisharp that are holding Leader's Crest
601
+ rufflet,"braviary
602
+ hisuian braviary",Evolves by special condition: in Legends: Arceus
603
+ pancham,pangoro,Evolves by special condition: Dark type Pokémon in party
604
+ espurr,"meowstic
605
+ male",Evolves by special condition: Male
606
+ espurr,"meowstic
607
+ female",Evolves by special condition: Female
608
+ inkay,malamar,Evolves by special condition: holding console upside down
609
+ tyrunt,tyrantrum,Evolves by special condition: Daytime
610
+ amaura,aurorus,Evolves by special condition: Nighttime
611
+ sliggoo,goodra,Evolves by special condition: during rain
612
+ goomy,"sliggoo
613
+ hisuian sliggoo",Evolves by special condition: in Legends: Arceus
614
+ sliggoo,goodra,"Evolves by special condition: during rain, in Legends: Arceus"
615
+ bergmite,"avalugg
616
+ hisuian avalugg",Evolves by special condition: in Legends: Arceus
617
+ dartrix,"decidueye
618
+ hisuian decidueye",Evolves by special condition: in Legends: Arceus
619
+ yungoos,gumshoos,Evolves by special condition: Daytime
620
+ charjabug,vikavolt,"Evolves by special condition: use Thunder Stone, in Gen 8, or level up in a Magnetic Field area"
621
+ crabrawler,crabominable,"Evolves by special condition: use Ice Stone, or at Mount Lanakila in Alola"
622
+ rockruff,"lycanroc
623
+ midday form",Evolves by special condition: Daytime
624
+ rockruff,"lycanroc
625
+ midnight form",Evolves by special condition: Nighttime
626
+ rockruff,lycanroc,Evolves by special condition: Dusk
627
+ fomantis,lurantis,Evolves by special condition: Daytime
628
+ salandit,salazzle,Evolves by special condition: Female
629
+ steenee,tsareena,Evolves by special condition: after Stomp learned
630
+ cosmoem,solgaleo,Evolves by special condition: in Pokémon Sun or Ultra Sun
631
+ cosmoem,lunala,Evolves by special condition: in Pokémon Moon or Ultra Moon
632
+ poipole,naganadel,Evolves by special condition: after Dragon Pulse learned
633
+ meltan,melmetal,"Evolves by special condition: Pokémon GO only, 400 Meltan Candies"
634
+ milcery,alcremie,Evolves by special condition: spin around holding Sweet
635
+ farfetch'd,sirfetch'd,Evolves by special condition: achieve 3 critical hits in one battle
636
+ toxel,"toxtricity
637
+ amped form",Evolves by special condition: with an amped Nature
638
+ toxel,"toxtricity
639
+ low key form",Evolves by special condition: with a low key Nature
640
+ clobbopus,grapploct,Evolves by special condition: after Taunt learned
641
+ kubfu,"urshifu
642
+ single strike style","Evolves by special condition: use Scroll Of Darkness, or in Tower of Darkness in Galar"
643
+ kubfu,"urshifu
644
+ rapid strike style","Evolves by special condition: use Scroll Of Waters, or in Tower of Water in Galar"
645
+ stantler,wyrdeer,Evolves by special condition: use Psyshield Bash 20 times in Agile Style
646
+ basculin,basculegion,"Evolves by special condition: Male, receive 294 recoil damage in battle"
647
+ basculin,basculegion,"Evolves by special condition: Female, receive 294 recoil damage in battle"
648
+ qwilfish,overqwil,Evolves by special condition: use Barb Barrage 20 times in Strong Style
649
+ girafarig,farigiraf,Evolves by special condition: after Twin Beam learned
650
+ dunsparce,"dudunsparce
651
+ two-segment form",Evolves by special condition: after Hyper Drill learned
652
+ dunsparce,"dudunsparce
653
+ three-segment form","Evolves by special condition: after Hyper Drill learned, rare"
654
+ lechonk,"oinkologne
655
+ male",Evolves by special condition: Male
656
+ lechonk,"oinkologne
657
+ female",Evolves by special condition: Female
658
+ rellor,rabsca,"Evolves by special condition: walk 1,000 steps in Let's Go mode"
659
+ greavard,houndstone,Evolves by special condition: Nighttime
660
+ finizen,"palafin
661
+ zero form",Evolves by special condition: while in multiplayer
662
+ tandemaus,"maushold
663
+ family of three",Evolves by special condition: rare
664
+ pawmo,pawmot,"Evolves by special condition: walk 1,000 steps in Let's Go mode"
665
+ bramblin,brambleghast,"Evolves by special condition: walk 1,000 steps in Let's Go mode"
666
+ gimmighoul,gholdengo,Evolves by special condition: collect 999 Coins from Roaming Form
667
+ alolan rattata,alolan raticate,Evolves by special condition: Nighttime
668
+ hisuian sneasel,sneasler,"Evolves by special condition: use Razor Claw, Daytime"
669
+ galarian linoone,obstagoon,Evolves by special condition: Nighttime
670
+ plant cloak,mothim,Evolves by special condition: Male
671
+ plant cloak,plant cloak,"Evolves by special condition: Female, in grass"
672
+ sandy cloak,sandy cloak,"Evolves by special condition: Female, in caves"
673
+ trash cloak,trash cloak,"Evolves by special condition: Female, in buildings"
674
+ galarian yamask,runerigus,Evolves by special condition: near Dusty Bowl
675
+ hisuian zorua,hisuian zoroark,Evolves by special condition: in Legends: Arceus
676
+ hisuian sliggoo,hisuian goodra,"Evolves by special condition: during rain, in Legends: Arceus"
677
+ own tempo rockruff,dusk form,Evolves by special condition: Dusk
678
+ galarian farfetch'd,sirfetch'd,Evolves by special condition: achieve 3 critical hits in one battle
679
+ white-striped form,male,"Evolves by special condition: Male, receive 294 recoil damage in battle"
680
+ white-striped form,female,"Evolves by special condition: Female, receive 294 recoil damage in battle"
681
+ hisuian qwilfish,overqwil,Evolves by special condition: use Barb Barrage 20 times in Strong Style
682
+ chest form,gholdengo,Evolves by special condition: collect 999 Coins from Roaming Form
whatever stuff is neede/evolvable pokemons.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ bulbasaur,ivysaur,charmander,charmeleon,squirtle,wartortle,caterpie,metapod,weedle,kakuna,pidgey,pidgeotto,rattata,spearow,ekans,pichu,pikachu,sandshrew,nidoran f,nidorina,nidoran m,nidorino,cleffa,clefairy,vulpix,igglybuff,jigglypuff,zubat,oddish,gloom,paras,venonat,diglett,meowth,psyduck,mankey,growlithe,poliwag,poliwhirl,abra,kadabra,machop,machoke,bellsprout,weepinbell,tentacool,geodude,graveler,ponyta,slowpoke,magnemite,doduo,seel,grimer,shellder,gastly,haunter,drowzee,krabby,voltorb,exeggcute,cubone,tyrogue,tyrogue,koffing,rhyhorn,happiny,horsea,goldeen,staryu,mime jr.,smoochum,elekid,magby,magikarp,eevee,eevee,eevee,omanyte,kabuto,munchlax,dratini,dragonair,chikorita,bayleef,cyndaquil,quilava,totodile,croconaw,sentret,hoothoot,ledyba,spinarak,golbat,chinchou,togepi,natu,mareep,flaaffy,gloom,azurill,marill,bonsly,poliwhirl,hoppip,skiploom,sunkern,wooper,eevee,eevee,slowpoke,wynaut,pineco,onix,snubbull,scyther,teddiursa,slugma,swinub,remoraid,mantyke,houndour,seadra,phanpy,porygon,tyrogue,chansey,larvitar,pupitar,treecko,grovyle,torchic,combusken,mudkip,marshtomp,poochyena,zigzagoon,wurmple,silcoon,wurmple,cascoon,lotad,lombre,seedot,nuzleaf,taillow,wingull,ralts,kirlia,surskit,shroomish,slakoth,vigoroth,nincada,nincada,whismur,loudred,makuhita,skitty,aron,lairon,meditite,electrike,budew,gulpin,carvanha,wailmer,numel,spoink,trapinch,vibrava,cacnea,swablu,barboach,corphish,baltoy,lileep,anorith,feebas,shuppet,duskull,chingling,snorunt,spheal,sealeo,clamperl,clamperl,bagon,shelgon,beldum,metang,turtwig,grotle,chimchar,monferno,piplup,prinplup,starly,staravia,bidoof,kricketot,shinx,luxio,roselia,cranidos,shieldon,burmy,burmy,combee,buizel,cherubi,shellos,aipom,drifloon,buneary,misdreavus,murkrow,glameow,stunky,bronzor,gible,gabite,riolu,hippopotas,skorupi,croagunk,finneon,snover,sneasel,magneton,lickitung,rhydon,tangela,electabuzz,magmar,togetic,yanma,eevee,eevee,gligar,piloswine,porygon2,kirlia,nosepass,dusclops,snorunt,snivy,servine,tepig,pignite,oshawott,dewott,patrat,lillipup,herdier,purrloin,pansage,pansear,panpour,munna,pidove,tranquill,blitzle,roggenrola,boldore,woobat,drilbur,timburr,gurdurr,tympole,palpitoad,sewaddle,swadloon,venipede,whirlipede,cottonee,petilil,sandile,krokorok,darumaka,dwebble,scraggy,yamask,tirtouga,archen,trubbish,zorua,minccino,gothita,gothorita,solosis,duosion,ducklett,vanillite,vanillish,deerling,karrablast,foongus,frillish,joltik,ferroseed,klink,klang,tynamo,eelektrik,elgyem,litwick,lampent,axew,fraxure,cubchoo,shelmet,mienfoo,golett,pawniard,rufflet,vullaby,deino,zweilous,larvesta,chespin,quilladin,fennekin,braixen,froakie,frogadier,bunnelby,fletchling,fletchinder,scatterbug,spewpa,litleo,flab�b�,floette,skiddo,pancham,espurr,honedge,doublade,spritzee,swirlix,inkay,binacle,skrelp,clauncher,helioptile,tyrunt,amaura,eevee,goomy,sliggoo,phantump,pumpkaboo,bergmite,noibat,rowlet,dartrix,litten,torracat,popplio,brionne,pikipek,trumbeak,yungoos,grubbin,charjabug,crabrawler,cutiefly,rockruff,mareanie,mudbray,dewpider,fomantis,morelull,salandit,stufful,bounsweet,steenee,wimpod,sandygast,type: null,jangmo-o,hakamo-o,cosmog,cosmoem,cosmoem,poipole,meltan,grookey,thwackey,scorbunny,raboot,sobble,drizzile,skwovet,rookidee,corvisquire,blipbug,dottler,nickit,gossifleur,wooloo,chewtle,yamper,rolycoly,carkol,applin,applin,silicobra,arrokuda,toxel,sizzlipede,clobbopus,sinistea,hatenna,hattrem,impidimp,morgrem,linoone,meowth,corsola,farfetch'd,mr. mime,yamask,milcery,snom,cufant,dreepy,drakloak,kubfu,stantler,scyther,ursaring,basculin,sneasel,qwilfish
whatever stuff is neede/friendship.csv ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ pichu,pikachu,Evolves by friendship.
2
+ cleffa,clefairy,Evolves by friendship.
3
+ igglybuff,jigglypuff,Evolves by friendship.
4
+ golbat,crobat,Evolves by friendship.
5
+ meowth,persian,Evolves by friendship.
6
+ chansey,blissey,Evolves by friendship.
7
+ eevee,espeon,Evolves by friendship. Daytime
8
+ eevee,umbreon,Evolves by friendship. Nighttime
9
+ eevee,sylveon,Evolves by friendship. after Fairy-type move learnedand either ♥♥ Affection in Gen 6-7 or high friendship in Gen 8+
10
+ munchlax,snorlax,Evolves by friendship.
11
+ togepi,togetic,Evolves by friendship.
12
+ azurill,marill,Evolves by friendship.
13
+ budew,roselia,Evolves by friendship. Daytime
14
+ chingling,chimecho,Evolves by friendship. Nighttime
15
+ buneary,lopunny,Evolves by friendship.
16
+ riolu,lucario,Evolves by friendship. Daytime
17
+ woobat,swoobat,Evolves by friendship.
18
+ swadloon,leavanny,Evolves by friendship.
19
+ type: null,silvally,Evolves by friendship.
20
+ snom,frosmoth,Evolves by friendship. Nighttime
21
+ alolan meowth,alolan persian,Evolves by friendship.
whatever stuff is neede/input_pkmn_stats_and_evolutions.xlsx - pkmn_stats — копия.csv ADDED
@@ -0,0 +1,906 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name,pokedex_number,gen_introduced,hp,attack,defense,special_attack,special_defense,speed,height,weight,evolves_from
2
+ Bulbasaur,1,1,45,49,49,65,65,45,7,69,
3
+ Ivysaur,2,1,60,62,63,80,80,60,10,130,Bulbasaur
4
+ Venusaur,3,1,80,82,83,100,100,80,20,1000,Ivysaur
5
+ Charmander,4,1,39,52,43,60,50,65,6,85,
6
+ Charmeleon,5,1,58,64,58,80,65,80,11,190,Charmander
7
+ Charizard,6,1,78,84,78,109,85,100,17,905,Charmeleon
8
+ Squirtle,7,1,44,48,65,50,64,43,5,90,
9
+ Wartortle,8,1,59,63,80,65,80,58,10,225,Squirtle
10
+ Blastoise,9,1,79,83,100,85,105,78,16,855,Wartortle
11
+ Caterpie,10,1,45,30,35,20,20,45,3,29,
12
+ Metapod,11,1,50,20,55,25,25,30,7,99,Caterpie
13
+ Butterfree,12,1,60,45,50,90,80,70,11,320,Metapod
14
+ Weedle,13,1,40,35,30,20,20,50,3,32,
15
+ Kakuna,14,1,45,25,50,25,25,35,6,100,Weedle
16
+ Beedrill,15,1,65,90,40,45,80,75,10,295,Kakuna
17
+ Pidgey,16,1,40,45,40,35,35,56,3,18,
18
+ Pidgeotto,17,1,63,60,55,50,50,71,11,300,Pidgey
19
+ Pidgeot,18,1,83,80,75,70,70,101,15,395,Pidgeotto
20
+ Rattata,19,1,30,56,35,25,35,72,3,35,
21
+ Raticate,20,1,55,81,60,50,70,97,7,185,Rattata
22
+ Spearow,21,1,40,60,30,31,31,70,3,20,
23
+ Fearow,22,1,65,90,65,61,61,100,12,380,Spearow
24
+ Ekans,23,1,35,60,44,40,54,55,20,69,
25
+ Arbok,24,1,60,95,69,65,79,80,35,650,Ekans
26
+ Pikachu,25,1,35,55,40,50,50,90,4,60,Pichu
27
+ Raichu,26,1,60,90,55,90,80,110,8,300,Pikachu
28
+ Sandshrew,27,1,50,75,85,20,30,40,6,120,
29
+ Sandslash,28,1,75,100,110,45,55,65,10,295,Sandshrew
30
+ Nidoran F,29,1,55,47,52,40,40,41,4,70,
31
+ Nidorina,30,1,70,62,67,55,55,56,8,200,Nidoran F
32
+ Nidoqueen,31,1,90,92,87,75,85,76,13,600,Nidorina
33
+ Nidoran M,32,1,46,57,40,40,40,50,5,90,
34
+ Nidorino,33,1,61,72,57,55,55,65,9,195,Nidoran M
35
+ Nidoking,34,1,81,102,77,85,75,85,14,620,Nidorino
36
+ Clefairy,35,1,70,45,48,60,65,35,6,75,Cleffa
37
+ Clefable,36,1,95,70,73,95,90,60,13,400,Clefairy
38
+ Vulpix,37,1,38,41,40,50,65,65,6,99,
39
+ Ninetales,38,1,73,76,75,81,100,100,11,199,Vulpix
40
+ Jigglypuff,39,1,115,45,20,45,25,20,5,55,Igglybuff
41
+ Wigglytuff,40,1,140,70,45,85,50,45,10,120,Jigglypuff
42
+ Zubat,41,1,40,45,35,30,40,55,8,75,
43
+ Golbat,42,1,75,80,70,65,75,90,16,550,Zubat
44
+ Oddish,43,1,45,50,55,75,65,30,5,54,
45
+ Gloom,44,1,60,65,70,85,75,40,8,86,Oddish
46
+ Vileplume,45,1,75,80,85,110,90,50,12,186,Gloom
47
+ Paras,46,1,35,70,55,45,55,25,3,54,
48
+ Parasect,47,1,60,95,80,60,80,30,10,295,Paras
49
+ Venonat,48,1,60,55,50,40,55,45,10,300,
50
+ Venomoth,49,1,70,65,60,90,75,90,15,125,Venonat
51
+ Diglett,50,1,10,55,25,35,45,95,2,8,
52
+ Dugtrio,51,1,35,100,50,50,70,120,7,333,Diglett
53
+ Meowth,52,1,40,45,35,40,40,90,4,42,
54
+ Persian,53,1,65,70,60,65,65,115,10,320,Meowth
55
+ Psyduck,54,1,50,52,48,65,50,55,8,196,
56
+ Golduck,55,1,80,82,78,95,80,85,17,766,Psyduck
57
+ Mankey,56,1,40,80,35,35,45,70,5,280,
58
+ Primeape,57,1,65,105,60,60,70,95,10,320,Mankey
59
+ Growlithe,58,1,55,70,45,70,50,60,7,190,
60
+ Arcanine,59,1,90,110,80,100,80,95,19,1550,Growlithe
61
+ Poliwag,60,1,40,50,40,40,40,90,6,124,
62
+ Poliwhirl,61,1,65,65,65,50,50,90,10,200,Poliwag
63
+ Poliwrath,62,1,90,95,95,70,90,70,13,540,Poliwhirl
64
+ Abra,63,1,25,20,15,105,55,90,9,195,
65
+ Kadabra,64,1,40,35,30,120,70,105,13,565,Abra
66
+ Alakazam,65,1,55,50,45,135,95,120,15,480,Kadabra
67
+ Machop,66,1,70,80,50,35,35,35,8,195,
68
+ Machoke,67,1,80,100,70,50,60,45,15,705,Machop
69
+ Machamp,68,1,90,130,80,65,85,55,16,1300,Machoke
70
+ Bellsprout,69,1,50,75,35,70,30,40,7,40,
71
+ Weepinbell,70,1,65,90,50,85,45,55,10,64,Bellsprout
72
+ Victreebel,71,1,80,105,65,100,70,70,17,155,Weepinbell
73
+ Tentacool,72,1,40,40,35,50,100,70,9,455,
74
+ Tentacruel,73,1,80,70,65,80,120,100,16,550,Tentacool
75
+ Geodude,74,1,40,80,100,30,30,20,4,200,
76
+ Graveler,75,1,55,95,115,45,45,35,10,1050,Geodude
77
+ Golem,76,1,80,120,130,55,65,45,14,3000,Graveler
78
+ Ponyta,77,1,50,85,55,65,65,90,10,300,
79
+ Rapidash,78,1,65,100,70,80,80,105,17,950,Ponyta
80
+ Slowpoke,79,1,90,65,65,40,40,15,12,360,
81
+ Slowbro,80,1,95,75,110,100,80,30,16,785,Slowpoke
82
+ Magnemite,81,1,25,35,70,95,55,45,3,60,
83
+ Magneton,82,1,50,60,95,120,70,70,10,600,Magnemite
84
+ Farfetch'd,83,1,52,90,55,58,62,60,8,150,
85
+ Doduo,84,1,35,85,45,35,35,75,14,392,
86
+ Dodrio,85,1,60,110,70,60,60,110,18,852,Doduo
87
+ Seel,86,1,65,45,55,45,70,45,11,900,
88
+ Dewgong,87,1,90,70,80,70,95,70,17,1200,Seel
89
+ Grimer,88,1,80,80,50,40,50,25,9,300,
90
+ Muk,89,1,105,105,75,65,100,50,12,300,Grimer
91
+ Shellder,90,1,30,65,100,45,25,40,3,40,
92
+ Cloyster,91,1,50,95,180,85,45,70,15,1325,Shellder
93
+ Gastly,92,1,30,35,30,100,35,80,13,1,
94
+ Haunter,93,1,45,50,45,115,55,95,16,1,Gastly
95
+ Gengar,94,1,60,65,60,130,75,110,15,405,Haunter
96
+ Onix,95,1,35,45,160,30,45,70,88,2100,
97
+ Drowzee,96,1,60,48,45,43,90,42,10,324,
98
+ Hypno,97,1,85,73,70,73,115,67,16,756,Drowzee
99
+ Krabby,98,1,30,105,90,25,25,50,4,65,
100
+ Kingler,99,1,55,130,115,50,50,75,13,600,Krabby
101
+ Voltorb,100,1,40,30,50,55,55,100,5,104,
102
+ Electrode,101,1,60,50,70,80,80,150,12,666,Voltorb
103
+ Exeggcute,102,1,60,40,80,60,45,40,4,25,
104
+ Exeggutor,103,1,95,95,85,125,75,55,20,1200,Exeggcute
105
+ Cubone,104,1,50,50,95,40,50,35,4,65,
106
+ Marowak,105,1,60,80,110,50,80,45,10,450,Cubone
107
+ Hitmonlee,106,1,50,120,53,35,110,87,15,498,Tyrogue
108
+ Hitmonchan,107,1,50,105,79,35,110,76,14,502,Tyrogue
109
+ Lickitung,108,1,90,55,75,60,75,30,12,655,
110
+ Koffing,109,1,40,65,95,60,45,35,6,10,
111
+ Weezing,110,1,65,90,120,85,70,60,12,95,Koffing
112
+ Rhyhorn,111,1,80,85,95,30,30,25,10,1150,
113
+ Rhydon,112,1,105,130,120,45,45,40,19,1200,Rhyhorn
114
+ Chansey,113,1,250,5,5,35,105,50,11,346,Happiny
115
+ Tangela,114,1,65,55,115,100,40,60,10,350,
116
+ Kangaskhan,115,1,105,95,80,40,80,90,22,800,
117
+ Horsea,116,1,30,40,70,70,25,60,4,80,
118
+ Seadra,117,1,55,65,95,95,45,85,12,250,Horsea
119
+ Goldeen,118,1,45,67,60,35,50,63,6,150,
120
+ Seaking,119,1,80,92,65,65,80,68,13,390,Goldeen
121
+ Staryu,120,1,30,45,55,70,55,85,8,345,
122
+ Starmie,121,1,60,75,85,100,85,115,11,800,Staryu
123
+ Mr. Mime,122,1,40,45,65,100,120,90,13,545,Mime Jr.
124
+ Scyther,123,1,70,110,80,55,80,105,15,560,
125
+ Jynx,124,1,65,50,35,115,95,95,14,406,Smoochum
126
+ Electabuzz,125,1,65,83,57,95,85,105,11,300,Elekid
127
+ Magmar,126,1,65,95,57,100,85,93,13,445,Magby
128
+ Pinsir,127,1,65,125,100,55,70,85,15,550,
129
+ Tauros,128,1,75,100,95,40,70,110,14,884,
130
+ Magikarp,129,1,20,10,55,15,20,80,9,100,
131
+ Gyarados,130,1,95,125,79,60,100,81,65,2350,Magikarp
132
+ Lapras,131,1,130,85,80,85,95,60,25,2200,
133
+ Ditto,132,1,48,48,48,48,48,48,3,40,
134
+ Eevee,133,1,55,55,50,45,65,55,3,65,
135
+ Vaporeon,134,1,130,65,60,110,95,65,10,290,Eevee
136
+ Jolteon,135,1,65,65,60,110,95,130,8,245,Eevee
137
+ Flareon,136,1,65,130,60,95,110,65,9,250,Eevee
138
+ Porygon,137,1,65,60,70,85,75,40,8,365,
139
+ Omanyte,138,1,35,40,100,90,55,35,4,75,
140
+ Omastar,139,1,70,60,125,115,70,55,10,350,Omanyte
141
+ Kabuto,140,1,30,80,90,55,45,55,5,115,
142
+ Kabutops,141,1,60,115,105,65,70,80,13,405,Kabuto
143
+ Aerodactyl,142,1,80,105,65,60,75,130,18,590,
144
+ Snorlax,143,1,160,110,65,65,110,30,21,4600,Munchlax
145
+ Articuno,144,1,90,85,100,95,125,85,17,554,
146
+ Zapdos,145,1,90,90,85,125,90,100,16,526,
147
+ Moltres,146,1,90,100,90,125,85,90,20,600,
148
+ Dratini,147,1,41,64,45,50,50,50,18,33,
149
+ Dragonair,148,1,61,84,65,70,70,70,40,165,Dratini
150
+ Dragonite,149,1,91,134,95,100,100,80,22,2100,Dragonair
151
+ Mewtwo,150,1,106,110,90,154,90,130,20,1220,
152
+ Mew,151,1,100,100,100,100,100,100,4,40,
153
+ Chikorita,152,2,45,49,65,49,65,45,9,64,
154
+ Bayleef,153,2,60,62,80,63,80,60,12,158,Chikorita
155
+ Meganium,154,2,80,82,100,83,100,80,18,1005,Bayleef
156
+ Cyndaquil,155,2,39,52,43,60,50,65,5,79,
157
+ Quilava,156,2,58,64,58,80,65,80,9,190,Cyndaquil
158
+ Typhlosion,157,2,78,84,78,109,85,100,17,795,Quilava
159
+ Totodile,158,2,50,65,64,44,48,43,6,95,
160
+ Croconaw,159,2,65,80,80,59,63,58,11,250,Totodile
161
+ Feraligatr,160,2,85,105,100,79,83,78,23,888,Croconaw
162
+ Sentret,161,2,35,46,34,35,45,20,8,60,
163
+ Furret,162,2,85,76,64,45,55,90,18,325,Sentret
164
+ Hoothoot,163,2,60,30,30,36,56,50,7,212,
165
+ Noctowl,164,2,100,50,50,86,96,70,16,408,Hoothoot
166
+ Ledyba,165,2,40,20,30,40,80,55,10,108,
167
+ Ledian,166,2,55,35,50,55,110,85,14,356,Ledyba
168
+ Spinarak,167,2,40,60,40,40,40,30,5,85,
169
+ Ariados,168,2,70,90,70,60,70,40,11,335,Spinarak
170
+ Crobat,169,2,85,90,80,70,80,130,18,750,Golbat
171
+ Chinchou,170,2,75,38,38,56,56,67,5,120,
172
+ Lanturn,171,2,125,58,58,76,76,67,12,225,Chinchou
173
+ Pichu,172,2,20,40,15,35,35,60,3,20,
174
+ Cleffa,173,2,50,25,28,45,55,15,3,30,
175
+ Igglybuff,174,2,90,30,15,40,20,15,3,10,
176
+ Togepi,175,2,35,20,65,40,65,20,3,15,
177
+ Togetic,176,2,55,40,85,80,105,40,6,32,Togepi
178
+ Natu,177,2,40,50,45,70,45,70,2,20,
179
+ Xatu,178,2,65,75,70,95,70,95,15,150,Natu
180
+ Mareep,179,2,55,40,40,65,45,35,6,78,
181
+ Flaaffy,180,2,70,55,55,80,60,45,8,133,Mareep
182
+ Ampharos,181,2,90,75,85,115,90,55,14,615,Flaaffy
183
+ Bellossom,182,2,75,80,95,90,100,50,4,58,Gloom
184
+ Marill,183,2,70,20,50,20,50,40,4,85,Azurill
185
+ Azumarill,184,2,100,50,80,60,80,50,8,285,Marill
186
+ Sudowoodo,185,2,70,100,115,30,65,30,12,380,Bonsly
187
+ Politoed,186,2,90,75,75,90,100,70,11,339,Poliwhirl
188
+ Hoppip,187,2,35,35,40,35,55,50,4,5,
189
+ Skiploom,188,2,55,45,50,45,65,80,6,10,Hoppip
190
+ Jumpluff,189,2,75,55,70,55,95,110,8,30,Skiploom
191
+ Aipom,190,2,55,70,55,40,55,85,8,115,
192
+ Sunkern,191,2,30,30,30,30,30,30,3,18,
193
+ Sunflora,192,2,75,75,55,105,85,30,8,85,Sunkern
194
+ Yanma,193,2,65,65,45,75,45,95,12,380,
195
+ Wooper,194,2,55,45,45,25,25,15,4,85,
196
+ Quagsire,195,2,95,85,85,65,65,35,14,750,Wooper
197
+ Espeon,196,2,65,65,60,130,95,110,9,265,Eevee
198
+ Umbreon,197,2,95,65,110,60,130,65,10,270,Eevee
199
+ Murkrow,198,2,60,85,42,85,42,91,5,21,
200
+ Slowking,199,2,95,75,80,100,110,30,20,795,Slowpoke
201
+ Misdreavus,200,2,60,60,60,85,85,85,7,10,
202
+ Unown,201,2,48,72,48,72,48,48,5,50,
203
+ Wobbuffet,202,2,190,33,58,33,58,33,13,285,Wynaut
204
+ Girafarig,203,2,70,80,65,90,65,85,15,415,
205
+ Pineco,204,2,50,65,90,35,35,15,6,72,
206
+ Forretress,205,2,75,90,140,60,60,40,12,1258,Pineco
207
+ Dunsparce,206,2,100,70,70,65,65,45,15,140,
208
+ Gligar,207,2,65,75,105,35,65,85,11,648,
209
+ Steelix,208,2,75,85,200,55,65,30,92,4000,Onix
210
+ Snubbull,209,2,60,80,50,40,40,30,6,78,
211
+ Granbull,210,2,90,120,75,60,60,45,14,487,Snubbull
212
+ Qwilfish,211,2,65,95,85,55,55,85,5,39,
213
+ Scizor,212,2,70,130,100,55,80,65,18,1180,Scyther
214
+ Shuckle,213,2,20,10,230,10,230,5,6,205,
215
+ Heracross,214,2,80,125,75,40,95,85,15,540,
216
+ Sneasel,215,2,55,95,55,35,75,115,9,280,
217
+ Teddiursa,216,2,60,80,50,50,50,40,6,88,
218
+ Ursaring,217,2,90,130,75,75,75,55,18,1258,Teddiursa
219
+ Slugma,218,2,40,40,40,70,40,20,7,350,
220
+ Magcargo,219,2,60,50,120,90,80,30,8,550,Slugma
221
+ Swinub,220,2,50,50,40,30,30,50,4,65,
222
+ Piloswine,221,2,100,100,80,60,60,50,11,558,Swinub
223
+ Corsola,222,2,65,55,95,65,95,35,6,50,
224
+ Remoraid,223,2,35,65,35,65,35,65,6,120,
225
+ Octillery,224,2,75,105,75,105,75,45,9,285,Remoraid
226
+ Delibird,225,2,45,55,45,65,45,75,9,160,
227
+ Mantine,226,2,85,40,70,80,140,70,21,2200,Mantyke
228
+ Skarmory,227,2,65,80,140,40,70,70,17,505,
229
+ Houndour,228,2,45,60,30,80,50,65,6,108,
230
+ Houndoom,229,2,75,90,50,110,80,95,14,350,Houndour
231
+ Kingdra,230,2,75,95,95,95,95,85,18,1520,Seadra
232
+ Phanpy,231,2,90,60,60,40,40,40,5,335,
233
+ Donphan,232,2,90,120,120,60,60,50,11,1200,Phanpy
234
+ Porygon2,233,2,85,80,90,105,95,60,6,325,Porygon
235
+ Stantler,234,2,73,95,62,85,65,85,14,712,
236
+ Smeargle,235,2,55,20,35,20,45,75,12,580,
237
+ Tyrogue,236,2,35,35,35,35,35,35,7,210,
238
+ Hitmontop,237,2,50,95,95,35,110,70,14,480,Tyrogue
239
+ Smoochum,238,2,45,30,15,85,65,65,4,60,
240
+ Elekid,239,2,45,63,37,65,55,95,6,235,
241
+ Magby,240,2,45,75,37,70,55,83,7,214,
242
+ Miltank,241,2,95,80,105,40,70,100,12,755,
243
+ Blissey,242,2,255,10,10,75,135,55,15,468,Chansey
244
+ Raikou,243,2,90,85,75,115,100,115,19,1780,
245
+ Entei,244,2,115,115,85,90,75,100,21,1980,
246
+ Suicune,245,2,100,75,115,90,115,85,20,1870,
247
+ Larvitar,246,2,50,64,50,45,50,41,6,720,
248
+ Pupitar,247,2,70,84,70,65,70,51,12,1520,Larvitar
249
+ Tyranitar,248,2,100,134,110,95,100,61,20,2020,Pupitar
250
+ Lugia,249,2,106,90,130,90,154,110,52,2160,
251
+ Ho-Oh,250,2,106,130,90,110,154,90,38,1990,
252
+ Celebi,251,2,100,100,100,100,100,100,6,50,
253
+ Treecko,252,3,40,45,35,65,55,70,5,50,
254
+ Grovyle,253,3,50,65,45,85,65,95,9,216,Treecko
255
+ Sceptile,254,3,70,85,65,105,85,120,17,522,Grovyle
256
+ Torchic,255,3,45,60,40,70,50,45,4,25,
257
+ Combusken,256,3,60,85,60,85,60,55,9,195,Torchic
258
+ Blaziken,257,3,80,120,70,110,70,80,19,520,Combusken
259
+ Mudkip,258,3,50,70,50,50,50,40,4,76,
260
+ Marshtomp,259,3,70,85,70,60,70,50,7,280,Mudkip
261
+ Swampert,260,3,100,110,90,85,90,60,15,819,Marshtomp
262
+ Poochyena,261,3,35,55,35,30,30,35,5,136,
263
+ Mightyena,262,3,70,90,70,60,60,70,10,370,Poochyena
264
+ Zigzagoon,263,3,38,30,41,30,41,60,4,175,
265
+ Linoone,264,3,78,70,61,50,61,100,5,325,Zigzagoon
266
+ Wurmple,265,3,45,45,35,20,30,20,3,36,
267
+ Silcoon,266,3,50,35,55,25,25,15,6,100,Wurmple
268
+ Beautifly,267,3,60,70,50,100,50,65,10,284,Silcoon
269
+ Cascoon,268,3,50,35,55,25,25,15,7,115,Wurmple
270
+ Dustox,269,3,60,50,70,50,90,65,12,316,Cascoon
271
+ Lotad,270,3,40,30,30,40,50,30,5,26,
272
+ Lombre,271,3,60,50,50,60,70,50,12,325,Lotad
273
+ Ludicolo,272,3,80,70,70,90,100,70,15,550,Lombre
274
+ Seedot,273,3,40,40,50,30,30,30,5,40,
275
+ Nuzleaf,274,3,70,70,40,60,40,60,10,280,Seedot
276
+ Shiftry,275,3,90,100,60,90,60,80,13,596,Nuzleaf
277
+ Taillow,276,3,40,55,30,30,30,85,3,23,
278
+ Swellow,277,3,60,85,60,75,50,125,7,198,Taillow
279
+ Wingull,278,3,40,30,30,55,30,85,6,95,
280
+ Pelipper,279,3,60,50,100,95,70,65,12,280,Wingull
281
+ Ralts,280,3,28,25,25,45,35,40,4,66,
282
+ Kirlia,281,3,38,35,35,65,55,50,8,202,Ralts
283
+ Gardevoir,282,3,68,65,65,125,115,80,16,484,Kirlia
284
+ Surskit,283,3,40,30,32,50,52,65,5,17,
285
+ Masquerain,284,3,70,60,62,100,82,80,8,36,Surskit
286
+ Shroomish,285,3,60,40,60,40,60,35,4,45,
287
+ Breloom,286,3,60,130,80,60,60,70,12,392,Shroomish
288
+ Slakoth,287,3,60,60,60,35,35,30,8,240,
289
+ Vigoroth,288,3,80,80,80,55,55,90,14,465,Slakoth
290
+ Slaking,289,3,150,160,100,95,65,100,20,1305,Vigoroth
291
+ Nincada,290,3,31,45,90,30,30,40,5,55,
292
+ Ninjask,291,3,61,90,45,50,50,160,8,120,Nincada
293
+ Shedinja,292,3,1,90,45,30,30,40,8,12,Nincada
294
+ Whismur,293,3,64,51,23,51,23,28,6,163,
295
+ Loudred,294,3,84,71,43,71,43,48,10,405,Whismur
296
+ Exploud,295,3,104,91,63,91,73,68,15,840,Loudred
297
+ Makuhita,296,3,72,60,30,20,30,25,10,864,
298
+ Hariyama,297,3,144,120,60,40,60,50,23,2538,Makuhita
299
+ Azurill,298,3,50,20,40,20,40,20,2,20,
300
+ Nosepass,299,3,30,45,135,45,90,30,10,970,
301
+ Skitty,300,3,50,45,45,35,35,50,6,110,
302
+ Delcatty,301,3,70,65,65,55,55,90,11,326,Skitty
303
+ Sableye,302,3,50,75,75,65,65,50,5,110,
304
+ Mawile,303,3,50,85,85,55,55,50,6,115,
305
+ Aron,304,3,50,70,100,40,40,30,4,600,
306
+ Lairon,305,3,60,90,140,50,50,40,9,1200,Aron
307
+ Aggron,306,3,70,110,180,60,60,50,21,3600,Lairon
308
+ Meditite,307,3,30,40,55,40,55,60,6,112,
309
+ Medicham,308,3,60,60,75,60,75,80,13,315,Meditite
310
+ Electrike,309,3,40,45,40,65,40,65,6,152,
311
+ Manectric,310,3,70,75,60,105,60,105,15,402,Electrike
312
+ Plusle,311,3,60,50,40,85,75,95,4,42,
313
+ Minun,312,3,60,40,50,75,85,95,4,42,
314
+ Volbeat,313,3,65,73,75,47,85,85,7,177,
315
+ Illumise,314,3,65,47,75,73,85,85,6,177,
316
+ Roselia,315,3,50,60,45,100,80,65,3,20,Budew
317
+ Gulpin,316,3,70,43,53,43,53,40,4,103,
318
+ Swalot,317,3,100,73,83,73,83,55,17,800,Gulpin
319
+ Carvanha,318,3,45,90,20,65,20,65,8,208,
320
+ Sharpedo,319,3,70,120,40,95,40,95,18,888,Carvanha
321
+ Wailmer,320,3,130,70,35,70,35,60,20,1300,
322
+ Wailord,321,3,170,90,45,90,45,60,145,3980,Wailmer
323
+ Numel,322,3,60,60,40,65,45,35,7,240,
324
+ Camerupt,323,3,70,100,70,105,75,40,19,2200,Numel
325
+ Torkoal,324,3,70,85,140,85,70,20,5,804,
326
+ Spoink,325,3,60,25,35,70,80,60,7,306,
327
+ Grumpig,326,3,80,45,65,90,110,80,9,715,Spoink
328
+ Spinda,327,3,60,60,60,60,60,60,11,50,
329
+ Trapinch,328,3,45,100,45,45,45,10,7,150,
330
+ Vibrava,329,3,50,70,50,50,50,70,11,153,Trapinch
331
+ Flygon,330,3,80,100,80,80,80,100,20,820,Vibrava
332
+ Cacnea,331,3,50,85,40,85,40,35,4,513,
333
+ Cacturne,332,3,70,115,60,115,60,55,13,774,Cacnea
334
+ Swablu,333,3,45,40,60,40,75,50,4,12,
335
+ Altaria,334,3,75,70,90,70,105,80,11,206,Swablu
336
+ Zangoose,335,3,73,115,60,60,60,90,13,403,
337
+ Seviper,336,3,73,100,60,100,60,65,27,525,
338
+ Lunatone,337,3,90,55,65,95,85,70,10,1680,
339
+ Solrock,338,3,90,95,85,55,65,70,12,1540,
340
+ Barboach,339,3,50,48,43,46,41,60,4,19,
341
+ Whiscash,340,3,110,78,73,76,71,60,9,236,Barboach
342
+ Corphish,341,3,43,80,65,50,35,35,6,115,
343
+ Crawdaunt,342,3,63,120,85,90,55,55,11,328,Corphish
344
+ Baltoy,343,3,40,40,55,40,70,55,5,215,
345
+ Claydol,344,3,60,70,105,70,120,75,15,1080,Baltoy
346
+ Lileep,345,3,66,41,77,61,87,23,10,238,
347
+ Cradily,346,3,86,81,97,81,107,43,15,604,Lileep
348
+ Anorith,347,3,45,95,50,40,50,75,7,125,
349
+ Armaldo,348,3,75,125,100,70,80,45,15,682,Anorith
350
+ Feebas,349,3,20,15,20,10,55,80,6,74,
351
+ Milotic,350,3,95,60,79,100,125,81,62,1620,Feebas
352
+ Castform,351,3,70,70,70,70,70,70,3,8,
353
+ Kecleon,352,3,60,90,70,60,120,40,10,220,
354
+ Shuppet,353,3,44,75,35,63,33,45,6,23,
355
+ Banette,354,3,64,115,65,83,63,65,11,125,Shuppet
356
+ Duskull,355,3,20,40,90,30,90,25,8,150,
357
+ Dusclops,356,3,40,70,130,60,130,25,16,306,Duskull
358
+ Tropius,357,3,99,68,83,72,87,51,20,1000,
359
+ Chimecho,358,3,75,50,80,95,90,65,6,10,Chingling
360
+ Absol,359,3,65,130,60,75,60,75,12,470,
361
+ Wynaut,360,3,95,23,48,23,48,23,6,140,
362
+ Snorunt,361,3,50,50,50,50,50,50,7,168,
363
+ Glalie,362,3,80,80,80,80,80,80,15,2565,Snorunt
364
+ Spheal,363,3,70,40,50,55,50,25,8,395,
365
+ Sealeo,364,3,90,60,70,75,70,45,11,876,Spheal
366
+ Walrein,365,3,110,80,90,95,90,65,14,1506,Sealeo
367
+ Clamperl,366,3,35,64,85,74,55,32,4,525,
368
+ Huntail,367,3,55,104,105,94,75,52,17,270,Clamperl
369
+ Gorebyss,368,3,55,84,105,114,75,52,18,226,Clamperl
370
+ Relicanth,369,3,100,90,130,45,65,55,10,234,
371
+ Luvdisc,370,3,43,30,55,40,65,97,6,87,
372
+ Bagon,371,3,45,75,60,40,30,50,6,421,
373
+ Shelgon,372,3,65,95,100,60,50,50,11,1105,Bagon
374
+ Salamence,373,3,95,135,80,110,80,100,15,1026,Shelgon
375
+ Beldum,374,3,40,55,80,35,60,30,6,952,
376
+ Metang,375,3,60,75,100,55,80,50,12,2025,Beldum
377
+ Metagross,376,3,80,135,130,95,90,70,16,5500,Metang
378
+ Regirock,377,3,80,100,200,50,100,50,17,2300,
379
+ Regice,378,3,80,50,100,100,200,50,18,1750,
380
+ Registeel,379,3,80,75,150,75,150,50,19,2050,
381
+ Latias,380,3,80,80,90,110,130,110,14,400,
382
+ Latios,381,3,80,90,80,130,110,110,20,600,
383
+ Kyogre,382,3,100,100,90,150,140,90,45,3520,
384
+ Groudon,383,3,100,150,140,100,90,90,35,9500,
385
+ Rayquaza,384,3,105,150,90,150,90,95,70,2065,
386
+ Jirachi,385,3,100,100,100,100,100,100,3,11,
387
+ Deoxys,386,3,50,150,50,150,50,150,17,608,
388
+ Turtwig,387,4,55,68,64,45,55,31,4,102,
389
+ Grotle,388,4,75,89,85,55,65,36,11,970,Turtwig
390
+ Torterra,389,4,95,109,105,75,85,56,22,3100,Grotle
391
+ Chimchar,390,4,44,58,44,58,44,61,5,62,
392
+ Monferno,391,4,64,78,52,78,52,81,9,220,Chimchar
393
+ Infernape,392,4,76,104,71,104,71,108,12,550,Monferno
394
+ Piplup,393,4,53,51,53,61,56,40,4,52,
395
+ Prinplup,394,4,64,66,68,81,76,50,8,230,Piplup
396
+ Empoleon,395,4,84,86,88,111,101,60,17,845,Prinplup
397
+ Starly,396,4,40,55,30,30,30,60,3,20,
398
+ Staravia,397,4,55,75,50,40,40,80,6,155,Starly
399
+ Staraptor,398,4,85,120,70,50,60,100,12,249,Staravia
400
+ Bidoof,399,4,59,45,40,35,40,31,5,200,
401
+ Bibarel,400,4,79,85,60,55,60,71,10,315,Bidoof
402
+ Kricketot,401,4,37,25,41,25,41,25,3,22,
403
+ Kricketune,402,4,77,85,51,55,51,65,10,255,Kricketot
404
+ Shinx,403,4,45,65,34,40,34,45,5,95,
405
+ Luxio,404,4,60,85,49,60,49,60,9,305,Shinx
406
+ Luxray,405,4,80,120,79,95,79,70,14,420,Luxio
407
+ Budew,406,4,40,30,35,50,70,55,2,12,
408
+ Roserade,407,4,60,70,65,125,105,90,9,145,Roselia
409
+ Cranidos,408,4,67,125,40,30,30,58,9,315,
410
+ Rampardos,409,4,97,165,60,65,50,58,16,1025,Cranidos
411
+ Shieldon,410,4,30,42,118,42,88,30,5,570,
412
+ Bastiodon,411,4,60,52,168,47,138,30,13,1495,Shieldon
413
+ Burmy,412,4,40,29,45,29,45,36,2,34,
414
+ Wormadam,413,4,60,59,85,79,105,36,5,65,Burmy
415
+ Mothim,414,4,70,94,50,94,50,66,9,233,Burmy
416
+ Combee,415,4,30,30,42,30,42,70,3,55,
417
+ Vespiquen,416,4,70,80,102,80,102,40,12,385,Combee
418
+ Pachirisu,417,4,60,45,70,45,90,95,4,39,
419
+ Buizel,418,4,55,65,35,60,30,85,7,295,
420
+ Floatzel,419,4,85,105,55,85,50,115,11,335,Buizel
421
+ Cherubi,420,4,45,35,45,62,53,35,4,33,
422
+ Cherrim,421,4,70,60,70,87,78,85,5,93,Cherubi
423
+ Shellos,422,4,76,48,48,57,62,34,3,63,
424
+ Gastrodon,423,4,111,83,68,92,82,39,9,299,Shellos
425
+ Ambipom,424,4,75,100,66,60,66,115,12,203,Aipom
426
+ Drifloon,425,4,90,50,34,60,44,70,4,12,
427
+ Drifblim,426,4,150,80,44,90,54,80,12,150,Drifloon
428
+ Buneary,427,4,55,66,44,44,56,85,4,55,
429
+ Lopunny,428,4,65,76,84,54,96,105,12,333,Buneary
430
+ Mismagius,429,4,60,60,60,105,105,105,9,44,Misdreavus
431
+ Honchkrow,430,4,100,125,52,105,52,71,9,273,Murkrow
432
+ Glameow,431,4,49,55,42,42,37,85,5,39,
433
+ Purugly,432,4,71,82,64,64,59,112,10,438,Glameow
434
+ Chingling,433,4,45,30,50,65,50,45,2,6,
435
+ Stunky,434,4,63,63,47,41,41,74,4,192,
436
+ Skuntank,435,4,103,93,67,71,61,84,10,380,Stunky
437
+ Bronzor,436,4,57,24,86,24,86,23,5,605,
438
+ Bronzong,437,4,67,89,116,79,116,33,13,1870,Bronzor
439
+ Bonsly,438,4,50,80,95,10,45,10,5,150,
440
+ Mime Jr.,439,4,20,25,45,70,90,60,6,130,
441
+ Happiny,440,4,100,5,5,15,65,30,6,244,
442
+ Chatot,441,4,76,65,45,92,42,91,5,19,
443
+ Spiritomb,442,4,50,92,108,92,108,35,10,1080,
444
+ Gible,443,4,58,70,45,40,45,42,7,205,
445
+ Gabite,444,4,68,90,65,50,55,82,14,560,Gible
446
+ Garchomp,445,4,108,130,95,80,85,102,19,950,Gabite
447
+ Munchlax,446,4,135,85,40,40,85,5,6,1050,
448
+ Riolu,447,4,40,70,40,35,40,60,7,202,
449
+ Lucario,448,4,70,110,70,115,70,90,12,540,Riolu
450
+ Hippopotas,449,4,68,72,78,38,42,32,8,495,
451
+ Hippowdon,450,4,108,112,118,68,72,47,20,3000,Hippopotas
452
+ Skorupi,451,4,40,50,90,30,55,65,8,120,
453
+ Drapion,452,4,70,90,110,60,75,95,13,615,Skorupi
454
+ Croagunk,453,4,48,61,40,61,40,50,7,230,
455
+ Toxicroak,454,4,83,106,65,86,65,85,13,444,Croagunk
456
+ Carnivine,455,4,74,100,72,90,72,46,14,270,
457
+ Finneon,456,4,49,49,56,49,61,66,4,70,
458
+ Lumineon,457,4,69,69,76,69,86,91,12,240,Finneon
459
+ Mantyke,458,4,45,20,50,60,120,50,10,650,
460
+ Snover,459,4,60,62,50,62,60,40,10,505,
461
+ Abomasnow,460,4,90,92,75,92,85,60,22,1355,Snover
462
+ Weavile,461,4,70,120,65,45,85,125,11,340,Sneasel
463
+ Magnezone,462,4,70,70,115,130,90,60,12,1800,Magneton
464
+ Lickilicky,463,4,110,85,95,80,95,50,17,1400,Lickitung
465
+ Rhyperior,464,4,115,140,130,55,55,40,24,2828,Rhydon
466
+ Tangrowth,465,4,100,100,125,110,50,50,20,1286,Tangela
467
+ Electivire,466,4,75,123,67,95,85,95,18,1386,Electabuzz
468
+ Magmortar,467,4,75,95,67,125,95,83,16,680,Magmar
469
+ Togekiss,468,4,85,50,95,120,115,80,15,380,Togetic
470
+ Yanmega,469,4,86,76,86,116,56,95,19,515,Yanma
471
+ Leafeon,470,4,65,110,130,60,65,95,10,255,Eevee
472
+ Glaceon,471,4,65,60,110,130,95,65,8,259,Eevee
473
+ Gliscor,472,4,75,95,125,45,75,95,20,425,Gligar
474
+ Mamoswine,473,4,110,130,80,70,60,80,25,2910,Piloswine
475
+ Porygon Z,474,4,85,80,70,135,75,90,9,340,Porygon2
476
+ Gallade,475,4,68,125,65,65,115,80,16,520,Kirlia
477
+ Probopass,476,4,60,55,145,75,150,40,14,3400,Nosepass
478
+ Dusknoir,477,4,45,100,135,65,135,45,22,1066,Dusclops
479
+ Froslass,478,4,70,80,70,80,70,110,13,266,Snorunt
480
+ Rotom,479,4,50,50,77,95,77,91,3,3,
481
+ Uxie,480,4,75,75,130,75,130,95,3,3,
482
+ Mesprit,481,4,80,105,105,105,105,80,3,3,
483
+ Azelf,482,4,75,125,70,125,70,115,3,3,
484
+ Dialga,483,4,100,120,120,150,100,90,54,6830,
485
+ Palkia,484,4,90,120,100,150,120,100,42,3360,
486
+ Heatran,485,4,91,90,106,130,106,77,17,4300,
487
+ Regigigas,486,4,110,160,110,80,110,100,37,4200,
488
+ Giratina,487,4,150,100,120,100,120,90,45,7500,
489
+ Cresselia,488,4,120,70,120,75,130,85,15,856,
490
+ Phione,489,4,80,80,80,80,80,80,4,31,
491
+ Manaphy,490,4,100,100,100,100,100,100,3,14,
492
+ Darkrai,491,4,70,90,90,135,90,125,15,505,
493
+ Shaymin,492,4,100,100,100,100,100,100,2,21,
494
+ Arceus,493,4,120,120,120,120,120,120,32,3200,
495
+ Victini,494,5,100,100,100,100,100,100,4,40,
496
+ Snivy,495,5,45,45,55,45,55,63,6,81,
497
+ Servine,496,5,60,60,75,60,75,83,8,160,Snivy
498
+ Serperior,497,5,75,75,95,75,95,113,33,630,Servine
499
+ Tepig,498,5,65,63,45,45,45,45,5,99,
500
+ Pignite,499,5,90,93,55,70,55,55,10,555,Tepig
501
+ Emboar,500,5,110,123,65,100,65,65,16,1500,Pignite
502
+ Oshawott,501,5,55,55,45,63,45,45,5,59,
503
+ Dewott,502,5,75,75,60,83,60,60,8,245,Oshawott
504
+ Samurott,503,5,95,100,85,108,70,70,15,946,Dewott
505
+ Patrat,504,5,45,55,39,35,39,42,5,116,
506
+ Watchog,505,5,60,85,69,60,69,77,11,270,Patrat
507
+ Lillipup,506,5,45,60,45,25,45,55,4,41,
508
+ Herdier,507,5,65,80,65,35,65,60,9,147,Lillipup
509
+ Stoutland,508,5,85,110,90,45,90,80,12,610,Herdier
510
+ Purrloin,509,5,41,50,37,50,37,66,4,101,
511
+ Liepard,510,5,64,88,50,88,50,106,11,375,Purrloin
512
+ Pansage,511,5,50,53,48,53,48,64,6,105,
513
+ Simisage,512,5,75,98,63,98,63,101,11,305,Pansage
514
+ Pansear,513,5,50,53,48,53,48,64,6,110,
515
+ Simisear,514,5,75,98,63,98,63,101,10,280,Pansear
516
+ Panpour,515,5,50,53,48,53,48,64,6,135,
517
+ Simipour,516,5,75,98,63,98,63,101,10,290,Panpour
518
+ Munna,517,5,76,25,45,67,55,24,6,233,
519
+ Musharna,518,5,116,55,85,107,95,29,11,605,Munna
520
+ Pidove,519,5,50,55,50,36,30,43,3,21,
521
+ Tranquill,520,5,62,77,62,50,42,65,6,150,Pidove
522
+ Unfezant,521,5,80,115,80,65,55,93,12,290,Tranquill
523
+ Blitzle,522,5,45,60,32,50,32,76,8,298,
524
+ Zebstrika,523,5,75,100,63,80,63,116,16,795,Blitzle
525
+ Roggenrola,524,5,55,75,85,25,25,15,4,180,
526
+ Boldore,525,5,70,105,105,50,40,20,9,1020,Roggenrola
527
+ Gigalith,526,5,85,135,130,60,80,25,17,2600,Boldore
528
+ Woobat,527,5,65,45,43,55,43,72,4,21,
529
+ Swoobat,528,5,67,57,55,77,55,114,9,105,Woobat
530
+ Drilbur,529,5,60,85,40,30,45,68,3,85,
531
+ Excadrill,530,5,110,135,60,50,65,88,7,404,Drilbur
532
+ Audino,531,5,103,60,86,60,86,50,11,310,
533
+ Timburr,532,5,75,80,55,25,35,35,6,125,
534
+ Gurdurr,533,5,85,105,85,40,50,40,12,400,Timburr
535
+ Conkeldurr,534,5,105,140,95,55,65,45,14,870,Gurdurr
536
+ Tympole,535,5,50,50,40,50,40,64,5,45,
537
+ Palpitoad,536,5,75,65,55,65,55,69,8,170,Tympole
538
+ Seismitoad,537,5,105,95,75,85,75,74,15,620,Palpitoad
539
+ Throh,538,5,120,100,85,30,85,45,13,555,
540
+ Sawk,539,5,75,125,75,30,75,85,14,510,
541
+ Sewaddle,540,5,45,53,70,40,60,42,3,25,
542
+ Swadloon,541,5,55,63,90,50,80,42,5,73,Sewaddle
543
+ Leavanny,542,5,75,103,80,70,80,92,12,205,Swadloon
544
+ Venipede,543,5,30,45,59,30,39,57,4,53,
545
+ Whirlipede,544,5,40,55,99,40,79,47,12,585,Venipede
546
+ Scolipede,545,5,60,100,89,55,69,112,25,2005,Whirlipede
547
+ Cottonee,546,5,40,27,60,37,50,66,3,6,
548
+ Whimsicott,547,5,60,67,85,77,75,116,7,66,Cottonee
549
+ Petilil,548,5,45,35,50,70,50,30,5,66,
550
+ Lilligant,549,5,70,60,75,110,75,90,11,163,Petilil
551
+ Basculin,550,5,70,92,65,80,55,98,10,180,
552
+ Sandile,551,5,50,72,35,35,35,65,7,152,
553
+ Krokorok,552,5,60,82,45,45,45,74,10,334,Sandile
554
+ Krookodile,553,5,95,117,80,65,70,92,15,963,Krokorok
555
+ Darumaka,554,5,70,90,45,15,45,50,6,375,
556
+ Darmanitan,555,5,105,140,55,30,55,95,13,929,Darumaka
557
+ Maractus,556,5,75,86,67,106,67,60,10,280,
558
+ Dwebble,557,5,50,65,85,35,35,55,3,145,
559
+ Crustle,558,5,70,105,125,65,75,45,14,2000,Dwebble
560
+ Scraggy,559,5,50,75,70,35,70,48,6,118,
561
+ Scrafty,560,5,65,90,115,45,115,58,11,300,Scraggy
562
+ Sigilyph,561,5,72,58,80,103,80,97,14,140,
563
+ Yamask,562,5,38,30,85,55,65,30,5,15,
564
+ Cofagrigus,563,5,58,50,145,95,105,30,17,765,Yamask
565
+ Tirtouga,564,5,54,78,103,53,45,22,7,165,
566
+ Carracosta,565,5,74,108,133,83,65,32,12,810,Tirtouga
567
+ Archen,566,5,55,112,45,74,45,70,5,95,
568
+ Archeops,567,5,75,140,65,112,65,110,14,320,Archen
569
+ Trubbish,568,5,50,50,62,40,62,65,6,310,
570
+ Garbodor,569,5,80,95,82,60,82,75,19,1073,Trubbish
571
+ Zorua,570,5,40,65,40,80,40,65,7,125,
572
+ Zoroark,571,5,60,105,60,120,60,105,16,811,Zorua
573
+ Minccino,572,5,55,50,40,40,40,75,4,58,
574
+ Cinccino,573,5,75,95,60,65,60,115,5,75,Minccino
575
+ Gothita,574,5,45,30,50,55,65,45,4,58,
576
+ Gothorita,575,5,60,45,70,75,85,55,7,180,Gothita
577
+ Gothitelle,576,5,70,55,95,95,110,65,15,440,Gothorita
578
+ Solosis,577,5,45,30,40,105,50,20,3,10,
579
+ Duosion,578,5,65,40,50,125,60,30,6,80,Solosis
580
+ Reuniclus,579,5,110,65,75,125,85,30,10,201,Duosion
581
+ Ducklett,580,5,62,44,50,44,50,55,5,55,
582
+ Swanna,581,5,75,87,63,87,63,98,13,242,Ducklett
583
+ Vanillite,582,5,36,50,50,65,60,44,4,57,
584
+ Vanillish,583,5,51,65,65,80,75,59,11,410,Vanillite
585
+ Vanilluxe,584,5,71,95,85,110,95,79,13,575,Vanillish
586
+ Deerling,585,5,60,60,50,40,50,75,6,195,
587
+ Sawsbuck,586,5,80,100,70,60,70,95,19,925,Deerling
588
+ Emolga,587,5,55,75,60,75,60,103,4,50,
589
+ Karrablast,588,5,50,75,45,40,45,60,5,59,
590
+ Escavalier,589,5,70,135,105,60,105,20,10,330,Karrablast
591
+ Foongus,590,5,69,55,45,55,55,15,2,10,
592
+ Amoonguss,591,5,114,85,70,85,80,30,6,105,Foongus
593
+ Frillish,592,5,55,40,50,65,85,40,12,330,
594
+ Jellicent,593,5,100,60,70,85,105,60,22,1350,Frillish
595
+ Alomomola,594,5,165,75,80,40,45,65,12,316,
596
+ Joltik,595,5,50,47,50,57,50,65,1,6,
597
+ Galvantula,596,5,70,77,60,97,60,108,8,143,Joltik
598
+ Ferroseed,597,5,44,50,91,24,86,10,6,188,
599
+ Ferrothorn,598,5,74,94,131,54,116,20,10,1100,Ferroseed
600
+ Klink,599,5,40,55,70,45,60,30,3,210,
601
+ Klang,600,5,60,80,95,70,85,50,6,510,Klink
602
+ Klinklang,601,5,60,100,115,70,85,90,6,810,Klang
603
+ Tynamo,602,5,35,55,40,45,40,60,2,3,
604
+ Eelektrik,603,5,65,85,70,75,70,40,12,220,Tynamo
605
+ Eelektross,604,5,85,115,80,105,80,50,21,805,Eelektrik
606
+ Elgyem,605,5,55,55,55,85,55,30,5,90,
607
+ Beheeyem,606,5,75,75,75,125,95,40,10,345,Elgyem
608
+ Litwick,607,5,50,30,55,65,55,20,3,31,
609
+ Lampent,608,5,60,40,60,95,60,55,6,130,Litwick
610
+ Chandelure,609,5,60,55,90,145,90,80,10,343,Lampent
611
+ Axew,610,5,46,87,60,30,40,57,6,180,
612
+ Fraxure,611,5,66,117,70,40,50,67,10,360,Axew
613
+ Haxorus,612,5,76,147,90,60,70,97,18,1055,Fraxure
614
+ Cubchoo,613,5,55,70,40,60,40,40,5,85,
615
+ Beartic,614,5,95,130,80,70,80,50,26,2600,Cubchoo
616
+ Cryogonal,615,5,80,50,50,95,135,105,11,1480,
617
+ Shelmet,616,5,50,40,85,40,65,25,4,77,
618
+ Accelgor,617,5,80,70,40,100,60,145,8,253,Shelmet
619
+ Stunfisk,618,5,109,66,84,81,99,32,7,110,
620
+ Mienfoo,619,5,45,85,50,55,50,65,9,200,
621
+ Mienshao,620,5,65,125,60,95,60,105,14,355,Mienfoo
622
+ Druddigon,621,5,77,120,90,60,90,48,16,1390,
623
+ Golett,622,5,59,74,50,35,50,35,10,920,
624
+ Golurk,623,5,89,124,80,55,80,55,28,3300,Golett
625
+ Pawniard,624,5,45,85,70,40,40,60,5,102,
626
+ Bisharp,625,5,65,125,100,60,70,70,16,700,Pawniard
627
+ Bouffalant,626,5,95,110,95,40,95,55,16,946,
628
+ Rufflet,627,5,70,83,50,37,50,60,5,105,
629
+ Braviary,628,5,100,123,75,57,75,80,15,410,Rufflet
630
+ Vullaby,629,5,70,55,75,45,65,60,5,90,
631
+ Mandibuzz,630,5,110,65,105,55,95,80,12,395,Vullaby
632
+ Heatmor,631,5,85,97,66,105,66,65,14,580,
633
+ Durant,632,5,58,109,112,48,48,109,3,330,
634
+ Deino,633,5,52,65,50,45,50,38,8,173,
635
+ Zweilous,634,5,72,85,70,65,70,58,14,500,Deino
636
+ Hydreigon,635,5,92,105,90,125,90,98,18,1600,Zweilous
637
+ Larvesta,636,5,55,85,55,50,55,60,11,288,
638
+ Volcarona,637,5,85,60,65,135,105,100,16,460,Larvesta
639
+ Cobalion,638,5,91,90,129,90,72,108,21,2500,
640
+ Terrakion,639,5,91,129,90,72,90,108,19,2600,
641
+ Virizion,640,5,91,90,72,90,129,108,20,2000,
642
+ Tornadus,641,5,79,115,70,125,80,111,15,630,
643
+ Thundurus,642,5,79,115,70,125,80,111,15,610,
644
+ Reshiram,643,5,100,120,100,150,120,90,32,3300,
645
+ Zekrom,644,5,100,150,120,120,100,90,29,3450,
646
+ Landorus,645,5,89,125,90,115,80,101,15,680,
647
+ Kyurem,646,5,125,130,90,130,90,95,30,3250,
648
+ Keldeo,647,5,91,72,90,129,90,108,14,485,
649
+ Meloetta,648,5,100,77,77,128,128,90,6,65,
650
+ Genesect,649,5,71,120,95,120,95,99,15,825,
651
+ Chespin,650,6,56,61,65,48,45,38,4,90,
652
+ Quilladin,651,6,61,78,95,56,58,57,7,290,Chespin
653
+ Chesnaught,652,6,88,107,122,74,75,64,16,900,Quilladin
654
+ Fennekin,653,6,40,45,40,62,60,60,4,94,
655
+ Braixen,654,6,59,59,58,90,70,73,10,145,Fennekin
656
+ Delphox,655,6,75,69,72,114,100,104,15,390,Braixen
657
+ Froakie,656,6,41,56,40,62,44,71,3,70,
658
+ Frogadier,657,6,54,63,52,83,56,97,6,109,Froakie
659
+ Greninja,658,6,72,95,67,103,71,122,15,400,Frogadier
660
+ Bunnelby,659,6,38,36,38,32,36,57,4,50,
661
+ Diggersby,660,6,85,56,77,50,77,78,10,424,Bunnelby
662
+ Fletchling,661,6,45,50,43,40,38,62,3,17,
663
+ Fletchinder,662,6,62,73,55,56,52,84,7,160,Fletchling
664
+ Talonflame,663,6,78,81,71,74,69,126,12,245,Fletchinder
665
+ Scatterbug,664,6,38,35,40,27,25,35,3,25,
666
+ Spewpa,665,6,45,22,60,27,30,29,3,84,Scatterbug
667
+ Vivillon,666,6,80,52,50,90,50,89,12,170,Spewpa
668
+ Litleo,667,6,62,50,58,73,54,72,6,135,
669
+ Pyroar,668,6,86,68,72,109,66,106,15,815,Litleo
670
+ Flabébé,669,6,44,38,39,61,79,42,1,1,
671
+ Floette,670,6,54,45,47,75,98,52,2,9,Flabébé
672
+ Florges,671,6,78,65,68,112,154,75,11,100,Floette
673
+ Skiddo,672,6,66,65,48,62,57,52,9,310,
674
+ Gogoat,673,6,123,100,62,97,81,68,17,910,Skiddo
675
+ Pancham,674,6,67,82,62,46,48,43,6,80,
676
+ Pangoro,675,6,95,124,78,69,71,58,21,1360,Pancham
677
+ Furfrou,676,6,75,80,60,65,90,102,12,280,
678
+ Espurr,677,6,62,48,54,63,60,68,3,35,
679
+ Meowstic,678,6,74,48,76,83,81,104,6,85,Espurr
680
+ Honedge,679,6,45,80,100,35,37,28,8,20,
681
+ Doublade,680,6,59,110,150,45,49,35,8,45,Honedge
682
+ Aegislash Shield,681,6,60,50,140,50,140,60,17,530,Doublade
683
+ Spritzee,682,6,78,52,60,63,65,23,2,5,
684
+ Aromatisse,683,6,101,72,72,99,89,29,8,155,Spritzee
685
+ Swirlix,684,6,62,48,66,59,57,49,4,35,
686
+ Slurpuff,685,6,82,80,86,85,75,72,8,50,Swirlix
687
+ Inkay,686,6,53,54,53,37,46,45,4,35,
688
+ Malamar,687,6,86,92,88,68,75,73,15,470,Inkay
689
+ Binacle,688,6,42,52,67,39,56,50,5,310,
690
+ Barbaracle,689,6,72,105,115,54,86,68,13,960,Binacle
691
+ Skrelp,690,6,50,60,60,60,60,30,5,73,
692
+ Dragalge,691,6,65,75,90,97,123,44,18,815,Skrelp
693
+ Clauncher,692,6,50,53,62,58,63,44,5,83,
694
+ Clawitzer,693,6,71,73,88,120,89,59,13,353,Clauncher
695
+ Helioptile,694,6,44,38,33,61,43,70,5,60,
696
+ Heliolisk,695,6,62,55,52,109,94,109,10,210,Helioptile
697
+ Tyrunt,696,6,58,89,77,45,45,48,8,260,
698
+ Tyrantrum,697,6,82,121,119,69,59,71,25,2700,Tyrunt
699
+ Amaura,698,6,77,59,50,67,63,46,13,252,
700
+ Aurorus,699,6,123,77,72,99,92,58,27,2250,Amaura
701
+ Sylveon,700,6,95,65,65,110,130,60,10,235,Eevee
702
+ Hawlucha,701,6,78,92,75,74,63,118,8,215,
703
+ Dedenne,702,6,67,58,57,81,67,101,2,22,
704
+ Carbink,703,6,50,50,150,50,150,50,3,57,
705
+ Goomy,704,6,45,50,35,55,75,40,3,28,
706
+ Sliggoo,705,6,68,75,53,83,113,60,8,175,Goomy
707
+ Goodra,706,6,90,100,70,110,150,80,20,1505,Sliggoo
708
+ Klefki,707,6,57,80,91,80,87,75,2,30,
709
+ Phantump,708,6,43,70,48,50,60,38,4,70,
710
+ Trevenant,709,6,85,110,76,65,82,56,15,710,Phantump
711
+ Pumpkaboo,710,6,49,66,70,44,55,51,4,50,
712
+ Gourgeist,711,6,65,90,122,58,75,84,9,125,Pumpkaboo
713
+ Bergmite,712,6,55,69,85,32,35,28,10,995,
714
+ Avalugg,713,6,95,117,184,44,46,28,20,5050,Bergmite
715
+ Noibat,714,6,40,30,35,45,40,55,5,80,
716
+ Noivern,715,6,85,70,80,97,80,123,15,850,Noibat
717
+ Xerneas,716,6,126,131,95,131,98,99,30,2150,
718
+ Yveltal,717,6,126,131,95,131,98,99,58,2030,
719
+ Zygarde,718,6,108,100,121,81,95,95,50,3050,
720
+ Diancie,719,6,50,100,150,100,150,50,7,88,
721
+ Hoopa,720,6,80,110,60,150,130,70,5,90,
722
+ Volcanion,721,6,80,110,120,130,90,70,17,1950,
723
+ Rowlet,722,7,68,55,55,50,50,42,3,15,
724
+ Dartrix,723,7,78,75,75,70,70,52,7,160,Rowlet
725
+ Decidueye,724,7,78,107,75,100,100,70,16,366,Dartrix
726
+ Litten,725,7,45,65,40,60,40,70,4,43,
727
+ Torracat,726,7,65,85,50,80,50,90,7,250,Litten
728
+ Incineroar,727,7,95,115,90,80,90,60,18,830,Torracat
729
+ Popplio,728,7,50,54,54,66,56,40,4,75,
730
+ Brionne,729,7,60,69,69,91,81,50,6,175,Popplio
731
+ Primarina,730,7,80,74,74,126,116,60,18,440,Brionne
732
+ Pikipek,731,7,35,75,30,30,30,65,3,12,
733
+ Trumbeak,732,7,55,85,50,40,50,75,6,148,Pikipek
734
+ Toucannon,733,7,80,120,75,75,75,60,11,260,Trumbeak
735
+ Yungoos,734,7,48,70,30,30,30,45,4,60,
736
+ Gumshoos,735,7,88,110,60,55,60,45,7,142,Yungoos
737
+ Grubbin,736,7,47,62,45,55,45,46,4,44,
738
+ Charjabug,737,7,57,82,95,55,75,36,5,105,Grubbin
739
+ Vikavolt,738,7,77,70,90,145,75,43,15,450,Charjabug
740
+ Crabrawler,739,7,47,82,57,42,47,63,6,70,
741
+ Crabominable,740,7,97,132,77,62,67,43,17,1800,Crabrawler
742
+ Oricorio,741,7,75,70,70,98,70,93,6,34,
743
+ Cutiefly,742,7,40,45,40,55,40,84,1,2,
744
+ Ribombee,743,7,60,55,60,95,70,124,2,5,Cutiefly
745
+ Rockruff,744,7,45,65,40,30,40,60,5,92,
746
+ Lycanroc,745,7,75,115,65,55,65,112,8,250,Rockruff
747
+ Wishiwashi,746,7,45,20,20,25,25,40,2,3,
748
+ Mareanie,747,7,50,53,62,43,52,45,4,80,
749
+ Toxapex,748,7,50,63,152,53,142,35,7,145,Mareanie
750
+ Mudbray,749,7,70,100,70,45,55,45,10,1100,
751
+ Mudsdale,750,7,100,125,100,55,85,35,25,9200,Mudbray
752
+ Dewpider,751,7,38,40,52,40,72,27,3,40,
753
+ Araquanid,752,7,68,70,92,50,132,42,18,820,Dewpider
754
+ Fomantis,753,7,40,55,35,50,35,35,3,15,
755
+ Lurantis,754,7,70,105,90,80,90,45,9,185,Fomantis
756
+ Morelull,755,7,40,35,55,65,75,15,2,15,
757
+ Shiinotic,756,7,60,45,80,90,100,30,10,115,Morelull
758
+ Salandit,757,7,48,44,40,71,40,77,6,48,
759
+ Salazzle,758,7,68,64,60,111,60,117,12,222,Salandit
760
+ Stufful,759,7,70,75,50,45,50,50,5,68,
761
+ Bewear,760,7,120,125,80,55,60,60,21,1350,Stufful
762
+ Bounsweet,761,7,42,30,38,30,38,32,3,32,
763
+ Steenee,762,7,52,40,48,40,48,62,7,82,Bounsweet
764
+ Tsareena,763,7,72,120,98,50,98,72,12,214,Steenee
765
+ Comfey,764,7,51,52,90,82,110,100,1,3,
766
+ Oranguru,765,7,90,60,80,90,110,60,15,760,
767
+ Passimian,766,7,100,120,90,40,60,80,20,828,
768
+ Wimpod,767,7,25,35,40,20,30,80,5,120,
769
+ Golisopod,768,7,75,125,140,60,90,40,20,1080,Wimpod
770
+ Sandygast,769,7,55,55,80,70,45,15,5,700,
771
+ Palossand,770,7,85,75,110,100,75,35,13,2500,Sandygast
772
+ Pyukumuku,771,7,55,60,130,30,130,5,3,12,
773
+ Type: Null,772,7,95,95,95,95,95,59,19,1205,
774
+ Silvally,773,7,95,95,95,95,95,95,23,1005,Type: Null
775
+ Minior,774,7,60,60,100,60,100,60,3,400,
776
+ Komala,775,7,65,115,65,75,95,65,4,199,
777
+ Turtonator,776,7,60,78,135,91,85,36,20,2120,
778
+ Togedemaru,777,7,65,98,63,40,73,96,3,33,
779
+ Mimikyu,778,7,55,90,80,50,105,96,2,7,
780
+ Bruxish,779,7,68,105,70,70,70,92,9,190,
781
+ Drampa,780,7,78,60,85,135,91,36,30,1850,
782
+ Dhelmise,781,7,70,131,100,86,90,40,39,2100,
783
+ Jangmo-o,782,7,45,55,65,45,45,45,6,297,
784
+ Hakamo-o,783,7,55,75,90,65,70,65,12,470,Jangmo-o
785
+ Kommo-o,784,7,75,110,125,100,105,85,16,782,Hakamo-o
786
+ Tapu Koko,785,7,70,115,85,95,75,130,18,205,
787
+ Tapu Lele,786,7,70,85,75,130,115,95,12,186,
788
+ Tapu Bulu,787,7,70,130,115,85,95,75,19,455,
789
+ Tapu Fini,788,7,70,75,115,95,130,85,13,212,
790
+ Cosmog,789,7,43,29,31,29,31,37,2,1,
791
+ Cosmoem,790,7,43,29,131,29,131,37,1,9999,Cosmog
792
+ Solgaleo,791,7,137,137,107,113,89,97,34,2300,Cosmoem
793
+ Lunala,792,7,137,113,89,137,107,97,40,1200,Cosmoem
794
+ Nihilego,793,7,109,53,47,127,131,103,12,555,
795
+ Buzzwole,794,7,107,139,139,53,53,79,24,3336,
796
+ Pheromosa,795,7,71,137,37,137,37,151,18,250,
797
+ Xurkitree,796,7,83,89,71,173,71,83,38,1000,
798
+ Celesteela,797,7,97,101,103,107,101,61,92,9999,
799
+ Kartana,798,7,59,181,131,59,31,109,3,1,
800
+ Guzzlord,799,7,223,101,53,97,53,43,55,8880,
801
+ Necrozma,800,7,97,107,101,127,89,79,24,2300,
802
+ Magearna,801,7,80,95,115,130,115,65,10,805,
803
+ Marshadow,802,7,90,125,80,90,90,125,7,222,
804
+ Poipole,803,7,67,73,67,73,67,73,6,18,
805
+ Naganadel,804,7,73,73,73,127,73,121,36,1500,Poipole
806
+ Stakataka,805,7,61,131,211,53,101,13,55,8200,
807
+ Blacephalon,806,7,53,127,53,151,79,107,18,130,
808
+ Zeraora,807,7,88,112,75,102,80,143,15,445,
809
+ Meltan,808,7,46,65,65,55,35,34,2,80,
810
+ Melmetal,809,7,135,143,143,80,65,34,25,8000,Meltan
811
+ Grookey,810,8,50,65,50,40,40,65,3,50,
812
+ Thwackey,811,8,70,85,70,55,60,80,7,140,Grookey
813
+ Rillaboom,812,8,100,125,90,60,70,85,21,900,Thwackey
814
+ Scorbunny,813,8,50,71,40,40,40,69,3,45,
815
+ Raboot,814,8,65,86,60,55,60,94,6,90,Scorbunny
816
+ Cinderace,815,8,80,116,75,65,75,119,14,330,Raboot
817
+ Sobble,816,8,50,40,40,70,40,70,3,40,
818
+ Drizzile,817,8,65,60,55,95,55,90,7,115,Sobble
819
+ Inteleon,818,8,70,85,65,125,65,120,19,452,Drizzile
820
+ Skwovet,819,8,70,55,55,35,35,25,3,25,
821
+ Greedent,820,8,120,95,95,55,75,20,6,60,Skwovet
822
+ Rookidee,821,8,38,47,35,33,35,57,2,18,
823
+ Corvisquire,822,8,68,67,55,43,55,77,8,160,Rookidee
824
+ Corviknight,823,8,98,87,105,53,85,67,22,750,Corvisquire
825
+ Blipbug,824,8,25,20,20,25,45,45,4,80,
826
+ Dottler,825,8,50,35,80,50,90,30,4,195,Blipbug
827
+ Orbeetle,826,8,60,45,110,80,120,90,4,408,Dottler
828
+ Nickit,827,8,40,28,28,47,52,50,6,89,
829
+ Thievul,828,8,70,58,58,87,92,90,12,199,Nickit
830
+ Gossifleur,829,8,40,40,60,40,60,10,4,22,
831
+ Eldegoss,830,8,60,50,90,80,120,60,5,25,Gossifleur
832
+ Wooloo,831,8,42,40,55,40,45,48,6,60,
833
+ Dubwool,832,8,72,80,100,60,90,88,13,430,Wooloo
834
+ Chewtle,833,8,50,64,50,38,38,44,3,85,
835
+ Drednaw,834,8,90,115,90,48,68,74,10,1155,Chewtle
836
+ Yamper,835,8,59,45,50,40,50,26,3,135,
837
+ Boltund,836,8,69,90,60,90,60,121,10,340,Yamper
838
+ Rolycoly,837,8,30,40,50,40,50,30,3,120,
839
+ Carkol,838,8,80,60,90,60,70,50,11,780,Rolycoly
840
+ Coalossal,839,8,110,80,120,80,90,30,28,3105,Carkol
841
+ Applin,840,8,40,40,80,40,40,20,2,5,
842
+ Flapple,841,8,70,110,80,95,60,70,3,10,Applin
843
+ Appletun,842,8,110,85,80,100,80,30,4,130,Applin
844
+ Silicobra,843,8,52,57,75,35,50,46,22,76,
845
+ Sandaconda,844,8,72,107,125,65,70,71,38,655,Silicobra
846
+ Cramorant,845,8,70,85,55,85,95,85,8,180,
847
+ Arrokuda,846,8,41,63,40,40,30,66,5,10,
848
+ Barraskewda,847,8,61,123,60,60,50,136,13,300,Arrokuda
849
+ Toxel,848,8,40,38,35,54,35,40,4,110,
850
+ Toxtricity,849,8,75,98,70,114,70,75,16,400,Toxel
851
+ Sizzlipede,850,8,50,65,45,50,50,45,7,10,
852
+ Centiskorch,851,8,100,115,65,90,90,65,30,1200,Sizzlipede
853
+ Clobbopus,852,8,50,68,60,50,50,32,6,40,
854
+ Grapploct,853,8,80,118,90,70,80,42,16,390,Clobbopus
855
+ Sinistea,854,8,40,45,45,74,54,50,1,2,
856
+ Polteageist,855,8,60,65,65,134,114,70,2,4,Sinistea
857
+ Hatenna,856,8,42,30,45,56,53,39,4,34,
858
+ Hattrem,857,8,57,40,65,86,73,49,6,48,Hatenna
859
+ Hatterene,858,8,57,90,95,136,103,29,21,51,Hattrem
860
+ Impidimp,859,8,45,45,30,55,40,50,4,55,
861
+ Morgrem,860,8,65,60,45,75,55,70,8,125,Impidimp
862
+ Grimmsnarl,861,8,95,120,65,95,75,60,15,610,Morgrem
863
+ Obstagoon,862,8,93,90,101,60,81,95,16,460,Linoone
864
+ Perrserker,863,8,70,110,100,50,60,50,8,280,Meowth
865
+ Cursola,864,8,60,95,50,145,130,30,10,4,Corsola
866
+ Sirfetch'd,865,8,62,135,95,68,82,65,8,1170,Farfetch'd
867
+ Mr. Rime,866,8,80,85,75,110,100,70,15,582,Mr. Mime
868
+ Runerigus,867,8,58,95,145,50,105,30,16,666,Yamask
869
+ Milcery,868,8,45,40,40,50,61,34,2,3,
870
+ Alcremie,869,8,65,60,75,110,121,64,3,5,Milcery
871
+ Falinks,870,8,65,100,100,70,60,75,30,620,
872
+ Pincurchin,871,8,48,101,95,91,85,15,3,10,
873
+ Snom,872,8,30,25,35,45,30,20,3,38,
874
+ Frosmoth,873,8,70,65,60,125,90,65,13,420,Snom
875
+ Stonjourner,874,8,100,125,135,20,20,70,25,5200,
876
+ Eiscue,875,8,75,80,110,65,90,50,14,890,
877
+ Indeedee,876,8,60,65,55,105,95,95,9,280,
878
+ Morpeko,877,8,58,95,58,70,58,97,3,30,
879
+ Cufant,878,8,72,80,49,40,49,40,12,1000,
880
+ Copperajah,879,8,122,130,69,80,69,30,30,6500,Cufant
881
+ Dracozolt,880,8,90,100,90,80,70,75,18,1900,
882
+ Arctozolt,881,8,90,100,90,90,80,55,23,1500,
883
+ Dracovish,882,8,90,90,100,70,80,75,23,2150,
884
+ Arctovish,883,8,90,90,100,80,90,55,20,1750,
885
+ Duraludon,884,8,70,95,115,120,50,85,18,400,
886
+ Dreepy,885,8,28,60,30,40,30,82,5,20,
887
+ Drakloak,886,8,68,80,50,60,50,102,14,110,Dreepy
888
+ Dragapult,887,8,88,120,75,100,75,142,30,500,Drakloak
889
+ Zacian,888,8,92,130,115,80,115,138,28,1100,
890
+ Zamazenta,889,8,92,130,115,80,115,138,29,2100,
891
+ Eternatus,890,8,140,85,95,145,95,130,200,9500,
892
+ Kubfu,891,8,60,90,60,53,50,72,6,120,
893
+ Urshifu,892,8,100,130,100,63,60,97,19,1050,Kubfu
894
+ Zarude,893,8,105,120,105,70,95,105,18,700,
895
+ Regieleki,894,8,80,100,50,100,50,200,12,1450,
896
+ Regidrago,895,8,200,100,50,100,50,80,21,2000,
897
+ Glastrier,896,8,100,145,130,65,110,30,22,8000,
898
+ Spectrier,897,8,100,65,60,145,80,130,20,445,
899
+ Calyrex,898,8,100,80,80,80,80,80,11,77,
900
+ Wyrdeer,899,8,103,105,72,105,75,65,18,951,Stantler
901
+ Kleavor,900,8,70,135,95,45,70,85,18,890,Scyther
902
+ Ursaluna,901,8,130,140,105,45,80,50,24,2900,Ursaring
903
+ Basculegion,902,8,120,112,65,80,75,78,30,1110,Basculin
904
+ Sneasler,903,8,80,130,60,40,80,120,13,430,Sneasel
905
+ Overqwil,904,8,85,115,95,65,65,85,25,605,Qwilfish
906
+ Enamorus,905,8,74,115,70,135,80,106,16,480,
whatever stuff is neede/input_pkmn_stats_and_evolutions.xlsx - pkmn_stats.csv ADDED
@@ -0,0 +1,906 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name,pokedex_number,gen_introduced,hp,attack,defense,special_attack,special_defense,speed,height,weight,evolves_from
2
+ Bulbasaur,1,1,45,49,49,65,65,45,7,69,
3
+ Ivysaur,2,1,60,62,63,80,80,60,10,130,Bulbasaur
4
+ Venusaur,3,1,80,82,83,100,100,80,20,1000,Ivysaur
5
+ Charmander,4,1,39,52,43,60,50,65,6,85,
6
+ Charmeleon,5,1,58,64,58,80,65,80,11,190,Charmander
7
+ Charizard,6,1,78,84,78,109,85,100,17,905,Charmeleon
8
+ Squirtle,7,1,44,48,65,50,64,43,5,90,
9
+ Wartortle,8,1,59,63,80,65,80,58,10,225,Squirtle
10
+ Blastoise,9,1,79,83,100,85,105,78,16,855,Wartortle
11
+ Caterpie,10,1,45,30,35,20,20,45,3,29,
12
+ Metapod,11,1,50,20,55,25,25,30,7,99,Caterpie
13
+ Butterfree,12,1,60,45,50,90,80,70,11,320,Metapod
14
+ Weedle,13,1,40,35,30,20,20,50,3,32,
15
+ Kakuna,14,1,45,25,50,25,25,35,6,100,Weedle
16
+ Beedrill,15,1,65,90,40,45,80,75,10,295,Kakuna
17
+ Pidgey,16,1,40,45,40,35,35,56,3,18,
18
+ Pidgeotto,17,1,63,60,55,50,50,71,11,300,Pidgey
19
+ Pidgeot,18,1,83,80,75,70,70,101,15,395,Pidgeotto
20
+ Rattata,19,1,30,56,35,25,35,72,3,35,
21
+ Raticate,20,1,55,81,60,50,70,97,7,185,Rattata
22
+ Spearow,21,1,40,60,30,31,31,70,3,20,
23
+ Fearow,22,1,65,90,65,61,61,100,12,380,Spearow
24
+ Ekans,23,1,35,60,44,40,54,55,20,69,
25
+ Arbok,24,1,60,95,69,65,79,80,35,650,Ekans
26
+ Pikachu,25,1,35,55,40,50,50,90,4,60,Pichu
27
+ Raichu,26,1,60,90,55,90,80,110,8,300,Pikachu
28
+ Sandshrew,27,1,50,75,85,20,30,40,6,120,
29
+ Sandslash,28,1,75,100,110,45,55,65,10,295,Sandshrew
30
+ Nidoran F,29,1,55,47,52,40,40,41,4,70,
31
+ Nidorina,30,1,70,62,67,55,55,56,8,200,Nidoran F
32
+ Nidoqueen,31,1,90,92,87,75,85,76,13,600,Nidorina
33
+ Nidoran M,32,1,46,57,40,40,40,50,5,90,
34
+ Nidorino,33,1,61,72,57,55,55,65,9,195,Nidoran M
35
+ Nidoking,34,1,81,102,77,85,75,85,14,620,Nidorino
36
+ Clefairy,35,1,70,45,48,60,65,35,6,75,Cleffa
37
+ Clefable,36,1,95,70,73,95,90,60,13,400,Clefairy
38
+ Vulpix,37,1,38,41,40,50,65,65,6,99,
39
+ Ninetales,38,1,73,76,75,81,100,100,11,199,Vulpix
40
+ Jigglypuff,39,1,115,45,20,45,25,20,5,55,Igglybuff
41
+ Wigglytuff,40,1,140,70,45,85,50,45,10,120,Jigglypuff
42
+ Zubat,41,1,40,45,35,30,40,55,8,75,
43
+ Golbat,42,1,75,80,70,65,75,90,16,550,Zubat
44
+ Oddish,43,1,45,50,55,75,65,30,5,54,
45
+ Gloom,44,1,60,65,70,85,75,40,8,86,Oddish
46
+ Vileplume,45,1,75,80,85,110,90,50,12,186,Gloom
47
+ Paras,46,1,35,70,55,45,55,25,3,54,
48
+ Parasect,47,1,60,95,80,60,80,30,10,295,Paras
49
+ Venonat,48,1,60,55,50,40,55,45,10,300,
50
+ Venomoth,49,1,70,65,60,90,75,90,15,125,Venonat
51
+ Diglett,50,1,10,55,25,35,45,95,2,8,
52
+ Dugtrio,51,1,35,100,50,50,70,120,7,333,Diglett
53
+ Meowth,52,1,40,45,35,40,40,90,4,42,
54
+ Persian,53,1,65,70,60,65,65,115,10,320,Meowth
55
+ Psyduck,54,1,50,52,48,65,50,55,8,196,
56
+ Golduck,55,1,80,82,78,95,80,85,17,766,Psyduck
57
+ Mankey,56,1,40,80,35,35,45,70,5,280,
58
+ Primeape,57,1,65,105,60,60,70,95,10,320,Mankey
59
+ Growlithe,58,1,55,70,45,70,50,60,7,190,
60
+ Arcanine,59,1,90,110,80,100,80,95,19,1550,Growlithe
61
+ Poliwag,60,1,40,50,40,40,40,90,6,124,
62
+ Poliwhirl,61,1,65,65,65,50,50,90,10,200,Poliwag
63
+ Poliwrath,62,1,90,95,95,70,90,70,13,540,Poliwhirl
64
+ Abra,63,1,25,20,15,105,55,90,9,195,
65
+ Kadabra,64,1,40,35,30,120,70,105,13,565,Abra
66
+ Alakazam,65,1,55,50,45,135,95,120,15,480,Kadabra
67
+ Machop,66,1,70,80,50,35,35,35,8,195,
68
+ Machoke,67,1,80,100,70,50,60,45,15,705,Machop
69
+ Machamp,68,1,90,130,80,65,85,55,16,1300,Machoke
70
+ Bellsprout,69,1,50,75,35,70,30,40,7,40,
71
+ Weepinbell,70,1,65,90,50,85,45,55,10,64,Bellsprout
72
+ Victreebel,71,1,80,105,65,100,70,70,17,155,Weepinbell
73
+ Tentacool,72,1,40,40,35,50,100,70,9,455,
74
+ Tentacruel,73,1,80,70,65,80,120,100,16,550,Tentacool
75
+ Geodude,74,1,40,80,100,30,30,20,4,200,
76
+ Graveler,75,1,55,95,115,45,45,35,10,1050,Geodude
77
+ Golem,76,1,80,120,130,55,65,45,14,3000,Graveler
78
+ Ponyta,77,1,50,85,55,65,65,90,10,300,
79
+ Rapidash,78,1,65,100,70,80,80,105,17,950,Ponyta
80
+ Slowpoke,79,1,90,65,65,40,40,15,12,360,
81
+ Slowbro,80,1,95,75,110,100,80,30,16,785,Slowpoke
82
+ Magnemite,81,1,25,35,70,95,55,45,3,60,
83
+ Magneton,82,1,50,60,95,120,70,70,10,600,Magnemite
84
+ Farfetch'd,83,1,52,90,55,58,62,60,8,150,
85
+ Doduo,84,1,35,85,45,35,35,75,14,392,
86
+ Dodrio,85,1,60,110,70,60,60,110,18,852,Doduo
87
+ Seel,86,1,65,45,55,45,70,45,11,900,
88
+ Dewgong,87,1,90,70,80,70,95,70,17,1200,Seel
89
+ Grimer,88,1,80,80,50,40,50,25,9,300,
90
+ Muk,89,1,105,105,75,65,100,50,12,300,Grimer
91
+ Shellder,90,1,30,65,100,45,25,40,3,40,
92
+ Cloyster,91,1,50,95,180,85,45,70,15,1325,Shellder
93
+ Gastly,92,1,30,35,30,100,35,80,13,1,
94
+ Haunter,93,1,45,50,45,115,55,95,16,1,Gastly
95
+ Gengar,94,1,60,65,60,130,75,110,15,405,Haunter
96
+ Onix,95,1,35,45,160,30,45,70,88,2100,
97
+ Drowzee,96,1,60,48,45,43,90,42,10,324,
98
+ Hypno,97,1,85,73,70,73,115,67,16,756,Drowzee
99
+ Krabby,98,1,30,105,90,25,25,50,4,65,
100
+ Kingler,99,1,55,130,115,50,50,75,13,600,Krabby
101
+ Voltorb,100,1,40,30,50,55,55,100,5,104,
102
+ Electrode,101,1,60,50,70,80,80,150,12,666,Voltorb
103
+ Exeggcute,102,1,60,40,80,60,45,40,4,25,
104
+ Exeggutor,103,1,95,95,85,125,75,55,20,1200,Exeggcute
105
+ Cubone,104,1,50,50,95,40,50,35,4,65,
106
+ Marowak,105,1,60,80,110,50,80,45,10,450,Cubone
107
+ Hitmonlee,106,1,50,120,53,35,110,87,15,498,Tyrogue
108
+ Hitmonchan,107,1,50,105,79,35,110,76,14,502,Tyrogue
109
+ Lickitung,108,1,90,55,75,60,75,30,12,655,
110
+ Koffing,109,1,40,65,95,60,45,35,6,10,
111
+ Weezing,110,1,65,90,120,85,70,60,12,95,Koffing
112
+ Rhyhorn,111,1,80,85,95,30,30,25,10,1150,
113
+ Rhydon,112,1,105,130,120,45,45,40,19,1200,Rhyhorn
114
+ Chansey,113,1,250,5,5,35,105,50,11,346,Happiny
115
+ Tangela,114,1,65,55,115,100,40,60,10,350,
116
+ Kangaskhan,115,1,105,95,80,40,80,90,22,800,
117
+ Horsea,116,1,30,40,70,70,25,60,4,80,
118
+ Seadra,117,1,55,65,95,95,45,85,12,250,Horsea
119
+ Goldeen,118,1,45,67,60,35,50,63,6,150,
120
+ Seaking,119,1,80,92,65,65,80,68,13,390,Goldeen
121
+ Staryu,120,1,30,45,55,70,55,85,8,345,
122
+ Starmie,121,1,60,75,85,100,85,115,11,800,Staryu
123
+ Mr. Mime,122,1,40,45,65,100,120,90,13,545,Mime Jr.
124
+ Scyther,123,1,70,110,80,55,80,105,15,560,
125
+ Jynx,124,1,65,50,35,115,95,95,14,406,Smoochum
126
+ Electabuzz,125,1,65,83,57,95,85,105,11,300,Elekid
127
+ Magmar,126,1,65,95,57,100,85,93,13,445,Magby
128
+ Pinsir,127,1,65,125,100,55,70,85,15,550,
129
+ Tauros,128,1,75,100,95,40,70,110,14,884,
130
+ Magikarp,129,1,20,10,55,15,20,80,9,100,
131
+ Gyarados,130,1,95,125,79,60,100,81,65,2350,Magikarp
132
+ Lapras,131,1,130,85,80,85,95,60,25,2200,
133
+ Ditto,132,1,48,48,48,48,48,48,3,40,
134
+ Eevee,133,1,55,55,50,45,65,55,3,65,
135
+ Vaporeon,134,1,130,65,60,110,95,65,10,290,Eevee
136
+ Jolteon,135,1,65,65,60,110,95,130,8,245,Eevee
137
+ Flareon,136,1,65,130,60,95,110,65,9,250,Eevee
138
+ Porygon,137,1,65,60,70,85,75,40,8,365,
139
+ Omanyte,138,1,35,40,100,90,55,35,4,75,
140
+ Omastar,139,1,70,60,125,115,70,55,10,350,Omanyte
141
+ Kabuto,140,1,30,80,90,55,45,55,5,115,
142
+ Kabutops,141,1,60,115,105,65,70,80,13,405,Kabuto
143
+ Aerodactyl,142,1,80,105,65,60,75,130,18,590,
144
+ Snorlax,143,1,160,110,65,65,110,30,21,4600,Munchlax
145
+ Articuno,144,1,90,85,100,95,125,85,17,554,
146
+ Zapdos,145,1,90,90,85,125,90,100,16,526,
147
+ Moltres,146,1,90,100,90,125,85,90,20,600,
148
+ Dratini,147,1,41,64,45,50,50,50,18,33,
149
+ Dragonair,148,1,61,84,65,70,70,70,40,165,Dratini
150
+ Dragonite,149,1,91,134,95,100,100,80,22,2100,Dragonair
151
+ Mewtwo,150,1,106,110,90,154,90,130,20,1220,
152
+ Mew,151,1,100,100,100,100,100,100,4,40,
153
+ Chikorita,152,2,45,49,65,49,65,45,9,64,
154
+ Bayleef,153,2,60,62,80,63,80,60,12,158,Chikorita
155
+ Meganium,154,2,80,82,100,83,100,80,18,1005,Bayleef
156
+ Cyndaquil,155,2,39,52,43,60,50,65,5,79,
157
+ Quilava,156,2,58,64,58,80,65,80,9,190,Cyndaquil
158
+ Typhlosion,157,2,78,84,78,109,85,100,17,795,Quilava
159
+ Totodile,158,2,50,65,64,44,48,43,6,95,
160
+ Croconaw,159,2,65,80,80,59,63,58,11,250,Totodile
161
+ Feraligatr,160,2,85,105,100,79,83,78,23,888,Croconaw
162
+ Sentret,161,2,35,46,34,35,45,20,8,60,
163
+ Furret,162,2,85,76,64,45,55,90,18,325,Sentret
164
+ Hoothoot,163,2,60,30,30,36,56,50,7,212,
165
+ Noctowl,164,2,100,50,50,86,96,70,16,408,Hoothoot
166
+ Ledyba,165,2,40,20,30,40,80,55,10,108,
167
+ Ledian,166,2,55,35,50,55,110,85,14,356,Ledyba
168
+ Spinarak,167,2,40,60,40,40,40,30,5,85,
169
+ Ariados,168,2,70,90,70,60,70,40,11,335,Spinarak
170
+ Crobat,169,2,85,90,80,70,80,130,18,750,Golbat
171
+ Chinchou,170,2,75,38,38,56,56,67,5,120,
172
+ Lanturn,171,2,125,58,58,76,76,67,12,225,Chinchou
173
+ Pichu,172,2,20,40,15,35,35,60,3,20,
174
+ Cleffa,173,2,50,25,28,45,55,15,3,30,
175
+ Igglybuff,174,2,90,30,15,40,20,15,3,10,
176
+ Togepi,175,2,35,20,65,40,65,20,3,15,
177
+ Togetic,176,2,55,40,85,80,105,40,6,32,Togepi
178
+ Natu,177,2,40,50,45,70,45,70,2,20,
179
+ Xatu,178,2,65,75,70,95,70,95,15,150,Natu
180
+ Mareep,179,2,55,40,40,65,45,35,6,78,
181
+ Flaaffy,180,2,70,55,55,80,60,45,8,133,Mareep
182
+ Ampharos,181,2,90,75,85,115,90,55,14,615,Flaaffy
183
+ Bellossom,182,2,75,80,95,90,100,50,4,58,Gloom
184
+ Marill,183,2,70,20,50,20,50,40,4,85,Azurill
185
+ Azumarill,184,2,100,50,80,60,80,50,8,285,Marill
186
+ Sudowoodo,185,2,70,100,115,30,65,30,12,380,Bonsly
187
+ Politoed,186,2,90,75,75,90,100,70,11,339,Poliwhirl
188
+ Hoppip,187,2,35,35,40,35,55,50,4,5,
189
+ Skiploom,188,2,55,45,50,45,65,80,6,10,Hoppip
190
+ Jumpluff,189,2,75,55,70,55,95,110,8,30,Skiploom
191
+ Aipom,190,2,55,70,55,40,55,85,8,115,
192
+ Sunkern,191,2,30,30,30,30,30,30,3,18,
193
+ Sunflora,192,2,75,75,55,105,85,30,8,85,Sunkern
194
+ Yanma,193,2,65,65,45,75,45,95,12,380,
195
+ Wooper,194,2,55,45,45,25,25,15,4,85,
196
+ Quagsire,195,2,95,85,85,65,65,35,14,750,Wooper
197
+ Espeon,196,2,65,65,60,130,95,110,9,265,Eevee
198
+ Umbreon,197,2,95,65,110,60,130,65,10,270,Eevee
199
+ Murkrow,198,2,60,85,42,85,42,91,5,21,
200
+ Slowking,199,2,95,75,80,100,110,30,20,795,Slowpoke
201
+ Misdreavus,200,2,60,60,60,85,85,85,7,10,
202
+ Unown,201,2,48,72,48,72,48,48,5,50,
203
+ Wobbuffet,202,2,190,33,58,33,58,33,13,285,Wynaut
204
+ Girafarig,203,2,70,80,65,90,65,85,15,415,
205
+ Pineco,204,2,50,65,90,35,35,15,6,72,
206
+ Forretress,205,2,75,90,140,60,60,40,12,1258,Pineco
207
+ Dunsparce,206,2,100,70,70,65,65,45,15,140,
208
+ Gligar,207,2,65,75,105,35,65,85,11,648,
209
+ Steelix,208,2,75,85,200,55,65,30,92,4000,Onix
210
+ Snubbull,209,2,60,80,50,40,40,30,6,78,
211
+ Granbull,210,2,90,120,75,60,60,45,14,487,Snubbull
212
+ Qwilfish,211,2,65,95,85,55,55,85,5,39,
213
+ Scizor,212,2,70,130,100,55,80,65,18,1180,Scyther
214
+ Shuckle,213,2,20,10,230,10,230,5,6,205,
215
+ Heracross,214,2,80,125,75,40,95,85,15,540,
216
+ Sneasel,215,2,55,95,55,35,75,115,9,280,
217
+ Teddiursa,216,2,60,80,50,50,50,40,6,88,
218
+ Ursaring,217,2,90,130,75,75,75,55,18,1258,Teddiursa
219
+ Slugma,218,2,40,40,40,70,40,20,7,350,
220
+ Magcargo,219,2,60,50,120,90,80,30,8,550,Slugma
221
+ Swinub,220,2,50,50,40,30,30,50,4,65,
222
+ Piloswine,221,2,100,100,80,60,60,50,11,558,Swinub
223
+ Corsola,222,2,65,55,95,65,95,35,6,50,
224
+ Remoraid,223,2,35,65,35,65,35,65,6,120,
225
+ Octillery,224,2,75,105,75,105,75,45,9,285,Remoraid
226
+ Delibird,225,2,45,55,45,65,45,75,9,160,
227
+ Mantine,226,2,85,40,70,80,140,70,21,2200,Mantyke
228
+ Skarmory,227,2,65,80,140,40,70,70,17,505,
229
+ Houndour,228,2,45,60,30,80,50,65,6,108,
230
+ Houndoom,229,2,75,90,50,110,80,95,14,350,Houndour
231
+ Kingdra,230,2,75,95,95,95,95,85,18,1520,Seadra
232
+ Phanpy,231,2,90,60,60,40,40,40,5,335,
233
+ Donphan,232,2,90,120,120,60,60,50,11,1200,Phanpy
234
+ Porygon2,233,2,85,80,90,105,95,60,6,325,Porygon
235
+ Stantler,234,2,73,95,62,85,65,85,14,712,
236
+ Smeargle,235,2,55,20,35,20,45,75,12,580,
237
+ Tyrogue,236,2,35,35,35,35,35,35,7,210,
238
+ Hitmontop,237,2,50,95,95,35,110,70,14,480,Tyrogue
239
+ Smoochum,238,2,45,30,15,85,65,65,4,60,
240
+ Elekid,239,2,45,63,37,65,55,95,6,235,
241
+ Magby,240,2,45,75,37,70,55,83,7,214,
242
+ Miltank,241,2,95,80,105,40,70,100,12,755,
243
+ Blissey,242,2,255,10,10,75,135,55,15,468,Chansey
244
+ Raikou,243,2,90,85,75,115,100,115,19,1780,
245
+ Entei,244,2,115,115,85,90,75,100,21,1980,
246
+ Suicune,245,2,100,75,115,90,115,85,20,1870,
247
+ Larvitar,246,2,50,64,50,45,50,41,6,720,
248
+ Pupitar,247,2,70,84,70,65,70,51,12,1520,Larvitar
249
+ Tyranitar,248,2,100,134,110,95,100,61,20,2020,Pupitar
250
+ Lugia,249,2,106,90,130,90,154,110,52,2160,
251
+ Ho-Oh,250,2,106,130,90,110,154,90,38,1990,
252
+ Celebi,251,2,100,100,100,100,100,100,6,50,
253
+ Treecko,252,3,40,45,35,65,55,70,5,50,
254
+ Grovyle,253,3,50,65,45,85,65,95,9,216,Treecko
255
+ Sceptile,254,3,70,85,65,105,85,120,17,522,Grovyle
256
+ Torchic,255,3,45,60,40,70,50,45,4,25,
257
+ Combusken,256,3,60,85,60,85,60,55,9,195,Torchic
258
+ Blaziken,257,3,80,120,70,110,70,80,19,520,Combusken
259
+ Mudkip,258,3,50,70,50,50,50,40,4,76,
260
+ Marshtomp,259,3,70,85,70,60,70,50,7,280,Mudkip
261
+ Swampert,260,3,100,110,90,85,90,60,15,819,Marshtomp
262
+ Poochyena,261,3,35,55,35,30,30,35,5,136,
263
+ Mightyena,262,3,70,90,70,60,60,70,10,370,Poochyena
264
+ Zigzagoon,263,3,38,30,41,30,41,60,4,175,
265
+ Linoone,264,3,78,70,61,50,61,100,5,325,Zigzagoon
266
+ Wurmple,265,3,45,45,35,20,30,20,3,36,
267
+ Silcoon,266,3,50,35,55,25,25,15,6,100,Wurmple
268
+ Beautifly,267,3,60,70,50,100,50,65,10,284,Silcoon
269
+ Cascoon,268,3,50,35,55,25,25,15,7,115,Wurmple
270
+ Dustox,269,3,60,50,70,50,90,65,12,316,Cascoon
271
+ Lotad,270,3,40,30,30,40,50,30,5,26,
272
+ Lombre,271,3,60,50,50,60,70,50,12,325,Lotad
273
+ Ludicolo,272,3,80,70,70,90,100,70,15,550,Lombre
274
+ Seedot,273,3,40,40,50,30,30,30,5,40,
275
+ Nuzleaf,274,3,70,70,40,60,40,60,10,280,Seedot
276
+ Shiftry,275,3,90,100,60,90,60,80,13,596,Nuzleaf
277
+ Taillow,276,3,40,55,30,30,30,85,3,23,
278
+ Swellow,277,3,60,85,60,75,50,125,7,198,Taillow
279
+ Wingull,278,3,40,30,30,55,30,85,6,95,
280
+ Pelipper,279,3,60,50,100,95,70,65,12,280,Wingull
281
+ Ralts,280,3,28,25,25,45,35,40,4,66,
282
+ Kirlia,281,3,38,35,35,65,55,50,8,202,Ralts
283
+ Gardevoir,282,3,68,65,65,125,115,80,16,484,Kirlia
284
+ Surskit,283,3,40,30,32,50,52,65,5,17,
285
+ Masquerain,284,3,70,60,62,100,82,80,8,36,Surskit
286
+ Shroomish,285,3,60,40,60,40,60,35,4,45,
287
+ Breloom,286,3,60,130,80,60,60,70,12,392,Shroomish
288
+ Slakoth,287,3,60,60,60,35,35,30,8,240,
289
+ Vigoroth,288,3,80,80,80,55,55,90,14,465,Slakoth
290
+ Slaking,289,3,150,160,100,95,65,100,20,1305,Vigoroth
291
+ Nincada,290,3,31,45,90,30,30,40,5,55,
292
+ Ninjask,291,3,61,90,45,50,50,160,8,120,Nincada
293
+ Shedinja,292,3,1,90,45,30,30,40,8,12,Nincada
294
+ Whismur,293,3,64,51,23,51,23,28,6,163,
295
+ Loudred,294,3,84,71,43,71,43,48,10,405,Whismur
296
+ Exploud,295,3,104,91,63,91,73,68,15,840,Loudred
297
+ Makuhita,296,3,72,60,30,20,30,25,10,864,
298
+ Hariyama,297,3,144,120,60,40,60,50,23,2538,Makuhita
299
+ Azurill,298,3,50,20,40,20,40,20,2,20,
300
+ Nosepass,299,3,30,45,135,45,90,30,10,970,
301
+ Skitty,300,3,50,45,45,35,35,50,6,110,
302
+ Delcatty,301,3,70,65,65,55,55,90,11,326,Skitty
303
+ Sableye,302,3,50,75,75,65,65,50,5,110,
304
+ Mawile,303,3,50,85,85,55,55,50,6,115,
305
+ Aron,304,3,50,70,100,40,40,30,4,600,
306
+ Lairon,305,3,60,90,140,50,50,40,9,1200,Aron
307
+ Aggron,306,3,70,110,180,60,60,50,21,3600,Lairon
308
+ Meditite,307,3,30,40,55,40,55,60,6,112,
309
+ Medicham,308,3,60,60,75,60,75,80,13,315,Meditite
310
+ Electrike,309,3,40,45,40,65,40,65,6,152,
311
+ Manectric,310,3,70,75,60,105,60,105,15,402,Electrike
312
+ Plusle,311,3,60,50,40,85,75,95,4,42,
313
+ Minun,312,3,60,40,50,75,85,95,4,42,
314
+ Volbeat,313,3,65,73,75,47,85,85,7,177,
315
+ Illumise,314,3,65,47,75,73,85,85,6,177,
316
+ Roselia,315,3,50,60,45,100,80,65,3,20,Budew
317
+ Gulpin,316,3,70,43,53,43,53,40,4,103,
318
+ Swalot,317,3,100,73,83,73,83,55,17,800,Gulpin
319
+ Carvanha,318,3,45,90,20,65,20,65,8,208,
320
+ Sharpedo,319,3,70,120,40,95,40,95,18,888,Carvanha
321
+ Wailmer,320,3,130,70,35,70,35,60,20,1300,
322
+ Wailord,321,3,170,90,45,90,45,60,145,3980,Wailmer
323
+ Numel,322,3,60,60,40,65,45,35,7,240,
324
+ Camerupt,323,3,70,100,70,105,75,40,19,2200,Numel
325
+ Torkoal,324,3,70,85,140,85,70,20,5,804,
326
+ Spoink,325,3,60,25,35,70,80,60,7,306,
327
+ Grumpig,326,3,80,45,65,90,110,80,9,715,Spoink
328
+ Spinda,327,3,60,60,60,60,60,60,11,50,
329
+ Trapinch,328,3,45,100,45,45,45,10,7,150,
330
+ Vibrava,329,3,50,70,50,50,50,70,11,153,Trapinch
331
+ Flygon,330,3,80,100,80,80,80,100,20,820,Vibrava
332
+ Cacnea,331,3,50,85,40,85,40,35,4,513,
333
+ Cacturne,332,3,70,115,60,115,60,55,13,774,Cacnea
334
+ Swablu,333,3,45,40,60,40,75,50,4,12,
335
+ Altaria,334,3,75,70,90,70,105,80,11,206,Swablu
336
+ Zangoose,335,3,73,115,60,60,60,90,13,403,
337
+ Seviper,336,3,73,100,60,100,60,65,27,525,
338
+ Lunatone,337,3,90,55,65,95,85,70,10,1680,
339
+ Solrock,338,3,90,95,85,55,65,70,12,1540,
340
+ Barboach,339,3,50,48,43,46,41,60,4,19,
341
+ Whiscash,340,3,110,78,73,76,71,60,9,236,Barboach
342
+ Corphish,341,3,43,80,65,50,35,35,6,115,
343
+ Crawdaunt,342,3,63,120,85,90,55,55,11,328,Corphish
344
+ Baltoy,343,3,40,40,55,40,70,55,5,215,
345
+ Claydol,344,3,60,70,105,70,120,75,15,1080,Baltoy
346
+ Lileep,345,3,66,41,77,61,87,23,10,238,
347
+ Cradily,346,3,86,81,97,81,107,43,15,604,Lileep
348
+ Anorith,347,3,45,95,50,40,50,75,7,125,
349
+ Armaldo,348,3,75,125,100,70,80,45,15,682,Anorith
350
+ Feebas,349,3,20,15,20,10,55,80,6,74,
351
+ Milotic,350,3,95,60,79,100,125,81,62,1620,Feebas
352
+ Castform,351,3,70,70,70,70,70,70,3,8,
353
+ Kecleon,352,3,60,90,70,60,120,40,10,220,
354
+ Shuppet,353,3,44,75,35,63,33,45,6,23,
355
+ Banette,354,3,64,115,65,83,63,65,11,125,Shuppet
356
+ Duskull,355,3,20,40,90,30,90,25,8,150,
357
+ Dusclops,356,3,40,70,130,60,130,25,16,306,Duskull
358
+ Tropius,357,3,99,68,83,72,87,51,20,1000,
359
+ Chimecho,358,3,75,50,80,95,90,65,6,10,Chingling
360
+ Absol,359,3,65,130,60,75,60,75,12,470,
361
+ Wynaut,360,3,95,23,48,23,48,23,6,140,
362
+ Snorunt,361,3,50,50,50,50,50,50,7,168,
363
+ Glalie,362,3,80,80,80,80,80,80,15,2565,Snorunt
364
+ Spheal,363,3,70,40,50,55,50,25,8,395,
365
+ Sealeo,364,3,90,60,70,75,70,45,11,876,Spheal
366
+ Walrein,365,3,110,80,90,95,90,65,14,1506,Sealeo
367
+ Clamperl,366,3,35,64,85,74,55,32,4,525,
368
+ Huntail,367,3,55,104,105,94,75,52,17,270,Clamperl
369
+ Gorebyss,368,3,55,84,105,114,75,52,18,226,Clamperl
370
+ Relicanth,369,3,100,90,130,45,65,55,10,234,
371
+ Luvdisc,370,3,43,30,55,40,65,97,6,87,
372
+ Bagon,371,3,45,75,60,40,30,50,6,421,
373
+ Shelgon,372,3,65,95,100,60,50,50,11,1105,Bagon
374
+ Salamence,373,3,95,135,80,110,80,100,15,1026,Shelgon
375
+ Beldum,374,3,40,55,80,35,60,30,6,952,
376
+ Metang,375,3,60,75,100,55,80,50,12,2025,Beldum
377
+ Metagross,376,3,80,135,130,95,90,70,16,5500,Metang
378
+ Regirock,377,3,80,100,200,50,100,50,17,2300,
379
+ Regice,378,3,80,50,100,100,200,50,18,1750,
380
+ Registeel,379,3,80,75,150,75,150,50,19,2050,
381
+ Latias,380,3,80,80,90,110,130,110,14,400,
382
+ Latios,381,3,80,90,80,130,110,110,20,600,
383
+ Kyogre,382,3,100,100,90,150,140,90,45,3520,
384
+ Groudon,383,3,100,150,140,100,90,90,35,9500,
385
+ Rayquaza,384,3,105,150,90,150,90,95,70,2065,
386
+ Jirachi,385,3,100,100,100,100,100,100,3,11,
387
+ Deoxys,386,3,50,150,50,150,50,150,17,608,
388
+ Turtwig,387,4,55,68,64,45,55,31,4,102,
389
+ Grotle,388,4,75,89,85,55,65,36,11,970,Turtwig
390
+ Torterra,389,4,95,109,105,75,85,56,22,3100,Grotle
391
+ Chimchar,390,4,44,58,44,58,44,61,5,62,
392
+ Monferno,391,4,64,78,52,78,52,81,9,220,Chimchar
393
+ Infernape,392,4,76,104,71,104,71,108,12,550,Monferno
394
+ Piplup,393,4,53,51,53,61,56,40,4,52,
395
+ Prinplup,394,4,64,66,68,81,76,50,8,230,Piplup
396
+ Empoleon,395,4,84,86,88,111,101,60,17,845,Prinplup
397
+ Starly,396,4,40,55,30,30,30,60,3,20,
398
+ Staravia,397,4,55,75,50,40,40,80,6,155,Starly
399
+ Staraptor,398,4,85,120,70,50,60,100,12,249,Staravia
400
+ Bidoof,399,4,59,45,40,35,40,31,5,200,
401
+ Bibarel,400,4,79,85,60,55,60,71,10,315,Bidoof
402
+ Kricketot,401,4,37,25,41,25,41,25,3,22,
403
+ Kricketune,402,4,77,85,51,55,51,65,10,255,Kricketot
404
+ Shinx,403,4,45,65,34,40,34,45,5,95,
405
+ Luxio,404,4,60,85,49,60,49,60,9,305,Shinx
406
+ Luxray,405,4,80,120,79,95,79,70,14,420,Luxio
407
+ Budew,406,4,40,30,35,50,70,55,2,12,
408
+ Roserade,407,4,60,70,65,125,105,90,9,145,Roselia
409
+ Cranidos,408,4,67,125,40,30,30,58,9,315,
410
+ Rampardos,409,4,97,165,60,65,50,58,16,1025,Cranidos
411
+ Shieldon,410,4,30,42,118,42,88,30,5,570,
412
+ Bastiodon,411,4,60,52,168,47,138,30,13,1495,Shieldon
413
+ Burmy,412,4,40,29,45,29,45,36,2,34,
414
+ Wormadam,413,4,60,59,85,79,105,36,5,65,Burmy
415
+ Mothim,414,4,70,94,50,94,50,66,9,233,Burmy
416
+ Combee,415,4,30,30,42,30,42,70,3,55,
417
+ Vespiquen,416,4,70,80,102,80,102,40,12,385,Combee
418
+ Pachirisu,417,4,60,45,70,45,90,95,4,39,
419
+ Buizel,418,4,55,65,35,60,30,85,7,295,
420
+ Floatzel,419,4,85,105,55,85,50,115,11,335,Buizel
421
+ Cherubi,420,4,45,35,45,62,53,35,4,33,
422
+ Cherrim,421,4,70,60,70,87,78,85,5,93,Cherubi
423
+ Shellos,422,4,76,48,48,57,62,34,3,63,
424
+ Gastrodon,423,4,111,83,68,92,82,39,9,299,Shellos
425
+ Ambipom,424,4,75,100,66,60,66,115,12,203,Aipom
426
+ Drifloon,425,4,90,50,34,60,44,70,4,12,
427
+ Drifblim,426,4,150,80,44,90,54,80,12,150,Drifloon
428
+ Buneary,427,4,55,66,44,44,56,85,4,55,
429
+ Lopunny,428,4,65,76,84,54,96,105,12,333,Buneary
430
+ Mismagius,429,4,60,60,60,105,105,105,9,44,Misdreavus
431
+ Honchkrow,430,4,100,125,52,105,52,71,9,273,Murkrow
432
+ Glameow,431,4,49,55,42,42,37,85,5,39,
433
+ Purugly,432,4,71,82,64,64,59,112,10,438,Glameow
434
+ Chingling,433,4,45,30,50,65,50,45,2,6,
435
+ Stunky,434,4,63,63,47,41,41,74,4,192,
436
+ Skuntank,435,4,103,93,67,71,61,84,10,380,Stunky
437
+ Bronzor,436,4,57,24,86,24,86,23,5,605,
438
+ Bronzong,437,4,67,89,116,79,116,33,13,1870,Bronzor
439
+ Bonsly,438,4,50,80,95,10,45,10,5,150,
440
+ Mime Jr.,439,4,20,25,45,70,90,60,6,130,
441
+ Happiny,440,4,100,5,5,15,65,30,6,244,
442
+ Chatot,441,4,76,65,45,92,42,91,5,19,
443
+ Spiritomb,442,4,50,92,108,92,108,35,10,1080,
444
+ Gible,443,4,58,70,45,40,45,42,7,205,
445
+ Gabite,444,4,68,90,65,50,55,82,14,560,Gible
446
+ Garchomp,445,4,108,130,95,80,85,102,19,950,Gabite
447
+ Munchlax,446,4,135,85,40,40,85,5,6,1050,
448
+ Riolu,447,4,40,70,40,35,40,60,7,202,
449
+ Lucario,448,4,70,110,70,115,70,90,12,540,Riolu
450
+ Hippopotas,449,4,68,72,78,38,42,32,8,495,
451
+ Hippowdon,450,4,108,112,118,68,72,47,20,3000,Hippopotas
452
+ Skorupi,451,4,40,50,90,30,55,65,8,120,
453
+ Drapion,452,4,70,90,110,60,75,95,13,615,Skorupi
454
+ Croagunk,453,4,48,61,40,61,40,50,7,230,
455
+ Toxicroak,454,4,83,106,65,86,65,85,13,444,Croagunk
456
+ Carnivine,455,4,74,100,72,90,72,46,14,270,
457
+ Finneon,456,4,49,49,56,49,61,66,4,70,
458
+ Lumineon,457,4,69,69,76,69,86,91,12,240,Finneon
459
+ Mantyke,458,4,45,20,50,60,120,50,10,650,
460
+ Snover,459,4,60,62,50,62,60,40,10,505,
461
+ Abomasnow,460,4,90,92,75,92,85,60,22,1355,Snover
462
+ Weavile,461,4,70,120,65,45,85,125,11,340,Sneasel
463
+ Magnezone,462,4,70,70,115,130,90,60,12,1800,Magneton
464
+ Lickilicky,463,4,110,85,95,80,95,50,17,1400,Lickitung
465
+ Rhyperior,464,4,115,140,130,55,55,40,24,2828,Rhydon
466
+ Tangrowth,465,4,100,100,125,110,50,50,20,1286,Tangela
467
+ Electivire,466,4,75,123,67,95,85,95,18,1386,Electabuzz
468
+ Magmortar,467,4,75,95,67,125,95,83,16,680,Magmar
469
+ Togekiss,468,4,85,50,95,120,115,80,15,380,Togetic
470
+ Yanmega,469,4,86,76,86,116,56,95,19,515,Yanma
471
+ Leafeon,470,4,65,110,130,60,65,95,10,255,Eevee
472
+ Glaceon,471,4,65,60,110,130,95,65,8,259,Eevee
473
+ Gliscor,472,4,75,95,125,45,75,95,20,425,Gligar
474
+ Mamoswine,473,4,110,130,80,70,60,80,25,2910,Piloswine
475
+ Porygon Z,474,4,85,80,70,135,75,90,9,340,Porygon2
476
+ Gallade,475,4,68,125,65,65,115,80,16,520,Kirlia
477
+ Probopass,476,4,60,55,145,75,150,40,14,3400,Nosepass
478
+ Dusknoir,477,4,45,100,135,65,135,45,22,1066,Dusclops
479
+ Froslass,478,4,70,80,70,80,70,110,13,266,Snorunt
480
+ Rotom,479,4,50,50,77,95,77,91,3,3,
481
+ Uxie,480,4,75,75,130,75,130,95,3,3,
482
+ Mesprit,481,4,80,105,105,105,105,80,3,3,
483
+ Azelf,482,4,75,125,70,125,70,115,3,3,
484
+ Dialga,483,4,100,120,120,150,100,90,54,6830,
485
+ Palkia,484,4,90,120,100,150,120,100,42,3360,
486
+ Heatran,485,4,91,90,106,130,106,77,17,4300,
487
+ Regigigas,486,4,110,160,110,80,110,100,37,4200,
488
+ Giratina,487,4,150,100,120,100,120,90,45,7500,
489
+ Cresselia,488,4,120,70,120,75,130,85,15,856,
490
+ Phione,489,4,80,80,80,80,80,80,4,31,
491
+ Manaphy,490,4,100,100,100,100,100,100,3,14,
492
+ Darkrai,491,4,70,90,90,135,90,125,15,505,
493
+ Shaymin,492,4,100,100,100,100,100,100,2,21,
494
+ Arceus,493,4,120,120,120,120,120,120,32,3200,
495
+ Victini,494,5,100,100,100,100,100,100,4,40,
496
+ Snivy,495,5,45,45,55,45,55,63,6,81,
497
+ Servine,496,5,60,60,75,60,75,83,8,160,Snivy
498
+ Serperior,497,5,75,75,95,75,95,113,33,630,Servine
499
+ Tepig,498,5,65,63,45,45,45,45,5,99,
500
+ Pignite,499,5,90,93,55,70,55,55,10,555,Tepig
501
+ Emboar,500,5,110,123,65,100,65,65,16,1500,Pignite
502
+ Oshawott,501,5,55,55,45,63,45,45,5,59,
503
+ Dewott,502,5,75,75,60,83,60,60,8,245,Oshawott
504
+ Samurott,503,5,95,100,85,108,70,70,15,946,Dewott
505
+ Patrat,504,5,45,55,39,35,39,42,5,116,
506
+ Watchog,505,5,60,85,69,60,69,77,11,270,Patrat
507
+ Lillipup,506,5,45,60,45,25,45,55,4,41,
508
+ Herdier,507,5,65,80,65,35,65,60,9,147,Lillipup
509
+ Stoutland,508,5,85,110,90,45,90,80,12,610,Herdier
510
+ Purrloin,509,5,41,50,37,50,37,66,4,101,
511
+ Liepard,510,5,64,88,50,88,50,106,11,375,Purrloin
512
+ Pansage,511,5,50,53,48,53,48,64,6,105,
513
+ Simisage,512,5,75,98,63,98,63,101,11,305,Pansage
514
+ Pansear,513,5,50,53,48,53,48,64,6,110,
515
+ Simisear,514,5,75,98,63,98,63,101,10,280,Pansear
516
+ Panpour,515,5,50,53,48,53,48,64,6,135,
517
+ Simipour,516,5,75,98,63,98,63,101,10,290,Panpour
518
+ Munna,517,5,76,25,45,67,55,24,6,233,
519
+ Musharna,518,5,116,55,85,107,95,29,11,605,Munna
520
+ Pidove,519,5,50,55,50,36,30,43,3,21,
521
+ Tranquill,520,5,62,77,62,50,42,65,6,150,Pidove
522
+ Unfezant,521,5,80,115,80,65,55,93,12,290,Tranquill
523
+ Blitzle,522,5,45,60,32,50,32,76,8,298,
524
+ Zebstrika,523,5,75,100,63,80,63,116,16,795,Blitzle
525
+ Roggenrola,524,5,55,75,85,25,25,15,4,180,
526
+ Boldore,525,5,70,105,105,50,40,20,9,1020,Roggenrola
527
+ Gigalith,526,5,85,135,130,60,80,25,17,2600,Boldore
528
+ Woobat,527,5,65,45,43,55,43,72,4,21,
529
+ Swoobat,528,5,67,57,55,77,55,114,9,105,Woobat
530
+ Drilbur,529,5,60,85,40,30,45,68,3,85,
531
+ Excadrill,530,5,110,135,60,50,65,88,7,404,Drilbur
532
+ Audino,531,5,103,60,86,60,86,50,11,310,
533
+ Timburr,532,5,75,80,55,25,35,35,6,125,
534
+ Gurdurr,533,5,85,105,85,40,50,40,12,400,Timburr
535
+ Conkeldurr,534,5,105,140,95,55,65,45,14,870,Gurdurr
536
+ Tympole,535,5,50,50,40,50,40,64,5,45,
537
+ Palpitoad,536,5,75,65,55,65,55,69,8,170,Tympole
538
+ Seismitoad,537,5,105,95,75,85,75,74,15,620,Palpitoad
539
+ Throh,538,5,120,100,85,30,85,45,13,555,
540
+ Sawk,539,5,75,125,75,30,75,85,14,510,
541
+ Sewaddle,540,5,45,53,70,40,60,42,3,25,
542
+ Swadloon,541,5,55,63,90,50,80,42,5,73,Sewaddle
543
+ Leavanny,542,5,75,103,80,70,80,92,12,205,Swadloon
544
+ Venipede,543,5,30,45,59,30,39,57,4,53,
545
+ Whirlipede,544,5,40,55,99,40,79,47,12,585,Venipede
546
+ Scolipede,545,5,60,100,89,55,69,112,25,2005,Whirlipede
547
+ Cottonee,546,5,40,27,60,37,50,66,3,6,
548
+ Whimsicott,547,5,60,67,85,77,75,116,7,66,Cottonee
549
+ Petilil,548,5,45,35,50,70,50,30,5,66,
550
+ Lilligant,549,5,70,60,75,110,75,90,11,163,Petilil
551
+ Basculin,550,5,70,92,65,80,55,98,10,180,
552
+ Sandile,551,5,50,72,35,35,35,65,7,152,
553
+ Krokorok,552,5,60,82,45,45,45,74,10,334,Sandile
554
+ Krookodile,553,5,95,117,80,65,70,92,15,963,Krokorok
555
+ Darumaka,554,5,70,90,45,15,45,50,6,375,
556
+ Darmanitan,555,5,105,140,55,30,55,95,13,929,Darumaka
557
+ Maractus,556,5,75,86,67,106,67,60,10,280,
558
+ Dwebble,557,5,50,65,85,35,35,55,3,145,
559
+ Crustle,558,5,70,105,125,65,75,45,14,2000,Dwebble
560
+ Scraggy,559,5,50,75,70,35,70,48,6,118,
561
+ Scrafty,560,5,65,90,115,45,115,58,11,300,Scraggy
562
+ Sigilyph,561,5,72,58,80,103,80,97,14,140,
563
+ Yamask,562,5,38,30,85,55,65,30,5,15,
564
+ Cofagrigus,563,5,58,50,145,95,105,30,17,765,Yamask
565
+ Tirtouga,564,5,54,78,103,53,45,22,7,165,
566
+ Carracosta,565,5,74,108,133,83,65,32,12,810,Tirtouga
567
+ Archen,566,5,55,112,45,74,45,70,5,95,
568
+ Archeops,567,5,75,140,65,112,65,110,14,320,Archen
569
+ Trubbish,568,5,50,50,62,40,62,65,6,310,
570
+ Garbodor,569,5,80,95,82,60,82,75,19,1073,Trubbish
571
+ Zorua,570,5,40,65,40,80,40,65,7,125,
572
+ Zoroark,571,5,60,105,60,120,60,105,16,811,Zorua
573
+ Minccino,572,5,55,50,40,40,40,75,4,58,
574
+ Cinccino,573,5,75,95,60,65,60,115,5,75,Minccino
575
+ Gothita,574,5,45,30,50,55,65,45,4,58,
576
+ Gothorita,575,5,60,45,70,75,85,55,7,180,Gothita
577
+ Gothitelle,576,5,70,55,95,95,110,65,15,440,Gothorita
578
+ Solosis,577,5,45,30,40,105,50,20,3,10,
579
+ Duosion,578,5,65,40,50,125,60,30,6,80,Solosis
580
+ Reuniclus,579,5,110,65,75,125,85,30,10,201,Duosion
581
+ Ducklett,580,5,62,44,50,44,50,55,5,55,
582
+ Swanna,581,5,75,87,63,87,63,98,13,242,Ducklett
583
+ Vanillite,582,5,36,50,50,65,60,44,4,57,
584
+ Vanillish,583,5,51,65,65,80,75,59,11,410,Vanillite
585
+ Vanilluxe,584,5,71,95,85,110,95,79,13,575,Vanillish
586
+ Deerling,585,5,60,60,50,40,50,75,6,195,
587
+ Sawsbuck,586,5,80,100,70,60,70,95,19,925,Deerling
588
+ Emolga,587,5,55,75,60,75,60,103,4,50,
589
+ Karrablast,588,5,50,75,45,40,45,60,5,59,
590
+ Escavalier,589,5,70,135,105,60,105,20,10,330,Karrablast
591
+ Foongus,590,5,69,55,45,55,55,15,2,10,
592
+ Amoonguss,591,5,114,85,70,85,80,30,6,105,Foongus
593
+ Frillish,592,5,55,40,50,65,85,40,12,330,
594
+ Jellicent,593,5,100,60,70,85,105,60,22,1350,Frillish
595
+ Alomomola,594,5,165,75,80,40,45,65,12,316,
596
+ Joltik,595,5,50,47,50,57,50,65,1,6,
597
+ Galvantula,596,5,70,77,60,97,60,108,8,143,Joltik
598
+ Ferroseed,597,5,44,50,91,24,86,10,6,188,
599
+ Ferrothorn,598,5,74,94,131,54,116,20,10,1100,Ferroseed
600
+ Klink,599,5,40,55,70,45,60,30,3,210,
601
+ Klang,600,5,60,80,95,70,85,50,6,510,Klink
602
+ Klinklang,601,5,60,100,115,70,85,90,6,810,Klang
603
+ Tynamo,602,5,35,55,40,45,40,60,2,3,
604
+ Eelektrik,603,5,65,85,70,75,70,40,12,220,Tynamo
605
+ Eelektross,604,5,85,115,80,105,80,50,21,805,Eelektrik
606
+ Elgyem,605,5,55,55,55,85,55,30,5,90,
607
+ Beheeyem,606,5,75,75,75,125,95,40,10,345,Elgyem
608
+ Litwick,607,5,50,30,55,65,55,20,3,31,
609
+ Lampent,608,5,60,40,60,95,60,55,6,130,Litwick
610
+ Chandelure,609,5,60,55,90,145,90,80,10,343,Lampent
611
+ Axew,610,5,46,87,60,30,40,57,6,180,
612
+ Fraxure,611,5,66,117,70,40,50,67,10,360,Axew
613
+ Haxorus,612,5,76,147,90,60,70,97,18,1055,Fraxure
614
+ Cubchoo,613,5,55,70,40,60,40,40,5,85,
615
+ Beartic,614,5,95,130,80,70,80,50,26,2600,Cubchoo
616
+ Cryogonal,615,5,80,50,50,95,135,105,11,1480,
617
+ Shelmet,616,5,50,40,85,40,65,25,4,77,
618
+ Accelgor,617,5,80,70,40,100,60,145,8,253,Shelmet
619
+ Stunfisk,618,5,109,66,84,81,99,32,7,110,
620
+ Mienfoo,619,5,45,85,50,55,50,65,9,200,
621
+ Mienshao,620,5,65,125,60,95,60,105,14,355,Mienfoo
622
+ Druddigon,621,5,77,120,90,60,90,48,16,1390,
623
+ Golett,622,5,59,74,50,35,50,35,10,920,
624
+ Golurk,623,5,89,124,80,55,80,55,28,3300,Golett
625
+ Pawniard,624,5,45,85,70,40,40,60,5,102,
626
+ Bisharp,625,5,65,125,100,60,70,70,16,700,Pawniard
627
+ Bouffalant,626,5,95,110,95,40,95,55,16,946,
628
+ Rufflet,627,5,70,83,50,37,50,60,5,105,
629
+ Braviary,628,5,100,123,75,57,75,80,15,410,Rufflet
630
+ Vullaby,629,5,70,55,75,45,65,60,5,90,
631
+ Mandibuzz,630,5,110,65,105,55,95,80,12,395,Vullaby
632
+ Heatmor,631,5,85,97,66,105,66,65,14,580,
633
+ Durant,632,5,58,109,112,48,48,109,3,330,
634
+ Deino,633,5,52,65,50,45,50,38,8,173,
635
+ Zweilous,634,5,72,85,70,65,70,58,14,500,Deino
636
+ Hydreigon,635,5,92,105,90,125,90,98,18,1600,Zweilous
637
+ Larvesta,636,5,55,85,55,50,55,60,11,288,
638
+ Volcarona,637,5,85,60,65,135,105,100,16,460,Larvesta
639
+ Cobalion,638,5,91,90,129,90,72,108,21,2500,
640
+ Terrakion,639,5,91,129,90,72,90,108,19,2600,
641
+ Virizion,640,5,91,90,72,90,129,108,20,2000,
642
+ Tornadus,641,5,79,115,70,125,80,111,15,630,
643
+ Thundurus,642,5,79,115,70,125,80,111,15,610,
644
+ Reshiram,643,5,100,120,100,150,120,90,32,3300,
645
+ Zekrom,644,5,100,150,120,120,100,90,29,3450,
646
+ Landorus,645,5,89,125,90,115,80,101,15,680,
647
+ Kyurem,646,5,125,130,90,130,90,95,30,3250,
648
+ Keldeo,647,5,91,72,90,129,90,108,14,485,
649
+ Meloetta,648,5,100,77,77,128,128,90,6,65,
650
+ Genesect,649,5,71,120,95,120,95,99,15,825,
651
+ Chespin,650,6,56,61,65,48,45,38,4,90,
652
+ Quilladin,651,6,61,78,95,56,58,57,7,290,Chespin
653
+ Chesnaught,652,6,88,107,122,74,75,64,16,900,Quilladin
654
+ Fennekin,653,6,40,45,40,62,60,60,4,94,
655
+ Braixen,654,6,59,59,58,90,70,73,10,145,Fennekin
656
+ Delphox,655,6,75,69,72,114,100,104,15,390,Braixen
657
+ Froakie,656,6,41,56,40,62,44,71,3,70,
658
+ Frogadier,657,6,54,63,52,83,56,97,6,109,Froakie
659
+ Greninja,658,6,72,95,67,103,71,122,15,400,Frogadier
660
+ Bunnelby,659,6,38,36,38,32,36,57,4,50,
661
+ Diggersby,660,6,85,56,77,50,77,78,10,424,Bunnelby
662
+ Fletchling,661,6,45,50,43,40,38,62,3,17,
663
+ Fletchinder,662,6,62,73,55,56,52,84,7,160,Fletchling
664
+ Talonflame,663,6,78,81,71,74,69,126,12,245,Fletchinder
665
+ Scatterbug,664,6,38,35,40,27,25,35,3,25,
666
+ Spewpa,665,6,45,22,60,27,30,29,3,84,Scatterbug
667
+ Vivillon,666,6,80,52,50,90,50,89,12,170,Spewpa
668
+ Litleo,667,6,62,50,58,73,54,72,6,135,
669
+ Pyroar,668,6,86,68,72,109,66,106,15,815,Litleo
670
+ Flabébé,669,6,44,38,39,61,79,42,1,1,
671
+ Floette,670,6,54,45,47,75,98,52,2,9,Flabébé
672
+ Florges,671,6,78,65,68,112,154,75,11,100,Floette
673
+ Skiddo,672,6,66,65,48,62,57,52,9,310,
674
+ Gogoat,673,6,123,100,62,97,81,68,17,910,Skiddo
675
+ Pancham,674,6,67,82,62,46,48,43,6,80,
676
+ Pangoro,675,6,95,124,78,69,71,58,21,1360,Pancham
677
+ Furfrou,676,6,75,80,60,65,90,102,12,280,
678
+ Espurr,677,6,62,48,54,63,60,68,3,35,
679
+ Meowstic,678,6,74,48,76,83,81,104,6,85,Espurr
680
+ Honedge,679,6,45,80,100,35,37,28,8,20,
681
+ Doublade,680,6,59,110,150,45,49,35,8,45,Honedge
682
+ Aegislash Shield,681,6,60,50,140,50,140,60,17,530,Doublade
683
+ Spritzee,682,6,78,52,60,63,65,23,2,5,
684
+ Aromatisse,683,6,101,72,72,99,89,29,8,155,Spritzee
685
+ Swirlix,684,6,62,48,66,59,57,49,4,35,
686
+ Slurpuff,685,6,82,80,86,85,75,72,8,50,Swirlix
687
+ Inkay,686,6,53,54,53,37,46,45,4,35,
688
+ Malamar,687,6,86,92,88,68,75,73,15,470,Inkay
689
+ Binacle,688,6,42,52,67,39,56,50,5,310,
690
+ Barbaracle,689,6,72,105,115,54,86,68,13,960,Binacle
691
+ Skrelp,690,6,50,60,60,60,60,30,5,73,
692
+ Dragalge,691,6,65,75,90,97,123,44,18,815,Skrelp
693
+ Clauncher,692,6,50,53,62,58,63,44,5,83,
694
+ Clawitzer,693,6,71,73,88,120,89,59,13,353,Clauncher
695
+ Helioptile,694,6,44,38,33,61,43,70,5,60,
696
+ Heliolisk,695,6,62,55,52,109,94,109,10,210,Helioptile
697
+ Tyrunt,696,6,58,89,77,45,45,48,8,260,
698
+ Tyrantrum,697,6,82,121,119,69,59,71,25,2700,Tyrunt
699
+ Amaura,698,6,77,59,50,67,63,46,13,252,
700
+ Aurorus,699,6,123,77,72,99,92,58,27,2250,Amaura
701
+ Sylveon,700,6,95,65,65,110,130,60,10,235,Eevee
702
+ Hawlucha,701,6,78,92,75,74,63,118,8,215,
703
+ Dedenne,702,6,67,58,57,81,67,101,2,22,
704
+ Carbink,703,6,50,50,150,50,150,50,3,57,
705
+ Goomy,704,6,45,50,35,55,75,40,3,28,
706
+ Sliggoo,705,6,68,75,53,83,113,60,8,175,Goomy
707
+ Goodra,706,6,90,100,70,110,150,80,20,1505,Sliggoo
708
+ Klefki,707,6,57,80,91,80,87,75,2,30,
709
+ Phantump,708,6,43,70,48,50,60,38,4,70,
710
+ Trevenant,709,6,85,110,76,65,82,56,15,710,Phantump
711
+ Pumpkaboo,710,6,49,66,70,44,55,51,4,50,
712
+ Gourgeist,711,6,65,90,122,58,75,84,9,125,Pumpkaboo
713
+ Bergmite,712,6,55,69,85,32,35,28,10,995,
714
+ Avalugg,713,6,95,117,184,44,46,28,20,5050,Bergmite
715
+ Noibat,714,6,40,30,35,45,40,55,5,80,
716
+ Noivern,715,6,85,70,80,97,80,123,15,850,Noibat
717
+ Xerneas,716,6,126,131,95,131,98,99,30,2150,
718
+ Yveltal,717,6,126,131,95,131,98,99,58,2030,
719
+ Zygarde,718,6,108,100,121,81,95,95,50,3050,
720
+ Diancie,719,6,50,100,150,100,150,50,7,88,
721
+ Hoopa,720,6,80,110,60,150,130,70,5,90,
722
+ Volcanion,721,6,80,110,120,130,90,70,17,1950,
723
+ Rowlet,722,7,68,55,55,50,50,42,3,15,
724
+ Dartrix,723,7,78,75,75,70,70,52,7,160,Rowlet
725
+ Decidueye,724,7,78,107,75,100,100,70,16,366,Dartrix
726
+ Litten,725,7,45,65,40,60,40,70,4,43,
727
+ Torracat,726,7,65,85,50,80,50,90,7,250,Litten
728
+ Incineroar,727,7,95,115,90,80,90,60,18,830,Torracat
729
+ Popplio,728,7,50,54,54,66,56,40,4,75,
730
+ Brionne,729,7,60,69,69,91,81,50,6,175,Popplio
731
+ Primarina,730,7,80,74,74,126,116,60,18,440,Brionne
732
+ Pikipek,731,7,35,75,30,30,30,65,3,12,
733
+ Trumbeak,732,7,55,85,50,40,50,75,6,148,Pikipek
734
+ Toucannon,733,7,80,120,75,75,75,60,11,260,Trumbeak
735
+ Yungoos,734,7,48,70,30,30,30,45,4,60,
736
+ Gumshoos,735,7,88,110,60,55,60,45,7,142,Yungoos
737
+ Grubbin,736,7,47,62,45,55,45,46,4,44,
738
+ Charjabug,737,7,57,82,95,55,75,36,5,105,Grubbin
739
+ Vikavolt,738,7,77,70,90,145,75,43,15,450,Charjabug
740
+ Crabrawler,739,7,47,82,57,42,47,63,6,70,
741
+ Crabominable,740,7,97,132,77,62,67,43,17,1800,Crabrawler
742
+ Oricorio,741,7,75,70,70,98,70,93,6,34,
743
+ Cutiefly,742,7,40,45,40,55,40,84,1,2,
744
+ Ribombee,743,7,60,55,60,95,70,124,2,5,Cutiefly
745
+ Rockruff,744,7,45,65,40,30,40,60,5,92,
746
+ Lycanroc,745,7,75,115,65,55,65,112,8,250,Rockruff
747
+ Wishiwashi,746,7,45,20,20,25,25,40,2,3,
748
+ Mareanie,747,7,50,53,62,43,52,45,4,80,
749
+ Toxapex,748,7,50,63,152,53,142,35,7,145,Mareanie
750
+ Mudbray,749,7,70,100,70,45,55,45,10,1100,
751
+ Mudsdale,750,7,100,125,100,55,85,35,25,9200,Mudbray
752
+ Dewpider,751,7,38,40,52,40,72,27,3,40,
753
+ Araquanid,752,7,68,70,92,50,132,42,18,820,Dewpider
754
+ Fomantis,753,7,40,55,35,50,35,35,3,15,
755
+ Lurantis,754,7,70,105,90,80,90,45,9,185,Fomantis
756
+ Morelull,755,7,40,35,55,65,75,15,2,15,
757
+ Shiinotic,756,7,60,45,80,90,100,30,10,115,Morelull
758
+ Salandit,757,7,48,44,40,71,40,77,6,48,
759
+ Salazzle,758,7,68,64,60,111,60,117,12,222,Salandit
760
+ Stufful,759,7,70,75,50,45,50,50,5,68,
761
+ Bewear,760,7,120,125,80,55,60,60,21,1350,Stufful
762
+ Bounsweet,761,7,42,30,38,30,38,32,3,32,
763
+ Steenee,762,7,52,40,48,40,48,62,7,82,Bounsweet
764
+ Tsareena,763,7,72,120,98,50,98,72,12,214,Steenee
765
+ Comfey,764,7,51,52,90,82,110,100,1,3,
766
+ Oranguru,765,7,90,60,80,90,110,60,15,760,
767
+ Passimian,766,7,100,120,90,40,60,80,20,828,
768
+ Wimpod,767,7,25,35,40,20,30,80,5,120,
769
+ Golisopod,768,7,75,125,140,60,90,40,20,1080,Wimpod
770
+ Sandygast,769,7,55,55,80,70,45,15,5,700,
771
+ Palossand,770,7,85,75,110,100,75,35,13,2500,Sandygast
772
+ Pyukumuku,771,7,55,60,130,30,130,5,3,12,
773
+ Type: Null,772,7,95,95,95,95,95,59,19,1205,
774
+ Silvally,773,7,95,95,95,95,95,95,23,1005,Type: Null
775
+ Minior,774,7,60,60,100,60,100,60,3,400,
776
+ Komala,775,7,65,115,65,75,95,65,4,199,
777
+ Turtonator,776,7,60,78,135,91,85,36,20,2120,
778
+ Togedemaru,777,7,65,98,63,40,73,96,3,33,
779
+ Mimikyu,778,7,55,90,80,50,105,96,2,7,
780
+ Bruxish,779,7,68,105,70,70,70,92,9,190,
781
+ Drampa,780,7,78,60,85,135,91,36,30,1850,
782
+ Dhelmise,781,7,70,131,100,86,90,40,39,2100,
783
+ Jangmo-o,782,7,45,55,65,45,45,45,6,297,
784
+ Hakamo-o,783,7,55,75,90,65,70,65,12,470,Jangmo-o
785
+ Kommo-o,784,7,75,110,125,100,105,85,16,782,Hakamo-o
786
+ Tapu Koko,785,7,70,115,85,95,75,130,18,205,
787
+ Tapu Lele,786,7,70,85,75,130,115,95,12,186,
788
+ Tapu Bulu,787,7,70,130,115,85,95,75,19,455,
789
+ Tapu Fini,788,7,70,75,115,95,130,85,13,212,
790
+ Cosmog,789,7,43,29,31,29,31,37,2,1,
791
+ Cosmoem,790,7,43,29,131,29,131,37,1,9999,Cosmog
792
+ Solgaleo,791,7,137,137,107,113,89,97,34,2300,Cosmoem
793
+ Lunala,792,7,137,113,89,137,107,97,40,1200,Cosmoem
794
+ Nihilego,793,7,109,53,47,127,131,103,12,555,
795
+ Buzzwole,794,7,107,139,139,53,53,79,24,3336,
796
+ Pheromosa,795,7,71,137,37,137,37,151,18,250,
797
+ Xurkitree,796,7,83,89,71,173,71,83,38,1000,
798
+ Celesteela,797,7,97,101,103,107,101,61,92,9999,
799
+ Kartana,798,7,59,181,131,59,31,109,3,1,
800
+ Guzzlord,799,7,223,101,53,97,53,43,55,8880,
801
+ Necrozma,800,7,97,107,101,127,89,79,24,2300,
802
+ Magearna,801,7,80,95,115,130,115,65,10,805,
803
+ Marshadow,802,7,90,125,80,90,90,125,7,222,
804
+ Poipole,803,7,67,73,67,73,67,73,6,18,
805
+ Naganadel,804,7,73,73,73,127,73,121,36,1500,Poipole
806
+ Stakataka,805,7,61,131,211,53,101,13,55,8200,
807
+ Blacephalon,806,7,53,127,53,151,79,107,18,130,
808
+ Zeraora,807,7,88,112,75,102,80,143,15,445,
809
+ Meltan,808,7,46,65,65,55,35,34,2,80,
810
+ Melmetal,809,7,135,143,143,80,65,34,25,8000,Meltan
811
+ Grookey,810,8,50,65,50,40,40,65,3,50,
812
+ Thwackey,811,8,70,85,70,55,60,80,7,140,Grookey
813
+ Rillaboom,812,8,100,125,90,60,70,85,21,900,Thwackey
814
+ Scorbunny,813,8,50,71,40,40,40,69,3,45,
815
+ Raboot,814,8,65,86,60,55,60,94,6,90,Scorbunny
816
+ Cinderace,815,8,80,116,75,65,75,119,14,330,Raboot
817
+ Sobble,816,8,50,40,40,70,40,70,3,40,
818
+ Drizzile,817,8,65,60,55,95,55,90,7,115,Sobble
819
+ Inteleon,818,8,70,85,65,125,65,120,19,452,Drizzile
820
+ Skwovet,819,8,70,55,55,35,35,25,3,25,
821
+ Greedent,820,8,120,95,95,55,75,20,6,60,Skwovet
822
+ Rookidee,821,8,38,47,35,33,35,57,2,18,
823
+ Corvisquire,822,8,68,67,55,43,55,77,8,160,Rookidee
824
+ Corviknight,823,8,98,87,105,53,85,67,22,750,Corvisquire
825
+ Blipbug,824,8,25,20,20,25,45,45,4,80,
826
+ Dottler,825,8,50,35,80,50,90,30,4,195,Blipbug
827
+ Orbeetle,826,8,60,45,110,80,120,90,4,408,Dottler
828
+ Nickit,827,8,40,28,28,47,52,50,6,89,
829
+ Thievul,828,8,70,58,58,87,92,90,12,199,Nickit
830
+ Gossifleur,829,8,40,40,60,40,60,10,4,22,
831
+ Eldegoss,830,8,60,50,90,80,120,60,5,25,Gossifleur
832
+ Wooloo,831,8,42,40,55,40,45,48,6,60,
833
+ Dubwool,832,8,72,80,100,60,90,88,13,430,Wooloo
834
+ Chewtle,833,8,50,64,50,38,38,44,3,85,
835
+ Drednaw,834,8,90,115,90,48,68,74,10,1155,Chewtle
836
+ Yamper,835,8,59,45,50,40,50,26,3,135,
837
+ Boltund,836,8,69,90,60,90,60,121,10,340,Yamper
838
+ Rolycoly,837,8,30,40,50,40,50,30,3,120,
839
+ Carkol,838,8,80,60,90,60,70,50,11,780,Rolycoly
840
+ Coalossal,839,8,110,80,120,80,90,30,28,3105,Carkol
841
+ Applin,840,8,40,40,80,40,40,20,2,5,
842
+ Flapple,841,8,70,110,80,95,60,70,3,10,Applin
843
+ Appletun,842,8,110,85,80,100,80,30,4,130,Applin
844
+ Silicobra,843,8,52,57,75,35,50,46,22,76,
845
+ Sandaconda,844,8,72,107,125,65,70,71,38,655,Silicobra
846
+ Cramorant,845,8,70,85,55,85,95,85,8,180,
847
+ Arrokuda,846,8,41,63,40,40,30,66,5,10,
848
+ Barraskewda,847,8,61,123,60,60,50,136,13,300,Arrokuda
849
+ Toxel,848,8,40,38,35,54,35,40,4,110,
850
+ Toxtricity,849,8,75,98,70,114,70,75,16,400,Toxel
851
+ Sizzlipede,850,8,50,65,45,50,50,45,7,10,
852
+ Centiskorch,851,8,100,115,65,90,90,65,30,1200,Sizzlipede
853
+ Clobbopus,852,8,50,68,60,50,50,32,6,40,
854
+ Grapploct,853,8,80,118,90,70,80,42,16,390,Clobbopus
855
+ Sinistea,854,8,40,45,45,74,54,50,1,2,
856
+ Polteageist,855,8,60,65,65,134,114,70,2,4,Sinistea
857
+ Hatenna,856,8,42,30,45,56,53,39,4,34,
858
+ Hattrem,857,8,57,40,65,86,73,49,6,48,Hatenna
859
+ Hatterene,858,8,57,90,95,136,103,29,21,51,Hattrem
860
+ Impidimp,859,8,45,45,30,55,40,50,4,55,
861
+ Morgrem,860,8,65,60,45,75,55,70,8,125,Impidimp
862
+ Grimmsnarl,861,8,95,120,65,95,75,60,15,610,Morgrem
863
+ Obstagoon,862,8,93,90,101,60,81,95,16,460,Linoone
864
+ Perrserker,863,8,70,110,100,50,60,50,8,280,Meowth
865
+ Cursola,864,8,60,95,50,145,130,30,10,4,Corsola
866
+ Sirfetch'd,865,8,62,135,95,68,82,65,8,1170,Farfetch'd
867
+ Mr. Rime,866,8,80,85,75,110,100,70,15,582,Mr. Mime
868
+ Runerigus,867,8,58,95,145,50,105,30,16,666,Yamask
869
+ Milcery,868,8,45,40,40,50,61,34,2,3,
870
+ Alcremie,869,8,65,60,75,110,121,64,3,5,Milcery
871
+ Falinks,870,8,65,100,100,70,60,75,30,620,
872
+ Pincurchin,871,8,48,101,95,91,85,15,3,10,
873
+ Snom,872,8,30,25,35,45,30,20,3,38,
874
+ Frosmoth,873,8,70,65,60,125,90,65,13,420,Snom
875
+ Stonjourner,874,8,100,125,135,20,20,70,25,5200,
876
+ Eiscue,875,8,75,80,110,65,90,50,14,890,
877
+ Indeedee,876,8,60,65,55,105,95,95,9,280,
878
+ Morpeko,877,8,58,95,58,70,58,97,3,30,
879
+ Cufant,878,8,72,80,49,40,49,40,12,1000,
880
+ Copperajah,879,8,122,130,69,80,69,30,30,6500,Cufant
881
+ Dracozolt,880,8,90,100,90,80,70,75,18,1900,
882
+ Arctozolt,881,8,90,100,90,90,80,55,23,1500,
883
+ Dracovish,882,8,90,90,100,70,80,75,23,2150,
884
+ Arctovish,883,8,90,90,100,80,90,55,20,1750,
885
+ Duraludon,884,8,70,95,115,120,50,85,18,400,
886
+ Dreepy,885,8,28,60,30,40,30,82,5,20,
887
+ Drakloak,886,8,68,80,50,60,50,102,14,110,Dreepy
888
+ Dragapult,887,8,88,120,75,100,75,142,30,500,Drakloak
889
+ Zacian,888,8,92,130,115,80,115,138,28,1100,
890
+ Zamazenta,889,8,92,130,115,80,115,138,29,2100,
891
+ Eternatus,890,8,140,85,95,145,95,130,200,9500,
892
+ Kubfu,891,8,60,90,60,53,50,72,6,120,
893
+ Urshifu,892,8,100,130,100,63,60,97,19,1050,Kubfu
894
+ Zarude,893,8,105,120,105,70,95,105,18,700,
895
+ Regieleki,894,8,80,100,50,100,50,200,12,1450,
896
+ Regidrago,895,8,200,100,50,100,50,80,21,2000,
897
+ Glastrier,896,8,100,145,130,65,110,30,22,8000,
898
+ Spectrier,897,8,100,65,60,145,80,130,20,445,
899
+ Calyrex,898,8,100,80,80,80,80,80,11,77,
900
+ Wyrdeer,899,8,103,105,72,105,75,65,18,951,Stantler
901
+ Kleavor,900,8,70,135,95,45,70,85,18,890,Scyther
902
+ Ursaluna,901,8,130,140,105,45,80,50,24,2900,Ursaring
903
+ Basculegion,902,8,120,112,65,80,75,78,30,1110,Basculin
904
+ Sneasler,903,8,80,130,60,40,80,120,13,430,Sneasel
905
+ Overqwil,904,8,85,115,95,65,65,85,25,605,Qwilfish
906
+ Enamorus,905,8,74,115,70,135,80,106,16,480,
whatever stuff is neede/level.csv ADDED
@@ -0,0 +1,411 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ bulbasaur,ivysaur,Evolves by level.
2
+ ivysaur,venusaur,Evolves by level.
3
+ charmander,charmeleon,Evolves by level.
4
+ charmeleon,charizard,Evolves by level.
5
+ squirtle,wartortle,Evolves by level.
6
+ wartortle,blastoise,Evolves by level.
7
+ caterpie,metapod,Evolves by level.
8
+ metapod,butterfree,Evolves by level.
9
+ weedle,kakuna,Evolves by level.
10
+ kakuna,beedrill,Evolves by level.
11
+ pidgey,pidgeotto,Evolves by level.
12
+ pidgeotto,pidgeot,Evolves by level.
13
+ rattata,raticate,Evolves by level.
14
+ rattata,raticate,Evolves by level. Nighttime
15
+ spearow,fearow,Evolves by level.
16
+ ekans,arbok,Evolves by level.
17
+ sandshrew,sandslash,Evolves by level.
18
+ nidoran♐,nidorina,Evolves by level.
19
+ nidoran♂,nidorino,Evolves by level.
20
+ zubat,golbat,Evolves by level.
21
+ oddish,gloom,Evolves by level.
22
+ paras,parasect,Evolves by level.
23
+ venonat,venomoth,Evolves by level.
24
+ diglett,dugtrio,Evolves by level.
25
+ diglett,dugtrio,Evolves by level.
26
+ meowth,persian,Evolves by level.
27
+ meowth,perrserker,Evolves by level.
28
+ psyduck,golduck,Evolves by level.
29
+ mankey,primeape,Evolves by level.
30
+ poliwag,poliwhirl,Evolves by level.
31
+ abra,kadabra,Evolves by level.
32
+ machop,machoke,Evolves by level.
33
+ bellsprout,weepinbell,Evolves by level.
34
+ tentacool,tentacruel,Evolves by level.
35
+ geodude,graveler,Evolves by level.
36
+ geodude,graveler,Evolves by level.
37
+ ponyta,rapidash,Evolves by level.
38
+ ponyta,rapidash,Evolves by level.
39
+ slowpoke,slowbro,Evolves by level.
40
+ magnemite,magneton,Evolves by level.
41
+ doduo,dodrio,Evolves by level.
42
+ seel,dewgong,Evolves by level.
43
+ grimer,muk,Evolves by level.
44
+ grimer,muk,Evolves by level.
45
+ gastly,haunter,Evolves by level.
46
+ drowzee,hypno,Evolves by level.
47
+ krabby,kingler,Evolves by level.
48
+ voltorb,electrode,Evolves by level.
49
+ cubone,marowak,Evolves by level. outside Alola
50
+ cubone,"marowak
51
+ alolan marowak","Evolves by level. Nighttime, in Alola"
52
+ tyrogue,hitmonlee,Evolves by level. Attack > Defense
53
+ tyrogue,hitmonchan,Evolves by level. Attack < Defense
54
+ tyrogue,hitmontop,Evolves by level. Attack = Defense
55
+ koffing,weezing,Evolves by level. outside Galar
56
+ koffing,"weezing
57
+ galarian weezing",Evolves by level. in Galar
58
+ rhyhorn,rhydon,Evolves by level.
59
+ horsea,seadra,Evolves by level.
60
+ goldeen,seaking,Evolves by level.
61
+ mr. mime,mr. rime,Evolves by level.
62
+ smoochum,jynx,Evolves by level.
63
+ elekid,electabuzz,Evolves by level.
64
+ magby,magmar,Evolves by level.
65
+ magikarp,gyarados,Evolves by level.
66
+ omanyte,omastar,Evolves by level.
67
+ kabuto,kabutops,Evolves by level.
68
+ dratini,dragonair,Evolves by level.
69
+ dragonair,dragonite,Evolves by level.
70
+ chikorita,bayleef,Evolves by level.
71
+ bayleef,meganium,Evolves by level.
72
+ cyndaquil,quilava,Evolves by level. or Level 17 in Legends: Arceus
73
+ quilava,typhlosion,Evolves by level.
74
+ quilava,"typhlosion
75
+ hisuian typhlosion",Evolves by level. in Legends: Arceus
76
+ totodile,croconaw,Evolves by level.
77
+ croconaw,feraligatr,Evolves by level.
78
+ sentret,furret,Evolves by level.
79
+ hoothoot,noctowl,Evolves by level.
80
+ ledyba,ledian,Evolves by level.
81
+ spinarak,ariados,Evolves by level.
82
+ chinchou,lanturn,Evolves by level.
83
+ natu,xatu,Evolves by level.
84
+ mareep,flaaffy,Evolves by level.
85
+ flaaffy,ampharos,Evolves by level.
86
+ marill,azumarill,Evolves by level.
87
+ hoppip,skiploom,Evolves by level.
88
+ skiploom,jumpluff,Evolves by level.
89
+ wooper,quagsire,Evolves by level.
90
+ wooper,clodsire,Evolves by level.
91
+ wynaut,wobbuffet,Evolves by level.
92
+ pineco,forretress,Evolves by level.
93
+ snubbull,granbull,Evolves by level.
94
+ teddiursa,ursaring,Evolves by level.
95
+ slugma,magcargo,Evolves by level.
96
+ swinub,piloswine,Evolves by level.
97
+ remoraid,octillery,Evolves by level.
98
+ houndour,houndoom,Evolves by level.
99
+ phanpy,donphan,Evolves by level.
100
+ larvitar,pupitar,Evolves by level.
101
+ pupitar,tyranitar,Evolves by level.
102
+ treecko,grovyle,Evolves by level.
103
+ grovyle,sceptile,Evolves by level.
104
+ torchic,combusken,Evolves by level.
105
+ combusken,blaziken,Evolves by level.
106
+ mudkip,marshtomp,Evolves by level.
107
+ marshtomp,swampert,Evolves by level.
108
+ poochyena,mightyena,Evolves by level.
109
+ zigzagoon,linoone,Evolves by level.
110
+ zigzagoon,linoone,Evolves by level.
111
+ linoone,obstagoon,Evolves by level. Nighttime
112
+ wurmple,silcoon,Evolves by level. random based on personality
113
+ silcoon,beautifly,Evolves by level.
114
+ wurmple,cascoon,Evolves by level. random based on personality
115
+ cascoon,dustox,Evolves by level.
116
+ lotad,lombre,Evolves by level.
117
+ seedot,nuzleaf,Evolves by level.
118
+ taillow,swellow,Evolves by level.
119
+ wingull,pelipper,Evolves by level.
120
+ ralts,kirlia,Evolves by level.
121
+ kirlia,gardevoir,Evolves by level.
122
+ surskit,masquerain,Evolves by level.
123
+ shroomish,breloom,Evolves by level.
124
+ slakoth,vigoroth,Evolves by level.
125
+ vigoroth,slaking,Evolves by level.
126
+ nincada,ninjask,Evolves by level.
127
+ nincada,shedinja,"Evolves by level. empty spot in party, Pokéball in bag"
128
+ whismur,loudred,Evolves by level.
129
+ loudred,exploud,Evolves by level.
130
+ makuhita,hariyama,Evolves by level.
131
+ aron,lairon,Evolves by level.
132
+ lairon,aggron,Evolves by level.
133
+ meditite,medicham,Evolves by level.
134
+ electrike,manectric,Evolves by level.
135
+ gulpin,swalot,Evolves by level.
136
+ carvanha,sharpedo,Evolves by level.
137
+ wailmer,wailord,Evolves by level.
138
+ numel,camerupt,Evolves by level.
139
+ spoink,grumpig,Evolves by level.
140
+ trapinch,vibrava,Evolves by level.
141
+ vibrava,flygon,Evolves by level.
142
+ cacnea,cacturne,Evolves by level.
143
+ swablu,altaria,Evolves by level.
144
+ barboach,whiscash,Evolves by level.
145
+ corphish,crawdaunt,Evolves by level.
146
+ baltoy,claydol,Evolves by level.
147
+ lileep,cradily,Evolves by level.
148
+ anorith,armaldo,Evolves by level.
149
+ shuppet,banette,Evolves by level.
150
+ duskull,dusclops,Evolves by level.
151
+ snorunt,glalie,Evolves by level.
152
+ spheal,sealeo,Evolves by level.
153
+ sealeo,walrein,Evolves by level.
154
+ bagon,shelgon,Evolves by level.
155
+ shelgon,salamence,Evolves by level.
156
+ beldum,metang,Evolves by level.
157
+ metang,metagross,Evolves by level.
158
+ turtwig,grotle,Evolves by level.
159
+ grotle,torterra,Evolves by level.
160
+ chimchar,monferno,Evolves by level.
161
+ monferno,infernape,Evolves by level.
162
+ piplup,prinplup,Evolves by level.
163
+ prinplup,empoleon,Evolves by level.
164
+ starly,staravia,Evolves by level.
165
+ staravia,staraptor,Evolves by level.
166
+ bidoof,bibarel,Evolves by level.
167
+ kricketot,kricketune,Evolves by level.
168
+ shinx,luxio,Evolves by level.
169
+ luxio,luxray,Evolves by level.
170
+ cranidos,rampardos,Evolves by level.
171
+ shieldon,bastiodon,Evolves by level.
172
+ burmy,mothim,Evolves by level. Male
173
+ burmy,wormadam,"Evolves by level. Female, in grass"
174
+ burmy,wormadam,"Evolves by level. Female, in caves"
175
+ burmy,wormadam,"Evolves by level. Female, in buildings"
176
+ combee,vespiquen,Evolves by level. Female
177
+ buizel,floatzel,Evolves by level.
178
+ cherubi,cherrim,Evolves by level.
179
+ shellos,gastrodon,Evolves by level.
180
+ drifloon,drifblim,Evolves by level.
181
+ glameow,purugly,Evolves by level.
182
+ stunky,skuntank,Evolves by level.
183
+ bronzor,bronzong,Evolves by level.
184
+ gible,gabite,Evolves by level.
185
+ gabite,garchomp,Evolves by level.
186
+ hippopotas,hippowdon,Evolves by level.
187
+ skorupi,drapion,Evolves by level.
188
+ croagunk,toxicroak,Evolves by level.
189
+ finneon,lumineon,Evolves by level.
190
+ snover,abomasnow,Evolves by level.
191
+ snivy,servine,Evolves by level.
192
+ servine,serperior,Evolves by level.
193
+ tepig,pignite,Evolves by level.
194
+ pignite,emboar,Evolves by level.
195
+ oshawott,dewott,Evolves by level.
196
+ dewott,samurott,Evolves by level.
197
+ dewott,"samurott
198
+ hisuian samurott",Evolves by level. in Legends: Arceus
199
+ patrat,watchog,Evolves by level.
200
+ lillipup,herdier,Evolves by level.
201
+ herdier,stoutland,Evolves by level.
202
+ purrloin,liepard,Evolves by level.
203
+ pidove,tranquill,Evolves by level.
204
+ tranquill,unfezant,Evolves by level.
205
+ blitzle,zebstrika,Evolves by level.
206
+ roggenrola,boldore,Evolves by level.
207
+ drilbur,excadrill,Evolves by level.
208
+ timburr,gurdurr,Evolves by level.
209
+ tympole,palpitoad,Evolves by level.
210
+ palpitoad,seismitoad,Evolves by level.
211
+ sewaddle,swadloon,Evolves by level.
212
+ venipede,whirlipede,Evolves by level.
213
+ whirlipede,scolipede,Evolves by level.
214
+ sandile,krokorok,Evolves by level.
215
+ krokorok,krookodile,Evolves by level.
216
+ darumaka,"darmanitan
217
+ standard mode",Evolves by level.
218
+ dwebble,crustle,Evolves by level.
219
+ scraggy,scrafty,Evolves by level.
220
+ yamask,cofagrigus,Evolves by level.
221
+ tirtouga,carracosta,Evolves by level.
222
+ archen,archeops,Evolves by level.
223
+ trubbish,garbodor,Evolves by level.
224
+ zorua,zoroark,Evolves by level.
225
+ zorua,zoroark,Evolves by level. in Legends: Arceus
226
+ gothita,gothorita,Evolves by level.
227
+ gothorita,gothitelle,Evolves by level.
228
+ solosis,duosion,Evolves by level.
229
+ duosion,reuniclus,Evolves by level.
230
+ ducklett,swanna,Evolves by level.
231
+ vanillite,vanillish,Evolves by level.
232
+ vanillish,vanilluxe,Evolves by level.
233
+ deerling,sawsbuck,Evolves by level.
234
+ foongus,amoonguss,Evolves by level.
235
+ frillish,jellicent,Evolves by level.
236
+ joltik,galvantula,Evolves by level.
237
+ ferroseed,ferrothorn,Evolves by level.
238
+ klink,klang,Evolves by level.
239
+ klang,klinklang,Evolves by level.
240
+ tynamo,eelektrik,Evolves by level.
241
+ elgyem,beheeyem,Evolves by level.
242
+ litwick,lampent,Evolves by level.
243
+ axew,fraxure,Evolves by level.
244
+ fraxure,haxorus,Evolves by level.
245
+ cubchoo,beartic,Evolves by level.
246
+ mienfoo,mienshao,Evolves by level.
247
+ golett,golurk,Evolves by level.
248
+ pawniard,bisharp,Evolves by level.
249
+ rufflet,braviary,Evolves by level.
250
+ rufflet,"braviary
251
+ hisuian braviary",Evolves by level. in Legends: Arceus
252
+ vullaby,mandibuzz,Evolves by level.
253
+ deino,zweilous,Evolves by level.
254
+ zweilous,hydreigon,Evolves by level.
255
+ larvesta,volcarona,Evolves by level.
256
+ chespin,quilladin,Evolves by level.
257
+ quilladin,chesnaught,Evolves by level.
258
+ fennekin,braixen,Evolves by level.
259
+ braixen,delphox,Evolves by level.
260
+ froakie,frogadier,Evolves by level.
261
+ frogadier,greninja,Evolves by level.
262
+ bunnelby,diggersby,Evolves by level.
263
+ fletchling,fletchinder,Evolves by level.
264
+ fletchinder,talonflame,Evolves by level.
265
+ scatterbug,spewpa,Evolves by level.
266
+ spewpa,vivillon,Evolves by level.
267
+ litleo,pyroar,Evolves by level.
268
+ flab�b�,floette,Evolves by level.
269
+ skiddo,gogoat,Evolves by level.
270
+ pancham,pangoro,Evolves by level. Dark type Pokémon in party
271
+ espurr,"meowstic
272
+ male",Evolves by level. Male
273
+ espurr,"meowstic
274
+ female",Evolves by level. Female
275
+ honedge,doublade,Evolves by level.
276
+ inkay,malamar,Evolves by level. holding console upside down
277
+ binacle,barbaracle,Evolves by level.
278
+ skrelp,dragalge,Evolves by level.
279
+ clauncher,clawitzer,Evolves by level.
280
+ tyrunt,tyrantrum,Evolves by level. Daytime
281
+ amaura,aurorus,Evolves by level. Nighttime
282
+ goomy,sliggoo,Evolves by level.
283
+ sliggoo,goodra,Evolves by level. during rain
284
+ goomy,"sliggoo
285
+ hisuian sliggoo",Evolves by level. in Legends: Arceus
286
+ sliggoo,goodra,"Evolves by level. during rain, in Legends: Arceus"
287
+ bergmite,avalugg,Evolves by level.
288
+ bergmite,"avalugg
289
+ hisuian avalugg",Evolves by level. in Legends: Arceus
290
+ noibat,noivern,Evolves by level.
291
+ rowlet,dartrix,Evolves by level.
292
+ dartrix,decidueye,Evolves by level.
293
+ dartrix,"decidueye
294
+ hisuian decidueye",Evolves by level. in Legends: Arceus
295
+ litten,torracat,Evolves by level.
296
+ torracat,incineroar,Evolves by level.
297
+ popplio,brionne,Evolves by level.
298
+ brionne,primarina,Evolves by level.
299
+ pikipek,trumbeak,Evolves by level.
300
+ trumbeak,toucannon,Evolves by level.
301
+ yungoos,gumshoos,Evolves by level. Daytime
302
+ grubbin,charjabug,Evolves by level.
303
+ cutiefly,ribombee,Evolves by level.
304
+ rockruff,"lycanroc
305
+ midday form",Evolves by level. Daytime
306
+ rockruff,"lycanroc
307
+ midnight form",Evolves by level. Nighttime
308
+ rockruff,lycanroc,Evolves by level. Dusk
309
+ mareanie,toxapex,Evolves by level.
310
+ mudbray,mudsdale,Evolves by level.
311
+ dewpider,araquanid,Evolves by level.
312
+ fomantis,lurantis,Evolves by level. Daytime
313
+ morelull,shiinotic,Evolves by level.
314
+ salandit,salazzle,Evolves by level. Female
315
+ stufful,bewear,Evolves by level.
316
+ bounsweet,steenee,Evolves by level.
317
+ wimpod,golisopod,Evolves by level.
318
+ sandygast,palossand,Evolves by level.
319
+ jangmo-o,hakamo-o,Evolves by level.
320
+ hakamo-o,kommo-o,Evolves by level.
321
+ cosmog,cosmoem,Evolves by level.
322
+ cosmoem,solgaleo,Evolves by level. in Pokémon Sun or Ultra Sun
323
+ cosmoem,lunala,Evolves by level. in Pokémon Moon or Ultra Moon
324
+ grookey,thwackey,Evolves by level.
325
+ thwackey,rillaboom,Evolves by level.
326
+ scorbunny,raboot,Evolves by level.
327
+ raboot,cinderace,Evolves by level.
328
+ sobble,drizzile,Evolves by level.
329
+ drizzile,inteleon,Evolves by level.
330
+ blipbug,dottler,Evolves by level.
331
+ dottler,orbeetle,Evolves by level.
332
+ rookidee,corvisquire,Evolves by level.
333
+ corvisquire,corviknight,Evolves by level.
334
+ skwovet,greedent,Evolves by level.
335
+ nickit,thievul,Evolves by level.
336
+ wooloo,dubwool,Evolves by level.
337
+ chewtle,drednaw,Evolves by level.
338
+ yamper,boltund,Evolves by level.
339
+ gossifleur,eldegoss,Evolves by level.
340
+ sizzlipede,centiskorch,Evolves by level.
341
+ rolycoly,carkol,Evolves by level.
342
+ carkol,coalossal,Evolves by level.
343
+ arrokuda,barraskewda,Evolves by level.
344
+ corsola,cursola,Evolves by level.
345
+ impidimp,morgrem,Evolves by level.
346
+ morgrem,grimmsnarl,Evolves by level.
347
+ hatenna,hattrem,Evolves by level.
348
+ hattrem,hatterene,Evolves by level.
349
+ cufant,copperajah,Evolves by level.
350
+ toxel,"toxtricity
351
+ amped form",Evolves by level. with an amped Nature
352
+ toxel,"toxtricity
353
+ low key form",Evolves by level. with a low key Nature
354
+ silicobra,sandaconda,Evolves by level.
355
+ dreepy,drakloak,Evolves by level.
356
+ drakloak,dragapult,Evolves by level.
357
+ sprigatito,floragato,Evolves by level.
358
+ floragato,meowscarada,Evolves by level.
359
+ fuecoco,crocalor,Evolves by level.
360
+ crocalor,skeledirge,Evolves by level.
361
+ quaxly,quaxwell,Evolves by level.
362
+ quaxwell,quaquaval,Evolves by level.
363
+ lechonk,"oinkologne
364
+ male",Evolves by level. Male
365
+ lechonk,"oinkologne
366
+ female",Evolves by level. Female
367
+ tarountula,spidops,Evolves by level.
368
+ nymble,lokix,Evolves by level.
369
+ greavard,houndstone,Evolves by level. Nighttime
370
+ flittle,espathra,Evolves by level.
371
+ wiglett,wugtrio,Evolves by level.
372
+ finizen,"palafin
373
+ zero form",Evolves by level. while in multiplayer
374
+ smoliv,dolliv,Evolves by level.
375
+ dolliv,arboliva,Evolves by level.
376
+ varoom,revavroom,Evolves by level.
377
+ tandemaus,"maushold
378
+ family of three",Evolves by level. rare
379
+ tandemaus,"maushold
380
+ family of four",Evolves by level.
381
+ frigibax,arctibax,Evolves by level.
382
+ arctibax,baxcalibur,Evolves by level.
383
+ pawmi,pawmo,Evolves by level.
384
+ wattrel,kilowattrel,Evolves by level.
385
+ nacli,naclstack,Evolves by level.
386
+ naclstack,garganacl,Evolves by level.
387
+ glimmet,glimmora,Evolves by level.
388
+ shroodle,grafaiai,Evolves by level.
389
+ fidough,dachsbun,Evolves by level.
390
+ maschiff,mabosstiff,Evolves by level.
391
+ tinkatink,tinkatuff,Evolves by level.
392
+ tinkatuff,tinkaton,Evolves by level.
393
+ toedscool,toedscruel,Evolves by level.
394
+ alolan rattata,alolan raticate,Evolves by level. Nighttime
395
+ alolan diglett,alolan dugtrio,Evolves by level.
396
+ galarian meowth,perrserker,Evolves by level.
397
+ alolan geodude,alolan graveler,Evolves by level.
398
+ galarian ponyta,galarian rapidash,Evolves by level.
399
+ alolan grimer,alolan muk,Evolves by level.
400
+ galarian mr. mime,mr. rime,Evolves by level.
401
+ paldean wooper,clodsire,Evolves by level.
402
+ galarian zigzagoon,galarian linoone,Evolves by level.
403
+ galarian linoone,obstagoon,Evolves by level. Nighttime
404
+ plant cloak,mothim,Evolves by level. Male
405
+ plant cloak,plant cloak,"Evolves by level. Female, in grass"
406
+ sandy cloak,sandy cloak,"Evolves by level. Female, in caves"
407
+ trash cloak,trash cloak,"Evolves by level. Female, in buildings"
408
+ hisuian zorua,hisuian zoroark,Evolves by level. in Legends: Arceus
409
+ hisuian sliggoo,hisuian goodra,"Evolves by level. during rain, in Legends: Arceus"
410
+ own tempo rockruff,dusk form,Evolves by level. Dusk
411
+ galarian corsola,cursola,Evolves by level.
whatever stuff is neede/special.csv ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ rattata,raticate,Evolves by special condition: Nighttime
2
+ pikachu,raichu,"Evolves by special condition: use Thunder Stone, outside Alola"
3
+ pikachu,"raichu
4
+ alolan raichu","Evolves by special condition: use Thunder Stone, in Alola"
5
+ primeape,annihilape,Evolves by special condition: Use Rage Fist 20 times
6
+ magneton,magnezone,"Evolves by special condition: use Thunder Stone, in Gen 8+, or level up in a Magnetic Field area"
7
+ exeggcute,exeggutor,"Evolves by special condition: use Leaf Stone, outside Alola"
8
+ exeggcute,"exeggutor
9
+ alolan exeggutor","Evolves by special condition: use Leaf Stone, in Alola"
10
+ cubone,marowak,Evolves by special condition: outside Alola
11
+ cubone,"marowak
12
+ alolan marowak","Evolves by special condition: Nighttime, in Alola"
13
+ tyrogue,hitmonlee,Evolves by special condition: Attack > Defense
14
+ tyrogue,hitmonchan,Evolves by special condition: Attack < Defense
15
+ tyrogue,hitmontop,Evolves by special condition: Attack = Defense
16
+ lickitung,lickilicky,Evolves by special condition: after Rollout learned
17
+ koffing,weezing,Evolves by special condition: outside Galar
18
+ koffing,"weezing
19
+ galarian weezing",Evolves by special condition: in Galar
20
+ happiny,chansey,"Evolves by special condition: hold Oval Stone, Daytime"
21
+ tangela,tangrowth,Evolves by special condition: after Ancient Power learned
22
+ mime jr.,mr. mime,"Evolves by special condition: after Mimic learned, outside Galar"
23
+ mime jr.,"mr. mime
24
+ galarian mr. mime","Evolves by special condition: after Mimic learned, in Galar"
25
+ eevee,leafeon,"Evolves by special condition: use Leaf Stone, or level up near a Mossy Rock"
26
+ eevee,glaceon,"Evolves by special condition: use Ice Stone, or level up near an Icy Rock"
27
+ cyndaquil,quilava,Evolves by special condition: or Level 17 in Legends: Arceus
28
+ quilava,"typhlosion
29
+ hisuian typhlosion",Evolves by special condition: in Legends: Arceus
30
+ bonsly,sudowoodo,Evolves by special condition: after Mimic learned
31
+ aipom,ambipom,Evolves by special condition: after Double Hit learned
32
+ yanma,yanmega,Evolves by special condition: after Ancient Power learned
33
+ gligar,gliscor,"Evolves by special condition: hold Razor Fang, Nighttime"
34
+ sneasel,weavile,"Evolves by special condition: hold Razor Claw, Nighttime"
35
+ sneasel,sneasler,"Evolves by special condition: use Razor Claw, Daytime"
36
+ ursaring,ursaluna,"Evolves by special condition: use Peat Block, under a full moon, in Legends: Arceus"
37
+ piloswine,mamoswine,Evolves by special condition: after Ancient Power learned
38
+ mantyke,mantine,Evolves by special condition: with Remoraid in party
39
+ linoone,obstagoon,Evolves by special condition: Nighttime
40
+ wurmple,silcoon,Evolves by special condition: random based on personality
41
+ wurmple,cascoon,Evolves by special condition: random based on personality
42
+ kirlia,gallade,"Evolves by special condition: use Dawn Stone, Male"
43
+ nincada,shedinja,"Evolves by special condition: empty spot in party, Pokéball in bag"
44
+ nosepass,probopass,Evolves by special condition: level up in a Magnetic Field area
45
+ feebas,milotic,"Evolves by special condition: trade holding Prism Scale, or level up with max Beauty"
46
+ snorunt,froslass,"Evolves by special condition: use Dawn Stone, Female"
47
+ burmy,mothim,Evolves by special condition: Male
48
+ burmy,wormadam,"Evolves by special condition: Female, in grass"
49
+ burmy,wormadam,"Evolves by special condition: Female, in caves"
50
+ burmy,wormadam,"Evolves by special condition: Female, in buildings"
51
+ combee,vespiquen,Evolves by special condition: Female
52
+ dewott,"samurott
53
+ hisuian samurott",Evolves by special condition: in Legends: Arceus
54
+ petilil,"lilligant
55
+ hisuian lilligant","Evolves by special condition: use Sun Stone, in Legends: Arceus"
56
+ yamask,runerigus,Evolves by special condition: near Dusty Bowl
57
+ zorua,zoroark,Evolves by special condition: in Legends: Arceus
58
+ bisharp,kingambit,Evolves by special condition: defeat 3 Bisharp that are holding Leader's Crest
59
+ rufflet,"braviary
60
+ hisuian braviary",Evolves by special condition: in Legends: Arceus
61
+ pancham,pangoro,Evolves by special condition: Dark type Pokémon in party
62
+ espurr,"meowstic
63
+ male",Evolves by special condition: Male
64
+ espurr,"meowstic
65
+ female",Evolves by special condition: Female
66
+ inkay,malamar,Evolves by special condition: holding console upside down
67
+ tyrunt,tyrantrum,Evolves by special condition: Daytime
68
+ amaura,aurorus,Evolves by special condition: Nighttime
69
+ sliggoo,goodra,Evolves by special condition: during rain
70
+ goomy,"sliggoo
71
+ hisuian sliggoo",Evolves by special condition: in Legends: Arceus
72
+ sliggoo,goodra,"Evolves by special condition: during rain, in Legends: Arceus"
73
+ bergmite,"avalugg
74
+ hisuian avalugg",Evolves by special condition: in Legends: Arceus
75
+ dartrix,"decidueye
76
+ hisuian decidueye",Evolves by special condition: in Legends: Arceus
77
+ yungoos,gumshoos,Evolves by special condition: Daytime
78
+ charjabug,vikavolt,"Evolves by special condition: use Thunder Stone, in Gen 8, or level up in a Magnetic Field area"
79
+ crabrawler,crabominable,"Evolves by special condition: use Ice Stone, or at Mount Lanakila in Alola"
80
+ rockruff,"lycanroc
81
+ midday form",Evolves by special condition: Daytime
82
+ rockruff,"lycanroc
83
+ midnight form",Evolves by special condition: Nighttime
84
+ rockruff,lycanroc,Evolves by special condition: Dusk
85
+ fomantis,lurantis,Evolves by special condition: Daytime
86
+ salandit,salazzle,Evolves by special condition: Female
87
+ steenee,tsareena,Evolves by special condition: after Stomp learned
88
+ cosmoem,solgaleo,Evolves by special condition: in Pokémon Sun or Ultra Sun
89
+ cosmoem,lunala,Evolves by special condition: in Pokémon Moon or Ultra Moon
90
+ poipole,naganadel,Evolves by special condition: after Dragon Pulse learned
91
+ meltan,melmetal,"Evolves by special condition: Pokémon GO only, 400 Meltan Candies"
92
+ milcery,alcremie,Evolves by special condition: spin around holding Sweet
93
+ farfetch'd,sirfetch'd,Evolves by special condition: achieve 3 critical hits in one battle
94
+ toxel,"toxtricity
95
+ amped form",Evolves by special condition: with an amped Nature
96
+ toxel,"toxtricity
97
+ low key form",Evolves by special condition: with a low key Nature
98
+ clobbopus,grapploct,Evolves by special condition: after Taunt learned
99
+ kubfu,"urshifu
100
+ single strike style","Evolves by special condition: use Scroll Of Darkness, or in Tower of Darkness in Galar"
101
+ kubfu,"urshifu
102
+ rapid strike style","Evolves by special condition: use Scroll Of Waters, or in Tower of Water in Galar"
103
+ stantler,wyrdeer,Evolves by special condition: use Psyshield Bash 20 times in Agile Style
104
+ basculin,basculegion,"Evolves by special condition: Male, receive 294 recoil damage in battle"
105
+ basculin,basculegion,"Evolves by special condition: Female, receive 294 recoil damage in battle"
106
+ qwilfish,overqwil,Evolves by special condition: use Barb Barrage 20 times in Strong Style
107
+ girafarig,farigiraf,Evolves by special condition: after Twin Beam learned
108
+ dunsparce,"dudunsparce
109
+ two-segment form",Evolves by special condition: after Hyper Drill learned
110
+ dunsparce,"dudunsparce
111
+ three-segment form","Evolves by special condition: after Hyper Drill learned, rare"
112
+ lechonk,"oinkologne
113
+ male",Evolves by special condition: Male
114
+ lechonk,"oinkologne
115
+ female",Evolves by special condition: Female
116
+ rellor,rabsca,"Evolves by special condition: walk 1,000 steps in Let's Go mode"
117
+ greavard,houndstone,Evolves by special condition: Nighttime
118
+ finizen,"palafin
119
+ zero form",Evolves by special condition: while in multiplayer
120
+ tandemaus,"maushold
121
+ family of three",Evolves by special condition: rare
122
+ pawmo,pawmot,"Evolves by special condition: walk 1,000 steps in Let's Go mode"
123
+ bramblin,brambleghast,"Evolves by special condition: walk 1,000 steps in Let's Go mode"
124
+ gimmighoul,gholdengo,Evolves by special condition: collect 999 Coins from Roaming Form
125
+ alolan rattata,alolan raticate,Evolves by special condition: Nighttime
126
+ hisuian sneasel,sneasler,"Evolves by special condition: use Razor Claw, Daytime"
127
+ galarian linoone,obstagoon,Evolves by special condition: Nighttime
128
+ plant cloak,mothim,Evolves by special condition: Male
129
+ plant cloak,plant cloak,"Evolves by special condition: Female, in grass"
130
+ sandy cloak,sandy cloak,"Evolves by special condition: Female, in caves"
131
+ trash cloak,trash cloak,"Evolves by special condition: Female, in buildings"
132
+ galarian yamask,runerigus,Evolves by special condition: near Dusty Bowl
133
+ hisuian zorua,hisuian zoroark,Evolves by special condition: in Legends: Arceus
134
+ hisuian sliggoo,hisuian goodra,"Evolves by special condition: during rain, in Legends: Arceus"
135
+ own tempo rockruff,dusk form,Evolves by special condition: Dusk
136
+ galarian farfetch'd,sirfetch'd,Evolves by special condition: achieve 3 critical hits in one battle
137
+ white-striped form,male,"Evolves by special condition: Male, receive 294 recoil damage in battle"
138
+ white-striped form,female,"Evolves by special condition: Female, receive 294 recoil damage in battle"
139
+ hisuian qwilfish,overqwil,Evolves by special condition: use Barb Barrage 20 times in Strong Style
140
+ chest form,gholdengo,Evolves by special condition: collect 999 Coins from Roaming Form
whatever stuff is neede/stone.csv ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ pikachu,raichu,"Evolves by stone: Thunder Stone, outside Alola"
2
+ pikachu,"raichu
3
+ alolan raichu","Evolves by stone: Thunder Stone, in Alola"
4
+ sandshrew,sandslash,Evolves by stone: Ice Stone
5
+ nidorina,nidoqueen,Evolves by stone: Moon Stone
6
+ nidorino,nidoking,Evolves by stone: Moon Stone
7
+ clefairy,clefable,Evolves by stone: Moon Stone
8
+ vulpix,ninetales,Evolves by stone: Fire Stone
9
+ vulpix,ninetales,Evolves by stone: Ice Stone
10
+ jigglypuff,wigglytuff,Evolves by stone: Moon Stone
11
+ gloom,vileplume,Evolves by stone: Leaf Stone
12
+ gloom,bellossom,Evolves by stone: Sun Stone
13
+ growlithe,arcanine,Evolves by stone: Fire Stone
14
+ growlithe,arcanine,Evolves by stone: Fire Stone
15
+ poliwhirl,poliwrath,Evolves by stone: Water Stone
16
+ weepinbell,victreebel,Evolves by stone: Leaf Stone
17
+ slowpoke,slowbro,Evolves by stone: Galarica Cuff
18
+ slowpoke,slowking,Evolves by stone: Galarica Wreath
19
+ magneton,magnezone,"Evolves by stone: Thunder Stone, in Gen 8+, or level up in a Magnetic Field area"
20
+ shellder,cloyster,Evolves by stone: Water Stone
21
+ voltorb,electrode,Evolves by stone: Leaf Stone
22
+ exeggcute,exeggutor,"Evolves by stone: Leaf Stone, outside Alola"
23
+ exeggcute,"exeggutor
24
+ alolan exeggutor","Evolves by stone: Leaf Stone, in Alola"
25
+ staryu,starmie,Evolves by stone: Water Stone
26
+ scyther,kleavor,Evolves by stone: Black Augurite
27
+ eevee,vaporeon,Evolves by stone: Water Stone
28
+ eevee,jolteon,Evolves by stone: Thunder Stone
29
+ eevee,flareon,Evolves by stone: Fire Stone
30
+ eevee,leafeon,"Evolves by stone: Leaf Stone, or level up near a Mossy Rock"
31
+ eevee,glaceon,"Evolves by stone: Ice Stone, or level up near an Icy Rock"
32
+ togetic,togekiss,Evolves by stone: Shiny Stone
33
+ sunkern,sunflora,Evolves by stone: Sun Stone
34
+ murkrow,honchkrow,Evolves by stone: Dusk Stone
35
+ misdreavus,mismagius,Evolves by stone: Dusk Stone
36
+ sneasel,sneasler,"Evolves by stone: Razor Claw, Daytime"
37
+ ursaring,ursaluna,"Evolves by stone: Peat Block, under a full moon, in Legends: Arceus"
38
+ lombre,ludicolo,Evolves by stone: Water Stone
39
+ nuzleaf,shiftry,Evolves by stone: Leaf Stone
40
+ kirlia,gallade,"Evolves by stone: Dawn Stone, Male"
41
+ skitty,delcatty,Evolves by stone: Moon Stone
42
+ roselia,roserade,Evolves by stone: Shiny Stone
43
+ snorunt,froslass,"Evolves by stone: Dawn Stone, Female"
44
+ pansage,simisage,Evolves by stone: Leaf Stone
45
+ pansear,simisear,Evolves by stone: Fire Stone
46
+ panpour,simipour,Evolves by stone: Water Stone
47
+ munna,musharna,Evolves by stone: Moon Stone
48
+ cottonee,whimsicott,Evolves by stone: Sun Stone
49
+ petilil,lilligant,Evolves by stone: Sun Stone
50
+ petilil,"lilligant
51
+ hisuian lilligant","Evolves by stone: Sun Stone, in Legends: Arceus"
52
+ darumaka,darmanitan,Evolves by stone: Ice Stone
53
+ minccino,cinccino,Evolves by stone: Shiny Stone
54
+ eelektrik,eelektross,Evolves by stone: Thunder Stone
55
+ lampent,chandelure,Evolves by stone: Dusk Stone
56
+ floette,florges,Evolves by stone: Shiny Stone
57
+ doublade,"aegislash
58
+ shield forme",Evolves by stone: Dusk Stone
59
+ helioptile,heliolisk,Evolves by stone: Sun Stone
60
+ charjabug,vikavolt,"Evolves by stone: Thunder Stone, in Gen 8, or level up in a Magnetic Field area"
61
+ crabrawler,crabominable,"Evolves by stone: Ice Stone, or at Mount Lanakila in Alola"
62
+ applin,flapple,Evolves by stone: Tart Apple
63
+ applin,appletun,Evolves by stone: Sweet Apple
64
+ sinistea,polteageist,Evolves by stone: Cracked Pot
65
+ kubfu,"urshifu
66
+ single strike style","Evolves by stone: Scroll Of Darkness, or in Tower of Darkness in Galar"
67
+ kubfu,"urshifu
68
+ rapid strike style","Evolves by stone: Scroll Of Waters, or in Tower of Water in Galar"
69
+ capsakid,scovillain,Evolves by stone: Fire Stone
70
+ tadbulb,bellibolt,Evolves by stone: Thunder Stone
71
+ cetoddle,cetitan,Evolves by stone: Ice Stone
72
+ charcadet,armarouge,Evolves by stone: Auspicious Armor
73
+ charcadet,ceruledge,Evolves by stone: Malicious Armor
74
+ alolan sandshrew,alolan sandslash,Evolves by stone: Ice Stone
75
+ alolan vulpix,alolan ninetales,Evolves by stone: Ice Stone
76
+ hisuian growlithe,hisuian arcanine,Evolves by stone: Fire Stone
77
+ galarian slowpoke,galarian slowbro,Evolves by stone: Galarica Cuff
78
+ galarian slowpoke,galarian slowking,Evolves by stone: Galarica Wreath
79
+ hisuian voltorb,hisuian electrode,Evolves by stone: Leaf Stone
80
+ hisuian sneasel,sneasler,"Evolves by stone: Razor Claw, Daytime"
81
+ galarian darumaka,galarian standard mode,Evolves by stone: Ice Stone
whatever stuff is neede/thing that generates pokemons csvs from the other one.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ with open('input_pkmn_stats_and_evolutions.xlsx - pkmn_stats.csv', 'r') as input_pkmn_stats_and_evolutions: aoias = list(csv.reader(input_pkmn_stats_and_evolutions, delimiter=","))
3
+ evolvable_pokemons = [i[11].lower() for i in aoias if i[11]!=''][1:]
4
+ all_pokemons = [i[0].lower() for i in aoias][1:]
5
+ with open('evolvable pokemons.txt', 'w',newline='') as idk:idk.write(','.join(evolvable_pokemons))
6
+ with open('all pokemons.txt', 'w',newline='') as idk:idk.write(','.join(all_pokemons))
7
+
8
+ alalalala = []
9
+ def chungite(filea, stuff = None):
10
+ global alalalala
11
+ with open(filea, 'r') as stone: stone = list(csv.reader(stone, delimiter=","))
12
+ if stone[0][0] == 'Evolving from': stone=stone[1:]
13
+ for i in range(len(stone)):
14
+ stone[i][0] = stone[i][0].lower()
15
+ stone[i][1] = stone[i][1].lower()
16
+ if stuff is not None: stone[i][2] = f'{stuff}{stone[i][2]}' if stone[i][2]!='' else stuff
17
+ if '\n' in stone[i][0]:
18
+ k=stone[i].copy()
19
+ stone[i][0] = stone[i][0].split('\n')[0]
20
+ k[0]=k[0].split('\n')[1]
21
+ if '\n' in stone[i][1] :
22
+ stone[i][1] = stone[i][1].split('\n')[0]
23
+ k[1]=k[1].split('\n')[1]
24
+ stone.append(k)
25
+ alalalala.extend(stone)
26
+ with open(filea, 'w', newline='') as news:
27
+ damn = csv.writer(news)
28
+ damn.writerows(stone)
29
+
30
+ chungite('level.csv', 'Evolves by level. ')
31
+ chungite('stone.csv', 'Evolves by stone: ')
32
+ chungite('trading.csv', 'Evolves by trading. ')
33
+ chungite('friendship.csv', 'Evolves by friendship. ')
34
+ chungite('special.csv', 'Evolves by special condition: ')
35
+
36
+ with open('all.csv', 'w', newline='') as news:
37
+ damn = csv.writer(news)
38
+ damn.writerows(alalalala)
whatever stuff is neede/trading.csv ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ poliwhirl,politoed,Evolves by trading. Kings Rock
2
+ kadabra,alakazam,Evolves by trading.
3
+ machoke,machamp,Evolves by trading.
4
+ graveler,golem,Evolves by trading.
5
+ graveler,golem,Evolves by trading.
6
+ slowpoke,slowking,Evolves by trading. Kings Rock
7
+ haunter,gengar,Evolves by trading.
8
+ onix,steelix,Evolves by trading. Metal Coat
9
+ rhydon,rhyperior,Evolves by trading. Protector
10
+ seadra,kingdra,Evolves by trading. Dragon Scale
11
+ scyther,scizor,Evolves by trading. Metal Coat
12
+ electabuzz,electivire,Evolves by trading. Electirizer
13
+ magmar,magmortar,Evolves by trading. Magmarizer
14
+ porygon,porygon2,Evolves by trading. Upgrade
15
+ porygon2,porygon-z,Evolves by trading. Dubious Disc
16
+ feebas,milotic,"Evolves by trading. Prism Scale, or level up with max Beauty"
17
+ dusclops,dusknoir,Evolves by trading. Reaper Cloth
18
+ clamperl,huntail,Evolves by trading. Deep Sea Tooth
19
+ clamperl,gorebyss,Evolves by trading. Deep Sea Scale
20
+ boldore,gigalith,Evolves by trading.
21
+ gurdurr,conkeldurr,Evolves by trading.
22
+ karrablast,escavalier,Evolves by trading. Trade with Shelmet
23
+ shelmet,accelgor,Evolves by trading. Trade with Karrablast
24
+ spritzee,aromatisse,Evolves by trading. Sachet
25
+ swirlix,slurpuff,Evolves by trading. Whipped Dream
26
+ phantump,trevenant,Evolves by trading.
27
+ pumpkaboo,gourgeist,Evolves by trading.
28
+ alolan graveler,alolan golem,Evolves by trading.
29
+ average size,average size,Evolves by trading.