From c30dee39261f6787d5df6ee342283c7c0ed57301 Mon Sep 17 00:00:00 2001 From: BrunoDefante <30967285+BrunoDefante@users.noreply.github.com> Date: Thu, 14 Feb 2019 16:52:47 -0200 Subject: [PATCH 1/2] Teste Pokemon back-end --- rest-pokemon/WebContent/META-INF/MANIFEST.MF | 3 + rest-pokemon/WebContent/WEB-INF/web.xml | 26 +++ rest-pokemon/pom.xml | 76 ++++++ .../src/br/bruno/pokemon/config/DBConfig.java | 16 ++ .../src/br/bruno/pokemon/dao/PokeDao.java | 78 +++++++ .../src/br/bruno/pokemon/entity/Pokemon.java | 217 ++++++++++++++++++ .../br/bruno/pokemon/rest/PokeService.java | 45 ++++ .../br/bruno/pokemon/config/DBConfig.class | Bin 0 -> 781 bytes .../br/bruno/pokemon/dao/PokeDao.class | Bin 0 -> 3965 bytes .../br/bruno/pokemon/entity/Pokemon.class | Bin 0 -> 6176 bytes .../br/bruno/pokemon/rest/PokeService.class | Bin 0 -> 1661 bytes .../classes/junit/test/TestePokemon.class | Bin 0 -> 1410 bytes .../web-resources/META-INF/MANIFEST.MF | 5 + .../com.pokemon/rest-pokemon/pom.properties | 7 + .../maven/com.pokemon/rest-pokemon/pom.xml | 76 ++++++ .../test/junit/test/TestePokemon.java | 29 +++ 16 files changed, 578 insertions(+) create mode 100644 rest-pokemon/WebContent/META-INF/MANIFEST.MF create mode 100644 rest-pokemon/WebContent/WEB-INF/web.xml create mode 100644 rest-pokemon/pom.xml create mode 100644 rest-pokemon/src/br/bruno/pokemon/config/DBConfig.java create mode 100644 rest-pokemon/src/br/bruno/pokemon/dao/PokeDao.java create mode 100644 rest-pokemon/src/br/bruno/pokemon/entity/Pokemon.java create mode 100644 rest-pokemon/src/br/bruno/pokemon/rest/PokeService.java create mode 100644 rest-pokemon/target/classes/br/bruno/pokemon/config/DBConfig.class create mode 100644 rest-pokemon/target/classes/br/bruno/pokemon/dao/PokeDao.class create mode 100644 rest-pokemon/target/classes/br/bruno/pokemon/entity/Pokemon.class create mode 100644 rest-pokemon/target/classes/br/bruno/pokemon/rest/PokeService.class create mode 100644 rest-pokemon/target/classes/junit/test/TestePokemon.class create mode 100644 rest-pokemon/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF create mode 100644 rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.properties create mode 100644 rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.xml create mode 100644 rest-pokemon/test/junit/test/TestePokemon.java diff --git a/rest-pokemon/WebContent/META-INF/MANIFEST.MF b/rest-pokemon/WebContent/META-INF/MANIFEST.MF new file mode 100644 index 00000000..5e949512 --- /dev/null +++ b/rest-pokemon/WebContent/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Class-Path: + diff --git a/rest-pokemon/WebContent/WEB-INF/web.xml b/rest-pokemon/WebContent/WEB-INF/web.xml new file mode 100644 index 00000000..fb6706ad --- /dev/null +++ b/rest-pokemon/WebContent/WEB-INF/web.xml @@ -0,0 +1,26 @@ + + + rest-pokemon + + index.html + + + + + Jersey REST Service + org.glassfish.jersey.servlet.ServletContainer + + jersey.config.server.provider.packages + br.bruno.pokemon.rest + + + com.sun.jersey.api.json.POJOMappingFeature + true + + 1 + + + Jersey REST Service + /rest/* + + \ No newline at end of file diff --git a/rest-pokemon/pom.xml b/rest-pokemon/pom.xml new file mode 100644 index 00000000..9dc27e90 --- /dev/null +++ b/rest-pokemon/pom.xml @@ -0,0 +1,76 @@ + + 4.0.0 + com.pokemon + rest-pokemon + 0.0.1-SNAPSHOT + war + + src + + + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + maven-war-plugin + 3.2.1 + + WebContent + + + + + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.22.1 + + + + org.glassfish.jersey.media + jersey-media-moxy + 2.22.1 + + + + org.glassfish.jersey.core + jersey-server + 2.22.1 + + + + commons-codec + commons-codec + 1.10 + + + + mysql + mysql-connector-java + 5.1.38 + + + + io.rest-assured + rest-assured + 3.0.3 + + + + junit + junit + 4.12 + test + + + + + + \ No newline at end of file diff --git a/rest-pokemon/src/br/bruno/pokemon/config/DBConfig.java b/rest-pokemon/src/br/bruno/pokemon/config/DBConfig.java new file mode 100644 index 00000000..17a10df0 --- /dev/null +++ b/rest-pokemon/src/br/bruno/pokemon/config/DBConfig.java @@ -0,0 +1,16 @@ +package br.bruno.pokemon.config; + +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.SQLException; + +public class DBConfig { + + public static Connection getConnection() throws SQLException, ClassNotFoundException { + Class.forName("com.mysql.jdbc.Driver"); + return DriverManager.getConnection("jdbc:mysql://localhost:3306/db_pokemon", "root", ""); + + + + } +} diff --git a/rest-pokemon/src/br/bruno/pokemon/dao/PokeDao.java b/rest-pokemon/src/br/bruno/pokemon/dao/PokeDao.java new file mode 100644 index 00000000..bdcade15 --- /dev/null +++ b/rest-pokemon/src/br/bruno/pokemon/dao/PokeDao.java @@ -0,0 +1,78 @@ +package br.bruno.pokemon.dao; + +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.util.ArrayList; +import java.util.List; + +import br.bruno.pokemon.config.DBConfig; +import br.bruno.pokemon.entity.Pokemon; + +public class PokeDao { + + public List buscarPokemonPaginado(String searchName, String type, int page, int size) throws Exception { + Pokemon pokemon = null; + List lista = new ArrayList<>(); + Connection conexao = DBConfig.getConnection(); + String sql = null; + PreparedStatement statement; + if (type != null) { + sql = "SELECT * FROM tb_pokemon WHERE type_1 = ? "; + statement = conexao.prepareStatement(sql); + statement.setString(1, type); + } else if (searchName != null) { + sql = "SELECT * FROM tb_pokemon WHERE nome = ?"; + statement = conexao.prepareStatement(sql); + statement.setString(1, searchName); + } else { + sql = "SELECT * FROM tb_pokemon"; + statement = conexao.prepareStatement(sql); + } + + ResultSet rs = statement.executeQuery(); + + while (rs.next()) { + pokemon = new Pokemon(); + + pokemon.setCodPokemon(rs.getInt("cod_pokemon")); + pokemon.setNome(rs.getString("nome")); + pokemon.setPokedexNumber(rs.getInt("pokedex_number")); + pokemon.setImgName(rs.getString("Img_name")); + pokemon.setGeneration(rs.getInt("generation")); + pokemon.setEvolutionStage(rs.getString("evolution_stage")); + pokemon.setEvolved(rs.getInt("evolved")); + pokemon.setFamilyId(rs.getString("family_id")); + pokemon.setCrossGen(rs.getInt("cross_gen")); + pokemon.setType1(rs.getString("type_1")); + pokemon.setType2(rs.getString("type_2")); + pokemon.setWeather1(rs.getString("weather_1")); + pokemon.setWeather2(rs.getString("weather_2")); + pokemon.setStatTotal(rs.getInt("stat_total")); + pokemon.setAtk(rs.getInt("ATK")); + pokemon.setDef(rs.getInt("DEF")); + pokemon.setSta(rs.getInt("STA")); + pokemon.setLegendary(rs.getInt("legendary")); + pokemon.setAquireable(rs.getInt("aquireable")); + pokemon.setSpawns(rs.getInt("spawns")); + pokemon.setRegional(rs.getInt("regional")); + pokemon.setRaidable(rs.getInt("raidable")); + pokemon.setHatchable(rs.getInt("hatchable")); + pokemon.setShiny(rs.getInt("shiny")); + pokemon.setNest(rs.getInt("nest")); + pokemon.setNeww(rs.getInt("new")); + pokemon.setNotGettable(rs.getInt("not_gettable")); + pokemon.setFutureEvolve(rs.getInt("Future_Evolve")); + pokemon.setTotalCp40(rs.getInt("total_CP_40")); + pokemon.setTotalCp39(rs.getInt("total_CP_39")); + lista.add(pokemon); + } + int fromIndex = page * size; + int toIndex = fromIndex + size; + if (page + size > lista.size()) + return new ArrayList(); + return lista.subList(fromIndex, toIndex); + + } + +} diff --git a/rest-pokemon/src/br/bruno/pokemon/entity/Pokemon.java b/rest-pokemon/src/br/bruno/pokemon/entity/Pokemon.java new file mode 100644 index 00000000..d81594bc --- /dev/null +++ b/rest-pokemon/src/br/bruno/pokemon/entity/Pokemon.java @@ -0,0 +1,217 @@ +package br.bruno.pokemon.entity; + +public class Pokemon { + private int codPokemon; + private String nome; + private int pokedexNumber; + private String imgName; + private int generation; + private String evolutionStage; + private int Evolved; + private String familyId; + private int crossGen; + private String type1; + private String type2; + private String weather1; + private String weather2; + private int statTotal; + private int atk; + private int def; + private int sta; + private int legendary; + private int aquireable; + private int spawns; + private int regional; + private int raidable; + private int hatchable; + private int shiny; + private int nest; + private int neww; + private int notGettable; + private int futureEvolve; + private int totalCp40; + private int totalCp39; + + public int getCodPokemon() { + return codPokemon; + } + public void setCodPokemon(int codPokemon) { + this.codPokemon = codPokemon; + } + public String getNome() { + return nome; + } + public void setNome(String nome) { + this.nome = nome; + } + public int getPokedexNumber() { + return pokedexNumber; + } + public void setPokedexNumber(int pokedexNumber) { + this.pokedexNumber = pokedexNumber; + } + public String getImgName() { + return imgName; + } + public void setImgName(String imgName) { + this.imgName = imgName; + } + public int getGeneration() { + return generation; + } + public void setGeneration(int generation) { + this.generation = generation; + } + public String getEvolutionStage() { + return evolutionStage; + } + public void setEvolutionStage(String evolutionStage) { + this.evolutionStage = evolutionStage; + } + public int getEvolved() { + return Evolved; + } + public void setEvolved(int evolved) { + Evolved = evolved; + } + public String getFamilyId() { + return familyId; + } + public void setFamilyId(String familyId) { + this.familyId = familyId; + } + public int getCrossGen() { + return crossGen; + } + public void setCrossGen(int crossGen) { + this.crossGen = crossGen; + } + public String getType1() { + return type1; + } + public void setType1(String type1) { + this.type1 = type1; + } + public String getType2() { + return type2; + } + public void setType2(String type2) { + this.type2 = type2; + } + public String getWeather1() { + return weather1; + } + public void setWeather1(String weather1) { + this.weather1 = weather1; + } + public String getWeather2() { + return weather2; + } + public void setWeather2(String weather2) { + this.weather2 = weather2; + } + public int getStatTotal() { + return statTotal; + } + public void setStatTotal(int statTotal) { + this.statTotal = statTotal; + } + public int getAtk() { + return atk; + } + public void setAtk(int atk) { + this.atk = atk; + } + public int getDef() { + return def; + } + public void setDef(int def) { + this.def = def; + } + public int getSta() { + return sta; + } + public void setSta(int sta) { + this.sta = sta; + } + public int getLegendary() { + return legendary; + } + public void setLegendary(int legendary) { + this.legendary = legendary; + } + public int getAquireable() { + return aquireable; + } + public void setAquireable(int aquireable) { + this.aquireable = aquireable; + } + public int getSpawns() { + return spawns; + } + public void setSpawns(int spawns) { + this.spawns = spawns; + } + public int getRegional() { + return regional; + } + public void setRegional(int regional) { + this.regional = regional; + } + public int getRaidable() { + return raidable; + } + public void setRaidable(int raidable) { + this.raidable = raidable; + } + public int getHatchable() { + return hatchable; + } + public void setHatchable(int hatchable) { + this.hatchable = hatchable; + } + public int getShiny() { + return shiny; + } + public void setShiny(int shiny) { + this.shiny = shiny; + } + public int getNest() { + return nest; + } + public void setNest(int nest) { + this.nest = nest; + } + public int getNeww() { + return neww; + } + public void setNeww(int neww) { + this.neww = neww; + } + public int getNotGettable() { + return notGettable; + } + public void setNotGettable(int notGettable) { + this.notGettable = notGettable; + } + public int getFutureEvolve() { + return futureEvolve; + } + public void setFutureEvolve(int futureEvolve) { + this.futureEvolve = futureEvolve; + } + public int getTotalCp40() { + return totalCp40; + } + public void setTotalCp40(int totalCp40) { + this.totalCp40 = totalCp40; + } + public int getTotalCp39() { + return totalCp39; + } + public void setTotalCp39(int totalCp39) { + this.totalCp39 = totalCp39; + } + + +} diff --git a/rest-pokemon/src/br/bruno/pokemon/rest/PokeService.java b/rest-pokemon/src/br/bruno/pokemon/rest/PokeService.java new file mode 100644 index 00000000..7c46af82 --- /dev/null +++ b/rest-pokemon/src/br/bruno/pokemon/rest/PokeService.java @@ -0,0 +1,45 @@ +package br.bruno.pokemon.rest; + +import java.util.List; + +import javax.annotation.PostConstruct; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.MediaType; + +import br.bruno.pokemon.dao.PokeDao; +import br.bruno.pokemon.entity.Pokemon; + +@Path("/pokemon") +public class PokeService { + + private PokeDao pokeDao; + + @PostConstruct + private void init() { + pokeDao = new PokeDao(); + } + + @GET + @Consumes(MediaType.TEXT_PLAIN) + @Produces(MediaType.APPLICATION_JSON) + public List findById(@QueryParam("type") String type, + @QueryParam("page") int page, + @QueryParam("size") int size, + @QueryParam("search") String searchName) { + List list = null; + try { + if(searchName != null) { + page = 0; + size = 1; + } + list = pokeDao.buscarPokemonPaginado(searchName, type, page, size); + } catch (Exception e) { + e.printStackTrace(); + } + return list; + } +} diff --git a/rest-pokemon/target/classes/br/bruno/pokemon/config/DBConfig.class b/rest-pokemon/target/classes/br/bruno/pokemon/config/DBConfig.class new file mode 100644 index 0000000000000000000000000000000000000000..82165950844d51895c6329498bffa0b0924a4f06 GIT binary patch literal 781 zcmah{O>fgc5Ph4bv1<|<3~l+QEwm&(WRY5NNDv27dUAtMP&uNtvvnQp-LiHn_*ZbE z;=m8!MCKzB^W*2Y?*R6&2wn7<0gGAbBq&k~gs&lwh4?IVV2Uyr1R1uWIEh#JFkkSIBrWT7-~ zM3_njKhTj#kAz9eeD+u^PLiBqGx(p59z!FR1&LDBKhcU|t3>HFA9Y8UVe<^ zX^F}m_zWv^*zk2QuQ|9u23(BRPeq;&ba9|3YBWc=SS5l;XPxX5HR_Bndp`MsX9wg--H-4{8r__KA(0<8+c_Ebe@T`^A<$ie(uDxI(c$ z1<=``Y>Bil6G_veD!7L0mS}HA-}G0`vG&%#=Rfc_&hhXw;VNWFX-mb%8nKqVWya95 GxArgZfxw6W literal 0 HcmV?d00001 diff --git a/rest-pokemon/target/classes/br/bruno/pokemon/dao/PokeDao.class b/rest-pokemon/target/classes/br/bruno/pokemon/dao/PokeDao.class new file mode 100644 index 0000000000000000000000000000000000000000..673f56d20d27362d43f3e0054cf9d9217d593f7e GIT binary patch literal 3965 zcmbVPd3;n?75?sIc`q}!EGYqoLK;ei1X6}T$})k{kOig7^4wV3@?u>yZnZoEr2=yXtr07hwcJc> zSO1`$3IxhGJFXL4Ay86V*C$Zg;-&2{N>CwDhH`<~9gb^v=7;)izt`%|+5(jwUdqb$ zS-!(qPnHG)PEMe@GYX-{BdZO4>vJ%R7InWmXDi9}st zG9NhEScj7f$Yi)}EM*S|j_2kKR0>=;WoVKSsOWJrt`+2c+QGH|=VF^@?#^}tCm2^j zru{Ts(PUtL(FNsXv+rBu>}eQPs0bs9iwrChsF@L{l;`euGO^ZeEovaK7)t~$$k+i* zxO7;wLxBagIt00c+1M1(Wa46hl|5}8Z7sbuD{I=jckQeR`ja{nYWD1C>u#$F#)s`> zL(P_&tu+xW#WDkz6rDZSoW!Mg2Ib4JZx36(-4j@WJw$sISaY7(o#jzi;e+(#7flhY zK%IeFfkoI48x>hi7lWKET^+haFDCc7vuyRzEYwY+bAt4QdFwCj;L;H6C9gX8u8|N zwRVZ^*g-)htHq!$KcC^5Vdj;tlDHZj0tT(rNhY7dD_XQuU>4_D+8#@~>ZaiDyCinA zr*r6gc9Yn`HDaPiz)TEflCCvGcTFRnDbdGEg-J^DoiuIYS%fpTYx@=_KFjt>TwC1x z_DROXb#zPFBVLy3&2y8vz{)7ANr`=IbuL+LE7Fvg88Y5a`{GYV>@-_WOW16g9bhR< zo5)b;_FF?vc0B1Ql_N381|y_uS44tjS(2rEFPBS_w`|On@Yop3T9_bTO&p}-EtDT? zauNZXGD*`*McH6tq$pU+f-#BlvjuBSJeL+4wXI;l_LB{)dA`I8ivH{=5M<|uvt-KD zizQw%O-9yU%DbhqP6l3JW!c=zC0@aPOY(`!x0eYMucD`+x%X;Tyhh@+tSBc%b8x`K z>xgS@YiI5a5;qsQR(rpRHxbv<+sxcsB;H!&$g+vIk&juM;+3}iaaO!t;_8v>3t~6sJv4Lc3Q*AiXp@~J!kP13io(EE&C#c(gtkpREfAs+b)fWX5Q@=XL4V6u9)Wp}qQmsdG$0XCze+&p0z#B&m`$eU z(72S)TwF+_5azMD(v8HBDs-KQmmNpdHAk=@UVan{(rRmDb)zhd6tPzNZ4~b*P(MT(;kC#QuqT$L76WA2OVQf{X zWdd!C5(@3q+%AQ>HP@@q9?e~&(6cr79EB{+r4-t)xdDX^Xl_WMVa@pp9;#^cxBF@7?`k!Di=2IWK0BZTnme&i7&!PNJSJ-plYXR^xBf_l79#=Ac1TW38yC7B^1+C+?vBwGZn> z8XJU99qJ9(ByK`n+(v!ro!BgnVv9IIo#_48Djvj@;t@29GuRfAXbCMsYv@ue3#~?b zs1e&kP1q4iAQ9S)t5o^jLi?kF(&fja-{TKlo;3O+jY4YlC;XY~o8}&(Q7KA7d+`YV zLX|Gb(qHi?mGs&~D)YEk)D6r(eD0vcl%Iom} literal 0 HcmV?d00001 diff --git a/rest-pokemon/target/classes/br/bruno/pokemon/entity/Pokemon.class b/rest-pokemon/target/classes/br/bruno/pokemon/entity/Pokemon.class new file mode 100644 index 0000000000000000000000000000000000000000..c12d5d8de3c55b130dc841f3c0e97e33437507cd GIT binary patch literal 6176 zcmai&`)?Fg6vxj%X=%AU6?}_t3JT>Vio7WlDzzZ3fC$L6J8c)XyLETArGf~Eg7`v3 zL`6Y-p`uZP!H`HyG$s-gjfws_#_#ve>@K~WiNEyB-t)cZe&*bB&&>4lzZWlw$XxlV zMuvGZxg+1ukuPR*4Sl(tL2oYG5M;x2IM}c*`dK4Yo{Zb!_xlYQKil1~wqr-o8G2IJ znM=hIPrPPNsz>^6r6>VFXPiMOqcru!?Q^Bs*VsA%~_oOD>+uiC@Ue_IDgS;Q6 zb6HQu1pT>8k=JdZ-wkigN(}S|DNjar`Mv4PU^6c}^SMG{Re%X2!oj{^R%~a(H4yk= zPmsq@=@O&0h0qV%bD^K{WVj#h#NSlVg})ewHxqy%<>v=M<3CkQ=L5eZgT<>0ef~hU zfKd6M8%&%&GViBTk-N6X4?BCJ>k);XbQbfgvOxj4ff*R^WK=d6t_s31(wMGdSj-2} z9bws!K#hHKXI8G~%*Uz=)7f;m7zBF{-}{Lj64eR(l~xW)fksHRgW1N%b--1#!-P#wX^CedECf21{w*8 z9jy3g)4$co_$&Q53|wVnd`c+sjZ7%9l*WgsY@oo%HI53g3}WG=MrVt`(nhW&vH?%o zftrSHS-6vmULzB!sD=VVk#9xNMc-3KCY5{`ihKw|U(v{QB_D>OwOdLjmx@6n*O%5V zJEAIBRzB4fK4att3R%|`4^AQP#vXa9_8Ym8s#@Mk+z6Pv^>Htt=6NGGQNtZ7jYqj# zAGZmrUNmxZSygTy%-!lz2chg0Bezh-+?5^Cezvi@Q1iNxTdCoG+rju4qU+H8mXXPH z+w*2Skv*hnM)ba8$V&{~VrXf4j0wK!DP;_z6D6JjmSfVC)cYf;M9 zqHL{2iCT+7v=(({Eh@=cRExE!2Wzq6)?!nw#qL>)eX7g(8uyFTbLIXxR^=|v%e-$KkZCH&gEIdr zkbA$Ec`nFwEH@(ogat#8ht!NLa5FMf1zDtLWPuAZ2Ox73Kv=N^S*&JciJOsmD#$WD zBTHP6`2cw+0fa|}Aj{Q^G`bmCsDiB2Gt%gSECI;U1Q4ECf;6caS>|*0&d6FdBkSCZw5lNM^^B}@K^_Ij z`UDWRO=hG`%}BeOk#-eigPxIg7i1$qHYI?tZxdvrnvqRzMmDP;oAr!razVBNWLp9V z9~=aELIv64f^1how&@^ST#!zHq!K{*0O1QHL3XPkdt8vCD#%_PWRDB-CP0oQ zfbb2LAkV5G`&^LYD#!sHWSb0O2b%L7r1V4!R&GRgf2Skb^GBDS(_#0O314 zK@O=Phh2~}D##HX-9pr=y@*_YlC4lflk|6J?ASYdrpHz?!bdZxS$j<=zB>{wAvIIG$f}D0iepNxv z=pd(Eklz4uIRS*9(ggWP1^L(o`CSG1R0sLk1^ELYe}FsUT-vkiS%rFLaQz VF38^i`6mH{|4bmrm-cJ>+hU;_TS9;~1f;58k)EgbW{%~FbUM;+J6|@BJy#3Z>48sVAh1#!18K>? zV9;I_$nPp&={eP_~C3BATLmG9I zxVmcNHG!r7E3SZfOie=IN)b8a1tz{#e(U42{g%Mp4TIlft)V03x2ya6#T>K-G__Br@2cB0t%?9l;rizB*}j->0w zG~`ZXCt*qj?VV~T>`3Kb^sYxiD{+nYj10q$at+(gaU9ThZL}M88Og4vy=bH@S4YBs zm3YyaabyCPJ_{M&3S~Q8V)Z?jeC)}{JxW`#S;Q8$1s0k~?8+#eVisDLZRN`rC-uKt z(qrF@_Mk~)Eh%6Jj*Z&_^TV6)=+yPXbe4*E%Zzcz9_xmd?$d)vx=d|u99%%`lfhoj zk6AwJ=&L4Fx z-3XG%^*&YU6`eWvM%+$4UzB_5^oFS}^%3)&c=57emG>mew?`n8UKUDO%6tL%o#f8p zD!Asho}=&+g$#=P=8bX|)0B%n2VBBsW1r#S3}*XYb6iuPiUFqg)^C{q<~bIA!Qv3F zz!Sg~OyTM|%wiu?P+Nk9*XfhN8wPuYcuU+bGy2LCh#1#!eIT!5jkX<&iW{ji#?7I) zJ``^a#j;8BFS20sXjxQpCF>8^*?ZRB*3VchS=&p?&#+O+{eVIxU&=qjo2A^3JfCG= z%bZ2aFtf($L0Yp6Ji(|1tW#g6&jvHxq-NVx_<1i(zd{D2>2W==zgC+ H^77HYa)XN5 literal 0 HcmV?d00001 diff --git a/rest-pokemon/target/classes/junit/test/TestePokemon.class b/rest-pokemon/target/classes/junit/test/TestePokemon.class new file mode 100644 index 0000000000000000000000000000000000000000..c130e473dbad03f346acb13cdd042a4d70af9bf2 GIT binary patch literal 1410 zcmb7E+foxj5IqwD8^Q`C$|ZOKype#gqKHaBgeaOa3I!M+e41>AWMQ)#c4w*L7ku(p zEFJ`_w0!oXEPFQ#2?%BRGS}{Nx=;7auixK(0GL5uL4;vo+p`R*N#ROulLoP7?}(ah zDTp%kZu32^ncS*qtEFwBONNelgY2I%w52mehG@<%i#XcQsiGYn3_S(I67RfPNjRIl zWD164!PdE1IEL(DE*cQ1D6l|xW zH6WJ7mhFg~$z3-aLz058N?D)NG}EWA+OF)x74$3UV;C}Q&7ow;)^kKzTc`C>W36HU zgA7WEyW;(N-VeVi!iIDVtCIDBhE!a|HHxxsI}{}&%aku-DBp^ZdR4d^o~{d*BJFL7 z)R&n;9AU@=QB2kwk_Q_t+$_3+J9>4YZtQTq>cxrjrixp*P0CjUG3L{M2llb$s8O(N zrf?=#%DYbD2|wvzk?q1=q!o-YjQq=1MF!)Pw5$q?VK#j+dXbw(nM=Rq$3(03pln$M z_ZTKFqB_ShhAD=)ZkI!GXRA0XAl>ki1fiMWR_69I07 zycn*ZLc0;7eL^(AD2@N0gPb~b4cM0eGScw3t`3#ugE%r*M9(#ifG*c literal 0 HcmV?d00001 diff --git a/rest-pokemon/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF b/rest-pokemon/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF new file mode 100644 index 00000000..3185cfcf --- /dev/null +++ b/rest-pokemon/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF @@ -0,0 +1,5 @@ +Manifest-Version: 1.0 +Built-By: bruno +Build-Jdk: 1.8.0_152 +Created-By: Maven Integration for Eclipse + diff --git a/rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.properties b/rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.properties new file mode 100644 index 00000000..259616bb --- /dev/null +++ b/rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.properties @@ -0,0 +1,7 @@ +#Generated by Maven Integration for Eclipse +#Thu Feb 14 15:32:01 BRST 2019 +version=0.0.1-SNAPSHOT +groupId=com.pokemon +m2e.projectName=rest-pokemon +m2e.projectLocation=C\:\\Users\\bruno\\Desktop\\workspace\\rest-pokemon +artifactId=rest-pokemon diff --git a/rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.xml b/rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.xml new file mode 100644 index 00000000..9dc27e90 --- /dev/null +++ b/rest-pokemon/target/m2e-wtp/web-resources/META-INF/maven/com.pokemon/rest-pokemon/pom.xml @@ -0,0 +1,76 @@ + + 4.0.0 + com.pokemon + rest-pokemon + 0.0.1-SNAPSHOT + war + + src + + + maven-compiler-plugin + 3.8.0 + + 1.8 + 1.8 + + + + maven-war-plugin + 3.2.1 + + WebContent + + + + + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.22.1 + + + + org.glassfish.jersey.media + jersey-media-moxy + 2.22.1 + + + + org.glassfish.jersey.core + jersey-server + 2.22.1 + + + + commons-codec + commons-codec + 1.10 + + + + mysql + mysql-connector-java + 5.1.38 + + + + io.rest-assured + rest-assured + 3.0.3 + + + + junit + junit + 4.12 + test + + + + + + \ No newline at end of file diff --git a/rest-pokemon/test/junit/test/TestePokemon.java b/rest-pokemon/test/junit/test/TestePokemon.java new file mode 100644 index 00000000..7281b101 --- /dev/null +++ b/rest-pokemon/test/junit/test/TestePokemon.java @@ -0,0 +1,29 @@ +package junit.test; + +import static io.restassured.RestAssured.get; +import static org.hamcrest.CoreMatchers.equalTo; +import org.junit.BeforeClass; +import org.junit.Test; + +import io.restassured.RestAssured; + +public class TestePokemon { + + @BeforeClass + public static void init() { + RestAssured.baseURI = "http://localhost"; + RestAssured.port = 8080; + + } + + @Test + public void testPokemonFetchesSuccess() { + get("/rest-pokemon/rest/pokemon?search=pikachu") + .then() + .body("codPokemon", equalTo(25)) + .body("nome", equalTo("Pikachu")) + .body("type1", equalTo("electric")); + + } + +} From d9356d1eb03421dbedcd3d5718abc3e6d2bdc966 Mon Sep 17 00:00:00 2001 From: BrunoDefante <30967285+BrunoDefante@users.noreply.github.com> Date: Thu, 14 Feb 2019 17:11:18 -0200 Subject: [PATCH 2/2] add db file CSV - pokemon test (FINAL) --- rest-pokemon/db_pokemon.csv | 822 ++++++++++++++++++++++++++++++++++++ 1 file changed, 822 insertions(+) create mode 100644 rest-pokemon/db_pokemon.csv diff --git a/rest-pokemon/db_pokemon.csv b/rest-pokemon/db_pokemon.csv new file mode 100644 index 00000000..280215f4 --- /dev/null +++ b/rest-pokemon/db_pokemon.csv @@ -0,0 +1,822 @@ +"1","Bulbasaur","1","1","1","1","0","1","0","grass","poison","Sunny/clear","Cloudy","326","118","118","90","0","1","1","0","0","5","0","1","0","0","0","981","967" +"2","Ivysaur","2","2","1","2","0","1","0","grass","poison","Sunny/clear","Cloudy","422","151","151","120","0","1","1","0","0","0","0","0","0","0","0","1552","1529" +"3","Venusaur","3","3","1","3","1","1","0","grass","poison","Sunny/clear","Cloudy","556","198","198","160","0","1","1","0","0","0","0","0","0","0","0","2568","2531" +"4","Charmander","4","4","1","1","0","2","0","fire",,"Sunny/clear",,"290","116","96","78","0","1","1","0","0","5","0","1","0","0","0","831","819" +"5","Charmeleon","5","5","1","2","0","2","0","fire",,"Sunny/clear",,"403","158","129","116","0","1","1","0","0","0","0","0","0","0","0","1484","1462" +"6","Charizard","6","6","1","3","1","2","0","fire","flying","Sunny/clear","Windy","555","223","176","156","0","1","1","0","0","0","0","0","0","0","0","2686","2648" +"7","Squirtle","7","7","1","1","0","3","0","water",,"Rainy",,"304","94","122","88","0","1","1","0","0","5","0","1","0","0","0","808","797" +"8","Wartortle","8","8","1","2","0","3","0","water",,"Rainy",,"399","126","155","118","0","1","1","0","0","0","0","0","0","0","0","1324","1305" +"9","Blastoise","9","9","1","3","1","3","0","water",,"Rainy",,"539","171","210","158","0","1","1","0","0","0","0","0","0","0","0","2291","2259" +"10","Caterpie","10","10","1","1","0","4","0","bug",,"Rainy",,"207","55","62","90","0","1","1","0","0","0","0","1","0","0","0","393","387" +"11","Metapod","11","11","1","2","0","4","0","bug",,"Rainy",,"239","45","94","100","0","1","1","0","0","0","0","0","0","0","0","419","413" +"12","Butterfree","12","12","1","3","0","4","0","bug","flying","Rainy","Windy","438","167","151","120","0","1","1","0","0","0","0","0","0","0","0","1701","1677" +"13","Weedle","13","13","1","1","0","5","0","bug","poison","Rainy","Cloudy","198","63","55","80","0","1","1","0","0","0","0","1","0","0","0","397","391" +"14","Kakuna","14","14","1","2","0","5","0","bug","poison","Rainy","Cloudy","222","46","86","90","0","1","1","0","0","0","0","0","0","0","0","392","386" +"15","Beedrill","15","15","1","3","0","5","0","bug","poison","Rainy","Cloudy","449","169","150","130","0","1","1","0","0","0","0","0","0","0","0","1777","1752" +"16","Pidgey","16","16","1","1","0","6","0","normal","flying","Partly cloudy","Windy","241","85","76","80","0","1","1","0","0","0","0","1","0","0","0","580","572" +"17","Pidgeotto","17","17","1","2","0","6","0","normal","flying","Partly cloudy","Windy","351","117","108","126","0","1","1","0","0","0","0","0","0","0","0","1085","1070" +"18","Pidgeot","18","18","1","3","0","6","0","normal","flying","Partly cloudy","Windy","489","166","157","166","0","1","1","0","0","0","0","0","0","0","0","1994","1966" +"19","Rattata","19","19","1","1","0","7","0","normal",,"Partly cloudy",,"233","103","70","60","0","1","1","0","0","0","0","1","0","0","0","588","580" +"20","Raticate","20","20","1","2","0","7","0","normal",,"Partly cloudy",,"415","161","144","110","0","1","1","0","0","0","0","0","0","0","0","1549","1527" +"21","Spearow","21","21","1","1","0","8","0","normal","flying","Partly cloudy","Windy","253","112","61","80","0","1","1","0","0","0","0","1","0","0","0","673","664" +"22","Fearow","22","22","1","2","1","8","0","normal","flying","Partly cloudy","Windy","447","182","135","130","0","1","1","0","0","0","0","0","0","0","0","1814","1788" +"23","Ekans","23","23","1","1","0","9","0","poison",,"Cloudy",,"282","110","102","70","0","1","1","0","0","0","0","1","0","0","0","778","767" +"24","Arbok","24","24","1","2","1","9","0","poison",,"Cloudy",,"445","167","158","120","0","1","1","0","0","0","0","0","0","0","0","1737","1712" +"25","Pikachu","25","25","1","1","0","10","0","electric",,"Rainy",,"283","112","101","70","0","1","1","0","0","0","1","1","0","0","0","787","776" +"26","Raichu","26","26","1","2","1","10","0","electric",,"Rainy",,"478","193","165","120","0","1","1","0","0","0","1","0","0","0","0","2025","1996" +"27","Sandshrew","27","27","1","1","0","11","0","ground",,"Sunny/clear",,"371","126","145","100","0","1","1","0","0","0","0","1","0","0","0","1194","1177" +"28","Sandslash","28","28","1","2","1","11","0","ground",,"Sunny/clear",,"534","182","202","150","0","1","1","0","0","0","0","0","0","0","0","2328","2294" +"29","Nidoran F","29","29","1","1","0","12","0","poison",,"Cloudy",,"290","86","94","110","0","1","1","0","0","0","0","0","0","0","0","736","725" +"30","Nidorina","30","30","1","2","0","12","0","poison",,"Cloudy",,"383","117","126","140","0","1","1","0","0","0","0","0","0","0","0","1218","1201" +"31","Nidoqueen","31","31","1","3","1","12","0","poison","ground","Cloudy","Sunny/clear","534","180","174","180","0","1","1","0","0","0","0","0","0","0","0","2338","2304" +"32","Nidoran M","32","32","1","1","0","13","0","poison",,"Cloudy",,"273","105","76","92","0","1","1","0","0","0","0","0","0","0","0","739","729" +"33","Nidorino","33","33","1","2","0","13","0","poison",,"Cloudy",,"371","137","112","122","0","1","1","0","0","0","0","0","0","0","0","1252","1234" +"34","Nidoking","34","34","1","3","1","13","0","poison","ground","Cloudy","Sunny/clear","523","204","157","162","0","1","1","0","0","0","0","0","0","0","0","2386","2352" +"35","Clefairy","35","35","1","1","0","14","0","fairy",,"Cloudy",,"363","107","116","140","0","1","1","0","0","0","0","1","0","0","0","1085","1070" +"36","Clefable","36","36","1","2","1","14","0","fairy",,"Cloudy",,"539","178","171","190","0","1","1","0","0","0","0","0","0","0","0","2353","2320" +"37","Vulpix","37","37","1","1","0","15","0","fire",,"Sunny/clear",,"294","96","122","76","0","1","1","0","0","0","0","1","0","0","0","774","763" +"38","Ninetales","38","38","1","2","1","15","0","fire",,"Sunny/clear",,"519","169","204","146","0","1","1","0","0","0","0","0","0","0","0","2157","2127" +"39","Jigglypuff","39","39","1","1","0","16","0","normal","fairy","Partly cloudy","Cloudy","354","80","44","230","0","1","1","0","0","0","0","1","0","0","0","713","703" +"40","Wigglytuff","40","40","1","2","1","16","0","normal","fairy","Partly cloudy","Cloudy","529","156","93","280","0","1","1","0","0","0","0","0","0","0","0","1906","1879" +"41","Zubat","41","41","1","1","0","17","0","poison","flying","Cloudy","Windy","239","83","76","80","0","1","1","0","0","0","0","1","0","0","0","569","560" +"42","Golbat","42","42","1","2","0","17","0","poison","flying","Cloudy","Windy","464","161","153","150","0","1","1","0","0","0","0","0","0","0","0","1830","1804" +"43","Oddish","43","43","1","1","0","18","0","grass","poison","Sunny/clear","Cloudy","337","131","116","90","0","1","1","0","0","2","0","1","0","0","0","1069","1054" +"44","Gloom","44","44","1","2","0","18","0","grass","poison","Sunny/clear","Cloudy","412","153","139","120","0","1","1","0","0","0","0","0","0","0","0","1512","1491" +"45","Vileplume","45","45","1","3","1","18","0","grass","poison","Sunny/clear","Cloudy","522","202","170","150","0","1","1","0","0","0","0","0","0","0","0","2367","2334" +"46","Paras","46","46","1","1","0","19","0","bug","grass","Rainy","Sunny/clear","290","121","99","70","0","1","1","0","0","0","0","1","0","0","0","836","824" +"47","Parasect","47","47","1","2","1","19","0","bug","grass","Rainy","Sunny/clear","431","165","146","120","0","1","1","0","0","0","0","0","0","0","0","1657","1633" +"48","Venonat","48","48","1","1","0","20","0","bug","poison","Rainy","Cloudy","322","100","102","120","0","1","1","0","0","0","0","1","0","0","0","902","889" +"49","Venomoth","49","49","1","2","1","20","0","bug","poison","Rainy","Cloudy","469","179","150","140","0","1","1","0","0","0","0","0","0","0","0","1937","1910" +"50","Diglett","50","50","1","1","0","21","0","ground",,"Sunny/clear",,"217","109","88","20","0","1","1","0","0","0","0","1","0","0","0","465","458" +"51","Dugtrio","51","51","1","2","1","21","0","ground",,"Sunny/clear",,"384","167","147","70","0","1","1","0","0","0","0","0","0","0","0","1333","1314" +"52","Meowth","52","52","1","1","0","23","0","normal",,"Partly cloudy",,"253","92","81","80","0","1","1","0","0","0","0","1","0","0","0","638","629" +"53","Persian","53","53","1","2","1","23","0","normal",,"Partly cloudy",,"419","150","139","130","0","1","1","0","0","0","0","0","0","0","0","1539","1517" +"54","Psyduck","54","54","1","1","0","24","0","water",,"Rainy",,"318","122","96","100","0","1","1","0","0","0","0","1","0","0","0","966","952" +"55","Golduck","55","55","1","2","1","24","0","water",,"Rainy",,"514","191","163","160","0","1","1","0","0","0","0","0","0","0","0","2270","2238" +"56","Mankey","56","56","1","1","0","25","0","fighting",,"Cloudy",,"315","148","87","80","0","1","1","0","0","0","0","1","0","0","0","1002","987" +"57","Primeape","57","57","1","2","1","25","0","fighting",,"Cloudy",,"481","207","144","130","0","1","1","0","0","0","0","0","0","0","0","2105","2075" +"58","Growlithe","58","58","1","1","0","26","0","fire",,"Sunny/clear",,"342","136","96","110","0","1","1","0","0","5","0","1","0","0","0","1110","1095" +"59","Arcanine","59","59","1","2","1","26","0","fire",,"Sunny/clear",,"573","227","166","180","0","1","1","0","0","0","0","0","0","0","0","2839","2799" +"60","Poliwag","60","60","1","1","0","27","0","water",,"Rainy",,"263","101","82","80","0","1","1","0","0","0","0","1","0","0","0","695","685" +"61","Poliwhirl","61","61","1","2","0","27","0","water",,"Rainy",,"390","130","130","130","0","1","1","0","0","0","0","0","0","0","0","1313","1294" +"62","Poliwrath","62","62","1","3","1","27","0","water","fighting","Rainy","Cloudy","549","182","187","180","0","1","1","0","0","0","0","0","0","0","0","2441","2407" +"63","Abra","63","63","1","1","0","28","0","psychic",,"Windy",,"348","195","103","50","0","1","1","0","0","2","0","1","0","0","0","1148","1132" +"64","Kadabra","64","64","1","2","0","28","0","psychic",,"Windy",,"450","232","138","80","0","1","1","0","0","0","0","0","0","0","0","1859","1833" +"65","Alakazam","65","65","1","3","1","28","0","psychic",,"Windy",,"575","271","194","110","0","1","1","0","0","0","0","0","0","0","0","2887","2845" +"66","Machop","66","66","1","1","0","29","0","fighting",,"Cloudy",,"365","137","88","140","0","1","1","0","0","2","0","1","0","0","0","1199","1182" +"67","Machoke","67","67","1","2","0","29","0","fighting",,"Cloudy",,"467","177","130","160","0","1","1","0","0","0","0","0","0","0","0","1910","1882" +"68","Machamp","68","68","1","3","1","29","0","fighting",,"Cloudy",,"576","234","162","180","0","1","1","0","3","0","0","0","0","0","0","2889","2848" +"69","Bellsprout","69","69","1","1","0","30","0","grass","poison","Sunny/clear","Cloudy","303","139","64","100","0","1","1","0","0","0","0","1","0","0","0","916","903" +"70","Weepinbell","70","70","1","2","0","30","0","grass","poison","Sunny/clear","Cloudy","397","172","95","130","0","1","1","0","0","0","0","0","0","0","0","1475","1453" +"71","Victreebel","71","71","1","3","1","30","0","grass","poison","Sunny/clear","Cloudy","505","207","138","160","0","1","1","0","0","0","0","0","0","0","0","2268","2236" +"72","Tentacool","72","72","1","1","0","31","0","water","poison","Rainy","Cloudy","359","97","182","80","0","1","1","0","0","0","0","1","0","0","0","956","943" +"73","Tentacruel","73","73","1","2","1","31","0","water","poison","Rainy","Cloudy","563","166","237","160","0","1","1","0","0","0","0","0","0","0","0","2374","2340" +"74","Geodude","74","74","1","1","0","32","0","rock","ground","Partly cloudy","Sunny/clear","375","132","163","80","0","1","1","0","0","0","0","1","0","0","0","1193","1176" +"75","Graveler","75","75","1","2","0","32","0","rock","ground","Partly cloudy","Sunny/clear","470","164","196","110","0","1","1","0","0","0","0","0","0","0","0","1815","1789" +"76","Golem","76","76","1","3","1","32","0","rock","ground","Partly cloudy","Sunny/clear","600","211","229","160","0","1","1","0","4","0","0","0","0","0","0","2916","2875" +"77","Ponyta","77","77","1","1","0","33","0","fire",,"Sunny/clear",,"402","170","132","100","0","1","1","0","0","5","0","1","0","0","0","1502","1480" +"78","Rapidash","78","78","1","2","1","33","0","fire",,"Sunny/clear",,"504","207","167","130","0","1","1","0","0","0","0","0","0","0","0","2252","2220" +"79","Slowpoke","79","79","1","1","0","34","0","water","psychic","Rainy","Windy","398","109","109","180","0","1","1","0","0","2","0","1","0","0","0","1204","1187" +"80","Slowbro","80","80","1","2","1","34","0","water","psychic","Rainy","Windy","561","177","194","190","0","1","1","0","0","0","0","0","0","0","0","2482","2446" +"81","Magnemite","81","81","1","1","0","35","0","electric","steel","Rainy","Snow","343","165","128","50","0","1","1","0","0","0","0","1","0","0","1","1083","1068" +"82","Magneton","82","82","1","2","1","35","0","electric","steel","Rainy","Snow","505","223","182","100","0","1","1","0","0","0","0","0","0","0","1","2237","2205" +"83","Farfetchd","83","83","1","1","0","36","0","normal","flying","Partly cloudy","Windy","346","124","118","104","0","1","1","1","0","0","0","0","0","0","0","1092","1076" +"84","Doduo","84","84","1","1","0","37","0","normal","flying","Partly cloudy","Windy","316","158","88","70","0","1","1","0","0","0","0","1","0","0","0","1011","996" +"85","Dodrio","85","85","1","2","1","37","0","normal","flying","Partly cloudy","Windy","483","218","145","120","0","1","1","0","0","0","0","0","0","0","0","2138","2108" +"86","Seel","86","86","1","1","0","38","0","water",,"Rainy",,"343","85","128","130","0","1","1","0","0","5","0","1","0","0","0","899","886" +"87","Dewgong","87","87","1","2","1","38","0","water","ice","Rainy","Snow","503","139","184","180","0","1","1","0","0","0","0","0","0","0","0","1894","1867" +"88","Grimer","88","88","1","1","0","39","0","poison",,"Cloudy",,"385","135","90","160","0","1","1","0","0","5","0","0","0","0","0","1269","1251" +"89","Muk","89","89","1","2","1","39","0","poison",,"Cloudy",,"584","190","184","210","0","1","1","0","0","0","0","0","0","0","0","2709","2670" +"90","Shellder","90","90","1","1","0","40","0","water",,"Rainy",,"344","116","168","60","0","1","1","0","0","5","0","1","0","0","0","958","944" +"91","Cloyster","91","91","1","2","1","40","0","water","ice","Rainy","Snow","609","186","323","100","0","1","1","0","0","0","0","0","0","0","0","2475","2439" +"92","Gastly","92","92","1","1","0","41","0","ghost","poison","Fog","Cloudy","316","186","70","60","0","1","1","0","0","2","0","1","0","0","0","1002","988" +"93","Haunter","93","93","1","2","0","41","0","ghost","poison","Fog","Cloudy","425","223","112","90","0","1","1","0","0","0","0","0","0","0","0","1716","1692" +"94","Gengar","94","94","1","3","1","41","0","ghost","poison","Fog","Cloudy","537","261","156","120","0","1","1","0","3","0","0","0","0","0","0","2619","2581" +"95","Onix","95","95","1","1","0","42","0","rock","ground","Partly cloudy","Sunny/clear","443","85","288","70","0","1","1","0","0","5","0","1","0","0","0","1002","988" +"96","Drowzee","96","96","1","1","0","43","0","psychic",,"Windy",,"367","89","158","120","0","1","1","0","0","0","0","1","0","0","0","992","978" +"97","Hypno","97","97","1","2","1","43","0","psychic",,"Windy",,"529","144","215","170","0","1","1","0","0","0","0","0","0","0","0","2048","2019" +"98","Krabby","98","98","1","1","0","44","0","water",,"Rainy",,"397","181","156","60","0","1","1","0","0","0","0","1","0","0","0","1386","1366" +"99","Kingler","99","99","1","2","1","44","0","water",,"Rainy",,"564","240","214","110","0","1","1","0","0","0","0","0","0","0","0","2694","2656" +"100","Voltorb","100","100","1","1","0","45","0","electric",,"Rainy",,"303","109","114","80","0","1","1","0","0","0","0","1","0","0","0","857","845" +"101","Electrode","101","101","1","2","1","45","0","electric",,"Rainy",,"472","173","179","120","0","1","1","0","0","0","0","0","0","0","0","1900","1873" +"102","Exeggcute","102","102","1","1","0","46","0","grass","psychic","Sunny/clear","Windy","367","107","140","120","0","1","1","0","0","2","0","1","0","0","0","1102","1086" +"103","Exeggutor","103","103","1","2","1","46","0","grass","psychic","Sunny/clear","Windy","581","233","158","190","0","1","1","0","2","0","0","0","0","0","0","2916","2875" +"104","Cubone","104","104","1","1","0","47","0","ground",,"Sunny/clear",,"355","90","165","100","0","1","1","0","0","0","0","1","0","0","0","943","930" +"105","Marowak","105","105","1","2","1","47","0","ground",,"Sunny/clear",,"464","144","200","120","0","1","1","0","0","0","0","0","0","0","0","1691","1667" +"106","Hitmonlee","106","106","1","1","1","48","0","fighting",,"Cloudy",,"535","224","211","100","0","1","1","0","0","0","0","0","0","0","0","2406","2372" +"107","Hitmonchan","107","107","1","1","1","48","0","fighting",,"Cloudy",,"505","193","212","100","0","1","1","0","0","0","0","0","0","0","0","2098","2069" +"108","Lickitung","108","108","1","1","1","49","1","normal",,"Partly cloudy",,"425","108","137","180","0","1","1","0","0","5","0","0","0","0","1","1322","1303" +"109","Koffing","109","109","1","1","0","50","0","poison",,"Cloudy",,"363","119","164","80","0","1","1","0","0","5","0","0","0","0","0","1091","1075" +"110","Weezing","110","110","1","2","1","50","0","poison",,"Cloudy",,"525","174","221","130","0","1","1","0","0","0","0","0","0","0","0","2183","2152" +"111","Rhyhorn","111","111","1","1","0","51","0","ground","rock","Sunny/clear","Partly cloudy","457","140","157","160","0","1","1","0","0","5","0","1","0","0","1","1679","1655" +"112","Rhydon","112","112","1","2","1","51","0","ground","rock","Sunny/clear","Partly cloudy","638","222","206","210","0","1","1","0","0","0","0","0","0","0","1","3300","3253" +"113","Chansey","113","113","1","1","0","52","1","normal",,"Partly cloudy",,"736","60","176","500","0","1","1","0","0","10","0","0","0","0","0","1469","1448" +"114","Tangela","114","114","1","1","1","53","0","grass",,"Sunny/clear",,"518","183","205","130","0","1","1","0","0","5","0","0","0","0","1","2208","2177" +"115","Kangaskhan","115","115","1","1","1","54","0","normal",,"Partly cloudy",,"556","181","165","210","0","1","1","1","0","0","0","0","0","0","0","2463","2428" +"116","Horsea","116","116","1","1","0","55","1","water",,"Rainy",,"314","129","125","60","0","1","1","0","0","0","0","1","0","0","0","921","908" +"117","Seadra","117","117","1","2","0","55","1","water",,"Rainy",,"479","187","182","110","0","1","1","0","0","0","0","0","0","0","0","1979","1951" +"118","Goldeen","118","118","1","1","0","56","0","water",,"Rainy",,"328","123","115","90","0","1","1","0","0","0","0","1","0","0","0","1006","992" +"119","Seaking","119","119","1","2","1","56","0","water",,"Rainy",,"489","175","154","160","0","1","1","0","0","0","0","0","0","0","0","2040","2011" +"120","Staryu","120","120","1","1","0","57","0","water",,"Rainy",,"309","137","112","60","0","1","1","0","0","0","0","1","0","0","0","926","913" +"121","Starmie","121","121","1","2","1","57","0","water","psychic","Rainy","Windy","514","210","184","120","0","1","1","0","0","0","0","0","0","0","0","2303","2270" +"122","Mr Mime","122","122","1","1","1","58","0","psychic","fairy","Windy","Cloudy","505","192","233","80","0","1","1","1","0","0","0","0","0","0","0","1984","1956" +"123","Scyther","123","123","1","1","0","59","0","bug","flying","Rainy","Windy","528","218","170","140","0","1","1","0","0","5","0","1","0","0","0","2464","2429" +"124","Jynx","124","124","1","1","1","60","0","ice","psychic","Snow","Windy","535","223","182","130","0","1","1","0","3","0","0","1","0","0","0","2512","2476" +"125","Electabuzz","125","125","1","1","1","61","1","electric",,"Rainy",,"501","198","173","130","0","1","1","0","2","0","0","1","0","0","1","2196","2165" +"126","Magmar","126","126","1","1","1","62","1","fire",,"Sunny/clear",,"505","206","169","130","0","1","1","0","0","0","0","1","0","0","1","2254","2222" +"127","Pinsir","127","127","1","1","1","63","0","bug",,"Rainy",,"565","238","197","130","0","1","1","0","0","5","0","1","0","0","0","2770","2730" +"128","Tauros","128","128","1","1","1","64","0","normal",,"Partly cloudy",,"545","198","197","150","0","1","1","1","0","0","0","0","0","0","0","2488","2452" +"129","Magikarp","129","129","1","1","0","65","0","water",,"Rainy",,"171","29","102","40","0","1","1","0","1","0","1","1","0","0","0","220","217" +"130","Gyarados","130","130","1","2","1","65","0","water","flying","Rainy","Windy","624","237","197","190","0","1","1","0","0","0","1","0","0","0","0","3281","3234" +"131","Lapras","131","131","1","1","0","66","0","water","ice","Rainy","Snow","605","165","180","260","0","1","1","0","0","10","0","0","0","0","0","2603","2566" +"132","Ditto","132","132","1","1","0","67","0","normal",,"Partly cloudy",,"278","91","91","96","0","1","1","0","0","0","0","0","0","0","0","718","707" +"133","Eevee","133","133","1","1","0","68","1","normal",,"Partly cloudy",,"335","104","121","110","0","1","1","0","0","5","0","1","0","0","1","969","955" +"134","Vaporeon","134","134","1","2","1","68","0","water",,"Rainy",,"642","205","177","260","0","1","1","0","0","0","0","0","0","0","0","3157","3112" +"135","Jolteon","135","135","1","2","1","68","0","electric",,"Rainy",,"563","232","201","130","0","1","1","0","3","0","0","0","0","0","0","2730","2691" +"136","Flareon","136","136","1","2","1","68","0","fire",,"Sunny/clear",,"580","246","204","130","0","1","1","0","0","0","0","0","0","0","0","2904","2863" +"137","Porygon","137","137","1","1","0","69","0","normal",,"Partly cloudy",,"422","153","139","130","0","1","1","0","0","10","0","0","0","0","1","1567","1545" +"138","Omanyte","138","138","1","1","0","70","0","rock","water","Partly cloudy","Rainy","399","155","174","70","0","1","1","0","0","5","0","1","0","0","0","1345","1326" +"139","Omastar","139","139","1","2","1","70","0","rock","water","Partly cloudy","Rainy","574","207","227","140","0","1","1","0","0","0","0","0","0","0","0","2685","2647" +"140","Kabuto","140","140","1","1","0","71","0","rock","water","Partly cloudy","Rainy","370","148","162","60","0","1","1","0","0","5","0","1","0","0","0","1172","1156" +"141","Kabutops","141","141","1","2","1","71","0","rock","water","Partly cloudy","Rainy","543","220","203","120","0","1","1","0","0","0","0","0","0","0","0","2517","2481" +"142","Aerodactyl","142","142","1","1","0","72","0","rock","flying","Partly cloudy","Windy","545","221","164","160","0","1","1","0","0","10","0","0","0","0","0","2608","2571" +"143","Snorlax","143","143","1","1","0","73","0","normal",,"Partly cloudy",,"700","190","190","320","0","1","1","0","0","10","0","0","0","0","0","3355","3307" +"144","Articuno","144","144","1","1","0","74","0","ice","flying","Snow","Windy","621","192","249","180","1","1","0","0","0","0","0","0","0","1","0","2933","2891" +"145","Zapdos","145","145","1","1","0","75","0","electric","flying","Rainy","Windy","621","253","188","180","1","1","0","0","0","0","0","0","0","1","0","3330","3282" +"146","Moltres","146","146","1","1","0","76","0","fire","flying","Sunny/clear","Windy","615","251","184","180","1","1","0","0","0","0","0","0","0","1","0","3272","3225" +"147","Dratini","147","147","1","1","0","77","0","dragon",,"Windy",,"295","119","94","82","0","1","1","0","0","10","0","0","0","0","0","860","848" +"148","Dragonair","148","148","1","2","1","77","0","dragon",,"Windy",,"423","163","138","122","0","1","1","0","0","0","0","0","0","0","0","1609","1586" +"149","Dragonite","149","149","1","3","1","77","0","dragon","flying","Windy",,"646","263","201","182","0","1","1","0","0","0","0","0","0","0","0","3581","3530" +"150","Mewtwo","150","150","1","1","0","78","0","psychic",,"Windy",,"675","300","182","193","1","1","0","0","0","0","0","0","0","0","0","3982","3925" +"151","Mew","151","151","1","1","1","79","0","psychic",,"Windy",,"620","210","210","200","2","0","0","0","0","0","0","0","0","0","0","3090","3046" +"152","Chikorita","152","152","2","1","0","80","0","grass",,"Sunny/clear",,"304","92","122","90","0","1","1","0","0","5","0","1","0","0","0","801","790" +"153","Bayleef","153","153","2","2","0","80","0","grass",,"Sunny/clear",,"397","122","155","120","0","1","1","0","0","0","0","0","0","0","0","1296","1277" +"154","Meganium","154","154","2","3","1","80","0","grass",,"Sunny/clear",,"530","168","202","160","0","1","1","0","0","0","0","0","0","0","0","2227","2195" +"155","Cyndaquil","155","155","2","1","0","81","0","fire",,"Sunny/clear",,"290","116","96","78","0","1","1","0","0","5","0","1","0","0","0","831","819" +"156","Quilava","156","156","2","2","0","81","0","fire",,"Sunny/clear",,"403","158","129","116","0","1","1","0","0","0","0","0","0","0","0","1484","1462" +"157","Typhlosion","157","157","2","3","1","81","0","fire",,"Sunny/clear",,"555","223","176","156","0","1","1","0","0","0","0","0","0","0","0","2686","2648" +"158","Totodile","158","158","2","1","0","82","0","water",,"Rainy",,"333","117","116","100","0","1","1","0","0","5","0","1","0","0","0","1011","997" +"159","Croconaw","159","159","2","2","0","82","0","water",,"Rainy",,"431","150","151","130","0","1","1","0","0","0","0","0","0","0","0","1598","1576" +"160","Feraligatr","160","160","2","3","1","82","0","water",,"Rainy",,"572","205","197","170","0","1","1","0","0","0","0","0","0","0","0","2721","2682" +"161","Sentret","161","161","2","1","0","83","0","normal",,"Partly cloudy",,"226","79","77","70","0","1","1","0","0","0","0","1","0","0","0","519","511" +"162","Furret","162","162","2","2","1","83","0","normal",,"Partly cloudy",,"448","148","130","170","0","1","1","0","0","0","0","0","0","0","0","1667","1643" +"163","Hoothoot","163","163","2","1","0","84","0","normal","flying","Partly cloudy","Windy","288","67","101","120","0","1","1","0","0","0","0","1","0","0","0","640","631" +"164","Noctowl","164","164","2","2","1","84","0","normal","flying","Partly cloudy","Windy","524","145","179","200","0","1","1","0","0","0","0","0","0","0","0","2040","2011" +"165","Ledyba","165","165","2","1","0","85","0","bug","flying","Rainy","Windy","294","72","142","80","0","1","1","0","0","0","0","1","0","0","0","663","654" +"166","Ledian","166","166","2","2","1","85","0","bug","flying","Rainy","Windy","426","107","209","110","0","1","1","0","0","0","0","0","0","0","0","1275","1256" +"167","Spinarak","167","167","2","1","0","86","0","bug","poison","Rainy","Cloudy","258","105","73","80","0","1","1","0","0","0","0","1","0","0","0","685","675" +"168","Ariados","168","168","2","2","1","86","0","bug","poison","Rainy","Cloudy","429","161","128","140","0","1","1","0","0","0","0","0","0","0","0","1636","1613" +"169","Crobat","169","169","2","3","1","17","0","poison","flying","Cloudy","Windy","542","194","178","170","0","1","1","0","0","0","0","0","0","0","0","2466","2431" +"170","Chinchou","170","170","2","1","0","87","0","water","electric","Rainy",,"362","106","106","150","0","1","1","0","0","5","0","1","0","0","0","1067","1052" +"171","Lanturn","171","171","2","2","1","87","0","water","electric","Rainy",,"542","146","146","250","0","1","1","0","0","0","0","0","0","0","0","2077","2047" +"172","Pichu","172","172","2","0","0","10","0","electric",,"Rainy",,"180","77","63","40","0","1","0","0","0","2","1","0","0","0","0","376","370" +"173","Cleffa","173","173","2","0","0","14","0","fairy",,"Cloudy",,"266","75","91","100","0","1","0","0","0","2","0","0","0","0","0","620","611" +"174","Igglybuff","174","174","2","0","0","16","0","normal","fairy","Partly cloudy","Cloudy","283","69","34","180","0","1","0","0","0","2","0","0","0","0","0","512","505" +"175","Togepi","175","175","2","0","0","88","0","fairy",,"Cloudy",,"253","67","116","70","0","1","0","0","0","2","0","0","0","0","1","540","532" +"176","Togetic","176","176","2","1","1","88","0","fairy","flying","Cloudy","Windy","440","139","191","110","0","1","1","0","0","0","0","0","0","0","1","1543","1521" +"177","Natu","177","177","2","1","0","89","0","psychic","flying","Windy",,"303","134","89","80","0","1","1","0","0","0","0","1","0","0","0","925","911" +"178","Xatu","178","178","2","2","1","89","0","psychic","flying","Windy",,"468","192","146","130","0","1","1","0","0","0","0","0","0","0","0","1975","1947" +"179","Mareep","179","179","2","1","0","90","0","electric",,"Rainy",,"306","114","82","110","0","1","1","0","0","10","0","0","0","0","0","887","874" +"180","Flaaffy","180","180","2","2","0","90","0","electric",,"Rainy",,"397","145","112","140","0","1","1","0","0","0","0","0","0","0","0","1402","1382" +"181","Ampharos","181","181","2","3","1","90","0","electric",,"Rainy",,"563","211","172","180","0","1","1","0","0","0","0","0","0","0","0","2695","2656" +"182","Bellossom","182","182","2","3","1","18","0","grass",,"Sunny/clear",,"508","169","189","150","0","1","0","0","0","0","0","0","0","0","0","2108","2078" +"183","Marill","183","183","2","1","0","91","0","water","fairy","Rainy","Cloudy","270","37","93","140","0","1","1","0","0","0","0","1","0","0","0","420","414" +"184","Azumarill","184","184","2","2","1","91","0","water","fairy","Rainy","Cloudy","464","112","152","200","0","1","1","0","0","0","0","0","0","0","0","1503","1481" +"185","Sudowoodo","185","185","2","1","1","92","0","rock",,"Partly cloudy",,"505","167","198","140","0","1","1","0","0","10","0","0","0","0","0","2065","2035" +"186","Politoed","186","186","2","2","1","27","0","water",,"Rainy",,"546","174","192","180","0","1","1","0","0","0","0","0","0","0","0","2371","2337" +"187","Hoppip","187","187","2","1","0","93","0","grass","flying","Sunny/clear","Windy","238","67","101","70","0","1","1","0","0","0","0","1","0","0","0","508","501" +"188","Skiploom","188","188","2","2","0","93","0","grass","flying","Sunny/clear","Windy","328","91","127","110","0","1","1","0","0","0","0","0","0","0","0","882","869" +"189","Jumpluff","189","189","2","3","1","93","0","grass","flying","Sunny/clear","Windy","465","118","197","150","0","1","1","0","0","0","0","0","0","0","0","1553","1531" +"190","Aipom","190","190","2","1","1","94","0","normal",,"Partly cloudy",,"358","136","112","110","0","1","1","0","0","0","0","1","0","0","1","1188","1171" +"191","Sunkern","191","191","2","1","0","95","0","grass",,"Sunny/clear",,"170","55","55","60","0","1","1","0","0","0","0","1","0","0","0","316","312" +"192","Sunflora","192","192","2","2","1","95","0","grass",,"Sunny/clear",,"483","185","148","150","0","1","1","0","0","0","0","0","0","0","0","2048","2019" +"193","Yanma","193","193","2","1","1","96","0","bug","flying","Rainy","Windy","378","154","94","130","0","1","1","0","0","0","0","1","0","0","1","1326","1308" +"194","Wooper","194","194","2","1","0","97","0","water","ground","Rainy","Sunny/clear","260","75","75","110","0","1","1","0","0","0","0","1","0","0","0","596","587" +"195","Quagsire","195","195","2","2","1","97","0","water","ground","Rainy","Sunny/clear","494","152","152","190","0","1","1","0","0","0","0","0","0","0","0","1929","1902" +"196","Espeon","196","196","2","2","1","68","1","psychic",,"Windy",,"585","261","194","130","0","1","0","0","0","0","0","0","0","0","0","3000","2958" +"197","Umbreon","197","197","2","2","1","68","1","dark",,"Fog",,"566","126","250","190","0","1","0","0","0","0","0","0","0","0","0","2052","2023" +"198","Murkrow","198","198","2","1","1","98","0","dark","flying","Fog","Windy","382","175","87","120","0","1","1","0","0","0","0","1","0","0","1","1392","1372" +"199","Slowking","199","199","2","2","1","34","0","water","psychic","Rainy","Windy","561","177","194","190","0","1","1","0","0","0","0","0","0","0","0","2482","2446" +"200","Misdreavus","200","200","2","1","1","99","0","ghost",,"Fog",,"454","167","167","120","0","1","1","0","0","0","0","1","0","0","1","1781","1756" +"201","Unown","201","201","2","1","1","100","0","psychic",,"Windy",,"323","136","91","96","0","1","1","0","0","0","0","0","0","0","0","1022","1008" +"202","Wobbuffet","202","202","2","1","1","101","0","psychic",,"Windy",,"546","60","106","380","0","1","1","0","0","0","0","1","0","0","0","1024","1009" +"203","Girafarig","203","203","2","1","1","102","0","normal","psychic","Partly cloudy","Windy","455","182","133","140","0","1","1","0","0","5","0","1","0","0","0","1863","1836" +"204","Pineco","204","204","2","1","0","103","0","bug",,"Rainy",,"354","108","146","100","0","1","1","0","0","5","0","0","0","0","0","1045","1030" +"205","Forretress","205","205","2","2","1","103","0","bug","steel","Rainy","Snow","553","161","242","150","0","1","1","0","0","0","0","0","0","0","0","2263","2231" +"206","Dunsparce","206","206","2","1","1","104","0","normal",,"Partly cloudy",,"462","131","131","200","0","1","1","0","0","5","0","1","0","0","0","1615","1592" +"207","Gligar","207","207","2","1","1","105","0","ground","flying","Sunny/clear","Windy","477","143","204","130","0","1","1","0","0","5","0","0","0","0","1","1758","1733" +"208","Steelix","208","208","2","2","1","42","0","steel","ground","Snow","Sunny/clear","631","148","333","150","0","1","0","0","0","0","0","0","0","0","0","2439","2404" +"209","Snubbull","209","209","2","1","0","106","0","fairy",,"Cloudy",,"346","137","89","120","0","1","1","0","0","0","0","1","0","0","0","1124","1108" +"210","Granbull","210","210","2","2","1","106","0","fairy",,"Cloudy",,"529","212","137","180","0","1","1","0","0","0","0","0","0","0","0","2440","2406" +"211","Qwilfish","211","211","2","1","1","107","0","water","poison","Rainy","Cloudy","462","184","148","130","0","1","1","0","0","0","0","1","0","0","0","1910","1883" +"212","Scizor","212","212","2","2","1","59","0","bug","steel","Rainy","Snow","567","236","191","140","0","1","0","0","0","0","0","0","0","0","0","2801","2761" +"213","Shuckle","213","213","2","1","1","108","0","bug","rock","Rainy","Partly cloudy","453","17","396","40","0","1","1","0","0","5","0","1","0","0","0","300","296" +"214","Heracross","214","214","2","1","1","109","0","bug","fighting","Rainy","Cloudy","583","234","189","160","0","1","1","1","0","0","0","0","0","0","0","2938","2896" +"215","Sneasel","215","215","2","1","1","110","0","dark","ice","Fog","Snow","456","189","157","110","0","1","0","0","0","5","0","1","0","0","1","1868","1841" +"216","Teddiursa","216","216","2","1","0","111","0","normal",,"Partly cloudy",,"355","142","93","120","0","1","1","0","0","5","0","1","0","0","0","1184","1167" +"217","Ursaring","217","217","2","2","1","111","0","normal",,"Partly cloudy",,"560","236","144","180","0","1","1","0","0","0","0","0","0","0","0","2760","2720" +"218","Slugma","218","218","2","1","0","112","0","fire",,"Sunny/clear",,"269","118","71","80","0","1","1","0","0","0","0","1","0","0","0","750","740" +"219","Magcargo","219","219","2","2","1","112","0","fire","rock","Sunny/clear","Partly cloudy","448","139","209","100","0","1","1","0","0","0","0","0","0","0","0","1543","1521" +"220","Swinub","220","220","2","1","0","113","0","ice","ground","Snow","Sunny/clear","264","90","74","100","0","1","1","0","0","0","0","1","0","0","1","663","653" +"221","Piloswine","221","221","2","2","1","113","0","ice","ground","Snow","Sunny/clear","528","181","147","200","0","1","1","0","2","0","0","0","0","0","1","2284","2252" +"222","Corsola","222","222","2","1","1","114","0","water","rock","Rainy","Partly cloudy","384","118","156","110","0","1","1","1","0","0","0","0","0","0","0","1214","1197" +"223","Remoraid","223","223","2","1","0","115","0","water",,"Rainy",,"266","127","69","70","0","1","1","0","0","2","0","1","0","0","0","749","738" +"224","Octillery","224","224","2","2","1","115","0","water",,"Rainy",,"488","197","141","150","0","1","1","0","0","0","0","0","0","0","0","2124","2094" +"225","Delibird","225","225","2","1","1","116","0","ice","flying","Snow","Windy","308","128","90","90","0","1","1","0","0","0","0","0","0","0","0","937","924" +"226","Mantine","226","226","2","1","1","117","0","water","flying","Rainy","Windy","538","148","260","130","0","1","1","0","0","5","0","0","0","0","0","2032","2003" +"227","Skarmory","227","227","2","1","1","118","0","steel","flying","Snow","Windy","538","148","260","130","0","1","1","0","0","10","0","0","0","0","0","2032","2003" +"228","Houndour","228","228","2","1","0","119","0","dark","fire","Fog","Sunny/clear","335","152","93","90","0","1","1","0","0","5","0","1","0","0","0","1110","1094" +"229","Houndoom","229","229","2","2","1","119","0","dark","fire","Fog","Sunny/clear","533","224","159","150","0","1","1","0","0","0","0","0","0","0","0","2529","2493" +"230","Kingdra","230","230","2","3","1","55","1","water","dragon","Rainy","Windy","538","194","194","150","0","1","1","0","0","0","0","0","0","0","0","2424","2389" +"231","Phanpy","231","231","2","1","0","120","0","ground",,"Sunny/clear",,"394","107","107","180","0","1","1","0","0","5","0","0","0","0","0","1175","1158" +"232","Donphan","232","232","2","2","1","120","0","ground",,"Sunny/clear",,"608","214","214","180","0","1","1","0","0","0","0","0","0","0","0","3022","2979" +"233","Porygon2","233","233","2","2","1","69","0","normal",,"Partly cloudy",,"551","198","183","170","0","1","0","0","0","0","0","0","0","0","1","2546","2509" +"234","Stantler","234","234","2","1","1","121","0","normal",,"Partly cloudy",,"470","192","132","146","0","1","1","0","0","5","0","0","0","0","0","1988","1960" +"235","Smeargle","235","235","2","1","1","122","0","normal",,"Partly cloudy",,"238","40","88","110","0","0","0","0","0","0","0","0","0","0","0","389","384" +"236","Tyrogue","236","236","2","0","0","48","0","fighting",,"Cloudy",,"198","64","64","70","0","1","0","0","0","5","0","0","0","0","0","404","398" +"237","Hitmontop","237","237","2","1","1","48","0","fighting",,"Cloudy",,"487","173","214","100","0","1","1","0","0","0","0","0","0","0","0","1905","1878" +"238","Smoochum","238","238","2","0","0",,"0","ice","psychic","Snow","Windy","359","153","116","90","0","1","0","0","0","5","0","0","0","0","0","1230","1213" +"239","Elekid","239","239","2","0","0",,"0","electric",,"Rainy",,"335","135","110","90","0","1","0","0","0","5","0","0","0","0","0","1073","1057" +"240","Magby","240","240","2","0","0",,"0","fire",,"Sunny/clear",,"349","151","108","90","0","1","0","0","0","5","0","0","0","0","0","1178","1161" +"241","Miltank","241","241","2","1","1","123","0","normal",,"Partly cloudy",,"558","157","211","190","0","1","1","0","0","10","0","0","0","0","0","2312","2279" +"242","Blissey","242","242","2","2","1",,"1","normal",,"Partly cloudy",,"868","129","229","510","0","1","1","0","0","0","0","0","0","0","0","3219","3173" +"243","Raikou","243","243","2","1","1","124","0","electric",,"Rainy",,"631","241","210","180","1","1","0","0","0","0","0","0","0","1","0","3349","3301" +"244","Entei","244","244","2","1","1","125","0","fire",,"Sunny/clear",,"641","235","176","230","1","1","0","0","0","0","0","0","0","1","0","3377","3329" +"245","Suicune","245","245","2","1","1","126","0","water",,"Rainy",,"615","180","235","200","1","1","0","0","0","0","0","0","0","1","0","2823","2783" +"246","Larvitar","246","246","2","1","0","127","0","rock","ground","Partly cloudy","Sunny/clear","308","115","93","100","0","1","1","0","0","10","0","0","0","0","0","904","891" +"247","Pupitar","247","247","2","2","0","127","0","rock","ground","Partly cloudy","Sunny/clear","428","155","133","140","0","1","1","0","0","0","0","0","0","0","0","1608","1585" +"248","Tyranitar","248","248","2","3","1","127","0","rock","dark","Partly cloudy","Fog","663","251","212","200","0","1","1","0","4","0","0","0","0","0","0","3670","3617" +"249","Lugia","249","249","2","1","1","128","0","psychic","flying","Windy",,"728","193","323","212","1","1","0","0","5","0","1","0","0","1","0","3598","3547" +"250","Ho Oh","250","250","2","1","1","129","0","fire","flying","Sunny/clear","Windy","706","239","274","193","1","1","0","0","0","0","0","0","0","1","0","3889","3833" +"251","Celebi","251","251","2","1","1","130","0","psychic","grass","Windy","Sunny/clear","620","210","210","200","2","0","0","0","0","0","0","0","0","0","0","3090","3046" +"252","Treecko","252","252","3","1","0","131","0","grass",,"Sunny/clear",,"308","124","104","80","0","1","1","0","0","5","0","1","0","0","0","923","909" +"253","Grovyle","253","253","3","2","0","131","0","grass",,"Sunny/clear",,"402","172","130","100","0","1","1","0","0","0","0","0","0","0","0","1508","1486" +"254","Sceptile","254","254","3","3","1","131","0","grass",,"Sunny/clear",,"543","223","180","140","0","1","0","0","0","0","0","0","0","0","0","2584","2547" +"255","Torchic","255","255","3","1","0","132","0","fire",,"Sunny/clear",,"312","130","92","90","0","1","1","0","0","5","0","1","0","0","0","959","946" +"256","Combusken","256","256","3","2","0","132","0","fire","fighting","Sunny/clear","Cloudy","398","163","115","120","0","1","1","0","0","0","0","0","0","0","0","1472","1451" +"257","Blaziken","257","257","3","3","1","132","0","fire","fighting","Sunny/clear","Cloudy","541","240","141","160","0","1","0","0","0","0","0","0","0","0","0","2631","2593" +"258","Mudkip","258","258","3","1","0","133","0","water",,"Rainy",,"319","126","93","100","0","1","1","0","0","5","0","1","0","0","0","981","967" +"259","Marshtomp","259","259","3","2","0","133","0","water","ground","Rainy","Sunny/clear","429","156","133","140","0","1","1","0","0","0","0","0","0","0","0","1617","1594" +"260","Swampert","260","260","3","3","1","133","0","water","ground","Rainy","Sunny/clear","583","208","175","200","0","1","0","0","0","0","0","0","0","0","0","2815","2774" +"261","Poochyena","261","261","3","1","0","134","0","dark",,"Fog",,"229","96","63","70","0","1","1","0","0","2","1","1","0","0","0","564","556" +"262","Mightyena","262","262","3","2","1","134","0","dark",,"Fog",,"448","171","137","140","0","1","1","0","0","0","1","0","0","0","0","1783","1757" +"263","Zigzagoon","263","263","3","1","0","135","0","normal",,"Partly cloudy",,"214","58","80","76","0","1","1","0","0","2","0","1","0","0","0","423","417" +"264","Linoone","264","264","3","2","1","135","0","normal",,"Partly cloudy",,"426","142","128","156","0","1","1","0","0","0","0","0","0","0","0","1533","1511" +"265","Wurmple","265","265","3","1","0","136","0","bug",,"Rainy",,"226","75","61","90","0","1","1","0","0","2","0","1","0","0","0","502","494" +"266","Silcoon","266","266","3","2","0","136","0","bug",,"Rainy",,"251","60","91","100","0","1","0","0","0","0","0","0","0","0","0","517","509" +"267","Beautifly","267","267","3","3","1","136","0","bug","flying","Rainy","Windy","407","189","98","120","0","1","0","0","0","0","0","0","0","0","0","1573","1551" +"268","Cascoon","268","268","3","2","0","137","0","bug",,"Rainy",,"251","60","91","100","0","1","0","0","0","0","0","0","0","0","0","517","509" +"269","Dustox","269","269","3","3","1","137","0","bug","poison","Rainy","Cloudy","390","98","172","120","0","1","0","0","0","0","0","0","0","0","0","1121","1105" +"270","Lotad","270","270","3","1","0","138","0","water","grass","Rainy","Sunny/clear","237","71","86","80","0","1","1","0","0","5","0","0","0","0","0","526","518" +"271","Lombre","271","271","3","2","0","138","0","water","grass","Rainy","Sunny/clear","360","112","128","120","0","1","1","0","0","0","0","0","0","0","0","1102","1086" +"272","Ludicolo","272","272","3","3","1","138","0","water","grass","Rainy","Sunny/clear","524","173","191","160","0","1","0","0","0","0","0","0","0","0","0","2229","2197" +"273","Seedot","273","273","3","1","0","139","0","grass",,"Sunny/clear",,"237","71","86","80","0","1","1","0","0","5","0","1","0","0","0","526","518" +"274","Nuzleaf","274","274","3","2","0","139","0","grass","dark","Sunny/clear","Fog","352","134","78","140","0","1","1","0","0","0","0","0","0","0","0","1117","1101" +"275","Shiftry","275","275","3","3","1","139","0","grass","dark","Sunny/clear","Fog","501","200","121","180","0","1","0","0","0","0","0","0","0","0","0","2186","2155" +"276","Taillow","276","276","3","1","0","140","0","normal","flying","Partly cloudy","Windy","247","106","61","80","0","3","1","0","0","0","0","1","1","0","0","642","632" +"277","Swellow","277","277","3","2","1","140","0","normal","flying","Partly cloudy","Windy","435","185","130","120","0","3","1","0","0","0","0","0","1","0","0","1747","1722" +"278","Wingull","278","278","3","1","0","141","0","water","flying","Rainy","Windy","247","106","61","80","0","3","1","0","0","0","0","1","1","0","0","642","632" +"279","Pelipper","279","279","3","2","1","141","0","water","flying","Rainy","Windy","484","175","189","120","0","3","1","0","0","0","0","0","1","0","0","1969","1941" +"280","Ralts","280","280","3","1","0","142","0","psychic","fairy","Windy","Cloudy","198","79","63","56","0","1","1","0","0","10","0","0","0","0","1","436","430" +"281","Kirlia","281","281","3","2","0","142","0","psychic","fairy","Windy","Cloudy","293","117","100","76","0","1","1","0","0","0","0","0","0","0","1","843","831" +"282","Gardevoir","282","282","3","3","1","142","0","psychic","fairy","Windy","Cloudy","593","237","220","136","0","1","0","0","0","0","0","0","0","0","0","2964","2922" +"283","Surskit","283","283","3","1","0","143","0","bug","water","Rainy",,"270","93","97","80","0","3","1","0","0","0","0","1","1","0","0","695","685" +"284","Masquerain","284","284","3","2","0","143","0","bug","flying","Rainy","Windy","493","192","161","140","0","3","1","0","0","0","0","0","1","0","0","2135","2104" +"285","Shroomish","285","285","3","1","0","144","0","grass",,"Sunny/clear",,"304","74","110","120","0","1","1","0","0","5","0","1","0","0","0","722","711" +"286","Breloom","286","286","3","2","0","144","0","grass","fighting","Sunny/clear","Cloudy","514","241","153","120","0","1","1","0","0","0","0","0","0","0","0","2407","2373" +"287","Slakoth","287","287","3","1","0","145","0","normal",,"Partly cloudy",,"328","104","104","120","0","1","1","0","0","10","0","0","0","0","0","942","928" +"288","Vigoroth","288","288","3","2","0","145","0","normal",,"Partly cloudy",,"478","159","159","160","0","1","1","0","0","0","0","0","0","0","0","1896","1869" +"289","Slaking","289","289","3","3","0","145","0","normal",,"Partly cloudy",,"746","290","183","273","0","1","0","0","0","0","0","0","0","0","0","4548","4484" +"290","Nincada","290","290","3","1","0","146","0","bug","ground","Rainy","Sunny/clear","295","80","153","62","0","0","0","0","0","0","0","0","0","0","0","674","665" +"291","Ninjask","291","291","3","2","0","146","0","bug","flying","Rainy","Windy","437","199","116","122","0","0","0","0","0","0","0","0","0","0","0","1790","1765" +"292","Shedinja","292","292","3","3","0","146","0","bug","ghost","Rainy","Fog","235","153","80","2","0","0","0","0","0","0","0","0","0","0","0","421","415" +"293","Whismur","293","293","3","1","0","147","0","normal",,"Partly cloudy",,"262","92","42","128","0","2","1","0","0","2","0","1","0","0","0","603","594" +"294","Loudred","294","294","3","2","0","147","0","normal",,"Partly cloudy",,"383","134","81","168","0","2","1","0","0","0","0","0","0","0","0","1233","1215" +"295","Exploud","295","295","3","3","0","147","0","normal",,"Partly cloudy",,"529","179","142","208","0","2","0","0","0","0","0","0","0","0","0","2267","2234" +"296","Makuhita","296","296","3","1","0","148","0","fighting",,"Cloudy",,"297","99","54","144","0","1","1","0","0","5","0","1","0","0","0","745","735" +"297","Hariyama","297","297","3","2","0","148","0","fighting",,"Cloudy",,"611","209","114","288","0","1","1","0","0","0","0","0","0","0","0","2765","2726" +"298","Azurill","298","298","3","0","0",,"0","normal","fairy","Partly cloudy","Cloudy","207","36","71","100","0","1","0","0","0","5","0","0","0","0","0","316","312" +"299","Nosepass","299","299","3","1","0","149","0","rock",,"Partly cloudy",,"378","82","236","60","0","2","1","0","0","5","0","1","0","0","1","831","819" +"300","Skitty","300","300","3","1","0","150","0","normal",,"Partly cloudy",,"268","84","84","100","0","1","1","0","0","5","0","1","0","0","0","659","650" +"301","Delcatty","301","301","3","2","0","151","0","normal",,"Partly cloudy",,"404","132","132","140","0","1","1","0","0","0","0","0","0","0","0","1385","1366" +"302","Sableye","302","302","3","1","0","152","0","dark","ghost","Fog",,"382","141","141","100","0","1","1","0","2","0","1","0","0","0","0","1305","1286" +"303","Mawile","303","303","3","1","0","153","0","steel","fairy","Snow","Cloudy","410","155","155","100","0","1","0","0","2","0","1","0","0","0","0","1484","1463" +"304","Aron","304","304","3","1","0","154","0","steel","rock","Snow","Partly cloudy","389","121","168","100","0","2","1","0","0","2","1","1","0","0","0","1232","1214" +"305","Lairon","305","305","3","2","0","154","0","steel","rock","Snow","Partly cloudy","518","158","240","120","0","2","1","0","0","0","1","0","0","0","0","2004","1976" +"306","Aggron","306","306","3","3","0","154","0","steel","rock","Snow","Partly cloudy","652","198","314","140","0","2","0","0","4","0","1","0","0","0","0","3004","2961" +"307","Meditite","307","307","3","1","0","155","0","fighting","psychic","Cloudy","Windy","245","78","107","60","0","1","1","0","0","0","0","1","0","0","0","555","547" +"308","Medicham","308","308","3","2","0","155","0","fighting","psychic","Cloudy","Windy","393","121","152","120","0","1","0","0","0","0","0","0","0","0","0","1275","1257" +"309","Electrike","309","309","3","1","0","156","0","electric",,"Rainy",,"281","123","78","80","0","1","1","0","0","0","0","1","0","0","0","810","798" +"310","Manectric","310","310","3","2","0","156","0","electric",,"Rainy",,"482","215","127","140","0","1","0","0","2","0","0","0","0","0","0","2131","2100" +"311","Plusle","311","311","3","1","0","157","0","electric",,"Rainy",,"434","167","147","120","0","1","1","0","0","0","0","0","0","0","0","1681","1657" +"312","Minun","312","312","3","1","0","158","0","electric",,"Rainy",,"434","147","167","120","0","1","1","0","0","0","0","0","0","0","0","1585","1563" +"313","Volbeat","313","313","3","1","0","159","0","bug",,"Rainy",,"444","143","171","130","0","3","1","1","0","0","0","0","1","0","0","1620","1597" +"314","Illumise","314","314","3","2","0","159","0","bug",,"Rainy",,"444","143","171","130","0","3","1","1","0","0","0","0","1","0","0","1620","1597" +"315","Roselia","315","315","3","1","0","160","0","grass","poison","Sunny/clear","Cloudy","434","186","148","100","0","1","1","0","0","0","0","0","0","0","1","1718","1694" +"316","Gulpin","316","316","3","1","0","161","0","poison",,"Cloudy",,"319","80","99","140","0","1","1","0","0","2","0","1","0","0","0","788","777" +"317","Swalot","317","317","3","2","0","161","0","poison",,"Cloudy",,"499","140","159","200","0","1","1","0","0","0","0","0","0","0","0","1872","1845" +"318","Carvanha","318","318","3","1","0","162","0","water","dark","Rainy","Fog","300","171","39","90","0","1","1","0","0","5","0","1","0","0","0","874","862" +"319","Sharpedo","319","319","3","1","0","163","0","water","dark","Rainy","Fog","466","243","83","140","0","1","1","0","0","0","0","0","0","0","0","1986","1957" +"320","Wailmer","320","320","3","1","0","164","0","water",,"Rainy",,"464","136","68","260","0","1","1","0","1","2","0","1","0","0","0","1424","1404" +"321","Wailord","321","321","3","2","0","164","0","water",,"Rainy",,"602","175","87","340","0","1","1","0","0","0","0","0","0","0","0","2258","2225" +"322","Numel","322","322","3","1","0","165","0","fire","ground","Sunny/clear",,"321","119","82","120","0","2","1","0","0","5","0","1","0","0","0","957","944" +"323","Camerupt","323","323","3","2","1","165","0","fire","ground","Sunny/clear",,"473","194","139","140","0","2","1","0","0","0","0","0","0","0","0","2016","1987" +"324","Torkoal","324","324","3","1","0","166","0","fire",,"Sunny/clear",,"525","151","234","140","0","2","1","1","0","0","0","0","0","0","0","2036","2007" +"325","Spoink","325","325","3","1","0","167","0","psychic",,"Windy",,"390","125","145","120","0","1","1","0","0","2","0","1","0","0","0","1285","1266" +"326","Grumpig","326","326","3","2","1","167","0","psychic",,"Windy",,"542","171","211","160","0","1","1","0","0","0","0","0","0","0","0","2310","2277" +"327","Spinda","327","327","3","1","0","168","0","normal",,"Partly cloudy",,"352","116","116","120","0","0","0","0","0","0","0","0","0","0","0","1088","1072" +"328","Trapinch","328","328","3","1","0","169","0","ground",,"Sunny/clear",,"330","162","78","90","0","2","1","0","0","10","0","0","0","0","0","1092","1076" +"329","Vibrava","329","329","3","2","0","169","0","ground","dragon","Sunny/clear","Windy","333","134","99","100","0","2","1","0","0","0","0","0","0","0","0","1065","1050" +"330","Flygon","330","330","3","3","1","169","0","ground","dragon","Sunny/clear","Windy","533","205","168","160","0","2","0","0","0","0","0","0","0","0","0","2458","2423" +"331","Cacnea","331","331","3","1","0","170","0","grass",,"Sunny/clear",,"330","156","74","100","0","2","1","0","0","5","0","0","0","0","0","1080","1065" +"332","Cacturne","332","332","3","2","1","170","0","grass","dark","Sunny/clear","Fog","476","221","115","140","0","2","1","0","0","0","0","0","0","0","0","2092","2062" +"333","Swablu","333","333","3","1","0","171","0","normal","flying","Partly cloudy","Windy","305","76","139","90","0","3","1","0","1","0","1","1","1","0","0","722","712" +"334","Altaria","334","334","3","2","1","171","0","dragon","flying","Windy",,"499","141","208","150","0","3","0","0","0","0","1","0","1","0","0","1868","1842" +"335","Zangoose","335","335","3","1","0","172","0","normal",,"Partly cloudy",,"492","222","124","146","0","1","1","1","0","0","0","0","0","0","0","2214","2182" +"336","Seviper","336","336","3","1","0","178","0","poison",,"Cloudy",,"460","196","118","146","0","1","1","1","0","0","0","0","0","0","0","1928","1900" +"337","Lunatone","337","337","3","1","0","179","0","rock","psychic","Partly cloudy","Windy","521","178","163","180","0","2","1","0","0","0","0","0","0","0","0","2245","2213" +"338","Solrock","338","338","3","1","0","180","0","rock","psychic","Partly cloudy","Windy","521","178","163","180","0","2","1","0","0","0","0","0","0","0","0","2245","2213" +"339","Barboach","339","339","3","1","0","181","0","water","ground","Rainy","Sunny/clear","276","93","83","100","0","1","1","0","0","2","0","1","0","0","0","716","705" +"340","Whiscash","340","340","3","2","1","181","0","water","ground","Rainy","Sunny/clear","513","151","142","220","0","1","1","0","0","0","0","0","0","0","0","1991","1963" +"341","Corphish","341","341","3","1","0","182","0","water",,"Rainy",,"340","141","113","86","0","1","1","0","0","5","0","1","0","0","0","1107","1092" +"342","Crawdaunt","342","342","3","2","1","182","0","water","dark","Rainy","Fog","506","224","156","126","0","1","1","0","0","0","0","0","0","0","0","2317","2284" +"343","Baltoy","343","343","3","1","0","183","0","ground","psychic","Sunny/clear","Windy","288","77","131","80","0","2","1","0","0","5","0","1","0","0","0","676","667" +"344","Claydol","344","344","3","2","1","183","0","ground","psychic","Sunny/clear","Windy","496","140","236","120","0","2","1","0","0","0","0","0","0","0","0","1782","1756" +"345","Lileep","345","345","3","1","0","184","0","rock","grass","Partly cloudy","Sunny/clear","391","105","154","132","0","2","1","0","0","5","0","0","0","0","0","1181","1164" +"346","Cradily","346","346","3","2","1","184","0","rock","grass","Partly cloudy","Sunny/clear","522","152","198","172","0","2","1","0","0","0","0","0","0","0","0","2081","2051" +"347","Anorith","347","347","3","1","0","185","0","rock","bug","Partly cloudy","Rainy","366","176","100","90","0","2","1","0","0","5","0","0","0","0","0","1310","1292" +"348","Armaldo","348","348","3","2","1","185","0","rock","bug","Partly cloudy","Rainy","555","222","183","150","0","2","1","0","0","0","0","0","0","0","0","2675","2637" +"349","Feebas","349","349","3","1","0","186","0","water",,"Rainy",,"171","29","102","40","0","1","1","0","0","10","0","0","0","0","0","220","217" +"350","Milotic","350","350","3","2","0","186","0","water",,"Rainy",,"624","192","242","190","0","1","0","0","0","0","0","0","0","0","0","2967","2925" +"351","Castform","351","351","3","1","0","187","0","normal",,"Partly cloudy",,"418","139","139","140","0","3","1","0","0","0","0","0","1","0","0","1486","1464" +"352","Kecleon","352","352","3","1","0","188","0","normal",,"Partly cloudy",,"493","161","212","120","0","0","0","0","0","0","0","0","0","0","0","1924","1896" +"353","Shuppet","353","353","3","1","0","189","0","ghost",,"Fog",,"292","138","66","88","0","1","1","0","0","5","1","1","0","0","0","872","860" +"354","Banette","354","354","3","2","0","189","0","ghost",,"Fog",,"473","218","127","128","0","1","1","0","0","0","1","0","0","0","0","2073","2044" +"355","Duskull","355","355","3","1","0","190","0","ghost",,"Fog",,"272","70","162","40","0","1","1","0","0","5","1","1","0","0","0","523","516" +"356","Dusclops","356","356","3","2","0","190","0","ghost",,"Fog",,"438","124","234","80","0","1","1","0","0","0","1","0","0","0","1","1335","1316" +"357","Tropius","357","357","3","1","0","191","0","grass","flying","Sunny/clear","Windy","499","136","165","198","0","3","1","1","0","0","0","0","1","0","0","1846","1820" +"358","Chimecho","358","358","3","1","0","192","0","psychic",,"Windy",,"499","175","174","150","0","3","1","0","0","0","0","0","1","0","0","2095","2065" +"359","Absol","359","359","3","1","0","193","0","dark",,"Fog",,"496","246","120","130","0","1","0","0","4","0","1","0","0","0","0","2280","2248" +"360","Wynaut","360","360","3","0","0",,"0","psychic",,"Windy",,"317","41","86","190","0","1","0","0","0","5","0","0","0","0","0","503","496" +"361","Snorunt","361","361","3","1","0","194","0","ice",,"Snow",,"290","95","95","100","0","1","1","0","1","5","1","0","0","0","1","772","761" +"362","Glalie","362","362","3","2","1",,"0","ice",,"Snow",,"484","162","162","160","0","1","1","0","0","0","1","0","0","0","0","1945","1917" +"363","Spheal","363","363","3","1","0",,"0","ice","water","Snow","Rainy","325","95","90","140","0","1","1","0","0","5","0","1","0","0","0","876","863" +"364","Sealeo","364","364","3","2","0",,"0","ice","water","Snow","Rainy","449","137","132","180","0","1","1","0","0","0","0","0","0","0","0","1607","1584" +"365","Walrein","365","365","3","3","1",,"0","ice","water","Snow","Rainy","578","182","176","220","0","1","0","0","0","0","0","0","0","0","0","2606","2569" +"366","Clamperl","366","366","3","1","0",,"0","water",,"Rainy",,"352","133","149","70","0","0","0","0","0","0","0","0","0","0","0","1091","1075" +"367","Huntail","367","367","3","2","0",,"0","water",,"Rainy",,"501","197","194","110","0","0","0","0","0","0","0","0","0","0","0","2140","2109" +"368","Gorebyss","368","368","3","2","0",,"0","water",,"Rainy",,"515","211","194","110","0","0","0","0","0","0","0","0","0","0","0","2281","2248" +"369","Relicanth","369","369","3","1","0",,"0","water","rock","Rainy","Partly cloudy","596","162","234","200","0","1","1","1","0","0","0","0","0","0","0","2557","2521" +"370","Luvdisc","370","370","3","1","0",,"0","water",,"Rainy",,"301","81","134","86","0","1","1","0","0","0","0","1","0","0","0","735","725" +"371","Bagon","371","371","3","1","0",,"0","dragon",,"Windy",,"331","134","107","90","0","3","1","0","0","0","0","0","1","0","0","1053","1038" +"372","Shelgon","372","372","3","2","0",,"0","dragon",,"Windy",,"481","172","179","130","0","3","1","0","0","0","0","0","1","0","0","1958","1930" +"373","Salamence","373","373","3","3","1",,"0","dragon","flying","Windy",,"635","277","168","190","0","3","0","0","0","0","0","0","1","0","0","3532","3481" +"374","Beldum","374","374","3","1","0",,"0","steel","psychic","Snow","Windy","317","96","141","80","0","3","1","0","0","0","0","0","1","0","0","843","831" +"375","Metang","375","375","3","2","0",,"0","steel","psychic","Snow","Windy","443","138","185","120","0","3","1","0","0","0","0","0","1","0","0","1570","1547" +"376","Metagross","376","376","3","3","1",,"0","steel","psychic","Snow","Windy","665","257","248","160","0","3","0","0","0","0","0","0","1","0","0","3644","3592" +"377","Regirock","377","377","3","1","0",,"0","rock",,"Partly cloudy",,"695","179","356","160","1","0","0","0","0","0","0","0","0","0","0","3087","3043" +"378","Regice","378","378","3","1","0",,"0","ice",,"Snow",,"695","179","356","160","1","0","0","0","0","0","0","0","0","0","0","3087","3043" +"379","Registeel","379","379","3","1","0",,"0","steel",,"Snow",,"588","143","285","160","1","0","0","0","0","0","0","0","0","0","0","2261","2228" +"380","Latias","380","380","3","1","0",,"0","dragon","psychic","Windy",,"656","228","268","160","1","0","0","0","0","0","0","0","0","0","0","3377","3329" +"381","Latios","381","381","3","1","0",,"0","dragon","psychic","Windy",,"656","268","228","160","1","0","0","0","0","0","0","0","0","0","0","3644","3592" +"382","Kyogre","382","382","3","1","0",,"0","water",,"Rainy",,"703","270","251","182","1","1","0","0","0","0","0","0","0","0","0","4074","4016" +"383","Groudon","383","383","3","1","0",,"0","ground",,"Sunny/clear",,"703","270","251","182","1","1","0","0","0","0","0","0","0","1","0","4074","4016" +"384","Rayquaza","384","384","3","1","0",,"0","dragon","flying","Windy",,"645","284","170","191","1","3","0","0","0","0","0","0","1","0","0","3645","3593" +"385","Jirachi","385","385","3","1","0",,"0","steel","psychic","Snow","Windy","620","210","210","200","2","0","0","0","0","0","0","0","0","0","0","3090","3046" +"386","Deoxys Defense","386","386-defense","3","1","0",,"0","psychic",,"Windy",,"574","144","330","100","2","0","0","0","0","0","0","0","0","0","0","1978","1949" +"387","Deoxys Normal","386","386","3","1","0",,"0","psychic",,"Windy",,"560","345","115","100","2","0","0","0","0","0","0","0","0","0","0","2749","2709" +"388","Deoxys Attack","386","386-attack","3","1","0",,"0","psychic",,"Windy",,"560","414","46","100","2","0","0","0","0","0","0","0","0","0","0","2244","2212" +"389","Deoxys Speed","386","386-speed","3","1","0",,"0","psychic",,"Windy",,"548","230","218","100","2","0","0","0","0","0","0","0","0","0","0","2504","2469" +"390","Turtwig","387","387","4","1","0",,"0","grass",,"Sunny/clear",,"344","119","115","110","0","0","0","0","0","0","0","0","0","0","0","1066","1051" +"391","Grotle","388","388","4","2","0",,"0","grass",,"Sunny/clear",,"459","157","152","150","0","0","0","0","0","0","0","0","0","0","0","1783","1757" +"392","Torterra","389","389","4","3","0",,"0","grass","ground","Sunny/clear",,"589","202","197","190","0","0","0","0","0","0","0","0","0","0","0","2825","2785" +"393","Chimchar","390","390","4","1","0",,"0","fire",,"Sunny/clear",,"287","113","86","88","0","0","0","0","0","0","0","0","0","0","0","815","803" +"394","Monferno","391","391","4","2","0",,"0","fire","fighting","Sunny/clear","Cloudy","391","158","105","128","0","0","0","0","0","0","0","0","0","0","0","1415","1395" +"395","Infernape","392","392","4","3","0",,"0","fire","fighting","Sunny/clear","Cloudy","525","222","151","152","0","0","0","0","0","0","0","0","0","0","0","2464","2429" +"396","Piplup","393","393","4","1","0",,"0","water",,"Rainy",,"321","112","103","106","0","0","0","0","0","0","0","0","0","0","0","947","934" +"397","Prinplup","394","394","4","2","0",,"0","water",,"Rainy",,"421","150","143","128","0","0","0","0","0","0","0","0","0","0","0","1549","1526" +"398","Empoleon","395","395","4","3","0",,"0","water","steel","Rainy","Snow","571","210","193","168","0","0","0","0","0","0","0","0","0","0","0","2741","2702" +"399","Starly","396","396","4","1","0",,"0","normal","flying","Partly cloudy","Windy","239","101","58","80","0","0","0","0","0","0","0","0","0","0","0","603","594" +"400","Staravia","397","397","4","2","0",,"0","normal","flying","Partly cloudy","Windy","351","142","99","110","0","0","0","0","0","0","0","0","0","0","0","1170","1153" +"401","Staraptor","398","398","4","3","0",,"0","normal","flying","Partly cloudy","Windy","549","234","145","170","0","0","0","0","0","0","0","0","0","0","0","2675","2637" +"402","Bidoof","399","399","4","1","0",,"0","normal",,"Partly cloudy",,"271","80","73","118","0","0","0","0","0","0","0","0","0","0","0","641","632" +"403","Bibarel","400","400","4","2","0",,"0","normal","water","Partly cloudy","Rainy","439","162","119","158","0","0","0","0","0","0","0","0","0","0","0","1683","1659" +"404","Kricketot","401","401","4","1","0",,"0","bug",,"Rainy",,"193","45","74","74","0","0","0","0","0","0","0","0","0","0","0","333","328" +"405","Kricketune","402","402","4","2","0",,"0","bug",,"Rainy",,"414","160","100","154","0","0","0","0","0","0","0","0","0","0","0","1523","1501" +"406","Shinx","403","403","4","1","0",,"0","electric",,"Rainy",,"271","117","64","90","0","0","0","0","0","0","0","0","0","0","0","750","740" +"407","Luxio","404","404","4","2","0",,"0","electric",,"Rainy",,"374","159","95","120","0","0","0","0","0","0","0","0","0","0","0","1324","1305" +"408","Luxray","405","405","4","3","0",,"0","electric",,"Rainy",,"548","232","156","160","0","0","0","0","0","0","0","0","0","0","0","2668","2630" +"409","Budew","406","406","4","0","0",,"0","grass","poison","Sunny/clear","Cloudy","297","91","126","80","0","0","0","0","0","0","0","0","0","0","0","766","755" +"410","Roserade","407","407","4","2","0",,"0","grass","poison","Sunny/clear","Cloudy","569","243","206","120","0","0","0","0","0","0","0","0","0","0","0","2783","2743" +"411","Cranidos","408","408","4","1","0",,"0","rock",,"Partly cloudy",,"427","218","75","134","0","0","0","0","0","0","0","0","0","0","0","1685","1661" +"412","Rampardos","409","409","4","2","0",,"0","rock",,"Partly cloudy",,"603","295","114","194","0","0","0","0","0","0","0","0","0","0","0","3179","3133" +"413","Shieldon","410","410","4","1","0",,"0","rock","steel","Partly cloudy","Snow","344","76","208","60","0","0","0","0","0","0","0","0","0","0","0","735","724" +"414","Bastiodon","411","411","4","2","0",,"0","rock","steel","Partly cloudy","Snow","513","94","299","120","0","0","0","0","0","0","0","0","0","0","0","1401","1381" +"415","Burmy (Plant Cloak)","412","412","4","1","0",,"0","bug",,"Rainy",,"216","53","83","80","0","0","0","0","0","0","0","0","0","0","0","409","403" +"416","Burmy (Trash Cloak)","412","412-trash","4","1","0",,"0","bug",,"Rainy",,"216","53","83","80","0","0","0","0","0","0","0","0","0","0","0","409","403" +"417","Burmy (Sandy Cloak)","412","412-sandy","4","1","0",,"0","bug",,"Rainy",,"216","53","83","80","0","0","0","0","0","0","0","0","0","0","0","409","403" +"418","Wormadam (Plant Cloak)","413","413","4","2","0",,"0","bug","grass","Rainy","Sunny/clear","450","141","189","120","0","0","0","0","0","0","0","0","0","0","0","1616","1593" +"419","Wormadam (Trash Cloak)","413","413-trash","4","2","0",,"0","bug","grass","Rainy","Sunny/clear","450","141","189","120","0","0","0","0","0","0","0","0","0","0","0","1616","1593" +"420","Wormadam (Sandy Cloak)","413","413-sandy","4","2","0",,"0","bug","grass","Rainy","Sunny/clear","450","141","189","120","0","0","0","0","0","0","0","0","0","0","0","1616","1593" +"421","Mothim","414","414","4","2","0",,"0","bug","flying","Rainy","Windy","423","185","98","140","0","0","0","0","0","0","0","0","0","0","0","1653","1629" +"422","Combee","415","415","4","1","0",,"0","bug","flying","Rainy","Windy","202","59","83","60","0","0","0","0","0","0","0","0","0","0","0","396","390" +"423","Vespiquen","416","416","4","2","0",,"0","bug","flying","Rainy","Windy","479","149","190","140","0","0","0","0","0","0","0","0","0","0","0","1825","1799" +"424","Pachirisu","417","417","4","1","0",,"0","electric",,"Rainy",,"396","94","182","120","0","0","0","0","0","0","0","0","0","0","0","1110","1094" +"425","Buizel","418","418","4","1","0",,"0","water",,"Rainy",,"312","132","70","110","0","0","0","0","0","0","0","0","0","0","0","946","932" +"426","Floatzel","419","419","4","2","0",,"0","water",,"Rainy",,"509","221","118","170","0","0","0","0","0","0","0","0","0","0","0","2312","2279" +"427","Cherubi","420","420","4","1","0",,"0","grass",,"Sunny/clear",,"294","108","96","90","0","0","0","0","0","0","0","0","0","0","0","829","817" +"428","Cherrim","421","421","4","2","0",,"0","grass",,"Sunny/clear",,"467","170","157","140","0","0","0","0","0","0","0","0","0","0","0","1886","1859" +"429","Shellos","422","422","4","1","0",,"0","water",,"Rainy",,"366","103","111","152","0","0","0","0","0","0","0","0","0","0","0","1069","1053" +"430","Gastrodon","423","423","4","2","0",,"0","water","ground","Rainy","Sunny/clear","540","169","149","222","0","0","0","0","0","0","0","0","0","0","0","2265","2233" +"431","Ambipom","424","424","4","2","0",,"0","normal",,"Partly cloudy",,"498","205","143","150","0","0","0","0","0","0","0","0","0","0","0","2218","2186" +"432","Drifloon","425","425","4","1","0",,"0","ghost","flying","Fog","Windy","382","117","85","180","0","0","0","0","0","0","0","0","0","0","0","1151","1134" +"433","Drifblim","426","426","4","2","0",,"0","ghost","flying","Fog","Windy","587","180","107","300","0","0","0","0","0","0","0","0","0","0","0","2387","2353" +"434","Buneary","427","427","4","1","0",,"0","normal",,"Partly cloudy",,"351","130","111","110","0","0","0","0","0","0","0","0","0","0","0","1136","1120" +"435","Lopunny","428","428","4","2","0",,"0","normal",,"Partly cloudy",,"486","156","200","130","0","0","0","0","0","0","0","0","0","0","0","1885","1858" +"436","Mismagius","429","429","4","2","0",,"0","ghost",,"Fog",,"542","211","211","120","0","0","0","0","0","0","0","0","0","0","0","2465","2430" +"437","Honchkrow","430","430","4","2","0",,"0","dark","flying","Fog","Windy","546","243","103","200","0","0","0","0","0","0","0","0","0","0","0","2566","2529" +"438","Glameow","431","431","4","1","0",,"0","normal",,"Partly cloudy",,"292","109","85","98","0","0","0","0","0","0","0","0","0","0","0","823","811" +"439","Purugly","432","432","4","2","0",,"0","normal",,"Partly cloudy",,"450","172","136","142","0","0","0","0","0","0","0","0","0","0","0","1798","1772" +"440","Chingling","433","433","4","1","0",,"0","psychic",,"Windy",,"298","114","94","90","0","0","0","0","0","0","0","0","0","0","0","861","849" +"441","Stunky","434","434","4","1","0",,"0","poison","dark","Cloudy","Fog","340","121","93","126","0","0","0","0","0","0","0","0","0","0","0","1048","1033" +"442","Skuntank","435","435","4","2","0",,"0","poison","dark","Cloudy","Fog","525","184","135","206","0","0","0","0","0","0","0","0","0","0","0","2262","2230" +"443","Bronzor","436","436","4","1","0",,"0","steel","psychic","Snow","Windy","311","43","154","114","0","0","0","0","0","0","0","0","0","0","0","534","527" +"444","Bronzong","437","437","4","2","0",,"0","steel","psychic","Snow","Windy","508","161","213","134","0","0","0","0","0","0","0","0","0","0","0","2026","1997" +"445","Bonsly","438","438","4","0","0",,"0","rock",,"Partly cloudy",,"379","124","155","100","0","0","0","0","0","0","0","0","0","0","0","1213","1196" +"446","Mime Jr.","439","439","4","0","0",,"0","psychic","fairy","Windy","Cloudy","329","125","164","40","0","0","0","0","0","0","0","0","0","0","0","867","855" +"447","Happiny","440","440","4","0","0",,"0","normal",,"Partly cloudy",,"330","25","105","200","0","0","0","0","0","0","0","0","0","0","0","401","395" +"448","Chatot","441","441","4","1","0",,"0","normal","flying","Partly cloudy","Windy","427","183","92","152","0","0","0","0","0","0","0","0","0","0","0","1653","1629" +"449","Spiritomb","442","442","4","1","0",,"0","ghost","dark","Fog",,"468","169","199","100","0","0","0","0","0","0","0","0","0","0","0","1802","1777" +"450","Gible","443","443","4","1","0",,"0","dragon","ground","Windy","Sunny/clear","324","124","84","116","0","0","0","0","0","0","0","0","0","0","0","988","974" +"451","Gabite","444","444","4","2","0",,"0","dragon","ground","Windy","Sunny/clear","438","172","130","136","0","0","0","0","0","0","0","0","0","0","0","1728","1703" +"452","Garchomp","445","445","4","3","0",,"0","dragon","ground","Windy","Sunny/clear","675","261","198","216","0","0","0","0","0","0","0","0","0","0","0","3823","3769" +"453","Munchlax","446","446","4","0","0",,"0","normal",,"Partly cloudy",,"544","137","137","270","0","0","0","0","0","0","0","0","0","0","0","1975","1947" +"454","Riolu","447","447","4","1","0",,"0","fighting",,"Cloudy",,"285","127","78","80","0","0","0","0","0","0","0","0","0","0","0","833","821" +"455","Lucario","448","448","4","2","0",,"0","fighting","steel","Cloudy","Snow","520","236","144","140","0","0","0","0","0","0","0","0","0","0","0","2461","2425" +"456","Hippopotas","449","449","4","1","0",,"0","ground",,"Sunny/clear",,"394","124","134","136","0","0","0","0","0","0","0","0","0","0","0","1302","1283" +"457","Hippowdon","450","450","4","2","0",,"0","ground",,"Sunny/clear",,"629","201","212","216","0","0","0","0","0","0","0","0","0","0","0","3089","3045" +"458","Skorupi","451","451","4","1","0",,"0","poison","bug","Cloudy","Rainy","341","93","168","80","0","0","0","0","0","0","0","0","0","0","0","889","876" +"459","Drapion","452","452","4","2","0",,"0","poison","dark","Cloudy","Fog","539","180","219","140","0","0","0","0","0","0","0","0","0","0","0","2319","2286" +"460","Croagunk","453","453","4","1","0",,"0","poison","fighting","Cloudy",,"288","116","76","96","0","0","0","0","0","0","0","0","0","0","0","822","810" +"461","Toxicroak","454","454","4","2","0",,"0","poison","fighting","Cloudy",,"510","211","133","166","0","0","0","0","0","0","0","0","0","0","0","2310","2277" +"462","Carnivine","455","455","4","1","0",,"0","grass",,"Sunny/clear",,"471","187","136","148","0","0","0","0","0","0","0","0","0","0","0","1979","1951" +"463","Finneon","456","456","4","1","0",,"0","water",,"Rainy",,"313","96","119","98","0","0","0","0","0","0","0","0","0","0","0","853","840" +"464","Lumineon","457","457","4","2","0",,"0","water",,"Rainy",,"455","142","175","138","0","0","0","0","0","0","0","0","0","0","0","1671","1648" +"465","Mantyke","458","458","4","0","0",,"0","water","flying","Rainy","Windy","407","105","212","90","0","0","0","0","0","0","0","0","0","0","0","1157","1140" +"466","Snover","459","459","4","1","0",,"0","grass","ice","Sunny/clear","Snow","345","115","110","120","0","0","0","0","0","0","0","0","0","0","0","1054","1039" +"467","Abomasnow","460","460","4","2","0",,"0","grass","ice","Sunny/clear","Snow","521","178","163","180","0","0","0","0","0","0","0","0","0","0","0","2245","2213" +"468","Weavile","461","461","4","2","0",,"0","dark","ice","Fog","Snow","565","243","182","140","0","0","0","0","0","0","0","0","0","0","0","2815","2775" +"469","Magnezone","462","462","4","3","0",,"0","electric","steel","Rainy","Snow","595","238","217","140","0","0","0","0","0","0","0","0","0","0","0","2996","2953" +"470","Lickilicky","463","463","4","2","0",,"1","normal",,"Partly cloudy",,"562","161","181","220","0","0","0","0","0","0","0","0","0","0","0","2359","2325" +"471","Rhyperior","464","464","4","3","0",,"0","ground","rock","Sunny/clear","Partly cloudy","695","241","224","230","0","0","0","0","0","0","0","0","0","0","0","3869","3813" +"472","Tangrowth","465","465","4","2","0",,"0","grass",,"Sunny/clear",,"626","207","219","200","0","0","0","0","0","0","0","0","0","0","0","3110","3065" +"473","Electivire","466","466","4","2","0",,"1","electric",,"Rainy",,"572","249","173","150","0","0","0","0","0","0","0","0","0","0","0","2904","2862" +"474","Magmortar","467","467","4","2","0","62","1","fire",,"Sunny/clear",,"583","247","186","150","0","0","0","0","0","0","0","0","0","0","0","2980","2937" +"475","Togekiss","468","468","4","2","0",,"0","fairy","flying","Cloudy","Windy","622","225","227","170","0","0","0","0","0","0","0","0","0","0","0","3171","3126" +"476","Yanmega","469","469","4","2","0",,"0","bug","flying","Rainy","Windy","575","231","172","172","0","0","0","0","0","0","0","0","0","0","0","2873","2832" +"477","Leafeon","470","470","4","2","0",,"1","grass",,"Sunny/clear",,"600","216","254","130","0","0","0","0","0","0","0","0","0","0","0","2849","2808" +"478","Glaceon","471","471","4","2","0",,"1","ice",,"Snow",,"580","238","212","130","0","0","0","0","0","0","0","0","0","0","0","2866","2825" +"479","Gliscor","472","472","4","2","0",,"0","ground","flying","Sunny/clear","Windy","583","185","248","150","0","0","0","0","0","0","0","0","0","0","0","2602","2565" +"480","Mamoswine","473","473","4","3","0",,"0","ice","ground","Snow","Sunny/clear","624","247","157","220","0","0","0","0","0","0","0","0","0","0","0","3289","3242" +"481","Porygon-Z","474","474","4","3","0",,"0","normal",,"Partly cloudy",,"587","264","153","170","0","0","0","0","0","0","0","0","0","0","0","3072","3028" +"482","Gallade","475","475","4","Evolved","0",,"0","psychic","fighting","Windy","Cloudy","593","237","220","136","0","0","0","0","0","0","0","0","0","0","0","2964","2922" +"483","Probopass","476","476","4","2","0",,"0","rock","steel","Partly cloudy","Snow","533","135","278","120","0","0","0","0","0","0","0","0","0","0","0","1863","1836" +"484","Dusknoir","477","477","4","3","0",,"0","ghost",,"Fog",,"524","180","254","90","0","0","0","0","0","0","0","0","0","0","0","2046","2017" +"485","Froslass","478","478","4","3","0",,"0","ice","ghost","Snow","Fog","461","171","150","140","0","0","0","0","0","0","0","0","0","0","0","1857","1831" +"486","Rotom (Heat Rotom)","479","479-heat","4","1","0",,"0","electric","ghost","Rainy","Fog","444","185","159","100","0","0","0","0","0","0","0","0","0","0","0","1767","1741" +"487","Rotom (Wash Rotom)","479","479-wash","4","1","0",,"0","electric","ghost","Rainy","Fog","444","185","159","100","0","0","0","0","0","0","0","0","0","0","0","1767","1741" +"488","Rotom (Frost Rotom)","479","479-frost","4","1","0",,"0","electric","ghost","Rainy","Fog","444","185","159","100","0","0","0","0","0","0","0","0","0","0","0","1767","1741" +"489","Rotom (Fan Rotom)","479","479-spin","4","1","0",,"0","electric","ghost","Rainy","Fog","444","185","159","100","0","0","0","0","0","0","0","0","0","0","0","1767","1741" +"490","Rotom (Mow Rotom)","479","479-mow","4","1","0",,"0","electric","ghost","Rainy","Fog","444","185","159","100","0","0","0","0","0","0","0","0","0","0","0","1767","1741" +"491","Rotom (Normal Rotom)","479","479","4","1","0",,"0","electric","ghost","Rainy","Fog","444","185","159","100","0","0","0","0","0","0","0","0","0","0","0","1767","1741" +"492","Uxie","480","480","4","1","0",,"0","psychic",,"Windy",,"576","156","270","150","1","0","0","0","0","0","0","0","0","0","0","2316","2282" +"493","Mesprit","481","481","4","1","0",,"0","psychic",,"Windy",,"584","212","212","160","1","0","0","0","0","0","0","0","0","0","0","2825","2785" +"494","Azelf","482","482","4","1","0",,"0","psychic",,"Windy",,"571","270","151","150","1","0","0","0","0","0","0","0","0","0","0","2945","2903" +"495","Dialga","483","483","4","1","0",,"0","steel","dragon","Snow","Windy","744","302","242","200","1","0","0","0","0","0","0","0","0","0","0","4654","4587" +"496","Palkia","484","484","4","1","0",,"0","water","dragon","Rainy","Windy","735","308","247","180","1","0","0","0","0","0","0","0","0","0","0","4559","4494" +"497","Heatran","485","485","4","1","0",,"0","fire","steel","Sunny/clear","Snow","646","251","213","182","1","0","0","0","0","0","0","0","0","0","0","3521","3470" +"498","Regigigas","486","486","4","1","0",,"0","normal",,"Partly cloudy",,"766","315","231","220","1","0","0","0","0","0","0","0","0","0","0","4955","4884" +"499","Giratina (Altered Forme)","487","487","4","1","0",,"0","ghost","dragon","Fog","Windy","753","206","247","300","1","0","0","0","0","0","0","0","0","0","0","3965","3908" +"500","Giratina (Origin Forme)","487","487-origin","4","1","0",,"0","ghost","dragon","Fog","Windy","753","206","247","300","1","0","0","0","0","0","0","0","0","0","0","3965","3908" +"501","Cresselia","488","488","4","1","0",,"0","psychic",,"Windy",,"655","152","263","240","1","0","0","0","0","0","0","0","0","0","0","2777","2737" +"502","Phione","489","489","4","1","0",,"0","water",,"Rainy",,"484","162","162","160","2","0","0","0","0","0","0","0","0","0","0","1945","1917" +"503","Manaphy","490","490","4","2","0",,"0","water",,"Rainy",,"620","210","210","200","2","0","0","0","0","0","0","0","0","0","0","3090","3046" +"504","Darkrai","491","491","4","1","0",,"0","dark",,"Fog",,"623","285","198","140","1","0","0","0","0","0","0","0","0","0","0","3404","3355" +"505","Shaymin (Land Forme)","492","492","4","1","0",,"0","grass",,"Sunny/clear",,"620","210","210","200","1","0","0","0","0","0","0","0","0","0","0","3090","3046" +"506","Shaymin (Sky Forme)","492","492-sky","4","1","0",,"0","grass",,"Sunny/clear",,"620","210","210","200","1","0","0","0","0","0","0","0","0","0","0","3090","3046" +"507","Arceus","493","493","4","1","0",,"0","normal",,"Partly cloudy",,"764","262","262","240","1","0","0","0","0","0","0","0","0","0","0","4598","4532" +"508","Victini","494","494","5","Lower","0",,"0","psychic","fire","Windy","Sunny/clear","620","210","210","200","1","0","0","0","0","0","0","0","0","0","0","3090","3046" +"509","Snivy","495","495","5",,"0",,"0","grass",,"Sunny/clear",,"285","88","107","90","0","0","0","0","0","0","0","0","0","0","0","728","717" +"510","Servine","496","496","5",,"0",,"0","grass",,"Sunny/clear",,"394","122","152","120","0","0","0","0","0","0","0","0","0","0","0","1284","1266" +"511","Serperior","497","497","5",,"0",,"0","grass",,"Sunny/clear",,"515","161","204","150","0","0","0","0","0","0","0","0","0","0","0","2089","2059" +"512","Tepig","498","498","5",,"0",,"0","fire",,"Sunny/clear",,"330","115","85","130","0","0","0","0","0","0","0","0","0","0","0","977","963" +"513","Pignite","499","499","5",,"0",,"0","fire","fighting","Sunny/clear","Cloudy","459","173","106","180","0","0","0","0","0","0","0","0","0","0","0","1803","1777" +"514","Emboar","500","500","5","Evolved","0",,"0","fire","fighting","Sunny/clear","Cloudy","582","235","127","220","0","0","0","0","0","0","0","0","0","0","0","2852","2811" +"515","Oshawott","501","501","5",,"0",,"0","water",,"Rainy",,"312","117","85","110","0","0","0","0","0","0","0","0","0","0","0","921","908" +"516","Dewott","502","502","5",,"0",,"0","water",,"Rainy",,"425","159","116","150","0","0","0","0","0","0","0","0","0","0","0","1597","1574" +"517","Samurott","503","503","5","Lower","0",,"0","water",,"Rainy",,"566","212","164","190","0","0","0","0","0","0","0","0","0","0","0","2715","2677" +"518","Patrat","504","504","5",,"0",,"0","normal",,"Partly cloudy",,"261","98","73","90","0","0","0","0","0","0","0","0","0","0","0","678","668" +"519","Watchog","505","505","5",,"0",,"0","normal",,"Partly cloudy",,"424","165","139","120","0","0","0","0","0","0","0","0","0","0","0","1621","1597" +"520","Lillipup","506","506","5",,"0",,"0","normal",,"Partly cloudy",,"283","107","86","90","0","0","0","0","0","0","0","0","0","0","0","784","773" +"521","Herdier","507","507","5",,"0",,"0","normal",,"Partly cloudy",,"401","145","126","130","0","0","0","0","0","0","0","0","0","0","0","1428","1408" +"522","Stoutland","508","508","5","Lower","0",,"0","normal",,"Partly cloudy",,"558","206","182","170","0","0","0","0","0","0","0","0","0","0","0","2635","2597" +"523","Purrloin","509","509","5",,"0",,"0","dark",,"Fog",,"253","98","73","82","0","0","0","0","0","0","0","0","0","0","0","652","642" +"524","Liepard","510","510","5",,"0",,"0","dark",,"Fog",,"421","187","106","128","0","0","0","0","0","0","0","0","0","0","0","1659","1635" +"525","Pansage","511","511","5",,"0",,"0","grass",,"Sunny/clear",,"298","104","94","100","0","0","0","0","0","0","0","0","0","0","0","832","820" +"526","Simisage","512","512","5",,"0",,"0","grass",,"Sunny/clear",,"489","206","133","150","0","0","0","0","0","0","0","0","0","0","0","2156","2126" +"527","Pansear","513","513","5",,"0",,"0","fire",,"Sunny/clear",,"298","104","94","100","0","0","0","0","0","0","0","0","0","0","0","832","820" +"528","Simisear","514","514","5",,"0",,"0","fire",,"Sunny/clear",,"489","206","133","150","0","0","0","0","0","0","0","0","0","0","0","2156","2126" +"529","Panpour","515","515","5",,"0",,"0","water",,"Rainy",,"298","104","94","100","0","0","0","0","0","0","0","0","0","0","0","832","820" +"530","Simipour","516","516","5",,"0",,"0","water",,"Rainy",,"489","206","133","150","0","0","0","0","0","0","0","0","0","0","0","2156","2126" +"531","Munna","517","517","5",,"0",,"0","psychic",,"Windy",,"360","111","97","152","0","0","0","0","0","0","0","0","0","0","0","1076","1060" +"532","Musharna","518","518","5","Evolved","0",,"0","psychic",,"Windy",,"586","183","171","232","0","0","0","0","0","0","0","0","0","0","0","2650","2612" +"533","Pidove","519","519","5",,"0",,"0","normal","flying","Partly cloudy","Windy","287","98","89","100","0","0","0","0","0","0","0","0","0","0","0","771","760" +"534","Tranquill","520","520","5",,"0",,"0","normal","flying","Partly cloudy","Windy","385","144","117","124","0","0","0","0","0","0","0","0","0","0","0","1345","1325" +"535","Unfezant","521","521","5","Lower","0",,"0","normal","flying","Partly cloudy","Windy","546","226","160","160","0","0","0","0","0","0","0","0","0","0","0","2634","2596" +"536","Blitzle","522","522","5",,"0",,"0","electric",,"Rainy",,"272","118","64","90","0","0","0","0","0","0","0","0","0","0","0","756","745" +"537","Zebstrika","523","523","5",,"0",,"0","electric",,"Rainy",,"497","211","136","150","0","0","0","0","0","0","0","0","0","0","0","2228","2196" +"538","Roggenrola","524","524","5",,"0",,"0","rock",,"Partly cloudy",,"367","121","136","110","0","0","0","0","0","0","0","0","0","0","0","1166","1150" +"539","Boldore","525","525","5",,"0",,"0","rock",,"Partly cloudy",,"487","174","173","140","0","0","0","0","0","0","0","0","0","0","0","2015","1986" +"540","Gigalith","526","526","5","Lower","0",,"0","rock",,"Partly cloudy",,"619","226","223","170","0","0","0","0","0","0","0","0","0","0","0","3158","3113" +"541","Woobat","527","527","5",,"0",,"0","psychic","flying","Windy",,"322","107","85","130","0","0","0","0","0","0","0","0","0","0","0","917","904" +"542","Swoobat","528","528","5",,"0",,"0","psychic","flying","Windy",,"414","161","119","134","0","0","0","0","0","0","0","0","0","0","0","1553","1531" +"543","Drilbur","529","529","5",,"0",,"0","ground",,"Sunny/clear",,"362","154","88","120","0","0","0","0","0","0","0","0","0","0","0","1244","1226" +"544","Excadrill","530","530","5","Lower","0",,"0","ground","steel","Sunny/clear","Snow","607","255","132","220","0","0","0","0","0","0","0","0","0","0","0","3134","3089" +"545","Audino","531","531","5",,"0",,"0","normal",,"Partly cloudy",,"483","114","163","206","0","0","0","0","0","0","0","0","0","0","0","1598","1575" +"546","Timburr","532","532","5",,"0",,"0","fighting",,"Cloudy",,"381","134","97","150","0","0","0","0","0","0","0","0","0","0","0","1265","1247" +"547","Gurdurr","533","533","5",,"0",,"0","fighting",,"Cloudy",,"500","180","150","170","0","0","0","0","0","0","0","0","0","0","0","2127","2097" +"548","Conkeldurr","534","534","5","Evolved","0",,"0","fighting",,"Cloudy",,"625","243","172","210","0","0","0","0","0","0","0","0","0","0","0","3305","3258" +"549","Tympole","535","535","5",,"0",,"0","water",,"Rainy",,"276","98","78","100","0","0","0","0","0","0","0","0","0","0","0","729","719" +"550","Palpitoad","536","536","5",,"0",,"0","water","ground","Rainy","Sunny/clear","387","128","109","150","0","0","0","0","0","0","0","0","0","0","0","1277","1259" +"551","Seismitoad","537","537","5","Evolved","0",,"0","water","ground","Rainy","Sunny/clear","548","188","150","210","0","0","0","0","0","0","0","0","0","0","0","2442","2408" +"552","Throh","538","538","5","Evolved","0",,"0","fighting",,"Cloudy",,"572","172","160","240","0","0","0","0","0","0","0","0","0","0","0","2467","2432" +"553","Sawk","539","539","5",,"0",,"0","fighting",,"Cloudy",,"534","231","153","150","0","0","0","0","0","0","0","0","0","0","0","2558","2521" +"554","Sewaddle","540","540","5",,"0",,"0","bug","grass","Rainy","Sunny/clear","315","96","129","90","0","0","0","0","0","0","0","0","0","0","0","852","840" +"555","Swadloon","541","541","5",,"0",,"0","bug","grass","Rainy","Sunny/clear","391","115","166","110","0","0","0","0","0","0","0","0","0","0","0","1221","1203" +"556","Leavanny","542","542","5",,"0",,"0","bug","grass","Rainy","Sunny/clear","520","205","165","150","0","0","0","0","0","0","0","0","0","0","0","2368","2334" +"557","Venipede","543","543","5",,"0",,"0","bug","poison","Rainy","Cloudy","252","83","109","60","0","0","0","0","0","0","0","0","0","0","0","590","581" +"558","Whirlipede","544","544","5",,"0",,"0","bug","poison","Rainy","Cloudy","362","100","182","80","0","0","0","0","0","0","0","0","0","0","0","982","968" +"559","Scolipede","545","545","5",,"0",,"0","bug","poison","Rainy","Cloudy","509","203","186","120","0","0","0","0","0","0","0","0","0","0","0","2242","2210" +"560","Cottonee","546","546","5",,"0",,"0","grass","fairy","Sunny/clear","Cloudy","267","71","116","80","0","0","0","0","0","0","0","0","0","0","0","599","590" +"561","Whimsicott","547","547","5",,"0",,"0","grass","fairy","Sunny/clear","Cloudy","466","164","182","120","0","0","0","0","0","0","0","0","0","0","0","1823","1797" +"562","Petilil","548","548","5",,"0",,"0","grass",,"Sunny/clear",,"300","119","91","90","0","0","0","0","0","0","0","0","0","0","0","882","870" +"563","Lilligant","549","549","5",,"0",,"0","grass",,"Sunny/clear",,"509","214","155","140","0","0","0","0","0","0","0","0","0","0","0","2321","2288" +"564","Basculin","550","550","5",,"0",,"0","water",,"Rainy",,"463","189","134","140","0","0","0","0","0","0","0","0","0","0","0","1936","1908" +"565","Sandile","551","551","5",,"0",,"0","ground","dark","Sunny/clear","Fog","301","132","69","100","0","0","0","0","0","0","0","0","0","0","0","902","889" +"566","Krokorok","552","552","5",,"0",,"0","ground","dark","Sunny/clear","Fog","365","155","90","120","0","0","0","0","0","0","0","0","0","0","0","1264","1246" +"567","Krookodile","553","553","5","Evolved","0",,"0","ground","dark","Sunny/clear","Fog","582","229","163","190","0","0","0","0","0","0","0","0","0","0","0","2911","2869" +"568","Darumaka","554","554","5",,"0",,"0","fire",,"Sunny/clear",,"379","153","86","140","0","0","0","0","0","0","0","0","0","0","0","1312","1294" +"569","Darmanitan (Zen Mode)","555","555","5","Evolved","0",,"0","fire",,"Sunny/clear",,"587","263","114","210","0","0","0","0","0","0","0","0","0","0","0","2958","2915" +"570","Darmanitan (Standard Mode)","555","555","5","Evolved","0",,"0","fire",,"Sunny/clear",,"587","263","114","210","0","0","0","0","0","0","0","0","0","0","0","2958","2915" +"571","Maractus","556","556","5",,"0",,"0","grass",,"Sunny/clear",,"481","201","130","150","0","0","0","0","0","0","0","0","0","0","0","2086","2056" +"572","Dwebble","557","557","5",,"0",,"0","bug","rock","Rainy","Partly cloudy","370","118","152","100","0","0","0","0","0","0","0","0","0","0","0","1151","1134" +"573","Crustle","558","558","5","Evolved","0",,"0","bug","rock","Rainy","Partly cloudy","552","188","224","140","0","0","0","0","0","0","0","0","0","0","0","2440","2405" +"574","Scraggy","559","559","5",,"0",,"0","dark","fighting","Fog","Cloudy","364","132","132","100","0","0","0","0","0","0","0","0","0","0","0","1193","1176" +"575","Scrafty","560","560","5",,"0",,"0","dark","fighting","Fog","Cloudy","515","163","222","130","0","0","0","0","0","0","0","0","0","0","0","2060","2031" +"576","Sigilyph","561","561","5",,"0",,"0","psychic","flying","Windy",,"515","204","167","144","0","0","0","0","0","0","0","0","0","0","0","2326","2293" +"577","Yamask","562","562","5",,"0",,"0","ghost",,"Fog",,"321","95","150","76","0","0","0","0","0","0","0","0","0","0","0","841","829" +"578","Cofagrigus","563","563","5",,"0",,"0","ghost",,"Fog",,"534","163","255","116","0","0","0","0","0","0","0","0","0","0","0","2090","2060" +"579","Tirtouga","564","564","5",,"0",,"0","water","rock","Rainy","Partly cloudy","414","134","172","108","0","0","0","0","0","0","0","0","0","0","0","1411","1391" +"580","Carracosta","565","565","5","Evolved","0",,"0","water","rock","Rainy","Partly cloudy","568","192","228","148","0","0","0","0","0","0","0","0","0","0","0","2573","2536" +"581","Archen","566","566","5",,"0",,"0","rock","flying","Partly cloudy","Windy","412","213","89","110","0","0","0","0","0","0","0","0","0","0","0","1623","1600" +"582","Archeops","567","567","5","Evolved","0",,"0","rock","flying","Partly cloudy","Windy","581","292","139","150","0","0","0","0","0","0","0","0","0","0","0","3056","3012" +"583","Trubbish","568","568","5",,"0",,"0","poison",,"Cloudy",,"318","96","122","100","0","0","0","0","0","0","0","0","0","0","0","870","857" +"584","Garbodor","569","569","5",,"0",,"0","poison",,"Cloudy",,"505","181","164","160","0","0","0","0","0","0","0","0","0","0","0","2166","2135" +"585","Zorua","570","570","5",,"0",,"0","dark",,"Fog",,"311","153","78","80","0","0","0","0","0","0","0","0","0","0","0","986","972" +"586","Zoroark","571","571","5",,"0",,"0","dark",,"Fog",,"497","250","127","120","0","0","0","0","0","0","0","0","0","0","0","2291","2258" +"587","Minccino","572","572","5",,"0",,"0","normal",,"Partly cloudy",,"288","98","80","110","0","0","0","0","0","0","0","0","0","0","0","769","758" +"588","Cinccino","573","573","5",,"0",,"0","normal",,"Partly cloudy",,"478","198","130","150","0","0","0","0","0","0","0","0","0","0","0","2057","2028" +"589","Gothita","574","574","5",,"0",,"0","psychic",,"Windy",,"306","98","118","90","0","0","0","0","0","0","0","0","0","0","0","834","822" +"590","Gothorita","575","575","5",,"0",,"0","psychic",,"Windy",,"416","137","159","120","0","0","0","0","0","0","0","0","0","0","0","1455","1434" +"591","Gothitelle","576","576","5",,"0",,"0","psychic",,"Windy",,"528","176","212","140","0","0","0","0","0","0","0","0","0","0","0","2237","2205" +"592","Solosis","577","577","5",,"0",,"0","psychic",,"Windy",,"347","170","87","90","0","0","0","0","0","0","0","0","0","0","0","1195","1178" +"593","Duosion","578","578","5",,"0",,"0","psychic",,"Windy",,"445","208","107","130","0","0","0","0","0","0","0","0","0","0","0","1852","1826" +"594","Reuniclus","579","579","5","Evolved","0",,"0","psychic",,"Windy",,"587","214","153","220","0","0","0","0","0","0","0","0","0","0","0","2841","2801" +"595","Ducklett","580","580","5",,"0",,"0","water","flying","Rainy","Windy","304","84","96","124","0","0","0","0","0","0","0","0","0","0","0","768","757" +"596","Swanna","581","581","5",,"0",,"0","water","flying","Rainy","Windy","464","182","132","150","0","0","0","0","0","0","0","0","0","0","0","1916","1888" +"597","Vanillite","582","582","5",,"0",,"0","ice",,"Snow",,"301","118","111","72","0","0","0","0","0","0","0","0","0","0","0","869","857" +"598","Vanillish","583","583","5",,"0",,"0","ice",,"Snow",,"396","151","143","102","0","0","0","0","0","0","0","0","0","0","0","1409","1389" +"599","Vanilluxe","584","584","5","Evolved","0",,"0","ice",,"Snow",,"550","218","190","142","0","0","0","0","0","0","0","0","0","0","0","2610","2573" +"600","Deerling","585","585","5",,"0",,"0","normal","grass","Partly cloudy","Sunny/clear","335","115","100","120","0","0","0","0","0","0","0","0","0","0","0","1011","997" +"601","Sawsbuck","586","586","5",,"0",,"0","normal","grass","Partly cloudy","Sunny/clear","504","198","146","160","0","0","0","0","0","0","0","0","0","0","0","2233","2201" +"602","Emolga","587","587","5",,"0",,"0","electric","flying","Rainy","Windy","395","158","127","110","0","0","0","0","0","0","0","0","0","0","0","1439","1419" +"603","Karrablast","588","588","5",,"0",,"0","bug",,"Rainy",,"324","137","87","100","0","0","0","0","0","0","0","0","0","0","0","1028","1013" +"604","Escavalier","589","589","5","Evolved","0",,"0","bug","steel","Rainy","Snow","550","223","187","140","0","0","0","0","0","0","0","0","0","0","0","2630","2592" +"605","Foongus","590","590","5",,"0",,"0","grass","poison","Sunny/clear","Cloudy","330","97","95","138","0","0","0","0","0","0","0","0","0","0","0","907","894" +"606","Amoonguss","591","591","5",,"0",,"0","grass","poison","Sunny/clear","Cloudy","527","155","144","228","0","0","0","0","0","0","0","0","0","0","0","2087","2057" +"607","Frillish","592","592","5",,"0",,"0","water","ghost","Rainy","Fog","375","115","150","110","0","0","0","0","0","0","0","0","0","0","0","1166","1149" +"608","Jellicent","593","593","5","Evolved","0",,"0","water","ghost","Rainy","Fog","554","159","195","200","0","0","0","0","0","0","0","0","0","0","0","2309","2276" +"609","Alomomola","594","594","5","Evolved","0",,"0","water",,"Rainy",,"616","138","148","330","0","0","0","0","0","0","0","0","0","0","0","2266","2233" +"610","Joltik","595","595","5",,"0",,"0","bug","electric","Rainy",,"308","110","98","100","0","0","0","0","0","0","0","0","0","0","0","889","877" +"611","Galvantula","596","596","5",,"0",,"0","bug","electric","Rainy",,"469","201","128","140","0","0","0","0","0","0","0","0","0","0","0","2008","1979" +"612","Ferroseed","597","597","5",,"0",,"0","grass","steel","Sunny/clear","Snow","327","82","157","88","0","0","0","0","0","0","0","0","0","0","0","806","794" +"613","Ferrothorn","598","598","5","Evolved","0",,"0","grass","steel","Sunny/clear","Snow","536","158","230","148","0","0","0","0","0","0","0","0","0","0","0","2159","2128" +"614","Klink","599","599","5",,"0",,"0","steel",,"Snow",,"304","98","126","80","0","0","0","0","0","0","0","0","0","0","0","816","805" +"615","Klang","600","600","5",,"0",,"0","steel",,"Snow",,"449","150","179","120","0","0","0","0","0","0","0","0","0","0","0","1667","1643" +"616","Klinklang","601","601","5","Evolved","0",,"0","steel",,"Snow",,"549","199","230","120","0","0","0","0","0","0","0","0","0","0","0","2430","2396" +"617","Tynamo","602","602","5",,"0",,"0","electric",,"Rainy",,"253","105","78","70","0","0","0","0","0","0","0","0","0","0","0","666","656" +"618","Eelektrik","603","603","5",,"0",,"0","electric",,"Rainy",,"416","156","130","130","0","0","0","0","0","0","0","0","0","0","0","1548","1526" +"619","Eelektross","604","604","5","Lower","0",,"0","electric",,"Rainy",,"539","217","152","170","0","0","0","0","0","0","0","0","0","0","0","2546","2510" +"620","Elgyem","605","605","5",,"0",,"0","psychic",,"Windy",,"358","148","100","110","0","0","0","0","0","0","0","0","0","0","0","1220","1203" +"621","Beheeyem","606","606","5","Evolved","0",,"0","psychic",,"Windy",,"543","221","172","150","0","0","0","0","0","0","0","0","0","0","0","2589","2552" +"622","Litwick","607","607","5",,"0",,"0","ghost","fire","Fog","Sunny/clear","306","108","98","100","0","0","0","0","0","0","0","0","0","0","0","875","863" +"623","Lampent","608","608","5",,"0",,"0","ghost","fire","Fog","Sunny/clear","404","169","115","120","0","0","0","0","0","0","0","0","0","0","0","1522","1500" +"624","Chandelure","609","609","5","Lower","0",,"0","ghost","fire","Fog","Sunny/clear","573","271","182","120","0","0","0","0","0","0","0","0","0","0","0","2913","2871" +"625","Axew","610","610","5",,"0",,"0","dragon",,"Windy",,"357","154","111","92","0","0","0","0","0","0","0","0","0","0","0","1225","1208" +"626","Fraxure","611","611","5",,"0",,"0","dragon",,"Windy",,"477","212","133","132","0","0","0","0","0","0","0","0","0","0","0","2091","2061" +"627","Haxorus","612","612","5","Evolved","0",,"0","dragon",,"Windy",,"619","284","183","152","0","0","0","0","0","0","0","0","0","0","0","3395","3347" +"628","Cubchoo","613","613","5",,"0",,"0","ice",,"Snow",,"312","128","74","110","0","0","0","0","0","0","0","0","0","0","0","942","928" +"629","Beartic","614","614","5","Evolved","0",,"0","ice",,"Snow",,"575","233","152","190","0","0","0","0","0","0","0","0","0","0","0","2865","2825" +"630","Cryogonal","615","615","5","Lower","0",,"0","ice",,"Snow",,"614","190","264","160","0","0","0","0","0","0","0","0","0","0","0","2829","2788" +"631","Shelmet","616","616","5",,"0",,"0","bug",,"Rainy",,"321","72","149","100","0","0","0","0","0","0","0","0","0","0","0","746","735" +"632","Accelgor","617","617","5",,"0",,"0","bug",,"Rainy",,"511","220","131","160","0","0","0","0","0","0","0","0","0","0","0","2346","2312" +"633","Stunfisk","618","618","5","Evolved","0",,"0","ground","electric","Sunny/clear","Rainy","539","144","177","218","0","0","0","0","0","0","0","0","0","0","0","2100","2070" +"634","Mienfoo","619","619","5",,"0",,"0","fighting",,"Cloudy",,"348","160","98","90","0","0","0","0","0","0","0","0","0","0","0","1190","1173" +"635","Mienshao","620","620","5",,"0",,"0","fighting",,"Cloudy",,"515","258","127","130","0","0","0","0","0","0","0","0","0","0","0","2446","2411" +"636","Druddigon","621","621","5","Lower","0",,"0","dragon",,"Windy",,"537","213","170","154","0","0","0","0","0","0","0","0","0","0","0","2517","2481" +"637","Golett","622","622","5",,"0",,"0","ground","ghost","Sunny/clear","Fog","337","127","92","118","0","0","0","0","0","0","0","0","0","0","0","1058","1042" +"638","Golurk","623","623","5","Lower","0",,"0","ground","ghost","Sunny/clear","Fog","554","222","154","178","0","0","0","0","0","0","0","0","0","0","0","2673","2635" +"639","Pawniard","624","624","5",,"0",,"0","dark","steel","Fog","Snow","373","154","129","90","0","0","0","0","0","0","0","0","0","0","0","1297","1279" +"640","Bisharp","625","625","5","Evolved","0",,"0","dark","steel","Fog","Snow","553","232","191","130","0","0","0","0","0","0","0","0","0","0","0","2666","2628" +"641","Bouffalant","626","626","5","Evolved","0",,"0","normal",,"Partly cloudy",,"567","195","182","190","0","0","0","0","0","0","0","0","0","0","0","2635","2598" +"642","Rufflet","627","627","5",,"0",,"0","normal","flying","Partly cloudy","Windy","387","150","97","140","0","0","0","0","0","0","0","0","0","0","0","1357","1338" +"643","Braviary","628","628","5","Lower","0",,"0","normal","flying","Partly cloudy","Windy","584","232","152","200","0","0","0","0","0","0","0","0","0","0","0","2923","2881" +"644","Vullaby","629","629","5",,"0",,"0","dark","flying","Fog","Windy","389","105","144","140","0","0","0","0","0","0","0","0","0","0","0","1176","1159" +"645","Mandibuzz","630","630","5","Evolved","0",,"0","dark","flying","Fog","Windy","559","129","210","220","0","0","0","0","0","0","0","0","0","0","0","2068","2038" +"646","Heatmor","631","631","5",,"0",,"0","fire",,"Sunny/clear",,"503","204","129","170","0","0","0","0","0","0","0","0","0","0","0","2232","2200" +"647","Durant","632","632","5","Evolved","0",,"0","bug","steel","Rainy","Snow","555","217","222","116","0","0","0","0","0","0","0","0","0","0","0","2553","2516" +"648","Deino","633","633","5",,"0",,"0","dark","dragon","Fog","Windy","313","116","93","104","0","0","0","0","0","0","0","0","0","0","0","927","914" +"649","Zweilous","634","634","5",,"0",,"0","dark","dragon","Fog","Windy","438","159","135","144","0","0","0","0","0","0","0","0","0","0","0","1678","1654" +"650","Hydreigon","635","635","5","Lower","0",,"0","dark","dragon","Fog","Windy","628","256","188","184","0","0","0","0","0","0","0","0","0","0","0","3401","3353" +"651","Larvesta","636","636","5",,"0",,"0","bug","fire","Rainy","Sunny/clear","373","156","107","110","0","0","0","0","0","0","0","0","0","0","0","1318","1300" +"652","Volcarona","637","637","5","Lower","0",,"0","bug","fire","Rainy","Sunny/clear","644","264","210","170","0","0","0","0","0","0","0","0","0","0","0","3555","3504" +"653","Cobalion","638","638","5","Evolved","0",,"0","steel","fighting","Snow","Cloudy","634","192","260","182","1","0","0","0","0","0","0","0","0","0","0","3009","2966" +"654","Terrakion","639","639","5","Evolved","0",,"0","rock","fighting","Partly cloudy","Cloudy","634","260","192","182","1","0","0","0","0","0","0","0","0","0","0","3468","3418" +"655","Virizion","640","640","5","Lower","0",,"0","grass","fighting","Sunny/clear","Cloudy","634","192","260","182","1","0","0","0","0","0","0","0","0","0","0","3009","2966" +"656","Tornadus (Therian Forme)","641","641","5","Evolved","0",,"0","flying",,"Windy",,"593","266","169","158","1","0","0","0","0","0","0","0","0","0","0","3131","3086" +"657","Tornadus (Incarnate Forme)","641","641","5","Lower","0",,"0","flying",,"Windy",,"593","266","169","158","1","0","0","0","0","0","0","0","0","0","0","3131","3086" +"658","Thundurus (Incarnate Forme)","642","642","5","Lower","0",,"0","electric","flying","Rainy","Windy","593","266","169","158","1","0","0","0","0","0","0","0","0","0","0","3131","3086" +"659","Thundurus (Therian Forme)","642","642","5","Lower","0",,"0","electric","flying","Rainy","Windy","593","266","169","158","1","0","0","0","0","0","0","0","0","0","0","3131","3086" +"660","Reshiram","643","643","5","Lower","0",,"0","dragon","fire","Windy","Sunny/clear","744","302","242","200","1","0","0","0","0","0","0","0","0","0","0","4654","4587" +"661","Zekrom","644","644","5","Lower","0",,"0","dragon","electric","Windy","Rainy","744","302","242","200","1","0","0","0","0","0","0","0","0","0","0","4654","4587" +"662","Landorus (Incarnate Forme)","645","645","5","Evolved","0",,"0","ground","flying","Sunny/clear","Windy","626","261","187","178","1","0","0","0","0","0","0","0","0","0","0","3403","3355" +"663","Landorus (Therian Forme)","645","645","5","Lower","0",,"0","ground","flying","Sunny/clear","Windy","626","261","187","178","1","0","0","0","0","0","0","0","0","0","0","3403","3355" +"664","Kyurem (Black Kyurem)","646","646","5","Lower","0",,"0","dragon","ice","Windy","Snow","707","270","187","250","1","0","0","0","0","0","0","0","0","0","0","4118","4059" +"665","Kyurem (Normal Kyurem)","646","646","5","Evolved","0",,"0","dragon","ice","Windy","Snow","707","270","187","250","1","0","0","0","0","0","0","0","0","0","0","4118","4059" +"666","Kyurem (White Kyurem)","646","646","5","Lower","0",,"0","dragon","ice","Windy","Snow","707","270","187","250","1","0","0","0","0","0","0","0","0","0","0","4118","4059" +"667","Keldeo","647","647","5","Lower","0",,"0","water","fighting","Rainy","Cloudy","634","260","192","182","1","0","0","0","0","0","0","0","0","0","0","3468","3418" +"668","Meloetta (Pirouette Forme)","648","648","5","Evolved","0",,"0","normal","psychic","Partly cloudy","Windy","700","250","250","200","1","0","0","0","0","0","0","0","0","0","0","3950","3894" +"669","Meloetta (Aria Forme)","648","648","5","Lower","0",,"0","normal","psychic","Partly cloudy","Windy","700","250","250","200","1","0","0","0","0","0","0","0","0","0","0","3950","3894" +"670","Genesect","649","649","5","Evolved","0",,"0","bug","steel","Rainy","Snow","593","252","199","142","1","0","0","0","0","0","0","0","0","0","0","3056","3013" +"671","Chespin","650","650","6",,"0",,"0","grass",,"Sunny/clear",,"338","110","116","112","0","0","0","0","0","0","0","0","0","0","0","1007","992" +"672","Quilladin","651","651","6",,"0",,"0","grass",,"Sunny/clear",,"442","146","174","122","0","0","0","0","0","0","0","0","0","0","0","1618","1594" +"673","Chesnaught","652","652","6","Lower","0",,"0","grass","fighting","Sunny/clear","Cloudy","604","201","227","176","0","0","0","0","0","0","0","0","0","0","0","2900","2859" +"674","Fennekin","653","653","6",,"0",,"0","fire",,"Sunny/clear",,"308","116","112","80","0","0","0","0","0","0","0","0","0","0","0","898","885" +"675","Braixen","654","654","6",,"0",,"0","fire",,"Sunny/clear",,"425","171","136","118","0","0","0","0","0","0","0","0","0","0","0","1646","1622" +"676","Delphox","655","655","6","Evolved","0",,"0","fire","psychic","Sunny/clear","Windy","584","230","204","150","0","0","0","0","0","0","0","0","0","0","0","2908","2867" +"677","Froakie","656","656","6",,"0",,"0","water",,"Rainy",,"290","122","86","82","0","0","0","0","0","0","0","0","0","0","0","846","834" +"678","Frogadier","657","657","6",,"0",,"0","water",,"Rainy",,"392","168","116","108","0","0","0","0","0","0","0","0","0","0","0","1450","1430" +"679","Greninja","658","658","6",,"0",,"0","water","dark","Rainy","Fog","521","223","154","144","0","0","0","0","0","0","0","0","0","0","0","2436","2401" +"680","Bunnelby","659","659","6",,"0",,"0","normal",,"Partly cloudy",,"217","68","73","76","0","0","0","0","0","0","0","0","0","0","0","463","457" +"681","Diggersby","660","660","6",,"0",,"0","normal","ground","Partly cloudy","Sunny/clear","437","112","155","170","0","0","0","0","0","0","0","0","0","0","0","1406","1386" +"682","Fletchling","661","661","6",,"0",,"0","normal","flying","Partly cloudy","Windy","268","95","83","90","0","0","0","0","0","0","0","0","0","0","0","696","686" +"683","Fletchinder","662","662","6",,"0",,"0","fire","flying","Sunny/clear","Windy","380","145","111","124","0","0","0","0","0","0","0","0","0","0","0","1322","1303" +"684","Talonflame","663","663","6",,"0",,"0","fire","flying","Sunny/clear","Windy","488","176","156","156","0","0","0","0","0","0","0","0","0","0","0","2039","2010" +"685","Scatterbug","664","664","6",,"0",,"0","bug",,"Rainy",,"209","63","70","76","0","0","0","0","0","0","0","0","0","0","0","428","422" +"686","Spewpa","665","665","6",,"0",,"0","bug",,"Rainy",,"241","48","103","90","0","0","0","0","0","0","0","0","0","0","0","437","431" +"687","Vivillon","666","666","6",,"0",,"0","bug","flying","Rainy","Windy","439","176","103","160","0","0","0","0","0","0","0","0","0","0","0","1714","1689" +"688","Litleo","667","667","6",,"0",,"0","fire","normal","Sunny/clear","Partly cloudy","377","139","114","124","0","0","0","0","0","0","0","0","0","0","0","1287","1269" +"689","Pyroar","668","668","6","Lower","0",,"0","fire","normal","Sunny/clear","Partly cloudy","545","221","152","172","0","0","0","0","0","0","0","0","0","0","0","2604","2567" +"690","FlabƸBƸ","669","669","6",,"0",,"0","fairy",,"Cloudy",,"334","108","138","88","0","0","0","0","0","0","0","0","0","0","0","964","950" +"691","Floette","670","670","6",,"0",,"0","fairy",,"Cloudy",,"419","136","175","108","0","0","0","0","0","0","0","0","0","0","0","1441","1421" +"692","Florges","671","671","6","Lower","0",,"0","fairy",,"Cloudy",,"655","212","287","156","0","0","0","0","0","0","0","0","0","0","0","3221","3175" +"693","Skiddo","672","672","6",,"0",,"0","grass",,"Sunny/clear",,"362","123","107","132","0","0","0","0","0","0","0","0","0","0","0","1154","1137" +"694","Gogoat","673","673","6","Lower","0",,"0","grass",,"Sunny/clear",,"597","196","155","246","0","0","0","0","0","0","0","0","0","0","0","2775","2736" +"695","Pancham","674","674","6",,"0",,"0","fighting",,"Cloudy",,"392","145","113","134","0","0","0","0","0","0","0","0","0","0","0","1380","1360" +"696","Pangoro","675","675","6","Lower","0",,"0","fighting","dark","Cloudy","Fog","565","226","149","190","0","0","0","0","0","0","0","0","0","0","0","2759","2720" +"697","Furfrou","676","676","6",,"0",,"0","normal",,"Partly cloudy",,"496","164","182","150","0","0","0","0","0","0","0","0","0","0","0","2015","1986" +"698","Espurr","677","677","6",,"0",,"0","psychic",,"Windy",,"361","120","117","124","0","0","0","0","0","0","0","0","0","0","0","1142","1125" +"699","Meowstic","678","678","6",,"0",,"0","psychic",,"Windy",,"484","166","170","148","0","0","0","0","0","0","0","0","0","0","0","1963","1935" +"700","Honedge","679","679","6",,"0",,"0","steel","ghost","Snow","Fog","392","135","167","90","0","0","0","0","0","0","0","0","0","0","0","1295","1276" +"701","Doublade","680","680","6","Lower","0",,"0","steel","ghost","Snow","Fog","559","188","253","118","0","0","0","0","0","0","0","0","0","0","0","2393","2359" +"702","Aegislash","681","681","6",,"0",,"0","steel","ghost","Snow","Fog","508","97","291","120","0","0","0","0","0","0","0","0","0","0","0","1421","1401" +"703","Spritzee","682","682","6",,"0",,"0","fairy",,"Cloudy",,"382","110","116","156","0","0","0","0","0","0","0","0","0","0","0","1168","1151" +"704","Aromatisse","683","683","6",,"0",,"0","fairy",,"Cloudy",,"533","173","158","202","0","0","0","0","0","0","0","0","0","0","0","2275","2242" +"705","Swirlix","684","684","6",,"0",,"0","fairy",,"Cloudy",,"356","109","123","124","0","0","0","0","0","0","0","0","0","0","0","1072","1057" +"706","Slurpuff","685","685","6",,"0",,"0","fairy",,"Cloudy",,"500","168","168","164","0","0","0","0","0","0","0","0","0","0","0","2068","2039" +"707","Inkay","686","686","6",,"0",,"0","dark","psychic","Fog","Windy","302","98","98","106","0","0","0","0","0","0","0","0","0","0","0","825","813" +"708","Malamar","687","687","6",,"0",,"0","dark","psychic","Fog","Windy","521","177","172","172","0","0","0","0","0","0","0","0","0","0","0","2242","2210" +"709","Binacle","688","688","6",,"0",,"0","rock","water","Partly cloudy","Rainy","304","96","124","84","0","0","0","0","0","0","0","0","0","0","0","813","801" +"710","Barbaracle","689","689","6","Evolved","0",,"0","rock","water","Partly cloudy","Rainy","558","194","220","144","0","0","0","0","0","0","0","0","0","0","0","2523","2487" +"711","Skrelp","690","690","6",,"0",,"0","poison","water","Cloudy","Rainy","318","109","109","100","0","0","0","0","0","0","0","0","0","0","0","924","911" +"712","Dragalge","691","691","6",,"0",,"0","poison","dragon","Cloudy","Windy","530","177","223","130","0","0","0","0","0","0","0","0","0","0","0","2227","2195" +"713","Clauncher","692","692","6",,"0",,"0","water",,"Rainy",,"326","108","118","100","0","0","0","0","0","0","0","0","0","0","0","950","936" +"714","Clawitzer","693","693","6","Evolved","0",,"0","water",,"Rainy",,"535","221","172","142","0","0","0","0","0","0","0","0","0","0","0","2525","2489" +"715","Helioptile","694","694","6",,"0",,"0","electric","normal","Rainy","Partly cloudy","286","115","83","88","0","0","0","0","0","0","0","0","0","0","0","815","804" +"716","Heliolisk","695","695","6",,"0",,"0","electric","normal","Rainy","Partly cloudy","533","219","190","124","0","0","0","0","0","0","0","0","0","0","0","2467","2431" +"717","Tyrunt","696","696","6",,"0",,"0","rock","dragon","Partly cloudy","Windy","412","158","138","116","0","0","0","0","0","0","0","0","0","0","0","1529","1507" +"718","Tyrantrum","697","697","6","Lower","0",,"0","rock","dragon","Partly cloudy","Windy","612","227","221","164","0","0","0","0","0","0","0","0","0","0","0","3106","3062" +"719","Amaura","698","698","6",,"0",,"0","rock","ice","Partly cloudy","Snow","394","124","116","154","0","0","0","0","0","0","0","0","0","0","0","1291","1273" +"720","Aurorus","699","699","6","Lower","0",,"0","rock","ice","Partly cloudy","Snow","605","186","173","246","0","0","0","0","0","0","0","0","0","0","0","2780","2741" +"721","Sylveon","700","700","6","Lower","0",,"1","fairy",,"Cloudy",,"630","203","237","190","0","0","0","0","0","0","0","0","0","0","0","3094","3050" +"722","Hawlucha","701","701","6",,"0",,"0","fighting","flying","Cloudy","Windy","511","195","160","156","0","0","0","0","0","0","0","0","0","0","0","2268","2236" +"723","Dedenne","702","702","6",,"0",,"0","electric","fairy","Rainy","Cloudy","437","164","139","134","0","0","0","0","0","0","0","0","0","0","0","1693","1669" +"724","Carbink","703","703","6",,"0",,"0","rock","fairy","Partly cloudy","Cloudy","480","95","285","100","0","0","0","0","0","0","0","0","0","0","0","1276","1257" +"725","Goomy","704","704","6",,"0",,"0","dragon",,"Windy",,"321","101","130","90","0","0","0","0","0","0","0","0","0","0","0","893","881" +"726","Sliggoo","705","705","6",,"0",,"0","dragon",,"Windy",,"500","159","205","136","0","0","0","0","0","0","0","0","0","0","0","1980","1952" +"727","Goodra","706","706","6","Evolved","0",,"0","dragon",,"Windy",,"683","220","283","180","0","0","0","0","0","0","0","0","0","0","0","3538","3487" +"728","Klefki","707","707","6",,"0",,"0","steel","fairy","Snow","Cloudy","455","160","181","114","0","0","0","0","0","0","0","0","0","0","0","1737","1713" +"729","Phantump","708","708","6",,"0",,"0","ghost","grass","Fog","Sunny/clear","319","125","108","86","0","0","0","0","0","0","0","0","0","0","0","974","960" +"730","Trevenant","709","709","6",,"0",,"0","ghost","grass","Fog","Sunny/clear","528","201","157","170","0","0","0","0","0","0","0","0","0","0","0","2406","2372" +"731","Pumpkaboo","710","710","6",,"0",,"0","ghost","grass","Fog","Sunny/clear","348","121","129","98","0","0","0","0","0","0","0","0","0","0","0","1083","1068" +"732","Gourgeist","711","711","6","Lower","0",,"0","ghost","grass","Fog","Sunny/clear","541","175","236","130","0","0","0","0","0","0","0","0","0","0","0","2263","2231" +"733","Bergmite","712","712","6",,"0",,"0","ice",,"Snow",,"370","117","143","110","0","0","0","0","0","0","0","0","0","0","0","1158","1142" +"734","Avalugg","713","713","6","Evolved","0",,"0","ice",,"Snow",,"689","196","303","190","0","0","0","0","0","0","0","0","0","0","0","3364","3316" +"735","Noibat","714","714","6",,"0",,"0","flying","dragon","Windy",,"239","83","76","80","0","0","0","0","0","0","0","0","0","0","0","569","560" +"736","Noivern","715","715","6","Evolved","0",,"0","flying","dragon","Windy",,"550","205","175","170","0","0","0","0","0","0","0","0","0","0","0","2576","2539" +"737","Xerneas","716","716","6","Lower","0",,"0","fairy",,"Cloudy",,"731","275","204","252","1","0","0","0","0","0","0","0","0","0","0","4379","4317" +"738","Yveltal","717","717","6","Evolved","0",,"0","dark","flying","Fog","Windy","731","275","204","252","1","0","0","0","0","0","0","0","0","0","0","4379","4317" +"739","Zygarde","718","718","6","Evolved","0",,"0","dragon","ground","Windy","Sunny/clear","664","203","245","216","1","0","0","0","0","0","0","0","0","0","0","3336","3289" +"740","Diancie","719","719","6","Lower","0",,"0","rock","fairy","Partly cloudy","Cloudy","575","190","285","100","1","0","0","0","0","0","0","0","0","0","0","2378","2344" +"741","Hoopa","720","720","6","Lower","0",,"0","psychic","ghost","Windy","Fog","688","287","241","160","1","0","0","0","0","0","0","0","0","0","0","3992","3935" +"742","Volcanion","721","721","6","Evolved","0",,"0","fire","water","Sunny/clear","Rainy","643","252","231","160","1","0","0","0","0","0","0","0","0","0","0","3460","3410" +"743","Rowlet","722","722","7",,"0",,"0","grass","flying","Sunny/clear","Windy","340","102","102","136","0","0","0","0","0","0","0","0","0","0","0","971","957" +"744","Dartrix","723","723","7",,"0",,"0","grass","flying","Sunny/clear","Windy","440","142","142","156","0","0","0","0","0","0","0","0","0","0","0","1606","1583" +"745","Decidueye","724","724","7","Evolved","0",,"0","grass","ghost","Sunny/clear","Fog","558","210","192","156","0","0","0","0","0","0","0","0","0","0","0","2643","2606" +"746","Litten","725","725","7",,"0",,"0","fire",,"Sunny/clear",,"297","128","79","90","0","0","0","0","0","0","0","0","0","0","0","887","874" +"747","Torracat","726","726","7",,"0",,"0","fire",,"Sunny/clear",,"407","174","103","130","0","0","0","0","0","0","0","0","0","0","0","1544","1522" +"748","Incineroar","727","727","7","Lower","0",,"0","fire","dark","Sunny/clear","Fog","579","214","175","190","0","0","0","0","0","0","0","0","0","0","0","2822","2782" +"749","Popplio","728","728","7",,"0",,"0","water",,"Rainy",,"324","120","104","100","0","0","0","0","0","0","0","0","0","0","0","986","972" +"750","Brionne","729","729","7",,"0",,"0","water",,"Rainy",,"439","168","151","120","0","0","0","0","0","0","0","0","0","0","0","1711","1686" +"751","Primarina","730","730","7","Evolved","0",,"0","water","fairy","Rainy","Cloudy","607","232","215","160","0","0","0","0","0","0","0","0","0","0","0","3095","3050" +"752","Pikipek","731","731","7",,"0",,"0","normal","flying","Partly cloudy","Windy","265","136","59","70","0","0","0","0","0","0","0","0","0","0","0","747","737" +"753","Trumbeak","732","732","7",,"0",,"0","normal","flying","Partly cloudy","Windy","369","159","100","110","0","0","0","0","0","0","0","0","0","0","0","1302","1284" +"754","Toucannon","733","733","7",,"0",,"0","normal","flying","Partly cloudy","Windy","528","222","146","160","0","0","0","0","0","0","0","0","0","0","0","2484","2449" +"755","Yungoos","734","734","7",,"0",,"0","normal",,"Partly cloudy",,"274","122","56","96","0","0","0","0","0","0","0","0","0","0","0","759","748" +"756","Gumshoos","735","735","7",,"0",,"0","normal",,"Partly cloudy",,"483","194","113","176","0","0","0","0","0","0","0","0","0","0","0","2041","2011" +"757","Grubbin","736","736","7",,"0",,"0","bug",,"Rainy",,"294","115","85","94","0","0","0","0","0","0","0","0","0","0","0","847","835" +"758","Charjabug","737","737","7",,"0",,"0","bug","electric","Rainy",,"430","145","171","114","0","0","0","0","0","0","0","0","0","0","0","1547","1525" +"759","Vikavolt","738","738","7","Evolved","0",,"0","bug","electric","Rainy",,"573","254","165","154","0","0","0","0","0","0","0","0","0","0","0","2930","2888" +"760","Crabrawler","739","739","7",,"0",,"0","fighting",,"Cloudy",,"353","150","109","94","0","0","0","0","0","0","0","0","0","0","0","1198","1180" +"761","Crabominable","740","740","7","Evolved","0",,"0","fighting","ice","Cloudy","Snow","567","231","142","194","0","0","0","0","0","0","0","0","0","0","0","2783","2743" +"762","Oricorio","741","741","7",,"0",,"0","fire","flying","Sunny/clear","Windy","491","196","145","150","0","0","0","0","0","0","0","0","0","0","0","2141","2110" +"763","Cutiefly","742","742","7",,"0",,"0","bug","fairy","Rainy","Cloudy","271","110","81","80","0","0","0","0","0","0","0","0","0","0","0","745","734" +"764","Ribombee","743","743","7",,"0",,"0","bug","fairy","Rainy","Cloudy","470","198","152","120","0","0","0","0","0","0","0","0","0","0","0","1997","1968" +"765","Rockruff","744","744","7",,"0",,"0","rock",,"Partly cloudy",,"285","117","78","90","0","0","0","0","0","0","0","0","0","0","0","814","803" +"766","Lycanroc","745","745","7",,"0",,"0","rock",,"Partly cloudy",,"521","231","140","150","0","0","0","0","0","0","0","0","0","0","0","2457","2422" +"767","Wishiwashi","746","746","7",,"0",,"0","water",,"Rainy",,"182","46","46","90","0","0","0","0","0","0","0","0","0","0","0","304","300" +"768","Mareanie","747","747","7",,"0",,"0","poison","water","Cloudy","Rainy","313","98","115","100","0","0","0","0","0","0","0","0","0","0","0","862","850" +"769","Toxapex","748","748","7",,"0",,"0","poison","water","Cloudy","Rainy","492","114","278","100","0","0","0","0","0","0","0","0","0","0","0","1478","1457" +"770","Mudbray","749","749","7",,"0",,"0","ground",,"Sunny/clear",,"443","175","128","140","0","0","0","0","0","0","0","0","0","0","0","1766","1741" +"771","Mudsdale","750","750","7","Evolved","0",,"0","ground",,"Sunny/clear",,"594","214","180","200","0","0","0","0","0","0","0","0","0","0","0","2928","2886" +"772","Dewpider","751","751","7",,"0",,"0","water","bug","Rainy",,"274","72","126","76","0","0","0","0","0","0","0","0","0","0","0","615","606" +"773","Araquanid","752","752","7",,"0",,"0","water","bug","Rainy",,"499","126","237","136","0","0","0","0","0","0","0","0","0","0","0","1717","1693" +"774","Fomantis","753","753","7",,"0",,"0","grass",,"Sunny/clear",,"244","100","64","80","0","0","0","0","0","0","0","0","0","0","0","622","613" +"775","Lurantis","754","754","7",,"0",,"0","grass",,"Sunny/clear",,"501","192","169","140","0","0","0","0","0","0","0","0","0","0","0","2183","2152" +"776","Morelull","755","755","7",,"0",,"0","grass","fairy","Sunny/clear","Cloudy","316","108","128","80","0","0","0","0","0","0","0","0","0","0","0","895","882" +"777","Shiinotic","756","756","7",,"0",,"0","grass","fairy","Sunny/clear","Cloudy","451","154","177","120","0","0","0","0","0","0","0","0","0","0","0","1699","1675" +"778","Salandit","757","757","7",,"0",,"0","poison","fire","Cloudy","Sunny/clear","312","136","80","96","0","0","0","0","0","0","0","0","0","0","0","968","954" +"779","Salazzle","758","758","7",,"0",,"0","poison","fire","Cloudy","Sunny/clear","494","228","130","136","0","0","0","0","0","0","0","0","0","0","0","2245","2213" +"780","Stufful","759","759","7",,"0",,"0","normal","fighting","Partly cloudy","Cloudy","371","136","95","140","0","0","0","0","0","0","0","0","0","0","0","1231","1213" +"781","Bewear","760","760","7","Lower","0",,"0","normal","fighting","Partly cloudy","Cloudy","616","226","150","240","0","0","0","0","0","0","0","0","0","0","0","3087","3043" +"782","Bounsweet","761","761","7",,"0",,"0","grass",,"Sunny/clear",,"208","55","69","84","0","0","0","0","0","0","0","0","0","0","0","398","393" +"783","Steenee","762","762","7",,"0",,"0","grass",,"Sunny/clear",,"276","78","94","104","0","0","0","0","0","0","0","0","0","0","0","661","652" +"784","Tsareena","763","763","7","Lower","0",,"0","grass",,"Sunny/clear",,"561","222","195","144","0","0","0","0","0","0","0","0","0","0","0","2704","2666" +"785","Comfey","764","764","7",,"0",,"0","fairy",,"Cloudy",,"493","165","226","102","0","0","0","0","0","0","0","0","0","0","0","1887","1860" +"786","Oranguru","765","765","7","Evolved","0",,"0","normal","psychic","Partly cloudy","Windy","555","168","207","180","0","0","0","0","0","0","0","0","0","0","0","2378","2344" +"787","Passimian","766","766","7","Evolved","0",,"0","fighting",,"Cloudy",,"597","222","175","200","0","0","0","0","0","0","0","0","0","0","0","2991","2949" +"788","Wimpod","767","767","7",,"0",,"0","bug","water","Rainy",,"196","67","79","50","0","0","0","0","0","0","0","0","0","0","0","400","394" +"789","Golisopod","768","768","7","Evolved","0",,"0","bug","water","Rainy",,"617","218","249","150","0","0","0","0","0","0","0","0","0","0","0","3037","2993" +"790","Sandygast","769","769","7",,"0",,"0","ghost","ground","Fog","Sunny/clear","363","120","133","110","0","0","0","0","0","0","0","0","0","0","0","1146","1130" +"791","Palossand","770","770","7","Evolved","0",,"0","ghost","ground","Fog","Sunny/clear","542","178","194","170","0","0","0","0","0","0","0","0","0","0","0","2370","2336" +"792","Pyukumuku","771","771","7",,"0",,"0","water",,"Rainy",,"431","97","224","110","0","0","0","0","0","0","0","0","0","0","0","1209","1191" +"793","Type: Null","772","772","7","Evolved","0",,"0","normal",,"Partly cloudy",,"558","184","184","190","0","0","0","0","0","0","0","0","0","0","0","2510","2474" +"794","Silvally","773","773","7","Evolved","0",,"0","normal",,"Partly cloudy",,"586","198","198","190","0","0","0","0","0","0","0","0","0","0","0","2779","2740" +"795","Minior","774","774","7",,"0",,"0","rock","flying","Partly cloudy","Windy","430","116","194","120","0","0","0","0","0","0","0","0","0","0","0","1374","1354" +"796","Komala","775","775","7",,"0",,"0","normal",,"Partly cloudy",,"525","216","179","130","0","0","0","0","0","0","0","0","0","0","0","2419","2385" +"797","Turtonator","776","776","7",,"0",,"0","fire","dragon","Sunny/clear","Windy","523","165","238","120","0","0","0","0","0","0","0","0","0","0","0","2077","2048" +"798","Togedemaru","777","777","7",,"0",,"0","electric","steel","Rainy","Snow","470","190","150","130","0","0","0","0","0","0","0","0","0","0","0","1980","1952" +"799","Mimikyu","778","778","7",,"0",,"0","ghost","fairy","Fog","Cloudy","500","177","213","110","0","0","0","0","0","0","0","0","0","0","0","2024","1995" +"800","Bruxish","779","779","7",,"0",,"0","water","psychic","Rainy","Windy","489","208","145","136","0","0","0","0","0","0","0","0","0","0","0","2164","2133" +"801","Drampa","780","780","7","Evolved","0",,"0","normal","dragon","Partly cloudy","Windy","554","231","167","156","0","0","0","0","0","0","0","0","0","0","0","2710","2671" +"802","Dhelmise","781","781","7","Evolved","0",,"0","ghost","grass","Fog","Sunny/clear","557","233","184","140","0","0","0","0","0","0","0","0","0","0","0","2720","2681" +"803","Jangmo-O","782","782","7",,"0",,"0","dragon",,"Windy",,"310","102","118","90","0","0","0","0","0","0","0","0","0","0","0","863","851" +"804","Hakamo-O","783","783","7",,"0",,"0","dragon","fighting","Windy","Cloudy","427","145","172","110","0","0","0","0","0","0","0","0","0","0","0","1527","1506" +"805","Kommo-O","784","784","7","Lower","0",,"0","dragon","fighting","Windy","Cloudy","622","222","250","150","0","0","0","0","0","0","0","0","0","0","0","3095","3051" +"806","Tapu Koko","785","785","7","Evolved","0",,"0","electric","fairy","Rainy","Cloudy","576","250","186","140","1","0","0","0","0","0","0","0","0","0","0","2921","2879" +"807","Tapu Lele","786","786","7","Lower","0",,"0","psychic","fairy","Windy","Cloudy","628","259","229","140","1","0","0","0","0","0","0","0","0","0","0","3328","3280" +"808","Tapu Bulu","787","787","7","Evolved","0",,"0","grass","fairy","Sunny/clear","Cloudy","614","249","225","140","1","0","0","0","0","0","0","0","0","0","0","3180","3134" +"809","Tapu Fini","788","788","7","Evolved","0",,"0","water","fairy","Rainy","Cloudy","590","189","261","140","1","0","0","0","0","0","0","0","0","0","0","2635","2597" +"810","Cosmog","789","789","7",,"0",,"0","psychic",,"Windy",,"197","54","57","86","0","0","0","0","0","0","0","0","0","0","0","367","362" +"811","Cosmoem","790","790","7",,"0",,"0","psychic",,"Windy",,"382","54","242","86","0","0","0","0","0","0","0","0","0","0","0","694","684" +"812","Solgaleo","791","791","7","Evolved","0",,"0","psychic","steel","Windy","Snow","773","280","219","274","1","0","0","0","0","0","0","0","0","0","0","4791","4722" +"813","Lunala","792","792","7","Lower","0",,"0","psychic","ghost","Windy","Fog","773","280","219","274","1","0","0","0","0","0","0","0","0","0","0","4791","4722" +"814","Nihilego","793","793","7","Lower","0",,"0","rock","poison","Partly cloudy","Cloudy","721","249","254","218","1","0","0","0","0","0","0","0","0","0","0","4128","4069" +"815","Buzzwole","794","794","7","Evolved","0",,"0","bug","fighting","Rainy","Cloudy","732","259","259","214","1","0","0","0","0","0","0","0","0","0","0","4286","4225" +"816","Pheromosa","795","795","7","Evolved","0",,"0","bug","fighting","Rainy","Cloudy","543","316","85","142","1","0","0","0","0","0","0","0","0","0","0","2590","2553" +"817","Xurkitree","796","796","7","Lower","0",,"0","electric",,"Rainy",,"640","330","144","166","1","0","0","0","0","0","0","0","0","0","0","3655","3603" +"818","Celesteela","797","797","7","Evolved","0",,"0","steel","flying","Snow","Windy","601","207","200","194","1","0","0","0","0","0","0","0","0","0","0","2939","2897" +"819","Kartana","798","798","7","Evolved","0",,"0","grass","steel","Sunny/clear","Snow","726","355","253","118","1","0","0","0","0","0","0","0","0","0","0","4362","4300" +"820","Guzzlord","799","799","7","Lower","0",,"0","dark","dragon","Fog","Windy","733","188","99","446","1","0","0","0","0","0","0","0","0","0","0","2906","2865" +"821","Necrozma","800","800","7","Lower","0",,"0","psychic",,"Windy",,"646","251","201","194","1","0","0","0","0","0","0","0","0","0","0","3529","3479" +"822","Magearna","801","801","7","Evolved","0",,"0","steel","fairy","Snow","Cloudy","631","246","225","160","1","0","0","0","0","0","0","0","0","0","0","3340","3293"