Thread: Pokemon Data Dumper

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1 Pokemon Data Dumper 
    PokeFrontier Java Developer

    Pokemon's Avatar
    Join Date
    May 2011
    Posts
    2,726
    Thanks given
    495
    Thanks received
    807
    Rep Power
    1260
    Cheers

    Code:
    package com.pokefrontier;
    
    import java.io.IOException;
    
    import org.jsoup.Jsoup;
    import org.jsoup.nodes.Document;
    import org.jsoup.nodes.Element;
    import org.jsoup.select.Elements;
    
    public class Dumper
    {
    
    	private static boolean foundMaleGenderRatio = false;
    	
    	private static String[] types = {"Normal", "Fire", "Water", "Electric", "Grass",
    		"Ice", "Fight", "Poison", "Ground", "Flying", "Psychic", "Bug", "Rock",
    		"Ghost", "Dragon", "Dark", "Steel"};
    	private static String link;
    	public static void main(String[] args) throws IOException
    	{
    		
    		for(int i =1;i< 600; i++)
    		{
    			if(i<10)
    			link = "http://www.serebii.net/pokedex-bw/00" + i + ".shtml";
    			else if(i > 9 && i <100)
    				link = "http://www.serebii.net/pokedex-bw/0" + i + ".shtml";
    			else
    				link = "http://www.serebii.net/pokedex-bw/" + i + ".shtml";
    			dump();
    		}
    		
    	}
    	
    	public static void dump() throws IOException
    	{
    		Document doc = Jsoup.connect(link).get();
    		//doc.outputSettings().charset("UTF-8");
    		Elements pokemonNameElement = doc.select("td font b");
    		
    		String pokemonName = pokemonNameElement.first().text().substring(pokemonNameElement.first().text().indexOf("#")+5);;
    		System.out.println("Name: " + pokemonName);
    		
    		String pokemonId = pokemonNameElement.toString().substring(pokemonNameElement.toString().indexOf("#")+1).split(pokemonName)[0];
    		System.out.println("Id: #" + pokemonId);
    		
    		Elements genderRatioElement = doc.select("td.fooinfo table[width=120][cellspacing=0][cellpadding=0] tr td");
    		//System.out.println(genderRatioElement.get(genderRatioElement.));//15
    		for(Element e : genderRatioElement)
    		{
    			if(e.getElementsContainingText("%").hasText())
    			{
    				//if(e.getElementsContainingText("Male").hasText())
    				if(!foundMaleGenderRatio)
    				{
    					System.out.println("Gender Ratio: [Male ♂  " + e.toString().split("<td>")[1].split("</td>")[0] + " ]");	
    					foundMaleGenderRatio = true;
    				}
    				else
    				{
    					System.out.println("Gender Ratio: [Female ♀  " + e.toString().split("<td>")[1].split("</td>")[0] + " ]");	
    					foundMaleGenderRatio = false;
    				}
    			}
    		}
    
    		Elements typeElement = doc.select("td.fooinfo[align=center] a img");
    		//System.out.println(typeElement);
    		for(Element e : typeElement)
    		{
    			if(e.tagName("img").attr("src").contains("gif"))
    			{
    				String imgSrc = e.tagName("img").attr("src");
    				String format = imgSrc.substring(imgSrc.lastIndexOf("/")+1).split(".gif")[0].substring(0, 1).toUpperCase();
    				String type = imgSrc.substring(imgSrc.lastIndexOf("/")+1).split(".gif")[0];
    				System.out.println("Type: " + type.replace(type.charAt(0), format.toCharArray()[0]));
    			}
    		}
    		
    		Elements classificationElement = doc.select("td.fooinfo");
    		for(Element e : classificationElement)
    		{
    			if(e.toString().contains("Pok&eacute;mon</td>"))
    			{
    				System.out.println("Classification: " + e.text());
    			}
    		}
    		
    		Elements heightElement = doc.select("td.fooinfo");
    		for(Element e : heightElement)
    		{
    			if(e.toString().contains("<br />") && e.toString().contains("m</td>"))
    			{
    				String feetUnformated = e.toString().substring(e.toString().lastIndexOf("\">")+2).split("<br />")[0];
    				String feet = feetUnformated.toCharArray()[0]+"'" + feetUnformated.substring(1);
    				String meter = e.toString().substring(e.toString().lastIndexOf("/>")+3).split("</td>")[0];
    				System.out.println("Height Feet: " + feet);
    				System.out.println("Height Meter: " + meter);
    			}
    		}
    		
    		Elements weightElement = doc.select("td.fooinfo");
    		for(Element e : weightElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				String pounds = e.toString().substring(e.toString().lastIndexOf("\">")+2).split("<br />")[0];
    				String kilograms = e.toString().substring(e.toString().lastIndexOf("<br />")+7).split("</td>")[0];
    				System.out.println("Weight Pounds: " + pounds);
    				System.out.println("Weight Kilograms: " + kilograms);
    			}
    		}
    		
    		Elements captureRateElement = doc.select("td.fooinfo");
    		for(Element e : captureRateElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				System.out.println("Capture Rate: " + captureRateElement.get(e.siblingIndex()+4).text());
    			}
    		}
    		
    		Elements eggStepsElement = doc.select("td.fooinfo");
    		for(Element e : eggStepsElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				System.out.println("Egg Steps: " + captureRateElement.get(e.siblingIndex()+5).text());
    			}
    		}
    		
    		Elements baseHappinessElement = doc.select("td.fooinfo");
    		for(Element e : baseHappinessElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				System.out.println("Base Happiness: " + captureRateElement.get(e.siblingIndex()+7).text());
    			}
    		}
    		
    		Elements effortValuesEarnedElement = doc.select("td.fooinfo");
    		for(Element e : effortValuesEarnedElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				System.out.println("Effort Values Earned: " + captureRateElement.get(e.siblingIndex()+8).text());
    			}
    		}
    		
    		Elements fleeFlagElement = doc.select("td.fooinfo");
    		for(Element e : fleeFlagElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				System.out.println("Effort Values Earned: " + captureRateElement.get(e.siblingIndex()+9).text());
    			}
    		}
    		
    		Elements entryForestLevelElement = doc.select("td.fooinfo");
    		for(Element e : entryForestLevelElement)
    		{
    			if(e.toString().contains("lbs"))
    			{
    				System.out.println("Entry Forest Level: " + captureRateElement.get(e.siblingIndex()+10).text());
    			}
    		}
    		
    		int i =0;
    		Elements damageTakenElement = doc.select("td.footype");
    		for(Element e : damageTakenElement)
    		{
    
    			if(!e.toString().contains("shtml"))
    				if(i < types.length)
    				{
    					System.out.println("Type [" + types[i] + "] Damage: " + e.text());
    					i++;
    				}
    		}
    		
    		//<td rowspan="2" class="fooinfo"><a href="/attackdex-bw/dragonclaw.shtml">Dragon Claw</a></td>
    		Elements movesLearnedByLevelElement = doc.select("td.fooinfo");
    		int dataIndex = 0;
    		for(Element e : movesLearnedByLevelElement)
    		{
    			if(e.toString().contains("attackdex-bw"))
    			{
    				System.out.println("Attack Name: " + e.text());
    				dataIndex =0;
    			}
    			else if(e.toString().contains("pokedex-dp/type") && e.toString().contains("gif") && !e.toString().contains("shtml"))
    			{
    				String imgSrc = e.toString();
    				String format = imgSrc.substring(imgSrc.lastIndexOf("type/")+5).split(".gif")[0];
    				System.out.println("Type: " + format);
    			}
    			else if(e.toString().contains("pokedex-dp/type") && e.toString().contains("png"))
    			{
    				String imgSrc = e.toString();
    				String format = imgSrc.substring(imgSrc.lastIndexOf("type/")+5).split(".png")[0];
    				System.out.println("Attack Form: " + format);
    			}
    			else if(!e.toString().contains("pokedex-bw")&& (e.toString().contains("<td class=\"fooinfo\" align=\"center\">") || e.toString().contains("<td class=\"fooinfo\" colspan=\"8\">")))
    			{
    				if(!e.toString().contains("--"))
    				{
    					switch(dataIndex)
    					{
    					case 0:
    						System.out.println("Att. " + e.text());
    						break;
    					case 1:
    						System.out.println("Acc. " + e.text());
    						break;
    					case 2:
    						System.out.println("PP. " + e.text());
    						break;
    					case 3:
    						System.out.println("Effect% " + e.text());
    						break;
    					case 4:
    						System.out.println("Description: " + e.text());
    						break;
    					}
    					dataIndex++;
    				}
    				else
    				{
    					System.out.println("Effect% " + e.text());
    					dataIndex++;
    				}
    			}
    		}
    	}
    }


    Attached image


    I love
    Reply With Quote  
     

  2. Thankful users:


  3. #2  
    Registered Member
    Polish Civil's Avatar
    Join Date
    May 2010
    Age
    28
    Posts
    1,345
    Thanks given
    484
    Thanks received
    191
    Rep Power
    463
    Usefull

    For pokemon nerds.


    Reply With Quote  
     

  4. #3  
    PokeFrontier Java Developer

    Pokemon's Avatar
    Join Date
    May 2011
    Posts
    2,726
    Thanks given
    495
    Thanks received
    807
    Rep Power
    1260
    Quote Originally Posted by Polish Civil View Post
    Usefull

    For pokemon nerds.
    Now hurry up and finish pokenation do you need an x and y gif dumper?


    Attached image


    I love
    Reply With Quote  
     

  5. #4  
    Registered Member Tx-Sec's Avatar
    Join Date
    Jan 2008
    Age
    30
    Posts
    520
    Thanks given
    34
    Thanks received
    15
    Rep Power
    68
    Nice tool Anthony, finish it now DD
    Reply With Quote  
     

  6. #5  
    PokeFrontier Java Developer

    Pokemon's Avatar
    Join Date
    May 2011
    Posts
    2,726
    Thanks given
    495
    Thanks received
    807
    Rep Power
    1260
    I updated it i dumped 400 pokemons

    Code:
    BULBASAUR("Bulbasaur", 001 ", true, "87.5, 12.5, "Overgrow", "Chlorophyll (Hidden Ability)", "Chlorophyll", Type.GRASS, "Seed Pokémon", 15.2, 45, 5,120, 
    		70, "1 Sp. Attack Point(s)", 34, Level 10),
    IVYSAUR("Ivysaur", 002 ", true, "87.5, 12.5, "Overgrow", "Chlorophyll (Hidden Ability)", "Chlorophyll", Type.GRASS, "Seed Pokémon", 28.7, 45, 5,120, 
    		70, "1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 34, Level 16),
    VENUSAUR("Venusaur", 003 ", true, "87.5, 12.5, "Overgrow", "Chlorophyll (Hidden Ability)", "Chlorophyll", Type.GRASS, "Seed Pokémon", 220.5, 45, 5,120, 
    		70, "2 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 34, Level 32),
    CHARMANDER("Charmander", 004 ", true, "87.5, 12.5, "Blaze", "Solar Power (Hidden Ability)", "Solar Power", Type.FIRE, "Lizard Pokémon", 18.7, 45, 5,120, 
    		70, "1 Speed Point(s)", 94, Level 10),
    CHARMELEON("Charmeleon", 005 ", true, "87.5, 12.5, "Blaze", "Solar Power (Hidden Ability)", "Solar Power", Type.FIRE, "Flame Pokémon", 41.9, 45, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 94, Level 16),
    CHARIZARD("Charizard", 006 ", true, "87.5, 12.5, "Blaze", "Solar Power (Hidden Ability)", "Solar Power", Type.FIRE, "Flame Pokémon", 199.5, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 94, Level 36),
    SQUIRTLE("Squirtle", 007 ", true, "87.5, 12.5, "Torrent", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Tiny Turtle Pokémon", 19.8, 45, 5,120, 
    		70, "1 Defense Point(s)", 44, Level 10),
    WARTORTLE("Wartortle", 008 ", true, "87.5, 12.5, "Torrent", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Turtle Pokémon", 49.6, 45, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 44, Level 16),
    BLASTOISE("Blastoise", 009 ", true, "87.5, 12.5, "Torrent", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Shellfish Pokémon", 188.5, 45, 5,120, 
    		70, "3 Sp. Defense Point(s)", 44, Level 36),
    CATERPIE("Caterpie", 010 ", true, "50, 50, "Dust", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Worm Pokémon", 6.4, 255, 3,840, 
    		70, "1 HP Point(s)", 50, Level 10),
    METAPOD("Metapod", 011 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 21.8, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    BUTTERFREE("Butterfree", 012 ", true, "50, 50, "Compoundeyes", "Tinted Lens (Hidden Ability)", "Tinted Lens", Type.BUG, "Butterfly Pokémon", 70.5, 45, 3,840, 
    		70, "2 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 110, Level 10),
    WEEDLE("Weedle", 013 ", true, "50, 50, "Dust", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Hairy Pokémon", 7.1, 255, 3,840, 
    		70, "1 Speed Point(s)", 50, Level 10),
    KAKUNA("Kakuna", 014 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 22.0, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    BEEDRILL("Beedrill", 015 ", true, "50, 50, "Swarm", "Sniper (Hidden Ability)", "Sniper", Type.BUG, "Poison Bee Pokémon", 65.0, 45, 3,840, 
    		70, "2 Attack Point(s) 1 Sp. Defense Point(s)", 97, Level 10),
    PIDGEY("Pidgey", 016 ", true, "50, 50, "Eye", "Tangled Feet", "Big Pecks", Type.NORMAL, "Tiny Bird Pokémon", 4.0, 255, 3,840, 
    		70, "1 Speed Point(s)", 145, Level 10),
    PIDGEOTTO("Pidgeotto", 017 ", true, "50, 50, "Eye", "Tangled Feet", "Big Pecks", Type.NORMAL, "Bird Pokémon", 66.1, 120, 3,840, 
    		70, "2 Speed Point(s)", 145, Level 18),
    PIDGEOT("Pidgeot", 018 ", true, "50, 50, "Eye", "Tangled Feet", "Big Pecks", Type.NORMAL, "Bird Pokémon", 87.1, 45, 3,840, 
    		70, "3 Speed Point(s)", 145, Level 36),
    RATTATA("Rattata", 019 ", true, "50, 50, "Away", "Guts", "Hustle", Type.NORMAL, "Mouse Pokémon", 7.7, 255, 3,840, 
    		70, "1 Speed Point(s)", 55, Level 10),
    RATICATE("Raticate", 020 ", true, "50, 50, "Away", "Guts", "Hustle", Type.NORMAL, "Mouse Pokémon", 40.8, 127, 3,840, 
    		70, "2 Speed Point(s)", 55, Level 20),
    SPEAROW("Spearow", 021 ", true, "50, 50, "Eye", "Sniper (Hidden Ability)", "Sniper", Type.NORMAL, "Tiny Bird Pokémon", 4.4, 255, 3,840, 
    		70, "1 Speed Point(s)", 97, Level 10),
    FEAROW("Fearow", 022 ", true, "50, 50, "Eye", "Sniper (Hidden Ability)", "Sniper", Type.NORMAL, "Beak Pokémon", 83.8, 90, 3,840, 
    		70, "2 Speed Point(s)", 97, Level 20),
    EKANS("Ekans", 023 ", true, "50, 50, "Intimidate", "Shed Skin", "Unnerve", Type.POISON, "Snake Pokémon", 15.2, 255, 5,120, 
    		70, "1 Attack Point(s)", 127, Level 10),
    ARBOK("Arbok", 024 ", true, "50, 50, "Intimidate", "Shed Skin", "Unnerve", Type.POISON, "Cobra Pokémon", 143.3, 90, 5,120, 
    		70, "2 Attack Point(s)", 127, Level 22),
    PIKACHU("Pikachu", 025 ", true, "50, 50, "Static", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Mouse Pokémon", 13.2, 190, 2,560, 
    		70, "2 Speed Point(s)", 31, Level 10),
    RAICHU("Raichu", 026 ", true, "50, 50, "Static", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Mouse Pokémon", 66.1, 75, 2,560, 
    		70, "3 Speed Point(s)", 31, Level 10),
    SANDSHREW("Sandshrew", 027 ", true, "50, 50, "Veil", "Sand Rush (Hidden Ability)", "Sand Rush", Type.GROUND, "Mouse Pokémon", 26.5, 255, 5,120, 
    		70, "1 Defense Point(s)", 146, Level 10),
    SANDSLASH("Sandslash", 028 ", true, "50, 50, "Veil", "Sand Rush (Hidden Ability)", "Sand Rush", Type.GROUND, "Mouse Pokémon", 65.0, 90, 5,120, 
    		70, "2 Defense Point(s)", 146, Level 22),
    NIDORAN♀("Nidoran♀", 029 Nidoran&#x2640;</b>
    <b>Japan</b>
    <b>French</b>
    <b>German</b>
    <b>Korean</b>
    <b>National</b>
    <b>BW Unova</b>
    <b>B2W2 Unova</b>
    <b>Abilities</b>
    <b>Poison Point</b>
    <b>Rivalry</b>
    <b>Hustle</b>
    <b>Poison Point</b>
    <b>Rivalry</b>
    <b>Hidden Ability</b>
    <b>Hustle</b>
    <b>Stats</b>", true, "0, 100, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 15.4, 235, 5,120, 
    		70, "1 HP Point(s)", 55, Level 10),
    NIDORINA("Nidorina", 030 ", true, "0, 100, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 44.1, 120, 5,120, 
    		70, "2 HP Point(s)", 55, Level 16),
    NIDOQUEEN("Nidoqueen", 031 ", true, "0, 100, "Point", "Rivalry", "Sheer Force", Type.POISON, "Drill Pokémon", 132.3, 45, 5,120, 
    		70, "3 HP Point(s)", 125, Level 16),
    NIDORINO("Nidorino", 033 ", true, "100, 0, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 43.0, 120, 5,120, 
    		70, "2 Attack Point(s)", 55, Level 16),
    NIDOKING("Nidoking", 034 ", true, "100, 0, "Point", "Rivalry", "Sheer Force", Type.POISON, "Drill Pokémon", 136.7, 45, 5,120, 
    		70, "3 Attack Point(s)", 125, Level 16),
    CLEFAIRY("Clefairy", 035 ", true, "25, 75, "Charm", "Magic Guard", "Friend Guard", Type.NORMAL, "Fairy Pokémon", 16.5, 150, 2,560, 
    		140, "2 HP Point(s)", 132, Level 10),
    CLEFABLE("Clefable", 036 ", true, "25, 75, "Charm", "Magic Guard", "Unaware", Type.NORMAL, "Fairy Pokémon", 88.2, 25, 2,560, 
    		140, "3 HP Point(s)", 109, Level 10),
    VULPIX("Vulpix", 037 ", true, "25, 75, "Fire", "Drought (Hidden Ability)", "Drought", Type.FIRE, "Fox Pokémon", 21.8, 190, 5,120, 
    		70, "1 Speed Point(s)", 70, Level 10),
    NINETALES("Ninetales", 038 ", true, "25, 75, "Fire", "Drought (Hidden Ability)", "Drought", Type.FIRE, "Fox Pokémon", 43.9, 75, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Defense Point(s)", 70, Level 10),
    JIGGLYPUFF("Jigglypuff", 039 ", true, "25, 75, "Charm", "Friend Guard (Hidden Ability)", "Friend Guard", Type.NORMAL, "Balloon Pokémon", 12.1, 170, 2,560, 
    		70, "2 HP Point(s)", 132, Level 10),
    WIGGLYTUFF("Wigglytuff", 040 ", true, "25, 75, "Charm", "Frisk (Hidden Ability)", "Frisk", Type.NORMAL, "Balloon Pokémon", 26.5, 50, 2,560, 
    		70, "3 HP Point(s)", 119, Level 10),
    ZUBAT("Zubat", 041 ", true, "50, 50, "Focus", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Bat Pokémon", 16.5, 255, 3,840, 
    		70, "1 Speed Point(s)", 151, Level 10),
    GOLBAT("Golbat", 042 ", true, "50, 50, "Focus", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Bat Pokémon", 121.3, 90, 3,840, 
    		70, "2 Speed Point(s)", 151, Level 22),
    ODDISH("Oddish", 043 ", true, "50, 50, "Chlorophyll", "Run Away (Hidden Ability)", "Run Away", Type.GRASS, "Weed Pokémon", 11.9, 255, 5,120, 
    		70, "1 Sp. Attack Point(s)", 50, Level 10),
    GLOOM("Gloom", 044 ", true, "50, 50, "Chlorophyll", "Stench (Hidden Ability)", "Stench", Type.GRASS, "Weed Pokémon", 19.0, 120, 5,120, 
    		70, "2 Sp. Attack Point(s)", 1, Level 21),
    VILEPLUME("Vileplume", 045 ", true, "50, 50, "Chlorophyll", "Effect Spore (Hidden Ability)", "Effect Spore", Type.GRASS, "Flower Pokémon", 41.0, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 27, Level 21),
    PARAS("Paras", 046 ", true, "50, 50, "Spore", "Dry Skin", "Damp", Type.BUG, "Mushroom Pokémon", 11.9, 190, 5,120, 
    		70, "1 Attack Point(s)", 6, Level 10),
    PARASECT("Parasect", 047 ", true, "50, 50, "Spore", "Dry Skin", "Damp", Type.BUG, "Mushroom Pokémon", 65.0, 75, 5,120, 
    		70, "2 Attack Point(s) 1 Defense Point(s)", 6, Level 24),
    VENONAT("Venonat", 048 ", true, "50, 50, "Compoundeyes", "Tinted Lens", "Run Away", Type.BUG, "Insect Pokémon", 66.1, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 50, Level 10),
    VENOMOTH("Venomoth", 049 ", true, "50, 50, "Dust", "Tinted Lens", "Wonder Skin", Type.BUG, "Poison Moth Pokémon", 27.6, 75, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 147, Level 31),
    DIGLETT("Diglett", 050 ", true, "50, 50, "Veil", "Arena Trap", "Sand Force", Type.GROUND, "Mole Pokémon", 1.8, 255, 5,120, 
    		70, "1 Speed Point(s)", 159, Level 10),
    DUGTRIO("Dugtrio", 051 ", true, "50, 50, "Veil", "Arena Trap", "Sand Force", Type.GROUND, "Mole Pokémon", 73.4, 50, 5,120, 
    		70, "2 Speed Point(s)", 159, Level 26),
    MEOWTH("Meowth", 052 ", true, "50, 50, "Pickup", "Technician", "Unnerve", Type.NORMAL, "Scratch Cat Pokémon", 9.3, 255, 5,120, 
    		70, "1 Speed Point(s)", 127, Level 10),
    PERSIAN("Persian", 053 ", true, "50, 50, "Limber", "Technician", "Unnerve", Type.NORMAL, "Classy Cat Pokémon", 70.5, 90, 5,120, 
    		70, "2 Speed Point(s)", 127, Level 28),
    PSYDUCK("Psyduck", 054 ", true, "50, 50, "Damp", "Cloud Nine", "Swift Swim", Type.WATER, "Duck Pokémon", 43.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 33, Level 10),
    GOLDUCK("Golduck", 055 ", true, "50, 50, "Damp", "Cloud Nine", "Swift Swim", Type.WATER, "Duck Pokémon", 168.9, 75, 5,120, 
    		70, "2 Sp. Attack Point(s)", 33, Level 33),
    MANKEY("Mankey", 056 ", true, "50, 50, "Spirit", "Anger Point", "Defiant", Type.FIGHTING, "Pig Monkey Pokémon", 61.7, 190, 5,120, 
    		70, "1 Attack Point(s)", 128, Level 10),
    PRIMEAPE("Primeape", 057 ", true, "50, 50, "Spirit", "Anger Point", "Defiant", Type.FIGHTING, "Pig Monkey Pokémon", 70.5, 75, 5,120, 
    		70, "2 Attack Point(s)", 128, Level 28),
    GROWLITHE("Growlithe", 058 ", true, "75, 25, "Intimidate", "Flash Fire", "Justified", Type.FIRE, "Puppy Pokémon", 41.9, 190, 5,120, 
    		70, "1 Attack Point(s)", 154, Level 10),
    ARCANINE("Arcanine", 059 ", true, "75, 25, "Intimidate", "Flash Fire", "Justified", Type.FIRE, "Legendary Pokémon", 341.7, 75, 5,120, 
    		70, "2 Attack Point(s)", 154, Level 10),
    POLIWAG("Poliwag", 060 ", true, "50, 50, "Absorb", "Damp", "Swift Swim", Type.WATER, "Tadpole Pokémon", 27.3, 255, 5,120, 
    		70, "1 Speed Point(s)", 33, Level 10),
    POLIWHIRL("Poliwhirl", 061 ", true, "50, 50, "Absorb", "Damp", "Swift Swim", Type.WATER, "Tadpole Pokémon", 44.1, 120, 5,120, 
    		70, "2 Speed Point(s)", 33, Level 25),
    POLIWRATH("Poliwrath", 062 ", true, "50, 50, "Absorb", "Damp", "Swift Swim", Type.WATER, "Tadpole Pokémon", 119.0, 45, 5,120, 
    		70, "3 Defense Point(s)", 33, Level 25),
    ABRA("Abra", 063 ", true, "75, 25, "Synchronize", "Inner Focus", "Magic Guard", Type.PSYCHIC, "Psi Pokémon", 43.0, 200, 5,120, 
    		70, "1 Sp. Attack Point(s)", 98, Level 10),
    KADABRA("Kadabra", 064 ", true, "75, 25, "Synchronize", "Inner Focus", "Magic Guard", Type.PSYCHIC, "Psi Pokémon", 124.6, 100, 5,120, 
    		70, "2 Sp. Attack Point(s)", 98, Level 16),
    ALAKAZAM("Alakazam", 065 ", true, "75, 25, "Synchronize", "Inner Focus", "Magic Guard", Type.PSYCHIC, "Psi Pokémon", 105.8, 50, 5,120, 
    		70, "3 Sp. Attack Point(s)", 98, Level 16),
    MACHOP("Machop", 066 ", true, "75, 25, "Guts", "No Guard", "Steadfast", Type.FIGHTING, "Superpower Pokémon", 43.0, 180, 5,120, 
    		70, "1 Attack Point(s)", 80, Level 10),
    MACHOKE("Machoke", 067 ", true, "75, 25, "Guts", "No Guard", "Steadfast", Type.FIGHTING, "Superpower Pokémon", 155.4, 90, 5,120, 
    		70, "2 Attack Point(s)", 80, Level 28),
    MACHAMP("Machamp", 068 ", true, "75, 25, "Guts", "No Guard", "Steadfast", Type.FIGHTING, "Superpower Pokémon", 286.6, 45, 5,120, 
    		70, "3 Attack Point(s)", 80, Level 28),
    BELLSPROUT("Bellsprout", 069 ", true, "50, 50, "Chlorophyll", "Gluttony (Hidden Ability)", "Gluttony", Type.GRASS, "Flower Pokémon", 8.8, 255, 5,120, 
    		70, "1 Attack Point(s)", 82, Level 10),
    WEEPINBELL("Weepinbell", 070 ", true, "50, 50, "Chlorophyll", "Gluttony (Hidden Ability)", "Gluttony", Type.GRASS, "Flycatcher Pokémon", 14.1, 120, 5,120, 
    		70, "2 Attack Point(s)", 82, Level 21),
    VICTREEBEL("Victreebel", 071 ", true, "50, 50, "Chlorophyll", "Gluttony (Hidden Ability)", "Gluttony", Type.GRASS, "Flycatcher Pokémon", 34.2, 45, 5,120, 
    		70, "3 Attack Point(s)", 82, Level 21),
    TENTACOOL("Tentacool", 072 ", true, "50, 50, "Body", "Liquid Ooze", "Rain Dish", Type.WATER, "Jellyfish Pokémon", 100.3, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 44, Level 10),
    TENTACRUEL("Tentacruel", 073 ", true, "50, 50, "Body", "Liquid Ooze", "Rain Dish", Type.WATER, "Jellyfish Pokémon", 121.3, 60, 5,120, 
    		70, "2 Sp. Defense Point(s)", 44, Level 30),
    GEODUDE("Geodude", 074 ", true, "50, 50, "Head", "Sturdy", "Sand Veil", Type.ROCK, "Rock Pokémon", 44.1, 255, 3,840, 
    		70, "1 Defense Point(s)", 8, Level 10),
    GRAVELER("Graveler", 075 ", true, "50, 50, "Head", "Sturdy", "Sand Veil", Type.ROCK, "Rock Pokémon", 231.5, 120, 3,840, 
    		70, "2 Defense Point(s)", 8, Level 25),
    GOLEM("Golem", 076 ", true, "50, 50, "Head", "Sturdy", "Sand Veil", Type.ROCK, "Megaton Pokémon", 661.4, 45, 3,840, 
    		70, "3 Defense Point(s)", 8, Level 25),
    PONYTA("Ponyta", 077 ", true, "50, 50, "Away", "Flash Fire", "Flame Body", Type.FIRE, "Fire Horse Pokémon", 66.1, 190, 5,120, 
    		70, "1 Speed Point(s)", 49, Level 10),
    RAPIDASH("Rapidash", 078 ", true, "50, 50, "Away", "Flash Fire", "Flame Body", Type.FIRE, "Fire Horse Pokémon", 209.4, 60, 5,120, 
    		70, "2 Speed Point(s)", 49, Level 40),
    SLOWPOKE("Slowpoke", 079 ", true, "50, 50, "Oblivious", "Own Tempo", "Regenerator", Type.WATER, "Dopey Pokémon", 79.4, 190, 5,120, 
    		70, "1 HP Point(s)", 144, Level 10),
    SLOWBRO("Slowbro", 080 ", true, "50, 50, "Oblivious", "Own Tempo", "Regenerator", Type.WATER, "Hermit Crab Pokémon", 173.1, 75, 5,120, 
    		70, "2 Defense Point(s)", 144, Level 37),
    MAGNEMITE("Magnemite", 081 ", false, "Pull", "Sturdy", "Analytic", Type.ELECTRIC, "Magnet Pokémon", 13.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 148, Level 10),
    MAGNETON("Magneton", 082 ", false, "Pull", "Sturdy", "Analytic", Type.ELECTRIC, "Magnet Pokémon", 132.3, 60, 5,120, 
    		70, "2 Sp. Attack Point(s)", 148, Level 30),
    FARFETCH'D("Farfetch'd", 083 ", true, "50, 50, "Eye", "Inner Focus", "Defiant", Type.NORMAL, "Wild Duck Pokémon", 33.1, 45, 5,120, 
    		70, "1 Attack Point(s)", 128, Level 10),
    DODUO("Doduo", 084 ", true, "50, 50, "Away", "Early Bird", "Tangled Feet", Type.NORMAL, "Twin Bird Pokémon", 86.4, 190, 5,120, 
    		70, "1 Attack Point(s)", 77, Level 10),
    DODRIO("Dodrio", 085 ", true, "50, 50, "Away", "Early Bird", "Tangled Feet", Type.NORMAL, "Triple Bird Pokémon", 187.8, 45, 5,120, 
    		70, "2 Attack Point(s)", 77, Level 31),
    SEEL("Seel", 086 ", true, "50, 50, "Fat", "Hydration", "Ice Body", Type.WATER, "Sea Lion Pokémon", 198.4, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 115, Level 10),
    DEWGONG("Dewgong", 087 ", true, "50, 50, "Fat", "Hydration", "Ice Body", Type.WATER, "Sea Lion Pokémon", 264.6, 75, 5,120, 
    		70, "2 Sp. Defense Point(s)", 115, Level 34),
    GRIMER("Grimer", 088 ", true, "50, 50, "Stench", "Sticky Hold", "Poison Touch", Type.POISON, "Sludge Pokémon", 66.1, 190, 5,120, 
    		70, "1 HP Point(s)", 143, Level 10),
    MUK("Muk", 089 ", true, "50, 50, "Stench", "Sticky Hold", "Poison Touch", Type.POISON, "Sludge Pokémon", 66.1, 75, 5,120, 
    		70, "1 HP Point(s) 1 Attack Point(s)", 143, Level 38),
    SHELLDER("Shellder", 090 ", true, "50, 50, "Armor", "Skill Link", "Overcoat", Type.WATER, "Bivalve Pokémon", 8.8, 190, 5,120, 
    		70, "1 Defense Point(s)", 142, Level 10),
    CLOYSTER("Cloyster", 091 ", true, "50, 50, "Armor", "Skill Link", "Overcoat", Type.WATER, "Bivalve Pokémon", 292.1, 60, 5,120, 
    		70, "2 Defense Point(s)", 142, Level 10),
    GASTLY("Gastly", 092 ", true, 50, 50, "Levitate", Type.GHOST, "Gas Pokémon", 0.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 0, Level 10),
    HAUNTER("Haunter", 093 ", true, 50, 50, "Levitate", Type.GHOST, "Gas Pokémon", 0.2, 90, 5,120, 
    		70, "2 Sp. Attack Point(s)", 0, Level 25),
    GENGAR("Gengar", 094 ", true, 50, 50, "Levitate", Type.GHOST, "Shadow Pokémon", 89.3, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 0, Level 25),
    ONIX("Onix", 095 ", true, "50, 50, "Head", "Sturdy", "Weak Armor", Type.ROCK, "Rock Snake Pokémon", 463.0, 45, 6,400, 
    		70, "1 Defense Point(s)", 133, Level 10),
    DROWZEE("Drowzee", 096 ", true, "50, 50, "Insomnia", "Forewarn", "Inner Focus", Type.PSYCHIC, "Hypnosis Pokémon", 71.4, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 39, Level 10),
    HYPNO("Hypno", 097 ", true, "50, 50, "Insomnia", "Forewarn", "Inner Focus", Type.PSYCHIC, "Hypnosis Pokémon", 166.7, 75, 5,120, 
    		70, "2 Sp. Defense Point(s)", 39, Level 26),
    KRABBY("Krabby", 098 ", true, "50, 50, "Cutter", "Shell Armor", "Sheer Force", Type.WATER, "River Crab Pokémon", 14.3, 225, 5,120, 
    		70, "1 Attack Point(s)", 125, Level 10),
    KINGLER("Kingler", 099 ", true, "50, 50, "Cutter", "Shell Armor", "Sheer Force", Type.WATER, "Pincer Pokémon", 132.3, 60, 5,120, 
    		70, "2 Attack Point(s)", 125, Level 28),
    VOLTORB("Voltorb", 100 ", false, "Soundproof", "Static", "Aftermath", Type.ELECTRIC, "Ball Pokémon", 22.9, 190, 5,120, 
    		70, "1 Speed Point(s)", 106, Level 10),
    ELECTRODE("Electrode", 101 ", false, "Soundproof", "Static", "Aftermath", Type.ELECTRIC, "Ball Pokémon", 146.8, 60, 5,120, 
    		70, "2 Speed Point(s)", 106, Level 30),
    EXEGGCUTE("Exeggcute", 102 ", true, "50, 50, "Chlorophyll", "Harvest (Hidden Ability)", "Harvest", Type.GRASS, "Egg Pokémon", 5.5, 90, 5,120, 
    		70, "1 Defense Point(s)", 139, Level 10),
    EXEGGUTOR("Exeggutor", 103 ", true, "50, 50, "Chlorophyll", "Harvest (Hidden Ability)", "Harvest", Type.GRASS, "Coconut Pokémon", 264.6, 45, 5,120, 
    		70, "2 Sp. Attack Point(s)", 139, Level 10),
    CUBONE("Cubone", 104 ", true, "50, 50, "Head", "Lightningrod", "Battle Armor", Type.GROUND, "Lonely Pokémon", 14.3, 190, 5,120, 
    		70, "1 Defense Point(s)", 4, Level 10),
    MAROWAK("Marowak", 105 ", true, "50, 50, "Head", "Lightningrod", "Battle Armor", Type.GROUND, "Bone Keeper Pokémon", 99.2, 75, 5,120, 
    		70, "2 Defense Point(s)", 4, Level 28),
    HITMONLEE("Hitmonlee", 106 ", true, "100, 0, "Limber", "Reckless", "Unburden", Type.FIGHTING, "Kicking Pokémon", 109.8, 45, 6,400, 
    		70, "2 Attack Point(s)", 84, Level 20),
    HITMONCHAN("Hitmonchan", 107 ", true, "100, 0, "Eye", "Iron Fist", "Inner Focus", Type.FIGHTING, "Punching Pokémon", 110.7, 45, 6,400, 
    		70, "2 Sp. Defense Point(s)", 39, Level 20),
    LICKITUNG("Lickitung", 108 ", true, "50, 50, "Tempo", "Oblivious", "Cloud Nine", Type.NORMAL, "Licking Pokémon", 144.4, 45, 5,120, 
    		70, "2 HP Point(s)", 13, Level 10),
    KOFFING("Koffing", 109 ", true, 50, 50, "Levitate", Type.POISON, "Poison Gas Pokémon", 2.2, 190, 5,120, 
    		70, "1 Defense Point(s)", 0, Level 10),
    WEEZING("Weezing", 110 ", true, 50, 50, "Levitate", Type.POISON, "Poison Gas Pokémon", 20.9, 60, 5,120, 
    		70, "2 Defense Point(s)", 0, Level 35),
    RHYHORN("Rhyhorn", 111 ", true, "50, 50, "Lightningrod", "Rock Head", "Reckless", Type.GROUND, "Spikes Pokémon", 253.5, 120, 5,120, 
    		70, "1 Defense Point(s)", 120, Level 10),
    RHYDON("Rhydon", 112 ", true, "50, 50, "Lightningrod", "Rock Head", "Reckless", Type.GROUND, "Drill Pokémon", 264.6, 60, 5,120, 
    		70, "2 Attack Point(s)", 120, Level 42),
    CHANSEY("Chansey", 113 ", true, "0, 100, "Cure", "Serene Grace", "Healer", Type.NORMAL, "Egg Pokémon", 76.3, 30, 10,240, 
    		140, "2 HP Point(s)", 131, Level 10),
    TANGELA("Tangela", 114 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Regenerator", Type.GRASS, "Vine Pokémon", 77.2, 45, 5,120, 
    		70, "1 Defense Point(s)", 144, Level 10),
    KANGASKHAN("Kangaskhan", 115 ", true, "0, 100, "Bird", "Scrappy", "Inner Focus", Type.NORMAL, "Parent Pokémon", 176.4, 45, 5,120, 
    		70, "2 HP Point(s)", 39, Level 10),
    HORSEA("Horsea", 116 ", true, "50, 50, "Swim", "Sniper", "Damp", Type.WATER, "Dragon Pokémon", 17.6, 225, 5,120, 
    		70, "1 Sp. Attack Point(s)", 6, Level 10),
    SEADRA("Seadra", 117 ", true, "50, 50, "Point", "Sniper", "Damp", Type.WATER, "Dragon Pokémon", 55.1, 75, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Attack Point(s)", 6, Level 32),
    GOLDEEN("Goldeen", 118 ", true, "50, 50, "Swim", "Water Veil", "Lightningrod", Type.WATER, "Goldfish Pokémon", 33.1, 225, 5,120, 
    		70, "1 Attack Point(s)", 31, Level 10),
    SEAKING("Seaking", 119 ", true, "50, 50, "Swim", "Water Veil", "Lightningrod", Type.WATER, "Goldfish Pokémon", 86.0, 60, 5,120, 
    		70, "2 Attack Point(s)", 31, Level 33),
    STARYU("Staryu", 120 ", false, "Illuminate", "Natural Cure", "Analytic", Type.WATER, "Starshape Pokémon", 76.1, 225, 5,120, 
    		70, "1 Speed Point(s)", 148, Level 10),
    STARMIE("Starmie", 121 ", false, "Illuminate", "Natural Cure", "Analytic", Type.WATER, "Mysterious Pokémon", 176.4, 60, 5,120, 
    		70, "2 Speed Point(s)", 148, Level 10),
    MR. MIME("Mr. Mime", 122 ", true, "50, 50, "Soundproof", "Filter", "Technician", Type.PSYCHIC, "Barrier Pokémon", 120.2, 45, 6,400, 
    		70, "2 Sp. Defense Point(s)", 101, Level 10),
    SCYTHER("Scyther", 123 ", true, "50, 50, "Swarm", "Technician", "Steadfast", Type.BUG, "Mantis Pokémon", 123.5, 45, 6,400, 
    		70, "1 Attack Point(s)", 80, Level 10),
    JYNX("Jynx", 124 ", true, "0, 100, "Oblivious", "Forewarn", "Dry Skin", Type.ICE, "Humanshape Pokémon", 89.5, 45, 6,400, 
    		70, "2 Sp. Attack Point(s)", 87, Level 30),
    ELECTABUZZ("Electabuzz", 125 ", true, "75, 25, "Static", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.ELECTRIC, "Electric Pokémon", 66.1, 45, 6,400, 
    		70, "2 Speed Point(s)", 72, Level 30),
    MAGMAR("Magmar", 126 ", true, "75, 25, "Body", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.FIRE, "Spitfire Pokémon", 98.1, 45, 6,400, 
    		70, "2 Sp. Attack Point(s)", 72, Level 30),
    PINSIR("Pinsir", 127 ", true, "50, 50, "Cutter", "Mold Breaker", "Moxie", Type.BUG, "Stagbeetle Pokémon", 121.3, 45, 6,400, 
    		70, "2 Attack Point(s)", 153, Level 10),
    TAUROS("Tauros", 128 ", true, "100, 0, "Intimidate", "Anger Point", "Sheer Force", Type.NORMAL, "Wild Bull Pokémon", 194.9, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Speed Point(s)", 125, Level 10),
    MAGIKARP("Magikarp", 129 ", true, "50, 50, "Swim", "Rattled (Hidden Ability)", "Rattled", Type.WATER, "Fish Pokémon", 22.0, 255, 1,280, 
    		70, "1 Speed Point(s)", 155, Level 10),
    GYARADOS("Gyarados", 130 ", true, "50, 50, "Intimidate", "Moxie (Hidden Ability)", "Moxie", Type.WATER, "Atrocious Pokémon", 518.1, 45, 1,280, 
    		70, "2 Attack Point(s)", 153, Level 20),
    LAPRAS("Lapras", 131 ", true, "50, 50, "Absorb", "Shell Armor", "Hydration", Type.WATER, "Transport Pokémon", 485.0, 45, 10,240, 
    		70, "2 HP Point(s)", 93, Level 10),
    DITTO("Ditto", 132 ", false, "Limber", "Imposter (Hidden Ability)", "Imposter", Type.NORMAL, "Transform Pokémon", 8.8, 35, 5,120, 
    		70, "1 HP Point(s)", 150, Level 10),
    EEVEE("Eevee", 133 ", true, "87.5, 12.5, "Away", "Adaptability", "Anticipation", Type.NORMAL, "Evolution Pokémon", 14.3, 45, 8,960, 
    		70, "1 Sp. Defense Point(s)", 107, Level 10),
    VAPOREON("Vaporeon", 134 ", true, "87.5, 12.5, "Absorb", "Hydration (Hidden Ability)", "Hydration", Type.WATER, "Bubble Jet Pokémon", 63.9, 45, 8,960, 
    		70, "2 HP Point(s)", 93, Level 10),
    JOLTEON("Jolteon", 135 ", true, "87.5, 12.5, "Absorb", "Quick Feet (Hidden Ability)", "Quick Feet", Type.ELECTRIC, "Lightning Pokémon", 54.0, 45, 8,960, 
    		70, "2 Speed Point(s)", 95, Level 10),
    FLAREON("Flareon", 136 ", true, "87.5, 12.5, "Fire", "Guts (Hidden Ability)", "Guts", Type.FIRE, "Flame Pokémon", 55.1, 45, 8,960, 
    		70, "2 Attack Point(s)", 62, Level 10),
    PORYGON("Porygon", 137 ", false, "Trace", "Download", "Analytic", Type.NORMAL, "Virtual Pokémon", 80.5, 45, 5,120, 
    		70, "1 Sp. Attack Point(s)", 148, Level 10),
    OMANYTE("Omanyte", 138 ", true, "87.5, 12.5, "Swim", "Shell Armor", "Weak Armor", Type.ROCK, "Spiral Pokémon", 16.5, 45, 7,680, 
    		70, "1 Defense Point(s)", 133, Level 10),
    OMASTAR("Omastar", 139 ", true, "87.5, 12.5, "Swim", "Shell Armor", "Weak Armor", Type.ROCK, "Spiral Pokémon", 77.2, 45, 7,680, 
    		70, "2 Defense Point(s)", 133, Level 40),
    KABUTO("Kabuto", 140 ", true, "87.5, 12.5, "Swim", "Battle Armor", "Weak Armor", Type.ROCK, "Shellfish Pokémon", 25.4, 45, 7,680, 
    		70, "1 Defense Point(s)", 133, Level 10),
    KABUTOPS("Kabutops", 141 ", true, "87.5, 12.5, "Swim", "Battle Armor", "Weak Armor", Type.ROCK, "Shellfish Pokémon", 89.3, 45, 7,680, 
    		70, "2 Attack Point(s)", 133, Level 40),
    AERODACTYL("Aerodactyl", 142 ", true, "87.5, 12.5, "Head", "Pressure", "Unnerve", Type.ROCK, "Fossil Pokémon", 130.1, 45, 8,960, 
    		70, "2 Speed Point(s)", 127, Level 10),
    SNORLAX("Snorlax", 143 ", true, "87.5, 12.5, "Immunity", "Thick Fat", "Gluttony", Type.NORMAL, "Sleeping Pokémon", 1014.1, 25, 10,240, 
    		70, "2 HP Point(s)", 82, Level 10),
    ARTICUNO("Articuno", 144 ", false, "Pressure", "Snow Cloak (Hidden Ability)", "Snow Cloak", Type.ICE, "Freeze Pokémon", 122.1, 3, 20,480, 
    		35, "3 Sp. Defense Point(s)", 81, Level 50),
    ZAPDOS("Zapdos", 145 ", false, "Pressure", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Electric Pokémon", 116.0, 3, 20,480, 
    		35, "3 Sp. Attack Point(s)", 31, Level 50),
    MOLTRES("Moltres", 146 ", false, "Pressure", "Flame Body (Hidden Ability)", "Flame Body", Type.FIRE, "Flame Pokémon", 132.3, 3, 20,480, 
    		35, "3 Sp. Attack Point(s)", 49, Level 50),
    DRATINI("Dratini", 147 ", true, "50, 50, "Skin", "Marvel Scale (Hidden Ability)", "Marvel Scale", Type.DRAGON, "Dragon Pokémon", 7.3, 45, 10,240, 
    		35, "1 Attack Point(s)", 63, Level 10),
    DRAGONAIR("Dragonair", 148 ", true, "50, 50, "Skin", "Marvel Scale (Hidden Ability)", "Marvel Scale", Type.DRAGON, "Dragon Pokémon", 36.4, 45, 10,240, 
    		35, "2 Attack Point(s)", 63, Level 30),
    DRAGONITE("Dragonite", 149 ", true, "50, 50, "Focus", "Multiscale (Hidden Ability)", "Multiscale", Type.DRAGON, "Dragon Pokémon", 463.0, 45, 10,240, 
    		35, "3 Attack Point(s)", 136, Level 55),
    MEWTWO("Mewtwo", 150 ", false, "Pressure", "Unnerve (Hidden Ability)", "Unnerve", Type.PSYCHIC, "Genetic Pokémon", 269.0, 3, 30,720, 
    		0, "3 Sp. Attack Point(s)", 127, Level 70),
    MEW("Mew", 151 ", false, "Synchronize", Type.PSYCHIC, "New Specie Pokémon", 8.8, 45, 30,720, 
    		100, "3 HP Point(s)", 0, Level 30),
    CHIKORITA("Chikorita", 152 ", true, "87.5, 12.5, "Overgrow", "Leaf Guard (Hidden Ability)", "Leaf Guard", Type.GRASS, "Leaf Pokémon", 14.1, 45, 5,120, 
    		70, "1 Sp. Defense Point(s)", 102, Level 10),
    BAYLEEF("Bayleef", 153 ", true, "87.5, 12.5, "Overgrow", "Leaf Guard (Hidden Ability)", "Leaf Guard", Type.GRASS, "Leaf Pokémon", 34.8, 45, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 102, Level 16),
    MEGANIUM("Meganium", 154 ", true, "87.5, 12.5, "Overgrow", "Leaf Guard (Hidden Ability)", "Leaf Guard", Type.GRASS, "Herb Pokémon", 221.6, 45, 5,120, 
    		70, "1 Defense Point(s) 2 Sp. Defense Point(s)", 102, Level 32),
    CYNDAQUIL("Cyndaquil", 155 ", true, "87.5, 12.5, "Blaze", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Fire Mouse Pokémon", 17.4, 45, 5,120, 
    		70, "1 Speed Point(s)", 18, Level 10),
    QUILAVA("Quilava", 156 ", true, "87.5, 12.5, "Blaze", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Volcano Pokémon", 41.9, 45, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 18, Level 14),
    TYPHLOSION("Typhlosion", 157 ", true, "87.5, 12.5, "Blaze", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Volcano Pokémon", 175.3, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 18, Level 36),
    TOTODILE("Totodile", 158 ", true, "87.5, 12.5, "Torrent", "Sheer Force (Hidden Ability)", "Sheer Force", Type.WATER, "Big Jaw Pokémon", 20.9, 45, 5,120, 
    		70, "1 Attack Point(s)", 125, Level 10),
    CROCONAW("Croconaw", 159 ", true, "87.5, 12.5, "Torrent", "Sheer Force (Hidden Ability)", "Sheer Force", Type.WATER, "Big Jaw Pokémon", 55.1, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Defense Point(s)", 125, Level 18),
    FERALIGATR("Feraligatr", 160 ", true, "87.5, 12.5, "Torrent", "Sheer Force (Hidden Ability)", "Sheer Force", Type.WATER, "Big Jaw Pokémon", 195.8, 45, 5,120, 
    		70, "2 Attack Point(s) 1 Defense Point(s)", 125, Level 30),
    SENTRET("Sentret", 161 ", true, "50, 50, "Away", "Keen Eye", "Frisk", Type.NORMAL, "Scout Pokémon", 13.2, 255, 3,840, 
    		70, "1 Attack Point(s)", 119, Level 10),
    FURRET("Furret", 162 ", true, "50, 50, "Away", "Keen Eye", "Frisk", Type.NORMAL, "Long Body Pokémon", 71.6, 90, 3,840, 
    		70, "2 Speed Point(s)", 119, Level 15),
    HOOTHOOT("Hoothoot", 163 ", true, "50, 50, "Insomnia", "Keen Eye", "Tinted Lens", Type.NORMAL, "Owl Pokémon", 46.7, 255, 3,840, 
    		70, "1 HP Point(s)", 110, Level 10),
    NOCTOWL("Noctowl", 164 ", true, "50, 50, "Insomnia", "Keen Eye", "Tinted Lens", Type.NORMAL, "Owl Pokémon", 89.9, 90, 3,840, 
    		70, "2 HP Point(s)", 110, Level 20),
    LEDYBA("Ledyba", 165 ", true, "50, 50, "Swarm", "Early Bird", "Rattled", Type.BUG, "Five Star Pokémon", 23.8, 255, 3,840, 
    		70, "1 Sp. Defense Point(s)", 155, Level 10),
    LEDIAN("Ledian", 166 ", true, "50, 50, "Swarm", "Early Bird", "Iron Fist", Type.BUG, "Five Star Pokémon", 78.5, 90, 3,840, 
    		70, "2 Sp. Defense Point(s)", 89, Level 18),
    SPINARAK("Spinarak", 167 ", true, "50, 50, "Swarm", "Insomnia", "Sniper", Type.BUG, "String Spit Pokémon", 18.7, 255, 3,840, 
    		70, "1 Attack Point(s)", 97, Level 10),
    ARIADOS("Ariados", 168 ", true, "50, 50, "Swarm", "Insomnia", "Sniper", Type.BUG, "Long Leg Pokémon", 73.9, 90, 3,840, 
    		70, "2 Attack Point(s)", 97, Level 22),
    CROBAT("Crobat", 169 ", true, "50, 50, "Focus", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Bat Pokémon", 165.3, 90, 3,840, 
    		70, "3 Speed Point(s)", 151, Level 23),
    CHINCHOU("Chinchou", 170 ", true, "50, 50, "Absorb", "Illuminate", "Water Absorb", Type.WATER, "Angler Pokémon", 26.5, 190, 5,120, 
    		70, "1 HP Point(s)", 11, Level 10),
    LANTURN("Lanturn", 171 ", true, "50, 50, "Absorb", "Illuminate", "Water Absorb", Type.WATER, "Light Pokémon", 49.6, 75, 5,120, 
    		70, "2 HP Point(s)", 11, Level 27),
    PICHU("Pichu", 172 ", true, "50, 50, "Static", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Tiny Mouse Pokémon", 4.4, 190, 2,560, 
    		70, "1 Speed Point(s)", 31, Level 10),
    CLEFFA("Cleffa", 173 ", true, "25, 75, "Charm", "Magic Guard", "Friend Guard", Type.NORMAL, "Star Shape Pokémon", 6.6, 150, 2,560, 
    		140, "1 Sp. Defense Point(s)", 132, Level 10),
    IGGLYBUFF("Igglybuff", 174 ", true, "25, 75, "Charm", "Friend Guard (Hidden Ability)", "Friend Guard", Type.NORMAL, "Balloon Pokémon", 2.2, 170, 2,560, 
    		70, "1 HP Point(s)", 132, Level 10),
    TOGEPI("Togepi", 175 ", true, "87.5, 12.5, "Hustle", "Serene Grace", "Super Luck", Type.NORMAL, "Spike Ball Pokémon", 3.3, 190, 2,560, 
    		70, "1 Sp. Defense Point(s)", 105, Level 10),
    TOGETIC("Togetic", 176 ", true, "87.5, 12.5, "Hustle", "Serene Grace", "Super Luck", Type.NORMAL, "Happiness Pokémon", 7.1, 75, 2,560, 
    		70, "2 Sp. Defense Point(s)", 105, Level 10),
    NATU("Natu", 177 ", true, "50, 50, "Synchronize", "Early Bird", "Magic Bounce", Type.PSYCHIC, "Little Bird Pokémon", 4.4, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 156, Level 10),
    XATU("Xatu", 178 ", true, "50, 50, "Synchronize", "Early Bird", "Magic Bounce", Type.PSYCHIC, "Mystic Pokémon", 33.1, 75, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 156, Level 25),
    MAREEP("Mareep", 179 ", true, "50, 50, "Static", "Plus (Hidden Ability)", "Plus", Type.ELECTRIC, "Wool Pokémon", 17.2, 235, 5,120, 
    		70, "1 Sp. Attack Point(s)", 57, Level 10),
    FLAAFFY("Flaaffy", 180 ", true, "50, 50, "Static", "Plus (Hidden Ability)", "Plus", Type.ELECTRIC, "Wool Pokémon", 29.3, 120, 5,120, 
    		70, "2 Sp. Attack Point(s)", 57, Level 15),
    AMPHAROS("Ampharos", 181 ", true, "50, 50, "Static", "Plus (Hidden Ability)", "Plus", Type.ELECTRIC, "Light Pokémon", 135.6, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 57, Level 30),
    BELLOSSOM("Bellossom", 182 ", true, "50, 50, "Chlorophyll", "Healer (Hidden Ability)", "Healer", Type.GRASS, "Flower Pokémon", 12.8, 45, 5,120, 
    		70, "3 Sp. Defense Point(s)", 131, Level 21),
    MARILL("Marill", 183 ", true, "50, 50, "Fat", "Huge Power", "Sap Sipper", Type.WATER, "Aquamouse Pokémon", 18.7, 190, 2,560, 
    		70, "2 HP Point(s)", 157, Level 10),
    AZUMARILL("Azumarill", 184 ", true, "50, 50, "Fat", "Huge Power", "Sap Sipper", Type.WATER, "Aquarabbit Pokémon", 62.8, 75, 2,560, 
    		70, "3 HP Point(s)", 157, Level 18),
    SUDOWOODO("Sudowoodo", 185 ", true, "50, 50, "Sturdy", "Rock Head", "Rattled", Type.ROCK, "Imitation Pokémon", 83.8, 65, 5,120, 
    		70, "2 Defense Point(s)", 155, Level 10),
    POLITOED("Politoed", 186 ", true, "50, 50, "Absorb", "Damp", "Drizzle", Type.WATER, "Frog Pokémon", 74.7, 45, 5,120, 
    		70, "3 Sp. Defense Point(s)", 2, Level 25),
    HOPPIP("Hoppip", 187 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Infiltrator", Type.GRASS, "Cottonweed Pokémon", 1.1, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 151, Level 10),
    SKIPLOOM("Skiploom", 188 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Infiltrator", Type.GRASS, "Cottonweed Pokémon", 2.2, 120, 5,120, 
    		70, "2 Speed Point(s)", 151, Level 18),
    JUMPLUFF("Jumpluff", 189 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Infiltrator", Type.GRASS, "Cottonweed Pokémon", 6.6, 45, 5,120, 
    		70, "3 Speed Point(s)", 151, Level 27),
    AIPOM("Aipom", 190 ", true, "50, 50, "Away", "Pickup", "Skill Link", Type.NORMAL, "Long Tail Pokémon", 25.4, 45, 5,120, 
    		70, "1 Speed Point(s)", 92, Level 10),
    SUNKERN("Sunkern", 191 ", true, "50, 50, "Chlorophyll", "Solar Power", "Early Bird", Type.GRASS, "Seed Pokémon", 4.0, 235, 5,120, 
    		70, "1 Sp. Attack Point(s)", 48, Level 10),
    SUNFLORA("Sunflora", 192 ", true, "50, 50, "Chlorophyll", "Solar Power", "Early Bird", Type.GRASS, "Sun Pokémon", 18.7, 120, 5,120, 
    		70, "2 Sp. Attack Point(s)", 48, Level 10),
    YANMA("Yanma", 193 ", true, "50, 50, "Boost", "Compoundeyes", "Frisk", Type.BUG, "Clear Wing Pokémon", 83.8, 75, 5,120, 
    		70, "1 Speed Point(s)", 119, Level 10),
    WOOPER("Wooper", 194 ", true, "50, 50, "Damp", "Water Absorb", "Unaware", Type.WATER, "Water Fish Pokémon", 18.7, 255, 5,120, 
    		70, "1 HP Point(s)", 109, Level 10),
    QUAGSIRE("Quagsire", 195 ", true, "50, 50, "Damp", "Water Absorb", "Unaware", Type.WATER, "Water Fish Pokémon", 165.3, 90, 5,120, 
    		70, "2 HP Point(s)", 109, Level 20),
    ESPEON("Espeon", 196 ", true, "87.5, 12.5, "Synchronize", "Magic Bounce (Hidden Ability)", "Magic Bounce", Type.PSYCHIC, "Sun Pokémon", 58.4, 45, 8,960, 
    		70, "2 Sp. Attack Point(s)", 156, Level 10),
    UMBREON("Umbreon", 197 ", true, "87.5, 12.5, "Synchronize", "Inner Focus (Hidden Ability)", "Inner Focus", Type.DARK, "Moonlight Pokémon", 59.5, 45, 8,960, 
    		35, "2 Sp. Defense Point(s)", 39, Level 10),
    MURKROW("Murkrow", 198 ", true, "50, 50, "Insomnia", "Super Luck", "Prankster", Type.DARK, "Darkness Pokémon", 4.6, 30, 5,120, 
    		35, "1 Speed Point(s)", 158, Level 10),
    SLOWKING("Slowking", 199 ", true, "50, 50, "Oblivious", "Own Tempo", "Regenerator", Type.WATER, "Royal Pokémon", 175.3, 70, 5,120, 
    		70, "3 Sp. Defense Point(s)", 144, Level 10),
    MISDREAVUS("Misdreavus", 200 ", true, 50, 50, "Levitate", Type.GHOST, "Screech Pokémon", 2.2, 45, 6,400, 
    		35, "1 Sp. Defense Point(s)", 0, Level 10),
    UNOWN("Unown", 201 ", false, "Levitate", Type.PSYCHIC, "Symbol Pokémon", 11.0, 225, 10,240, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 0, Level 10),
    WOBBUFFET("Wobbuffet", 202 ", true, "50, 50, "Tag", "Telepathy (Hidden Ability)", "Telepathy", Type.PSYCHIC, "Patient Pokémon", 62.8, 45, 5,120, 
    		70, "2 HP Point(s)", 140, Level 15),
    GIRAFARIG("Girafarig", 203 ", true, "50, 50, "Focus", "Early Bird", "Sap Sipper", Type.NORMAL, "Long Neck Pokémon", 91.5, 60, 5,120, 
    		70, "2 Sp. Attack Point(s)", 157, Level 10),
    PINECO("Pineco", 204 ", true, "50, 50, "Sturdy", "Overcoat (Hidden Ability)", "Overcoat", Type.BUG, "Bagworm Pokémon", 15.9, 190, 5,120, 
    		70, "1 Defense Point(s)", 142, Level 10),
    FORRETRESS("Forretress", 205 ", true, "50, 50, "Sturdy", "Overcoat (Hidden Ability)", "Overcoat", Type.BUG, "Bagworm Pokémon", 277.3, 75, 5,120, 
    		70, "2 Defense Point(s)", 142, Level 31),
    DUNSPARCE("Dunsparce", 206 ", true, "50, 50, "Grace", "Run Away", "Rattled", Type.NORMAL, "Land Snake Pokémon", 30.9, 190, 5,120, 
    		70, "1 HP Point(s)", 155, Level 10),
    GLIGAR("Gligar", 207 ", true, "50, 50, "Cutter", "Sand Veil", "Immunity", Type.GROUND, "Flyscorpion Pokémon", 142.9, 60, 5,120, 
    		70, "1 Defense Point(s)", 17, Level 10),
    STEELIX("Steelix", 208 ", true, "50, 50, "Head", "Sturdy", "Sheer Force", Type.STEEL, "Iron Snake Pokémon", 881.8, 25, 6,400, 
    		70, "2 Defense Point(s)", 125, Level 10),
    SNUBBULL("Snubbull", 209 ", true, "25, 75, "Intimidate", "Run Away", "Rattled", Type.NORMAL, "Fairy Pokémon", 17.2, 190, 5,120, 
    		70, "1 Attack Point(s)", 155, Level 10),
    GRANBULL("Granbull", 210 ", true, "25, 75, "Intimidate", "Quick Feet", "Rattled", Type.NORMAL, "Fairy Pokémon", 107.4, 75, 5,120, 
    		70, "2 Attack Point(s)", 155, Level 23),
    QWILFISH("Qwilfish", 211 ", true, "50, 50, "Point", "Swift Swim", "Intimidate", Type.WATER, "Balloon Pokémon", 8.6, 45, 5,120, 
    		70, "1 Attack Point(s)", 22, Level 10),
    SCIZOR("Scizor", 212 ", true, "50, 50, "Swarm", "Technician", "Light Metal", Type.BUG, "Pincer Pokémon", 260.1, 25, 6,400, 
    		70, "2 Attack Point(s)", 135, Level 10),
    SHUCKLE("Shuckle", 213 ", true, "50, 50, "Sturdy", "Gluttony", "Contrary", Type.BUG, "Mold Pokémon", 45.2, 190, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 126, Level 10),
    HERACROSS("Heracross", 214 ", true, "50, 50, "Swarm", "Guts", "Moxie", Type.BUG, "Singlehorn Pokémon", 119.0, 45, 6,400, 
    		70, "2 Attack Point(s)", 153, Level 10),
    SNEASEL("Sneasel", 215 ", true, "50, 50, "Focus", "Keen Eye", "Pickpocket", Type.DARK, "Sharp Claw Pokémon", 61.7, 60, 5,120, 
    		35, "1 Speed Point(s)", 124, Level 10),
    TEDDIURSA("Teddiursa", 216 ", true, "50, 50, "Pickup", "Quick Feet", "Honey Gather", Type.NORMAL, "Little Bear Pokémon", 19.4, 120, 5,120, 
    		70, "1 Attack Point(s)", 118, Level 10),
    URSARING("Ursaring", 217 ", true, "50, 50, "Guts", "Quick Feet", "Unnerve", Type.NORMAL, "Hibernator Pokémon", 277.3, 60, 5,120, 
    		70, "2 Attack Point(s)", 127, Level 30),
    SLUGMA("Slugma", 218 ", true, "50, 50, "Armor", "Flame Body", "Weak Armor", Type.FIRE, "Lava Pokémon", 77.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 133, Level 10),
    MAGCARGO("Magcargo", 219 ", true, "50, 50, "Armor", "Flame Body", "Weak Armor", Type.FIRE, "Lava Pokémon", 121.3, 75, 5,120, 
    		70, "2 Defense Point(s)", 133, Level 38),
    SWINUB("Swinub", 220 ", true, "50, 50, "Oblivious", "Snow Cloak", "Thick Fat", Type.ICE, "Pig Pokémon", 14.3, 225, 5,120, 
    		70, "1 Attack Point(s)", 47, Level 10),
    PILOSWINE("Piloswine", 221 ", true, "50, 50, "Oblivious", "Snow Cloak", "Thick Fat", Type.ICE, "Swine Pokémon", 123.0, 75, 5,120, 
    		70, "1 HP Point(s) 1 Attack Point(s)", 47, Level 33),
    CORSOLA("Corsola", 222 ", true, "25, 75, "Hustle", "Natural Cure", "Regenerator", Type.WATER, "Coral Pokémon", 11.0, 60, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 144, Level 10),
    REMORAID("Remoraid", 223 ", true, "50, 50, "Hustle", "Sniper", "Moody", Type.WATER, "Jet Pokémon", 26.5, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 141, Level 10),
    OCTILLERY("Octillery", 224 ", true, "50, 50, "Cups", "Sniper", "Moody", Type.WATER, "Jet Pokémon", 62.8, 75, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 141, Level 25),
    DELIBIRD("Delibird", 225 ", true, "50, 50, "Spirit", "Hustle", "Insomnia", Type.ICE, "Delivery Pokémon", 35.3, 45, 5,120, 
    		70, "1 Speed Point(s)", 15, Level 10),
    MANTINE("Mantine", 226 ", true, "50, 50, "Swim", "Water Absorb", "Water Veil", Type.WATER, "Kite Pokémon", 485.0, 25, 6,400, 
    		70, "2 Sp. Defense Point(s)", 41, Level 10),
    SKARMORY("Skarmory", 227 ", true, "50, 50, "Eye", "Sturdy", "Weak Armor", Type.STEEL, "Armor Bird Pokémon", 111.3, 25, 6,400, 
    		70, "2 Defense Point(s)", 133, Level 10),
    HOUNDOUR("Houndour", 228 ", true, "50, 50, "Bird", "Flash Fire", "Unnerve", Type.DARK, "Dark Pokémon", 23.8, 120, 5,120, 
    		35, "1 Sp. Attack Point(s)", 127, Level 10),
    HOUNDOOM("Houndoom", 229 ", true, "50, 50, "Bird", "Flash Fire", "Unnerve", Type.DARK, "Dark Pokémon", 77.2, 45, 5,120, 
    		35, "2 Sp. Attack Point(s)", 127, Level 24),
    KINGDRA("Kingdra", 230 ", true, "50, 50, "Swim", "Sniper", "Damp", Type.WATER, "Dragon Pokémon", 335.1, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 6, Level 32),
    PHANPY("Phanpy", 231 ", true, "50, 50, "Pickup", "Sand Veil (Hidden Ability)", "Sand Veil", Type.GROUND, "Long Nose Pokémon", 73.9, 120, 5,120, 
    		70, "1 HP Point(s)", 8, Level 10),
    DONPHAN("Donphan", 232 ", true, "50, 50, "Sturdy", "Sand Veil (Hidden Ability)", "Sand Veil", Type.GROUND, "Armor Pokémon", 264.6, 60, 5,120, 
    		70, "1 Attack Point(s) 1 Defense Point(s)", 8, Level 25),
    PORYGON2("Porygon2", 233 ", false, "Trace", "Download", "Analytic", Type.NORMAL, "Virtual Pokémon", 71.6, 45, 5,120, 
    		70, "2 Sp. Attack Point(s)", 148, Level 10),
    STANTLER("Stantler", 234 ", true, "50, 50, "Intimidate", "Frisk", "Sap Sipper", Type.NORMAL, "Big Horn Pokémon", 157.0, 45, 5,120, 
    		70, "1 Attack Point(s)", 157, Level 10),
    SMEARGLE("Smeargle", 235 ", true, "50, 50, "Tempo", "Technician", "Moody", Type.NORMAL, "Painter Pokémon", 127.9, 45, 5,120, 
    		70, "1 Speed Point(s)", 141, Level 10),
    TYROGUE("Tyrogue", 236 ", true, "100, 0, "Guts", "Steadfast", "Vital Spirit", Type.FIGHTING, "Scuffle Pokémon", 46.3, 75, 6,400, 
    		70, "1 Attack Point(s)", 72, Level 10),
    HITMONTOP("Hitmontop", 237 ", true, "100, 0, "Intimidate", "Technician", "Steadfast", Type.FIGHTING, "Handstand Pokémon", 105.8, 45, 6,400, 
    		70, "2 Sp. Defense Point(s)", 80, Level 20),
    SMOOCHUM("Smoochum", 238 ", true, "0, 100, "Oblivious", "Forewarn", "Hydration", Type.ICE, "Kiss Pokémon", 13.2, 45, 6,400, 
    		70, "1 Sp. Attack Point(s)", 93, Level 10),
    ELEKID("Elekid", 239 ", true, "75, 25, "Static", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.ELECTRIC, "Electric Pokémon", 51.8, 45, 6,400, 
    		70, "1 Speed Point(s)", 72, Level 10),
    MAGBY("Magby", 240 ", true, "75, 25, "Body", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.FIRE, "Live Coal Pokémon", 47.2, 45, 6,400, 
    		70, "1 Speed Point(s)", 72, Level 10),
    MILTANK("Miltank", 241 ", true, "0, 100, "Fat", "Scrappy", "Sap Sipper", Type.NORMAL, "Milk Cow Pokémon", 166.4, 45, 5,120, 
    		70, "2 Defense Point(s)", 157, Level 10),
    BLISSEY("Blissey", 242 ", true, "0, 100, "Cure", "Serene Grace", "Healer", Type.NORMAL, "Happiness Pokémon", 103.2, 30, 10,240, 
    		140, "3 HP Point(s)", 131, Level 10),
    RAIKOU("Raikou", 243 ", false, "Pressure", "Volt Absorb (Hidden Ability)", "Volt Absorb", Type.ELECTRIC, "Thunder Pokémon", 392.4, 3, 20,480, 
    		35, "2 Speed Point(s) 1 Sp. Attack Point(s)", 10, Level 40),
    ENTEI("Entei", 244 ", false, "Pressure", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Volcano Pokémon", 436.5, 3, 20,480, 
    		35, "1 HP Point(s) 2 Attack Point(s)", 18, Level 40),
    SUICUNE("Suicune", 245 ", false, "Pressure", "Water Absorb (Hidden Ability)", "Water Absorb", Type.WATER, "Aurora Pokémon", 412.3, 3, 20,480, 
    		35, "1 Defense Point(s) 2 Sp. Defense Point(s)", 11, Level 40),
    LARVITAR("Larvitar", 246 ", true, "50, 50, "Guts", "Sand Veil (Hidden Ability)", "Sand Veil", Type.ROCK, "Rock Skin Pokémon", 158.7, 45, 10,240, 
    		35, "1 Attack Point(s)", 8, Level 10),
    PUPITAR("Pupitar", 247 ", true, 50, 50, "Skin", Type.ROCK, "Hard Shell Pokémon", 335.1, 45, 10,240, 
    		35, "2 Attack Point(s)", 61, Level 30),
    TYRANITAR("Tyranitar", 248 ", true, "50, 50, "Stream", "Unnerve (Hidden Ability)", "Unnerve", Type.ROCK, "Armor Pokémon", 445.3, 45, 10,240, 
    		35, "3 Attack Point(s)", 127, Level 55),
    LUGIA("Lugia", 249 ", false, "Pressure", "Multiscale (Hidden Ability)", "Multiscale", Type.PSYCHIC, "Diving Pokémon", 476.2, 3, 30,720, 
    		0, "3 Sp. Defense Point(s)", 136, Level 45),
    HO-OH("Ho-Oh", 250 ", false, "Pressure", "Regenerator (Hidden Ability)", "Regenerator", Type.FIRE, "Rainbow Pokémon", 438.7, 3, 30,720, 
    		0, "3 Sp. Defense Point(s)", 144, Level 45),
    CELEBI("Celebi", 251 ", false, "Cure", Type.PSYCHIC, "Time Travel Pokémon", 11.0, 45, 30,720, 
    		100, "3 HP Point(s)", 0, Level 10),
    TREECKO("Treecko", 252 ", true, "87.5, 12.5, "Overgrow", "Unburden (Hidden Ability)", "Unburden", Type.GRASS, "Wood Gecko Pokémon", 11.0, 45, 5,120, 
    		70, "1 Speed Point(s)", 84, Level 10),
    GROVYLE("Grovyle", 253 ", true, "87.5, 12.5, "Overgrow", "Unburden (Hidden Ability)", "Unburden", Type.GRASS, "Wood Gecko Pokémon", 47.6, 45, 5,120, 
    		70, "2 Speed Point(s)", 84, Level 16),
    SCEPTILE("Sceptile", 254 ", true, "87.5, 12.5, "Overgrow", "Unburden (Hidden Ability)", "Unburden", Type.GRASS, "Forest Pokémon", 115.1, 45, 5,120, 
    		70, "3 Speed Point(s)", 84, Level 36),
    TORCHIC("Torchic", 255 ", true, "87.5, 12.5, "Blaze", "Speed Boost (Hidden Ability)", "Speed Boost", Type.FIRE, "Chick Pokémon", 5.5, 45, 5,120, 
    		70, "1 Sp. Attack Point(s)", 3, Level 10),
    COMBUSKEN("Combusken", 256 ", true, "87.5, 12.5, "Blaze", "Speed Boost (Hidden Ability)", "Speed Boost", Type.FIRE, "Young Fowl Pokémon", 43.0, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 3, Level 16),
    BLAZIKEN("Blaziken", 257 ", true, "87.5, 12.5, "Blaze", "Speed Boost (Hidden Ability)", "Speed Boost", Type.FIRE, "Blaze Pokémon", 114.6, 45, 5,120, 
    		70, "3 Attack Point(s)", 3, Level 36),
    MUDKIP("Mudkip", 258 ", true, "87.5, 12.5, "Torrent", "Damp (Hidden Ability)", "Damp", Type.WATER, "Mud Fish Pokémon", 16.8, 45, 5,120, 
    		70, "1 Attack Point(s)", 6, Level 10),
    MARSHTOMP("Marshtomp", 259 ", true, "87.5, 12.5, "Torrent", "Damp (Hidden Ability)", "Damp", Type.WATER, "Mud Fish Pokémon", 61.7, 45, 5,120, 
    		70, "2 Attack Point(s)", 6, Level 16),
    SWAMPERT("Swampert", 260 ", true, "87.5, 12.5, "Torrent", "Damp (Hidden Ability)", "Damp", Type.WATER, "Mud Fish Pokémon", 180.6, 45, 5,120, 
    		70, "3 Attack Point(s)", 6, Level 36),
    POOCHYENA("Poochyena", 261 ", true, "50, 50, "Away", "Quick Feet", "Rattled", Type.DARK, "Bite Pokémon", 30.0, 255, 3,840, 
    		70, "1 Attack Point(s)", 155, Level 10),
    MIGHTYENA("Mightyena", 262 ", true, "50, 50, "Intimidate", "Quick Feet", "Moxie", Type.DARK, "Bite Pokémon", 81.6, 127, 3,840, 
    		70, "2 Attack Point(s)", 153, Level 18),
    ZIGZAGOON("Zigzagoon", 263 ", true, "50, 50, "Pickup", "Gluttony", "Quick Feet", Type.NORMAL, "Tinyracoon Pokémon", 38.6, 255, 3,840, 
    		70, "1 Speed Point(s)", 95, Level 10),
    LINOONE("Linoone", 264 ", true, "50, 50, "Pickup", "Gluttony", "Quick Feet", Type.NORMAL, "Rush Pokémon", 71.6, 90, 3,840, 
    		70, "2 Speed Point(s)", 95, Level 20),
    WURMPLE("Wurmple", 265 ", true, "50, 50, "Dust", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Worm Pokémon", 7.9, 255, 3,840, 
    		70, "1 HP Point(s)", 50, Level 10),
    SILCOON("Silcoon", 266 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 22.0, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    BEAUTIFLY("Beautifly", 267 ", true, "50, 50, "Swarm", "Rivalry (Hidden Ability)", "Rivalry", Type.BUG, "Butterfly Pokémon", 62.6, 45, 3,840, 
    		70, "3 Sp. Attack Point(s)", 79, Level 10),
    CASCOON("Cascoon", 268 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 25.4, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    DUSTOX("Dustox", 269 ", true, "50, 50, "Dust", "Compoundeyes (Hidden Ability)", "Compoundeyes", Type.BUG, "Poison Moth Pokémon", 69.7, 45, 3,840, 
    		70, "3 Sp. Defense Point(s)", 14, Level 10),
    LOTAD("Lotad", 270 ", true, "50, 50, "Swim", "Rain Dish", "Own Tempo", Type.WATER, "Water Weed Pokémon", 5.7, 255, 3,840, 
    		70, "1 Sp. Defense Point(s)", 20, Level 10),
    LOMBRE("Lombre", 271 ", true, "50, 50, "Swim", "Rain Dish", "Own Tempo", Type.WATER, "Jolly Pokémon", 71.6, 120, 3,840, 
    		70, "2 Sp. Defense Point(s)", 20, Level 14),
    LUDICOLO("Ludicolo", 272 ", true, "50, 50, "Swim", "Rain Dish", "Own Tempo", Type.WATER, "Carefree Pokémon", 121.3, 45, 3,840, 
    		70, "3 Sp. Defense Point(s)", 20, Level 14),
    SEEDOT("Seedot", 273 ", true, "50, 50, "Chlorophyll", "Early Bird", "Pickpocket", Type.GRASS, "Acorn Pokémon", 8.8, 255, 3,840, 
    		70, "1 Defense Point(s)", 124, Level 10),
    NUZLEAF("Nuzleaf", 274 ", true, "50, 50, "Chlorophyll", "Early Bird", "Pickpocket", Type.GRASS, "Wily Pokémon", 61.7, 120, 3,840, 
    		70, "2 Attack Point(s)", 124, Level 14),
    SHIFTRY("Shiftry", 275 ", true, "50, 50, "Chlorophyll", "Early Bird", "Pickpocket", Type.GRASS, "Wickid Pokémon", 131.4, 45, 3,840, 
    		70, "3 Attack Point(s)", 124, Level 14),
    TAILLOW("Taillow", 276 ", true, "50, 50, "Guts", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "TinySwallow Pokémon", 5.1, 200, 3,840, 
    		70, "1 Speed Point(s)", 113, Level 10),
    SWELLOW("Swellow", 277 ", true, "50, 50, "Guts", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "Swallow Pokémon", 43.7, 45, 3,840, 
    		70, "2 Speed Point(s)", 113, Level 22),
    WINGULL("Wingull", 278 ", true, "50, 50, "Eye", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Seagull Pokémon", 20.9, 190, 5,120, 
    		70, "1 Speed Point(s)", 44, Level 10),
    PELIPPER("Pelipper", 279 ", true, "50, 50, "Eye", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Water Bird Pokémon", 61.7, 45, 5,120, 
    		70, "2 Defense Point(s)", 44, Level 25),
    RALTS("Ralts", 280 ", true, "50, 50, "Synchronize", "Trace", "Telepathy", Type.PSYCHIC, "Feeling Pokémon", 14.6, 235, 5,120, 
    		35, "1 Sp. Attack Point(s)", 140, Level 10),
    KIRLIA("Kirlia", 281 ", true, "50, 50, "Synchronize", "Trace", "Telepathy", Type.PSYCHIC, "Emotion Pokémon", 44.5, 120, 5,120, 
    		35, "2 Sp. Attack Point(s)", 140, Level 20),
    GARDEVOIR("Gardevoir", 282 ", true, "50, 50, "Synchronize", "Trace", "Telepathy", Type.PSYCHIC, "Embrace Pokémon", 106.7, 45, 5,120, 
    		35, "3 Sp. Attack Point(s)", 140, Level 30),
    SURSKIT("Surskit", 283 ", true, "50, 50, "Swim", "Rain Dish (Hidden Ability)", "Rain Dish", Type.BUG, "Pond Skater Pokémon", 3.7, 200, 3,840, 
    		70, "1 Speed Point(s)", 44, Level 10),
    MASQUERAIN("Masquerain", 284 ", true, "50, 50, "Intimidate", "Unnerve (Hidden Ability)", "Unnerve", Type.BUG, "Eyeball Pokémon", 7.9, 75, 3,840, 
    		70, "1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 127, Level 22),
    SHROOMISH("Shroomish", 285 ", true, "50, 50, "Spore", "Poison Heal", "Quick Feet", Type.GRASS, "Mushroom Pokémon", 9.9, 255, 3,840, 
    		70, "1 HP Point(s)", 95, Level 10),
    BRELOOM("Breloom", 286 ", true, "50, 50, "Spore", "Poison Heal", "Technician", Type.GRASS, "Mushroom Pokémon", 86.4, 90, 3,840, 
    		70, "2 Attack Point(s)", 101, Level 23),
    SLAKOTH("Slakoth", 287 ", true, 50, 50, "Truant", Type.NORMAL, "Slacker Pokémon", 52.9, 255, 3,840, 
    		70, "1 HP Point(s)", 0, Level 10),
    VIGOROTH("Vigoroth", 288 ", true, 50, 50, "Spirit", Type.NORMAL, "Wild Monkey Pokémon", 102.5, 120, 3,840, 
    		70, "2 Speed Point(s)", 0, Level 18),
    SLAKING("Slaking", 289 ", true, 50, 50, "Truant", Type.NORMAL, "Lazy Pokémon", 287.7, 45, 3,840, 
    		70, "3 HP Point(s)", 0, Level 36),
    NINCADA("Nincada", 290 ", true, "50, 50, "Compoundeyes", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Trainee Pokémon", 12.1, 255, 3,840, 
    		70, "1 Defense Point(s)", 50, Level 10),
    NINJASK("Ninjask", 291 ", true, "50, 50, "Boost", "Infiltrator (Hidden Ability)", "Infiltrator", Type.BUG, "Ninja Pokémon", 26.5, 120, 3,840, 
    		70, "2 Speed Point(s)", 151, Level 20),
    SHEDINJA("Shedinja", 292 ", false, "Guard", Type.BUG, "Shed Pokémon", 2.6, 45, 3,840, 
    		70, "2 HP Point(s)", 25, Level 20),
    WHISMUR("Whismur", 293 ", true, "50, 50, "Soundproof", "Rattled (Hidden Ability)", "Rattled", Type.NORMAL, "Whisper Pokémon", 35.9, 190, 5,120, 
    		70, "1 HP Point(s)", 155, Level 10),
    LOUDRED("Loudred", 294 ", true, "50, 50, "Soundproof", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "Big Voice Pokémon", 89.3, 120, 5,120, 
    		70, "2 HP Point(s)", 113, Level 20),
    EXPLOUD("Exploud", 295 ", true, "50, 50, "Soundproof", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "Loud Noise Pokémon", 185.2, 45, 5,120, 
    		70, "3 HP Point(s)", 113, Level 40),
    MAKUHITA("Makuhita", 296 ", true, "75, 25, "Fat", "Guts", "Sheer Force", Type.FIGHTING, "Guts Pokémon", 190.5, 180, 5,120, 
    		70, "1 HP Point(s)", 125, Level 10),
    HARIYAMA("Hariyama", 297 ", true, "75, 25, "Fat", "Guts", "Sheer Force", Type.FIGHTING, "Arm Thrust Pokémon", 559.5, 200, 5,120, 
    		70, "2 HP Point(s)", 125, Level 24),
    AZURILL("Azurill", 298 ", true, "25, 75, "Fat", "Huge Power", "Sap Sipper", Type.NORMAL, "Polka Dot Pokémon", 4.4, 150, 2,560, 
    		70, "1 HP Point(s)", 157, Level 10),
    NOSEPASS("Nosepass", 299 ", true, "50, 50, "Sturdy", "Magnet Pull", "Sand Force", Type.ROCK, "Compass Pokémon", 213.8, 255, 5,120, 
    		70, "1 Defense Point(s)", 159, Level 10),
    SKITTY("Skitty", 300 ", true, "25, 75, "Charm", "Normalize", "Wonder Skin", Type.NORMAL, "Kitten Pokémon", 24.3, 255, 3,840, 
    		70, "1 Speed Point(s)", 147, Level 10),
    DELCATTY("Delcatty", 301 ", true, "25, 75, "Charm", "Normalize", "Wonder Skin", Type.NORMAL, "Prim Pokémon", 71.9, 60, 3,840, 
    		70, "1 HP Point(s) 1 Speed Point(s)", 147, Level 10),
    SABLEYE("Sableye", 302 ", true, "50, 50, "Eye", "Stall", "Prankster", Type.DARK, "Darkness Pokémon", 24.3, 45, 6,400, 
    		35, "1 Attack Point(s) 1 Defense Point(s)", 158, Level 10),
    MAWILE("Mawile", 303 ", true, "50, 50, "Cutter", "Intimidate", "Sheer Force", Type.STEEL, "Deceiver Pokémon", 25.4, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Defense Point(s)", 125, Level 10),
    ARON("Aron", 304 ", true, "50, 50, "Sturdy", "Rock Head", "Heavy Metal", Type.STEEL, "Iron Armor Pokémon", 132.3, 180, 8,960, 
    		35, "1 Defense Point(s)", 134, Level 10),
    LAIRON("Lairon", 305 ", true, "50, 50, "Sturdy", "Rock Head", "Heavy Metal", Type.STEEL, "Iron Armor Pokémon", 264.6, 90, 8,960, 
    		35, "2 Defense Point(s)", 134, Level 32),
    AGGRON("Aggron", 306 ", true, "50, 50, "Sturdy", "Rock Head", "Heavy Metal", Type.STEEL, "Iron Armor Pokémon", 793.7, 45, 8,960, 
    		35, "3 Defense Point(s)", 134, Level 42),
    MEDITITE("Meditite", 307 ", true, "50, 50, "Power", "Telepathy (Hidden Ability)", "Telepathy", Type.FIGHTING, "Meditate Pokémon", 24.7, 180, 5,120, 
    		70, "1 Speed Point(s)", 140, Level 10),
    MEDICHAM("Medicham", 308 ", true, "50, 50, "Power", "Telepathy (Hidden Ability)", "Telepathy", Type.FIGHTING, "Meditate Pokémon", 69.4, 90, 5,120, 
    		70, "2 Speed Point(s)", 140, Level 37),
    ELECTRIKE("Electrike", 309 ", true, "50, 50, "Static", "Lightningrod", "Minus", Type.ELECTRIC, "Lightning Pokémon", 33.5, 120, 5,120, 
    		70, "1 Speed Point(s)", 58, Level 10),
    MANECTRIC("Manectric", 310 ", true, "50, 50, "Static", "Lightningrod", "Minus", Type.ELECTRIC, "Discharge Pokémon", 88.6, 45, 5,120, 
    		70, "2 Speed Point(s)", 58, Level 26),
    PLUSLE("Plusle", 311 ", true, 50, 50, "Plus", Type.ELECTRIC, "Cheering Pokémon", 9.3, 200, 5,120, 
    		70, "1 Speed Point(s)", 0, Level 10),
    MINUN("Minun", 312 ", true, 50, 50, "Minus", Type.ELECTRIC, "Cheering Pokémon", 9.3, 200, 5,120, 
    		70, "1 Speed Point(s)", 0, Level 10),
    VOLBEAT("Volbeat", 313 ", true, "100, 0, "Illuminate", "Swarm", "Prankster", Type.BUG, "Firefly Pokémon", 39.0, 150, 3,840, 
    		70, "1 Speed Point(s)", 158, Level 10),
    ILLUMISE("Illumise", 314 ", true, "0, 100, "Oblivious", "Tinted Lens", "Prankster", Type.BUG, "Firefly Pokémon", 39.0, 150, 3,840, 
    		70, "1 Speed Point(s)", 158, Level 10),
    ROSELIA("Roselia", 315 ", true, "50, 50, "Cure", "Poison Point", "Leaf Guard", Type.GRASS, "Thorn Pokémon", 4.4, 150, 5,120, 
    		70, "2 Sp. Attack Point(s)", 102, Level 10),
    GULPIN("Gulpin", 316 ", true, "50, 50, "Ooze", "Sticky Hold", "Gluttony", Type.POISON, "Stomach Pokémon", 22.7, 225, 5,120, 
    		70, "1 HP Point(s)", 82, Level 10),
    SWALOT("Swalot", 317 ", true, "50, 50, "Ooze", "Sticky Hold", "Gluttony", Type.POISON, "Poison Bag Pokémon", 176.4, 75, 5,120, 
    		70, "2 HP Point(s)", 82, Level 26),
    CARVANHA("Carvanha", 318 ", true, "50, 50, "Skin", "Speed Boost (Hidden Ability)", "Speed Boost", Type.WATER, "Savage Pokémon", 45.9, 225, 5,120, 
    		35, "1 Attack Point(s)", 3, Level 10),
    SHARPEDO("Sharpedo", 319 ", true, "50, 50, "Skin", "Speed Boost (Hidden Ability)", "Speed Boost", Type.WATER, "Brutal Pokémon", 195.8, 60, 5,120, 
    		35, "2 Attack Point(s)", 3, Level 30),
    WAILMER("Wailmer", 320 ", true, "50, 50, "Veil", "Oblivious", "Pressure", Type.WATER, "Ball Whale Pokémon", 286.6, 125, 10,240, 
    		70, "1 HP Point(s)", 46, Level 10),
    WAILORD("Wailord", 321 ", true, "50, 50, "Veil", "Oblivious", "Pressure", Type.WATER, "Float Whale Pokémon", 877.4, 60, 10,240, 
    		70, "2 HP Point(s)", 46, Level 40),
    NUMEL("Numel", 322 ", true, "50, 50, "Oblivious", "Simple", "Own Tempo", Type.FIRE, "Numb Pokémon", 52.9, 255, 5,120, 
    		70, "1 Sp. Attack Point(s)", 20, Level 10),
    CAMERUPT("Camerupt", 323 ", true, "50, 50, "Armor", "Solid Rock", "Anger Point", Type.FIRE, "Eruption Pokémon", 485.0, 150, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 83, Level 33),
    TORKOAL("Torkoal", 324 ", true, "50, 50, "Smoke", "Shell Armor (Hidden Ability)", "Shell Armor", Type.FIRE, "Coal Pokémon", 177.2, 90, 5,120, 
    		70, "2 Defense Point(s)", 75, Level 10),
    SPOINK("Spoink", 325 ", true, "50, 50, "Fat", "Own Tempo", "Gluttony", Type.PSYCHIC, "Bounce Pokémon", 67.5, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 82, Level 10),
    GRUMPIG("Grumpig", 326 ", true, "50, 50, "Fat", "Own Tempo", "Gluttony", Type.PSYCHIC, "Manipulate Pokémon", 157.6, 60, 5,120, 
    		70, "2 Sp. Defense Point(s)", 82, Level 32),
    SPINDA("Spinda", 327 ", true, "50, 50, "Tempo", "Tangled Feet", "Contrary", Type.NORMAL, "Spot Panda Pokémon", 11.0, 255, 3,840, 
    		70, "1 Sp. Attack Point(s)", 126, Level 10),
    TRAPINCH("Trapinch", 328 ", true, "50, 50, "Cutter", "Arena Trap", "Sheer Force", Type.GROUND, "Ant Pit Pokémon", 33.1, 255, 5,120, 
    		70, "1 Attack Point(s)", 125, Level 10),
    VIBRAVA("Vibrava", 329 ", true, 50, 50, "Levitate", Type.GROUND, "Vibration Pokémon", 33.7, 120, 5,120, 
    		70, "1 Attack Point(s) 1 Speed Point(s)", 26, Level 35),
    FLYGON("Flygon", 330 ", true, 50, 50, "Levitate", Type.GROUND, "Mystic Pokémon", 180.8, 45, 5,120, 
    		70, "1 Attack Point(s) 2 Speed Point(s)", 26, Level 45),
    CACNEA("Cacnea", 331 ", true, "50, 50, "Veil", "Water Absorb (Hidden Ability)", "Water Absorb", Type.GRASS, "Cactus Pokémon", 113.1, 190, 5,120, 
    		35, "1 Sp. Attack Point(s)", 11, Level 10),
    CACTURNE("Cacturne", 332 ", true, "50, 50, "Veil", "Water Absorb (Hidden Ability)", "Water Absorb", Type.GRASS, "Scarecrow Pokémon", 170.6, 60, 5,120, 
    		35, "1 Attack Point(s) 1 Sp. Attack Point(s)", 11, Level 32),
    SWABLU("Swablu", 333 ", true, "50, 50, "Cure", "Cloud Nine (Hidden Ability)", "Cloud Nine", Type.NORMAL, "Cotton Bird Pokémon", 2.6, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 13, Level 10),
    ALTARIA("Altaria", 334 ", true, "50, 50, "Cure", "Cloud Nine (Hidden Ability)", "Cloud Nine", Type.DRAGON, "Humming Pokémon", 45.4, 45, 5,120, 
    		70, "2 Sp. Defense Point(s)", 13, Level 35),
    ZANGOOSE("Zangoose", 335 ", true, "50, 50, "Immunity", "Toxic Boost (Hidden Ability)", "Toxic Boost", Type.NORMAL, "Cat Ferret Pokémon", 88.8, 90, 5,120, 
    		70, "2 Attack Point(s)", 137, Level 10),
    SEVIPER("Seviper", 336 ", true, "50, 50, "Skin", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Fang Snake Pokémon", 115.7, 90, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 151, Level 10),
    LUNATONE("Lunatone", 337 ", false, "Levitate", Type.ROCK, "Meteorite Pokémon", 370.4, 45, 6,400, 
    		70, "2 Sp. Attack Point(s)", 0, Level 10),
    SOLROCK("Solrock", 338 ", false, "Levitate", Type.ROCK, "Meteorite Pokémon", 339.5, 45, 6,400, 
    		70, "2 Attack Point(s)", 0, Level 10),
    BARBOACH("Barboach", 339 ", true, "50, 50, "Oblivious", "Anticipation", "Hydration", Type.WATER, "Whiskers Pokémon", 4.2, 190, 5,120, 
    		70, "1 HP Point(s)", 93, Level 10),
    WHISCASH("Whiscash", 340 ", true, "50, 50, "Oblivious", "Anticipation", "Hydration", Type.WATER, "Whiskers Pokémon", 52.0, 75, 5,120, 
    		70, "2 HP Point(s)", 93, Level 30),
    CORPHISH("Corphish", 341 ", true, "50, 50, "Cutter", "Shell Armor", "Adaptability", Type.WATER, "Ruffian Pokémon", 25.4, 205, 3,840, 
    		70, "1 Attack Point(s)", 91, Level 10),
    CRAWDAUNT("Crawdaunt", 342 ", true, "50, 50, "Cutter", "Shell Armor", "Adaptability", Type.WATER, "Rogue Pokémon", 72.3, 155, 3,840, 
    		70, "2 Attack Point(s)", 91, Level 30),
    BALTOY("Baltoy", 343 ", false, "Levitate", Type.GROUND, "Clay Doll Pokémon", 47.4, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 0, Level 10),
    CLAYDOL("Claydol", 344 ", false, "Levitate", Type.GROUND, "Clay Doll Pokémon", 238.1, 90, 5,120, 
    		70, "2 Sp. Defense Point(s)", 0, Level 36),
    LILEEP("Lileep", 345 ", true, "87.5, 12.5, "Cups", "Storm Drain (Hidden Ability)", "Storm Drain", Type.ROCK, "Sea Lily Pokémon", 52.5, 45, 7,680, 
    		70, "1 Sp. Defense Point(s)", 114, Level 10),
    CRADILY("Cradily", 346 ", true, "87.5, 12.5, "Cups", "Storm Drain (Hidden Ability)", "Storm Drain", Type.ROCK, "Barnacle Pokémon", 133.2, 45, 7,680, 
    		70, "2 Sp. Defense Point(s)", 114, Level 40),
    ANORITH("Anorith", 347 ", true, "87.5, 12.5, "Armor", "Swift Swim (Hidden Ability)", "Swift Swim", Type.ROCK, "Old Shrimp Pokémon", 27.6, 45, 7,680, 
    		70, "1 Attack Point(s)", 33, Level 10),
    ARMALDO("Armaldo", 348 ", true, "87.5, 12.5, "Armor", "Swift Swim (Hidden Ability)", "Swift Swim", Type.ROCK, "Plate Pokémon", 150.4, 45, 7,680, 
    		70, "2 Attack Point(s)", 33, Level 40),
    FEEBAS("Feebas", 349 ", true, "50, 50, "Swim", "Adaptability (Hidden Ability)", "Adaptability", Type.WATER, "Fish Pokémon", 16.3, 255, 5,120, 
    		70, "1 Speed Point(s)", 91, Level 10),
    MILOTIC("Milotic", 350 ", true, "50, 50, "Scale", "Cute Charm (Hidden Ability)", "Cute Charm", Type.WATER, "Tender Pokémon", 357.1, 60, 5,120, 
    		70, "2 Sp. Defense Point(s)", 56, Level 10),
    CASTFORM("Castform", 351 ", true, 50, 50, "Forecast", Type.NORMAL, "Weather Pokémon", 1.8, 45, 6,400, 
    		70, "1 HP Point(s)", 0, Level 10),
    KECLEON("Kecleon", 352 ", true, 50, 50, "Change", Type.NORMAL, "Color Swap Pokémon", 48.5, 200, 5,120, 
    		70, "1 Sp. Defense Point(s)", 0, Level 10),
    SHUPPET("Shuppet", 353 ", true, "50, 50, "Insomnia", "Frisk", "Cursed Body", Type.GHOST, "Puppet Pokémon", 5.1, 225, 6,400, 
    		35, "1 Attack Point(s)", 130, Level 10),
    BANETTE("Banette", 354 ", true, "50, 50, "Insomnia", "Frisk", "Cursed Body", Type.GHOST, "Marionette Pokémon", 27.6, 45, 6,400, 
    		35, "2 Attack Point(s)", 130, Level 37),
    DUSKULL("Duskull", 355 ", true, 50, 50, "Levitate", Type.GHOST, "Requiem Pokémon", 33.1, 190, 6,400, 
    		35, "1 Sp. Defense Point(s)", 0, Level 10),
    DUSCLOPS("Dusclops", 356 ", true, 50, 50, "Pressure", Type.GHOST, "Beckon Pokémon", 67.5, 90, 6,400, 
    		35, "1 Defense Point(s) 1 Sp. Defense Point(s)", 0, Level 37),
    TROPIUS("Tropius", 357 ", true, "50, 50, "Chlorophyll", "Solar Power", "Harvest", Type.GRASS, "Fruit Pokémon", 220.5, 200, 6,400, 
    		70, "2 HP Point(s)", 139, Level 10),
    CHIMECHO("Chimecho", 358 ", true, 50, 50, "Levitate", Type.PSYCHIC, "Wind Chime Pokémon", 2.2, 45, 6,400, 
    		70, "1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 0, Level 10),
    ABSOL("Absol", 359 ", true, "50, 50, "Pressure", "Super Luck", "Justified", Type.DARK, "Disaster Pokémon", 103.6, 30, 6,400, 
    		35, "2 Attack Point(s)", 154, Level 10),
    WYNAUT("Wynaut", 360 ", true, "50, 50, "Tag", "Telepathy (Hidden Ability)", "Telepathy", Type.PSYCHIC, "Bright Pokémon", 30.9, 125, 5,120, 
    		70, "1 HP Point(s)", 140, Level 10),
    SNORUNT("Snorunt", 361 ", true, "50, 50, "Focus", "Ice Body", "Moody", Type.ICE, "Snow Hat Pokémon", 37.0, 190, 5,120, 
    		70, "1 HP Point(s)", 141, Level 10),
    GLALIE("Glalie", 362 ", true, "50, 50, "Focus", "Ice Body", "Moody", Type.ICE, "Face Pokémon", 565.5, 75, 5,120, 
    		70, "2 HP Point(s)", 141, Level 42),
    SPHEAL("Spheal", 363 ", true, "50, 50, "Fat", "Ice Body", "Oblivious", Type.ICE, "Clap Pokémon", 87.1, 255, 5,120, 
    		70, "1 HP Point(s)", 12, Level 10),
    SEALEO("Sealeo", 364 ", true, "50, 50, "Fat", "Ice Body", "Oblivious", Type.ICE, "Ball Roll Pokémon", 193.1, 120, 5,120, 
    		70, "2 HP Point(s)", 12, Level 32),
    WALREIN("Walrein", 365 ", true, "50, 50, "Fat", "Ice Body", "Oblivious", Type.ICE, "Ice Break Pokémon", 332.0, 45, 5,120, 
    		70, "3 HP Point(s)", 12, Level 44),
    CLAMPERL("Clamperl", 366 ", true, "50, 50, "Armor", "Rattled (Hidden Ability)", "Rattled", Type.WATER, "Bivalve Pokémon", 115.7, 255, 5,120, 
    		70, "1 Defense Point(s)", 155, Level 10);


    Attached image


    I love
    Reply With Quote  
     

  7. #6  
    Banned
    Join Date
    Dec 2012
    Posts
    558
    Thanks given
    24
    Thanks received
    115
    Rep Power
    0
    Quote Originally Posted by Pokemon View Post
    I updated it i dumped 400 pokemons

    Code:
    BULBASAUR("Bulbasaur", 001 ", true, "87.5, 12.5, "Overgrow", "Chlorophyll (Hidden Ability)", "Chlorophyll", Type.GRASS, "Seed Pokémon", 15.2, 45, 5,120, 
    		70, "1 Sp. Attack Point(s)", 34, Level 10),
    IVYSAUR("Ivysaur", 002 ", true, "87.5, 12.5, "Overgrow", "Chlorophyll (Hidden Ability)", "Chlorophyll", Type.GRASS, "Seed Pokémon", 28.7, 45, 5,120, 
    		70, "1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 34, Level 16),
    VENUSAUR("Venusaur", 003 ", true, "87.5, 12.5, "Overgrow", "Chlorophyll (Hidden Ability)", "Chlorophyll", Type.GRASS, "Seed Pokémon", 220.5, 45, 5,120, 
    		70, "2 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 34, Level 32),
    CHARMANDER("Charmander", 004 ", true, "87.5, 12.5, "Blaze", "Solar Power (Hidden Ability)", "Solar Power", Type.FIRE, "Lizard Pokémon", 18.7, 45, 5,120, 
    		70, "1 Speed Point(s)", 94, Level 10),
    CHARMELEON("Charmeleon", 005 ", true, "87.5, 12.5, "Blaze", "Solar Power (Hidden Ability)", "Solar Power", Type.FIRE, "Flame Pokémon", 41.9, 45, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 94, Level 16),
    CHARIZARD("Charizard", 006 ", true, "87.5, 12.5, "Blaze", "Solar Power (Hidden Ability)", "Solar Power", Type.FIRE, "Flame Pokémon", 199.5, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 94, Level 36),
    SQUIRTLE("Squirtle", 007 ", true, "87.5, 12.5, "Torrent", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Tiny Turtle Pokémon", 19.8, 45, 5,120, 
    		70, "1 Defense Point(s)", 44, Level 10),
    WARTORTLE("Wartortle", 008 ", true, "87.5, 12.5, "Torrent", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Turtle Pokémon", 49.6, 45, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 44, Level 16),
    BLASTOISE("Blastoise", 009 ", true, "87.5, 12.5, "Torrent", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Shellfish Pokémon", 188.5, 45, 5,120, 
    		70, "3 Sp. Defense Point(s)", 44, Level 36),
    CATERPIE("Caterpie", 010 ", true, "50, 50, "Dust", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Worm Pokémon", 6.4, 255, 3,840, 
    		70, "1 HP Point(s)", 50, Level 10),
    METAPOD("Metapod", 011 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 21.8, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    BUTTERFREE("Butterfree", 012 ", true, "50, 50, "Compoundeyes", "Tinted Lens (Hidden Ability)", "Tinted Lens", Type.BUG, "Butterfly Pokémon", 70.5, 45, 3,840, 
    		70, "2 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 110, Level 10),
    WEEDLE("Weedle", 013 ", true, "50, 50, "Dust", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Hairy Pokémon", 7.1, 255, 3,840, 
    		70, "1 Speed Point(s)", 50, Level 10),
    KAKUNA("Kakuna", 014 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 22.0, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    BEEDRILL("Beedrill", 015 ", true, "50, 50, "Swarm", "Sniper (Hidden Ability)", "Sniper", Type.BUG, "Poison Bee Pokémon", 65.0, 45, 3,840, 
    		70, "2 Attack Point(s) 1 Sp. Defense Point(s)", 97, Level 10),
    PIDGEY("Pidgey", 016 ", true, "50, 50, "Eye", "Tangled Feet", "Big Pecks", Type.NORMAL, "Tiny Bird Pokémon", 4.0, 255, 3,840, 
    		70, "1 Speed Point(s)", 145, Level 10),
    PIDGEOTTO("Pidgeotto", 017 ", true, "50, 50, "Eye", "Tangled Feet", "Big Pecks", Type.NORMAL, "Bird Pokémon", 66.1, 120, 3,840, 
    		70, "2 Speed Point(s)", 145, Level 18),
    PIDGEOT("Pidgeot", 018 ", true, "50, 50, "Eye", "Tangled Feet", "Big Pecks", Type.NORMAL, "Bird Pokémon", 87.1, 45, 3,840, 
    		70, "3 Speed Point(s)", 145, Level 36),
    RATTATA("Rattata", 019 ", true, "50, 50, "Away", "Guts", "Hustle", Type.NORMAL, "Mouse Pokémon", 7.7, 255, 3,840, 
    		70, "1 Speed Point(s)", 55, Level 10),
    RATICATE("Raticate", 020 ", true, "50, 50, "Away", "Guts", "Hustle", Type.NORMAL, "Mouse Pokémon", 40.8, 127, 3,840, 
    		70, "2 Speed Point(s)", 55, Level 20),
    SPEAROW("Spearow", 021 ", true, "50, 50, "Eye", "Sniper (Hidden Ability)", "Sniper", Type.NORMAL, "Tiny Bird Pokémon", 4.4, 255, 3,840, 
    		70, "1 Speed Point(s)", 97, Level 10),
    FEAROW("Fearow", 022 ", true, "50, 50, "Eye", "Sniper (Hidden Ability)", "Sniper", Type.NORMAL, "Beak Pokémon", 83.8, 90, 3,840, 
    		70, "2 Speed Point(s)", 97, Level 20),
    EKANS("Ekans", 023 ", true, "50, 50, "Intimidate", "Shed Skin", "Unnerve", Type.POISON, "Snake Pokémon", 15.2, 255, 5,120, 
    		70, "1 Attack Point(s)", 127, Level 10),
    ARBOK("Arbok", 024 ", true, "50, 50, "Intimidate", "Shed Skin", "Unnerve", Type.POISON, "Cobra Pokémon", 143.3, 90, 5,120, 
    		70, "2 Attack Point(s)", 127, Level 22),
    PIKACHU("Pikachu", 025 ", true, "50, 50, "Static", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Mouse Pokémon", 13.2, 190, 2,560, 
    		70, "2 Speed Point(s)", 31, Level 10),
    RAICHU("Raichu", 026 ", true, "50, 50, "Static", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Mouse Pokémon", 66.1, 75, 2,560, 
    		70, "3 Speed Point(s)", 31, Level 10),
    SANDSHREW("Sandshrew", 027 ", true, "50, 50, "Veil", "Sand Rush (Hidden Ability)", "Sand Rush", Type.GROUND, "Mouse Pokémon", 26.5, 255, 5,120, 
    		70, "1 Defense Point(s)", 146, Level 10),
    SANDSLASH("Sandslash", 028 ", true, "50, 50, "Veil", "Sand Rush (Hidden Ability)", "Sand Rush", Type.GROUND, "Mouse Pokémon", 65.0, 90, 5,120, 
    		70, "2 Defense Point(s)", 146, Level 22),
    NIDORAN♀("Nidoran♀", 029 Nidoran♀</b>
    <b>Japan</b>
    <b>French</b>
    <b>German</b>
    <b>Korean</b>
    <b>National</b>
    <b>BW Unova</b>
    <b>B2W2 Unova</b>
    <b>Abilities</b>
    <b>Poison Point</b>
    <b>Rivalry</b>
    <b>Hustle</b>
    <b>Poison Point</b>
    <b>Rivalry</b>
    <b>Hidden Ability</b>
    <b>Hustle</b>
    <b>Stats</b>", true, "0, 100, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 15.4, 235, 5,120, 
    		70, "1 HP Point(s)", 55, Level 10),
    NIDORINA("Nidorina", 030 ", true, "0, 100, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 44.1, 120, 5,120, 
    		70, "2 HP Point(s)", 55, Level 16),
    NIDOQUEEN("Nidoqueen", 031 ", true, "0, 100, "Point", "Rivalry", "Sheer Force", Type.POISON, "Drill Pokémon", 132.3, 45, 5,120, 
    		70, "3 HP Point(s)", 125, Level 16),
    NIDORAN♂("Nidoran♂", 032 Nidoran♂</b>
    <b>Japan</b>
    <b>French</b>
    <b>German</b>
    <b>Korean</b>
    <b>National</b>
    <b>BW Unova</b>
    <b>B2W2 Unova</b>
    <b>Abilities</b>
    <b>Poison Point</b>
    <b>Rivalry</b>
    <b>Hustle</b>
    <b>Poison Point</b>
    <b>Rivalry</b>
    <b>Hidden Ability</b>
    <b>Hustle</b>
    <b>Stats</b>", true, "100, 0, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 19.8, 235, 5,120, 
    		70, "1 Attack Point(s)", 55, Level 10),
    NIDORINO("Nidorino", 033 ", true, "100, 0, "Point", "Rivalry", "Hustle", Type.POISON, "Poison Pin Pokémon", 43.0, 120, 5,120, 
    		70, "2 Attack Point(s)", 55, Level 16),
    NIDOKING("Nidoking", 034 ", true, "100, 0, "Point", "Rivalry", "Sheer Force", Type.POISON, "Drill Pokémon", 136.7, 45, 5,120, 
    		70, "3 Attack Point(s)", 125, Level 16),
    CLEFAIRY("Clefairy", 035 ", true, "25, 75, "Charm", "Magic Guard", "Friend Guard", Type.NORMAL, "Fairy Pokémon", 16.5, 150, 2,560, 
    		140, "2 HP Point(s)", 132, Level 10),
    CLEFABLE("Clefable", 036 ", true, "25, 75, "Charm", "Magic Guard", "Unaware", Type.NORMAL, "Fairy Pokémon", 88.2, 25, 2,560, 
    		140, "3 HP Point(s)", 109, Level 10),
    VULPIX("Vulpix", 037 ", true, "25, 75, "Fire", "Drought (Hidden Ability)", "Drought", Type.FIRE, "Fox Pokémon", 21.8, 190, 5,120, 
    		70, "1 Speed Point(s)", 70, Level 10),
    NINETALES("Ninetales", 038 ", true, "25, 75, "Fire", "Drought (Hidden Ability)", "Drought", Type.FIRE, "Fox Pokémon", 43.9, 75, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Defense Point(s)", 70, Level 10),
    JIGGLYPUFF("Jigglypuff", 039 ", true, "25, 75, "Charm", "Friend Guard (Hidden Ability)", "Friend Guard", Type.NORMAL, "Balloon Pokémon", 12.1, 170, 2,560, 
    		70, "2 HP Point(s)", 132, Level 10),
    WIGGLYTUFF("Wigglytuff", 040 ", true, "25, 75, "Charm", "Frisk (Hidden Ability)", "Frisk", Type.NORMAL, "Balloon Pokémon", 26.5, 50, 2,560, 
    		70, "3 HP Point(s)", 119, Level 10),
    ZUBAT("Zubat", 041 ", true, "50, 50, "Focus", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Bat Pokémon", 16.5, 255, 3,840, 
    		70, "1 Speed Point(s)", 151, Level 10),
    GOLBAT("Golbat", 042 ", true, "50, 50, "Focus", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Bat Pokémon", 121.3, 90, 3,840, 
    		70, "2 Speed Point(s)", 151, Level 22),
    ODDISH("Oddish", 043 ", true, "50, 50, "Chlorophyll", "Run Away (Hidden Ability)", "Run Away", Type.GRASS, "Weed Pokémon", 11.9, 255, 5,120, 
    		70, "1 Sp. Attack Point(s)", 50, Level 10),
    GLOOM("Gloom", 044 ", true, "50, 50, "Chlorophyll", "Stench (Hidden Ability)", "Stench", Type.GRASS, "Weed Pokémon", 19.0, 120, 5,120, 
    		70, "2 Sp. Attack Point(s)", 1, Level 21),
    VILEPLUME("Vileplume", 045 ", true, "50, 50, "Chlorophyll", "Effect Spore (Hidden Ability)", "Effect Spore", Type.GRASS, "Flower Pokémon", 41.0, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 27, Level 21),
    PARAS("Paras", 046 ", true, "50, 50, "Spore", "Dry Skin", "Damp", Type.BUG, "Mushroom Pokémon", 11.9, 190, 5,120, 
    		70, "1 Attack Point(s)", 6, Level 10),
    PARASECT("Parasect", 047 ", true, "50, 50, "Spore", "Dry Skin", "Damp", Type.BUG, "Mushroom Pokémon", 65.0, 75, 5,120, 
    		70, "2 Attack Point(s) 1 Defense Point(s)", 6, Level 24),
    VENONAT("Venonat", 048 ", true, "50, 50, "Compoundeyes", "Tinted Lens", "Run Away", Type.BUG, "Insect Pokémon", 66.1, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 50, Level 10),
    VENOMOTH("Venomoth", 049 ", true, "50, 50, "Dust", "Tinted Lens", "Wonder Skin", Type.BUG, "Poison Moth Pokémon", 27.6, 75, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 147, Level 31),
    DIGLETT("Diglett", 050 ", true, "50, 50, "Veil", "Arena Trap", "Sand Force", Type.GROUND, "Mole Pokémon", 1.8, 255, 5,120, 
    		70, "1 Speed Point(s)", 159, Level 10),
    DUGTRIO("Dugtrio", 051 ", true, "50, 50, "Veil", "Arena Trap", "Sand Force", Type.GROUND, "Mole Pokémon", 73.4, 50, 5,120, 
    		70, "2 Speed Point(s)", 159, Level 26),
    MEOWTH("Meowth", 052 ", true, "50, 50, "Pickup", "Technician", "Unnerve", Type.NORMAL, "Scratch Cat Pokémon", 9.3, 255, 5,120, 
    		70, "1 Speed Point(s)", 127, Level 10),
    PERSIAN("Persian", 053 ", true, "50, 50, "Limber", "Technician", "Unnerve", Type.NORMAL, "Classy Cat Pokémon", 70.5, 90, 5,120, 
    		70, "2 Speed Point(s)", 127, Level 28),
    PSYDUCK("Psyduck", 054 ", true, "50, 50, "Damp", "Cloud Nine", "Swift Swim", Type.WATER, "Duck Pokémon", 43.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 33, Level 10),
    GOLDUCK("Golduck", 055 ", true, "50, 50, "Damp", "Cloud Nine", "Swift Swim", Type.WATER, "Duck Pokémon", 168.9, 75, 5,120, 
    		70, "2 Sp. Attack Point(s)", 33, Level 33),
    MANKEY("Mankey", 056 ", true, "50, 50, "Spirit", "Anger Point", "Defiant", Type.FIGHTING, "Pig Monkey Pokémon", 61.7, 190, 5,120, 
    		70, "1 Attack Point(s)", 128, Level 10),
    PRIMEAPE("Primeape", 057 ", true, "50, 50, "Spirit", "Anger Point", "Defiant", Type.FIGHTING, "Pig Monkey Pokémon", 70.5, 75, 5,120, 
    		70, "2 Attack Point(s)", 128, Level 28),
    GROWLITHE("Growlithe", 058 ", true, "75, 25, "Intimidate", "Flash Fire", "Justified", Type.FIRE, "Puppy Pokémon", 41.9, 190, 5,120, 
    		70, "1 Attack Point(s)", 154, Level 10),
    ARCANINE("Arcanine", 059 ", true, "75, 25, "Intimidate", "Flash Fire", "Justified", Type.FIRE, "Legendary Pokémon", 341.7, 75, 5,120, 
    		70, "2 Attack Point(s)", 154, Level 10),
    POLIWAG("Poliwag", 060 ", true, "50, 50, "Absorb", "Damp", "Swift Swim", Type.WATER, "Tadpole Pokémon", 27.3, 255, 5,120, 
    		70, "1 Speed Point(s)", 33, Level 10),
    POLIWHIRL("Poliwhirl", 061 ", true, "50, 50, "Absorb", "Damp", "Swift Swim", Type.WATER, "Tadpole Pokémon", 44.1, 120, 5,120, 
    		70, "2 Speed Point(s)", 33, Level 25),
    POLIWRATH("Poliwrath", 062 ", true, "50, 50, "Absorb", "Damp", "Swift Swim", Type.WATER, "Tadpole Pokémon", 119.0, 45, 5,120, 
    		70, "3 Defense Point(s)", 33, Level 25),
    ABRA("Abra", 063 ", true, "75, 25, "Synchronize", "Inner Focus", "Magic Guard", Type.PSYCHIC, "Psi Pokémon", 43.0, 200, 5,120, 
    		70, "1 Sp. Attack Point(s)", 98, Level 10),
    KADABRA("Kadabra", 064 ", true, "75, 25, "Synchronize", "Inner Focus", "Magic Guard", Type.PSYCHIC, "Psi Pokémon", 124.6, 100, 5,120, 
    		70, "2 Sp. Attack Point(s)", 98, Level 16),
    ALAKAZAM("Alakazam", 065 ", true, "75, 25, "Synchronize", "Inner Focus", "Magic Guard", Type.PSYCHIC, "Psi Pokémon", 105.8, 50, 5,120, 
    		70, "3 Sp. Attack Point(s)", 98, Level 16),
    MACHOP("Machop", 066 ", true, "75, 25, "Guts", "No Guard", "Steadfast", Type.FIGHTING, "Superpower Pokémon", 43.0, 180, 5,120, 
    		70, "1 Attack Point(s)", 80, Level 10),
    MACHOKE("Machoke", 067 ", true, "75, 25, "Guts", "No Guard", "Steadfast", Type.FIGHTING, "Superpower Pokémon", 155.4, 90, 5,120, 
    		70, "2 Attack Point(s)", 80, Level 28),
    MACHAMP("Machamp", 068 ", true, "75, 25, "Guts", "No Guard", "Steadfast", Type.FIGHTING, "Superpower Pokémon", 286.6, 45, 5,120, 
    		70, "3 Attack Point(s)", 80, Level 28),
    BELLSPROUT("Bellsprout", 069 ", true, "50, 50, "Chlorophyll", "Gluttony (Hidden Ability)", "Gluttony", Type.GRASS, "Flower Pokémon", 8.8, 255, 5,120, 
    		70, "1 Attack Point(s)", 82, Level 10),
    WEEPINBELL("Weepinbell", 070 ", true, "50, 50, "Chlorophyll", "Gluttony (Hidden Ability)", "Gluttony", Type.GRASS, "Flycatcher Pokémon", 14.1, 120, 5,120, 
    		70, "2 Attack Point(s)", 82, Level 21),
    VICTREEBEL("Victreebel", 071 ", true, "50, 50, "Chlorophyll", "Gluttony (Hidden Ability)", "Gluttony", Type.GRASS, "Flycatcher Pokémon", 34.2, 45, 5,120, 
    		70, "3 Attack Point(s)", 82, Level 21),
    TENTACOOL("Tentacool", 072 ", true, "50, 50, "Body", "Liquid Ooze", "Rain Dish", Type.WATER, "Jellyfish Pokémon", 100.3, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 44, Level 10),
    TENTACRUEL("Tentacruel", 073 ", true, "50, 50, "Body", "Liquid Ooze", "Rain Dish", Type.WATER, "Jellyfish Pokémon", 121.3, 60, 5,120, 
    		70, "2 Sp. Defense Point(s)", 44, Level 30),
    GEODUDE("Geodude", 074 ", true, "50, 50, "Head", "Sturdy", "Sand Veil", Type.ROCK, "Rock Pokémon", 44.1, 255, 3,840, 
    		70, "1 Defense Point(s)", 8, Level 10),
    GRAVELER("Graveler", 075 ", true, "50, 50, "Head", "Sturdy", "Sand Veil", Type.ROCK, "Rock Pokémon", 231.5, 120, 3,840, 
    		70, "2 Defense Point(s)", 8, Level 25),
    GOLEM("Golem", 076 ", true, "50, 50, "Head", "Sturdy", "Sand Veil", Type.ROCK, "Megaton Pokémon", 661.4, 45, 3,840, 
    		70, "3 Defense Point(s)", 8, Level 25),
    PONYTA("Ponyta", 077 ", true, "50, 50, "Away", "Flash Fire", "Flame Body", Type.FIRE, "Fire Horse Pokémon", 66.1, 190, 5,120, 
    		70, "1 Speed Point(s)", 49, Level 10),
    RAPIDASH("Rapidash", 078 ", true, "50, 50, "Away", "Flash Fire", "Flame Body", Type.FIRE, "Fire Horse Pokémon", 209.4, 60, 5,120, 
    		70, "2 Speed Point(s)", 49, Level 40),
    SLOWPOKE("Slowpoke", 079 ", true, "50, 50, "Oblivious", "Own Tempo", "Regenerator", Type.WATER, "Dopey Pokémon", 79.4, 190, 5,120, 
    		70, "1 HP Point(s)", 144, Level 10),
    SLOWBRO("Slowbro", 080 ", true, "50, 50, "Oblivious", "Own Tempo", "Regenerator", Type.WATER, "Hermit Crab Pokémon", 173.1, 75, 5,120, 
    		70, "2 Defense Point(s)", 144, Level 37),
    MAGNEMITE("Magnemite", 081 ", false, "Pull", "Sturdy", "Analytic", Type.ELECTRIC, "Magnet Pokémon", 13.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 148, Level 10),
    MAGNETON("Magneton", 082 ", false, "Pull", "Sturdy", "Analytic", Type.ELECTRIC, "Magnet Pokémon", 132.3, 60, 5,120, 
    		70, "2 Sp. Attack Point(s)", 148, Level 30),
    FARFETCH'D("Farfetch'd", 083 ", true, "50, 50, "Eye", "Inner Focus", "Defiant", Type.NORMAL, "Wild Duck Pokémon", 33.1, 45, 5,120, 
    		70, "1 Attack Point(s)", 128, Level 10),
    DODUO("Doduo", 084 ", true, "50, 50, "Away", "Early Bird", "Tangled Feet", Type.NORMAL, "Twin Bird Pokémon", 86.4, 190, 5,120, 
    		70, "1 Attack Point(s)", 77, Level 10),
    DODRIO("Dodrio", 085 ", true, "50, 50, "Away", "Early Bird", "Tangled Feet", Type.NORMAL, "Triple Bird Pokémon", 187.8, 45, 5,120, 
    		70, "2 Attack Point(s)", 77, Level 31),
    SEEL("Seel", 086 ", true, "50, 50, "Fat", "Hydration", "Ice Body", Type.WATER, "Sea Lion Pokémon", 198.4, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 115, Level 10),
    DEWGONG("Dewgong", 087 ", true, "50, 50, "Fat", "Hydration", "Ice Body", Type.WATER, "Sea Lion Pokémon", 264.6, 75, 5,120, 
    		70, "2 Sp. Defense Point(s)", 115, Level 34),
    GRIMER("Grimer", 088 ", true, "50, 50, "Stench", "Sticky Hold", "Poison Touch", Type.POISON, "Sludge Pokémon", 66.1, 190, 5,120, 
    		70, "1 HP Point(s)", 143, Level 10),
    MUK("Muk", 089 ", true, "50, 50, "Stench", "Sticky Hold", "Poison Touch", Type.POISON, "Sludge Pokémon", 66.1, 75, 5,120, 
    		70, "1 HP Point(s) 1 Attack Point(s)", 143, Level 38),
    SHELLDER("Shellder", 090 ", true, "50, 50, "Armor", "Skill Link", "Overcoat", Type.WATER, "Bivalve Pokémon", 8.8, 190, 5,120, 
    		70, "1 Defense Point(s)", 142, Level 10),
    CLOYSTER("Cloyster", 091 ", true, "50, 50, "Armor", "Skill Link", "Overcoat", Type.WATER, "Bivalve Pokémon", 292.1, 60, 5,120, 
    		70, "2 Defense Point(s)", 142, Level 10),
    GASTLY("Gastly", 092 ", true, 50, 50, "Levitate", Type.GHOST, "Gas Pokémon", 0.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 0, Level 10),
    HAUNTER("Haunter", 093 ", true, 50, 50, "Levitate", Type.GHOST, "Gas Pokémon", 0.2, 90, 5,120, 
    		70, "2 Sp. Attack Point(s)", 0, Level 25),
    GENGAR("Gengar", 094 ", true, 50, 50, "Levitate", Type.GHOST, "Shadow Pokémon", 89.3, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 0, Level 25),
    ONIX("Onix", 095 ", true, "50, 50, "Head", "Sturdy", "Weak Armor", Type.ROCK, "Rock Snake Pokémon", 463.0, 45, 6,400, 
    		70, "1 Defense Point(s)", 133, Level 10),
    DROWZEE("Drowzee", 096 ", true, "50, 50, "Insomnia", "Forewarn", "Inner Focus", Type.PSYCHIC, "Hypnosis Pokémon", 71.4, 190, 5,120, 
    		70, "1 Sp. Defense Point(s)", 39, Level 10),
    HYPNO("Hypno", 097 ", true, "50, 50, "Insomnia", "Forewarn", "Inner Focus", Type.PSYCHIC, "Hypnosis Pokémon", 166.7, 75, 5,120, 
    		70, "2 Sp. Defense Point(s)", 39, Level 26),
    KRABBY("Krabby", 098 ", true, "50, 50, "Cutter", "Shell Armor", "Sheer Force", Type.WATER, "River Crab Pokémon", 14.3, 225, 5,120, 
    		70, "1 Attack Point(s)", 125, Level 10),
    KINGLER("Kingler", 099 ", true, "50, 50, "Cutter", "Shell Armor", "Sheer Force", Type.WATER, "Pincer Pokémon", 132.3, 60, 5,120, 
    		70, "2 Attack Point(s)", 125, Level 28),
    VOLTORB("Voltorb", 100 ", false, "Soundproof", "Static", "Aftermath", Type.ELECTRIC, "Ball Pokémon", 22.9, 190, 5,120, 
    		70, "1 Speed Point(s)", 106, Level 10),
    ELECTRODE("Electrode", 101 ", false, "Soundproof", "Static", "Aftermath", Type.ELECTRIC, "Ball Pokémon", 146.8, 60, 5,120, 
    		70, "2 Speed Point(s)", 106, Level 30),
    EXEGGCUTE("Exeggcute", 102 ", true, "50, 50, "Chlorophyll", "Harvest (Hidden Ability)", "Harvest", Type.GRASS, "Egg Pokémon", 5.5, 90, 5,120, 
    		70, "1 Defense Point(s)", 139, Level 10),
    EXEGGUTOR("Exeggutor", 103 ", true, "50, 50, "Chlorophyll", "Harvest (Hidden Ability)", "Harvest", Type.GRASS, "Coconut Pokémon", 264.6, 45, 5,120, 
    		70, "2 Sp. Attack Point(s)", 139, Level 10),
    CUBONE("Cubone", 104 ", true, "50, 50, "Head", "Lightningrod", "Battle Armor", Type.GROUND, "Lonely Pokémon", 14.3, 190, 5,120, 
    		70, "1 Defense Point(s)", 4, Level 10),
    MAROWAK("Marowak", 105 ", true, "50, 50, "Head", "Lightningrod", "Battle Armor", Type.GROUND, "Bone Keeper Pokémon", 99.2, 75, 5,120, 
    		70, "2 Defense Point(s)", 4, Level 28),
    HITMONLEE("Hitmonlee", 106 ", true, "100, 0, "Limber", "Reckless", "Unburden", Type.FIGHTING, "Kicking Pokémon", 109.8, 45, 6,400, 
    		70, "2 Attack Point(s)", 84, Level 20),
    HITMONCHAN("Hitmonchan", 107 ", true, "100, 0, "Eye", "Iron Fist", "Inner Focus", Type.FIGHTING, "Punching Pokémon", 110.7, 45, 6,400, 
    		70, "2 Sp. Defense Point(s)", 39, Level 20),
    LICKITUNG("Lickitung", 108 ", true, "50, 50, "Tempo", "Oblivious", "Cloud Nine", Type.NORMAL, "Licking Pokémon", 144.4, 45, 5,120, 
    		70, "2 HP Point(s)", 13, Level 10),
    KOFFING("Koffing", 109 ", true, 50, 50, "Levitate", Type.POISON, "Poison Gas Pokémon", 2.2, 190, 5,120, 
    		70, "1 Defense Point(s)", 0, Level 10),
    WEEZING("Weezing", 110 ", true, 50, 50, "Levitate", Type.POISON, "Poison Gas Pokémon", 20.9, 60, 5,120, 
    		70, "2 Defense Point(s)", 0, Level 35),
    RHYHORN("Rhyhorn", 111 ", true, "50, 50, "Lightningrod", "Rock Head", "Reckless", Type.GROUND, "Spikes Pokémon", 253.5, 120, 5,120, 
    		70, "1 Defense Point(s)", 120, Level 10),
    RHYDON("Rhydon", 112 ", true, "50, 50, "Lightningrod", "Rock Head", "Reckless", Type.GROUND, "Drill Pokémon", 264.6, 60, 5,120, 
    		70, "2 Attack Point(s)", 120, Level 42),
    CHANSEY("Chansey", 113 ", true, "0, 100, "Cure", "Serene Grace", "Healer", Type.NORMAL, "Egg Pokémon", 76.3, 30, 10,240, 
    		140, "2 HP Point(s)", 131, Level 10),
    TANGELA("Tangela", 114 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Regenerator", Type.GRASS, "Vine Pokémon", 77.2, 45, 5,120, 
    		70, "1 Defense Point(s)", 144, Level 10),
    KANGASKHAN("Kangaskhan", 115 ", true, "0, 100, "Bird", "Scrappy", "Inner Focus", Type.NORMAL, "Parent Pokémon", 176.4, 45, 5,120, 
    		70, "2 HP Point(s)", 39, Level 10),
    HORSEA("Horsea", 116 ", true, "50, 50, "Swim", "Sniper", "Damp", Type.WATER, "Dragon Pokémon", 17.6, 225, 5,120, 
    		70, "1 Sp. Attack Point(s)", 6, Level 10),
    SEADRA("Seadra", 117 ", true, "50, 50, "Point", "Sniper", "Damp", Type.WATER, "Dragon Pokémon", 55.1, 75, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Attack Point(s)", 6, Level 32),
    GOLDEEN("Goldeen", 118 ", true, "50, 50, "Swim", "Water Veil", "Lightningrod", Type.WATER, "Goldfish Pokémon", 33.1, 225, 5,120, 
    		70, "1 Attack Point(s)", 31, Level 10),
    SEAKING("Seaking", 119 ", true, "50, 50, "Swim", "Water Veil", "Lightningrod", Type.WATER, "Goldfish Pokémon", 86.0, 60, 5,120, 
    		70, "2 Attack Point(s)", 31, Level 33),
    STARYU("Staryu", 120 ", false, "Illuminate", "Natural Cure", "Analytic", Type.WATER, "Starshape Pokémon", 76.1, 225, 5,120, 
    		70, "1 Speed Point(s)", 148, Level 10),
    STARMIE("Starmie", 121 ", false, "Illuminate", "Natural Cure", "Analytic", Type.WATER, "Mysterious Pokémon", 176.4, 60, 5,120, 
    		70, "2 Speed Point(s)", 148, Level 10),
    MR. MIME("Mr. Mime", 122 ", true, "50, 50, "Soundproof", "Filter", "Technician", Type.PSYCHIC, "Barrier Pokémon", 120.2, 45, 6,400, 
    		70, "2 Sp. Defense Point(s)", 101, Level 10),
    SCYTHER("Scyther", 123 ", true, "50, 50, "Swarm", "Technician", "Steadfast", Type.BUG, "Mantis Pokémon", 123.5, 45, 6,400, 
    		70, "1 Attack Point(s)", 80, Level 10),
    JYNX("Jynx", 124 ", true, "0, 100, "Oblivious", "Forewarn", "Dry Skin", Type.ICE, "Humanshape Pokémon", 89.5, 45, 6,400, 
    		70, "2 Sp. Attack Point(s)", 87, Level 30),
    ELECTABUZZ("Electabuzz", 125 ", true, "75, 25, "Static", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.ELECTRIC, "Electric Pokémon", 66.1, 45, 6,400, 
    		70, "2 Speed Point(s)", 72, Level 30),
    MAGMAR("Magmar", 126 ", true, "75, 25, "Body", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.FIRE, "Spitfire Pokémon", 98.1, 45, 6,400, 
    		70, "2 Sp. Attack Point(s)", 72, Level 30),
    PINSIR("Pinsir", 127 ", true, "50, 50, "Cutter", "Mold Breaker", "Moxie", Type.BUG, "Stagbeetle Pokémon", 121.3, 45, 6,400, 
    		70, "2 Attack Point(s)", 153, Level 10),
    TAUROS("Tauros", 128 ", true, "100, 0, "Intimidate", "Anger Point", "Sheer Force", Type.NORMAL, "Wild Bull Pokémon", 194.9, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Speed Point(s)", 125, Level 10),
    MAGIKARP("Magikarp", 129 ", true, "50, 50, "Swim", "Rattled (Hidden Ability)", "Rattled", Type.WATER, "Fish Pokémon", 22.0, 255, 1,280, 
    		70, "1 Speed Point(s)", 155, Level 10),
    GYARADOS("Gyarados", 130 ", true, "50, 50, "Intimidate", "Moxie (Hidden Ability)", "Moxie", Type.WATER, "Atrocious Pokémon", 518.1, 45, 1,280, 
    		70, "2 Attack Point(s)", 153, Level 20),
    LAPRAS("Lapras", 131 ", true, "50, 50, "Absorb", "Shell Armor", "Hydration", Type.WATER, "Transport Pokémon", 485.0, 45, 10,240, 
    		70, "2 HP Point(s)", 93, Level 10),
    DITTO("Ditto", 132 ", false, "Limber", "Imposter (Hidden Ability)", "Imposter", Type.NORMAL, "Transform Pokémon", 8.8, 35, 5,120, 
    		70, "1 HP Point(s)", 150, Level 10),
    EEVEE("Eevee", 133 ", true, "87.5, 12.5, "Away", "Adaptability", "Anticipation", Type.NORMAL, "Evolution Pokémon", 14.3, 45, 8,960, 
    		70, "1 Sp. Defense Point(s)", 107, Level 10),
    VAPOREON("Vaporeon", 134 ", true, "87.5, 12.5, "Absorb", "Hydration (Hidden Ability)", "Hydration", Type.WATER, "Bubble Jet Pokémon", 63.9, 45, 8,960, 
    		70, "2 HP Point(s)", 93, Level 10),
    JOLTEON("Jolteon", 135 ", true, "87.5, 12.5, "Absorb", "Quick Feet (Hidden Ability)", "Quick Feet", Type.ELECTRIC, "Lightning Pokémon", 54.0, 45, 8,960, 
    		70, "2 Speed Point(s)", 95, Level 10),
    FLAREON("Flareon", 136 ", true, "87.5, 12.5, "Fire", "Guts (Hidden Ability)", "Guts", Type.FIRE, "Flame Pokémon", 55.1, 45, 8,960, 
    		70, "2 Attack Point(s)", 62, Level 10),
    PORYGON("Porygon", 137 ", false, "Trace", "Download", "Analytic", Type.NORMAL, "Virtual Pokémon", 80.5, 45, 5,120, 
    		70, "1 Sp. Attack Point(s)", 148, Level 10),
    OMANYTE("Omanyte", 138 ", true, "87.5, 12.5, "Swim", "Shell Armor", "Weak Armor", Type.ROCK, "Spiral Pokémon", 16.5, 45, 7,680, 
    		70, "1 Defense Point(s)", 133, Level 10),
    OMASTAR("Omastar", 139 ", true, "87.5, 12.5, "Swim", "Shell Armor", "Weak Armor", Type.ROCK, "Spiral Pokémon", 77.2, 45, 7,680, 
    		70, "2 Defense Point(s)", 133, Level 40),
    KABUTO("Kabuto", 140 ", true, "87.5, 12.5, "Swim", "Battle Armor", "Weak Armor", Type.ROCK, "Shellfish Pokémon", 25.4, 45, 7,680, 
    		70, "1 Defense Point(s)", 133, Level 10),
    KABUTOPS("Kabutops", 141 ", true, "87.5, 12.5, "Swim", "Battle Armor", "Weak Armor", Type.ROCK, "Shellfish Pokémon", 89.3, 45, 7,680, 
    		70, "2 Attack Point(s)", 133, Level 40),
    AERODACTYL("Aerodactyl", 142 ", true, "87.5, 12.5, "Head", "Pressure", "Unnerve", Type.ROCK, "Fossil Pokémon", 130.1, 45, 8,960, 
    		70, "2 Speed Point(s)", 127, Level 10),
    SNORLAX("Snorlax", 143 ", true, "87.5, 12.5, "Immunity", "Thick Fat", "Gluttony", Type.NORMAL, "Sleeping Pokémon", 1014.1, 25, 10,240, 
    		70, "2 HP Point(s)", 82, Level 10),
    ARTICUNO("Articuno", 144 ", false, "Pressure", "Snow Cloak (Hidden Ability)", "Snow Cloak", Type.ICE, "Freeze Pokémon", 122.1, 3, 20,480, 
    		35, "3 Sp. Defense Point(s)", 81, Level 50),
    ZAPDOS("Zapdos", 145 ", false, "Pressure", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Electric Pokémon", 116.0, 3, 20,480, 
    		35, "3 Sp. Attack Point(s)", 31, Level 50),
    MOLTRES("Moltres", 146 ", false, "Pressure", "Flame Body (Hidden Ability)", "Flame Body", Type.FIRE, "Flame Pokémon", 132.3, 3, 20,480, 
    		35, "3 Sp. Attack Point(s)", 49, Level 50),
    DRATINI("Dratini", 147 ", true, "50, 50, "Skin", "Marvel Scale (Hidden Ability)", "Marvel Scale", Type.DRAGON, "Dragon Pokémon", 7.3, 45, 10,240, 
    		35, "1 Attack Point(s)", 63, Level 10),
    DRAGONAIR("Dragonair", 148 ", true, "50, 50, "Skin", "Marvel Scale (Hidden Ability)", "Marvel Scale", Type.DRAGON, "Dragon Pokémon", 36.4, 45, 10,240, 
    		35, "2 Attack Point(s)", 63, Level 30),
    DRAGONITE("Dragonite", 149 ", true, "50, 50, "Focus", "Multiscale (Hidden Ability)", "Multiscale", Type.DRAGON, "Dragon Pokémon", 463.0, 45, 10,240, 
    		35, "3 Attack Point(s)", 136, Level 55),
    MEWTWO("Mewtwo", 150 ", false, "Pressure", "Unnerve (Hidden Ability)", "Unnerve", Type.PSYCHIC, "Genetic Pokémon", 269.0, 3, 30,720, 
    		0, "3 Sp. Attack Point(s)", 127, Level 70),
    MEW("Mew", 151 ", false, "Synchronize", Type.PSYCHIC, "New Specie Pokémon", 8.8, 45, 30,720, 
    		100, "3 HP Point(s)", 0, Level 30),
    CHIKORITA("Chikorita", 152 ", true, "87.5, 12.5, "Overgrow", "Leaf Guard (Hidden Ability)", "Leaf Guard", Type.GRASS, "Leaf Pokémon", 14.1, 45, 5,120, 
    		70, "1 Sp. Defense Point(s)", 102, Level 10),
    BAYLEEF("Bayleef", 153 ", true, "87.5, 12.5, "Overgrow", "Leaf Guard (Hidden Ability)", "Leaf Guard", Type.GRASS, "Leaf Pokémon", 34.8, 45, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 102, Level 16),
    MEGANIUM("Meganium", 154 ", true, "87.5, 12.5, "Overgrow", "Leaf Guard (Hidden Ability)", "Leaf Guard", Type.GRASS, "Herb Pokémon", 221.6, 45, 5,120, 
    		70, "1 Defense Point(s) 2 Sp. Defense Point(s)", 102, Level 32),
    CYNDAQUIL("Cyndaquil", 155 ", true, "87.5, 12.5, "Blaze", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Fire Mouse Pokémon", 17.4, 45, 5,120, 
    		70, "1 Speed Point(s)", 18, Level 10),
    QUILAVA("Quilava", 156 ", true, "87.5, 12.5, "Blaze", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Volcano Pokémon", 41.9, 45, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 18, Level 14),
    TYPHLOSION("Typhlosion", 157 ", true, "87.5, 12.5, "Blaze", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Volcano Pokémon", 175.3, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 18, Level 36),
    TOTODILE("Totodile", 158 ", true, "87.5, 12.5, "Torrent", "Sheer Force (Hidden Ability)", "Sheer Force", Type.WATER, "Big Jaw Pokémon", 20.9, 45, 5,120, 
    		70, "1 Attack Point(s)", 125, Level 10),
    CROCONAW("Croconaw", 159 ", true, "87.5, 12.5, "Torrent", "Sheer Force (Hidden Ability)", "Sheer Force", Type.WATER, "Big Jaw Pokémon", 55.1, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Defense Point(s)", 125, Level 18),
    FERALIGATR("Feraligatr", 160 ", true, "87.5, 12.5, "Torrent", "Sheer Force (Hidden Ability)", "Sheer Force", Type.WATER, "Big Jaw Pokémon", 195.8, 45, 5,120, 
    		70, "2 Attack Point(s) 1 Defense Point(s)", 125, Level 30),
    SENTRET("Sentret", 161 ", true, "50, 50, "Away", "Keen Eye", "Frisk", Type.NORMAL, "Scout Pokémon", 13.2, 255, 3,840, 
    		70, "1 Attack Point(s)", 119, Level 10),
    FURRET("Furret", 162 ", true, "50, 50, "Away", "Keen Eye", "Frisk", Type.NORMAL, "Long Body Pokémon", 71.6, 90, 3,840, 
    		70, "2 Speed Point(s)", 119, Level 15),
    HOOTHOOT("Hoothoot", 163 ", true, "50, 50, "Insomnia", "Keen Eye", "Tinted Lens", Type.NORMAL, "Owl Pokémon", 46.7, 255, 3,840, 
    		70, "1 HP Point(s)", 110, Level 10),
    NOCTOWL("Noctowl", 164 ", true, "50, 50, "Insomnia", "Keen Eye", "Tinted Lens", Type.NORMAL, "Owl Pokémon", 89.9, 90, 3,840, 
    		70, "2 HP Point(s)", 110, Level 20),
    LEDYBA("Ledyba", 165 ", true, "50, 50, "Swarm", "Early Bird", "Rattled", Type.BUG, "Five Star Pokémon", 23.8, 255, 3,840, 
    		70, "1 Sp. Defense Point(s)", 155, Level 10),
    LEDIAN("Ledian", 166 ", true, "50, 50, "Swarm", "Early Bird", "Iron Fist", Type.BUG, "Five Star Pokémon", 78.5, 90, 3,840, 
    		70, "2 Sp. Defense Point(s)", 89, Level 18),
    SPINARAK("Spinarak", 167 ", true, "50, 50, "Swarm", "Insomnia", "Sniper", Type.BUG, "String Spit Pokémon", 18.7, 255, 3,840, 
    		70, "1 Attack Point(s)", 97, Level 10),
    ARIADOS("Ariados", 168 ", true, "50, 50, "Swarm", "Insomnia", "Sniper", Type.BUG, "Long Leg Pokémon", 73.9, 90, 3,840, 
    		70, "2 Attack Point(s)", 97, Level 22),
    CROBAT("Crobat", 169 ", true, "50, 50, "Focus", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Bat Pokémon", 165.3, 90, 3,840, 
    		70, "3 Speed Point(s)", 151, Level 23),
    CHINCHOU("Chinchou", 170 ", true, "50, 50, "Absorb", "Illuminate", "Water Absorb", Type.WATER, "Angler Pokémon", 26.5, 190, 5,120, 
    		70, "1 HP Point(s)", 11, Level 10),
    LANTURN("Lanturn", 171 ", true, "50, 50, "Absorb", "Illuminate", "Water Absorb", Type.WATER, "Light Pokémon", 49.6, 75, 5,120, 
    		70, "2 HP Point(s)", 11, Level 27),
    PICHU("Pichu", 172 ", true, "50, 50, "Static", "Lightningrod (Hidden Ability)", "Lightningrod", Type.ELECTRIC, "Tiny Mouse Pokémon", 4.4, 190, 2,560, 
    		70, "1 Speed Point(s)", 31, Level 10),
    CLEFFA("Cleffa", 173 ", true, "25, 75, "Charm", "Magic Guard", "Friend Guard", Type.NORMAL, "Star Shape Pokémon", 6.6, 150, 2,560, 
    		140, "1 Sp. Defense Point(s)", 132, Level 10),
    IGGLYBUFF("Igglybuff", 174 ", true, "25, 75, "Charm", "Friend Guard (Hidden Ability)", "Friend Guard", Type.NORMAL, "Balloon Pokémon", 2.2, 170, 2,560, 
    		70, "1 HP Point(s)", 132, Level 10),
    TOGEPI("Togepi", 175 ", true, "87.5, 12.5, "Hustle", "Serene Grace", "Super Luck", Type.NORMAL, "Spike Ball Pokémon", 3.3, 190, 2,560, 
    		70, "1 Sp. Defense Point(s)", 105, Level 10),
    TOGETIC("Togetic", 176 ", true, "87.5, 12.5, "Hustle", "Serene Grace", "Super Luck", Type.NORMAL, "Happiness Pokémon", 7.1, 75, 2,560, 
    		70, "2 Sp. Defense Point(s)", 105, Level 10),
    NATU("Natu", 177 ", true, "50, 50, "Synchronize", "Early Bird", "Magic Bounce", Type.PSYCHIC, "Little Bird Pokémon", 4.4, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 156, Level 10),
    XATU("Xatu", 178 ", true, "50, 50, "Synchronize", "Early Bird", "Magic Bounce", Type.PSYCHIC, "Mystic Pokémon", 33.1, 75, 5,120, 
    		70, "1 Speed Point(s) 1 Sp. Attack Point(s)", 156, Level 25),
    MAREEP("Mareep", 179 ", true, "50, 50, "Static", "Plus (Hidden Ability)", "Plus", Type.ELECTRIC, "Wool Pokémon", 17.2, 235, 5,120, 
    		70, "1 Sp. Attack Point(s)", 57, Level 10),
    FLAAFFY("Flaaffy", 180 ", true, "50, 50, "Static", "Plus (Hidden Ability)", "Plus", Type.ELECTRIC, "Wool Pokémon", 29.3, 120, 5,120, 
    		70, "2 Sp. Attack Point(s)", 57, Level 15),
    AMPHAROS("Ampharos", 181 ", true, "50, 50, "Static", "Plus (Hidden Ability)", "Plus", Type.ELECTRIC, "Light Pokémon", 135.6, 45, 5,120, 
    		70, "3 Sp. Attack Point(s)", 57, Level 30),
    BELLOSSOM("Bellossom", 182 ", true, "50, 50, "Chlorophyll", "Healer (Hidden Ability)", "Healer", Type.GRASS, "Flower Pokémon", 12.8, 45, 5,120, 
    		70, "3 Sp. Defense Point(s)", 131, Level 21),
    MARILL("Marill", 183 ", true, "50, 50, "Fat", "Huge Power", "Sap Sipper", Type.WATER, "Aquamouse Pokémon", 18.7, 190, 2,560, 
    		70, "2 HP Point(s)", 157, Level 10),
    AZUMARILL("Azumarill", 184 ", true, "50, 50, "Fat", "Huge Power", "Sap Sipper", Type.WATER, "Aquarabbit Pokémon", 62.8, 75, 2,560, 
    		70, "3 HP Point(s)", 157, Level 18),
    SUDOWOODO("Sudowoodo", 185 ", true, "50, 50, "Sturdy", "Rock Head", "Rattled", Type.ROCK, "Imitation Pokémon", 83.8, 65, 5,120, 
    		70, "2 Defense Point(s)", 155, Level 10),
    POLITOED("Politoed", 186 ", true, "50, 50, "Absorb", "Damp", "Drizzle", Type.WATER, "Frog Pokémon", 74.7, 45, 5,120, 
    		70, "3 Sp. Defense Point(s)", 2, Level 25),
    HOPPIP("Hoppip", 187 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Infiltrator", Type.GRASS, "Cottonweed Pokémon", 1.1, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 151, Level 10),
    SKIPLOOM("Skiploom", 188 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Infiltrator", Type.GRASS, "Cottonweed Pokémon", 2.2, 120, 5,120, 
    		70, "2 Speed Point(s)", 151, Level 18),
    JUMPLUFF("Jumpluff", 189 ", true, "50, 50, "Chlorophyll", "Leaf Guard", "Infiltrator", Type.GRASS, "Cottonweed Pokémon", 6.6, 45, 5,120, 
    		70, "3 Speed Point(s)", 151, Level 27),
    AIPOM("Aipom", 190 ", true, "50, 50, "Away", "Pickup", "Skill Link", Type.NORMAL, "Long Tail Pokémon", 25.4, 45, 5,120, 
    		70, "1 Speed Point(s)", 92, Level 10),
    SUNKERN("Sunkern", 191 ", true, "50, 50, "Chlorophyll", "Solar Power", "Early Bird", Type.GRASS, "Seed Pokémon", 4.0, 235, 5,120, 
    		70, "1 Sp. Attack Point(s)", 48, Level 10),
    SUNFLORA("Sunflora", 192 ", true, "50, 50, "Chlorophyll", "Solar Power", "Early Bird", Type.GRASS, "Sun Pokémon", 18.7, 120, 5,120, 
    		70, "2 Sp. Attack Point(s)", 48, Level 10),
    YANMA("Yanma", 193 ", true, "50, 50, "Boost", "Compoundeyes", "Frisk", Type.BUG, "Clear Wing Pokémon", 83.8, 75, 5,120, 
    		70, "1 Speed Point(s)", 119, Level 10),
    WOOPER("Wooper", 194 ", true, "50, 50, "Damp", "Water Absorb", "Unaware", Type.WATER, "Water Fish Pokémon", 18.7, 255, 5,120, 
    		70, "1 HP Point(s)", 109, Level 10),
    QUAGSIRE("Quagsire", 195 ", true, "50, 50, "Damp", "Water Absorb", "Unaware", Type.WATER, "Water Fish Pokémon", 165.3, 90, 5,120, 
    		70, "2 HP Point(s)", 109, Level 20),
    ESPEON("Espeon", 196 ", true, "87.5, 12.5, "Synchronize", "Magic Bounce (Hidden Ability)", "Magic Bounce", Type.PSYCHIC, "Sun Pokémon", 58.4, 45, 8,960, 
    		70, "2 Sp. Attack Point(s)", 156, Level 10),
    UMBREON("Umbreon", 197 ", true, "87.5, 12.5, "Synchronize", "Inner Focus (Hidden Ability)", "Inner Focus", Type.DARK, "Moonlight Pokémon", 59.5, 45, 8,960, 
    		35, "2 Sp. Defense Point(s)", 39, Level 10),
    MURKROW("Murkrow", 198 ", true, "50, 50, "Insomnia", "Super Luck", "Prankster", Type.DARK, "Darkness Pokémon", 4.6, 30, 5,120, 
    		35, "1 Speed Point(s)", 158, Level 10),
    SLOWKING("Slowking", 199 ", true, "50, 50, "Oblivious", "Own Tempo", "Regenerator", Type.WATER, "Royal Pokémon", 175.3, 70, 5,120, 
    		70, "3 Sp. Defense Point(s)", 144, Level 10),
    MISDREAVUS("Misdreavus", 200 ", true, 50, 50, "Levitate", Type.GHOST, "Screech Pokémon", 2.2, 45, 6,400, 
    		35, "1 Sp. Defense Point(s)", 0, Level 10),
    UNOWN("Unown", 201 ", false, "Levitate", Type.PSYCHIC, "Symbol Pokémon", 11.0, 225, 10,240, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 0, Level 10),
    WOBBUFFET("Wobbuffet", 202 ", true, "50, 50, "Tag", "Telepathy (Hidden Ability)", "Telepathy", Type.PSYCHIC, "Patient Pokémon", 62.8, 45, 5,120, 
    		70, "2 HP Point(s)", 140, Level 15),
    GIRAFARIG("Girafarig", 203 ", true, "50, 50, "Focus", "Early Bird", "Sap Sipper", Type.NORMAL, "Long Neck Pokémon", 91.5, 60, 5,120, 
    		70, "2 Sp. Attack Point(s)", 157, Level 10),
    PINECO("Pineco", 204 ", true, "50, 50, "Sturdy", "Overcoat (Hidden Ability)", "Overcoat", Type.BUG, "Bagworm Pokémon", 15.9, 190, 5,120, 
    		70, "1 Defense Point(s)", 142, Level 10),
    FORRETRESS("Forretress", 205 ", true, "50, 50, "Sturdy", "Overcoat (Hidden Ability)", "Overcoat", Type.BUG, "Bagworm Pokémon", 277.3, 75, 5,120, 
    		70, "2 Defense Point(s)", 142, Level 31),
    DUNSPARCE("Dunsparce", 206 ", true, "50, 50, "Grace", "Run Away", "Rattled", Type.NORMAL, "Land Snake Pokémon", 30.9, 190, 5,120, 
    		70, "1 HP Point(s)", 155, Level 10),
    GLIGAR("Gligar", 207 ", true, "50, 50, "Cutter", "Sand Veil", "Immunity", Type.GROUND, "Flyscorpion Pokémon", 142.9, 60, 5,120, 
    		70, "1 Defense Point(s)", 17, Level 10),
    STEELIX("Steelix", 208 ", true, "50, 50, "Head", "Sturdy", "Sheer Force", Type.STEEL, "Iron Snake Pokémon", 881.8, 25, 6,400, 
    		70, "2 Defense Point(s)", 125, Level 10),
    SNUBBULL("Snubbull", 209 ", true, "25, 75, "Intimidate", "Run Away", "Rattled", Type.NORMAL, "Fairy Pokémon", 17.2, 190, 5,120, 
    		70, "1 Attack Point(s)", 155, Level 10),
    GRANBULL("Granbull", 210 ", true, "25, 75, "Intimidate", "Quick Feet", "Rattled", Type.NORMAL, "Fairy Pokémon", 107.4, 75, 5,120, 
    		70, "2 Attack Point(s)", 155, Level 23),
    QWILFISH("Qwilfish", 211 ", true, "50, 50, "Point", "Swift Swim", "Intimidate", Type.WATER, "Balloon Pokémon", 8.6, 45, 5,120, 
    		70, "1 Attack Point(s)", 22, Level 10),
    SCIZOR("Scizor", 212 ", true, "50, 50, "Swarm", "Technician", "Light Metal", Type.BUG, "Pincer Pokémon", 260.1, 25, 6,400, 
    		70, "2 Attack Point(s)", 135, Level 10),
    SHUCKLE("Shuckle", 213 ", true, "50, 50, "Sturdy", "Gluttony", "Contrary", Type.BUG, "Mold Pokémon", 45.2, 190, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 126, Level 10),
    HERACROSS("Heracross", 214 ", true, "50, 50, "Swarm", "Guts", "Moxie", Type.BUG, "Singlehorn Pokémon", 119.0, 45, 6,400, 
    		70, "2 Attack Point(s)", 153, Level 10),
    SNEASEL("Sneasel", 215 ", true, "50, 50, "Focus", "Keen Eye", "Pickpocket", Type.DARK, "Sharp Claw Pokémon", 61.7, 60, 5,120, 
    		35, "1 Speed Point(s)", 124, Level 10),
    TEDDIURSA("Teddiursa", 216 ", true, "50, 50, "Pickup", "Quick Feet", "Honey Gather", Type.NORMAL, "Little Bear Pokémon", 19.4, 120, 5,120, 
    		70, "1 Attack Point(s)", 118, Level 10),
    URSARING("Ursaring", 217 ", true, "50, 50, "Guts", "Quick Feet", "Unnerve", Type.NORMAL, "Hibernator Pokémon", 277.3, 60, 5,120, 
    		70, "2 Attack Point(s)", 127, Level 30),
    SLUGMA("Slugma", 218 ", true, "50, 50, "Armor", "Flame Body", "Weak Armor", Type.FIRE, "Lava Pokémon", 77.2, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 133, Level 10),
    MAGCARGO("Magcargo", 219 ", true, "50, 50, "Armor", "Flame Body", "Weak Armor", Type.FIRE, "Lava Pokémon", 121.3, 75, 5,120, 
    		70, "2 Defense Point(s)", 133, Level 38),
    SWINUB("Swinub", 220 ", true, "50, 50, "Oblivious", "Snow Cloak", "Thick Fat", Type.ICE, "Pig Pokémon", 14.3, 225, 5,120, 
    		70, "1 Attack Point(s)", 47, Level 10),
    PILOSWINE("Piloswine", 221 ", true, "50, 50, "Oblivious", "Snow Cloak", "Thick Fat", Type.ICE, "Swine Pokémon", 123.0, 75, 5,120, 
    		70, "1 HP Point(s) 1 Attack Point(s)", 47, Level 33),
    CORSOLA("Corsola", 222 ", true, "25, 75, "Hustle", "Natural Cure", "Regenerator", Type.WATER, "Coral Pokémon", 11.0, 60, 5,120, 
    		70, "1 Defense Point(s) 1 Sp. Defense Point(s)", 144, Level 10),
    REMORAID("Remoraid", 223 ", true, "50, 50, "Hustle", "Sniper", "Moody", Type.WATER, "Jet Pokémon", 26.5, 190, 5,120, 
    		70, "1 Sp. Attack Point(s)", 141, Level 10),
    OCTILLERY("Octillery", 224 ", true, "50, 50, "Cups", "Sniper", "Moody", Type.WATER, "Jet Pokémon", 62.8, 75, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 141, Level 25),
    DELIBIRD("Delibird", 225 ", true, "50, 50, "Spirit", "Hustle", "Insomnia", Type.ICE, "Delivery Pokémon", 35.3, 45, 5,120, 
    		70, "1 Speed Point(s)", 15, Level 10),
    MANTINE("Mantine", 226 ", true, "50, 50, "Swim", "Water Absorb", "Water Veil", Type.WATER, "Kite Pokémon", 485.0, 25, 6,400, 
    		70, "2 Sp. Defense Point(s)", 41, Level 10),
    SKARMORY("Skarmory", 227 ", true, "50, 50, "Eye", "Sturdy", "Weak Armor", Type.STEEL, "Armor Bird Pokémon", 111.3, 25, 6,400, 
    		70, "2 Defense Point(s)", 133, Level 10),
    HOUNDOUR("Houndour", 228 ", true, "50, 50, "Bird", "Flash Fire", "Unnerve", Type.DARK, "Dark Pokémon", 23.8, 120, 5,120, 
    		35, "1 Sp. Attack Point(s)", 127, Level 10),
    HOUNDOOM("Houndoom", 229 ", true, "50, 50, "Bird", "Flash Fire", "Unnerve", Type.DARK, "Dark Pokémon", 77.2, 45, 5,120, 
    		35, "2 Sp. Attack Point(s)", 127, Level 24),
    KINGDRA("Kingdra", 230 ", true, "50, 50, "Swim", "Sniper", "Damp", Type.WATER, "Dragon Pokémon", 335.1, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 6, Level 32),
    PHANPY("Phanpy", 231 ", true, "50, 50, "Pickup", "Sand Veil (Hidden Ability)", "Sand Veil", Type.GROUND, "Long Nose Pokémon", 73.9, 120, 5,120, 
    		70, "1 HP Point(s)", 8, Level 10),
    DONPHAN("Donphan", 232 ", true, "50, 50, "Sturdy", "Sand Veil (Hidden Ability)", "Sand Veil", Type.GROUND, "Armor Pokémon", 264.6, 60, 5,120, 
    		70, "1 Attack Point(s) 1 Defense Point(s)", 8, Level 25),
    PORYGON2("Porygon2", 233 ", false, "Trace", "Download", "Analytic", Type.NORMAL, "Virtual Pokémon", 71.6, 45, 5,120, 
    		70, "2 Sp. Attack Point(s)", 148, Level 10),
    STANTLER("Stantler", 234 ", true, "50, 50, "Intimidate", "Frisk", "Sap Sipper", Type.NORMAL, "Big Horn Pokémon", 157.0, 45, 5,120, 
    		70, "1 Attack Point(s)", 157, Level 10),
    SMEARGLE("Smeargle", 235 ", true, "50, 50, "Tempo", "Technician", "Moody", Type.NORMAL, "Painter Pokémon", 127.9, 45, 5,120, 
    		70, "1 Speed Point(s)", 141, Level 10),
    TYROGUE("Tyrogue", 236 ", true, "100, 0, "Guts", "Steadfast", "Vital Spirit", Type.FIGHTING, "Scuffle Pokémon", 46.3, 75, 6,400, 
    		70, "1 Attack Point(s)", 72, Level 10),
    HITMONTOP("Hitmontop", 237 ", true, "100, 0, "Intimidate", "Technician", "Steadfast", Type.FIGHTING, "Handstand Pokémon", 105.8, 45, 6,400, 
    		70, "2 Sp. Defense Point(s)", 80, Level 20),
    SMOOCHUM("Smoochum", 238 ", true, "0, 100, "Oblivious", "Forewarn", "Hydration", Type.ICE, "Kiss Pokémon", 13.2, 45, 6,400, 
    		70, "1 Sp. Attack Point(s)", 93, Level 10),
    ELEKID("Elekid", 239 ", true, "75, 25, "Static", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.ELECTRIC, "Electric Pokémon", 51.8, 45, 6,400, 
    		70, "1 Speed Point(s)", 72, Level 10),
    MAGBY("Magby", 240 ", true, "75, 25, "Body", "Vital Spirit (Hidden Ability)", "Vital Spirit", Type.FIRE, "Live Coal Pokémon", 47.2, 45, 6,400, 
    		70, "1 Speed Point(s)", 72, Level 10),
    MILTANK("Miltank", 241 ", true, "0, 100, "Fat", "Scrappy", "Sap Sipper", Type.NORMAL, "Milk Cow Pokémon", 166.4, 45, 5,120, 
    		70, "2 Defense Point(s)", 157, Level 10),
    BLISSEY("Blissey", 242 ", true, "0, 100, "Cure", "Serene Grace", "Healer", Type.NORMAL, "Happiness Pokémon", 103.2, 30, 10,240, 
    		140, "3 HP Point(s)", 131, Level 10),
    RAIKOU("Raikou", 243 ", false, "Pressure", "Volt Absorb (Hidden Ability)", "Volt Absorb", Type.ELECTRIC, "Thunder Pokémon", 392.4, 3, 20,480, 
    		35, "2 Speed Point(s) 1 Sp. Attack Point(s)", 10, Level 40),
    ENTEI("Entei", 244 ", false, "Pressure", "Flash Fire (Hidden Ability)", "Flash Fire", Type.FIRE, "Volcano Pokémon", 436.5, 3, 20,480, 
    		35, "1 HP Point(s) 2 Attack Point(s)", 18, Level 40),
    SUICUNE("Suicune", 245 ", false, "Pressure", "Water Absorb (Hidden Ability)", "Water Absorb", Type.WATER, "Aurora Pokémon", 412.3, 3, 20,480, 
    		35, "1 Defense Point(s) 2 Sp. Defense Point(s)", 11, Level 40),
    LARVITAR("Larvitar", 246 ", true, "50, 50, "Guts", "Sand Veil (Hidden Ability)", "Sand Veil", Type.ROCK, "Rock Skin Pokémon", 158.7, 45, 10,240, 
    		35, "1 Attack Point(s)", 8, Level 10),
    PUPITAR("Pupitar", 247 ", true, 50, 50, "Skin", Type.ROCK, "Hard Shell Pokémon", 335.1, 45, 10,240, 
    		35, "2 Attack Point(s)", 61, Level 30),
    TYRANITAR("Tyranitar", 248 ", true, "50, 50, "Stream", "Unnerve (Hidden Ability)", "Unnerve", Type.ROCK, "Armor Pokémon", 445.3, 45, 10,240, 
    		35, "3 Attack Point(s)", 127, Level 55),
    LUGIA("Lugia", 249 ", false, "Pressure", "Multiscale (Hidden Ability)", "Multiscale", Type.PSYCHIC, "Diving Pokémon", 476.2, 3, 30,720, 
    		0, "3 Sp. Defense Point(s)", 136, Level 45),
    HO-OH("Ho-Oh", 250 ", false, "Pressure", "Regenerator (Hidden Ability)", "Regenerator", Type.FIRE, "Rainbow Pokémon", 438.7, 3, 30,720, 
    		0, "3 Sp. Defense Point(s)", 144, Level 45),
    CELEBI("Celebi", 251 ", false, "Cure", Type.PSYCHIC, "Time Travel Pokémon", 11.0, 45, 30,720, 
    		100, "3 HP Point(s)", 0, Level 10),
    TREECKO("Treecko", 252 ", true, "87.5, 12.5, "Overgrow", "Unburden (Hidden Ability)", "Unburden", Type.GRASS, "Wood Gecko Pokémon", 11.0, 45, 5,120, 
    		70, "1 Speed Point(s)", 84, Level 10),
    GROVYLE("Grovyle", 253 ", true, "87.5, 12.5, "Overgrow", "Unburden (Hidden Ability)", "Unburden", Type.GRASS, "Wood Gecko Pokémon", 47.6, 45, 5,120, 
    		70, "2 Speed Point(s)", 84, Level 16),
    SCEPTILE("Sceptile", 254 ", true, "87.5, 12.5, "Overgrow", "Unburden (Hidden Ability)", "Unburden", Type.GRASS, "Forest Pokémon", 115.1, 45, 5,120, 
    		70, "3 Speed Point(s)", 84, Level 36),
    TORCHIC("Torchic", 255 ", true, "87.5, 12.5, "Blaze", "Speed Boost (Hidden Ability)", "Speed Boost", Type.FIRE, "Chick Pokémon", 5.5, 45, 5,120, 
    		70, "1 Sp. Attack Point(s)", 3, Level 10),
    COMBUSKEN("Combusken", 256 ", true, "87.5, 12.5, "Blaze", "Speed Boost (Hidden Ability)", "Speed Boost", Type.FIRE, "Young Fowl Pokémon", 43.0, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 3, Level 16),
    BLAZIKEN("Blaziken", 257 ", true, "87.5, 12.5, "Blaze", "Speed Boost (Hidden Ability)", "Speed Boost", Type.FIRE, "Blaze Pokémon", 114.6, 45, 5,120, 
    		70, "3 Attack Point(s)", 3, Level 36),
    MUDKIP("Mudkip", 258 ", true, "87.5, 12.5, "Torrent", "Damp (Hidden Ability)", "Damp", Type.WATER, "Mud Fish Pokémon", 16.8, 45, 5,120, 
    		70, "1 Attack Point(s)", 6, Level 10),
    MARSHTOMP("Marshtomp", 259 ", true, "87.5, 12.5, "Torrent", "Damp (Hidden Ability)", "Damp", Type.WATER, "Mud Fish Pokémon", 61.7, 45, 5,120, 
    		70, "2 Attack Point(s)", 6, Level 16),
    SWAMPERT("Swampert", 260 ", true, "87.5, 12.5, "Torrent", "Damp (Hidden Ability)", "Damp", Type.WATER, "Mud Fish Pokémon", 180.6, 45, 5,120, 
    		70, "3 Attack Point(s)", 6, Level 36),
    POOCHYENA("Poochyena", 261 ", true, "50, 50, "Away", "Quick Feet", "Rattled", Type.DARK, "Bite Pokémon", 30.0, 255, 3,840, 
    		70, "1 Attack Point(s)", 155, Level 10),
    MIGHTYENA("Mightyena", 262 ", true, "50, 50, "Intimidate", "Quick Feet", "Moxie", Type.DARK, "Bite Pokémon", 81.6, 127, 3,840, 
    		70, "2 Attack Point(s)", 153, Level 18),
    ZIGZAGOON("Zigzagoon", 263 ", true, "50, 50, "Pickup", "Gluttony", "Quick Feet", Type.NORMAL, "Tinyracoon Pokémon", 38.6, 255, 3,840, 
    		70, "1 Speed Point(s)", 95, Level 10),
    LINOONE("Linoone", 264 ", true, "50, 50, "Pickup", "Gluttony", "Quick Feet", Type.NORMAL, "Rush Pokémon", 71.6, 90, 3,840, 
    		70, "2 Speed Point(s)", 95, Level 20),
    WURMPLE("Wurmple", 265 ", true, "50, 50, "Dust", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Worm Pokémon", 7.9, 255, 3,840, 
    		70, "1 HP Point(s)", 50, Level 10),
    SILCOON("Silcoon", 266 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 22.0, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    BEAUTIFLY("Beautifly", 267 ", true, "50, 50, "Swarm", "Rivalry (Hidden Ability)", "Rivalry", Type.BUG, "Butterfly Pokémon", 62.6, 45, 3,840, 
    		70, "3 Sp. Attack Point(s)", 79, Level 10),
    CASCOON("Cascoon", 268 ", true, 50, 50, "Skin", Type.BUG, "Cocoon Pokémon", 25.4, 120, 3,840, 
    		70, "2 Defense Point(s)", 61, Level 10),
    DUSTOX("Dustox", 269 ", true, "50, 50, "Dust", "Compoundeyes (Hidden Ability)", "Compoundeyes", Type.BUG, "Poison Moth Pokémon", 69.7, 45, 3,840, 
    		70, "3 Sp. Defense Point(s)", 14, Level 10),
    LOTAD("Lotad", 270 ", true, "50, 50, "Swim", "Rain Dish", "Own Tempo", Type.WATER, "Water Weed Pokémon", 5.7, 255, 3,840, 
    		70, "1 Sp. Defense Point(s)", 20, Level 10),
    LOMBRE("Lombre", 271 ", true, "50, 50, "Swim", "Rain Dish", "Own Tempo", Type.WATER, "Jolly Pokémon", 71.6, 120, 3,840, 
    		70, "2 Sp. Defense Point(s)", 20, Level 14),
    LUDICOLO("Ludicolo", 272 ", true, "50, 50, "Swim", "Rain Dish", "Own Tempo", Type.WATER, "Carefree Pokémon", 121.3, 45, 3,840, 
    		70, "3 Sp. Defense Point(s)", 20, Level 14),
    SEEDOT("Seedot", 273 ", true, "50, 50, "Chlorophyll", "Early Bird", "Pickpocket", Type.GRASS, "Acorn Pokémon", 8.8, 255, 3,840, 
    		70, "1 Defense Point(s)", 124, Level 10),
    NUZLEAF("Nuzleaf", 274 ", true, "50, 50, "Chlorophyll", "Early Bird", "Pickpocket", Type.GRASS, "Wily Pokémon", 61.7, 120, 3,840, 
    		70, "2 Attack Point(s)", 124, Level 14),
    SHIFTRY("Shiftry", 275 ", true, "50, 50, "Chlorophyll", "Early Bird", "Pickpocket", Type.GRASS, "Wickid Pokémon", 131.4, 45, 3,840, 
    		70, "3 Attack Point(s)", 124, Level 14),
    TAILLOW("Taillow", 276 ", true, "50, 50, "Guts", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "TinySwallow Pokémon", 5.1, 200, 3,840, 
    		70, "1 Speed Point(s)", 113, Level 10),
    SWELLOW("Swellow", 277 ", true, "50, 50, "Guts", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "Swallow Pokémon", 43.7, 45, 3,840, 
    		70, "2 Speed Point(s)", 113, Level 22),
    WINGULL("Wingull", 278 ", true, "50, 50, "Eye", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Seagull Pokémon", 20.9, 190, 5,120, 
    		70, "1 Speed Point(s)", 44, Level 10),
    PELIPPER("Pelipper", 279 ", true, "50, 50, "Eye", "Rain Dish (Hidden Ability)", "Rain Dish", Type.WATER, "Water Bird Pokémon", 61.7, 45, 5,120, 
    		70, "2 Defense Point(s)", 44, Level 25),
    RALTS("Ralts", 280 ", true, "50, 50, "Synchronize", "Trace", "Telepathy", Type.PSYCHIC, "Feeling Pokémon", 14.6, 235, 5,120, 
    		35, "1 Sp. Attack Point(s)", 140, Level 10),
    KIRLIA("Kirlia", 281 ", true, "50, 50, "Synchronize", "Trace", "Telepathy", Type.PSYCHIC, "Emotion Pokémon", 44.5, 120, 5,120, 
    		35, "2 Sp. Attack Point(s)", 140, Level 20),
    GARDEVOIR("Gardevoir", 282 ", true, "50, 50, "Synchronize", "Trace", "Telepathy", Type.PSYCHIC, "Embrace Pokémon", 106.7, 45, 5,120, 
    		35, "3 Sp. Attack Point(s)", 140, Level 30),
    SURSKIT("Surskit", 283 ", true, "50, 50, "Swim", "Rain Dish (Hidden Ability)", "Rain Dish", Type.BUG, "Pond Skater Pokémon", 3.7, 200, 3,840, 
    		70, "1 Speed Point(s)", 44, Level 10),
    MASQUERAIN("Masquerain", 284 ", true, "50, 50, "Intimidate", "Unnerve (Hidden Ability)", "Unnerve", Type.BUG, "Eyeball Pokémon", 7.9, 75, 3,840, 
    		70, "1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 127, Level 22),
    SHROOMISH("Shroomish", 285 ", true, "50, 50, "Spore", "Poison Heal", "Quick Feet", Type.GRASS, "Mushroom Pokémon", 9.9, 255, 3,840, 
    		70, "1 HP Point(s)", 95, Level 10),
    BRELOOM("Breloom", 286 ", true, "50, 50, "Spore", "Poison Heal", "Technician", Type.GRASS, "Mushroom Pokémon", 86.4, 90, 3,840, 
    		70, "2 Attack Point(s)", 101, Level 23),
    SLAKOTH("Slakoth", 287 ", true, 50, 50, "Truant", Type.NORMAL, "Slacker Pokémon", 52.9, 255, 3,840, 
    		70, "1 HP Point(s)", 0, Level 10),
    VIGOROTH("Vigoroth", 288 ", true, 50, 50, "Spirit", Type.NORMAL, "Wild Monkey Pokémon", 102.5, 120, 3,840, 
    		70, "2 Speed Point(s)", 0, Level 18),
    SLAKING("Slaking", 289 ", true, 50, 50, "Truant", Type.NORMAL, "Lazy Pokémon", 287.7, 45, 3,840, 
    		70, "3 HP Point(s)", 0, Level 36),
    NINCADA("Nincada", 290 ", true, "50, 50, "Compoundeyes", "Run Away (Hidden Ability)", "Run Away", Type.BUG, "Trainee Pokémon", 12.1, 255, 3,840, 
    		70, "1 Defense Point(s)", 50, Level 10),
    NINJASK("Ninjask", 291 ", true, "50, 50, "Boost", "Infiltrator (Hidden Ability)", "Infiltrator", Type.BUG, "Ninja Pokémon", 26.5, 120, 3,840, 
    		70, "2 Speed Point(s)", 151, Level 20),
    SHEDINJA("Shedinja", 292 ", false, "Guard", Type.BUG, "Shed Pokémon", 2.6, 45, 3,840, 
    		70, "2 HP Point(s)", 25, Level 20),
    WHISMUR("Whismur", 293 ", true, "50, 50, "Soundproof", "Rattled (Hidden Ability)", "Rattled", Type.NORMAL, "Whisper Pokémon", 35.9, 190, 5,120, 
    		70, "1 HP Point(s)", 155, Level 10),
    LOUDRED("Loudred", 294 ", true, "50, 50, "Soundproof", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "Big Voice Pokémon", 89.3, 120, 5,120, 
    		70, "2 HP Point(s)", 113, Level 20),
    EXPLOUD("Exploud", 295 ", true, "50, 50, "Soundproof", "Scrappy (Hidden Ability)", "Scrappy", Type.NORMAL, "Loud Noise Pokémon", 185.2, 45, 5,120, 
    		70, "3 HP Point(s)", 113, Level 40),
    MAKUHITA("Makuhita", 296 ", true, "75, 25, "Fat", "Guts", "Sheer Force", Type.FIGHTING, "Guts Pokémon", 190.5, 180, 5,120, 
    		70, "1 HP Point(s)", 125, Level 10),
    HARIYAMA("Hariyama", 297 ", true, "75, 25, "Fat", "Guts", "Sheer Force", Type.FIGHTING, "Arm Thrust Pokémon", 559.5, 200, 5,120, 
    		70, "2 HP Point(s)", 125, Level 24),
    AZURILL("Azurill", 298 ", true, "25, 75, "Fat", "Huge Power", "Sap Sipper", Type.NORMAL, "Polka Dot Pokémon", 4.4, 150, 2,560, 
    		70, "1 HP Point(s)", 157, Level 10),
    NOSEPASS("Nosepass", 299 ", true, "50, 50, "Sturdy", "Magnet Pull", "Sand Force", Type.ROCK, "Compass Pokémon", 213.8, 255, 5,120, 
    		70, "1 Defense Point(s)", 159, Level 10),
    SKITTY("Skitty", 300 ", true, "25, 75, "Charm", "Normalize", "Wonder Skin", Type.NORMAL, "Kitten Pokémon", 24.3, 255, 3,840, 
    		70, "1 Speed Point(s)", 147, Level 10),
    DELCATTY("Delcatty", 301 ", true, "25, 75, "Charm", "Normalize", "Wonder Skin", Type.NORMAL, "Prim Pokémon", 71.9, 60, 3,840, 
    		70, "1 HP Point(s) 1 Speed Point(s)", 147, Level 10),
    SABLEYE("Sableye", 302 ", true, "50, 50, "Eye", "Stall", "Prankster", Type.DARK, "Darkness Pokémon", 24.3, 45, 6,400, 
    		35, "1 Attack Point(s) 1 Defense Point(s)", 158, Level 10),
    MAWILE("Mawile", 303 ", true, "50, 50, "Cutter", "Intimidate", "Sheer Force", Type.STEEL, "Deceiver Pokémon", 25.4, 45, 5,120, 
    		70, "1 Attack Point(s) 1 Defense Point(s)", 125, Level 10),
    ARON("Aron", 304 ", true, "50, 50, "Sturdy", "Rock Head", "Heavy Metal", Type.STEEL, "Iron Armor Pokémon", 132.3, 180, 8,960, 
    		35, "1 Defense Point(s)", 134, Level 10),
    LAIRON("Lairon", 305 ", true, "50, 50, "Sturdy", "Rock Head", "Heavy Metal", Type.STEEL, "Iron Armor Pokémon", 264.6, 90, 8,960, 
    		35, "2 Defense Point(s)", 134, Level 32),
    AGGRON("Aggron", 306 ", true, "50, 50, "Sturdy", "Rock Head", "Heavy Metal", Type.STEEL, "Iron Armor Pokémon", 793.7, 45, 8,960, 
    		35, "3 Defense Point(s)", 134, Level 42),
    MEDITITE("Meditite", 307 ", true, "50, 50, "Power", "Telepathy (Hidden Ability)", "Telepathy", Type.FIGHTING, "Meditate Pokémon", 24.7, 180, 5,120, 
    		70, "1 Speed Point(s)", 140, Level 10),
    MEDICHAM("Medicham", 308 ", true, "50, 50, "Power", "Telepathy (Hidden Ability)", "Telepathy", Type.FIGHTING, "Meditate Pokémon", 69.4, 90, 5,120, 
    		70, "2 Speed Point(s)", 140, Level 37),
    ELECTRIKE("Electrike", 309 ", true, "50, 50, "Static", "Lightningrod", "Minus", Type.ELECTRIC, "Lightning Pokémon", 33.5, 120, 5,120, 
    		70, "1 Speed Point(s)", 58, Level 10),
    MANECTRIC("Manectric", 310 ", true, "50, 50, "Static", "Lightningrod", "Minus", Type.ELECTRIC, "Discharge Pokémon", 88.6, 45, 5,120, 
    		70, "2 Speed Point(s)", 58, Level 26),
    PLUSLE("Plusle", 311 ", true, 50, 50, "Plus", Type.ELECTRIC, "Cheering Pokémon", 9.3, 200, 5,120, 
    		70, "1 Speed Point(s)", 0, Level 10),
    MINUN("Minun", 312 ", true, 50, 50, "Minus", Type.ELECTRIC, "Cheering Pokémon", 9.3, 200, 5,120, 
    		70, "1 Speed Point(s)", 0, Level 10),
    VOLBEAT("Volbeat", 313 ", true, "100, 0, "Illuminate", "Swarm", "Prankster", Type.BUG, "Firefly Pokémon", 39.0, 150, 3,840, 
    		70, "1 Speed Point(s)", 158, Level 10),
    ILLUMISE("Illumise", 314 ", true, "0, 100, "Oblivious", "Tinted Lens", "Prankster", Type.BUG, "Firefly Pokémon", 39.0, 150, 3,840, 
    		70, "1 Speed Point(s)", 158, Level 10),
    ROSELIA("Roselia", 315 ", true, "50, 50, "Cure", "Poison Point", "Leaf Guard", Type.GRASS, "Thorn Pokémon", 4.4, 150, 5,120, 
    		70, "2 Sp. Attack Point(s)", 102, Level 10),
    GULPIN("Gulpin", 316 ", true, "50, 50, "Ooze", "Sticky Hold", "Gluttony", Type.POISON, "Stomach Pokémon", 22.7, 225, 5,120, 
    		70, "1 HP Point(s)", 82, Level 10),
    SWALOT("Swalot", 317 ", true, "50, 50, "Ooze", "Sticky Hold", "Gluttony", Type.POISON, "Poison Bag Pokémon", 176.4, 75, 5,120, 
    		70, "2 HP Point(s)", 82, Level 26),
    CARVANHA("Carvanha", 318 ", true, "50, 50, "Skin", "Speed Boost (Hidden Ability)", "Speed Boost", Type.WATER, "Savage Pokémon", 45.9, 225, 5,120, 
    		35, "1 Attack Point(s)", 3, Level 10),
    SHARPEDO("Sharpedo", 319 ", true, "50, 50, "Skin", "Speed Boost (Hidden Ability)", "Speed Boost", Type.WATER, "Brutal Pokémon", 195.8, 60, 5,120, 
    		35, "2 Attack Point(s)", 3, Level 30),
    WAILMER("Wailmer", 320 ", true, "50, 50, "Veil", "Oblivious", "Pressure", Type.WATER, "Ball Whale Pokémon", 286.6, 125, 10,240, 
    		70, "1 HP Point(s)", 46, Level 10),
    WAILORD("Wailord", 321 ", true, "50, 50, "Veil", "Oblivious", "Pressure", Type.WATER, "Float Whale Pokémon", 877.4, 60, 10,240, 
    		70, "2 HP Point(s)", 46, Level 40),
    NUMEL("Numel", 322 ", true, "50, 50, "Oblivious", "Simple", "Own Tempo", Type.FIRE, "Numb Pokémon", 52.9, 255, 5,120, 
    		70, "1 Sp. Attack Point(s)", 20, Level 10),
    CAMERUPT("Camerupt", 323 ", true, "50, 50, "Armor", "Solid Rock", "Anger Point", Type.FIRE, "Eruption Pokémon", 485.0, 150, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 83, Level 33),
    TORKOAL("Torkoal", 324 ", true, "50, 50, "Smoke", "Shell Armor (Hidden Ability)", "Shell Armor", Type.FIRE, "Coal Pokémon", 177.2, 90, 5,120, 
    		70, "2 Defense Point(s)", 75, Level 10),
    SPOINK("Spoink", 325 ", true, "50, 50, "Fat", "Own Tempo", "Gluttony", Type.PSYCHIC, "Bounce Pokémon", 67.5, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 82, Level 10),
    GRUMPIG("Grumpig", 326 ", true, "50, 50, "Fat", "Own Tempo", "Gluttony", Type.PSYCHIC, "Manipulate Pokémon", 157.6, 60, 5,120, 
    		70, "2 Sp. Defense Point(s)", 82, Level 32),
    SPINDA("Spinda", 327 ", true, "50, 50, "Tempo", "Tangled Feet", "Contrary", Type.NORMAL, "Spot Panda Pokémon", 11.0, 255, 3,840, 
    		70, "1 Sp. Attack Point(s)", 126, Level 10),
    TRAPINCH("Trapinch", 328 ", true, "50, 50, "Cutter", "Arena Trap", "Sheer Force", Type.GROUND, "Ant Pit Pokémon", 33.1, 255, 5,120, 
    		70, "1 Attack Point(s)", 125, Level 10),
    VIBRAVA("Vibrava", 329 ", true, 50, 50, "Levitate", Type.GROUND, "Vibration Pokémon", 33.7, 120, 5,120, 
    		70, "1 Attack Point(s) 1 Speed Point(s)", 26, Level 35),
    FLYGON("Flygon", 330 ", true, 50, 50, "Levitate", Type.GROUND, "Mystic Pokémon", 180.8, 45, 5,120, 
    		70, "1 Attack Point(s) 2 Speed Point(s)", 26, Level 45),
    CACNEA("Cacnea", 331 ", true, "50, 50, "Veil", "Water Absorb (Hidden Ability)", "Water Absorb", Type.GRASS, "Cactus Pokémon", 113.1, 190, 5,120, 
    		35, "1 Sp. Attack Point(s)", 11, Level 10),
    CACTURNE("Cacturne", 332 ", true, "50, 50, "Veil", "Water Absorb (Hidden Ability)", "Water Absorb", Type.GRASS, "Scarecrow Pokémon", 170.6, 60, 5,120, 
    		35, "1 Attack Point(s) 1 Sp. Attack Point(s)", 11, Level 32),
    SWABLU("Swablu", 333 ", true, "50, 50, "Cure", "Cloud Nine (Hidden Ability)", "Cloud Nine", Type.NORMAL, "Cotton Bird Pokémon", 2.6, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 13, Level 10),
    ALTARIA("Altaria", 334 ", true, "50, 50, "Cure", "Cloud Nine (Hidden Ability)", "Cloud Nine", Type.DRAGON, "Humming Pokémon", 45.4, 45, 5,120, 
    		70, "2 Sp. Defense Point(s)", 13, Level 35),
    ZANGOOSE("Zangoose", 335 ", true, "50, 50, "Immunity", "Toxic Boost (Hidden Ability)", "Toxic Boost", Type.NORMAL, "Cat Ferret Pokémon", 88.8, 90, 5,120, 
    		70, "2 Attack Point(s)", 137, Level 10),
    SEVIPER("Seviper", 336 ", true, "50, 50, "Skin", "Infiltrator (Hidden Ability)", "Infiltrator", Type.POISON, "Fang Snake Pokémon", 115.7, 90, 5,120, 
    		70, "1 Attack Point(s) 1 Sp. Attack Point(s)", 151, Level 10),
    LUNATONE("Lunatone", 337 ", false, "Levitate", Type.ROCK, "Meteorite Pokémon", 370.4, 45, 6,400, 
    		70, "2 Sp. Attack Point(s)", 0, Level 10),
    SOLROCK("Solrock", 338 ", false, "Levitate", Type.ROCK, "Meteorite Pokémon", 339.5, 45, 6,400, 
    		70, "2 Attack Point(s)", 0, Level 10),
    BARBOACH("Barboach", 339 ", true, "50, 50, "Oblivious", "Anticipation", "Hydration", Type.WATER, "Whiskers Pokémon", 4.2, 190, 5,120, 
    		70, "1 HP Point(s)", 93, Level 10),
    WHISCASH("Whiscash", 340 ", true, "50, 50, "Oblivious", "Anticipation", "Hydration", Type.WATER, "Whiskers Pokémon", 52.0, 75, 5,120, 
    		70, "2 HP Point(s)", 93, Level 30),
    CORPHISH("Corphish", 341 ", true, "50, 50, "Cutter", "Shell Armor", "Adaptability", Type.WATER, "Ruffian Pokémon", 25.4, 205, 3,840, 
    		70, "1 Attack Point(s)", 91, Level 10),
    CRAWDAUNT("Crawdaunt", 342 ", true, "50, 50, "Cutter", "Shell Armor", "Adaptability", Type.WATER, "Rogue Pokémon", 72.3, 155, 3,840, 
    		70, "2 Attack Point(s)", 91, Level 30),
    BALTOY("Baltoy", 343 ", false, "Levitate", Type.GROUND, "Clay Doll Pokémon", 47.4, 255, 5,120, 
    		70, "1 Sp. Defense Point(s)", 0, Level 10),
    CLAYDOL("Claydol", 344 ", false, "Levitate", Type.GROUND, "Clay Doll Pokémon", 238.1, 90, 5,120, 
    		70, "2 Sp. Defense Point(s)", 0, Level 36),
    LILEEP("Lileep", 345 ", true, "87.5, 12.5, "Cups", "Storm Drain (Hidden Ability)", "Storm Drain", Type.ROCK, "Sea Lily Pokémon", 52.5, 45, 7,680, 
    		70, "1 Sp. Defense Point(s)", 114, Level 10),
    CRADILY("Cradily", 346 ", true, "87.5, 12.5, "Cups", "Storm Drain (Hidden Ability)", "Storm Drain", Type.ROCK, "Barnacle Pokémon", 133.2, 45, 7,680, 
    		70, "2 Sp. Defense Point(s)", 114, Level 40),
    ANORITH("Anorith", 347 ", true, "87.5, 12.5, "Armor", "Swift Swim (Hidden Ability)", "Swift Swim", Type.ROCK, "Old Shrimp Pokémon", 27.6, 45, 7,680, 
    		70, "1 Attack Point(s)", 33, Level 10),
    ARMALDO("Armaldo", 348 ", true, "87.5, 12.5, "Armor", "Swift Swim (Hidden Ability)", "Swift Swim", Type.ROCK, "Plate Pokémon", 150.4, 45, 7,680, 
    		70, "2 Attack Point(s)", 33, Level 40),
    FEEBAS("Feebas", 349 ", true, "50, 50, "Swim", "Adaptability (Hidden Ability)", "Adaptability", Type.WATER, "Fish Pokémon", 16.3, 255, 5,120, 
    		70, "1 Speed Point(s)", 91, Level 10),
    MILOTIC("Milotic", 350 ", true, "50, 50, "Scale", "Cute Charm (Hidden Ability)", "Cute Charm", Type.WATER, "Tender Pokémon", 357.1, 60, 5,120, 
    		70, "2 Sp. Defense Point(s)", 56, Level 10),
    CASTFORM("Castform", 351 ", true, 50, 50, "Forecast", Type.NORMAL, "Weather Pokémon", 1.8, 45, 6,400, 
    		70, "1 HP Point(s)", 0, Level 10),
    KECLEON("Kecleon", 352 ", true, 50, 50, "Change", Type.NORMAL, "Color Swap Pokémon", 48.5, 200, 5,120, 
    		70, "1 Sp. Defense Point(s)", 0, Level 10),
    SHUPPET("Shuppet", 353 ", true, "50, 50, "Insomnia", "Frisk", "Cursed Body", Type.GHOST, "Puppet Pokémon", 5.1, 225, 6,400, 
    		35, "1 Attack Point(s)", 130, Level 10),
    BANETTE("Banette", 354 ", true, "50, 50, "Insomnia", "Frisk", "Cursed Body", Type.GHOST, "Marionette Pokémon", 27.6, 45, 6,400, 
    		35, "2 Attack Point(s)", 130, Level 37),
    DUSKULL("Duskull", 355 ", true, 50, 50, "Levitate", Type.GHOST, "Requiem Pokémon", 33.1, 190, 6,400, 
    		35, "1 Sp. Defense Point(s)", 0, Level 10),
    DUSCLOPS("Dusclops", 356 ", true, 50, 50, "Pressure", Type.GHOST, "Beckon Pokémon", 67.5, 90, 6,400, 
    		35, "1 Defense Point(s) 1 Sp. Defense Point(s)", 0, Level 37),
    TROPIUS("Tropius", 357 ", true, "50, 50, "Chlorophyll", "Solar Power", "Harvest", Type.GRASS, "Fruit Pokémon", 220.5, 200, 6,400, 
    		70, "2 HP Point(s)", 139, Level 10),
    CHIMECHO("Chimecho", 358 ", true, 50, 50, "Levitate", Type.PSYCHIC, "Wind Chime Pokémon", 2.2, 45, 6,400, 
    		70, "1 Sp. Attack Point(s) 1 Sp. Defense Point(s)", 0, Level 10),
    ABSOL("Absol", 359 ", true, "50, 50, "Pressure", "Super Luck", "Justified", Type.DARK, "Disaster Pokémon", 103.6, 30, 6,400, 
    		35, "2 Attack Point(s)", 154, Level 10),
    WYNAUT("Wynaut", 360 ", true, "50, 50, "Tag", "Telepathy (Hidden Ability)", "Telepathy", Type.PSYCHIC, "Bright Pokémon", 30.9, 125, 5,120, 
    		70, "1 HP Point(s)", 140, Level 10),
    SNORUNT("Snorunt", 361 ", true, "50, 50, "Focus", "Ice Body", "Moody", Type.ICE, "Snow Hat Pokémon", 37.0, 190, 5,120, 
    		70, "1 HP Point(s)", 141, Level 10),
    GLALIE("Glalie", 362 ", true, "50, 50, "Focus", "Ice Body", "Moody", Type.ICE, "Face Pokémon", 565.5, 75, 5,120, 
    		70, "2 HP Point(s)", 141, Level 42),
    SPHEAL("Spheal", 363 ", true, "50, 50, "Fat", "Ice Body", "Oblivious", Type.ICE, "Clap Pokémon", 87.1, 255, 5,120, 
    		70, "1 HP Point(s)", 12, Level 10),
    SEALEO("Sealeo", 364 ", true, "50, 50, "Fat", "Ice Body", "Oblivious", Type.ICE, "Ball Roll Pokémon", 193.1, 120, 5,120, 
    		70, "2 HP Point(s)", 12, Level 32),
    WALREIN("Walrein", 365 ", true, "50, 50, "Fat", "Ice Body", "Oblivious", Type.ICE, "Ice Break Pokémon", 332.0, 45, 5,120, 
    		70, "3 HP Point(s)", 12, Level 44),
    CLAMPERL("Clamperl", 366 ", true, "50, 50, "Armor", "Rattled (Hidden Ability)", "Rattled", Type.WATER, "Bivalve Pokémon", 115.7, 255, 5,120, 
    		70, "1 Defense Point(s)", 155, Level 10);
    400??? thought it was ~150
    Reply With Quote  
     

  8. #7  
    PokeFrontier Java Developer

    Pokemon's Avatar
    Join Date
    May 2011
    Posts
    2,726
    Thanks given
    495
    Thanks received
    807
    Rep Power
    1260
    Quote Originally Posted by Swift Scout View Post
    400??? thought it was ~150

    649 For black and white


    Attached image


    I love
    Reply With Quote  
     

  9. #8  
    (Official) Thanksgiver

    Arham's Avatar
    Join Date
    Jan 2013
    Age
    23
    Posts
    3,415
    Thanks given
    7,254
    Thanks received
    1,938
    Rep Power
    3905
    Y u no Pokemon XY?
    Attached image
    Attached image
    Quote Originally Posted by MrClassic View Post
    Arham is the official thanker!
    List of my work here!
    Reply With Quote  
     

  10. #9  
    Banned
    Join Date
    Mar 2014
    Posts
    628
    Thanks given
    109
    Thanks received
    181
    Rep Power
    0
    What about digimon? and Yugioh?!
    Reply With Quote  
     

  11. #10  
    PokeFrontier Java Developer

    Pokemon's Avatar
    Join Date
    May 2011
    Posts
    2,726
    Thanks given
    495
    Thanks received
    807
    Rep Power
    1260
    Quote Originally Posted by Wii U View Post
    What about digimon? and Yugioh?!
    I'm not making a game on those ;c


    Attached image


    I love
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [657]XTEA(Map Data) Dumper
    By Peril in forum Downloads
    Replies: 10
    Last Post: 04-10-2012, 03:15 AM
  2. [658]XTEA(Map Data) Dumper
    By Peril in forum Downloads
    Replies: 3
    Last Post: 07-26-2011, 02:29 AM
  3. 521 map data dumper
    By iLL-ViZi0N in forum Requests
    Replies: 5
    Last Post: 11-13-2008, 05:24 AM
  4. 508 map data dumper...
    By Dragonking in forum Requests
    Replies: 5
    Last Post: 10-19-2008, 06:59 AM
  5. 512 Map Data Dumper
    By Vastiko in forum Downloads
    Replies: 13
    Last Post: 10-04-2008, 12:44 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •