From 1bf829c3f18d5e5018fff787ff772f23aa67fb12 Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sat, 27 Feb 2021 16:33:32 +0000 Subject: [PATCH] Made window bigger in map connections editor, fixed a couple of bugs, added Generation data to pokemon PBS files --- .../011_Input.rb} | 4 +- .../003_Game classes/002_Game_System.rb | 2 +- .../005_PSystem_Utilities.rb | 4 +- .../001_Debug menus/001_Debug_Menus.rb | 2 +- .../021_Debug/011_Editor_MapConnections.rb | 43 +- PBS/Gen 5/pokemon.txt | 649 ++++++++++++++ PBS/Gen 5/pokemonforms.txt | 7 +- PBS/Gen 7/pokemon.txt | 809 ++++++++++++++++++ PBS/Gen 7/pokemonforms.txt | 77 +- PBS/pokemon.txt | 809 ++++++++++++++++++ PBS/pokemonforms.txt | 77 +- 11 files changed, 2455 insertions(+), 28 deletions(-) rename Data/Scripts/{020_System and utilities/001_PSystem_Controls.rb => 001_Technical/011_Input.rb} (83%) diff --git a/Data/Scripts/020_System and utilities/001_PSystem_Controls.rb b/Data/Scripts/001_Technical/011_Input.rb similarity index 83% rename from Data/Scripts/020_System and utilities/001_PSystem_Controls.rb rename to Data/Scripts/001_Technical/011_Input.rb index 643e9ee98..861456ffd 100644 --- a/Data/Scripts/020_System and utilities/001_PSystem_Controls.rb +++ b/Data/Scripts/001_Technical/011_Input.rb @@ -1,9 +1,9 @@ module Mouse module_function + # Returns the position of the mouse relative to the game window. - def getMousePos(catch_anywhere=false) + def getMousePos(catch_anywhere = false) return nil unless System.mouse_in_window || catch_anywhere return Input.mouse_x, Input.mouse_y end - end diff --git a/Data/Scripts/003_Game classes/002_Game_System.rb b/Data/Scripts/003_Game classes/002_Game_System.rb index e384df2aa..34f35b797 100644 --- a/Data/Scripts/003_Game classes/002_Game_System.rb +++ b/Data/Scripts/003_Game classes/002_Game_System.rb @@ -77,7 +77,7 @@ class Game_System end def bgm_pause(fadetime=0.0) # :nodoc: - pos = Audio.bgm_position rescue 0 + pos = Audio.bgm_pos rescue 0 self.bgm_fade(fadetime) if fadetime>0.0 @bgm_position = pos @bgm_paused = true diff --git a/Data/Scripts/020_System and utilities/005_PSystem_Utilities.rb b/Data/Scripts/020_System and utilities/005_PSystem_Utilities.rb index 4d35da8aa..d03174b33 100644 --- a/Data/Scripts/020_System and utilities/005_PSystem_Utilities.rb +++ b/Data/Scripts/020_System and utilities/005_PSystem_Utilities.rb @@ -112,7 +112,7 @@ end def getConstantName(mod,value) mod = Object.const_get(mod) if mod.is_a?(Symbol) for c in mod.constants - return c if mod.const_get(c.to_sym)==value + return c.to_s if mod.const_get(c.to_sym)==value end raise _INTL("Value {1} not defined by a constant in {2}",value,mod.name) end @@ -120,7 +120,7 @@ end def getConstantNameOrValue(mod,value) mod = Object.const_get(mod) if mod.is_a?(Symbol) for c in mod.constants - return c if mod.const_get(c.to_sym)==value + return c.to_s if mod.const_get(c.to_sym)==value end return value.inspect end diff --git a/Data/Scripts/021_Debug/001_Debug menus/001_Debug_Menus.rb b/Data/Scripts/021_Debug/001_Debug menus/001_Debug_Menus.rb index 743632651..195438172 100644 --- a/Data/Scripts/021_Debug/001_Debug menus/001_Debug_Menus.rb +++ b/Data/Scripts/021_Debug/001_Debug menus/001_Debug_Menus.rb @@ -111,7 +111,6 @@ def pbDebugMenu(show_all = true) break end elsif Input.trigger?(Input::C) - pbPlayDecisionSE ret = cmdwindow.index break end @@ -119,6 +118,7 @@ def pbDebugMenu(show_all = true) break if ret < 0 cmd = commands.getCommand(ret) if commands.hasSubMenu?(cmd) + pbPlayDecisionSE commands.currentList = cmd cmdwindow.commands = commands.list cmdwindow.index = 0 diff --git a/Data/Scripts/021_Debug/011_Editor_MapConnections.rb b/Data/Scripts/021_Debug/011_Editor_MapConnections.rb index 78d4666a7..d3a97b899 100644 --- a/Data/Scripts/021_Debug/011_Editor_MapConnections.rb +++ b/Data/Scripts/021_Debug/011_Editor_MapConnections.rb @@ -314,7 +314,7 @@ class MapScreenScene @sprites={} @mapsprites={} @mapspritepos={} - @viewport=Viewport.new(0,0,800,600) + @viewport=Viewport.new(0,0,Graphics.width,Graphics.height) @viewport.z=99999 @lasthitmap=-1 @lastclick=-1 @@ -325,16 +325,19 @@ class MapScreenScene @dragOffsetX=0 @dragOffsetY=0 @selmapid=-1 - addBackgroundPlane(@sprites,"background","Trainer Card/bg",@viewport) + @sprites["background"] = ColoredPlane.new(Color.new(160, 208, 240), @viewport) @sprites["selsprite"]=SelectionSprite.new(@viewport) - @sprites["title"] = Window_UnformattedTextPokemon.newWithSize(_INTL("F: Help"), - 0, 600 - 64, 800, 64, @viewport) + @sprites["title"] = Window_UnformattedTextPokemon.newWithSize(_INTL("D: Help"), + 0, Graphics.height - 64, Graphics.width, 64, @viewport) @sprites["title"].z = 2 @mapinfos=pbLoadMapInfos conns=MapFactoryHelper.getMapConnections @mapconns=[] - for c in conns - @mapconns.push(c.clone) if !@mapconns.any? { |conn| conn[0] == c[0] && conn[3] == c[3] } + for map_conns in conns + next if !map_conns + map_conns.each do |c| + @mapconns.push(c.clone) if !@mapconns.any? { |x| x[0] == c[0] && x[3] == c[3] } + end end if $game_map @currentmap=$game_map.map_id @@ -359,7 +362,7 @@ class MapScreenScene helptext+=_INTL("Drag map to move it\r\n") helptext+=_INTL("Arrow keys/drag canvas: Move around canvas") title = Window_UnformattedTextPokemon.newWithSize(helptext, - 0, 0, 800 * 8 / 10, 600, @viewport) + 0, 0, Graphics.width * 8 / 10, Graphics.height, @viewport) title.z = 2 loop do Graphics.update @@ -385,7 +388,7 @@ class MapScreenScene end def onDoubleClick(map_id) - pbEditMetadata(map_id) + pbEditMetadata(map_id) if map_id > 0 end def onClick(mapid,x,y) @@ -441,7 +444,7 @@ class MapScreenScene y=y+@dragOffsetY sprite.x=x&~3 sprite.y=y&~3 - @sprites["title"].text=_ISPRINTF("F: Help [{1:03d}: {2:s}]",mapid,@mapinfos[@dragmapid].name) + @sprites["title"].text=_ISPRINTF("D: Help [{1:03d}: {2:s}]",mapid,@mapinfos[@dragmapid].name) else xpos=x-@dragOffsetX ypos=y-@dragOffsetY @@ -450,13 +453,13 @@ class MapScreenScene sprite.x=(@mapspritepos[i][0]+xpos)&~3 sprite.y=(@mapspritepos[i][1]+ypos)&~3 end - @sprites["title"].text=_INTL("F: Help") + @sprites["title"].text=_INTL("D: Help") end else if mapid>=0 - @sprites["title"].text=_ISPRINTF("F: Help [{1:03d}: {2:s}]",mapid,@mapinfos[mapid].name) + @sprites["title"].text=_ISPRINTF("D: Help [{1:03d}: {2:s}]",mapid,@mapinfos[mapid].name) else - @sprites["title"].text=_INTL("F: Help") + @sprites["title"].text=_INTL("D: Help") end end end @@ -546,7 +549,7 @@ class MapScreenScene @sprites["selsprite"].othersprite=nil @selmapid=-1 end - elsif Input.trigger?(Input::F5) + elsif Input.triggerex?(:D) helpWindow end pbUpdateSpriteHash(@sprites) @@ -562,7 +565,7 @@ class MapScreenScene serializeConnectionData MapFactoryHelper.clear else - GameData.Encounter.load + GameData::Encounter.load end break if pbConfirmMessage(_INTL("Exit from the editor?")) end @@ -575,9 +578,13 @@ end #=============================================================================== def pbConnectionsEditor pbCriticalCode { - mapscreen = MapScreenScene.new - mapscreen.mapScreen - mapscreen.pbMapScreenLoop - mapscreen.close + Graphics.resize_screen(Settings::SCREEN_WIDTH + 288, Settings::SCREEN_HEIGHT + 288) + pbSetResizeFactor(1) + mapscreen = MapScreenScene.new + mapscreen.mapScreen + mapscreen.pbMapScreenLoop + mapscreen.close + Graphics.resize_screen(Settings::SCREEN_WIDTH, Settings::SCREEN_HEIGHT) + pbSetResizeFactor($PokemonSystem.screensize) } end diff --git a/PBS/Gen 5/pokemon.txt b/PBS/Gen 5/pokemon.txt index 2d4953ec0..319d8fa25 100644 --- a/PBS/Gen 5/pokemon.txt +++ b/PBS/Gen 5/pokemon.txt @@ -26,6 +26,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -59,6 +60,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -92,6 +94,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -124,6 +127,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. +Generation = 1 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -156,6 +160,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -189,6 +194,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -221,6 +227,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -253,6 +260,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -285,6 +293,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -316,6 +325,7 @@ Shape = Insectoid Habitat = Forest Kind = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -347,6 +357,7 @@ Shape = Serpentine Habitat = Forest Kind = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -380,6 +391,7 @@ Shape = MultiWinged Habitat = Forest Kind = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. +Generation = 1 WildItemUncommon = SILVERPOWDER BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -413,6 +425,7 @@ Shape = Insectoid Habitat = Forest Kind = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -445,6 +458,7 @@ Shape = Serpentine Habitat = Forest Kind = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -478,6 +492,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -512,6 +527,7 @@ Shape = Winged Habitat = Forest Kind = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -545,6 +561,7 @@ Shape = Winged Habitat = Forest Kind = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 8 @@ -578,6 +595,7 @@ Shape = Winged Habitat = Forest Kind = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -610,6 +628,7 @@ Shape = Quadruped Habitat = Grassland Kind = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. +Generation = 1 WildItemUncommon = CHILANBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -643,6 +662,7 @@ Shape = Quadruped Habitat = Grassland Kind = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. +Generation = 1 WildItemUncommon = CHILANBERRY BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -677,6 +697,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -710,6 +731,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 10 BattlerPlayerY = 0 @@ -743,6 +765,7 @@ Shape = Serpentine Habitat = Grassland Kind = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -775,6 +798,7 @@ Shape = Serpentine Habitat = Grassland Kind = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -806,6 +830,7 @@ Shape = Quadruped Habitat = Forest Kind = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. +Generation = 1 WildItemUncommon = LIGHTBALL BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -839,6 +864,7 @@ Shape = BipedalTail Habitat = Forest Kind = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. +Generation = 1 WildItemCommon = ORANBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -872,6 +898,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -905,6 +932,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -938,6 +966,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -970,6 +999,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1003,6 +1033,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1035,6 +1066,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1067,6 +1099,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1100,6 +1133,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -1131,6 +1165,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Fairy Pokedex = On every night of a full moon, they come out to play. When dawn arrives, the tired Clefairy go to sleep nestled up against each other in deep and quiet mountains. +Generation = 1 WildItemCommon = LEPPABERRY WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD @@ -1166,6 +1201,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Fairy Pokedex = A Clefable uses its wings to skip lightly as if it were flying. Its bouncy step lets it even walk on water. On quiet, moonlit nights, it strolls on lakes. +Generation = 1 WildItemCommon = LEPPABERRY WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD @@ -1201,6 +1237,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fox Pokedex = It can freely control fire, making fiery orbs fly like will-o'-the-wisps. Just before evolution, its six tails grow hot as if on fire. +Generation = 1 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY @@ -1236,6 +1273,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fox Pokedex = It has long been said that each of the nine tails embody an enchanted power. A long-lived Ninetales will have fur that shines like gold. +Generation = 1 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY @@ -1270,6 +1308,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -1302,6 +1341,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -1335,6 +1375,7 @@ Shape = Winged Habitat = Cave Kind = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1368,6 +1409,7 @@ Shape = Winged Habitat = Cave Kind = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. +Generation = 1 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -1402,6 +1444,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. +Generation = 1 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1435,6 +1478,7 @@ Shape = Bipedal Habitat = Grassland Kind = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -1468,6 +1512,7 @@ Shape = Bipedal Habitat = Grassland Kind = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1501,6 +1546,7 @@ Shape = Insectoid Habitat = Forest Kind = Mushroom Pokedex = A Paras has parasitic tochukaso mushrooms growing on its back. They grow by drawing nutrients from the host. They are valued as a medicine for long life. +Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM @@ -1537,6 +1583,7 @@ Shape = Insectoid Habitat = Forest Kind = Mushroom Pokedex = Parasect are known to infest the roots of large trees en masse and drain nutrients. When an infested tree dies, they move onto another tree all at once. +Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM @@ -1573,6 +1620,7 @@ Shape = Bipedal Habitat = Forest Kind = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. +Generation = 1 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1606,6 +1654,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. +Generation = 1 WildItemUncommon = SHEDSHELL BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -1639,6 +1688,7 @@ Shape = HeadBase Habitat = Cave Kind = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. +Generation = 1 WildItemUncommon = SOFTSAND BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1672,6 +1722,7 @@ Shape = MultiBody Habitat = Cave Kind = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. +Generation = 1 WildItemUncommon = SOFTSAND BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -1705,6 +1756,7 @@ Shape = Quadruped Habitat = Urban Kind = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -1738,6 +1790,7 @@ Shape = Quadruped Habitat = Urban Kind = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -1771,6 +1824,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1803,6 +1857,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -1835,6 +1890,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. +Generation = 1 WildItemUncommon = PAYAPABERRY BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -1868,6 +1924,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. +Generation = 1 WildItemUncommon = PAYAPABERRY BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -1901,6 +1958,7 @@ Shape = Quadruped Habitat = Grassland Kind = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. +Generation = 1 WildItemCommon = RAWSTBERRY BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -1934,6 +1992,7 @@ Shape = Quadruped Habitat = Grassland Kind = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. +Generation = 1 WildItemCommon = RAWSTBERRY BattlerPlayerX = -9 BattlerPlayerY = 0 @@ -1967,6 +2026,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 9 @@ -1999,6 +2059,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = 10 BattlerPlayerY = 0 @@ -2033,6 +2094,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -2066,6 +2128,7 @@ Shape = BipedalTail Habitat = Urban Kind = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2099,6 +2162,7 @@ Shape = BipedalTail Habitat = Urban Kind = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2132,6 +2196,7 @@ Shape = Bipedal Habitat = Urban Kind = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -2165,6 +2230,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -2197,6 +2263,7 @@ Shape = Bipedal Habitat = Mountain Kind = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. +Generation = 1 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -2229,6 +2296,7 @@ Shape = Bipedal Habitat = Mountain Kind = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. +Generation = 1 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -2262,6 +2330,7 @@ Shape = Bipedal Habitat = Forest Kind = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -2295,6 +2364,7 @@ Shape = HeadBase Habitat = Forest Kind = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2328,6 +2398,7 @@ Shape = HeadBase Habitat = Forest Kind = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -2361,6 +2432,7 @@ Shape = Multiped Habitat = Sea Kind = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -2395,6 +2467,7 @@ Shape = Multiped Habitat = Sea Kind = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -2429,6 +2502,7 @@ Shape = HeadArms Habitat = Mountain Kind = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -2463,6 +2537,7 @@ Shape = Bipedal Habitat = Mountain Kind = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -2497,6 +2572,7 @@ Shape = Bipedal Habitat = Mountain Kind = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -2530,6 +2606,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. +Generation = 1 WildItemUncommon = SHUCABERRY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2563,6 +2640,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. +Generation = 1 WildItemUncommon = SHUCABERRY BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -2597,6 +2675,7 @@ Shape = Quadruped Habitat = WatersEdge Kind = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. +Generation = 1 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -2631,6 +2710,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -2664,6 +2744,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. +Generation = 1 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2698,6 +2779,7 @@ Shape = MultiBody Habitat = RoughTerrain Kind = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. +Generation = 1 WildItemUncommon = METALCOAT BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -2733,6 +2815,7 @@ Shape = Winged Habitat = Grassland Kind = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. +Generation = 1 WildItemUncommon = STICK BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -2767,6 +2850,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 14 BattlerPlayerY = 0 @@ -2801,6 +2885,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 8 BattlerPlayerY = 0 @@ -2834,6 +2919,7 @@ Shape = Finned Habitat = Sea Kind = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. +Generation = 1 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -2867,6 +2953,7 @@ Shape = Finned Habitat = Sea Kind = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -2899,6 +2986,7 @@ Shape = HeadArms Habitat = Urban Kind = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. +Generation = 1 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2932,6 +3020,7 @@ Shape = HeadArms Habitat = Urban Kind = Sludge Pokedex = It prefers warm and humid habitats. In the summertime, the toxic substances in its body intensify, making Muk reek like putrid kitchen garbage. +Generation = 1 WildItemCommon = BLACKSLUDGE WildItemRare = TOXICORB BattlerPlayerX = -2 @@ -2966,6 +3055,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to make a place to sleep. While asleep, it closes its shell, but leaves its tongue hanging out. +Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = -1 @@ -3001,6 +3091,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = It swims in the sea by swallowing water, then jetting it out toward the rear. The Cloyster shoots spikes from its shell using the same system. +Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = 0 @@ -3035,6 +3126,7 @@ Shape = Head Habitat = Cave Kind = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -3067,6 +3159,7 @@ Shape = HeadArms Habitat = Cave Kind = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3099,6 +3192,7 @@ Shape = BipedalTail Habitat = Cave Kind = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3132,6 +3226,7 @@ Shape = Serpentine Habitat = Cave Kind = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -3165,6 +3260,7 @@ Shape = Bipedal Habitat = Grassland Kind = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -3197,6 +3293,7 @@ Shape = Bipedal Habitat = Grassland Kind = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3229,6 +3326,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3261,6 +3359,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -3292,6 +3391,7 @@ Shape = Head Habitat = Urban Kind = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3324,6 +3424,7 @@ Shape = Head Habitat = Urban Kind = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3357,6 +3458,7 @@ Shape = MultiBody Habitat = Forest Kind = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3390,6 +3492,7 @@ Shape = HeadLegs Habitat = Forest Kind = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3422,6 +3525,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. +Generation = 1 WildItemUncommon = THICKCLUB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -3455,6 +3559,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. +Generation = 1 WildItemUncommon = THICKCLUB BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3487,6 +3592,7 @@ Shape = Bipedal Habitat = Urban Kind = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3518,6 +3624,7 @@ Shape = Bipedal Habitat = Urban Kind = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3550,6 +3657,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. +Generation = 1 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3583,6 +3691,7 @@ Shape = Head Habitat = Urban Kind = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. +Generation = 1 WildItemUncommon = SMOKEBALL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3615,6 +3724,7 @@ Shape = MultiBody Habitat = Urban Kind = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. +Generation = 1 WildItemUncommon = SMOKEBALL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3649,6 +3759,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3682,6 +3793,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3715,6 +3827,7 @@ Shape = BipedalTail Habitat = Urban Kind = Egg Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so delicious, they are eagerly devoured by even those who have lost their appetite. +Generation = 1 WildItemCommon = LUCKYPUNCH WildItemUncommon = LUCKYEGG BattlerPlayerX = -1 @@ -3750,6 +3863,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3783,6 +3897,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3815,6 +3930,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -3848,6 +3964,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -3882,6 +3999,7 @@ Shape = Finned Habitat = WatersEdge Kind = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -3914,6 +4032,7 @@ Shape = Finned Habitat = WatersEdge Kind = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. +Generation = 1 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 8 @@ -3945,6 +4064,7 @@ Shape = HeadBase Habitat = Sea Kind = Star Shape Pokedex = It gathers with others in the night and makes its red core glow on and off with the twinkling stars. It can regenerate limbs if they are severed from its body. +Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE BattlerPlayerX = 3 @@ -3980,6 +4100,7 @@ Shape = HeadBase Habitat = Sea Kind = Mysterious Pokedex = People in ancient times imagined that Starmie were transformed from the reflections of stars that twinkled on gentle waves at night. +Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE BattlerPlayerX = 2 @@ -4014,6 +4135,7 @@ Shape = Bipedal Habitat = Urban Kind = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. +Generation = 1 WildItemUncommon = LEPPABERRY BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -4048,6 +4170,7 @@ Shape = MultiWinged Habitat = Grassland Kind = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -4081,6 +4204,7 @@ Shape = Bipedal Habitat = Urban Kind = Human Shape Pokedex = A Jynx sashays rhythmically as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without noticing. +Generation = 1 WildItemCommon = ASPEARBERRY WildItemUncommon = ASPEARBERRY WildItemRare = ASPEARBERRY @@ -4115,6 +4239,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. +Generation = 1 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -4148,6 +4273,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. +Generation = 1 WildItemUncommon = MAGMARIZER BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -4182,6 +4308,7 @@ Shape = Bipedal Habitat = Forest Kind = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -4213,6 +4340,7 @@ Shape = Quadruped Habitat = Grassland Kind = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4244,6 +4372,7 @@ Shape = Finned Habitat = WatersEdge Kind = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4277,6 +4406,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. +Generation = 1 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4310,6 +4440,7 @@ Shape = Finned Habitat = Sea Kind = Transport Pokedex = People have driven Lapras almost to the point of extinction. In the evenings, it is said to sing plaintively as it seeks what few others of its kind still remain. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4340,6 +4471,7 @@ Shape = Head Habitat = Urban Kind = Transform Pokedex = A Ditto rearranges its cell structure to transform itself. However, if it tries to change based on its memory, it will get details wrong. +Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER BattlerPlayerX = 0 @@ -4374,6 +4506,7 @@ Shape = Quadruped Habitat = Urban Kind = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -4406,6 +4539,7 @@ Shape = Quadruped Habitat = Urban Kind = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4437,6 +4571,7 @@ Shape = Quadruped Habitat = Urban Kind = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -4468,6 +4603,7 @@ Shape = Quadruped Habitat = Urban Kind = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -4499,6 +4635,7 @@ Shape = HeadLegs Habitat = Urban Kind = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy- protected so it cannot be duplicated. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4533,6 +4670,7 @@ Shape = Multiped Habitat = Sea Kind = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4566,6 +4704,7 @@ Shape = Multiped Habitat = Sea Kind = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4599,6 +4738,7 @@ Shape = Insectoid Habitat = Sea Kind = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4632,6 +4772,7 @@ Shape = BipedalTail Habitat = Sea Kind = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. +Generation = 1 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4665,6 +4806,7 @@ Shape = Winged Habitat = Mountain Kind = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4697,6 +4839,7 @@ Shape = Bipedal Habitat = Mountain Kind = Sleeping Pokedex = Snorlax's typical day consists of nothing more than eating and sleeping. It is such a docile Pokémon that there are children who use its big belly as a place to play. +Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS @@ -4732,6 +4875,7 @@ Shape = Winged Habitat = Rare Kind = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -4764,6 +4908,7 @@ Shape = Winged Habitat = Rare Kind = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -4796,6 +4941,7 @@ Shape = Winged Habitat = Rare Kind = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4828,6 +4974,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -4861,6 +5008,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -4895,6 +5043,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -4927,6 +5076,7 @@ Shape = BipedalTail Habitat = Rare Kind = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. +Generation = 1 BattlerPlayerX = 14 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -4957,6 +5107,7 @@ Shape = BipedalTail Habitat = Rare Kind = New Species Pokedex = A Mew is said to possess the genes of all Pokémon. It is capable of making itself invisible at will, so it entirely avoids notice even if it approaches people. +Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -4992,6 +5143,7 @@ Shape = Quadruped Habitat = Grassland Kind = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -5024,6 +5176,7 @@ Shape = Quadruped Habitat = Grassland Kind = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5056,6 +5209,7 @@ Shape = Quadruped Habitat = Grassland Kind = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5088,6 +5242,7 @@ Shape = Bipedal Habitat = Grassland Kind = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -5120,6 +5275,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -5152,6 +5308,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5184,6 +5341,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5216,6 +5374,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5248,6 +5407,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -5280,6 +5440,7 @@ Shape = Quadruped Habitat = Grassland Kind = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. +Generation = 2 WildItemUncommon = ORANBERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -5313,6 +5474,7 @@ Shape = Quadruped Habitat = Grassland Kind = Long Body Pokedex = A Furret has a very slim build. When under attack, it can squirm through narrow spaces and get away. In spite of its short limbs, it is very nimble and fleet. +Generation = 2 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = -12 @@ -5348,6 +5510,7 @@ Shape = Winged Habitat = Forest Kind = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5381,6 +5544,7 @@ Shape = Winged Habitat = Forest Kind = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5414,6 +5578,7 @@ Shape = Winged Habitat = Forest Kind = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5447,6 +5612,7 @@ Shape = Winged Habitat = Forest Kind = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5480,6 +5646,7 @@ Shape = Insectoid Habitat = Forest Kind = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5513,6 +5680,7 @@ Shape = Insectoid Habitat = Forest Kind = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -5545,6 +5713,7 @@ Shape = MultiWinged Habitat = Cave Kind = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -5578,6 +5747,7 @@ Shape = Finned Habitat = Sea Kind = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. +Generation = 2 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -5612,6 +5782,7 @@ Shape = Finned Habitat = Sea Kind = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. +Generation = 2 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -5645,6 +5816,7 @@ Shape = Quadruped Habitat = Forest Kind = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. +Generation = 2 WildItemCommon = ORANBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -5679,6 +5851,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Star Shape Pokedex = On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance until daybreak, when they quench their thirst with the morning dew. +Generation = 2 WildItemCommon = LEPPABERRY WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD @@ -5715,6 +5888,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5748,6 +5922,7 @@ Shape = Bipedal Habitat = Forest Kind = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5781,6 +5956,7 @@ Shape = Bipedal Habitat = Forest Kind = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5815,6 +5991,7 @@ Shape = Winged Habitat = Forest Kind = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5848,6 +6025,7 @@ Shape = Winged Habitat = Forest Kind = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -5880,6 +6058,7 @@ Shape = Quadruped Habitat = Grassland Kind = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5912,6 +6091,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5944,6 +6124,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -5975,6 +6156,7 @@ Shape = Bipedal Habitat = Grassland Kind = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6007,6 +6189,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -6039,6 +6222,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -6071,6 +6255,7 @@ Shape = Bipedal Habitat = Forest Kind = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -6102,6 +6287,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. +Generation = 2 WildItemUncommon = KINGSROCK BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -6136,6 +6322,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. +Generation = 2 BattlerPlayerX = 9 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -6169,6 +6356,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6202,6 +6390,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. +Generation = 2 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -6234,6 +6423,7 @@ Shape = BipedalTail Habitat = Forest Kind = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. +Generation = 2 BattlerPlayerX = -11 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6267,6 +6457,7 @@ Shape = Head Habitat = Grassland Kind = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. +Generation = 2 WildItemUncommon = COBABERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -6300,6 +6491,7 @@ Shape = Bipedal Habitat = Grassland Kind = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6333,6 +6525,7 @@ Shape = MultiWinged Habitat = Forest Kind = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. +Generation = 2 WildItemUncommon = WIDELENS BattlerPlayerX = -8 BattlerPlayerY = 0 @@ -6368,6 +6561,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -6401,6 +6595,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. +Generation = 2 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -6432,6 +6627,7 @@ Shape = Quadruped Habitat = Urban Kind = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -6463,6 +6659,7 @@ Shape = Quadruped Habitat = Urban Kind = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -6496,6 +6693,7 @@ Shape = Winged Habitat = Forest Kind = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6529,6 +6727,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. +Generation = 2 WildItemUncommon = KINGSROCK BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -6561,6 +6760,7 @@ Shape = Head Habitat = Cave Kind = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6592,6 +6792,7 @@ Habitat = Rare Kind = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = Anger +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6622,6 +6823,7 @@ Shape = HeadBase Habitat = Cave Kind = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6655,6 +6857,7 @@ Shape = Quadruped Habitat = Grassland Kind = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. +Generation = 2 WildItemUncommon = PERSIMBERRY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -6688,6 +6891,7 @@ Shape = Head Habitat = Forest Kind = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6721,6 +6925,7 @@ Shape = Head Habitat = Forest Kind = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6753,6 +6958,7 @@ Shape = Serpentine Habitat = Cave Kind = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -6786,6 +6992,7 @@ Shape = Winged Habitat = Mountain Kind = FlyScorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -6819,6 +7026,7 @@ Shape = Serpentine Habitat = Cave Kind = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. +Generation = 2 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -6852,6 +7060,7 @@ Shape = Bipedal Habitat = Urban Kind = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -6884,6 +7093,7 @@ Shape = BipedalTail Habitat = Urban Kind = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -6917,6 +7127,7 @@ Shape = Finned Habitat = Sea Kind = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. +Generation = 2 WildItemUncommon = POISONBARB BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -6950,6 +7161,7 @@ Shape = MultiWinged Habitat = Grassland Kind = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. +Generation = 2 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -6983,6 +7195,7 @@ Shape = Insectoid Habitat = Mountain Kind = Mold Pokedex = A Shuckle hides under rocks, keeping its body concealed inside its shell while eating stored berries. The berries mix with its body fluids to become a juice. +Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE @@ -7019,6 +7232,7 @@ Shape = Bipedal Habitat = Forest Kind = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -7052,6 +7266,7 @@ Shape = BipedalTail Habitat = Forest Kind = Sharp Claw Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It seeks out unguarded nests and steals eggs for food while the parents are away. +Generation = 2 WildItemCommon = GRIPCLAW WildItemUncommon = QUICKCLAW BattlerPlayerX = -3 @@ -7087,6 +7302,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7119,6 +7335,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7151,6 +7368,7 @@ Shape = Serpentine Habitat = Mountain Kind = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7184,6 +7402,7 @@ Shape = Serpentine Habitat = Mountain Kind = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -7217,6 +7436,7 @@ Shape = Quadruped Habitat = Cave Kind = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7250,6 +7470,7 @@ Shape = Quadruped Habitat = Cave Kind = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7284,6 +7505,7 @@ Shape = Insectoid Habitat = Sea Kind = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. +Generation = 2 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -7317,6 +7539,7 @@ Shape = Finned Habitat = Sea Kind = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. +Generation = 2 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7349,6 +7572,7 @@ Shape = Multiped Habitat = Sea Kind = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7382,6 +7606,7 @@ Shape = Winged Habitat = Mountain Kind = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -7415,6 +7640,7 @@ Shape = Winged Habitat = Sea Kind = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -7448,6 +7674,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7481,6 +7708,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -7514,6 +7742,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -7546,6 +7775,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. +Generation = 2 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -7579,6 +7809,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. +Generation = 2 WildItemUncommon = PASSHOBERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -7612,6 +7843,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. +Generation = 2 WildItemUncommon = PASSHOBERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -7644,6 +7876,7 @@ Shape = HeadLegs Habitat = Urban Kind = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7677,6 +7910,7 @@ Shape = Quadruped Habitat = Forest Kind = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -7707,6 +7941,7 @@ Shape = BipedalTail Habitat = Urban Kind = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -7739,6 +7974,7 @@ Shape = Bipedal Habitat = Urban Kind = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7771,6 +8007,7 @@ Shape = BipedalTail Habitat = Urban Kind = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -7804,6 +8041,7 @@ Shape = Bipedal Habitat = Urban Kind = Kiss Pokedex = It actively runs about, but also falls often. Whenever it falls, it will check its reflection on a lake's surface to make sure its face hasn't become dirty. +Generation = 2 WildItemCommon = ASPEARBERRY WildItemUncommon = ASPEARBERRY WildItemRare = ASPEARBERRY @@ -7840,6 +8078,7 @@ Shape = Bipedal Habitat = Grassland Kind = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. +Generation = 2 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -7874,6 +8113,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. +Generation = 2 WildItemUncommon = MAGMARIZER BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -7908,6 +8148,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Milk Cow Pokedex = It gives over five gallons of milk daily. Its sweet milk is enjoyed by children and adults alike. People who can't drink milk turn it into yogurt and eat it instead. +Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK @@ -7942,6 +8183,7 @@ Shape = Bipedal Habitat = Urban Kind = Happiness Pokedex = If it senses sadness with its fluffy fur, a Blissey will rush over to the sad person, however far away, to share an egg of happiness that brings a smile to any face. +Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG @@ -7976,6 +8218,7 @@ Shape = Quadruped Habitat = Grassland Kind = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -8007,6 +8250,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -8038,6 +8282,7 @@ Shape = Quadruped Habitat = Grassland Kind = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -8071,6 +8316,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. +Generation = 2 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8103,6 +8349,7 @@ Shape = Serpentine Habitat = Mountain Kind = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8136,6 +8383,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -8168,6 +8416,7 @@ Shape = Winged Habitat = Rare Kind = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8200,6 +8449,7 @@ Shape = Winged Habitat = Rare Kind = Rainbow Pokedex = Its feathers--which glow in seven colors depending on the angle at which light strikes them--are thought to bring joy. It is said to live at the foot of a rainbow. +Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH @@ -8234,6 +8484,7 @@ Shape = Bipedal Habitat = Forest Kind = Time Travel Pokedex = This Pokémon came from the future by crossing over time. It is thought that so long as Celebi appears, a bright and shining future awaits us. +Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -8269,6 +8520,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -8301,6 +8553,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8333,6 +8586,7 @@ Shape = BipedalTail Habitat = Forest Kind = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8365,6 +8619,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8398,6 +8653,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. +Generation = 3 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8431,6 +8687,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. +Generation = 3 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8463,6 +8720,7 @@ Shape = Quadruped Habitat = WatersEdge Kind = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8496,6 +8754,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8529,6 +8788,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8561,6 +8821,7 @@ Shape = Quadruped Habitat = Grassland Kind = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. +Generation = 3 WildItemUncommon = PECHABERRY BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -8594,6 +8855,7 @@ Shape = Quadruped Habitat = Grassland Kind = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. +Generation = 3 WildItemUncommon = PECHABERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -8627,6 +8889,7 @@ Shape = Quadruped Habitat = Grassland Kind = TinyRaccoon Pokedex = Rubbing its nose against the ground, it always wanders about back and forth in search of something. It is distinguished by the zigzag footprints it leaves. +Generation = 3 WildItemUncommon = ORANBERRY BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -8660,6 +8923,7 @@ Shape = Quadruped Habitat = Grassland Kind = Rushing Pokedex = It is exceedingly fast if it only has to run in a straight line. When it spots pond- dwelling prey underwater, it quickly leaps in and catches it with its sharp claws. +Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = 0 @@ -8693,6 +8957,7 @@ Shape = Insectoid Habitat = Forest Kind = Worm Pokedex = It sticks to tree branches and eats leaves. The thread it spits from its mouth becomes gooey when it touches air and slows the movement of its foes. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8724,6 +8989,7 @@ Shape = Head Habitat = Forest Kind = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8757,6 +9023,7 @@ Shape = MultiWinged Habitat = Forest Kind = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -8788,6 +9055,7 @@ Shape = Head Habitat = Forest Kind = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8821,6 +9089,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -8855,6 +9124,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8888,6 +9158,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8921,6 +9192,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8953,6 +9225,7 @@ Shape = HeadLegs Habitat = Forest Kind = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8986,6 +9259,7 @@ Shape = Bipedal Habitat = Forest Kind = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9019,6 +9293,7 @@ Shape = Bipedal Habitat = Forest Kind = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -9052,6 +9327,7 @@ Shape = Winged Habitat = Grassland Kind = TinySwallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. +Generation = 3 WildItemUncommon = CHARTIBERRY BattlerPlayerX = -9 BattlerPlayerY = 0 @@ -9086,6 +9362,7 @@ Shape = Winged Habitat = Grassland Kind = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. +Generation = 3 WildItemUncommon = CHARTIBERRY BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -9120,6 +9397,7 @@ Shape = Winged Habitat = Sea Kind = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9153,6 +9431,7 @@ Shape = Winged Habitat = Sea Kind = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9185,6 +9464,7 @@ Shape = Bipedal Habitat = Urban Kind = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -9217,6 +9497,7 @@ Shape = Bipedal Habitat = Urban Kind = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9249,6 +9530,7 @@ Shape = Bipedal Habitat = Urban Kind = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9282,6 +9564,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -9315,6 +9598,7 @@ Shape = MultiWinged Habitat = WatersEdge Kind = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. +Generation = 3 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9348,6 +9632,7 @@ Shape = HeadLegs Habitat = Forest Kind = Mushroom Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest after a long rain, you can see many Shroomish feasting on composted soil. +Generation = 3 WildItemUncommon = KEBIABERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -9382,6 +9667,7 @@ Shape = BipedalTail Habitat = Forest Kind = Mushroom Pokedex = It scatters spores from holes in the cap on its head. It loves warm and humid climates. It feeds on trees and plants in fields and forests. +Generation = 3 WildItemUncommon = KEBIABERRY BattlerPlayerX = -15 BattlerPlayerY = 0 @@ -9414,6 +9700,7 @@ Shape = Quadruped Habitat = Forest Kind = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -9445,6 +9732,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -9476,6 +9764,7 @@ Shape = Bipedal Habitat = Forest Kind = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9509,6 +9798,7 @@ Shape = Insectoid Habitat = Forest Kind = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -9542,6 +9832,7 @@ Shape = MultiWinged Habitat = Forest Kind = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9573,6 +9864,7 @@ Shape = HeadBase Habitat = Forest Kind = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9605,6 +9897,7 @@ Shape = BipedalTail Habitat = Cave Kind = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. +Generation = 3 WildItemUncommon = CHESTOBERRY BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -9638,6 +9931,7 @@ Shape = BipedalTail Habitat = Cave Kind = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. +Generation = 3 WildItemUncommon = CHESTOBERRY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9671,6 +9965,7 @@ Shape = BipedalTail Habitat = Cave Kind = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. +Generation = 3 WildItemUncommon = CHESTOBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -9704,6 +9999,7 @@ Shape = Bipedal Habitat = Mountain Kind = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9736,6 +10032,7 @@ Shape = Bipedal Habitat = Mountain Kind = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. +Generation = 3 WildItemUncommon = KINGSROCK BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -9769,6 +10066,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. +Generation = 3 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = 14 @@ -9803,6 +10101,7 @@ Shape = Bipedal Habitat = Cave Kind = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -9837,6 +10136,7 @@ Shape = Quadruped Habitat = Forest Kind = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. +Generation = 3 WildItemCommon = PECHABERRY BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -9870,6 +10170,7 @@ Shape = Quadruped Habitat = Forest Kind = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. +Generation = 3 WildItemCommon = PECHABERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -9904,6 +10205,7 @@ Shape = Bipedal Habitat = Cave Kind = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9936,6 +10238,7 @@ Shape = Bipedal Habitat = Cave Kind = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. +Generation = 3 WildItemUncommon = OCCABERRY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9970,6 +10273,7 @@ Shape = Quadruped Habitat = Mountain Kind = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10004,6 +10308,7 @@ Shape = Quadruped Habitat = Mountain Kind = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10038,6 +10343,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -10072,6 +10378,7 @@ Shape = Bipedal Habitat = Mountain Kind = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10105,6 +10412,7 @@ Shape = Bipedal Habitat = Mountain Kind = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10137,6 +10445,7 @@ Shape = Quadruped Habitat = Grassland Kind = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -10169,6 +10478,7 @@ Shape = Quadruped Habitat = Grassland Kind = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10200,6 +10510,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. +Generation = 3 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -10231,6 +10542,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10263,6 +10575,7 @@ Shape = BipedalTail Habitat = Forest Kind = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10295,6 +10608,7 @@ Shape = Bipedal Habitat = Forest Kind = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -10328,6 +10642,7 @@ Shape = Bipedal Habitat = Grassland Kind = Thorn Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovely flowers. The fragrance of its flowers has the effect of making its foes careless. +Generation = 3 WildItemUncommon = POISONBARB WildItemRare = ABSORBBULB BattlerPlayerX = 2 @@ -10363,6 +10678,7 @@ Shape = HeadArms Habitat = Grassland Kind = Stomach Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, it can swallow something that is as large as itself. +Generation = 3 WildItemUncommon = BIGPEARL BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10396,6 +10712,7 @@ Shape = HeadArms Habitat = Grassland Kind = Poison Bag Pokedex = Its powerful stomach acid is capable of digesting almost anything. The one thing in the whole world a Swalot can't digest is its own stomach. +Generation = 3 WildItemUncommon = BIGPEARL BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10430,6 +10747,7 @@ Shape = Finned Habitat = Sea Kind = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10464,6 +10782,7 @@ Shape = Finned Habitat = Sea Kind = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -10497,6 +10816,7 @@ Shape = Finned Habitat = Sea Kind = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10529,6 +10849,7 @@ Shape = Finned Habitat = Sea Kind = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10562,6 +10883,7 @@ Shape = Quadruped Habitat = Mountain Kind = Numb Pokedex = A Numel stores boiling magma in the hump on its back. It is a hardy Pokémon that can transport a 220-pound load. It has served humans at work since long ago. +Generation = 3 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY @@ -10598,6 +10920,7 @@ Shape = Quadruped Habitat = Mountain Kind = Eruption Pokedex = A Pokémon that lives in the crater of a volcano. Every 10 years, the volcanoes on its back erupt violently. Research is under way on the cause of eruption. +Generation = 3 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY @@ -10633,6 +10956,7 @@ Shape = Quadruped Habitat = Mountain Kind = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10665,6 +10989,7 @@ Shape = HeadArms Habitat = Mountain Kind = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. +Generation = 3 WildItemCommon = PERSIMBERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -10698,6 +11023,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. +Generation = 3 WildItemCommon = PERSIMBERRY BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -10731,6 +11057,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. +Generation = 3 WildItemUncommon = CHESTOBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10764,6 +11091,7 @@ Shape = Insectoid Habitat = RoughTerrain Kind = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. +Generation = 3 WildItemUncommon = SOFTSAND BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10797,6 +11125,7 @@ Shape = MultiWinged Habitat = RoughTerrain Kind = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. +Generation = 3 BattlerPlayerX = -11 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -10829,6 +11158,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. +Generation = 3 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 11 @@ -10861,6 +11191,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. +Generation = 3 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10895,6 +11226,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. +Generation = 3 WildItemUncommon = STICKYBARB BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -10929,6 +11261,7 @@ Shape = Winged Habitat = Forest Kind = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10962,6 +11295,7 @@ Shape = Winged Habitat = Forest Kind = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. +Generation = 3 BattlerPlayerX = -10 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10994,6 +11328,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. +Generation = 3 WildItemUncommon = QUICKCLAW BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -11027,6 +11362,7 @@ Shape = Serpentine Habitat = Grassland Kind = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -11058,6 +11394,7 @@ Shape = Head Habitat = Cave Kind = Meteorite Pokedex = It becomes very active on the night of a full moon. This Pokémon was first discovered 40 years ago at the site of a meteor strike. +Generation = 3 WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD BattlerPlayerX = 1 @@ -11091,6 +11428,7 @@ Shape = Head Habitat = Cave Kind = Meteorite Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, groups of Solrock line up facing the sun and absorb its light. +Generation = 3 WildItemUncommon = SUNSTONE WildItemRare = COMETSHARD BattlerPlayerX = 2 @@ -11126,6 +11464,7 @@ Shape = Finned Habitat = WatersEdge Kind = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11159,6 +11498,7 @@ Shape = Finned Habitat = WatersEdge Kind = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11191,6 +11531,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11224,6 +11565,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. +Generation = 3 BattlerPlayerX = 9 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11255,6 +11597,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11287,6 +11630,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11320,6 +11664,7 @@ Shape = HeadBase Habitat = Sea Kind = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. +Generation = 3 WildItemUncommon = BIGROOT BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -11354,6 +11699,7 @@ Shape = HeadBase Habitat = Sea Kind = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. +Generation = 3 WildItemUncommon = BIGROOT BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11388,6 +11734,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. +Generation = 3 BattlerPlayerX = 10 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11421,6 +11768,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -11453,6 +11801,7 @@ Shape = Finned Habitat = WatersEdge Kind = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11485,6 +11834,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11517,6 +11867,7 @@ Habitat = Grassland Kind = Weather Pokedex = It alters its form depending on the weather. Changes in the climate such as the temperature and humidity appear to affect its cellular structure. FormName = Normal Form +Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER @@ -11551,6 +11902,7 @@ Shape = BipedalTail Habitat = Forest Kind = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. +Generation = 3 WildItemUncommon = PERSIMBERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -11584,6 +11936,7 @@ Shape = Head Habitat = Urban Kind = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -11617,6 +11970,7 @@ Shape = BipedalTail Habitat = Urban Kind = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -11649,6 +12003,7 @@ Shape = HeadArms Habitat = Forest Kind = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. +Generation = 3 WildItemUncommon = KASIBBERRY BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -11681,6 +12036,7 @@ Shape = Bipedal Habitat = Forest Kind = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. +Generation = 3 WildItemUncommon = KASIBBERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11716,6 +12072,7 @@ Shape = Quadruped Habitat = Forest Kind = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -11747,6 +12104,7 @@ Shape = HeadArms Habitat = Grassland Kind = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. +Generation = 3 WildItemUncommon = COLBURBERRY BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -11780,6 +12138,7 @@ Shape = Quadruped Habitat = Mountain Kind = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11810,6 +12169,7 @@ Shape = BipedalTail Habitat = Cave Kind = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11844,6 +12204,7 @@ Shape = Bipedal Habitat = Cave Kind = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. +Generation = 3 WildItemUncommon = BABIRIBERRY BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -11877,6 +12238,7 @@ Shape = Head Habitat = Cave Kind = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. +Generation = 3 WildItemUncommon = BABIRIBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -11911,6 +12273,7 @@ Shape = Finned Habitat = Sea Kind = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -11944,6 +12307,7 @@ Shape = Finned Habitat = Sea Kind = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11977,6 +12341,7 @@ Shape = Quadruped Habitat = Sea Kind = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12009,6 +12374,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl it creates upon evolution is said to be infused with a mysterious energy. +Generation = 3 WildItemUncommon = BIGPEARL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -12042,6 +12408,7 @@ Shape = Serpentine Habitat = Sea Kind = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -12074,6 +12441,7 @@ Shape = Serpentine Habitat = Sea Kind = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. +Generation = 3 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -12108,6 +12476,7 @@ Shape = Finned Habitat = Sea Kind = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. +Generation = 3 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -12141,6 +12510,7 @@ Shape = Finned Habitat = Sea Kind = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. +Generation = 3 WildItemCommon = HEARTSCALE BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -12174,6 +12544,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -12207,6 +12578,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -12241,6 +12613,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -12274,6 +12647,7 @@ Shape = HeadBase Habitat = RoughTerrain Kind = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -12308,6 +12682,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -12342,6 +12717,7 @@ Shape = MultiBody Habitat = RoughTerrain Kind = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -12374,6 +12750,7 @@ Shape = Bipedal Habitat = Cave Kind = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -12405,6 +12782,7 @@ Shape = Bipedal Habitat = Cave Kind = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12436,6 +12814,7 @@ Shape = Bipedal Habitat = Cave Kind = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -12467,6 +12846,7 @@ Shape = Winged Habitat = WatersEdge Kind = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -12498,6 +12878,7 @@ Shape = Winged Habitat = WatersEdge Kind = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12528,6 +12909,7 @@ Shape = Finned Habitat = Sea Kind = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -12558,6 +12940,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12589,6 +12972,7 @@ Shape = Serpentine Habitat = Rare Kind = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -12620,6 +13004,7 @@ Shape = Bipedal Habitat = Mountain Kind = Wish Pokedex = Jirachi is said to make wishes come true. While it sleeps, a tough crystalline shell envelops the body to protect it from enemies. +Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE @@ -12654,6 +13039,7 @@ Habitat = Rare Kind = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12685,6 +13071,7 @@ Color = Green Shape = Quadruped Kind = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12716,6 +13103,7 @@ Color = Green Shape = Quadruped Kind = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -12748,6 +13136,7 @@ Color = Green Shape = Quadruped Kind = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12779,6 +13168,7 @@ Color = Brown Shape = BipedalTail Kind = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. +Generation = 4 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12811,6 +13201,7 @@ Color = Brown Shape = BipedalTail Kind = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 10 @@ -12843,6 +13234,7 @@ Color = Brown Shape = BipedalTail Kind = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12874,6 +13266,7 @@ Color = Blue Shape = Bipedal Kind = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12905,6 +13298,7 @@ Color = Blue Shape = BipedalTail Kind = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12937,6 +13331,7 @@ Color = Blue Shape = BipedalTail Kind = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -12968,6 +13363,7 @@ Color = Brown Shape = Winged Kind = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. +Generation = 4 WildItemUncommon = YACHEBERRY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -13001,6 +13397,7 @@ Color = Brown Shape = Winged Kind = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. +Generation = 4 WildItemUncommon = YACHEBERRY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -13034,6 +13431,7 @@ Color = Brown Shape = Winged Kind = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. +Generation = 4 WildItemUncommon = YACHEBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -13066,6 +13464,7 @@ Color = Brown Shape = Quadruped Kind = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13098,6 +13497,7 @@ Color = Brown Shape = BipedalTail Kind = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. +Generation = 4 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = -6 @@ -13130,6 +13530,7 @@ Color = Red Shape = Bipedal Kind = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13162,6 +13563,7 @@ Color = Red Shape = MultiWinged Kind = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13194,6 +13596,7 @@ Color = Blue Shape = Quadruped Kind = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -13225,6 +13628,7 @@ Color = Blue Shape = Quadruped Kind = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -13256,6 +13660,7 @@ Color = Blue Shape = Quadruped Kind = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13288,6 +13693,7 @@ Color = Green Shape = Bipedal Kind = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13322,6 +13728,7 @@ Color = Green Shape = Bipedal Kind = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. +Generation = 4 WildItemUncommon = POISONBARB WildItemRare = ABSORBBULB BattlerPlayerX = 8 @@ -13355,6 +13762,7 @@ Color = Blue Shape = BipedalTail Kind = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -13386,6 +13794,7 @@ Color = Blue Shape = BipedalTail Kind = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -13418,6 +13827,7 @@ Color = Gray Shape = Quadruped Kind = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13450,6 +13860,7 @@ Color = Gray Shape = Quadruped Kind = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -13481,6 +13892,7 @@ Shape = HeadBase Kind = Bagworm Pokedex = To shelter itself from cold, wintry winds, it covers itself with a cloak made of twigs and leaves. FormName = Plant Cloak +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -13514,6 +13926,7 @@ Shape = HeadBase Kind = Bagworm Pokedex = When Burmy evolved, its cloak became a part of this Pokémon's body. The cloak is never shed. FormName = Plant Cloak +Generation = 4 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13546,6 +13959,7 @@ Color = Yellow Shape = MultiWinged Kind = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. +Generation = 4 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 11 BattlerPlayerY = 0 @@ -13578,6 +13992,7 @@ Color = Yellow Shape = MultiBody Kind = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. +Generation = 4 WildItemUncommon = HONEY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -13611,6 +14026,7 @@ Color = Yellow Shape = MultiWinged Kind = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13643,6 +14059,7 @@ Color = White Shape = Quadruped Kind = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13674,6 +14091,7 @@ Color = Brown Shape = Quadruped Kind = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. +Generation = 4 WildItemUncommon = WACANBERRY BattlerPlayerX = -12 BattlerPlayerY = 0 @@ -13706,6 +14124,7 @@ Color = Brown Shape = Quadruped Kind = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. +Generation = 4 WildItemUncommon = WACANBERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -13737,6 +14156,7 @@ Color = Pink Shape = MultiBody Kind = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. +Generation = 4 WildItemUncommon = MIRACLESEED BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -13769,6 +14189,7 @@ Shape = HeadLegs Kind = Blossom Pokedex = It blooms during times of strong sunlight. It tries to make up for everything it endured as a bud. FormName = Overcast Form +Generation = 4 WildItemUncommon = MIRACLESEED BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13802,6 +14223,7 @@ Shape = Serpentine Kind = Sea Slug Pokedex = Its colors and shapes differ from region to region. In the Sinnoh region, two types are confirmed. FormName = West Sea +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13835,6 +14257,7 @@ Shape = Serpentine Kind = Sea Slug Pokedex = It has a pliable body without any bones. If any part of its body is torn off, it grows right back. FormName = West Sea +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13865,6 +14288,7 @@ Color = Purple Shape = BipedalTail Kind = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13897,6 +14321,7 @@ Color = Purple Shape = HeadArms Kind = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13929,6 +14354,7 @@ Color = Purple Shape = HeadArms Kind = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. +Generation = 4 WildItemRare = AIRBALLOON BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13961,6 +14387,7 @@ Color = Brown Shape = BipedalTail Kind = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. +Generation = 4 WildItemCommon = PECHABERRY BattlerPlayerX = 8 BattlerPlayerY = 0 @@ -13993,6 +14420,7 @@ Color = Brown Shape = BipedalTail Kind = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. +Generation = 4 WildItemCommon = PECHABERRY BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -14023,6 +14451,7 @@ Color = Purple Shape = Head Kind = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14054,6 +14483,7 @@ Color = Black Shape = Winged Kind = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14085,6 +14515,7 @@ Color = Gray Shape = Quadruped Kind = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. +Generation = 4 WildItemUncommon = CHERIBERRY BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -14117,6 +14548,7 @@ Color = Gray Shape = Quadruped Kind = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. +Generation = 4 WildItemUncommon = CHERIBERRY BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -14148,6 +14580,7 @@ Color = Yellow Shape = Bipedal Kind = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. +Generation = 4 WildItemUncommon = COLBURBERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -14183,6 +14616,7 @@ Color = Purple Shape = Quadruped Kind = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. +Generation = 4 WildItemUncommon = PECHABERRY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -14216,6 +14650,7 @@ Color = Purple Shape = Quadruped Kind = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. +Generation = 4 WildItemUncommon = PECHABERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -14248,6 +14683,7 @@ Color = Green Shape = Head Kind = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -14281,6 +14717,7 @@ Color = Green Shape = HeadArms Kind = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -14313,6 +14750,7 @@ Color = Brown Shape = HeadLegs Kind = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14346,6 +14784,7 @@ Color = Pink Shape = Bipedal Kind = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. +Generation = 4 WildItemUncommon = LEPPABERRY BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -14380,6 +14819,7 @@ Color = Pink Shape = Bipedal Kind = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. +Generation = 4 WildItemCommon = OVALSTONE WildItemUncommon = LUCKYEGG BattlerPlayerX = -2 @@ -14416,6 +14856,7 @@ Color = Black Shape = Winged Kind = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -14449,6 +14890,7 @@ Color = Purple Shape = HeadBase Kind = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -14481,6 +14923,7 @@ Color = Blue Shape = BipedalTail Kind = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. +Generation = 4 WildItemUncommon = HABANBERRY BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -14514,6 +14957,7 @@ Color = Blue Shape = BipedalTail Kind = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. +Generation = 4 WildItemUncommon = HABANBERRY BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -14547,6 +14991,7 @@ Color = Blue Shape = BipedalTail Kind = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. +Generation = 4 WildItemUncommon = HABANBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -14579,6 +15024,7 @@ Color = Black Shape = Bipedal Kind = Big Eater Pokedex = It wolfs down its weight in food once a day, swallowing food whole with almost no chewing. +Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS @@ -14615,6 +15061,7 @@ Color = Blue Shape = BipedalTail Kind = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -14647,6 +15094,7 @@ Color = Blue Shape = BipedalTail Kind = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14678,6 +15126,7 @@ Color = Brown Shape = Quadruped Kind = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14709,6 +15158,7 @@ Color = Brown Shape = Quadruped Kind = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14741,6 +15191,7 @@ Color = Purple Shape = Insectoid Kind = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -14774,6 +15225,7 @@ Color = Purple Shape = Insectoid Kind = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -14807,6 +15259,7 @@ Color = Blue Shape = Bipedal Kind = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. +Generation = 4 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -14840,6 +15293,7 @@ Color = Blue Shape = Bipedal Kind = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. +Generation = 4 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -14871,6 +15325,7 @@ Color = Green Shape = Multiped Kind = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. +Generation = 4 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -14902,6 +15357,7 @@ Color = Blue Shape = Finned Kind = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. +Generation = 4 WildItemUncommon = RINDOBERRY BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -14934,6 +15390,7 @@ Color = Blue Shape = Finned Kind = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. +Generation = 4 WildItemUncommon = RINDOBERRY BattlerPlayerX = -8 BattlerPlayerY = 0 @@ -14967,6 +15424,7 @@ Color = Blue Shape = Winged Kind = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -15001,6 +15459,7 @@ Color = White Shape = BipedalTail Kind = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. +Generation = 4 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -15034,6 +15493,7 @@ Color = White Shape = BipedalTail Kind = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. +Generation = 4 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15066,6 +15526,7 @@ Color = Black Shape = BipedalTail Kind = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. +Generation = 4 WildItemCommon = GRIPCLAW WildItemUncommon = QUICKCLAW BattlerPlayerX = -4 @@ -15099,6 +15560,7 @@ Color = Gray Shape = HeadArms Kind = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15130,6 +15592,7 @@ Color = Pink Shape = Bipedal Kind = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. +Generation = 4 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -15162,6 +15625,7 @@ Color = Gray Shape = BipedalTail Kind = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -15192,6 +15656,7 @@ Color = Blue Shape = Bipedal Kind = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15222,6 +15687,7 @@ Color = Yellow Shape = BipedalTail Kind = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. +Generation = 4 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15253,6 +15719,7 @@ Color = Red Shape = BipedalTail Kind = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. +Generation = 4 WildItemUncommon = MAGMARIZER BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -15285,6 +15752,7 @@ Color = White Shape = Winged Kind = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15316,6 +15784,7 @@ Color = Green Shape = MultiWinged Kind = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. +Generation = 4 WildItemUncommon = WIDELENS BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -15347,6 +15816,7 @@ Color = Green Shape = Quadruped Kind = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -15377,6 +15847,7 @@ Color = Blue Shape = Quadruped Kind = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -15408,6 +15879,7 @@ Color = Purple Shape = Winged Kind = Fang Scorp Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15439,6 +15911,7 @@ Color = Brown Shape = Quadruped Kind = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -7 @@ -15469,6 +15942,7 @@ Color = Red Shape = HeadArms Kind = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15500,6 +15974,7 @@ Color = White Shape = Bipedal Kind = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15531,6 +16006,7 @@ Color = Gray Shape = MultiBody Kind = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. +Generation = 4 WildItemUncommon = HARDSTONE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -15561,6 +16037,7 @@ Color = Black Shape = HeadArms Kind = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. +Generation = 4 WildItemUncommon = KASIBBERRY BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -15593,6 +16070,7 @@ Color = White Shape = HeadArms Kind = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. +Generation = 4 WildItemUncommon = BABIRIBERRY BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -15625,6 +16103,7 @@ Shape = Head Kind = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Normal Rotom +Generation = 4 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15654,6 +16133,7 @@ Color = Yellow Shape = BipedalTail Kind = Knowledge Pokedex = Known as “The Being of Knowledge.” It is said that it can wipe out the memory of those who see its eyes. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15683,6 +16163,7 @@ Color = Pink Shape = BipedalTail Kind = Emotion Pokedex = Known as “The Being of Emotion.” It taught humans the nobility of sorrow, pain, and joy. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -15712,6 +16193,7 @@ Color = Blue Shape = BipedalTail Kind = Willpower Pokedex = Known as “The Being of Willpower.” It sleeps at the bottom of a lake to keep the world in balance. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 9 @@ -15743,6 +16225,7 @@ Color = White Shape = Quadruped Kind = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15774,6 +16257,7 @@ Color = Purple Shape = BipedalTail Kind = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -15805,6 +16289,7 @@ Color = Brown Shape = Quadruped Kind = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -15834,6 +16319,7 @@ Color = White Shape = Bipedal Kind = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -15866,6 +16352,7 @@ Shape = Multiped Kind = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -15895,6 +16382,7 @@ Color = Yellow Shape = Serpentine Kind = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15924,6 +16412,7 @@ Color = Blue Shape = HeadArms Kind = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -15953,6 +16442,7 @@ Color = Blue Shape = Bipedal Kind = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -15982,6 +16472,7 @@ Color = Black Shape = Bipedal Kind = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16012,6 +16503,7 @@ Shape = Quadruped Kind = Gratitude Pokedex = It lives in flower patches and avoids detection by curling up to look like a flowering plant. FormName = Land Forme +Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -16045,6 +16537,7 @@ Shape = Quadruped Kind = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16075,6 +16568,7 @@ Color = Yellow Shape = Bipedal Kind = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -16106,6 +16600,7 @@ Color = Green Shape = BipedalTail Kind = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -16137,6 +16632,7 @@ Color = Green Shape = BipedalTail Kind = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -16168,6 +16664,7 @@ Color = Green Shape = Serpentine Kind = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -16199,6 +16696,7 @@ Color = Red Shape = Quadruped Kind = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16231,6 +16729,7 @@ Color = Red Shape = BipedalTail Kind = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16263,6 +16762,7 @@ Color = Red Shape = BipedalTail Kind = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16294,6 +16794,7 @@ Color = Blue Shape = BipedalTail Kind = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16325,6 +16826,7 @@ Color = Blue Shape = BipedalTail Kind = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -16356,6 +16858,7 @@ Color = Blue Shape = Quadruped Kind = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16387,6 +16890,7 @@ Color = Brown Shape = Quadruped Kind = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16418,6 +16922,7 @@ Color = Brown Shape = BipedalTail Kind = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -16449,6 +16954,7 @@ Color = Brown Shape = Quadruped Kind = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16480,6 +16986,7 @@ Color = Gray Shape = Quadruped Kind = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -16511,6 +17018,7 @@ Color = Gray Shape = Quadruped Kind = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16542,6 +17050,7 @@ Color = Purple Shape = Quadruped Kind = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16573,6 +17082,7 @@ Color = Purple Shape = Quadruped Kind = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16604,6 +17114,7 @@ Color = Green Shape = BipedalTail Kind = Grass Monkey Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leaves are known to relieve stress. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = OCCABERRY BattlerPlayerX = 0 @@ -16637,6 +17148,7 @@ Color = Green Shape = BipedalTail Kind = Thorn Monkey Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = OCCABERRY BattlerPlayerX = -1 @@ -16670,6 +17182,7 @@ Color = Red Shape = BipedalTail Kind = High Temp Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600º F. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = PASSHOBERRY BattlerPlayerX = 0 @@ -16703,6 +17216,7 @@ Color = Red Shape = BipedalTail Kind = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = PASSHOBERRY BattlerPlayerX = 0 @@ -16736,6 +17250,7 @@ Color = Blue Shape = BipedalTail Kind = Spray Pokedex = It does not thrive in dry environments. It keeps itself damp by shooting water stored in its head tuft from its tail. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = RINDOBERRY BattlerPlayerX = 0 @@ -16769,6 +17284,7 @@ Color = Blue Shape = BipedalTail Kind = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = RINDOBERRY BattlerPlayerX = 0 @@ -16802,6 +17318,7 @@ Color = Pink Shape = Quadruped Kind = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16833,6 +17350,7 @@ Color = Pink Shape = Bipedal Kind = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. +Generation = 5 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -16865,6 +17383,7 @@ Color = Gray Shape = Winged Kind = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16897,6 +17416,7 @@ Color = Gray Shape = Winged Kind = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16929,6 +17449,7 @@ Color = Gray Shape = Winged Kind = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16960,6 +17481,7 @@ Color = Black Shape = Quadruped Kind = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. +Generation = 5 WildItemCommon = CHERIBERRY BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -16992,6 +17514,7 @@ Color = Black Shape = Quadruped Kind = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. +Generation = 5 WildItemCommon = CHERIBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17024,6 +17547,7 @@ Color = Blue Shape = HeadLegs Kind = Mantle Pokedex = They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 0 @@ -17057,6 +17581,7 @@ Color = Blue Shape = Multiped Kind = Ore Pokedex = Because its energy was too great to be contained, the energy leaked and formed orange crystals. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 2 @@ -17090,6 +17615,7 @@ Color = Blue Shape = Multiped Kind = Compressed Pokedex = The solar energy absorbed by its body's orange crystals is magnified internally and fired from its mouth. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 0 @@ -17124,6 +17650,7 @@ Color = Blue Shape = Winged Kind = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -17156,6 +17683,7 @@ Color = Blue Shape = Winged Kind = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -17187,6 +17715,7 @@ Color = Gray Shape = BipedalTail Kind = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -17219,6 +17748,7 @@ Color = Gray Shape = Bipedal Kind = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17250,6 +17780,7 @@ Color = Pink Shape = BipedalTail Kind = Hearing Pokedex = Its auditory sense is astounding. It has a radar-like ability to understand its surrounding through slight sounds. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = 2 @@ -17283,6 +17814,7 @@ Color = Gray Shape = Bipedal Kind = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -17314,6 +17846,7 @@ Color = Gray Shape = Bipedal Kind = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17345,6 +17878,7 @@ Color = Brown Shape = Bipedal Kind = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17376,6 +17910,7 @@ Color = Blue Shape = Finned Kind = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. +Generation = 5 WildItemCommon = PECHABERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17409,6 +17944,7 @@ Color = Blue Shape = BipedalTail Kind = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. +Generation = 5 WildItemCommon = PECHABERRY BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -17442,6 +17978,7 @@ Color = Blue Shape = Bipedal Kind = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. +Generation = 5 WildItemCommon = PECHABERRY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17473,6 +18010,7 @@ Color = Red Shape = Bipedal Kind = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. +Generation = 5 WildItemUncommon = BLACKBELT WildItemRare = EXPERTBELT BattlerPlayerX = 2 @@ -17505,6 +18043,7 @@ Color = Blue Shape = Bipedal Kind = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. +Generation = 5 WildItemUncommon = BLACKBELT WildItemRare = EXPERTBELT BattlerPlayerX = 2 @@ -17539,6 +18078,7 @@ Color = Yellow Shape = Insectoid Kind = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17572,6 +18112,7 @@ Color = Green Shape = HeadArms Kind = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -17605,6 +18146,7 @@ Color = Yellow Shape = Bipedal Kind = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17638,6 +18180,7 @@ Color = Red Shape = Insectoid Kind = Centipede Pokedex = It discovers what is going on around it by using the feelers on its head and tail. It is brutally aggresive. +Generation = 5 WildItemCommon = PECHABERRY WildItemUncommon = POISONBARB BattlerPlayerX = -3 @@ -17672,6 +18215,7 @@ Color = Gray Shape = Head Kind = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. +Generation = 5 WildItemCommon = PECHABERRY WildItemUncommon = POISONBARB BattlerPlayerX = 4 @@ -17706,6 +18250,7 @@ Color = Red Shape = Insectoid Kind = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. +Generation = 5 WildItemCommon = PECHABERRY WildItemUncommon = POISONBARB BattlerPlayerX = 2 @@ -17739,6 +18284,7 @@ Color = Green Shape = Head Kind = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -17770,6 +18316,7 @@ Color = Green Shape = Bipedal Kind = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17801,6 +18348,7 @@ Color = Green Shape = HeadBase Kind = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17832,6 +18380,7 @@ Color = Green Shape = HeadBase Kind = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -17864,6 +18413,7 @@ Shape = Finned Kind = Hostile Pokedex = Red and blue Basculin usually do not get along, but sometimes members of one school mingle with the other's schooL. FormName = Red-Striped +Generation = 5 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -17897,6 +18447,7 @@ Color = Brown Shape = Quadruped Kind = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -17929,6 +18480,7 @@ Color = Brown Shape = Quadruped Kind = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -17961,6 +18513,7 @@ Color = Red Shape = BipedalTail Kind = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -17992,6 +18545,7 @@ Color = Red Shape = Bipedal Kind = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. +Generation = 5 WildItemCommon = RAWSTBERRY BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -18025,6 +18579,7 @@ Shape = Quadruped Kind = Blazing Pokedex = When weakened in battle, it transforms into a stone statue. Then it sharpens its mind and fights on mentally. FormName = Standard Mode +Generation = 5 WildItemCommon = RAWSTBERRY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -18057,6 +18612,7 @@ Color = Green Shape = HeadBase Kind = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. +Generation = 5 WildItemUncommon = MIRACLESEED BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -18090,6 +18646,7 @@ Color = Red Shape = Insectoid Kind = Rock Inn Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon remains agitated until it locates a replacement. +Generation = 5 WildItemUncommon = HARDSTONE WildItemRare = RAREBONE BattlerPlayerX = 2 @@ -18124,6 +18681,7 @@ Color = Red Shape = Insectoid Kind = Stone Home Pokedex = It possesses legs of enormous strength, enabling it to carry heavy slabs for many days, even when crossing arid land. +Generation = 5 WildItemUncommon = HARDSTONE WildItemRare = RAREBONE BattlerPlayerX = -1 @@ -18158,6 +18716,7 @@ Color = Yellow Shape = BipedalTail Kind = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. +Generation = 5 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18191,6 +18750,7 @@ Color = Red Shape = BipedalTail Kind = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. +Generation = 5 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18224,6 +18784,7 @@ Color = Black Shape = Winged Kind = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. +Generation = 5 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -18254,6 +18815,7 @@ Color = Black Shape = HeadArms Kind = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. +Generation = 5 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18285,6 +18847,7 @@ Color = Yellow Shape = HeadBase Kind = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. +Generation = 5 WildItemUncommon = SPELLTAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18318,6 +18881,7 @@ Color = Blue Shape = Quadruped Kind = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18350,6 +18914,7 @@ Color = Blue Shape = BipedalTail Kind = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -18381,6 +18946,7 @@ Color = Yellow Shape = Winged Kind = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18412,6 +18978,7 @@ Color = Yellow Shape = Winged Kind = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. +Generation = 5 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18443,6 +19010,7 @@ Color = Green Shape = Bipedal Kind = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. +Generation = 5 WildItemUncommon = BLACKSLUDGE WildItemRare = NUGGET BattlerPlayerX = -1 @@ -18476,6 +19044,7 @@ Color = Green Shape = Bipedal Kind = Trash Heap Pokedex = They absorb garbage and make it part of their bodies. They shoot a poisonous liquid from their right-hand fingertips. +Generation = 5 WildItemCommon = BLACKSLUDGE WildItemUncommon = NUGGET WildItemRare = BIGNUGGET @@ -18509,6 +19078,7 @@ Color = Gray Shape = Quadruped Kind = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18539,6 +19109,7 @@ Color = Gray Shape = BipedalTail Kind = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18570,6 +19141,7 @@ Color = Gray Shape = Quadruped Kind = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. +Generation = 5 WildItemCommon = CHESTOBERRY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -18602,6 +19174,7 @@ Color = Gray Shape = Quadruped Kind = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. +Generation = 5 WildItemCommon = CHESTOBERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18634,6 +19207,7 @@ Color = Purple Shape = Bipedal Kind = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. +Generation = 5 WildItemCommon = PERSIMBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18666,6 +19240,7 @@ Color = Purple Shape = Bipedal Kind = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. +Generation = 5 WildItemCommon = PERSIMBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18698,6 +19273,7 @@ Color = Purple Shape = Bipedal Kind = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. +Generation = 5 WildItemCommon = PERSIMBERRY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18730,6 +19306,7 @@ Color = Green Shape = Head Kind = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. +Generation = 5 WildItemCommon = PERSIMBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18762,6 +19339,7 @@ Color = Green Shape = Head Kind = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. +Generation = 5 WildItemCommon = PERSIMBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18794,6 +19372,7 @@ Color = Green Shape = HeadArms Kind = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. +Generation = 5 WildItemCommon = PERSIMBERRY BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -18827,6 +19406,7 @@ Color = Blue Shape = Winged Kind = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18859,6 +19439,7 @@ Color = White Shape = Winged Kind = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18890,6 +19471,7 @@ Color = White Shape = HeadBase Kind = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -18921,6 +19503,7 @@ Color = White Shape = HeadBase Kind = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18952,6 +19535,7 @@ Color = White Shape = MultiBody Kind = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18985,6 +19569,7 @@ Shape = Quadruped Kind = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19018,6 +19603,7 @@ Shape = Quadruped Kind = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -19050,6 +19636,7 @@ Color = White Shape = Quadruped Kind = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. +Generation = 5 WildItemCommon = CHERIBERRY WildItemUncommon = CHERIBERRY WildItemRare = CHERIBERRY @@ -19084,6 +19671,7 @@ Color = Blue Shape = Bipedal Kind = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19116,6 +19704,7 @@ Color = Gray Shape = HeadArms Kind = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19148,6 +19737,7 @@ Color = White Shape = HeadArms Kind = Mushroom Pokedex = For some reason, this Pokémon resembles a Poké Ball. They release poison spores to repel those who try to catch them. +Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM @@ -19183,6 +19773,7 @@ Color = White Shape = HeadArms Kind = Mushroom Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémon are fooled by this. +Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM @@ -19218,6 +19809,7 @@ Color = White Shape = Multiped Kind = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19250,6 +19842,7 @@ Color = White Shape = Multiped Kind = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19281,6 +19874,7 @@ Color = Pink Shape = Finned Kind = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19313,6 +19907,7 @@ Color = Yellow Shape = Insectoid Kind = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -19345,6 +19940,7 @@ Color = Yellow Shape = Insectoid Kind = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -19376,6 +19972,7 @@ Color = Gray Shape = Head Kind = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. +Generation = 5 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -19408,6 +20005,7 @@ Color = Gray Shape = Multiped Kind = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. +Generation = 5 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -19439,6 +20037,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -19470,6 +20069,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19501,6 +20101,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19530,6 +20131,7 @@ Color = White Shape = Finned Kind = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19560,6 +20162,7 @@ Color = Blue Shape = Finned Kind = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19590,6 +20193,7 @@ Color = Blue Shape = Finned Kind = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. +Generation = 5 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -7 @@ -19621,6 +20225,7 @@ Color = Blue Shape = BipedalTail Kind = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19652,6 +20257,7 @@ Color = Brown Shape = Bipedal Kind = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19684,6 +20290,7 @@ Color = White Shape = HeadBase Kind = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19716,6 +20323,7 @@ Color = Black Shape = HeadArms Kind = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -19748,6 +20356,7 @@ Color = Black Shape = HeadArms Kind = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19779,6 +20388,7 @@ Color = Green Shape = BipedalTail Kind = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19810,6 +20420,7 @@ Color = Green Shape = BipedalTail Kind = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. +Generation = 5 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19841,6 +20452,7 @@ Color = Yellow Shape = BipedalTail Kind = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19872,6 +20484,7 @@ Color = White Shape = BipedalTail Kind = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. +Generation = 5 WildItemCommon = ASPEARBERRY BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -19904,6 +20517,7 @@ Color = White Shape = Quadruped Kind = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. +Generation = 5 WildItemCommon = ASPEARBERRY BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -19934,6 +20548,7 @@ Color = Blue Shape = Head Kind = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -19966,6 +20581,7 @@ Color = Red Shape = Head Kind = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19997,6 +20613,7 @@ Color = Red Shape = HeadArms Kind = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -20029,6 +20646,7 @@ Color = Brown Shape = Finned Kind = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. +Generation = 5 WildItemUncommon = SOFTSAND BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -20061,6 +20679,7 @@ Color = Yellow Shape = BipedalTail Kind = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20092,6 +20711,7 @@ Color = Purple Shape = BipedalTail Kind = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20123,6 +20743,7 @@ Color = Red Shape = BipedalTail Kind = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. +Generation = 5 WildItemUncommon = DRAGONFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -20155,6 +20776,7 @@ Color = Green Shape = Bipedal Kind = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. +Generation = 5 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -20188,6 +20810,7 @@ Color = Green Shape = Bipedal Kind = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. +Generation = 5 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -20221,6 +20844,7 @@ Color = Red Shape = Bipedal Kind = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20253,6 +20877,7 @@ Color = Red Shape = Bipedal Kind = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20284,6 +20909,7 @@ Color = Brown Shape = Quadruped Kind = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -10 @@ -20315,6 +20941,7 @@ Color = White Shape = Winged Kind = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20347,6 +20974,7 @@ Color = Red Shape = Winged Kind = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -20379,6 +21007,7 @@ Color = Brown Shape = Winged Kind = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20411,6 +21040,7 @@ Color = Brown Shape = Winged Kind = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20442,6 +21072,7 @@ Color = Red Shape = BipedalTail Kind = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. +Generation = 5 WildItemRare = FLAMEORB BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -20475,6 +21106,7 @@ Color = Gray Shape = Insectoid Kind = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20506,6 +21138,7 @@ Color = Blue Shape = Quadruped Kind = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20537,6 +21170,7 @@ Color = Blue Shape = Quadruped Kind = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20568,6 +21202,7 @@ Color = Blue Shape = BipedalTail Kind = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20600,6 +21235,7 @@ Color = White Shape = Insectoid Kind = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -20632,6 +21268,7 @@ Color = White Shape = MultiWinged Kind = Sun Pokedex = A sea of fire engulfs the surroundings of their battles, since they use their six wings to scatter their ember scales. +Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER @@ -20665,6 +21302,7 @@ Color = Blue Shape = Quadruped Kind = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20695,6 +21333,7 @@ Color = Gray Shape = Quadruped Kind = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -20725,6 +21364,7 @@ Color = Green Shape = Quadruped Kind = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20756,6 +21396,7 @@ Shape = HeadArms Kind = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20788,6 +21429,7 @@ Shape = HeadArms Kind = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20818,6 +21460,7 @@ Color = White Shape = Winged Kind = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -20848,6 +21491,7 @@ Color = Black Shape = BipedalTail Kind = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -20880,6 +21524,7 @@ Shape = HeadArms Kind = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20910,6 +21555,7 @@ Color = Gray Shape = BipedalTail Kind = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20941,6 +21587,7 @@ Shape = Quadruped Kind = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20972,6 +21619,7 @@ Shape = Bipedal Kind = Melody Pokedex = Many famous songs have been inspired by the melodies that Meloetta plays. FormName = Aria Forme +Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE @@ -21006,6 +21654,7 @@ Shape = Bipedal Kind = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 diff --git a/PBS/Gen 5/pokemonforms.txt b/PBS/Gen 5/pokemonforms.txt index 6fe5cbd88..6786b657a 100644 --- a/PBS/Gen 5/pokemonforms.txt +++ b/PBS/Gen 5/pokemonforms.txt @@ -3,6 +3,7 @@ [PICHU,1] FormName = Spiky-Eared BattlerEnemyX = 3 +Generation = 4 Evolutions = PIKACHU,None, #------------------------------- [UNOWN,1] @@ -81,10 +82,12 @@ FormName = Yield FormName = Zoom #------------------------------- [UNOWN,26] -FormName = ????? +FormName = ? +Generation = 3 #------------------------------- [UNOWN,27] -FormName = !!!!! +FormName = ! +Generation = 3 #------------------------------- [CASTFORM,1] FormName = Sunny Form diff --git a/PBS/Gen 7/pokemon.txt b/PBS/Gen 7/pokemon.txt index fe5904dab..476785c03 100644 --- a/PBS/Gen 7/pokemon.txt +++ b/PBS/Gen 7/pokemon.txt @@ -26,6 +26,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -59,6 +60,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -92,6 +94,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -124,6 +127,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. +Generation = 1 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -156,6 +160,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -189,6 +194,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -221,6 +227,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -253,6 +260,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -285,6 +293,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -316,6 +325,7 @@ Shape = Insectoid Habitat = Forest Kind = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -347,6 +357,7 @@ Shape = Serpentine Habitat = Forest Kind = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -380,6 +391,7 @@ Shape = MultiWinged Habitat = Forest Kind = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. +Generation = 1 WildItemUncommon = SILVERPOWDER BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -413,6 +425,7 @@ Shape = Insectoid Habitat = Forest Kind = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -445,6 +458,7 @@ Shape = Serpentine Habitat = Forest Kind = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -478,6 +492,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -512,6 +527,7 @@ Shape = Winged Habitat = Forest Kind = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -545,6 +561,7 @@ Shape = Winged Habitat = Forest Kind = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 8 @@ -578,6 +595,7 @@ Shape = Winged Habitat = Forest Kind = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -610,6 +628,7 @@ Shape = Quadruped Habitat = Grassland Kind = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. +Generation = 1 WildItemUncommon = CHILANBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -643,6 +662,7 @@ Shape = Quadruped Habitat = Grassland Kind = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. +Generation = 1 WildItemUncommon = CHILANBERRY BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -677,6 +697,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -711,6 +732,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 10 BattlerPlayerY = 0 @@ -744,6 +766,7 @@ Shape = Serpentine Habitat = Grassland Kind = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -776,6 +799,7 @@ Shape = Serpentine Habitat = Grassland Kind = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -807,6 +831,7 @@ Shape = Quadruped Habitat = Forest Kind = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. +Generation = 1 WildItemUncommon = LIGHTBALL BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -840,6 +865,7 @@ Shape = BipedalTail Habitat = Forest Kind = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 11 @@ -872,6 +898,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. +Generation = 1 WildItemUncommon = GRIPCLAW BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -905,6 +932,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. +Generation = 1 WildItemUncommon = GRIPCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -938,6 +966,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -970,6 +999,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1003,6 +1033,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1035,6 +1066,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1067,6 +1099,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1100,6 +1133,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -1131,6 +1165,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Fairy Pokedex = On every night of a full moon, they come out to play. When dawn arrives, the tired Clefairy go to sleep nestled up against each other in deep and quiet mountains. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1164,6 +1199,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Fairy Pokedex = A Clefable uses its wings to skip lightly as if it were flying. Its bouncy step lets it even walk on water. On quiet, moonlit nights, it strolls on lakes. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -1197,6 +1233,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fox Pokedex = It can freely control fire, making fiery orbs fly like will-o'-the-wisps. Just before evolution, its six tails grow hot as if on fire. +Generation = 1 WildItemUncommon = CHARCOAL BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -1230,6 +1267,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fox Pokedex = It has long been said that each of the nine tails embody an enchanted power. A long-lived Ninetales will have fur that shines like gold. +Generation = 1 WildItemUncommon = CHARCOAL BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -1263,6 +1301,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1297,6 +1336,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1331,6 +1371,7 @@ Shape = Winged Habitat = Cave Kind = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1364,6 +1405,7 @@ Shape = Winged Habitat = Cave Kind = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. +Generation = 1 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -1398,6 +1440,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. +Generation = 1 WildItemUncommon = ABSORBBULB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -1432,6 +1475,7 @@ Shape = Bipedal Habitat = Grassland Kind = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. +Generation = 1 WildItemUncommon = ABSORBBULB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -1466,6 +1510,7 @@ Shape = Bipedal Habitat = Grassland Kind = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. +Generation = 1 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1500,6 +1545,7 @@ Shape = Insectoid Habitat = Forest Kind = Mushroom Pokedex = A Paras has parasitic tochukaso mushrooms growing on its back. They grow by drawing nutrients from the host. They are valued as a medicine for long life. +Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 5 @@ -1535,6 +1581,7 @@ Shape = Insectoid Habitat = Forest Kind = Mushroom Pokedex = Parasect are known to infest the roots of large trees en masse and drain nutrients. When an infested tree dies, they move onto another tree all at once. +Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 1 @@ -1570,6 +1617,7 @@ Shape = Bipedal Habitat = Forest Kind = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. +Generation = 1 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1603,6 +1651,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. +Generation = 1 WildItemUncommon = SHEDSHELL BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -1636,6 +1685,7 @@ Shape = HeadBase Habitat = Cave Kind = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. +Generation = 1 WildItemUncommon = SOFTSAND BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1669,6 +1719,7 @@ Shape = MultiBody Habitat = Cave Kind = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. +Generation = 1 WildItemUncommon = SOFTSAND BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -1702,6 +1753,7 @@ Shape = Quadruped Habitat = Urban Kind = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -1735,6 +1787,7 @@ Shape = Quadruped Habitat = Urban Kind = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -1768,6 +1821,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1800,6 +1854,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -1832,6 +1887,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1864,6 +1920,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1896,6 +1953,7 @@ Shape = Quadruped Habitat = Grassland Kind = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1928,6 +1986,7 @@ Shape = Quadruped Habitat = Grassland Kind = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -1960,6 +2019,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 9 @@ -1992,6 +2052,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = 10 BattlerPlayerY = 0 @@ -2026,6 +2087,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -2059,6 +2121,7 @@ Shape = BipedalTail Habitat = Urban Kind = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2092,6 +2155,7 @@ Shape = BipedalTail Habitat = Urban Kind = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2125,6 +2189,7 @@ Shape = Bipedal Habitat = Urban Kind = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -2158,6 +2223,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. +Generation = 1 WildItemUncommon = FOCUSBAND BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2191,6 +2257,7 @@ Shape = Bipedal Habitat = Mountain Kind = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. +Generation = 1 WildItemUncommon = FOCUSBAND BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -2224,6 +2291,7 @@ Shape = Bipedal Habitat = Mountain Kind = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. +Generation = 1 WildItemUncommon = FOCUSBAND BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -2258,6 +2326,7 @@ Shape = Bipedal Habitat = Forest Kind = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -2291,6 +2360,7 @@ Shape = HeadBase Habitat = Forest Kind = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2324,6 +2394,7 @@ Shape = HeadBase Habitat = Forest Kind = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -2357,6 +2428,7 @@ Shape = Multiped Habitat = Sea Kind = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -2391,6 +2463,7 @@ Shape = Multiped Habitat = Sea Kind = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -2425,6 +2498,7 @@ Shape = HeadArms Habitat = Mountain Kind = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -2459,6 +2533,7 @@ Shape = Bipedal Habitat = Mountain Kind = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -2493,6 +2568,7 @@ Shape = Bipedal Habitat = Mountain Kind = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -2526,6 +2602,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. +Generation = 1 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2558,6 +2635,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2591,6 +2669,7 @@ Shape = Quadruped Habitat = WatersEdge Kind = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. +Generation = 1 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -2625,6 +2704,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -2658,6 +2738,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. +Generation = 1 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2692,6 +2773,7 @@ Shape = MultiBody Habitat = RoughTerrain Kind = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. +Generation = 1 WildItemUncommon = METALCOAT BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -2727,6 +2809,7 @@ Shape = Winged Habitat = Grassland Kind = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. +Generation = 1 WildItemUncommon = STICK BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -2761,6 +2844,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 14 BattlerPlayerY = 0 @@ -2795,6 +2879,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 8 BattlerPlayerY = 0 @@ -2828,6 +2913,7 @@ Shape = Finned Habitat = Sea Kind = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. +Generation = 1 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -2861,6 +2947,7 @@ Shape = Finned Habitat = Sea Kind = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -2893,6 +2980,7 @@ Shape = HeadArms Habitat = Urban Kind = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. +Generation = 1 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2926,6 +3014,7 @@ Shape = HeadArms Habitat = Urban Kind = Sludge Pokedex = It prefers warm and humid habitats. In the summertime, the toxic substances in its body intensify, making Muk reek like putrid kitchen garbage. +Generation = 1 WildItemCommon = BLACKSLUDGE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -2959,6 +3048,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to make a place to sleep. While asleep, it closes its shell, but leaves its tongue hanging out. +Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = -1 @@ -2994,6 +3084,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = It swims in the sea by swallowing water, then jetting it out toward the rear. The Cloyster shoots spikes from its shell using the same system. +Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = 0 @@ -3028,6 +3119,7 @@ Shape = Head Habitat = Cave Kind = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -3060,6 +3152,7 @@ Shape = HeadArms Habitat = Cave Kind = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3092,6 +3185,7 @@ Shape = BipedalTail Habitat = Cave Kind = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3125,6 +3219,7 @@ Shape = Serpentine Habitat = Cave Kind = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -3158,6 +3253,7 @@ Shape = Bipedal Habitat = Grassland Kind = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -3190,6 +3286,7 @@ Shape = Bipedal Habitat = Grassland Kind = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3222,6 +3319,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3254,6 +3352,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -3285,6 +3384,7 @@ Shape = Head Habitat = Urban Kind = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3317,6 +3417,7 @@ Shape = Head Habitat = Urban Kind = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3350,6 +3451,7 @@ Shape = MultiBody Habitat = Forest Kind = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. +Generation = 1 WildItemUncommon = PSYCHICSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -3384,6 +3486,7 @@ Shape = HeadLegs Habitat = Forest Kind = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3416,6 +3519,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. +Generation = 1 WildItemUncommon = THICKCLUB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -3449,6 +3553,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. +Generation = 1 WildItemUncommon = THICKCLUB BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3481,6 +3586,7 @@ Shape = Bipedal Habitat = Urban Kind = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3512,6 +3618,7 @@ Shape = Bipedal Habitat = Urban Kind = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3544,6 +3651,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. +Generation = 1 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3577,6 +3685,7 @@ Shape = Head Habitat = Urban Kind = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. +Generation = 1 WildItemUncommon = SMOKEBALL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3609,6 +3718,7 @@ Shape = MultiBody Habitat = Urban Kind = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. +Generation = 1 WildItemUncommon = SMOKEBALL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3643,6 +3753,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3676,6 +3787,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3709,6 +3821,7 @@ Shape = BipedalTail Habitat = Urban Kind = Egg Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so delicious, they are eagerly devoured by even those who have lost their appetite. +Generation = 1 WildItemCommon = LUCKYPUNCH BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -3743,6 +3856,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3776,6 +3890,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3808,6 +3923,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -3841,6 +3957,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -3875,6 +3992,7 @@ Shape = Finned Habitat = WatersEdge Kind = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. +Generation = 1 WildItemUncommon = MYSTICWATER BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -3908,6 +4026,7 @@ Shape = Finned Habitat = WatersEdge Kind = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. +Generation = 1 WildItemUncommon = MYSTICWATER BattlerPlayerX = -8 BattlerPlayerY = 0 @@ -3940,6 +4059,7 @@ Shape = HeadBase Habitat = Sea Kind = Star Shape Pokedex = It gathers with others in the night and makes its red core glow on and off with the twinkling stars. It can regenerate limbs if they are severed from its body. +Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE BattlerPlayerX = 3 @@ -3975,6 +4095,7 @@ Shape = HeadBase Habitat = Sea Kind = Mysterious Pokedex = People in ancient times imagined that Starmie were transformed from the reflections of stars that twinkled on gentle waves at night. +Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE BattlerPlayerX = 2 @@ -4010,6 +4131,7 @@ Shape = Bipedal Habitat = Urban Kind = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4043,6 +4165,7 @@ Shape = MultiWinged Habitat = Grassland Kind = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -4076,6 +4199,7 @@ Shape = Bipedal Habitat = Urban Kind = Human Shape Pokedex = A Jynx sashays rhythmically as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without noticing. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -4107,6 +4231,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. +Generation = 1 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -4140,6 +4265,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. +Generation = 1 WildItemUncommon = MAGMARIZER BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -4174,6 +4300,7 @@ Shape = Bipedal Habitat = Forest Kind = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -4205,6 +4332,7 @@ Shape = Quadruped Habitat = Grassland Kind = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4236,6 +4364,7 @@ Shape = Finned Habitat = WatersEdge Kind = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4269,6 +4398,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. +Generation = 1 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4302,6 +4432,7 @@ Shape = Finned Habitat = Sea Kind = Transport Pokedex = People have driven Lapras almost to the point of extinction. In the evenings, it is said to sing plaintively as it seeks what few others of its kind still remain. +Generation = 1 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER @@ -4335,6 +4466,7 @@ Shape = Head Habitat = Urban Kind = Transform Pokedex = A Ditto rearranges its cell structure to transform itself. However, if it tries to change based on its memory, it will get details wrong. +Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER BattlerPlayerX = 0 @@ -4369,6 +4501,7 @@ Shape = Quadruped Habitat = Urban Kind = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -4401,6 +4534,7 @@ Shape = Quadruped Habitat = Urban Kind = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4432,6 +4566,7 @@ Shape = Quadruped Habitat = Urban Kind = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -4463,6 +4598,7 @@ Shape = Quadruped Habitat = Urban Kind = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -4494,6 +4630,7 @@ Shape = HeadLegs Habitat = Urban Kind = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy-protected so it cannot be duplicated. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4528,6 +4665,7 @@ Shape = Multiped Habitat = Sea Kind = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4561,6 +4699,7 @@ Shape = Multiped Habitat = Sea Kind = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4594,6 +4733,7 @@ Shape = Insectoid Habitat = Sea Kind = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4627,6 +4767,7 @@ Shape = BipedalTail Habitat = Sea Kind = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. +Generation = 1 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4660,6 +4801,7 @@ Shape = Winged Habitat = Mountain Kind = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4692,6 +4834,7 @@ Shape = Bipedal Habitat = Mountain Kind = Sleeping Pokedex = Snorlax's typical day consists of nothing more than eating and sleeping. It is such a docile Pokémon that there are children who use its big belly as a place to play. +Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS @@ -4727,6 +4870,7 @@ Shape = Winged Habitat = Rare Kind = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -4759,6 +4903,7 @@ Shape = Winged Habitat = Rare Kind = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -4791,6 +4936,7 @@ Shape = Winged Habitat = Rare Kind = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4823,6 +4969,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -4856,6 +5003,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -4890,6 +5038,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -4922,6 +5071,7 @@ Shape = BipedalTail Habitat = Rare Kind = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. +Generation = 1 BattlerPlayerX = 14 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -4952,6 +5102,7 @@ Shape = BipedalTail Habitat = Rare Kind = New Species Pokedex = A Mew is said to possess the genes of all Pokémon. It is capable of making itself invisible at will, so it entirely avoids notice even if it approaches people. +Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -4987,6 +5138,7 @@ Shape = Quadruped Habitat = Grassland Kind = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -5019,6 +5171,7 @@ Shape = Quadruped Habitat = Grassland Kind = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5051,6 +5204,7 @@ Shape = Quadruped Habitat = Grassland Kind = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5083,6 +5237,7 @@ Shape = Bipedal Habitat = Grassland Kind = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -5115,6 +5270,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -5147,6 +5303,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5179,6 +5336,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5211,6 +5369,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5243,6 +5402,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -5275,6 +5435,7 @@ Shape = Quadruped Habitat = Grassland Kind = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5307,6 +5468,7 @@ Shape = Quadruped Habitat = Grassland Kind = Long Body Pokedex = A Furret has a very slim build. When under attack, it can squirm through narrow spaces and get away. In spite of its short limbs, it is very nimble and fleet. +Generation = 2 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -5340,6 +5502,7 @@ Shape = Winged Habitat = Forest Kind = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5373,6 +5536,7 @@ Shape = Winged Habitat = Forest Kind = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5406,6 +5570,7 @@ Shape = Winged Habitat = Forest Kind = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5439,6 +5604,7 @@ Shape = Winged Habitat = Forest Kind = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5472,6 +5638,7 @@ Shape = Insectoid Habitat = Forest Kind = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5505,6 +5672,7 @@ Shape = Insectoid Habitat = Forest Kind = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -5537,6 +5705,7 @@ Shape = MultiWinged Habitat = Cave Kind = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -5570,6 +5739,7 @@ Shape = Finned Habitat = Sea Kind = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. +Generation = 2 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -5604,6 +5774,7 @@ Shape = Finned Habitat = Sea Kind = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. +Generation = 2 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -5637,6 +5808,7 @@ Shape = Quadruped Habitat = Forest Kind = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5670,6 +5842,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Star Shape Pokedex = On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance until daybreak, when they quench their thirst with the morning dew. +Generation = 2 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -5705,6 +5878,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5738,6 +5912,7 @@ Shape = Bipedal Habitat = Forest Kind = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5771,6 +5946,7 @@ Shape = Bipedal Habitat = Forest Kind = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5805,6 +5981,7 @@ Shape = Winged Habitat = Forest Kind = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5838,6 +6015,7 @@ Shape = Winged Habitat = Forest Kind = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -5870,6 +6048,7 @@ Shape = Quadruped Habitat = Grassland Kind = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5902,6 +6081,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5934,6 +6114,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -5965,6 +6146,7 @@ Shape = Bipedal Habitat = Grassland Kind = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. +Generation = 2 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -5999,6 +6181,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -6032,6 +6215,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -6064,6 +6248,7 @@ Shape = Bipedal Habitat = Forest Kind = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -6095,6 +6280,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. +Generation = 2 WildItemUncommon = KINGSROCK BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -6129,6 +6315,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. +Generation = 2 BattlerPlayerX = 9 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -6162,6 +6349,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6195,6 +6383,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. +Generation = 2 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -6227,6 +6416,7 @@ Shape = BipedalTail Habitat = Forest Kind = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. +Generation = 2 BattlerPlayerX = -11 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6260,6 +6450,7 @@ Shape = Head Habitat = Grassland Kind = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6292,6 +6483,7 @@ Shape = Bipedal Habitat = Grassland Kind = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6325,6 +6517,7 @@ Shape = MultiWinged Habitat = Forest Kind = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. +Generation = 2 WildItemUncommon = WIDELENS BattlerPlayerX = -8 BattlerPlayerY = 0 @@ -6360,6 +6553,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -6393,6 +6587,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. +Generation = 2 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -6424,6 +6619,7 @@ Shape = Quadruped Habitat = Urban Kind = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -6455,6 +6651,7 @@ Shape = Quadruped Habitat = Urban Kind = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -6488,6 +6685,7 @@ Shape = Winged Habitat = Forest Kind = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6521,6 +6719,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. +Generation = 2 WildItemUncommon = KINGSROCK BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -6553,6 +6752,7 @@ Shape = Head Habitat = Cave Kind = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6585,6 +6785,7 @@ Habitat = Rare Kind = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = A +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6616,6 +6817,7 @@ Shape = HeadBase Habitat = Cave Kind = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6649,6 +6851,7 @@ Shape = Quadruped Habitat = Grassland Kind = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6681,6 +6884,7 @@ Shape = Head Habitat = Forest Kind = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6714,6 +6918,7 @@ Shape = Head Habitat = Forest Kind = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6746,6 +6951,7 @@ Shape = Serpentine Habitat = Cave Kind = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -6779,6 +6985,7 @@ Shape = Winged Habitat = Mountain Kind = Fly Scorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -6812,6 +7019,7 @@ Shape = Serpentine Habitat = Cave Kind = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. +Generation = 2 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -6845,6 +7053,7 @@ Shape = Bipedal Habitat = Urban Kind = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -6877,6 +7086,7 @@ Shape = BipedalTail Habitat = Urban Kind = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -6910,6 +7120,7 @@ Shape = Finned Habitat = Sea Kind = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. +Generation = 2 WildItemUncommon = POISONBARB BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -6943,6 +7154,7 @@ Shape = MultiWinged Habitat = Grassland Kind = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. +Generation = 2 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -6976,6 +7188,7 @@ Shape = Insectoid Habitat = Mountain Kind = Mold Pokedex = A Shuckle hides under rocks, keeping its body concealed inside its shell while eating stored berries. The berries mix with its body fluids to become a juice. +Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE @@ -7012,6 +7225,7 @@ Shape = Bipedal Habitat = Forest Kind = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -7045,6 +7259,7 @@ Shape = BipedalTail Habitat = Forest Kind = Sharp Claw Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It seeks out unguarded nests and steals eggs for food while the parents are away. +Generation = 2 WildItemUncommon = QUICKCLAW BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -7079,6 +7294,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7111,6 +7327,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7143,6 +7360,7 @@ Shape = Serpentine Habitat = Mountain Kind = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7176,6 +7394,7 @@ Shape = Serpentine Habitat = Mountain Kind = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -7209,6 +7428,7 @@ Shape = Quadruped Habitat = Cave Kind = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7242,6 +7462,7 @@ Shape = Quadruped Habitat = Cave Kind = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7276,6 +7497,7 @@ Shape = Insectoid Habitat = Sea Kind = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. +Generation = 2 WildItemUncommon = LUMINOUSMOSS BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -7309,6 +7531,7 @@ Shape = Finned Habitat = Sea Kind = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. +Generation = 2 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7341,6 +7564,7 @@ Shape = Multiped Habitat = Sea Kind = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7374,6 +7598,7 @@ Shape = Winged Habitat = Mountain Kind = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -7407,6 +7632,7 @@ Shape = Winged Habitat = Sea Kind = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -7440,6 +7666,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. +Generation = 2 WildItemUncommon = METALCOAT BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -7474,6 +7701,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -7507,6 +7735,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -7539,6 +7768,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. +Generation = 2 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -7572,6 +7802,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7604,6 +7835,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -10 @@ -7635,6 +7867,7 @@ Shape = HeadLegs Habitat = Urban Kind = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7668,6 +7901,7 @@ Shape = Quadruped Habitat = Forest Kind = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -7698,6 +7932,7 @@ Shape = BipedalTail Habitat = Urban Kind = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -7730,6 +7965,7 @@ Shape = Bipedal Habitat = Urban Kind = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7762,6 +7998,7 @@ Shape = BipedalTail Habitat = Urban Kind = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -7795,6 +8032,7 @@ Shape = Bipedal Habitat = Urban Kind = Kiss Pokedex = It actively runs about, but also falls often. Whenever it falls, it will check its reflection on a lake's surface to make sure its face hasn't become dirty. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7828,6 +8066,7 @@ Shape = Bipedal Habitat = Grassland Kind = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. +Generation = 2 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -7862,6 +8101,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. +Generation = 2 WildItemUncommon = MAGMARIZER BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -7896,6 +8136,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Milk Cow Pokedex = It gives over five gallons of milk daily. Its sweet milk is enjoyed by children and adults alike. People who can't drink milk turn it into yogurt and eat it instead. +Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK @@ -7930,6 +8171,7 @@ Shape = Bipedal Habitat = Urban Kind = Happiness Pokedex = If it senses sadness with its fluffy fur, a Blissey will rush over to the sad person, however far away, to share an egg of happiness that brings a smile to any face. +Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG @@ -7964,6 +8206,7 @@ Shape = Quadruped Habitat = Grassland Kind = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -7995,6 +8238,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -8026,6 +8270,7 @@ Shape = Quadruped Habitat = Grassland Kind = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -8059,6 +8304,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. +Generation = 2 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8091,6 +8337,7 @@ Shape = Serpentine Habitat = Mountain Kind = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8124,6 +8371,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -8156,6 +8404,7 @@ Shape = Winged Habitat = Rare Kind = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8188,6 +8437,7 @@ Shape = Winged Habitat = Rare Kind = Rainbow Pokedex = Its feathers--which glow in seven colors depending on the angle at which light strikes them--are thought to bring joy. It is said to live at the foot of a rainbow. +Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH @@ -8222,6 +8472,7 @@ Shape = Bipedal Habitat = Forest Kind = Time Travel Pokedex = This Pokémon came from the future by crossing over time. It is thought that so long as Celebi appears, a bright and shining future awaits us. +Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -8257,6 +8508,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -8289,6 +8541,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8321,6 +8574,7 @@ Shape = BipedalTail Habitat = Forest Kind = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8353,6 +8607,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8386,6 +8641,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. +Generation = 3 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8419,6 +8675,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. +Generation = 3 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8451,6 +8708,7 @@ Shape = Quadruped Habitat = WatersEdge Kind = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8484,6 +8742,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8517,6 +8776,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8549,6 +8809,7 @@ Shape = Quadruped Habitat = Grassland Kind = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8581,6 +8842,7 @@ Shape = Quadruped Habitat = Grassland Kind = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -8613,6 +8875,7 @@ Shape = Quadruped Habitat = Grassland Kind = Tiny Raccoon Pokedex = Rubbing its nose against the ground, it always wanders about back and forth in search of something. It is distinguished by the zigzag footprints it leaves. +Generation = 3 WildItemCommon = POTION WildItemUncommon = REVIVE BattlerPlayerX = -1 @@ -8647,6 +8910,7 @@ Shape = Quadruped Habitat = Grassland Kind = Rushing Pokedex = It is exceedingly fast if it only has to run in a straight line. When it spots pond- dwelling prey underwater, it quickly leaps in and catches it with its sharp claws. +Generation = 3 WildItemCommon = POTION WildItemUncommon = MAXREVIVE BattlerPlayerX = 0 @@ -8680,6 +8944,7 @@ Shape = Insectoid Habitat = Forest Kind = Worm Pokedex = It sticks to tree branches and eats leaves. The thread it spits from its mouth becomes gooey when it touches air and slows the movement of its foes. +Generation = 3 WildItemCommon = PECHABERRY WildItemUncommon = BRIGHTPOWDER BattlerPlayerX = -1 @@ -8713,6 +8978,7 @@ Shape = Head Habitat = Forest Kind = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8746,6 +9012,7 @@ Shape = MultiWinged Habitat = Forest Kind = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -8777,6 +9044,7 @@ Shape = Head Habitat = Forest Kind = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8810,6 +9078,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -8844,6 +9113,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. +Generation = 3 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -8878,6 +9148,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. +Generation = 3 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -8912,6 +9183,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. +Generation = 3 WildItemUncommon = MENTALHERB BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -8945,6 +9217,7 @@ Shape = HeadLegs Habitat = Forest Kind = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. +Generation = 3 WildItemUncommon = POWERHERB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -8979,6 +9252,7 @@ Shape = Bipedal Habitat = Forest Kind = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. +Generation = 3 WildItemUncommon = POWERHERB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9013,6 +9287,7 @@ Shape = Bipedal Habitat = Forest Kind = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. +Generation = 3 WildItemUncommon = POWERHERB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -9047,6 +9322,7 @@ Shape = Winged Habitat = Grassland Kind = Tiny Swallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. +Generation = 3 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -9080,6 +9356,7 @@ Shape = Winged Habitat = Grassland Kind = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -9113,6 +9390,7 @@ Shape = Winged Habitat = Sea Kind = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. +Generation = 3 WildItemCommon = PRETTYWING BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9147,6 +9425,7 @@ Shape = Winged Habitat = Sea Kind = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. +Generation = 3 WildItemCommon = PRETTYWING BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -9181,6 +9460,7 @@ Shape = Bipedal Habitat = Urban Kind = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -9214,6 +9494,7 @@ Shape = Bipedal Habitat = Urban Kind = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9247,6 +9528,7 @@ Shape = Bipedal Habitat = Urban Kind = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9280,6 +9562,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. +Generation = 3 WildItemCommon = HONEY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -9314,6 +9597,7 @@ Shape = MultiWinged Habitat = WatersEdge Kind = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. +Generation = 3 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9347,6 +9631,7 @@ Shape = HeadLegs Habitat = Forest Kind = Mushroom Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest after a long rain, you can see many Shroomish feasting on composted soil. +Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 1 @@ -9382,6 +9667,7 @@ Shape = BipedalTail Habitat = Forest Kind = Mushroom Pokedex = It scatters spores from holes in the cap on its head. It loves warm and humid climates. It feeds on trees and plants in fields and forests. +Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = -15 @@ -9415,6 +9701,7 @@ Shape = Quadruped Habitat = Forest Kind = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -9446,6 +9733,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -9477,6 +9765,7 @@ Shape = Bipedal Habitat = Forest Kind = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9510,6 +9799,7 @@ Shape = Insectoid Habitat = Forest Kind = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. +Generation = 3 WildItemUncommon = SOFTSAND BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -9544,6 +9834,7 @@ Shape = MultiWinged Habitat = Forest Kind = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9575,6 +9866,7 @@ Shape = HeadBase Habitat = Forest Kind = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9607,6 +9899,7 @@ Shape = BipedalTail Habitat = Cave Kind = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. +Generation = 3 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -9639,6 +9932,7 @@ Shape = BipedalTail Habitat = Cave Kind = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -9671,6 +9965,7 @@ Shape = BipedalTail Habitat = Cave Kind = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9703,6 +9998,7 @@ Shape = Bipedal Habitat = Mountain Kind = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. +Generation = 3 WildItemUncommon = BLACKBELT BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -9736,6 +10032,7 @@ Shape = Bipedal Habitat = Mountain Kind = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. +Generation = 3 WildItemUncommon = KINGSROCK BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -9770,6 +10067,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. +Generation = 3 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = 14 @@ -9804,6 +10102,7 @@ Shape = Bipedal Habitat = Cave Kind = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. +Generation = 3 WildItemUncommon = MAGNET BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -9838,6 +10137,7 @@ Shape = Quadruped Habitat = Forest Kind = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. +Generation = 3 BattlerPlayerX = -10 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -9870,6 +10170,7 @@ Shape = Quadruped Habitat = Forest Kind = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -9903,6 +10204,7 @@ Shape = Bipedal Habitat = Cave Kind = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. +Generation = 3 WildItemUncommon = WIDELENS BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -9937,6 +10239,7 @@ Shape = Bipedal Habitat = Cave Kind = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. +Generation = 3 WildItemUncommon = IRONBALL BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9971,6 +10274,7 @@ Shape = Quadruped Habitat = Mountain Kind = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10005,6 +10309,7 @@ Shape = Quadruped Habitat = Mountain Kind = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10039,6 +10344,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -10073,6 +10379,7 @@ Shape = Bipedal Habitat = Mountain Kind = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10106,6 +10413,7 @@ Shape = Bipedal Habitat = Mountain Kind = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10138,6 +10446,7 @@ Shape = Quadruped Habitat = Grassland Kind = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -10170,6 +10479,7 @@ Shape = Quadruped Habitat = Grassland Kind = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10202,6 +10512,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. +Generation = 3 WildItemUncommon = CELLBATTERY BattlerPlayerX = -12 BattlerPlayerY = 0 @@ -10235,6 +10546,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. +Generation = 3 WildItemUncommon = CELLBATTERY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -10268,6 +10580,7 @@ Shape = BipedalTail Habitat = Forest Kind = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. +Generation = 3 WildItemUncommon = BRIGHTPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10301,6 +10614,7 @@ Shape = Bipedal Habitat = Forest Kind = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. +Generation = 3 WildItemUncommon = BRIGHTPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10335,6 +10649,7 @@ Shape = Bipedal Habitat = Grassland Kind = Thorn Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovely flowers. The fragrance of its flowers has the effect of making its foes careless. +Generation = 3 WildItemUncommon = POISONBARB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -10369,6 +10684,7 @@ Shape = HeadArms Habitat = Grassland Kind = Stomach Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, it can swallow something that is as large as itself. +Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = -1 @@ -10403,6 +10719,7 @@ Shape = HeadArms Habitat = Grassland Kind = Poison Bag Pokedex = Its powerful stomach acid is capable of digesting almost anything. The one thing in the whole world a Swalot can't digest is its own stomach. +Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = -1 @@ -10438,6 +10755,7 @@ Shape = Finned Habitat = Sea Kind = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10472,6 +10790,7 @@ Shape = Finned Habitat = Sea Kind = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -10505,6 +10824,7 @@ Shape = Finned Habitat = Sea Kind = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10537,6 +10857,7 @@ Shape = Finned Habitat = Sea Kind = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10570,6 +10891,7 @@ Shape = Quadruped Habitat = Mountain Kind = Numb Pokedex = A Numel stores boiling magma in the hump on its back. It is a hardy Pokémon that can transport a 220-pound load. It has served humans at work since long ago. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -10603,6 +10925,7 @@ Shape = Quadruped Habitat = Mountain Kind = Eruption Pokedex = A Pokémon that lives in the crater of a volcano. Every 10 years, the volcanoes on its back erupt violently. Research is under way on the cause of eruption. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10635,6 +10958,7 @@ Shape = Quadruped Habitat = Mountain Kind = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. +Generation = 3 WildItemUncommon = CHARCOAL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -10668,6 +10992,7 @@ Shape = HeadArms Habitat = Mountain Kind = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10700,6 +11025,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10732,6 +11058,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -10764,6 +11091,7 @@ Shape = Insectoid Habitat = RoughTerrain Kind = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. +Generation = 3 WildItemUncommon = SOFTSAND BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10797,6 +11125,7 @@ Shape = MultiWinged Habitat = RoughTerrain Kind = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. +Generation = 3 BattlerPlayerX = -11 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -10829,6 +11158,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. +Generation = 3 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 11 @@ -10861,6 +11191,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. +Generation = 3 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10895,6 +11226,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. +Generation = 3 WildItemUncommon = STICKYBARB BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -10929,6 +11261,7 @@ Shape = Winged Habitat = Forest Kind = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10962,6 +11295,7 @@ Shape = Winged Habitat = Forest Kind = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. +Generation = 3 BattlerPlayerX = -10 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10994,6 +11328,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. +Generation = 3 WildItemUncommon = QUICKCLAW BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -11027,6 +11362,7 @@ Shape = Serpentine Habitat = Grassland Kind = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -11059,6 +11395,7 @@ Shape = Head Habitat = Cave Kind = Meteorite Pokedex = It becomes very active on the night of a full moon. This Pokémon was first discovered 40 years ago at the site of a meteor strike. +Generation = 3 WildItemCommon = STARDUST WildItemUncommon = MOONSTONE BattlerPlayerX = 1 @@ -11092,6 +11429,7 @@ Shape = Head Habitat = Cave Kind = Meteorite Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, groups of Solrock line up facing the sun and absorb its light. +Generation = 3 WildItemCommon = STARDUST WildItemUncommon = SUNSTONE BattlerPlayerX = 2 @@ -11127,6 +11465,7 @@ Shape = Finned Habitat = WatersEdge Kind = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11160,6 +11499,7 @@ Shape = Finned Habitat = WatersEdge Kind = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11192,6 +11532,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11225,6 +11566,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. +Generation = 3 BattlerPlayerX = 9 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11256,6 +11598,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. +Generation = 3 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -11289,6 +11632,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. +Generation = 3 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11323,6 +11667,7 @@ Shape = HeadBase Habitat = Sea Kind = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. +Generation = 3 WildItemUncommon = BIGROOT BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -11357,6 +11702,7 @@ Shape = HeadBase Habitat = Sea Kind = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. +Generation = 3 WildItemUncommon = BIGROOT BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11391,6 +11737,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. +Generation = 3 BattlerPlayerX = 10 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11424,6 +11771,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -11456,6 +11804,7 @@ Shape = Finned Habitat = WatersEdge Kind = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11488,6 +11837,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11520,6 +11870,7 @@ Habitat = Grassland Kind = Weather Pokedex = It alters its form depending on the weather. Changes in the climate such as the temperature and humidity appear to affect its cellular structure. FormName = Normal Form +Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER @@ -11555,6 +11906,7 @@ Shape = BipedalTail Habitat = Forest Kind = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11587,6 +11939,7 @@ Shape = Head Habitat = Urban Kind = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -11620,6 +11973,7 @@ Shape = BipedalTail Habitat = Urban Kind = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -11653,6 +12007,7 @@ Shape = HeadArms Habitat = Forest Kind = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -11686,6 +12041,7 @@ Shape = Bipedal Habitat = Forest Kind = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11721,6 +12077,7 @@ Shape = Quadruped Habitat = Forest Kind = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -11752,6 +12109,7 @@ Shape = HeadArms Habitat = Grassland Kind = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. +Generation = 3 WildItemUncommon = CLEANSETAG BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -11785,6 +12143,7 @@ Shape = Quadruped Habitat = Mountain Kind = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11816,6 +12175,7 @@ Shape = BipedalTail Habitat = Cave Kind = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11850,6 +12210,7 @@ Shape = Bipedal Habitat = Cave Kind = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. +Generation = 3 WildItemUncommon = SNOWBALL BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -11883,6 +12244,7 @@ Shape = Head Habitat = Cave Kind = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11916,6 +12278,7 @@ Shape = Finned Habitat = Sea Kind = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -11949,6 +12312,7 @@ Shape = Finned Habitat = Sea Kind = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11982,6 +12346,7 @@ Shape = Quadruped Habitat = Sea Kind = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12014,6 +12379,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl it creates upon evolution is said to be infused with a mysterious energy. +Generation = 3 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = 0 @@ -12048,6 +12414,7 @@ Shape = Serpentine Habitat = Sea Kind = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -12080,6 +12447,7 @@ Shape = Serpentine Habitat = Sea Kind = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. +Generation = 3 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -12114,6 +12482,7 @@ Shape = Finned Habitat = Sea Kind = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. +Generation = 3 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -12147,6 +12516,7 @@ Shape = Finned Habitat = Sea Kind = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. +Generation = 3 WildItemCommon = HEARTSCALE BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -12180,6 +12550,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -12213,6 +12584,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -12247,6 +12619,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -12280,6 +12653,7 @@ Shape = HeadBase Habitat = RoughTerrain Kind = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -12314,6 +12688,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -12348,6 +12723,7 @@ Shape = MultiBody Habitat = RoughTerrain Kind = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -12380,6 +12756,7 @@ Shape = Bipedal Habitat = Cave Kind = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -12411,6 +12788,7 @@ Shape = Bipedal Habitat = Cave Kind = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12442,6 +12820,7 @@ Shape = Bipedal Habitat = Cave Kind = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -12473,6 +12852,7 @@ Shape = Winged Habitat = WatersEdge Kind = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -12504,6 +12884,7 @@ Shape = Winged Habitat = WatersEdge Kind = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12534,6 +12915,7 @@ Shape = Finned Habitat = Sea Kind = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -12564,6 +12946,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12595,6 +12978,7 @@ Shape = Serpentine Habitat = Rare Kind = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -12626,6 +13010,7 @@ Shape = Bipedal Habitat = Mountain Kind = Wish Pokedex = Jirachi is said to make wishes come true. While it sleeps, a tough crystalline shell envelops the body to protect it from enemies. +Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE @@ -12660,6 +13045,7 @@ Habitat = Rare Kind = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12691,6 +13077,7 @@ Color = Green Shape = Quadruped Kind = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12722,6 +13109,7 @@ Color = Green Shape = Quadruped Kind = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -12754,6 +13142,7 @@ Color = Green Shape = Quadruped Kind = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12785,6 +13174,7 @@ Color = Brown Shape = BipedalTail Kind = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. +Generation = 4 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12817,6 +13207,7 @@ Color = Brown Shape = BipedalTail Kind = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 10 @@ -12849,6 +13240,7 @@ Color = Brown Shape = BipedalTail Kind = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12880,6 +13272,7 @@ Color = Blue Shape = Bipedal Kind = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12911,6 +13304,7 @@ Color = Blue Shape = BipedalTail Kind = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12943,6 +13337,7 @@ Color = Blue Shape = BipedalTail Kind = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -12975,6 +13370,7 @@ Color = Brown Shape = Winged Kind = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -13007,6 +13403,7 @@ Color = Brown Shape = Winged Kind = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13039,6 +13436,7 @@ Color = Brown Shape = Winged Kind = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -13070,6 +13468,7 @@ Color = Brown Shape = Quadruped Kind = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13102,6 +13501,7 @@ Color = Brown Shape = BipedalTail Kind = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -13132,6 +13532,7 @@ Color = Red Shape = Bipedal Kind = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13164,6 +13565,7 @@ Color = Red Shape = MultiWinged Kind = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13196,6 +13598,7 @@ Color = Blue Shape = Quadruped Kind = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -13227,6 +13630,7 @@ Color = Blue Shape = Quadruped Kind = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -13258,6 +13662,7 @@ Color = Blue Shape = Quadruped Kind = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13290,6 +13695,7 @@ Color = Green Shape = Bipedal Kind = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13324,6 +13730,7 @@ Color = Green Shape = Bipedal Kind = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = 8 BattlerPlayerY = 0 @@ -13356,6 +13763,7 @@ Color = Blue Shape = BipedalTail Kind = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -13387,6 +13795,7 @@ Color = Blue Shape = BipedalTail Kind = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -13419,6 +13828,7 @@ Color = Gray Shape = Quadruped Kind = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13451,6 +13861,7 @@ Color = Gray Shape = Quadruped Kind = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -13482,6 +13893,7 @@ Shape = HeadBase Kind = Bagworm Pokedex = To shelter itself from cold, wintry winds, it covers itself with a cloak made of twigs and leaves. FormName = Plant Cloak +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -13515,6 +13927,7 @@ Shape = HeadBase Kind = Bagworm Pokedex = When Burmy evolved, its cloak became a part of this Pokémon's body. The cloak is never shed. FormName = Plant Cloak +Generation = 4 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13547,6 +13960,7 @@ Color = Yellow Shape = MultiWinged Kind = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. +Generation = 4 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 11 BattlerPlayerY = 0 @@ -13579,6 +13993,7 @@ Color = Yellow Shape = MultiBody Kind = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. +Generation = 4 WildItemUncommon = HONEY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -13612,6 +14027,7 @@ Color = Yellow Shape = MultiWinged Kind = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13644,6 +14060,7 @@ Color = White Shape = Quadruped Kind = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13675,6 +14092,7 @@ Color = Brown Shape = Quadruped Kind = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. +Generation = 4 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13706,6 +14124,7 @@ Color = Brown Shape = Quadruped Kind = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -13736,6 +14155,7 @@ Color = Pink Shape = MultiBody Kind = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. +Generation = 4 WildItemUncommon = MIRACLESEED BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -13768,6 +14188,7 @@ Shape = HeadLegs Kind = Blossom Pokedex = It blooms during times of strong sunlight. It tries to make up for everything it endured as a bud. FormName = Overcast Form +Generation = 4 WildItemUncommon = MIRACLESEED BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13801,6 +14222,7 @@ Shape = Serpentine Kind = Sea Slug Pokedex = Its colors and shapes differ from region to region. In the Sinnoh region, two types are confirmed. FormName = West Sea +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13834,6 +14256,7 @@ Shape = Serpentine Kind = Sea Slug Pokedex = It has a pliable body without any bones. If any part of its body is torn off, it grows right back. FormName = West Sea +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13864,6 +14287,7 @@ Color = Purple Shape = BipedalTail Kind = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13896,6 +14320,7 @@ Color = Purple Shape = HeadArms Kind = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13928,6 +14353,7 @@ Color = Purple Shape = HeadArms Kind = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -13959,6 +14385,7 @@ Color = Brown Shape = BipedalTail Kind = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -13990,6 +14417,7 @@ Color = Brown Shape = BipedalTail Kind = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14019,6 +14447,7 @@ Color = Purple Shape = Head Kind = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14050,6 +14479,7 @@ Color = Black Shape = Winged Kind = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14081,6 +14511,7 @@ Color = Gray Shape = Quadruped Kind = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -14112,6 +14543,7 @@ Color = Gray Shape = Quadruped Kind = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. +Generation = 4 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -14142,6 +14574,7 @@ Color = Yellow Shape = Bipedal Kind = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. +Generation = 4 WildItemUncommon = CLEANSETAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -14177,6 +14610,7 @@ Color = Purple Shape = Quadruped Kind = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -14209,6 +14643,7 @@ Color = Purple Shape = Quadruped Kind = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14240,6 +14675,7 @@ Color = Green Shape = Head Kind = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -14273,6 +14709,7 @@ Color = Green Shape = HeadArms Kind = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -14305,6 +14742,7 @@ Color = Brown Shape = HeadLegs Kind = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14339,6 +14777,7 @@ Color = Pink Shape = Bipedal Kind = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14372,6 +14811,7 @@ Color = Pink Shape = Bipedal Kind = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. +Generation = 4 WildItemCommon = OVALSTONE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -14407,6 +14847,7 @@ Color = Black Shape = Winged Kind = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -14440,6 +14881,7 @@ Color = Purple Shape = HeadBase Kind = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -14472,6 +14914,7 @@ Color = Blue Shape = BipedalTail Kind = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. +Generation = 4 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14504,6 +14947,7 @@ Color = Blue Shape = BipedalTail Kind = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -14536,6 +14980,7 @@ Color = Blue Shape = BipedalTail Kind = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14567,6 +15012,7 @@ Color = Black Shape = Bipedal Kind = Big Eater Pokedex = It wolfs down its weight in food once a day, swallowing food whole with almost no chewing. +Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS @@ -14603,6 +15049,7 @@ Color = Blue Shape = BipedalTail Kind = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -14635,6 +15082,7 @@ Color = Blue Shape = BipedalTail Kind = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14666,6 +15114,7 @@ Color = Brown Shape = Quadruped Kind = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14697,6 +15146,7 @@ Color = Brown Shape = Quadruped Kind = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14729,6 +15179,7 @@ Color = Purple Shape = Insectoid Kind = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -14762,6 +15213,7 @@ Color = Purple Shape = Insectoid Kind = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -14795,6 +15247,7 @@ Color = Blue Shape = Bipedal Kind = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. +Generation = 4 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -14828,6 +15281,7 @@ Color = Blue Shape = Bipedal Kind = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. +Generation = 4 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -14859,6 +15313,7 @@ Color = Green Shape = Multiped Kind = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. +Generation = 4 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -14890,6 +15345,7 @@ Color = Blue Shape = Finned Kind = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. +Generation = 4 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -14921,6 +15377,7 @@ Color = Blue Shape = Finned Kind = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. +Generation = 4 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -14953,6 +15410,7 @@ Color = Blue Shape = Winged Kind = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14987,6 +15445,7 @@ Color = White Shape = BipedalTail Kind = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. +Generation = 4 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -15020,6 +15479,7 @@ Color = White Shape = BipedalTail Kind = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. +Generation = 4 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15052,6 +15512,7 @@ Color = Black Shape = BipedalTail Kind = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. +Generation = 4 WildItemUncommon = QUICKCLAW BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -15084,6 +15545,7 @@ Color = Gray Shape = HeadArms Kind = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15115,6 +15577,7 @@ Color = Pink Shape = Bipedal Kind = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. +Generation = 4 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -15147,6 +15610,7 @@ Color = Gray Shape = BipedalTail Kind = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -15177,6 +15641,7 @@ Color = Blue Shape = Bipedal Kind = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15207,6 +15672,7 @@ Color = Yellow Shape = BipedalTail Kind = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. +Generation = 4 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15238,6 +15704,7 @@ Color = Red Shape = BipedalTail Kind = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. +Generation = 4 WildItemUncommon = MAGMARIZER BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -15270,6 +15737,7 @@ Color = White Shape = Winged Kind = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15301,6 +15769,7 @@ Color = Green Shape = MultiWinged Kind = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. +Generation = 4 WildItemUncommon = WIDELENS BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -15332,6 +15801,7 @@ Color = Green Shape = Quadruped Kind = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -15362,6 +15832,7 @@ Color = Blue Shape = Quadruped Kind = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -15393,6 +15864,7 @@ Color = Purple Shape = Winged Kind = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15424,6 +15896,7 @@ Color = Brown Shape = Quadruped Kind = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -7 @@ -15454,6 +15927,7 @@ Color = Red Shape = HeadArms Kind = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15485,6 +15959,7 @@ Color = White Shape = Bipedal Kind = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15516,6 +15991,7 @@ Color = Gray Shape = MultiBody Kind = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. +Generation = 4 WildItemUncommon = MAGNET BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -15547,6 +16023,7 @@ Color = Black Shape = HeadArms Kind = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. +Generation = 4 WildItemUncommon = SPELLTAG BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -15579,6 +16056,7 @@ Color = White Shape = HeadArms Kind = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. +Generation = 4 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -15610,6 +16088,7 @@ Shape = Head Kind = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom +Generation = 4 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15639,6 +16118,7 @@ Color = Yellow Shape = BipedalTail Kind = Knowledge Pokedex = Known as “The Being of Knowledge.” It is said that it can wipe out the memory of those who see its eyes. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15668,6 +16148,7 @@ Color = Pink Shape = BipedalTail Kind = Emotion Pokedex = Known as “The Being of Emotion.” It taught humans the nobility of sorrow, pain, and joy. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -15697,6 +16178,7 @@ Color = Blue Shape = BipedalTail Kind = Willpower Pokedex = Known as “The Being of Willpower.” It sleeps at the bottom of a lake to keep the world in balance. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 9 @@ -15728,6 +16210,7 @@ Color = White Shape = Quadruped Kind = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15759,6 +16242,7 @@ Color = Purple Shape = BipedalTail Kind = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -15790,6 +16274,7 @@ Color = Brown Shape = Quadruped Kind = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -15819,6 +16304,7 @@ Color = White Shape = Bipedal Kind = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -15851,6 +16337,7 @@ Shape = Multiped Kind = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -15880,6 +16367,7 @@ Color = Yellow Shape = Serpentine Kind = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15909,6 +16397,7 @@ Color = Blue Shape = HeadArms Kind = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -15938,6 +16427,7 @@ Color = Blue Shape = Bipedal Kind = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -15967,6 +16457,7 @@ Color = Black Shape = Bipedal Kind = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15997,6 +16488,7 @@ Shape = Quadruped Kind = Gratitude Pokedex = It lives in flower patches and avoids detection by curling up to look like a flowering plant. FormName = Land Forme +Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -16030,6 +16522,7 @@ Shape = Quadruped Kind = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16060,6 +16553,7 @@ Color = Yellow Shape = Bipedal Kind = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -16091,6 +16585,7 @@ Color = Green Shape = BipedalTail Kind = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -16122,6 +16617,7 @@ Color = Green Shape = BipedalTail Kind = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -16153,6 +16649,7 @@ Color = Green Shape = Serpentine Kind = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -16184,6 +16681,7 @@ Color = Red Shape = Quadruped Kind = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16216,6 +16714,7 @@ Color = Red Shape = BipedalTail Kind = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16248,6 +16747,7 @@ Color = Red Shape = BipedalTail Kind = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16279,6 +16779,7 @@ Color = Blue Shape = BipedalTail Kind = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16310,6 +16811,7 @@ Color = Blue Shape = BipedalTail Kind = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -16341,6 +16843,7 @@ Color = Blue Shape = Quadruped Kind = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16372,6 +16875,7 @@ Color = Brown Shape = Quadruped Kind = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16403,6 +16907,7 @@ Color = Brown Shape = BipedalTail Kind = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -16434,6 +16939,7 @@ Color = Brown Shape = Quadruped Kind = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16465,6 +16971,7 @@ Color = Gray Shape = Quadruped Kind = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -16496,6 +17003,7 @@ Color = Gray Shape = Quadruped Kind = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16527,6 +17035,7 @@ Color = Purple Shape = Quadruped Kind = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16558,6 +17067,7 @@ Color = Purple Shape = Quadruped Kind = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16589,6 +17099,7 @@ Color = Green Shape = BipedalTail Kind = Grass Monkey Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leaves are known to relieve stress. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -16620,6 +17131,7 @@ Color = Green Shape = BipedalTail Kind = Thorn Monkey Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -16651,6 +17163,7 @@ Color = Red Shape = BipedalTail Kind = High Temp Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600º F. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16682,6 +17195,7 @@ Color = Red Shape = BipedalTail Kind = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16713,6 +17227,7 @@ Color = Blue Shape = BipedalTail Kind = Spray Pokedex = It does not thrive in dry environments. It keeps itself damp by shooting water stored in its head tuft from its tail. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 8 @@ -16744,6 +17259,7 @@ Color = Blue Shape = BipedalTail Kind = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16775,6 +17291,7 @@ Color = Pink Shape = Quadruped Kind = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16806,6 +17323,7 @@ Color = Pink Shape = Bipedal Kind = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. +Generation = 5 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -16838,6 +17356,7 @@ Color = Gray Shape = Winged Kind = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16870,6 +17389,7 @@ Color = Gray Shape = Winged Kind = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16902,6 +17422,7 @@ Color = Gray Shape = Winged Kind = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16933,6 +17454,7 @@ Color = Black Shape = Quadruped Kind = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. +Generation = 5 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -16964,6 +17486,7 @@ Color = Black Shape = Quadruped Kind = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16995,6 +17518,7 @@ Color = Blue Shape = HeadLegs Kind = Mantle Pokedex = They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 0 @@ -17028,6 +17552,7 @@ Color = Blue Shape = Multiped Kind = Ore Pokedex = Because its energy was too great to be contained, the energy leaked and formed orange crystals. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 2 @@ -17061,6 +17586,7 @@ Color = Blue Shape = Multiped Kind = Compressed Pokedex = The solar energy absorbed by its body's orange crystals is magnified internally and fired from its mouth. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 0 @@ -17095,6 +17621,7 @@ Color = Blue Shape = Winged Kind = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -17127,6 +17654,7 @@ Color = Blue Shape = Winged Kind = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -17158,6 +17686,7 @@ Color = Gray Shape = BipedalTail Kind = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -17190,6 +17719,7 @@ Color = Gray Shape = Bipedal Kind = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17221,6 +17751,7 @@ Color = Pink Shape = BipedalTail Kind = Hearing Pokedex = Its auditory sense is astounding. It has a radar-like ability to understand its surrounding through slight sounds. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = 2 @@ -17254,6 +17785,7 @@ Color = Gray Shape = Bipedal Kind = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -17285,6 +17817,7 @@ Color = Gray Shape = Bipedal Kind = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17316,6 +17849,7 @@ Color = Brown Shape = Bipedal Kind = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17347,6 +17881,7 @@ Color = Blue Shape = Finned Kind = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17379,6 +17914,7 @@ Color = Blue Shape = BipedalTail Kind = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. +Generation = 5 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -17411,6 +17947,7 @@ Color = Blue Shape = Bipedal Kind = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17441,6 +17978,7 @@ Color = Red Shape = Bipedal Kind = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. +Generation = 5 WildItemUncommon = BLACKBELT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17472,6 +18010,7 @@ Color = Blue Shape = Bipedal Kind = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. +Generation = 5 WildItemUncommon = BLACKBELT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17505,6 +18044,7 @@ Color = Yellow Shape = Insectoid Kind = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17538,6 +18078,7 @@ Color = Green Shape = HeadArms Kind = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -17571,6 +18112,7 @@ Color = Yellow Shape = Bipedal Kind = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17604,6 +18146,7 @@ Color = Red Shape = Insectoid Kind = Centipede Pokedex = It discovers what is going on around it by using the feelers on its head and tail. It is brutally aggresive. +Generation = 5 WildItemUncommon = POISONBARB BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -17637,6 +18180,7 @@ Color = Gray Shape = Head Kind = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. +Generation = 5 WildItemUncommon = POISONBARB BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -17670,6 +18214,7 @@ Color = Red Shape = Insectoid Kind = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. +Generation = 5 WildItemUncommon = POISONBARB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17703,6 +18248,7 @@ Color = Green Shape = Head Kind = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17736,6 +18282,7 @@ Color = Green Shape = Bipedal Kind = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17768,6 +18315,7 @@ Color = Green Shape = HeadBase Kind = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17800,6 +18348,7 @@ Color = Green Shape = HeadBase Kind = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -17833,6 +18382,7 @@ Shape = Finned Kind = Hostile Pokedex = Savage, violent Pokémon, red and blue Basculin are always fighting each other over territory. FormName = Red-Striped +Generation = 5 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -17866,6 +18416,7 @@ Color = Brown Shape = Quadruped Kind = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. +Generation = 5 WildItemUncommon = BLACKGLASSES BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -17899,6 +18450,7 @@ Color = Brown Shape = Quadruped Kind = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. +Generation = 5 WildItemUncommon = BLACKGLASSES BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -17932,6 +18484,7 @@ Color = Red Shape = BipedalTail Kind = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. +Generation = 5 WildItemCommon = BLACKGLASSES BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17964,6 +18517,7 @@ Color = Red Shape = Bipedal Kind = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -17996,6 +18550,7 @@ Shape = Quadruped Kind = Blazing Pokedex = When weakened in battle, it transforms into a stone statue. Then it sharpens its mind and fights on mentally. FormName = Standard Mode +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18027,6 +18582,7 @@ Color = Green Shape = HeadBase Kind = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. +Generation = 5 WildItemUncommon = MIRACLESEED BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -18060,6 +18616,7 @@ Color = Red Shape = Insectoid Kind = Rock Inn Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon remains agitated until it locates a replacement. +Generation = 5 WildItemUncommon = HARDSTONE BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -18093,6 +18650,7 @@ Color = Red Shape = Insectoid Kind = Stone Home Pokedex = It possesses legs of enormous strength, enabling it to carry heavy slabs for many days, even when crossing arid land. +Generation = 5 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -18126,6 +18684,7 @@ Color = Yellow Shape = BipedalTail Kind = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. +Generation = 5 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18159,6 +18718,7 @@ Color = Red Shape = BipedalTail Kind = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. +Generation = 5 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18192,6 +18752,7 @@ Color = Black Shape = Winged Kind = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. +Generation = 5 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -18222,6 +18783,7 @@ Color = Black Shape = HeadArms Kind = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. +Generation = 5 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18253,6 +18815,7 @@ Color = Yellow Shape = HeadBase Kind = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. +Generation = 5 WildItemUncommon = SPELLTAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18286,6 +18849,7 @@ Color = Blue Shape = Quadruped Kind = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18318,6 +18882,7 @@ Color = Blue Shape = BipedalTail Kind = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -18349,6 +18914,7 @@ Color = Yellow Shape = Winged Kind = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18380,6 +18946,7 @@ Color = Yellow Shape = Winged Kind = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. +Generation = 5 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18411,6 +18978,7 @@ Color = Green Shape = Bipedal Kind = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. +Generation = 5 WildItemUncommon = SILKSCARF BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -18443,6 +19011,7 @@ Color = Green Shape = Bipedal Kind = Trash Heap Pokedex = They absorb garbage and make it part of their bodies. They shoot a poisonous liquid from their right-hand fingertips. +Generation = 5 WildItemCommon = SILKSCARF WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 5 @@ -18475,6 +19044,7 @@ Color = Gray Shape = Quadruped Kind = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18505,6 +19075,7 @@ Color = Gray Shape = BipedalTail Kind = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18536,6 +19107,7 @@ Color = Gray Shape = Quadruped Kind = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18567,6 +19139,7 @@ Color = Gray Shape = Quadruped Kind = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18598,6 +19171,7 @@ Color = Purple Shape = Bipedal Kind = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18629,6 +19203,7 @@ Color = Purple Shape = Bipedal Kind = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18660,6 +19235,7 @@ Color = Purple Shape = Bipedal Kind = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18691,6 +19267,7 @@ Color = Green Shape = Head Kind = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18722,6 +19299,7 @@ Color = Green Shape = Head Kind = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18753,6 +19331,7 @@ Color = Green Shape = HeadArms Kind = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18785,6 +19364,7 @@ Color = Blue Shape = Winged Kind = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18817,6 +19397,7 @@ Color = White Shape = Winged Kind = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18848,6 +19429,7 @@ Color = White Shape = HeadBase Kind = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18880,6 +19462,7 @@ Color = White Shape = HeadBase Kind = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18912,6 +19495,7 @@ Color = White Shape = MultiBody Kind = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. +Generation = 5 WildItemCommon = NEVERMELTICE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18946,6 +19530,7 @@ Shape = Quadruped Kind = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -18979,6 +19564,7 @@ Shape = Quadruped Kind = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -19011,6 +19597,7 @@ Color = White Shape = Quadruped Kind = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19042,6 +19629,7 @@ Color = Blue Shape = Bipedal Kind = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19074,6 +19662,7 @@ Color = Gray Shape = HeadArms Kind = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19106,6 +19695,7 @@ Color = White Shape = HeadArms Kind = Mushroom Pokedex = For some reason, this Pokémon resembles a Poké Ball. They release poison spores to repel those who try to catch them. +Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 0 @@ -19140,6 +19730,7 @@ Color = White Shape = HeadArms Kind = Mushroom Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémon are fooled by this. +Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 7 @@ -19174,6 +19765,7 @@ Color = White Shape = Multiped Kind = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19206,6 +19798,7 @@ Color = White Shape = Multiped Kind = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19237,6 +19830,7 @@ Color = Pink Shape = Finned Kind = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19269,6 +19863,7 @@ Color = Yellow Shape = Insectoid Kind = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -19301,6 +19896,7 @@ Color = Yellow Shape = Insectoid Kind = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -19332,6 +19928,7 @@ Color = Gray Shape = Head Kind = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. +Generation = 5 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -19365,6 +19962,7 @@ Color = Gray Shape = Multiped Kind = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. +Generation = 5 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -19396,6 +19994,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -19427,6 +20026,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19458,6 +20058,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19487,6 +20088,7 @@ Color = White Shape = Finned Kind = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19517,6 +20119,7 @@ Color = Blue Shape = Finned Kind = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19547,6 +20150,7 @@ Color = Blue Shape = Finned Kind = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. +Generation = 5 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -7 @@ -19578,6 +20182,7 @@ Color = Blue Shape = BipedalTail Kind = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19609,6 +20214,7 @@ Color = Brown Shape = Bipedal Kind = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19641,6 +20247,7 @@ Color = White Shape = HeadBase Kind = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19673,6 +20280,7 @@ Color = Black Shape = HeadArms Kind = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -19705,6 +20313,7 @@ Color = Black Shape = HeadArms Kind = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19736,6 +20345,7 @@ Color = Green Shape = BipedalTail Kind = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19767,6 +20377,7 @@ Color = Green Shape = BipedalTail Kind = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. +Generation = 5 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19798,6 +20409,7 @@ Color = Yellow Shape = BipedalTail Kind = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19829,6 +20441,7 @@ Color = White Shape = BipedalTail Kind = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19860,6 +20473,7 @@ Color = White Shape = Quadruped Kind = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19889,6 +20503,7 @@ Color = Blue Shape = Head Kind = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -19921,6 +20536,7 @@ Color = Red Shape = Head Kind = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19952,6 +20568,7 @@ Color = Red Shape = HeadArms Kind = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -19984,6 +20601,7 @@ Color = Brown Shape = Finned Kind = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. +Generation = 5 WildItemUncommon = SOFTSAND BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -20016,6 +20634,7 @@ Color = Yellow Shape = BipedalTail Kind = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20047,6 +20666,7 @@ Color = Purple Shape = BipedalTail Kind = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20078,6 +20698,7 @@ Color = Red Shape = BipedalTail Kind = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. +Generation = 5 WildItemUncommon = DRAGONFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -20110,6 +20731,7 @@ Color = Green Shape = Bipedal Kind = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. +Generation = 5 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -20143,6 +20765,7 @@ Color = Green Shape = Bipedal Kind = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. +Generation = 5 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -20176,6 +20799,7 @@ Color = Red Shape = Bipedal Kind = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20208,6 +20832,7 @@ Color = Red Shape = Bipedal Kind = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20239,6 +20864,7 @@ Color = Brown Shape = Quadruped Kind = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -10 @@ -20270,6 +20896,7 @@ Color = White Shape = Winged Kind = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20302,6 +20929,7 @@ Color = Red Shape = Winged Kind = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -20334,6 +20962,7 @@ Color = Brown Shape = Winged Kind = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20366,6 +20995,7 @@ Color = Brown Shape = Winged Kind = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20397,6 +21027,7 @@ Color = Red Shape = BipedalTail Kind = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -20429,6 +21060,7 @@ Color = Gray Shape = Insectoid Kind = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20460,6 +21092,7 @@ Color = Blue Shape = Quadruped Kind = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20491,6 +21124,7 @@ Color = Blue Shape = Quadruped Kind = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20522,6 +21156,7 @@ Color = Blue Shape = BipedalTail Kind = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20554,6 +21189,7 @@ Color = White Shape = Insectoid Kind = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -20586,6 +21222,7 @@ Color = White Shape = MultiWinged Kind = Sun Pokedex = A sea of fire engulfs the surroundings of their battles, since they use their six wings to scatter their ember scales. +Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER @@ -20619,6 +21256,7 @@ Color = Blue Shape = Quadruped Kind = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20649,6 +21287,7 @@ Color = Gray Shape = Quadruped Kind = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -20679,6 +21318,7 @@ Color = Green Shape = Quadruped Kind = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20710,6 +21350,7 @@ Shape = HeadArms Kind = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20742,6 +21383,7 @@ Shape = HeadArms Kind = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20772,6 +21414,7 @@ Color = White Shape = Winged Kind = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -20802,6 +21445,7 @@ Color = Black Shape = BipedalTail Kind = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -20834,6 +21478,7 @@ Shape = HeadArms Kind = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20864,6 +21509,7 @@ Color = Gray Shape = BipedalTail Kind = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20895,6 +21541,7 @@ Shape = Quadruped Kind = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20926,6 +21573,7 @@ Shape = Bipedal Kind = Melody Pokedex = Many famous songs have been inspired by the melodies that Meloetta plays. FormName = Aria Forme +Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE @@ -20960,6 +21608,7 @@ Shape = Bipedal Kind = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -20991,6 +21640,7 @@ Color = Green Shape = BipedalTail Kind = Spiny Nut Pokedex = The quills on its head are usually soft. When it flexes them, the points become so hard and sharp that they can pierce rock. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21022,6 +21672,7 @@ Color = Green Shape = BipedalTail Kind = Spiny Armor Pokedex = They strengthen their lower bodies by running into one another. They are very kind and won't start fights. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21054,6 +21705,7 @@ Color = Green Shape = BipedalTail Kind = Spiny Armor Pokedex = Its Tackle is forceful enough to flip a 50-ton tank. It shields its allies from danger with its own body. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21085,6 +21737,7 @@ Color = Red Shape = Quadruped Kind = Fox Pokedex = As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21116,6 +21769,7 @@ Color = Red Shape = BipedalTail Kind = Fox Pokedex = When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21148,6 +21802,7 @@ Color = Red Shape = BipedalTail Kind = Fox Pokedex = It gazes into the flame at the tip of its branch to achieve a focused state, which allows it to see into the future. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21179,6 +21834,7 @@ Color = Blue Shape = Quadruped Kind = Bubble Frog Pokedex = It protects its skin by covering its body in delicate bubbles. Beneath its happy-go-lucky air, it keeps a watchful eye on its surroundings. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21210,6 +21866,7 @@ Color = Blue Shape = Bipedal Kind = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21242,6 +21899,7 @@ Color = Blue Shape = Bipedal Kind = Ninja Pokedex = It appears and vanishes with a ninja’s grace. It toys with its enemies using swift movements, while slicing them with throwing stars of sharpest water. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21273,6 +21931,7 @@ Color = Brown Shape = BipedalTail Kind = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21305,6 +21964,7 @@ Color = Brown Shape = BipedalTail Kind = Digging Pokedex = As powerful as an excavator, its ears can reduce dense bedrock to rubble. When it's finished digging, it lounges lazily. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21337,6 +21997,7 @@ Color = Red Shape = Winged Kind = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21369,6 +22030,7 @@ Color = Red Shape = Winged Kind = Ember Pokedex = From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21401,6 +22063,7 @@ Color = Red Shape = Winged Kind = Scorching Pokedex = In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21432,6 +22095,7 @@ Color = Black Shape = Insectoid Kind = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21463,6 +22127,7 @@ Color = Black Shape = HeadBase Kind = Scatterdust Pokedex = It lives hidden within thicket shadows. When predators attack, it quickly bristles the fur covering its body in an effort to threaten them. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21496,6 +22161,7 @@ Shape = MultiWinged Kind = Scale Pokedex = Vivillon with many different patterns are found all over the world. These patterns are affected by the climate of their habitat. FormName = Archipelago Pattern +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21528,6 +22194,7 @@ Color = Brown Shape = Quadruped Kind = Lion Cub Pokedex = They set off on their own from their pride and live by themselves to become stronger. These hot-blooded Pokémon are quick to fight. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21560,6 +22227,7 @@ Color = Brown Shape = Quadruped Kind = Royal Pokedex = With fiery breath of more than 6,000 degrees Celsius, they viciously threaten any challenger. The females protect the pride’s cubs. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21592,6 +22260,7 @@ Shape = HeadArms Kind = Single Bloom Pokedex = When it finds a flower it likes, it dwells on that flower its whole life long. It floats in the wind's embrace with an untroubled heart. FormName = Red Flower +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21624,6 +22293,7 @@ Shape = HeadArms Kind = Single Bloom Pokedex = It flutters around fields of flowers and cares for flowers that are starting to wilt. It draws out the power of flowers to battle. FormName = Red Flower +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21656,6 +22326,7 @@ Shape = HeadArms Kind = Garden Pokedex = It claims exquisite flower gardens as its territory, and it obtains power from basking in the energy emitted by flowering plants. FormName = Red Flower +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21687,6 +22358,7 @@ Color = Brown Shape = Quadruped Kind = Mount Pokedex = If it has sunshine and water, it doesn't need to eat, because it can generate energy from the leaves on its back. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21718,6 +22390,7 @@ Color = Brown Shape = Quadruped Kind = Mount Pokedex = It can tell how its trainer is feeling by subtle shifts in the grip on its horns. This empathetic sense lets them run as if one being. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21749,6 +22422,7 @@ Color = White Shape = BipedalTail Kind = Playful Pokedex = It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark. +Generation = 6 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -21782,6 +22456,7 @@ Color = White Shape = Bipedal Kind = Daunting Pokedex = It charges ahead and bashes its opponents like a berserker, uncaring about any hits it might take. Its arms are mighty enough to snap a telephone pole. +Generation = 6 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -21814,6 +22489,7 @@ Shape = Quadruped Kind = Poodle Pokedex = Trimming its fluffy fur not only makes it more elegant but also increases the swiftness of its movements. FormName = Natural Form +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21845,6 +22521,7 @@ Color = Gray Shape = BipedalTail Kind = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21877,6 +22554,7 @@ Shape = BipedalTail Kind = Constraint Pokedex = When in danger, it raises its ears and releases enough psychic power to grind a 10-ton truck to dust. FormName = Male +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21908,6 +22586,7 @@ Color = Brown Shape = HeadBase Kind = Sword Pokedex = Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21939,6 +22618,7 @@ Color = Brown Shape = MultiBody Kind = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21971,6 +22651,7 @@ Shape = HeadBase Kind = Royal Sword Pokedex = Apparently, it can detect the innate qualities of leadership. According to legend, whoever it recognizes is destined to become king. FormName = Shield Forme +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22002,6 +22683,7 @@ Color = Pink Shape = HeadArms Kind = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22033,6 +22715,7 @@ Color = Pink Shape = Bipedal Kind = Fragrance Pokedex = It devises various scents, pleasant and unpleasant, and emits scents that its enemies dislike in order to gain an edge in battle. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22064,6 +22747,7 @@ Color = White Shape = HeadLegs Kind = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22095,6 +22779,7 @@ Color = White Shape = Bipedal Kind = Meringue Pokedex = It can distinguish the faintest of scents. It puts its sensitive sense of smell to use by helping pastry chefs in their work. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22127,6 +22812,7 @@ Color = Blue Shape = Multiped Kind = Revolving Pokedex = It flashes the light-emitting spots on its body, which drains its opponent's will to fight. It takes the opportunity to scuttle away and hide. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22159,6 +22845,7 @@ Color = Blue Shape = HeadBase Kind = Overturning Pokedex = It lures prey close with hypnotic motions, then wraps its tentacles around it before finishing it off with digestive fluids. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22191,6 +22878,7 @@ Color = Brown Shape = MultiBody Kind = Two-Handed Pokedex = They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22223,6 +22911,7 @@ Color = Brown Shape = MultiBody Kind = Collective Pokedex = Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22255,6 +22944,7 @@ Color = Brown Shape = HeadBase Kind = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22287,6 +22977,7 @@ Color = Brown Shape = HeadBase Kind = Mock Kelp Pokedex = Their poison is strong enough to eat through the hull of a tanker, and they spit it indiscriminately at anything that enters their territory. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22317,6 +23008,7 @@ Color = Blue Shape = Insectoid Kind = Water Gun Pokedex = Through controlled expulsions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22347,6 +23039,7 @@ Color = Blue Shape = Serpentine Kind = Howitzer Pokedex = By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22379,6 +23072,7 @@ Color = Yellow Shape = BipedalTail Kind = Generator Pokedex = They make their home in deserts. They can generate their energy from basking in the sun, so eating food is not a requirement. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22411,6 +23105,7 @@ Color = Yellow Shape = BipedalTail Kind = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22443,6 +23138,7 @@ Color = Brown Shape = BipedalTail Kind = Royal Heir Pokedex = Its immense jaws have enough destructive force that it can chew up an automobile. It lived 100 million years ago. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22475,6 +23171,7 @@ Color = Red Shape = BipedalTail Kind = Despot Pokedex = Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22507,6 +23204,7 @@ Color = Blue Shape = Quadruped Kind = Tundra Pokedex = This ancient Pokémon was restored from part of its body that had been frozen in ice for over 100 million years. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22539,6 +23237,7 @@ Color = Blue Shape = Quadruped Kind = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22569,6 +23268,7 @@ Color = Pink Shape = Quadruped Kind = Intertwining Pokedex = Its ribbonlike feelers give off an aura that weakens hostility in its prey, causing them to let down their guard. Then it attacks. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22601,6 +23301,7 @@ Color = Green Shape = Bipedal Kind = Wrestling Pokedex = With its wings, it controls its position in the air. It likes to attack from above, a maneuver that is difficult to defend against. +Generation = 6 WildItemUncommon = KINGSROCK BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -22634,6 +23335,7 @@ Color = Yellow Shape = BipedalTail Kind = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22665,6 +23367,7 @@ Color = Gray Shape = Head Kind = Jewel Pokedex = Born from the high temperatures and pressures deep underground, it defends itself by firing beams from the jewel part of its body. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22696,6 +23399,7 @@ Color = Purple Shape = Serpentine Kind = Soft Tissue Pokedex = Its source of protection is its slimy, germ-laden mucous membrane. Anyone who touches it needs some thorough hand-washing. +Generation = 6 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -22728,6 +23432,7 @@ Color = Purple Shape = Serpentine Kind = Soft Tissue Pokedex = This Pokémon's mucous can dissolve anything. Toothless, it sprays mucous on its prey. Once they're nicely dissolved, it slurps them up. +Generation = 6 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -22760,6 +23465,7 @@ Color = Purple Shape = BipedalTail Kind = Dragon Pokedex = It gets picked on because it's meek. But then, whoever teased it gets to feel the full force of its horns and a good swatting from its thick tail. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22792,6 +23498,7 @@ Color = Gray Shape = Head Kind = Key Ring Pokedex = It never lets go of a key that it likes, so people give it the keys to vaults and safes as a way to prevent crime. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22824,6 +23531,7 @@ Color = Brown Shape = HeadArms Kind = Stump Pokedex = These Pokémon are stumps possessed by the spirits of children who died in the forest. Their cries sound like eerie screams. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22856,6 +23564,7 @@ Color = Brown Shape = Multiped Kind = Elder Tree Pokedex = Through its roots, it exerts control over other trees. A deadly curse falls upon anyone cutting down trees in forests where Trevenant dwell. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22888,6 +23597,7 @@ Shape = Head Kind = Pumpkin Pokedex = The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active. FormName = Small Size +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22920,6 +23630,7 @@ Shape = HeadBase Kind = Pumpkin Pokedex = Singing in eerie voices, they wander town streets on the night of the new moon. Anyone who hears their song is cursed. FormName = Small Size +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22951,6 +23662,7 @@ Color = Blue Shape = Quadruped Kind = Ice Chunk Pokedex = It blocks opponents' attacks with the ice that shields its body. It uses cold air to repair any cracks with new ice. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22982,6 +23694,7 @@ Color = Blue Shape = Quadruped Kind = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23014,6 +23727,7 @@ Color = Purple Shape = Winged Kind = Sound Wave Pokedex = Even a robust wrestler will become dizzy and unable to stand when exposed to its 200,000-hertz ultrasonic waves. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23046,6 +23760,7 @@ Color = Purple Shape = Winged Kind = Sound Wave Pokedex = They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23076,6 +23791,7 @@ Shape = Quadruped Kind = Life Pokedex = Legends say it can share eternal life. It slept for a thousand years in the form of a tree before its revival. FormName = Neutral Mode +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23106,6 +23822,7 @@ Color = Red Shape = Winged Kind = Destruction Pokedex = When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23137,6 +23854,7 @@ Shape = Serpentine Kind = Order Pokedex = It's thought to be monitoring the ecosystem. There are rumors that even greater power lies hidden within it. FormName = 50% Forme +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23167,6 +23885,7 @@ Color = Pink Shape = HeadArms Kind = Jewel Pokedex = A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23198,6 +23917,7 @@ Shape = HeadArms Kind = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23228,6 +23948,7 @@ Color = Brown Shape = Quadruped Kind = Steam Pokedex = It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23260,6 +23981,7 @@ Color = Brown Shape = Winged Kind = Grass Quill Pokedex = It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23292,6 +24014,7 @@ Color = Brown Shape = Winged Kind = Blade Quill Pokedex = A bit of a dandy, it spends its free time preening its wings. Its preoccupation with any dirt on its plumage can leave it unable to battle. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23324,6 +24047,7 @@ Color = Brown Shape = Winged Kind = Arrow Quill Pokedex = It fires arrow quills from its wings with such precision, they can pierce a pebble at distances over a hundred yards. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23355,6 +24079,7 @@ Color = Red Shape = Quadruped Kind = Fire Cat Pokedex = Its coat regrows twice a year. When the time comes, Litten sets its own body on fire and burns away the old fur. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23386,6 +24111,7 @@ Color = Red Shape = Quadruped Kind = Fire Cat Pokedex = It can act spoiled if it grows close to its Trainer. A powerful Pokémon, its sharp claws can leave its Trainer's whole body covered in scratches. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23418,6 +24144,7 @@ Color = Red Shape = BipedalTail Kind = Heel Pokedex = Although it's rough mannered and egotistical, it finds beating down unworthy opponents boring. It gets motivated for stronger opponents. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23449,6 +24176,7 @@ Color = Blue Shape = Finned Kind = Sea Lion Pokedex = This Pokémon snorts body fluids from its nose, blowing balloons to smash into its foes. It's famous for being a hard worker. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23480,6 +24208,7 @@ Color = Blue Shape = Finned Kind = Pop Star Pokedex = It gets excited when it sees a dance it doesn't know. This hard worker practices diligently until it can learn that dance. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23512,6 +24241,7 @@ Color = Blue Shape = Finned Kind = Soloist Pokedex = It controls its water balloons with song. The melody is learned from others of its kind and is passed down from one generation to the next. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23544,6 +24274,7 @@ Color = Black Shape = Winged Kind = Woodpecker Pokedex = It pecks at trees with its hard beak. You can get some idea of its mood or condition from the rhythm of its pecking. +Generation = 7 WildItemUncommon = ORANBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23577,6 +24308,7 @@ Color = Black Shape = Winged Kind = Bugle Beak Pokedex = It eats berries and stores their seeds in its beak. When it encounters enemies or prey, it fires off all the seeds in a burst. +Generation = 7 WildItemUncommon = SITRUSBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23610,6 +24342,7 @@ Color = Black Shape = Winged Kind = Cannon Pokedex = They smack beaks with others of their kind to communicate. The strength and number of hits tell each other how they feel. +Generation = 7 WildItemUncommon = RAWSTBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23642,6 +24375,7 @@ Color = Brown Shape = Quadruped Kind = Loitering Pokedex = Its stomach takes up most of its long torso. It's a big eater, so the amount Trainers have to spend on its food is no laughing matter. +Generation = 7 WildItemUncommon = PECHABERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23674,6 +24408,7 @@ Color = Brown Shape = Quadruped Kind = Stakeout Pokedex = When it finds a trace of its prey, it patiently stakes out the location... but it's always snoozing by nightfall. +Generation = 7 WildItemUncommon = PECHABERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23705,6 +24440,7 @@ Color = Gray Shape = Insectoid Kind = Larva Pokedex = It spits a sticky thread to stop opponents in their tracks, and then it grabs them in its sharp, sturdy mandibles to take them down. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23736,6 +24472,7 @@ Color = Green Shape = Serpentine Kind = Battery Pokedex = It buries itself in fallen leaves and barely moves, munching away on humus. If you accidentally step on one, you'll get a shock! +Generation = 7 WildItemUncommon = CELLBATTERY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23768,6 +24505,7 @@ Color = Blue Shape = Insectoid Kind = Stag Beetle Pokedex = It zips around, on sharp lookout for an opening. It concentrates electrical energy within its large jaws and uses it to zap its enemies. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23799,6 +24537,7 @@ Color = Purple Shape = Insectoid Kind = Boxing Pokedex = It punches so much, its pincers often come off from overuse, but they grow back quickly. What little meat they contain is rich and delicious. +Generation = 7 WildItemUncommon = ASPEARBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23832,6 +24571,7 @@ Color = White Shape = Insectoid Kind = Woolly Crab Pokedex = It aimed for the top but got lost and ended up on a snowy mountain. Being forced to endure the cold, this Pokémon evolved and grew fur. +Generation = 7 WildItemUncommon = CHERIBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23865,6 +24605,7 @@ Shape = Winged Kind = Dancing Pokedex = It beats its wings together to create fire. As it moves in the steps of its beautiful dance, it bathes opponents in intense flames. FormName = Baile Style +Generation = 7 WildItemUncommon = HONEY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23898,6 +24639,7 @@ Color = Yellow Shape = Insectoid Kind = Bee Fly Pokedex = It feeds on the nectar and pollen of flowers. Because it's able to sense auras, it can identify which flowers are about to bloom. +Generation = 7 WildItemUncommon = HONEY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23931,6 +24673,7 @@ Color = Yellow Shape = MultiWinged Kind = Bee Fly Pokedex = Rain makes pollen damp, so Ribombee hates rain. When it sees ominous clouds, it finds a hollow in a tree, where it waits stock-still. +Generation = 7 WildItemUncommon = HONEY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23963,6 +24706,7 @@ Color = Brown Shape = Quadruped Kind = Puppy Pokedex = This Pokémon has lived with people since times long ago. It can sense when its Trainer is in the dumps and will stick close by its Trainer's side. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23995,6 +24739,7 @@ Shape = Quadruped Kind = Wolf Pokedex = Its quick movements confuse its enemies. Well equipped with claws and fangs, it also uses the sharp rocks in its mane as weapons. FormName = Midday Form +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24026,6 +24771,7 @@ Shape = Finned Kind = Small Fry Pokedex = It's awfully weak and notably tasty, so everyone is always out to get it. As it happens, anyone trying to bully it receives a painful lesson. FormName = Solo Form +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24058,6 +24804,7 @@ Color = Blue Shape = HeadBase Kind = Brutal Star Pokedex = It plunges the poison spike on its head into its prey. When the prey has weakened, Mareanie deals the finishing blow with its 10 tentacles. +Generation = 7 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24091,6 +24838,7 @@ Color = Blue Shape = Multiped Kind = Brutal Star Pokedex = Those attacked by Toxapex's poison will suffer intense pain for three days and three nights. Post-recovery, there will be some aftereffects. +Generation = 7 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24123,6 +24871,7 @@ Color = Brown Shape = Quadruped Kind = Donkey Pokedex = It loves playing in the mud. If it isn't showered with mud on a daily basis, it gets stressed out and stops listening to its Trainer. +Generation = 7 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24155,6 +24904,7 @@ Color = Brown Shape = Quadruped Kind = Draft Horse Pokedex = It remains calm and unmoving no matter the situation. It mixes dirt with the saliva in its mouth to make a special kind of mud. +Generation = 7 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24188,6 +24938,7 @@ Color = Green Shape = HeadLegs Kind = Water Bubble Pokedex = When two Dewpider meet, they display their water bubbles to each other. Then the one with the smaller bubble gets out of the other's way. +Generation = 7 WildItemUncommon = MYSTICWATER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24221,6 +24972,7 @@ Color = Green Shape = Insectoid Kind = Water Bubble Pokedex = It delivers headbutts with the water bubble on its head. Small Pokémon get sucked into the bubble, where they drown. +Generation = 7 WildItemUncommon = MYSTICWATER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24253,6 +25005,7 @@ Color = Pink Shape = BipedalTail Kind = Sickle Grass Pokedex = When the sun rises, Fomantis spreads its four leaves and bathes in the sunlight. The tip of its head has a pleasant aroma. +Generation = 7 WildItemUncommon = MIRACLESEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24285,6 +25038,7 @@ Color = Pink Shape = Bipedal Kind = Bloom Sickle Pokedex = It requires a lot of effort to maintain Lurantis's vivid coloring, but some collectors enjoy this work and treat it as their hobby. +Generation = 7 WildItemUncommon = MIRACLESEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24318,6 +25072,7 @@ Color = Purple Shape = HeadBase Kind = Illuminating Pokedex = It scatters its shining spores around itself. Even though they're dangerous, nighttime tours of forests where Morelull live are popular. +Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 0 @@ -24352,6 +25107,7 @@ Color = Purple Shape = Bipedal Kind = Illuminating Pokedex = It puts its prey to sleep and siphons off their vitality through the tip of its arms. If one of its kind is weakened, it helps by sending it vitality. +Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 0 @@ -24386,6 +25142,7 @@ Color = Black Shape = Quadruped Kind = Toxic Lizard Pokedex = It burns its bodily fluids to create a poisonous gas. When its enemies become disoriented from inhaling the gas, it attacks them. +Generation = 7 WildItemUncommon = SMOKEBALL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24419,6 +25176,7 @@ Color = Black Shape = Quadruped Kind = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. +Generation = 7 WildItemUncommon = SMOKEBALL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24452,6 +25210,7 @@ Color = Pink Shape = Quadruped Kind = Flailing Pokedex = Despite its adorable appearance, when it gets angry and flails about, its arms and legs could knock a pro wrestler sprawling. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24484,6 +25243,7 @@ Color = Pink Shape = BipedalTail Kind = Strong Arm Pokedex = It waves its hands wildly in intimidation and warning. Life is over for anyone who doesn't run away as fast as possible. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24515,6 +25275,7 @@ Color = Purple Shape = HeadLegs Kind = Fruit Pokedex = Because of its sweet, delicious aroma, bird Pokémon are always after it, but it's not intelligent enough to care. +Generation = 7 WildItemUncommon = GRASSYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24547,6 +25308,7 @@ Color = Purple Shape = Bipedal Kind = Fruit Pokedex = It's protected by its hard sepals, so it plays with bird Pokémon without worry. They peck it relentlessly, but it doesn't care. +Generation = 7 WildItemUncommon = GRASSYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24579,6 +25341,7 @@ Color = Purple Shape = Bipedal Kind = Fruit Pokedex = A Pokémon with an aggressive personality and a mastery of kicking, it cackles every time it kicks an opponent. +Generation = 7 WildItemCommon = GRASSYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24611,6 +25374,7 @@ Color = Green Shape = Head Kind = Posy Picker Pokedex = Baths prepared with the flowers from its vine have a relaxing effect, so this Pokémon is a hit with many people. +Generation = 7 WildItemUncommon = MISTYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24644,6 +25408,7 @@ Color = White Shape = Bipedal Kind = Sage Pokedex = It normally spends its time meditating in the treetops. It throws Poké Balls and gives other Pokémon orders as it pleases. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24675,6 +25440,7 @@ Color = White Shape = BipedalTail Kind = Teamwork Pokedex = Berries are its weapons as well as the staple of its diet. The one that can throw a berry the farthest is the boss of the troop. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24706,6 +25472,7 @@ Color = Gray Shape = Multiped Kind = Turn Tail Pokedex = This Pokémon is a coward. As it desperately dashes off, the flailing of its many legs leaves a sparkling clean path in its wake. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24737,6 +25504,7 @@ Color = Gray Shape = Bipedal Kind = Hard Scale Pokedex = It battles skillfully with its six arms, but spends most of its time peacefully meditating in caves deep beneath the sea. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24769,6 +25537,7 @@ Color = Brown Shape = Serpentine Kind = Sand Heap Pokedex = It likes the shovel on its head, so Sandygast will get serious and fight any children who come to take it back. +Generation = 7 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24802,6 +25571,7 @@ Color = Brown Shape = Serpentine Kind = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. +Generation = 7 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24834,6 +25604,7 @@ Color = Black Shape = Serpentine Kind = Sea Cucumber Pokedex = It lives in shallow seas, such as areas near a beach. It can eject its internal organs, which it uses to engulf its prey or battle enemies. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24863,6 +25634,7 @@ Color = Gray Shape = Quadruped Kind = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24894,6 +25666,7 @@ Shape = Quadruped Kind = Synthetic Pokedex = Its trust in its partner is what awakens it. This Pokémon is capable of changing its type, a flexibility that is well displayed in battle. FormName = Type: Normal +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24925,6 +25698,7 @@ Shape = Head Kind = Meteor Pokedex = Originally making its home in the ozone layer, it hurtles to the ground when the shell enclosing its body grows too heavy. FormName = Meteor Form +Generation = 7 WildItemUncommon = STARPIECE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24956,6 +25730,7 @@ Color = Blue Shape = Bipedal Kind = Drowsing Pokedex = It remains asleep from birth to death as a result of the sedative properties of the leaves that form its diet. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24987,6 +25762,7 @@ Color = Red Shape = BipedalTail Kind = Blast Turtle Pokedex = It lives in volcanoes and eats sulfur and other minerals. Materials from the food it eats form the basis of its explosive shell. +Generation = 7 WildItemUncommon = CHARCOAL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25020,6 +25796,7 @@ Color = Gray Shape = BipedalTail Kind = Roly-Poly Pokedex = The long hairs on its back act as lightning rods. The bolts of lightning it attracts are stored as energy in its electric sac. +Generation = 7 WildItemUncommon = ELECTRICSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25053,6 +25830,7 @@ Shape = Serpentine Kind = Disguise Pokedex = A lonely Pokémon, it conceals its terrifying appearance beneath an old rag so it can get closer to people and other Pokémon. FormName = Disguised Form +Generation = 7 WildItemUncommon = CHESTOBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25086,6 +25864,7 @@ Color = Pink Shape = Finned Kind = Gnash Teeth Pokedex = When it unleashes its psychic power from the protuberance on its head, the grating sound of grinding teeth echoes through the area. +Generation = 7 WildItemUncommon = RAZORFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25119,6 +25898,7 @@ Color = White Shape = Serpentine Kind = Placid Pokedex = This Pokémon is friendly to people and loves children most of all. It comes from deep in the mountains to play with children it likes in town. +Generation = 7 WildItemUncommon = PERSIMBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25150,6 +25930,7 @@ Color = Green Shape = HeadBase Kind = Sea Creeper Pokedex = The soul of seaweed adrift in the waves became reborn as this Pokémon. It maintains itself with new infusions of seabed detritus and seaweed. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25181,6 +25962,7 @@ Color = Gray Shape = Quadruped Kind = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. +Generation = 7 WildItemUncommon = RAZORCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25214,6 +25996,7 @@ Color = Gray Shape = BipedalTail Kind = Scaly Pokedex = It sheds and regrows its scales on a continuous basis. The scales become harder and sharper each time they're regrown. +Generation = 7 WildItemUncommon = RAZORCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25247,6 +26030,7 @@ Color = Gray Shape = BipedalTail Kind = Scaly Pokedex = Its rigid scales function as offense and defense. In the past, its scales were processed and used to make weapons and other commodities. +Generation = 7 WildItemCommon = RAZORCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25279,6 +26063,7 @@ Color = Yellow Shape = HeadArms Kind = Land Spirit Pokedex = Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25310,6 +26095,7 @@ Color = Pink Shape = HeadArms Kind = Land Spirit Pokedex = As it flutters about, it scatters its strangely glowing scales. Touching them is said to restore good health on the spot. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25341,6 +26127,7 @@ Color = Red Shape = HeadArms Kind = Land Spirit Pokedex = It pulls large trees up by the roots and swings them around. It causes vegetation to grow, and then it absorbs energy from the growth. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25372,6 +26159,7 @@ Color = Purple Shape = HeadArms Kind = Land Spirit Pokedex = The dense fog it creates brings the downfall and destruction of its confused enemies. Ocean currents are the source of its energy. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25400,6 +26188,7 @@ Color = Blue Shape = Head Kind = Nebula Pokedex = Whether or not it's a Pokémon from this world is a mystery. When it's in a jam, it warps away to a safe place to hide. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25429,6 +26218,7 @@ Color = Blue Shape = Head Kind = Protostar Pokedex = Motionless as if dead, its body is faintly warm to the touch. In the distant past, it was called the cocoon of the stars. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25460,6 +26250,7 @@ Color = White Shape = Quadruped Kind = Sunne Pokedex = It is said to live in another world. The intense light it radiates from the surface of its body can make the darkest of nights light up like midday. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25490,6 +26281,7 @@ Color = Purple Shape = Winged Kind = Moone Pokedex = Said to live in another world, this Pokémon devours light, drawing the moonless dark veil of night over the brightness of day. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25520,6 +26312,7 @@ Color = White Shape = Multiped Kind = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25550,6 +26343,7 @@ Color = Red Shape = Multiped Kind = Swollen Pokedex = This Ultra Beast appeared from another world. It shows off its body, but whether that display is a boast or a threat remains unclear. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25580,6 +26374,7 @@ Color = White Shape = Bipedal Kind = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25609,6 +26404,7 @@ Color = Black Shape = BipedalTail Kind = Glowing Pokedex = One of the mysterious life-forms known as Ultra Beasts. Astonishing electric shocks emanate from its entire body, according to witnesses. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25639,6 +26435,7 @@ Color = Green Shape = Bipedal Kind = Launch Pokedex = One kind of Ultra Beast. Witnesses have seen it burn down a forest by expelling gas from its two arms. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25669,6 +26466,7 @@ Color = White Shape = Bipedal Kind = Drawn Sword Pokedex = One of the Ultra Beast life-forms, it was observed cutting down a gigantic steel tower with one stroke of its blade. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25699,6 +26497,7 @@ Color = Black Shape = BipedalTail Kind = Junkivore Pokedex = A dangerous Ultra Beast, it appears to be eating constantly, but for some reason its droppings have never been found. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25728,6 +26527,7 @@ Color = Black Shape = HeadArms Kind = Prism Pokedex = Light is apparently the source of its energy. It has an extraordinarily vicious disposition and is constantly firing off laser beams. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25758,6 +26558,7 @@ Color = Gray Shape = Bipedal Kind = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25788,6 +26589,7 @@ Color = Gray Shape = Bipedal Kind = Gloomdweller Pokedex = Able to conceal itself in shadows, it never appears before humans, so its very existence was the stuff of myth. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25817,6 +26619,7 @@ Color = Purple Shape = BipedalTail Kind = Poison Pin Pokedex = An Ultra Beast that lives in a different world, it cackles wildly as it sprays its opponents with poison from the needles on its head. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25848,6 +26651,7 @@ Color = Purple Shape = Winged Kind = Poison Pin Pokedex = One kind of Ultra Beast, it fires a glowing, venomous liquid from its needles. This liquid is also immensely adhesive. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25878,6 +26682,7 @@ Color = Gray Shape = Quadruped Kind = Rampart Pokedex = When stone walls started moving and attacking, the brute's true identity was this mysterious life-form, which brings to mind an Ultra Beast. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25908,6 +26713,7 @@ Color = White Shape = Bipedal Kind = Fireworks Pokedex = It slithers toward people. Then, without warning, it triggers the explosion of its own head. It's apparently one kind of Ultra Beast. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25937,6 +26743,7 @@ Color = Yellow Shape = Bipedal Kind = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25965,6 +26772,7 @@ Color = Gray Shape = Head Kind = Hex Nut Pokedex = It melts particles of iron and other metals found in the subsoil, so it can absorb them into its body of molten steel. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25994,6 +26802,7 @@ Color = Gray Shape = Bipedal Kind = Hex Nut Pokedex = Revered long ago for its capacity to create iron from nothing, for some reason it has come back to life after 3,000 years. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 diff --git a/PBS/Gen 7/pokemonforms.txt b/PBS/Gen 7/pokemonforms.txt index 16a268f9d..6bcea84b2 100644 --- a/PBS/Gen 7/pokemonforms.txt +++ b/PBS/Gen 7/pokemonforms.txt @@ -9,6 +9,7 @@ HiddenAbility = THICKFAT Height = 2.4 Weight = 155.5 Pokedex = In order to support its flower, which has grown larger due to Mega Evolution, its back and legs have become stronger. +Generation = 6 #------------------------------- [CHARIZARD,1] FormName = Mega Charizard X @@ -21,6 +22,7 @@ HiddenAbility = TOUGHCLAWS Weight = 110.5 Color = Black Pokedex = The overwhelming power that fills its entire body causes it to turn black and create intense blue flames. +Generation = 6 #------------------------------- [CHARIZARD,2] FormName = Mega Charizard Y @@ -30,6 +32,7 @@ Abilities = DROUGHT HiddenAbility = DROUGHT Weight = 100.5 Pokedex = Its bond with its Trainer is the source of its power. It boasts speed and maneuverability greater than that of a jet fighter. +Generation = 6 #------------------------------- [BLASTOISE,1] FormName = Mega Blastoise @@ -39,6 +42,7 @@ Abilities = MEGALAUNCHER HiddenAbility = MEGALAUNCHER Weight = 101.1 Pokedex = The cannon on its back is as powerful as a tank gun. Its tough legs and back enable it to withstand the recoil from firing the cannon. +Generation = 6 #------------------------------- [BEEDRILL,1] FormName = Mega Beedrill @@ -49,6 +53,7 @@ HiddenAbility = ADAPTABILITY Height = 1.4 Weight = 40.5 Pokedex = Its legs have become poison stingers. It stabs its prey repeatedly with the stingers on its limbs, dealing the final blow with the stinger on its rear. +Generation = 6 #------------------------------- [PIDGEOT,1] FormName = Mega Pidgeot @@ -59,6 +64,7 @@ HiddenAbility = NOGUARD Height = 2.2 Weight = 50.5 Pokedex = With its muscular strength now greatly increased, it can fly continuously for two weeks without resting. +Generation = 6 #------------------------------- [RATTATA,1] FormName = Alolan @@ -71,6 +77,7 @@ EggMoves = COUNTER,FINALGAMBIT,FURYSWIPES,MEFIRST,REVENGE,REVERSAL,SNATCH,STOCKP Weight = 3.8 Color = Black Pokedex = With its incisors, it gnaws through doors and infiltrates people’s homes. Then, with a twitch of its whiskers, it steals whatever food it finds. +Generation = 7 WildItemUncommon = PECHABERRY Evolutions = RATICATE,LevelNight,20 #------------------------------- @@ -85,6 +92,7 @@ TutorMoves = ATTRACT,BLIZZARD,BULKUP,CONFIDE,COVET,DARKPULSE,DOUBLETEAM,EMBARGO, Weight = 25.5 Color = Black Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often. +Generation = 7 WildItemUncommon = PECHABERRY #------------------------------- [RAICHU,1] @@ -100,6 +108,7 @@ Height = 0.7 Weight = 21.0 Color = Brown Pokedex = It uses psychokinesis to control electricity. It hops aboard its own tail, using psychic power to lift the tail and move about while riding it. +Generation = 7 #------------------------------- [SANDSHREW,1] FormName = Alolan @@ -115,6 +124,7 @@ Height = 0.7 Weight = 40.0 Color = White Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately. +Generation = 7 Evolutions = SANDSLASH,Item,ICESTONE #------------------------------- [SANDSLASH,1] @@ -130,6 +140,7 @@ Height = 1.2 Weight = 55.0 Color = Blue Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow. +Generation = 7 #------------------------------- [VULPIX,1] FormName = Alolan @@ -141,6 +152,7 @@ TutorMoves = AQUATAIL,ATTRACT,AURORAVEIL,BLIZZARD,CONFIDE,COVET,DARKPULSE,DOUBLE EggMoves = AGILITY,CHARM,DISABLE,ENCORE,EXTRASENSORY,FLAIL,FREEZEDRY,HOWL,HYPNOSIS,MOONBLAST,POWERSWAP,SECRETPOWER,SPITE,TAILSLAP Color = White Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off. +Generation = 7 WildItemUncommon = SNOWBALL Evolutions = NINETALES,Item,ICESTONE #------------------------------- @@ -156,6 +168,7 @@ Moves = 0,DAZZLINGGLEAM,1,DAZZLINGGLEAM,1,IMPRISON,1,NASTYPLOT,1,ICEBEAM,1,ICESH TutorMoves = AQUATAIL,ATTRACT,AURORAVEIL,BLIZZARD,CALMMIND,CONFIDE,COVET,DARKPULSE,DAZZLINGGLEAM,DOUBLETEAM,DREAMEATER,FACADE,FOULPLAY,FROSTBREATH,FRUSTRATION,GIGAIMPACT,HAIL,HEALBELL,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,IRONTAIL,LASERFOCUS,PAINSPLIT,PAYBACK,PROTECT,PSYCHUP,PSYSHOCK,RAINDANCE,REST,RETURN,ROAR,ROLEPLAY,ROUND,SAFEGUARD,SLEEPTALK,SNORE,SPITE,SUBSTITUTE,SWAGGER,TOXIC,WONDERROOM,ZENHEADBUTT Color = Blue Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard. +Generation = 7 WildItemUncommon = SNOWBALL #------------------------------- [DIGLETT,1] @@ -169,6 +182,7 @@ TutorMoves = AERIALACE,ATTRACT,BULLDOZE,CONFIDE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE EggMoves = ANCIENTPOWER,BEATUP,ENDURE,FEINTATTACK,FINALGAMBIT,HEADBUTT,MEMENTO,METALSOUND,PURSUIT,REVERSAL,THRASH Weight = 1.0 Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro. +Generation = 7 #------------------------------- [DUGTRIO,1] FormName = Alolan @@ -181,6 +195,7 @@ Moves = 0,SANDTOMB,1,SANDTOMB,1,ROTOTILLER,1,NIGHTSLASH,1,TRIATTACK,1,SANDATTACK TutorMoves = AERIALACE,ATTRACT,BULLDOZE,CONFIDE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,FACADE,FLASHCANNON,FRUSTRATION,GIGAIMPACT,HIDDENPOWER,HYPERBEAM,IRONDEFENSE,IRONHEAD,PROTECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SANDSTORM,SHADOWCLAW,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SWAGGER,THIEF,TOXIC,WORKUP Weight = 66.6 Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck. +Generation = 7 #------------------------------- [MEOWTH,1] FormName = Alolan @@ -192,6 +207,7 @@ TutorMoves = AERIALACE,ATTRACT,CONFIDE,COVET,DARKPULSE,DOUBLETEAM,DREAMEATER,ECH EggMoves = AMNESIA,ASSIST,CHARM,COVET,FLAIL,FLATTER,FOULPLAY,HYPNOSIS,PARTINGSHOT,PUNISHMENT,SNATCH,SPITE Color = Blue Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs. +Generation = 7 Evolutions = PERSIAN,Happiness, #------------------------------- [PERSIAN,1] @@ -206,6 +222,7 @@ Height = 1.1 Weight = 33.0 Color = Blue Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful. +Generation = 7 #------------------------------- [ALAKAZAM,1] FormName = Mega Alakazam @@ -215,6 +232,7 @@ Abilities = TRACE HiddenAbility = TRACE Height = 1.2 Pokedex = Having traded away its muscles, Alakazam's true power has been unleashed. With its psychic powers, it can foresee all things. +Generation = 6 #------------------------------- [GEODUDE,1] FormName = Alolan @@ -228,6 +246,7 @@ EggMoves = AUTOTOMIZE,BLOCK,COUNTER,CURSE,ENDURE,FLAIL,MAGNETRISE,ROCKCLIMB,SCRE Weight = 20.3 Color = Gray Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism. +Generation = 7 WildItemUncommon = CELLBATTERY #------------------------------- [GRAVELER,1] @@ -241,6 +260,7 @@ TutorMoves = ALLYSWITCH,ATTRACT,BLOCK,BRICKBREAK,BRUTALSWING,BULLDOZE,CHARGEBEAM Weight = 110.0 Color = Gray Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise. +Generation = 7 WildItemUncommon = CELLBATTERY #------------------------------- [GOLEM,1] @@ -255,6 +275,7 @@ Height = 1.7 Weight = 316.0 Color = Gray Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting. +Generation = 7 WildItemCommon = CELLBATTERY #------------------------------- [SLOWBRO,1] @@ -267,6 +288,7 @@ Height = 2.0 Weight = 120.0 Shape = HeadArms Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too. +Generation = 6 #------------------------------- [GRIMER,1] FormName = Alolan @@ -281,6 +303,7 @@ Height = 0.7 Weight = 42.0 Color = Green Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form. +Generation = 7 #------------------------------- [MUK,1] FormName = Alolan @@ -294,6 +317,7 @@ Height = 1.0 Weight = 52.0 Color = Green Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration. +Generation = 7 #------------------------------- [GENGAR,1] FormName = Mega Gengar @@ -303,6 +327,7 @@ Abilities = SHADOWTAG HiddenAbility = SHADOWTAG Height = 1.4 Pokedex = The energy of Mega Evolution awakened it. It sinks into another dimension, where it keeps a patient watch for its chance to attack. +Generation = 6 #------------------------------- [EXEGGUTOR,1] FormName = Alolan @@ -315,8 +340,10 @@ TutorMoves = ATTRACT,BLOCK,BRICKBREAK,BRUTALSWING,BULLDOZE,CONFIDE,DOUBLETEAM,DR Height = 10.9 Weight = 415.6 Pokedex = As it grew taller and taller, it outgrew its reliance on psychic powers, while within it awakened the power of the sleeping dragon. +Generation = 7 #------------------------------- [CUBONE,1] +Generation = 7 Evolutions = MAROWAK,LevelNight,28 #------------------------------- [MAROWAK,1] @@ -329,7 +356,8 @@ Moves = 1,GROWL,1,TAILWHIP,1,BONECLUB,1,FLAMEWHEEL,3,TAILWHIP,7,BONECLUB,11,FLAM TutorMoves = AERIALACE,ALLYSWITCH,ATTRACT,BLIZZARD,BRICKBREAK,BRUTALSWING,BULLDOZE,CONFIDE,DARKPULSE,DOUBLETEAM,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENDEAVOR,FACADE,FALSESWIPE,FIREBLAST,FIREPUNCH,FLAMECHARGE,FLAMETHROWER,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,HEATWAVE,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,IRONDEFENSE,IRONHEAD,IRONTAIL,KNOCKOFF,LASERFOCUS,LOWKICK,OUTRAGE,PAINSPLIT,PROTECT,RAINDANCE,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SANDSTORM,SHADOWBALL,SLEEPTALK,SMACKDOWN,SNORE,SPITE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SWAGGER,SWORDSDANCE,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERPUNCH,TOXIC,UPROAR,WILLOWISP Weight = 34.0 Color = Purple -Pokedex = Its custom is to mourn its lost companions. Mounds of dirt by the side of the road mark the graves of the Marowak +Pokedex = Its custom is to mourn its lost companions. Mounds of dirt by the side of the road mark the graves of the Marowak. +Generation = 7 #------------------------------- [KANGASKHAN,1] FormName = Mega Kangaskhan @@ -339,6 +367,7 @@ Abilities = PARENTALBOND HiddenAbility = PARENTALBOND Weight = 100.0 Pokedex = The explosive energy the child is bathed in causes temporary growth. The mother is beside herself with worry about it. +Generation = 6 #------------------------------- [PINSIR,1] FormName = Mega Pinsir @@ -352,6 +381,7 @@ Height = 1.7 Weight = 59.0 Shape = MultiWinged Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers. +Generation = 6 #------------------------------- [GYARADOS,1] FormName = Mega Gyarados @@ -363,6 +393,7 @@ Abilities = MOLDBREAKER HiddenAbility = MOLDBREAKER Weight = 305.0 Pokedex = It zooms out of the water at Mach speeds. Even large ships caught in its path are split cleanly in two! +Generation = 6 #------------------------------- [AERODACTYL,1] FormName = Mega Aerodactyl @@ -373,6 +404,7 @@ HiddenAbility = TOUGHCLAWS Height = 2.1 Weight = 79.0 Pokedex = When it Mega Evolves, it becomes more vicious than ever before. Some say that's because its excess of power is causing it pain. +Generation = 6 #------------------------------- [MEWTWO,1] FormName = Mega Mewtwo X @@ -385,6 +417,7 @@ HiddenAbility = STEADFAST Height = 2.3 Weight = 127.0 Pokedex = Psychic power has augmented its muscles. It has a grip strength of one ton and can sprint a hundred meters in two seconds flat! +Generation = 6 #------------------------------- [MEWTWO,2] FormName = Mega Mewtwo Y @@ -395,9 +428,11 @@ HiddenAbility = INSOMNIA Height = 1.5 Weight = 33.0 Pokedex = Despite its diminished size, its mental power has grown phenomenally. With a mere thought, it can smash a skyscraper to smithereens. +Generation = 6 #------------------------------- [PICHU,1] FormName = Spiky-Eared +Generation = 4 BattlerEnemyX = 3 Evolutions = PIKACHU,None, #------------------------------- @@ -410,6 +445,7 @@ BaseStats = 90,95,105,45,165,110 Abilities = MOLDBREAKER HiddenAbility = MOLDBREAKER Pokedex = Massive amounts of energy intensely stimulated Ampharos's cells, apparently awakening its long-sleeping dragon's blood. +Generation = 6 #------------------------------- [UNOWN,1] FormName = B @@ -488,9 +524,11 @@ FormName = Z #------------------------------- [UNOWN,26] FormName = ? +Generation = 3 #------------------------------- [UNOWN,27] FormName = ! +Generation = 3 #------------------------------- [STEELIX,1] FormName = Mega Steelix @@ -500,6 +538,7 @@ Abilities = SANDFORCE HiddenAbility = SANDFORCE Height = 10.5 Weight = 740.0 +Generation = 6 #------------------------------- [SCIZOR,1] FormName = Mega Scizor @@ -510,6 +549,7 @@ HiddenAbility = TECHNICIAN Height = 2.0 Weight = 125.0 Pokedex = It's better at beating things than grasping them. When it battles for a long time, the weight of its pincers becomes too much to bear. +Generation = 6 #------------------------------- [HERACROSS,1] FormName = Mega Heracross @@ -520,6 +560,7 @@ HiddenAbility = SKILLLINK Height = 1.7 Weight = 62.5 Pokedex = A tremendous influx of energy builds it up, but when Mega Evolution ends, Heracross is bothered by terrible soreness in its muscles. +Generation = 6 #------------------------------- [HOUNDOOM,1] FormName = Mega Houndoom @@ -530,6 +571,7 @@ HiddenAbility = SOLARPOWER Height = 1.9 Weight = 49.5 Pokedex = Its red claws and the tips of its tail are melting from high internal temperatures that are painful to Houndoom itself. +Generation = 6 #------------------------------- [TYRANITAR,1] FormName = Mega Tyranitar @@ -539,6 +581,7 @@ HiddenAbility = SANDSTREAM Height = 2.5 Weight = 255.0 Pokedex = Due to the colossal power poured into it, this Pokémon's back split right open. Its destructive instincts are the only thing keeping it moving. +Generation = 6 #------------------------------- [SCEPTILE,1] FormName = Mega Sceptile @@ -550,12 +593,14 @@ Abilities = LIGHTNINGROD HiddenAbility = LIGHTNINGROD Height = 1.9 Weight = 55.2 +Generation = 6 #------------------------------- [BLAZIKEN,1] FormName = Mega Blaziken MegaStone = BLAZIKENITE BaseStats = 80,160,80,100,130,80 Abilities = SPEEDBOOST +Generation = 6 #------------------------------- [SWAMPERT,1] FormName = Mega Swampert @@ -565,6 +610,7 @@ Abilities = SWIFTSWIM HiddenAbility = SWIFTSWIM Height = 1.9 Weight = 102.0 +Generation = 6 #------------------------------- [GARDEVOIR,1] FormName = Mega Gardevoir @@ -572,6 +618,7 @@ MegaStone = GARDEVOIRITE BaseStats = 68,85,65,100,165,135 Abilities = PIXILATE HiddenAbility = PIXILATE +Generation = 6 #------------------------------- [SABLEYE,1] FormName = Mega Sableye @@ -581,6 +628,7 @@ Abilities = MAGICBOUNCE HiddenAbility = MAGICBOUNCE Weight = 161.0 Pokedex = Supporting a giant heavy jewel, it can't change direction very nimbly and is vulnerable to attack from behind. +Generation = 6 #------------------------------- [MAWILE,1] FormName = Mega Mawile @@ -591,6 +639,7 @@ HiddenAbility = HUGEPOWER Height = 1.0 Weight = 23.5 Pokedex = Its two sets of jaws thrash about violently as if they each had a will of their own. One gnash from them can turn a boulder to dust. +Generation = 6 #------------------------------- [AGGRON,1] FormName = Mega Aggron @@ -601,12 +650,14 @@ Abilities = FILTER HiddenAbility = FILTER Height = 2.2 Weight = 395.0 +Generation = 6 #------------------------------- [MEDICHAM,1] FormName = Mega Medicham MegaStone = MEDICHAMITE BaseStats = 60,100,85,100,80,85 HiddenAbility = PUREPOWER +Generation = 6 #------------------------------- [MANECTRIC,1] FormName = Mega Manectric @@ -617,6 +668,7 @@ HiddenAbility = INTIMIDATE Height = 1.8 Weight = 44.0 Pokedex = Too much electricity has built up in its body, irritating Manectric. Its explosive speed is equal to that of a lightning bolt. +Generation = 6 #------------------------------- [SHARPEDO,1] FormName = Mega Sharpedo @@ -627,6 +679,7 @@ HiddenAbility = STRONGJAW Height = 2.5 Weight = 130.3 Pokedex = The yellow patterns it bears are old scars. The energy from Mega Evolution runs through them, causing it sharp pain and suffering. +Generation = 6 #------------------------------- [CAMERUPT,1] FormName = Mega Camerupt @@ -636,6 +689,7 @@ Abilities = SHEERFORCE HiddenAbility = SHEERFORCE Height = 2.5 Weight = 320.5 +Generation = 6 #------------------------------- [ALTARIA,1] FormName = Mega Altaria @@ -646,6 +700,7 @@ BaseStats = 75,110,110,80,110,105 Abilities = PIXILATE HiddenAbility = PIXILATE Height = 1.5 +Generation = 6 #------------------------------- [CASTFORM,1] FormName = Sunny Form @@ -681,6 +736,7 @@ HiddenAbility = PRANKSTER Height = 1.2 Weight = 13.0 Pokedex = Extraordinary energy amplifies its cursing power to such an extent that it can't help but curse its own Trainer. +Generation = 6 #------------------------------- [ABSOL,1] FormName = Mega Absol @@ -690,6 +746,7 @@ Abilities = MAGICBOUNCE HiddenAbility = MAGICBOUNCE Weight = 49.0 Pokedex = When this Pokémon whips the winglike fur on its back as though beating its wings, it sends an intimidating aura flying at its opponents. +Generation = 6 #------------------------------- [GLALIE,1] FormName = Mega Glalie @@ -700,6 +757,7 @@ HiddenAbility = REFRIGERATE Height = 2.1 Weight = 350.2 Pokedex = It envelops prey in its mouth, freezing them instantly. But its jaw is dislocated, so it's unable to eat them. +Generation = 6 #------------------------------- [SALAMENCE,1] FormName = Mega Salamence @@ -710,6 +768,7 @@ HiddenAbility = AERILATE Height = 1.8 Weight = 112.6 Pokedex = It puts its forelegs inside its shell to streamline itself for flight. Salamence flies at high speeds over all kinds of topographical features. +Generation = 6 #------------------------------- [METAGROSS,1] FormName = Mega Metagross @@ -720,6 +779,7 @@ HiddenAbility = TOUGHCLAWS Height = 2.5 Weight = 942.9 Pokedex = Its intellect surpasses its previous level, resulting in battles so cruel, they'll make you want to cover your eyes. +Generation = 6 #------------------------------- [LATIAS,1] FormName = Mega Latias @@ -728,6 +788,7 @@ BaseStats = 80,100,120,110,140,150 Height = 1.8 Weight = 52.0 Color = Purple +Generation = 6 #------------------------------- [LATIOS,1] FormName = Mega Latios @@ -736,6 +797,7 @@ BaseStats = 80,130,100,110,160,120 Height = 2.3 Weight = 70.0 Color = Purple +Generation = 6 #------------------------------- [KYOGRE,1] FormName = Primal Kyogre @@ -743,6 +805,7 @@ BaseStats = 100,150,90,90,180,160 Abilities = PRIMORDIALSEA Height = 9.8 Weight = 430.0 +Generation = 6 #------------------------------- [GROUDON,1] FormName = Primal Groudon @@ -752,6 +815,7 @@ BaseStats = 100,180,160,90,150,90 Abilities = DESOLATELAND Height = 5.0 Weight = 999.7 +Generation = 6 #------------------------------- [RAYQUAZA,1] FormName = Mega Rayquaza @@ -762,6 +826,7 @@ Abilities = DELTASTREAM HiddenAbility = DELTASTREAM Height = 10.8 Weight = 392.0 +Generation = 6 #------------------------------- [DEOXYS,1] FormName = Attack Forme @@ -850,6 +915,7 @@ HiddenAbility = SCRAPPY Height = 1.3 Weight = 28.3 Pokedex = It swings its ears like whips and strikes its enemies with them. It has an intensely combative disposition. +Generation = 6 #------------------------------- [GARCHOMP,1] FormName = Mega Garchomp @@ -858,6 +924,7 @@ BaseStats = 108,170,115,92,120,95 Abilities = SANDFORCE HiddenAbility = SANDFORCE Pokedex = Its vaunted wings become scythes, sending it mad with rage. It swings its scythes wildly and slices the ground to pieces. +Generation = 6 #------------------------------- [LUCARIO,1] FormName = Mega Lucario @@ -868,6 +935,7 @@ HiddenAbility = ADAPTABILITY Height = 1.3 Weight = 57.5 Pokedex = It readies itself to face its enemies by focusing its mental energies. Its fighting style can be summed up in a single word: heartless. +Generation = 6 #------------------------------- [ABOMASNOW,1] FormName = Mega Abomasnow @@ -876,6 +944,7 @@ BaseStats = 90,132,105,30,132,105 HiddenAbility = SNOWWARNING Height = 2.7 Weight = 185.0 +Generation = 6 #------------------------------- [GALLADE,1] FormName = Mega Gallade @@ -884,6 +953,7 @@ BaseStats = 68,165,95,110,65,115 Abilities = INNERFOCUS HiddenAbility = INNERFOCUS Weight = 56.4 +Generation = 6 #------------------------------- [ROTOM,1] FormName = Heat Rotom @@ -1034,6 +1104,7 @@ Type1 = DARK [ARCEUS,18] FormName = Fairy Type Type1 = FAIRY +Generation = 6 #------------------------------- [AUDINO,1] FormName = Mega Audino @@ -1046,6 +1117,7 @@ HiddenAbility = HEALER Height = 1.5 Weight = 32.0 Color = White +Generation = 6 #------------------------------- [BASCULIN,1] FormName = Blue-Striped @@ -1206,6 +1278,7 @@ FormName = Ash-Greninja BaseStats = 72,145,67,132,153,71 Abilities = BATTLEBOND HiddenAbility = BATTLEBOND +Generation = 7 #------------------------------- [VIVILLON,1] FormName = Continental Pattern @@ -1404,6 +1477,7 @@ Weight = 33.5 Color = Black Shape = Quadruped Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them. +Generation = 7 #------------------------------- [ZYGARDE,2] FormName = Complete Forme @@ -1414,6 +1488,7 @@ Weight = 610.0 Color = Black Shape = BipedalTail Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything. +Generation = 7 #------------------------------- [ZYGARDE,3] PokedexForm = 2 diff --git a/PBS/pokemon.txt b/PBS/pokemon.txt index fe5904dab..476785c03 100644 --- a/PBS/pokemon.txt +++ b/PBS/pokemon.txt @@ -26,6 +26,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -59,6 +60,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -92,6 +94,7 @@ Shape = Quadruped Habitat = Grassland Kind = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -124,6 +127,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. +Generation = 1 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -156,6 +160,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -189,6 +194,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -221,6 +227,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -253,6 +260,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -285,6 +293,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -316,6 +325,7 @@ Shape = Insectoid Habitat = Forest Kind = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -347,6 +357,7 @@ Shape = Serpentine Habitat = Forest Kind = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -380,6 +391,7 @@ Shape = MultiWinged Habitat = Forest Kind = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. +Generation = 1 WildItemUncommon = SILVERPOWDER BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -413,6 +425,7 @@ Shape = Insectoid Habitat = Forest Kind = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -445,6 +458,7 @@ Shape = Serpentine Habitat = Forest Kind = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -478,6 +492,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -512,6 +527,7 @@ Shape = Winged Habitat = Forest Kind = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -545,6 +561,7 @@ Shape = Winged Habitat = Forest Kind = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 8 @@ -578,6 +595,7 @@ Shape = Winged Habitat = Forest Kind = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -610,6 +628,7 @@ Shape = Quadruped Habitat = Grassland Kind = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. +Generation = 1 WildItemUncommon = CHILANBERRY BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -643,6 +662,7 @@ Shape = Quadruped Habitat = Grassland Kind = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. +Generation = 1 WildItemUncommon = CHILANBERRY BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -677,6 +697,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -711,6 +732,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 10 BattlerPlayerY = 0 @@ -744,6 +766,7 @@ Shape = Serpentine Habitat = Grassland Kind = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -776,6 +799,7 @@ Shape = Serpentine Habitat = Grassland Kind = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -807,6 +831,7 @@ Shape = Quadruped Habitat = Forest Kind = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. +Generation = 1 WildItemUncommon = LIGHTBALL BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -840,6 +865,7 @@ Shape = BipedalTail Habitat = Forest Kind = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 11 @@ -872,6 +898,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. +Generation = 1 WildItemUncommon = GRIPCLAW BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -905,6 +932,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. +Generation = 1 WildItemUncommon = GRIPCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -938,6 +966,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -970,6 +999,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1003,6 +1033,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1035,6 +1066,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1067,6 +1099,7 @@ Shape = Quadruped Habitat = Grassland Kind = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. +Generation = 1 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1100,6 +1133,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -1131,6 +1165,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Fairy Pokedex = On every night of a full moon, they come out to play. When dawn arrives, the tired Clefairy go to sleep nestled up against each other in deep and quiet mountains. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1164,6 +1199,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Fairy Pokedex = A Clefable uses its wings to skip lightly as if it were flying. Its bouncy step lets it even walk on water. On quiet, moonlit nights, it strolls on lakes. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -1197,6 +1233,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fox Pokedex = It can freely control fire, making fiery orbs fly like will-o'-the-wisps. Just before evolution, its six tails grow hot as if on fire. +Generation = 1 WildItemUncommon = CHARCOAL BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -1230,6 +1267,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fox Pokedex = It has long been said that each of the nine tails embody an enchanted power. A long-lived Ninetales will have fur that shines like gold. +Generation = 1 WildItemUncommon = CHARCOAL BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -1263,6 +1301,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1297,6 +1336,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. +Generation = 1 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1331,6 +1371,7 @@ Shape = Winged Habitat = Cave Kind = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -1364,6 +1405,7 @@ Shape = Winged Habitat = Cave Kind = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. +Generation = 1 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -1398,6 +1440,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. +Generation = 1 WildItemUncommon = ABSORBBULB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -1432,6 +1475,7 @@ Shape = Bipedal Habitat = Grassland Kind = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. +Generation = 1 WildItemUncommon = ABSORBBULB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -1466,6 +1510,7 @@ Shape = Bipedal Habitat = Grassland Kind = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. +Generation = 1 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1500,6 +1545,7 @@ Shape = Insectoid Habitat = Forest Kind = Mushroom Pokedex = A Paras has parasitic tochukaso mushrooms growing on its back. They grow by drawing nutrients from the host. They are valued as a medicine for long life. +Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 5 @@ -1535,6 +1581,7 @@ Shape = Insectoid Habitat = Forest Kind = Mushroom Pokedex = Parasect are known to infest the roots of large trees en masse and drain nutrients. When an infested tree dies, they move onto another tree all at once. +Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 1 @@ -1570,6 +1617,7 @@ Shape = Bipedal Habitat = Forest Kind = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. +Generation = 1 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1603,6 +1651,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. +Generation = 1 WildItemUncommon = SHEDSHELL BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -1636,6 +1685,7 @@ Shape = HeadBase Habitat = Cave Kind = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. +Generation = 1 WildItemUncommon = SOFTSAND BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -1669,6 +1719,7 @@ Shape = MultiBody Habitat = Cave Kind = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. +Generation = 1 WildItemUncommon = SOFTSAND BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -1702,6 +1753,7 @@ Shape = Quadruped Habitat = Urban Kind = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -1735,6 +1787,7 @@ Shape = Quadruped Habitat = Urban Kind = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. +Generation = 1 WildItemUncommon = QUICKCLAW BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -1768,6 +1821,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -1800,6 +1854,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -1832,6 +1887,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1864,6 +1920,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1896,6 +1953,7 @@ Shape = Quadruped Habitat = Grassland Kind = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -1928,6 +1986,7 @@ Shape = Quadruped Habitat = Grassland Kind = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. +Generation = 1 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -1960,6 +2019,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 9 @@ -1992,6 +2052,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = 10 BattlerPlayerY = 0 @@ -2026,6 +2087,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -2059,6 +2121,7 @@ Shape = BipedalTail Habitat = Urban Kind = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2092,6 +2155,7 @@ Shape = BipedalTail Habitat = Urban Kind = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2125,6 +2189,7 @@ Shape = Bipedal Habitat = Urban Kind = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. +Generation = 1 WildItemUncommon = TWISTEDSPOON BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -2158,6 +2223,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. +Generation = 1 WildItemUncommon = FOCUSBAND BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2191,6 +2257,7 @@ Shape = Bipedal Habitat = Mountain Kind = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. +Generation = 1 WildItemUncommon = FOCUSBAND BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -2224,6 +2291,7 @@ Shape = Bipedal Habitat = Mountain Kind = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. +Generation = 1 WildItemUncommon = FOCUSBAND BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -2258,6 +2326,7 @@ Shape = Bipedal Habitat = Forest Kind = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -2291,6 +2360,7 @@ Shape = HeadBase Habitat = Forest Kind = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2324,6 +2394,7 @@ Shape = HeadBase Habitat = Forest Kind = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -2357,6 +2428,7 @@ Shape = Multiped Habitat = Sea Kind = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -2391,6 +2463,7 @@ Shape = Multiped Habitat = Sea Kind = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. +Generation = 1 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -2425,6 +2498,7 @@ Shape = HeadArms Habitat = Mountain Kind = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -2459,6 +2533,7 @@ Shape = Bipedal Habitat = Mountain Kind = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -2493,6 +2568,7 @@ Shape = Bipedal Habitat = Mountain Kind = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. +Generation = 1 WildItemUncommon = EVERSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -2526,6 +2602,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. +Generation = 1 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2558,6 +2635,7 @@ Shape = Quadruped Habitat = Grassland Kind = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -2591,6 +2669,7 @@ Shape = Quadruped Habitat = WatersEdge Kind = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. +Generation = 1 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -2625,6 +2704,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. +Generation = 1 WildItemUncommon = KINGSROCK BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -2658,6 +2738,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. +Generation = 1 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -2692,6 +2773,7 @@ Shape = MultiBody Habitat = RoughTerrain Kind = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. +Generation = 1 WildItemUncommon = METALCOAT BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -2727,6 +2809,7 @@ Shape = Winged Habitat = Grassland Kind = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. +Generation = 1 WildItemUncommon = STICK BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -2761,6 +2844,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 14 BattlerPlayerY = 0 @@ -2795,6 +2879,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. +Generation = 1 WildItemUncommon = SHARPBEAK BattlerPlayerX = 8 BattlerPlayerY = 0 @@ -2828,6 +2913,7 @@ Shape = Finned Habitat = Sea Kind = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. +Generation = 1 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -2861,6 +2947,7 @@ Shape = Finned Habitat = Sea Kind = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -2893,6 +2980,7 @@ Shape = HeadArms Habitat = Urban Kind = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. +Generation = 1 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -2926,6 +3014,7 @@ Shape = HeadArms Habitat = Urban Kind = Sludge Pokedex = It prefers warm and humid habitats. In the summertime, the toxic substances in its body intensify, making Muk reek like putrid kitchen garbage. +Generation = 1 WildItemCommon = BLACKSLUDGE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -2959,6 +3048,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to make a place to sleep. While asleep, it closes its shell, but leaves its tongue hanging out. +Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = -1 @@ -2994,6 +3084,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = It swims in the sea by swallowing water, then jetting it out toward the rear. The Cloyster shoots spikes from its shell using the same system. +Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = 0 @@ -3028,6 +3119,7 @@ Shape = Head Habitat = Cave Kind = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -3060,6 +3152,7 @@ Shape = HeadArms Habitat = Cave Kind = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3092,6 +3185,7 @@ Shape = BipedalTail Habitat = Cave Kind = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. +Generation = 1 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3125,6 +3219,7 @@ Shape = Serpentine Habitat = Cave Kind = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -3158,6 +3253,7 @@ Shape = Bipedal Habitat = Grassland Kind = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -3190,6 +3286,7 @@ Shape = Bipedal Habitat = Grassland Kind = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3222,6 +3319,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3254,6 +3352,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. +Generation = 1 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -3285,6 +3384,7 @@ Shape = Head Habitat = Urban Kind = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3317,6 +3417,7 @@ Shape = Head Habitat = Urban Kind = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3350,6 +3451,7 @@ Shape = MultiBody Habitat = Forest Kind = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. +Generation = 1 WildItemUncommon = PSYCHICSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -3384,6 +3486,7 @@ Shape = HeadLegs Habitat = Forest Kind = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3416,6 +3519,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. +Generation = 1 WildItemUncommon = THICKCLUB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -3449,6 +3553,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. +Generation = 1 WildItemUncommon = THICKCLUB BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3481,6 +3586,7 @@ Shape = Bipedal Habitat = Urban Kind = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3512,6 +3618,7 @@ Shape = Bipedal Habitat = Urban Kind = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3544,6 +3651,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. +Generation = 1 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3577,6 +3685,7 @@ Shape = Head Habitat = Urban Kind = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. +Generation = 1 WildItemUncommon = SMOKEBALL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3609,6 +3718,7 @@ Shape = MultiBody Habitat = Urban Kind = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. +Generation = 1 WildItemUncommon = SMOKEBALL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -3643,6 +3753,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -3676,6 +3787,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -3709,6 +3821,7 @@ Shape = BipedalTail Habitat = Urban Kind = Egg Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so delicious, they are eagerly devoured by even those who have lost their appetite. +Generation = 1 WildItemCommon = LUCKYPUNCH BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -3743,6 +3856,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3776,6 +3890,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -3808,6 +3923,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -3841,6 +3957,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -3875,6 +3992,7 @@ Shape = Finned Habitat = WatersEdge Kind = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. +Generation = 1 WildItemUncommon = MYSTICWATER BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -3908,6 +4026,7 @@ Shape = Finned Habitat = WatersEdge Kind = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. +Generation = 1 WildItemUncommon = MYSTICWATER BattlerPlayerX = -8 BattlerPlayerY = 0 @@ -3940,6 +4059,7 @@ Shape = HeadBase Habitat = Sea Kind = Star Shape Pokedex = It gathers with others in the night and makes its red core glow on and off with the twinkling stars. It can regenerate limbs if they are severed from its body. +Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE BattlerPlayerX = 3 @@ -3975,6 +4095,7 @@ Shape = HeadBase Habitat = Sea Kind = Mysterious Pokedex = People in ancient times imagined that Starmie were transformed from the reflections of stars that twinkled on gentle waves at night. +Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE BattlerPlayerX = 2 @@ -4010,6 +4131,7 @@ Shape = Bipedal Habitat = Urban Kind = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4043,6 +4165,7 @@ Shape = MultiWinged Habitat = Grassland Kind = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. +Generation = 1 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -4076,6 +4199,7 @@ Shape = Bipedal Habitat = Urban Kind = Human Shape Pokedex = A Jynx sashays rhythmically as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without noticing. +Generation = 1 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -4107,6 +4231,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. +Generation = 1 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -4140,6 +4265,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. +Generation = 1 WildItemUncommon = MAGMARIZER BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -4174,6 +4300,7 @@ Shape = Bipedal Habitat = Forest Kind = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -4205,6 +4332,7 @@ Shape = Quadruped Habitat = Grassland Kind = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4236,6 +4364,7 @@ Shape = Finned Habitat = WatersEdge Kind = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. +Generation = 1 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4269,6 +4398,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. +Generation = 1 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4302,6 +4432,7 @@ Shape = Finned Habitat = Sea Kind = Transport Pokedex = People have driven Lapras almost to the point of extinction. In the evenings, it is said to sing plaintively as it seeks what few others of its kind still remain. +Generation = 1 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER @@ -4335,6 +4466,7 @@ Shape = Head Habitat = Urban Kind = Transform Pokedex = A Ditto rearranges its cell structure to transform itself. However, if it tries to change based on its memory, it will get details wrong. +Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER BattlerPlayerX = 0 @@ -4369,6 +4501,7 @@ Shape = Quadruped Habitat = Urban Kind = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -4401,6 +4534,7 @@ Shape = Quadruped Habitat = Urban Kind = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. +Generation = 1 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4432,6 +4566,7 @@ Shape = Quadruped Habitat = Urban Kind = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -4463,6 +4598,7 @@ Shape = Quadruped Habitat = Urban Kind = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. +Generation = 1 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -4494,6 +4630,7 @@ Shape = HeadLegs Habitat = Urban Kind = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy-protected so it cannot be duplicated. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -4528,6 +4665,7 @@ Shape = Multiped Habitat = Sea Kind = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4561,6 +4699,7 @@ Shape = Multiped Habitat = Sea Kind = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4594,6 +4733,7 @@ Shape = Insectoid Habitat = Sea Kind = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4627,6 +4767,7 @@ Shape = BipedalTail Habitat = Sea Kind = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. +Generation = 1 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4660,6 +4801,7 @@ Shape = Winged Habitat = Mountain Kind = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. +Generation = 1 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -4692,6 +4834,7 @@ Shape = Bipedal Habitat = Mountain Kind = Sleeping Pokedex = Snorlax's typical day consists of nothing more than eating and sleeping. It is such a docile Pokémon that there are children who use its big belly as a place to play. +Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS @@ -4727,6 +4870,7 @@ Shape = Winged Habitat = Rare Kind = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. +Generation = 1 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -4759,6 +4903,7 @@ Shape = Winged Habitat = Rare Kind = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. +Generation = 1 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -4791,6 +4936,7 @@ Shape = Winged Habitat = Rare Kind = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. +Generation = 1 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -4823,6 +4969,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -4856,6 +5003,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -4890,6 +5038,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. +Generation = 1 WildItemUncommon = DRAGONSCALE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -4922,6 +5071,7 @@ Shape = BipedalTail Habitat = Rare Kind = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. +Generation = 1 BattlerPlayerX = 14 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -4952,6 +5102,7 @@ Shape = BipedalTail Habitat = Rare Kind = New Species Pokedex = A Mew is said to possess the genes of all Pokémon. It is capable of making itself invisible at will, so it entirely avoids notice even if it approaches people. +Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -4987,6 +5138,7 @@ Shape = Quadruped Habitat = Grassland Kind = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -5019,6 +5171,7 @@ Shape = Quadruped Habitat = Grassland Kind = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5051,6 +5204,7 @@ Shape = Quadruped Habitat = Grassland Kind = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5083,6 +5237,7 @@ Shape = Bipedal Habitat = Grassland Kind = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -5115,6 +5270,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. +Generation = 2 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -5147,6 +5303,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5179,6 +5336,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5211,6 +5369,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5243,6 +5402,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -5275,6 +5435,7 @@ Shape = Quadruped Habitat = Grassland Kind = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5307,6 +5468,7 @@ Shape = Quadruped Habitat = Grassland Kind = Long Body Pokedex = A Furret has a very slim build. When under attack, it can squirm through narrow spaces and get away. In spite of its short limbs, it is very nimble and fleet. +Generation = 2 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -5340,6 +5502,7 @@ Shape = Winged Habitat = Forest Kind = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5373,6 +5536,7 @@ Shape = Winged Habitat = Forest Kind = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5406,6 +5570,7 @@ Shape = Winged Habitat = Forest Kind = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5439,6 +5604,7 @@ Shape = Winged Habitat = Forest Kind = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -5472,6 +5638,7 @@ Shape = Insectoid Habitat = Forest Kind = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5505,6 +5672,7 @@ Shape = Insectoid Habitat = Forest Kind = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -5537,6 +5705,7 @@ Shape = MultiWinged Habitat = Cave Kind = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -5570,6 +5739,7 @@ Shape = Finned Habitat = Sea Kind = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. +Generation = 2 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -5604,6 +5774,7 @@ Shape = Finned Habitat = Sea Kind = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. +Generation = 2 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -5637,6 +5808,7 @@ Shape = Quadruped Habitat = Forest Kind = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5670,6 +5842,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Star Shape Pokedex = On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance until daybreak, when they quench their thirst with the morning dew. +Generation = 2 WildItemUncommon = MOONSTONE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -5705,6 +5878,7 @@ Shape = Bipedal Habitat = Grassland Kind = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5738,6 +5912,7 @@ Shape = Bipedal Habitat = Forest Kind = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5771,6 +5946,7 @@ Shape = Bipedal Habitat = Forest Kind = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5805,6 +5981,7 @@ Shape = Winged Habitat = Forest Kind = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5838,6 +6015,7 @@ Shape = Winged Habitat = Forest Kind = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -5870,6 +6048,7 @@ Shape = Quadruped Habitat = Grassland Kind = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -5902,6 +6081,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -5934,6 +6114,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -5965,6 +6146,7 @@ Shape = Bipedal Habitat = Grassland Kind = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. +Generation = 2 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -5999,6 +6181,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. +Generation = 2 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -6032,6 +6215,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -6064,6 +6248,7 @@ Shape = Bipedal Habitat = Forest Kind = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -6095,6 +6280,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. +Generation = 2 WildItemUncommon = KINGSROCK BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -6129,6 +6315,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. +Generation = 2 BattlerPlayerX = 9 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -6162,6 +6349,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6195,6 +6383,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. +Generation = 2 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -6227,6 +6416,7 @@ Shape = BipedalTail Habitat = Forest Kind = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. +Generation = 2 BattlerPlayerX = -11 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6260,6 +6450,7 @@ Shape = Head Habitat = Grassland Kind = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6292,6 +6483,7 @@ Shape = Bipedal Habitat = Grassland Kind = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6325,6 +6517,7 @@ Shape = MultiWinged Habitat = Forest Kind = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. +Generation = 2 WildItemUncommon = WIDELENS BattlerPlayerX = -8 BattlerPlayerY = 0 @@ -6360,6 +6553,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -6393,6 +6587,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. +Generation = 2 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -6424,6 +6619,7 @@ Shape = Quadruped Habitat = Urban Kind = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -6455,6 +6651,7 @@ Shape = Quadruped Habitat = Urban Kind = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -6488,6 +6685,7 @@ Shape = Winged Habitat = Forest Kind = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -6521,6 +6719,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. +Generation = 2 WildItemUncommon = KINGSROCK BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -6553,6 +6752,7 @@ Shape = Head Habitat = Cave Kind = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6585,6 +6785,7 @@ Habitat = Rare Kind = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = A +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6616,6 +6817,7 @@ Shape = HeadBase Habitat = Cave Kind = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6649,6 +6851,7 @@ Shape = Quadruped Habitat = Grassland Kind = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6681,6 +6884,7 @@ Shape = Head Habitat = Forest Kind = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6714,6 +6918,7 @@ Shape = Head Habitat = Forest Kind = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -6746,6 +6951,7 @@ Shape = Serpentine Habitat = Cave Kind = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -6779,6 +6985,7 @@ Shape = Winged Habitat = Mountain Kind = Fly Scorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -6812,6 +7019,7 @@ Shape = Serpentine Habitat = Cave Kind = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. +Generation = 2 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -6845,6 +7053,7 @@ Shape = Bipedal Habitat = Urban Kind = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -6877,6 +7086,7 @@ Shape = BipedalTail Habitat = Urban Kind = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -6910,6 +7120,7 @@ Shape = Finned Habitat = Sea Kind = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. +Generation = 2 WildItemUncommon = POISONBARB BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -6943,6 +7154,7 @@ Shape = MultiWinged Habitat = Grassland Kind = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. +Generation = 2 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -6976,6 +7188,7 @@ Shape = Insectoid Habitat = Mountain Kind = Mold Pokedex = A Shuckle hides under rocks, keeping its body concealed inside its shell while eating stored berries. The berries mix with its body fluids to become a juice. +Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE @@ -7012,6 +7225,7 @@ Shape = Bipedal Habitat = Forest Kind = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -7045,6 +7259,7 @@ Shape = BipedalTail Habitat = Forest Kind = Sharp Claw Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It seeks out unguarded nests and steals eggs for food while the parents are away. +Generation = 2 WildItemUncommon = QUICKCLAW BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -7079,6 +7294,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. +Generation = 2 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7111,6 +7327,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7143,6 +7360,7 @@ Shape = Serpentine Habitat = Mountain Kind = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. +Generation = 2 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7176,6 +7394,7 @@ Shape = Serpentine Habitat = Mountain Kind = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -7209,6 +7428,7 @@ Shape = Quadruped Habitat = Cave Kind = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7242,6 +7462,7 @@ Shape = Quadruped Habitat = Cave Kind = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7276,6 +7497,7 @@ Shape = Insectoid Habitat = Sea Kind = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. +Generation = 2 WildItemUncommon = LUMINOUSMOSS BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -7309,6 +7531,7 @@ Shape = Finned Habitat = Sea Kind = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. +Generation = 2 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -7341,6 +7564,7 @@ Shape = Multiped Habitat = Sea Kind = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7374,6 +7598,7 @@ Shape = Winged Habitat = Mountain Kind = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -7407,6 +7632,7 @@ Shape = Winged Habitat = Sea Kind = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -7440,6 +7666,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. +Generation = 2 WildItemUncommon = METALCOAT BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -7474,6 +7701,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. +Generation = 2 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -7507,6 +7735,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -7539,6 +7768,7 @@ Shape = HeadBase Habitat = Sea Kind = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. +Generation = 2 WildItemUncommon = DRAGONSCALE BattlerPlayerX = -5 BattlerPlayerY = 0 @@ -7572,6 +7802,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7604,6 +7835,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -10 @@ -7635,6 +7867,7 @@ Shape = HeadLegs Habitat = Urban Kind = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7668,6 +7901,7 @@ Shape = Quadruped Habitat = Forest Kind = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. +Generation = 2 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -7698,6 +7932,7 @@ Shape = BipedalTail Habitat = Urban Kind = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -7730,6 +7965,7 @@ Shape = Bipedal Habitat = Urban Kind = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. +Generation = 2 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -7762,6 +7998,7 @@ Shape = BipedalTail Habitat = Urban Kind = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -7795,6 +8032,7 @@ Shape = Bipedal Habitat = Urban Kind = Kiss Pokedex = It actively runs about, but also falls often. Whenever it falls, it will check its reflection on a lake's surface to make sure its face hasn't become dirty. +Generation = 2 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -7828,6 +8066,7 @@ Shape = Bipedal Habitat = Grassland Kind = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. +Generation = 2 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -7862,6 +8101,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. +Generation = 2 WildItemUncommon = MAGMARIZER BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -7896,6 +8136,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Milk Cow Pokedex = It gives over five gallons of milk daily. Its sweet milk is enjoyed by children and adults alike. People who can't drink milk turn it into yogurt and eat it instead. +Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK @@ -7930,6 +8171,7 @@ Shape = Bipedal Habitat = Urban Kind = Happiness Pokedex = If it senses sadness with its fluffy fur, a Blissey will rush over to the sad person, however far away, to share an egg of happiness that brings a smile to any face. +Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG @@ -7964,6 +8206,7 @@ Shape = Quadruped Habitat = Grassland Kind = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -7995,6 +8238,7 @@ Shape = Quadruped Habitat = Grassland Kind = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -8026,6 +8270,7 @@ Shape = Quadruped Habitat = Grassland Kind = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. +Generation = 2 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -8059,6 +8304,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. +Generation = 2 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8091,6 +8337,7 @@ Shape = Serpentine Habitat = Mountain Kind = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. +Generation = 2 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8124,6 +8371,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. +Generation = 2 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -8156,6 +8404,7 @@ Shape = Winged Habitat = Rare Kind = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. +Generation = 2 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8188,6 +8437,7 @@ Shape = Winged Habitat = Rare Kind = Rainbow Pokedex = Its feathers--which glow in seven colors depending on the angle at which light strikes them--are thought to bring joy. It is said to live at the foot of a rainbow. +Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH @@ -8222,6 +8472,7 @@ Shape = Bipedal Habitat = Forest Kind = Time Travel Pokedex = This Pokémon came from the future by crossing over time. It is thought that so long as Celebi appears, a bright and shining future awaits us. +Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -8257,6 +8508,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -8289,6 +8541,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8321,6 +8574,7 @@ Shape = BipedalTail Habitat = Forest Kind = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8353,6 +8607,7 @@ Shape = HeadLegs Habitat = Grassland Kind = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8386,6 +8641,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. +Generation = 3 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8419,6 +8675,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. +Generation = 3 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -8451,6 +8708,7 @@ Shape = Quadruped Habitat = WatersEdge Kind = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8484,6 +8742,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8517,6 +8776,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -8549,6 +8809,7 @@ Shape = Quadruped Habitat = Grassland Kind = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -8581,6 +8842,7 @@ Shape = Quadruped Habitat = Grassland Kind = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -8613,6 +8875,7 @@ Shape = Quadruped Habitat = Grassland Kind = Tiny Raccoon Pokedex = Rubbing its nose against the ground, it always wanders about back and forth in search of something. It is distinguished by the zigzag footprints it leaves. +Generation = 3 WildItemCommon = POTION WildItemUncommon = REVIVE BattlerPlayerX = -1 @@ -8647,6 +8910,7 @@ Shape = Quadruped Habitat = Grassland Kind = Rushing Pokedex = It is exceedingly fast if it only has to run in a straight line. When it spots pond- dwelling prey underwater, it quickly leaps in and catches it with its sharp claws. +Generation = 3 WildItemCommon = POTION WildItemUncommon = MAXREVIVE BattlerPlayerX = 0 @@ -8680,6 +8944,7 @@ Shape = Insectoid Habitat = Forest Kind = Worm Pokedex = It sticks to tree branches and eats leaves. The thread it spits from its mouth becomes gooey when it touches air and slows the movement of its foes. +Generation = 3 WildItemCommon = PECHABERRY WildItemUncommon = BRIGHTPOWDER BattlerPlayerX = -1 @@ -8713,6 +8978,7 @@ Shape = Head Habitat = Forest Kind = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8746,6 +9012,7 @@ Shape = MultiWinged Habitat = Forest Kind = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = -10 BattlerPlayerY = 0 @@ -8777,6 +9044,7 @@ Shape = Head Habitat = Forest Kind = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -8810,6 +9078,7 @@ Shape = MultiWinged Habitat = Forest Kind = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -8844,6 +9113,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. +Generation = 3 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -8878,6 +9148,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. +Generation = 3 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -8912,6 +9183,7 @@ Shape = Bipedal Habitat = WatersEdge Kind = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. +Generation = 3 WildItemUncommon = MENTALHERB BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -8945,6 +9217,7 @@ Shape = HeadLegs Habitat = Forest Kind = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. +Generation = 3 WildItemUncommon = POWERHERB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -8979,6 +9252,7 @@ Shape = Bipedal Habitat = Forest Kind = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. +Generation = 3 WildItemUncommon = POWERHERB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9013,6 +9287,7 @@ Shape = Bipedal Habitat = Forest Kind = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. +Generation = 3 WildItemUncommon = POWERHERB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -9047,6 +9322,7 @@ Shape = Winged Habitat = Grassland Kind = Tiny Swallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. +Generation = 3 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -9080,6 +9356,7 @@ Shape = Winged Habitat = Grassland Kind = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -9113,6 +9390,7 @@ Shape = Winged Habitat = Sea Kind = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. +Generation = 3 WildItemCommon = PRETTYWING BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9147,6 +9425,7 @@ Shape = Winged Habitat = Sea Kind = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. +Generation = 3 WildItemCommon = PRETTYWING BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -9181,6 +9460,7 @@ Shape = Bipedal Habitat = Urban Kind = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -9214,6 +9494,7 @@ Shape = Bipedal Habitat = Urban Kind = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9247,6 +9528,7 @@ Shape = Bipedal Habitat = Urban Kind = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9280,6 +9562,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. +Generation = 3 WildItemCommon = HONEY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -9314,6 +9597,7 @@ Shape = MultiWinged Habitat = WatersEdge Kind = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. +Generation = 3 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9347,6 +9631,7 @@ Shape = HeadLegs Habitat = Forest Kind = Mushroom Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest after a long rain, you can see many Shroomish feasting on composted soil. +Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 1 @@ -9382,6 +9667,7 @@ Shape = BipedalTail Habitat = Forest Kind = Mushroom Pokedex = It scatters spores from holes in the cap on its head. It loves warm and humid climates. It feeds on trees and plants in fields and forests. +Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = -15 @@ -9415,6 +9701,7 @@ Shape = Quadruped Habitat = Forest Kind = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -9446,6 +9733,7 @@ Shape = BipedalTail Habitat = Forest Kind = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -9477,6 +9765,7 @@ Shape = Bipedal Habitat = Forest Kind = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9510,6 +9799,7 @@ Shape = Insectoid Habitat = Forest Kind = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. +Generation = 3 WildItemUncommon = SOFTSAND BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -9544,6 +9834,7 @@ Shape = MultiWinged Habitat = Forest Kind = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9575,6 +9866,7 @@ Shape = HeadBase Habitat = Forest Kind = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -9607,6 +9899,7 @@ Shape = BipedalTail Habitat = Cave Kind = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. +Generation = 3 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -9639,6 +9932,7 @@ Shape = BipedalTail Habitat = Cave Kind = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -9671,6 +9965,7 @@ Shape = BipedalTail Habitat = Cave Kind = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -9703,6 +9998,7 @@ Shape = Bipedal Habitat = Mountain Kind = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. +Generation = 3 WildItemUncommon = BLACKBELT BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -9736,6 +10032,7 @@ Shape = Bipedal Habitat = Mountain Kind = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. +Generation = 3 WildItemUncommon = KINGSROCK BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -9770,6 +10067,7 @@ Shape = HeadLegs Habitat = WatersEdge Kind = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. +Generation = 3 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = 14 @@ -9804,6 +10102,7 @@ Shape = Bipedal Habitat = Cave Kind = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. +Generation = 3 WildItemUncommon = MAGNET BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -9838,6 +10137,7 @@ Shape = Quadruped Habitat = Forest Kind = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. +Generation = 3 BattlerPlayerX = -10 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -9870,6 +10170,7 @@ Shape = Quadruped Habitat = Forest Kind = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -9903,6 +10204,7 @@ Shape = Bipedal Habitat = Cave Kind = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. +Generation = 3 WildItemUncommon = WIDELENS BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -9937,6 +10239,7 @@ Shape = Bipedal Habitat = Cave Kind = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. +Generation = 3 WildItemUncommon = IRONBALL BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -9971,6 +10274,7 @@ Shape = Quadruped Habitat = Mountain Kind = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10005,6 +10309,7 @@ Shape = Quadruped Habitat = Mountain Kind = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10039,6 +10344,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. +Generation = 3 WildItemUncommon = HARDSTONE BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -10073,6 +10379,7 @@ Shape = Bipedal Habitat = Mountain Kind = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10106,6 +10413,7 @@ Shape = Bipedal Habitat = Mountain Kind = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10138,6 +10446,7 @@ Shape = Quadruped Habitat = Grassland Kind = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. +Generation = 3 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -10170,6 +10479,7 @@ Shape = Quadruped Habitat = Grassland Kind = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10202,6 +10512,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. +Generation = 3 WildItemUncommon = CELLBATTERY BattlerPlayerX = -12 BattlerPlayerY = 0 @@ -10235,6 +10546,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. +Generation = 3 WildItemUncommon = CELLBATTERY BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -10268,6 +10580,7 @@ Shape = BipedalTail Habitat = Forest Kind = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. +Generation = 3 WildItemUncommon = BRIGHTPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10301,6 +10614,7 @@ Shape = Bipedal Habitat = Forest Kind = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. +Generation = 3 WildItemUncommon = BRIGHTPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10335,6 +10649,7 @@ Shape = Bipedal Habitat = Grassland Kind = Thorn Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovely flowers. The fragrance of its flowers has the effect of making its foes careless. +Generation = 3 WildItemUncommon = POISONBARB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -10369,6 +10684,7 @@ Shape = HeadArms Habitat = Grassland Kind = Stomach Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, it can swallow something that is as large as itself. +Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = -1 @@ -10403,6 +10719,7 @@ Shape = HeadArms Habitat = Grassland Kind = Poison Bag Pokedex = Its powerful stomach acid is capable of digesting almost anything. The one thing in the whole world a Swalot can't digest is its own stomach. +Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = -1 @@ -10438,6 +10755,7 @@ Shape = Finned Habitat = Sea Kind = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -10472,6 +10790,7 @@ Shape = Finned Habitat = Sea Kind = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -10505,6 +10824,7 @@ Shape = Finned Habitat = Sea Kind = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10537,6 +10857,7 @@ Shape = Finned Habitat = Sea Kind = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -10570,6 +10891,7 @@ Shape = Quadruped Habitat = Mountain Kind = Numb Pokedex = A Numel stores boiling magma in the hump on its back. It is a hardy Pokémon that can transport a 220-pound load. It has served humans at work since long ago. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -10603,6 +10925,7 @@ Shape = Quadruped Habitat = Mountain Kind = Eruption Pokedex = A Pokémon that lives in the crater of a volcano. Every 10 years, the volcanoes on its back erupt violently. Research is under way on the cause of eruption. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10635,6 +10958,7 @@ Shape = Quadruped Habitat = Mountain Kind = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. +Generation = 3 WildItemUncommon = CHARCOAL BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -10668,6 +10992,7 @@ Shape = HeadArms Habitat = Mountain Kind = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10700,6 +11025,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -10732,6 +11058,7 @@ Shape = BipedalTail Habitat = Mountain Kind = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -10764,6 +11091,7 @@ Shape = Insectoid Habitat = RoughTerrain Kind = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. +Generation = 3 WildItemUncommon = SOFTSAND BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10797,6 +11125,7 @@ Shape = MultiWinged Habitat = RoughTerrain Kind = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. +Generation = 3 BattlerPlayerX = -11 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -10829,6 +11158,7 @@ Shape = Winged Habitat = RoughTerrain Kind = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. +Generation = 3 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 11 @@ -10861,6 +11191,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. +Generation = 3 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -10895,6 +11226,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. +Generation = 3 WildItemUncommon = STICKYBARB BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -10929,6 +11261,7 @@ Shape = Winged Habitat = Forest Kind = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10962,6 +11295,7 @@ Shape = Winged Habitat = Forest Kind = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. +Generation = 3 BattlerPlayerX = -10 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -10994,6 +11328,7 @@ Shape = BipedalTail Habitat = Grassland Kind = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. +Generation = 3 WildItemUncommon = QUICKCLAW BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -11027,6 +11362,7 @@ Shape = Serpentine Habitat = Grassland Kind = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. +Generation = 3 WildItemUncommon = SHEDSHELL BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -11059,6 +11395,7 @@ Shape = Head Habitat = Cave Kind = Meteorite Pokedex = It becomes very active on the night of a full moon. This Pokémon was first discovered 40 years ago at the site of a meteor strike. +Generation = 3 WildItemCommon = STARDUST WildItemUncommon = MOONSTONE BattlerPlayerX = 1 @@ -11092,6 +11429,7 @@ Shape = Head Habitat = Cave Kind = Meteorite Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, groups of Solrock line up facing the sun and absorb its light. +Generation = 3 WildItemCommon = STARDUST WildItemUncommon = SUNSTONE BattlerPlayerX = 2 @@ -11127,6 +11465,7 @@ Shape = Finned Habitat = WatersEdge Kind = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11160,6 +11499,7 @@ Shape = Finned Habitat = WatersEdge Kind = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. +Generation = 3 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11192,6 +11532,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11225,6 +11566,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. +Generation = 3 BattlerPlayerX = 9 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11256,6 +11598,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. +Generation = 3 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -11289,6 +11632,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. +Generation = 3 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11323,6 +11667,7 @@ Shape = HeadBase Habitat = Sea Kind = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. +Generation = 3 WildItemUncommon = BIGROOT BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -11357,6 +11702,7 @@ Shape = HeadBase Habitat = Sea Kind = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. +Generation = 3 WildItemUncommon = BIGROOT BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11391,6 +11737,7 @@ Shape = Insectoid Habitat = WatersEdge Kind = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. +Generation = 3 BattlerPlayerX = 10 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11424,6 +11771,7 @@ Shape = BipedalTail Habitat = WatersEdge Kind = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -11456,6 +11804,7 @@ Shape = Finned Habitat = WatersEdge Kind = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11488,6 +11837,7 @@ Shape = Serpentine Habitat = WatersEdge Kind = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11520,6 +11870,7 @@ Habitat = Grassland Kind = Weather Pokedex = It alters its form depending on the weather. Changes in the climate such as the temperature and humidity appear to affect its cellular structure. FormName = Normal Form +Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER @@ -11555,6 +11906,7 @@ Shape = BipedalTail Habitat = Forest Kind = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11587,6 +11939,7 @@ Shape = Head Habitat = Urban Kind = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -11620,6 +11973,7 @@ Shape = BipedalTail Habitat = Urban Kind = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -11653,6 +12007,7 @@ Shape = HeadArms Habitat = Forest Kind = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = 6 BattlerPlayerY = 0 @@ -11686,6 +12041,7 @@ Shape = Bipedal Habitat = Forest Kind = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. +Generation = 3 WildItemUncommon = SPELLTAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -11721,6 +12077,7 @@ Shape = Quadruped Habitat = Forest Kind = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -11752,6 +12109,7 @@ Shape = HeadArms Habitat = Grassland Kind = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. +Generation = 3 WildItemUncommon = CLEANSETAG BattlerPlayerX = 9 BattlerPlayerY = 0 @@ -11785,6 +12143,7 @@ Shape = Quadruped Habitat = Mountain Kind = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -11816,6 +12175,7 @@ Shape = BipedalTail Habitat = Cave Kind = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. +Generation = 3 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11850,6 +12210,7 @@ Shape = Bipedal Habitat = Cave Kind = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. +Generation = 3 WildItemUncommon = SNOWBALL BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -11883,6 +12244,7 @@ Shape = Head Habitat = Cave Kind = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. +Generation = 3 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -11916,6 +12278,7 @@ Shape = Finned Habitat = Sea Kind = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -11949,6 +12312,7 @@ Shape = Finned Habitat = Sea Kind = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -11982,6 +12346,7 @@ Shape = Quadruped Habitat = Sea Kind = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12014,6 +12379,7 @@ Shape = Head Habitat = Sea Kind = Bivalve Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl it creates upon evolution is said to be infused with a mysterious energy. +Generation = 3 WildItemCommon = PEARL WildItemUncommon = BIGPEARL BattlerPlayerX = 0 @@ -12048,6 +12414,7 @@ Shape = Serpentine Habitat = Sea Kind = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. +Generation = 3 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -12080,6 +12447,7 @@ Shape = Serpentine Habitat = Sea Kind = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. +Generation = 3 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -12114,6 +12482,7 @@ Shape = Finned Habitat = Sea Kind = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. +Generation = 3 WildItemUncommon = DEEPSEASCALE BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -12147,6 +12516,7 @@ Shape = Finned Habitat = Sea Kind = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. +Generation = 3 WildItemCommon = HEARTSCALE BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -12180,6 +12550,7 @@ Shape = Bipedal Habitat = RoughTerrain Kind = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -12213,6 +12584,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -12247,6 +12619,7 @@ Shape = Quadruped Habitat = RoughTerrain Kind = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. +Generation = 3 WildItemUncommon = DRAGONFANG BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -12280,6 +12653,7 @@ Shape = HeadBase Habitat = RoughTerrain Kind = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -12314,6 +12688,7 @@ Shape = HeadArms Habitat = RoughTerrain Kind = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -12348,6 +12723,7 @@ Shape = MultiBody Habitat = RoughTerrain Kind = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. +Generation = 3 WildItemUncommon = METALCOAT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -12380,6 +12756,7 @@ Shape = Bipedal Habitat = Cave Kind = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -12411,6 +12788,7 @@ Shape = Bipedal Habitat = Cave Kind = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. +Generation = 3 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12442,6 +12820,7 @@ Shape = Bipedal Habitat = Cave Kind = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. +Generation = 3 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -12473,6 +12852,7 @@ Shape = Winged Habitat = WatersEdge Kind = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. +Generation = 3 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -12504,6 +12884,7 @@ Shape = Winged Habitat = WatersEdge Kind = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. +Generation = 3 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12534,6 +12915,7 @@ Shape = Finned Habitat = Sea Kind = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -12564,6 +12946,7 @@ Shape = BipedalTail Habitat = RoughTerrain Kind = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. +Generation = 3 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12595,6 +12978,7 @@ Shape = Serpentine Habitat = Rare Kind = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. +Generation = 3 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -12626,6 +13010,7 @@ Shape = Bipedal Habitat = Mountain Kind = Wish Pokedex = Jirachi is said to make wishes come true. While it sleeps, a tough crystalline shell envelops the body to protect it from enemies. +Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE @@ -12660,6 +13045,7 @@ Habitat = Rare Kind = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme +Generation = 3 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12691,6 +13077,7 @@ Color = Green Shape = Quadruped Kind = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12722,6 +13109,7 @@ Color = Green Shape = Quadruped Kind = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -12754,6 +13142,7 @@ Color = Green Shape = Quadruped Kind = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12785,6 +13174,7 @@ Color = Brown Shape = BipedalTail Kind = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. +Generation = 4 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -12817,6 +13207,7 @@ Color = Brown Shape = BipedalTail Kind = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 10 @@ -12849,6 +13240,7 @@ Color = Brown Shape = BipedalTail Kind = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12880,6 +13272,7 @@ Color = Blue Shape = Bipedal Kind = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -12911,6 +13304,7 @@ Color = Blue Shape = BipedalTail Kind = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -12943,6 +13337,7 @@ Color = Blue Shape = BipedalTail Kind = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -12975,6 +13370,7 @@ Color = Brown Shape = Winged Kind = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -13007,6 +13403,7 @@ Color = Brown Shape = Winged Kind = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13039,6 +13436,7 @@ Color = Brown Shape = Winged Kind = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -13070,6 +13468,7 @@ Color = Brown Shape = Quadruped Kind = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13102,6 +13501,7 @@ Color = Brown Shape = BipedalTail Kind = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -13132,6 +13532,7 @@ Color = Red Shape = Bipedal Kind = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13164,6 +13565,7 @@ Color = Red Shape = MultiWinged Kind = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13196,6 +13598,7 @@ Color = Blue Shape = Quadruped Kind = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -13227,6 +13630,7 @@ Color = Blue Shape = Quadruped Kind = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -13258,6 +13662,7 @@ Color = Blue Shape = Quadruped Kind = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13290,6 +13695,7 @@ Color = Green Shape = Bipedal Kind = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13324,6 +13730,7 @@ Color = Green Shape = Bipedal Kind = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = 8 BattlerPlayerY = 0 @@ -13356,6 +13763,7 @@ Color = Blue Shape = BipedalTail Kind = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -13387,6 +13795,7 @@ Color = Blue Shape = BipedalTail Kind = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -13419,6 +13828,7 @@ Color = Gray Shape = Quadruped Kind = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -13451,6 +13861,7 @@ Color = Gray Shape = Quadruped Kind = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = -5 @@ -13482,6 +13893,7 @@ Shape = HeadBase Kind = Bagworm Pokedex = To shelter itself from cold, wintry winds, it covers itself with a cloak made of twigs and leaves. FormName = Plant Cloak +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -13515,6 +13927,7 @@ Shape = HeadBase Kind = Bagworm Pokedex = When Burmy evolved, its cloak became a part of this Pokémon's body. The cloak is never shed. FormName = Plant Cloak +Generation = 4 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -13547,6 +13960,7 @@ Color = Yellow Shape = MultiWinged Kind = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. +Generation = 4 WildItemUncommon = SILVERPOWDER BattlerPlayerX = 11 BattlerPlayerY = 0 @@ -13579,6 +13993,7 @@ Color = Yellow Shape = MultiBody Kind = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. +Generation = 4 WildItemUncommon = HONEY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -13612,6 +14027,7 @@ Color = Yellow Shape = MultiWinged Kind = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13644,6 +14060,7 @@ Color = White Shape = Quadruped Kind = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13675,6 +14092,7 @@ Color = Brown Shape = Quadruped Kind = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. +Generation = 4 BattlerPlayerX = -12 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13706,6 +14124,7 @@ Color = Brown Shape = Quadruped Kind = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -13736,6 +14155,7 @@ Color = Pink Shape = MultiBody Kind = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. +Generation = 4 WildItemUncommon = MIRACLESEED BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -13768,6 +14188,7 @@ Shape = HeadLegs Kind = Blossom Pokedex = It blooms during times of strong sunlight. It tries to make up for everything it endured as a bud. FormName = Overcast Form +Generation = 4 WildItemUncommon = MIRACLESEED BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -13801,6 +14222,7 @@ Shape = Serpentine Kind = Sea Slug Pokedex = Its colors and shapes differ from region to region. In the Sinnoh region, two types are confirmed. FormName = West Sea +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13834,6 +14256,7 @@ Shape = Serpentine Kind = Sea Slug Pokedex = It has a pliable body without any bones. If any part of its body is torn off, it grows right back. FormName = West Sea +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13864,6 +14287,7 @@ Color = Purple Shape = BipedalTail Kind = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -13896,6 +14320,7 @@ Color = Purple Shape = HeadArms Kind = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -13928,6 +14353,7 @@ Color = Purple Shape = HeadArms Kind = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -13959,6 +14385,7 @@ Color = Brown Shape = BipedalTail Kind = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -13990,6 +14417,7 @@ Color = Brown Shape = BipedalTail Kind = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14019,6 +14447,7 @@ Color = Purple Shape = Head Kind = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14050,6 +14479,7 @@ Color = Black Shape = Winged Kind = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14081,6 +14511,7 @@ Color = Gray Shape = Quadruped Kind = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -14112,6 +14543,7 @@ Color = Gray Shape = Quadruped Kind = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. +Generation = 4 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -14142,6 +14574,7 @@ Color = Yellow Shape = Bipedal Kind = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. +Generation = 4 WildItemUncommon = CLEANSETAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -14177,6 +14610,7 @@ Color = Purple Shape = Quadruped Kind = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -14209,6 +14643,7 @@ Color = Purple Shape = Quadruped Kind = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14240,6 +14675,7 @@ Color = Green Shape = Head Kind = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -14273,6 +14709,7 @@ Color = Green Shape = HeadArms Kind = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -14305,6 +14742,7 @@ Color = Brown Shape = HeadLegs Kind = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14339,6 +14777,7 @@ Color = Pink Shape = Bipedal Kind = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14372,6 +14811,7 @@ Color = Pink Shape = Bipedal Kind = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. +Generation = 4 WildItemCommon = OVALSTONE BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -14407,6 +14847,7 @@ Color = Black Shape = Winged Kind = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. +Generation = 4 WildItemUncommon = METRONOME BattlerPlayerX = -6 BattlerPlayerY = 0 @@ -14440,6 +14881,7 @@ Color = Purple Shape = HeadBase Kind = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -14472,6 +14914,7 @@ Color = Blue Shape = BipedalTail Kind = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. +Generation = 4 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14504,6 +14947,7 @@ Color = Blue Shape = BipedalTail Kind = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -14536,6 +14980,7 @@ Color = Blue Shape = BipedalTail Kind = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -14567,6 +15012,7 @@ Color = Black Shape = Bipedal Kind = Big Eater Pokedex = It wolfs down its weight in food once a day, swallowing food whole with almost no chewing. +Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS @@ -14603,6 +15049,7 @@ Color = Blue Shape = BipedalTail Kind = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -14635,6 +15082,7 @@ Color = Blue Shape = BipedalTail Kind = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. +Generation = 4 BattlerPlayerX = 8 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14666,6 +15114,7 @@ Color = Brown Shape = Quadruped Kind = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -14697,6 +15146,7 @@ Color = Brown Shape = Quadruped Kind = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -14729,6 +15179,7 @@ Color = Purple Shape = Insectoid Kind = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -14762,6 +15213,7 @@ Color = Purple Shape = Insectoid Kind = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. +Generation = 4 WildItemUncommon = POISONBARB BattlerPlayerX = 7 BattlerPlayerY = 0 @@ -14795,6 +15247,7 @@ Color = Blue Shape = Bipedal Kind = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. +Generation = 4 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -14828,6 +15281,7 @@ Color = Blue Shape = Bipedal Kind = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. +Generation = 4 WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -14859,6 +15313,7 @@ Color = Green Shape = Multiped Kind = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. +Generation = 4 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -14890,6 +15345,7 @@ Color = Blue Shape = Finned Kind = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. +Generation = 4 BattlerPlayerX = -7 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -14921,6 +15377,7 @@ Color = Blue Shape = Finned Kind = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. +Generation = 4 BattlerPlayerX = -8 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -14953,6 +15410,7 @@ Color = Blue Shape = Winged Kind = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -14987,6 +15445,7 @@ Color = White Shape = BipedalTail Kind = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. +Generation = 4 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -15020,6 +15479,7 @@ Color = White Shape = BipedalTail Kind = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. +Generation = 4 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15052,6 +15512,7 @@ Color = Black Shape = BipedalTail Kind = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. +Generation = 4 WildItemUncommon = QUICKCLAW BattlerPlayerX = -4 BattlerPlayerY = 0 @@ -15084,6 +15545,7 @@ Color = Gray Shape = HeadArms Kind = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. +Generation = 4 WildItemUncommon = METALCOAT BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15115,6 +15577,7 @@ Color = Pink Shape = Bipedal Kind = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. +Generation = 4 WildItemUncommon = LAGGINGTAIL BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -15147,6 +15610,7 @@ Color = Gray Shape = BipedalTail Kind = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -15177,6 +15641,7 @@ Color = Blue Shape = Bipedal Kind = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15207,6 +15672,7 @@ Color = Yellow Shape = BipedalTail Kind = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. +Generation = 4 WildItemUncommon = ELECTIRIZER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -15238,6 +15704,7 @@ Color = Red Shape = BipedalTail Kind = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. +Generation = 4 WildItemUncommon = MAGMARIZER BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -15270,6 +15737,7 @@ Color = White Shape = Winged Kind = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15301,6 +15769,7 @@ Color = Green Shape = MultiWinged Kind = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. +Generation = 4 WildItemUncommon = WIDELENS BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -15332,6 +15801,7 @@ Color = Green Shape = Quadruped Kind = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -15362,6 +15832,7 @@ Color = Blue Shape = Quadruped Kind = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. +Generation = 4 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -15393,6 +15864,7 @@ Color = Purple Shape = Winged Kind = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! +Generation = 4 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15424,6 +15896,7 @@ Color = Brown Shape = Quadruped Kind = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -7 @@ -15454,6 +15927,7 @@ Color = Red Shape = HeadArms Kind = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15485,6 +15959,7 @@ Color = White Shape = Bipedal Kind = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15516,6 +15991,7 @@ Color = Gray Shape = MultiBody Kind = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. +Generation = 4 WildItemUncommon = MAGNET BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -15547,6 +16023,7 @@ Color = Black Shape = HeadArms Kind = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. +Generation = 4 WildItemUncommon = SPELLTAG BattlerPlayerX = 5 BattlerPlayerY = 0 @@ -15579,6 +16056,7 @@ Color = White Shape = HeadArms Kind = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. +Generation = 4 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -15610,6 +16088,7 @@ Shape = Head Kind = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom +Generation = 4 BattlerPlayerX = 5 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15639,6 +16118,7 @@ Color = Yellow Shape = BipedalTail Kind = Knowledge Pokedex = Known as “The Being of Knowledge.” It is said that it can wipe out the memory of those who see its eyes. +Generation = 4 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -15668,6 +16148,7 @@ Color = Pink Shape = BipedalTail Kind = Emotion Pokedex = Known as “The Being of Emotion.” It taught humans the nobility of sorrow, pain, and joy. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -15697,6 +16178,7 @@ Color = Blue Shape = BipedalTail Kind = Willpower Pokedex = Known as “The Being of Willpower.” It sleeps at the bottom of a lake to keep the world in balance. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 9 @@ -15728,6 +16210,7 @@ Color = White Shape = Quadruped Kind = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. +Generation = 4 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15759,6 +16242,7 @@ Color = Purple Shape = BipedalTail Kind = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -15790,6 +16274,7 @@ Color = Brown Shape = Quadruped Kind = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. +Generation = 4 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -15819,6 +16304,7 @@ Color = White Shape = Bipedal Kind = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -15851,6 +16337,7 @@ Shape = Multiped Kind = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme +Generation = 4 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -15880,6 +16367,7 @@ Color = Yellow Shape = Serpentine Kind = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. +Generation = 4 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -15909,6 +16397,7 @@ Color = Blue Shape = HeadArms Kind = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -15938,6 +16427,7 @@ Color = Blue Shape = Bipedal Kind = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. +Generation = 4 BattlerPlayerX = -9 BattlerPlayerY = 0 BattlerEnemyX = 7 @@ -15967,6 +16457,7 @@ Color = Black Shape = Bipedal Kind = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. +Generation = 4 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -15997,6 +16488,7 @@ Shape = Quadruped Kind = Gratitude Pokedex = It lives in flower patches and avoids detection by curling up to look like a flowering plant. FormName = Land Forme +Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY @@ -16030,6 +16522,7 @@ Shape = Quadruped Kind = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type +Generation = 4 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16060,6 +16553,7 @@ Color = Yellow Shape = Bipedal Kind = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -16091,6 +16585,7 @@ Color = Green Shape = BipedalTail Kind = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -16122,6 +16617,7 @@ Color = Green Shape = BipedalTail Kind = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -16153,6 +16649,7 @@ Color = Green Shape = Serpentine Kind = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -16184,6 +16681,7 @@ Color = Red Shape = Quadruped Kind = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16216,6 +16714,7 @@ Color = Red Shape = BipedalTail Kind = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16248,6 +16747,7 @@ Color = Red Shape = BipedalTail Kind = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16279,6 +16779,7 @@ Color = Blue Shape = BipedalTail Kind = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16310,6 +16811,7 @@ Color = Blue Shape = BipedalTail Kind = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -16341,6 +16843,7 @@ Color = Blue Shape = Quadruped Kind = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16372,6 +16875,7 @@ Color = Brown Shape = Quadruped Kind = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16403,6 +16907,7 @@ Color = Brown Shape = BipedalTail Kind = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -16434,6 +16939,7 @@ Color = Brown Shape = Quadruped Kind = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16465,6 +16971,7 @@ Color = Gray Shape = Quadruped Kind = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -16496,6 +17003,7 @@ Color = Gray Shape = Quadruped Kind = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16527,6 +17035,7 @@ Color = Purple Shape = Quadruped Kind = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -16558,6 +17067,7 @@ Color = Purple Shape = Quadruped Kind = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16589,6 +17099,7 @@ Color = Green Shape = BipedalTail Kind = Grass Monkey Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leaves are known to relieve stress. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -16620,6 +17131,7 @@ Color = Green Shape = BipedalTail Kind = Thorn Monkey Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -16651,6 +17163,7 @@ Color = Red Shape = BipedalTail Kind = High Temp Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600º F. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16682,6 +17195,7 @@ Color = Red Shape = BipedalTail Kind = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16713,6 +17227,7 @@ Color = Blue Shape = BipedalTail Kind = Spray Pokedex = It does not thrive in dry environments. It keeps itself damp by shooting water stored in its head tuft from its tail. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 8 @@ -16744,6 +17259,7 @@ Color = Blue Shape = BipedalTail Kind = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16775,6 +17291,7 @@ Color = Pink Shape = Quadruped Kind = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16806,6 +17323,7 @@ Color = Pink Shape = Bipedal Kind = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. +Generation = 5 BattlerPlayerX = 6 BattlerPlayerY = 0 BattlerEnemyX = -9 @@ -16838,6 +17356,7 @@ Color = Gray Shape = Winged Kind = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -16870,6 +17389,7 @@ Color = Gray Shape = Winged Kind = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -16902,6 +17422,7 @@ Color = Gray Shape = Winged Kind = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16933,6 +17454,7 @@ Color = Black Shape = Quadruped Kind = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. +Generation = 5 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -16964,6 +17486,7 @@ Color = Black Shape = Quadruped Kind = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -16995,6 +17518,7 @@ Color = Blue Shape = HeadLegs Kind = Mantle Pokedex = They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 0 @@ -17028,6 +17552,7 @@ Color = Blue Shape = Multiped Kind = Ore Pokedex = Because its energy was too great to be contained, the energy leaked and formed orange crystals. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 2 @@ -17061,6 +17586,7 @@ Color = Blue Shape = Multiped Kind = Compressed Pokedex = The solar energy absorbed by its body's orange crystals is magnified internally and fired from its mouth. +Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE BattlerPlayerX = 0 @@ -17095,6 +17621,7 @@ Color = Blue Shape = Winged Kind = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -17127,6 +17654,7 @@ Color = Blue Shape = Winged Kind = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -17158,6 +17686,7 @@ Color = Gray Shape = BipedalTail Kind = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -17190,6 +17719,7 @@ Color = Gray Shape = Bipedal Kind = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17221,6 +17751,7 @@ Color = Pink Shape = BipedalTail Kind = Hearing Pokedex = Its auditory sense is astounding. It has a radar-like ability to understand its surrounding through slight sounds. +Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY BattlerPlayerX = 2 @@ -17254,6 +17785,7 @@ Color = Gray Shape = Bipedal Kind = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -17285,6 +17817,7 @@ Color = Gray Shape = Bipedal Kind = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17316,6 +17849,7 @@ Color = Brown Shape = Bipedal Kind = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17347,6 +17881,7 @@ Color = Blue Shape = Finned Kind = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17379,6 +17914,7 @@ Color = Blue Shape = BipedalTail Kind = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. +Generation = 5 BattlerPlayerX = -6 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -17411,6 +17947,7 @@ Color = Blue Shape = Bipedal Kind = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -17441,6 +17978,7 @@ Color = Red Shape = Bipedal Kind = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. +Generation = 5 WildItemUncommon = BLACKBELT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17472,6 +18010,7 @@ Color = Blue Shape = Bipedal Kind = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. +Generation = 5 WildItemUncommon = BLACKBELT BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17505,6 +18044,7 @@ Color = Yellow Shape = Insectoid Kind = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17538,6 +18078,7 @@ Color = Green Shape = HeadArms Kind = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -17571,6 +18112,7 @@ Color = Yellow Shape = Bipedal Kind = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. +Generation = 5 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17604,6 +18146,7 @@ Color = Red Shape = Insectoid Kind = Centipede Pokedex = It discovers what is going on around it by using the feelers on its head and tail. It is brutally aggresive. +Generation = 5 WildItemUncommon = POISONBARB BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -17637,6 +18180,7 @@ Color = Gray Shape = Head Kind = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. +Generation = 5 WildItemUncommon = POISONBARB BattlerPlayerX = 4 BattlerPlayerY = 0 @@ -17670,6 +18214,7 @@ Color = Red Shape = Insectoid Kind = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. +Generation = 5 WildItemUncommon = POISONBARB BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17703,6 +18248,7 @@ Color = Green Shape = Head Kind = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17736,6 +18282,7 @@ Color = Green Shape = Bipedal Kind = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17768,6 +18315,7 @@ Color = Green Shape = HeadBase Kind = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -17800,6 +18348,7 @@ Color = Green Shape = HeadBase Kind = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. +Generation = 5 WildItemUncommon = ABSORBBULB BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -17833,6 +18382,7 @@ Shape = Finned Kind = Hostile Pokedex = Savage, violent Pokémon, red and blue Basculin are always fighting each other over territory. FormName = Red-Striped +Generation = 5 WildItemUncommon = DEEPSEATOOTH BattlerPlayerX = -7 BattlerPlayerY = 0 @@ -17866,6 +18416,7 @@ Color = Brown Shape = Quadruped Kind = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. +Generation = 5 WildItemUncommon = BLACKGLASSES BattlerPlayerX = -2 BattlerPlayerY = 0 @@ -17899,6 +18450,7 @@ Color = Brown Shape = Quadruped Kind = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. +Generation = 5 WildItemUncommon = BLACKGLASSES BattlerPlayerX = 3 BattlerPlayerY = 0 @@ -17932,6 +18484,7 @@ Color = Red Shape = BipedalTail Kind = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. +Generation = 5 WildItemCommon = BLACKGLASSES BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -17964,6 +18517,7 @@ Color = Red Shape = Bipedal Kind = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -17996,6 +18550,7 @@ Shape = Quadruped Kind = Blazing Pokedex = When weakened in battle, it transforms into a stone statue. Then it sharpens its mind and fights on mentally. FormName = Standard Mode +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18027,6 +18582,7 @@ Color = Green Shape = HeadBase Kind = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. +Generation = 5 WildItemUncommon = MIRACLESEED BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -18060,6 +18616,7 @@ Color = Red Shape = Insectoid Kind = Rock Inn Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon remains agitated until it locates a replacement. +Generation = 5 WildItemUncommon = HARDSTONE BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -18093,6 +18650,7 @@ Color = Red Shape = Insectoid Kind = Stone Home Pokedex = It possesses legs of enormous strength, enabling it to carry heavy slabs for many days, even when crossing arid land. +Generation = 5 WildItemUncommon = HARDSTONE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -18126,6 +18684,7 @@ Color = Yellow Shape = BipedalTail Kind = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. +Generation = 5 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18159,6 +18718,7 @@ Color = Red Shape = BipedalTail Kind = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. +Generation = 5 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18192,6 +18752,7 @@ Color = Black Shape = Winged Kind = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. +Generation = 5 BattlerPlayerX = 7 BattlerPlayerY = 0 BattlerEnemyX = -6 @@ -18222,6 +18783,7 @@ Color = Black Shape = HeadArms Kind = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. +Generation = 5 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18253,6 +18815,7 @@ Color = Yellow Shape = HeadBase Kind = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. +Generation = 5 WildItemUncommon = SPELLTAG BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18286,6 +18849,7 @@ Color = Blue Shape = Quadruped Kind = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18318,6 +18882,7 @@ Color = Blue Shape = BipedalTail Kind = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -18349,6 +18914,7 @@ Color = Yellow Shape = Winged Kind = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18380,6 +18946,7 @@ Color = Yellow Shape = Winged Kind = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. +Generation = 5 BattlerPlayerX = 4 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18411,6 +18978,7 @@ Color = Green Shape = Bipedal Kind = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. +Generation = 5 WildItemUncommon = SILKSCARF BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -18443,6 +19011,7 @@ Color = Green Shape = Bipedal Kind = Trash Heap Pokedex = They absorb garbage and make it part of their bodies. They shoot a poisonous liquid from their right-hand fingertips. +Generation = 5 WildItemCommon = SILKSCARF WildItemUncommon = BLACKSLUDGE BattlerPlayerX = 5 @@ -18475,6 +19044,7 @@ Color = Gray Shape = Quadruped Kind = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18505,6 +19075,7 @@ Color = Gray Shape = BipedalTail Kind = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -18536,6 +19107,7 @@ Color = Gray Shape = Quadruped Kind = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18567,6 +19139,7 @@ Color = Gray Shape = Quadruped Kind = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18598,6 +19171,7 @@ Color = Purple Shape = Bipedal Kind = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18629,6 +19203,7 @@ Color = Purple Shape = Bipedal Kind = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18660,6 +19235,7 @@ Color = Purple Shape = Bipedal Kind = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18691,6 +19267,7 @@ Color = Green Shape = Head Kind = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -18722,6 +19299,7 @@ Color = Green Shape = Head Kind = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18753,6 +19331,7 @@ Color = Green Shape = HeadArms Kind = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -18785,6 +19364,7 @@ Color = Blue Shape = Winged Kind = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18817,6 +19397,7 @@ Color = White Shape = Winged Kind = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -18848,6 +19429,7 @@ Color = White Shape = HeadBase Kind = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18880,6 +19462,7 @@ Color = White Shape = HeadBase Kind = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -18912,6 +19495,7 @@ Color = White Shape = MultiBody Kind = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. +Generation = 5 WildItemCommon = NEVERMELTICE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -18946,6 +19530,7 @@ Shape = Quadruped Kind = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -18979,6 +19564,7 @@ Shape = Quadruped Kind = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -19011,6 +19597,7 @@ Color = White Shape = Quadruped Kind = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19042,6 +19629,7 @@ Color = Blue Shape = Bipedal Kind = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19074,6 +19662,7 @@ Color = Gray Shape = HeadArms Kind = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19106,6 +19695,7 @@ Color = White Shape = HeadArms Kind = Mushroom Pokedex = For some reason, this Pokémon resembles a Poké Ball. They release poison spores to repel those who try to catch them. +Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 0 @@ -19140,6 +19730,7 @@ Color = White Shape = HeadArms Kind = Mushroom Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémon are fooled by this. +Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 7 @@ -19174,6 +19765,7 @@ Color = White Shape = Multiped Kind = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19206,6 +19798,7 @@ Color = White Shape = Multiped Kind = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19237,6 +19830,7 @@ Color = Pink Shape = Finned Kind = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19269,6 +19863,7 @@ Color = Yellow Shape = Insectoid Kind = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -19301,6 +19896,7 @@ Color = Yellow Shape = Insectoid Kind = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -19332,6 +19928,7 @@ Color = Gray Shape = Head Kind = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. +Generation = 5 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -19365,6 +19962,7 @@ Color = Gray Shape = Multiped Kind = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. +Generation = 5 WildItemUncommon = STICKYBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -19396,6 +19994,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -19427,6 +20026,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19458,6 +20058,7 @@ Color = Gray Shape = MultiBody Kind = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19487,6 +20088,7 @@ Color = White Shape = Finned Kind = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19517,6 +20119,7 @@ Color = Blue Shape = Finned Kind = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19547,6 +20150,7 @@ Color = Blue Shape = Finned Kind = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. +Generation = 5 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = -7 @@ -19578,6 +20182,7 @@ Color = Blue Shape = BipedalTail Kind = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19609,6 +20214,7 @@ Color = Brown Shape = Bipedal Kind = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19641,6 +20247,7 @@ Color = White Shape = HeadBase Kind = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19673,6 +20280,7 @@ Color = Black Shape = HeadArms Kind = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -19705,6 +20313,7 @@ Color = Black Shape = HeadArms Kind = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19736,6 +20345,7 @@ Color = Green Shape = BipedalTail Kind = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19767,6 +20377,7 @@ Color = Green Shape = BipedalTail Kind = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. +Generation = 5 BattlerPlayerX = -5 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19798,6 +20409,7 @@ Color = Yellow Shape = BipedalTail Kind = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -19829,6 +20441,7 @@ Color = White Shape = BipedalTail Kind = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -19860,6 +20473,7 @@ Color = White Shape = Quadruped Kind = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -19889,6 +20503,7 @@ Color = Blue Shape = Head Kind = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. +Generation = 5 WildItemUncommon = NEVERMELTICE BattlerPlayerX = -1 BattlerPlayerY = 0 @@ -19921,6 +20536,7 @@ Color = Red Shape = Head Kind = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -19952,6 +20568,7 @@ Color = Red Shape = HeadArms Kind = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. +Generation = 5 BattlerPlayerX = -4 BattlerPlayerY = 0 BattlerEnemyX = 4 @@ -19984,6 +20601,7 @@ Color = Brown Shape = Finned Kind = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. +Generation = 5 WildItemUncommon = SOFTSAND BattlerPlayerX = -3 BattlerPlayerY = 0 @@ -20016,6 +20634,7 @@ Color = Yellow Shape = BipedalTail Kind = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20047,6 +20666,7 @@ Color = Purple Shape = BipedalTail Kind = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20078,6 +20698,7 @@ Color = Red Shape = BipedalTail Kind = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. +Generation = 5 WildItemUncommon = DRAGONFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -20110,6 +20731,7 @@ Color = Green Shape = Bipedal Kind = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. +Generation = 5 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 1 BattlerPlayerY = 0 @@ -20143,6 +20765,7 @@ Color = Green Shape = Bipedal Kind = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. +Generation = 5 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 2 BattlerPlayerY = 0 @@ -20176,6 +20799,7 @@ Color = Red Shape = Bipedal Kind = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20208,6 +20832,7 @@ Color = Red Shape = Bipedal Kind = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20239,6 +20864,7 @@ Color = Brown Shape = Quadruped Kind = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = -10 @@ -20270,6 +20896,7 @@ Color = White Shape = Winged Kind = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. +Generation = 5 BattlerPlayerX = 1 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20302,6 +20929,7 @@ Color = Red Shape = Winged Kind = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 5 @@ -20334,6 +20962,7 @@ Color = Brown Shape = Winged Kind = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20366,6 +20995,7 @@ Color = Brown Shape = Winged Kind = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20397,6 +21027,7 @@ Color = Red Shape = BipedalTail Kind = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. +Generation = 5 BattlerPlayerX = 3 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -20429,6 +21060,7 @@ Color = Gray Shape = Insectoid Kind = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20460,6 +21092,7 @@ Color = Blue Shape = Quadruped Kind = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20491,6 +21124,7 @@ Color = Blue Shape = Quadruped Kind = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20522,6 +21156,7 @@ Color = Blue Shape = BipedalTail Kind = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. +Generation = 5 BattlerPlayerX = -2 BattlerPlayerY = 0 BattlerEnemyX = 1 @@ -20554,6 +21189,7 @@ Color = White Shape = Insectoid Kind = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -2 @@ -20586,6 +21222,7 @@ Color = White Shape = MultiWinged Kind = Sun Pokedex = A sea of fire engulfs the surroundings of their battles, since they use their six wings to scatter their ember scales. +Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER @@ -20619,6 +21256,7 @@ Color = Blue Shape = Quadruped Kind = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20649,6 +21287,7 @@ Color = Gray Shape = Quadruped Kind = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -4 @@ -20679,6 +21318,7 @@ Color = Green Shape = Quadruped Kind = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20710,6 +21350,7 @@ Shape = HeadArms Kind = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20742,6 +21383,7 @@ Shape = HeadArms Kind = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -20772,6 +21414,7 @@ Color = White Shape = Winged Kind = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. +Generation = 5 BattlerPlayerX = 2 BattlerPlayerY = 0 BattlerEnemyX = 6 @@ -20802,6 +21445,7 @@ Color = Black Shape = BipedalTail Kind = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 3 @@ -20834,6 +21478,7 @@ Shape = HeadArms Kind = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20864,6 +21509,7 @@ Color = Gray Shape = BipedalTail Kind = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. +Generation = 5 BattlerPlayerX = -3 BattlerPlayerY = 0 BattlerEnemyX = -1 @@ -20895,6 +21541,7 @@ Shape = Quadruped Kind = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form +Generation = 5 BattlerPlayerX = -1 BattlerPlayerY = 0 BattlerEnemyX = 2 @@ -20926,6 +21573,7 @@ Shape = Bipedal Kind = Melody Pokedex = Many famous songs have been inspired by the melodies that Meloetta plays. FormName = Aria Forme +Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE @@ -20960,6 +21608,7 @@ Shape = Bipedal Kind = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal +Generation = 5 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = -3 @@ -20991,6 +21640,7 @@ Color = Green Shape = BipedalTail Kind = Spiny Nut Pokedex = The quills on its head are usually soft. When it flexes them, the points become so hard and sharp that they can pierce rock. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21022,6 +21672,7 @@ Color = Green Shape = BipedalTail Kind = Spiny Armor Pokedex = They strengthen their lower bodies by running into one another. They are very kind and won't start fights. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21054,6 +21705,7 @@ Color = Green Shape = BipedalTail Kind = Spiny Armor Pokedex = Its Tackle is forceful enough to flip a 50-ton tank. It shields its allies from danger with its own body. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21085,6 +21737,7 @@ Color = Red Shape = Quadruped Kind = Fox Pokedex = As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21116,6 +21769,7 @@ Color = Red Shape = BipedalTail Kind = Fox Pokedex = When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21148,6 +21802,7 @@ Color = Red Shape = BipedalTail Kind = Fox Pokedex = It gazes into the flame at the tip of its branch to achieve a focused state, which allows it to see into the future. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21179,6 +21834,7 @@ Color = Blue Shape = Quadruped Kind = Bubble Frog Pokedex = It protects its skin by covering its body in delicate bubbles. Beneath its happy-go-lucky air, it keeps a watchful eye on its surroundings. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21210,6 +21866,7 @@ Color = Blue Shape = Bipedal Kind = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21242,6 +21899,7 @@ Color = Blue Shape = Bipedal Kind = Ninja Pokedex = It appears and vanishes with a ninja’s grace. It toys with its enemies using swift movements, while slicing them with throwing stars of sharpest water. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21273,6 +21931,7 @@ Color = Brown Shape = BipedalTail Kind = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21305,6 +21964,7 @@ Color = Brown Shape = BipedalTail Kind = Digging Pokedex = As powerful as an excavator, its ears can reduce dense bedrock to rubble. When it's finished digging, it lounges lazily. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21337,6 +21997,7 @@ Color = Red Shape = Winged Kind = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21369,6 +22030,7 @@ Color = Red Shape = Winged Kind = Ember Pokedex = From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21401,6 +22063,7 @@ Color = Red Shape = Winged Kind = Scorching Pokedex = In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21432,6 +22095,7 @@ Color = Black Shape = Insectoid Kind = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21463,6 +22127,7 @@ Color = Black Shape = HeadBase Kind = Scatterdust Pokedex = It lives hidden within thicket shadows. When predators attack, it quickly bristles the fur covering its body in an effort to threaten them. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21496,6 +22161,7 @@ Shape = MultiWinged Kind = Scale Pokedex = Vivillon with many different patterns are found all over the world. These patterns are affected by the climate of their habitat. FormName = Archipelago Pattern +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21528,6 +22194,7 @@ Color = Brown Shape = Quadruped Kind = Lion Cub Pokedex = They set off on their own from their pride and live by themselves to become stronger. These hot-blooded Pokémon are quick to fight. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21560,6 +22227,7 @@ Color = Brown Shape = Quadruped Kind = Royal Pokedex = With fiery breath of more than 6,000 degrees Celsius, they viciously threaten any challenger. The females protect the pride’s cubs. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21592,6 +22260,7 @@ Shape = HeadArms Kind = Single Bloom Pokedex = When it finds a flower it likes, it dwells on that flower its whole life long. It floats in the wind's embrace with an untroubled heart. FormName = Red Flower +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21624,6 +22293,7 @@ Shape = HeadArms Kind = Single Bloom Pokedex = It flutters around fields of flowers and cares for flowers that are starting to wilt. It draws out the power of flowers to battle. FormName = Red Flower +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21656,6 +22326,7 @@ Shape = HeadArms Kind = Garden Pokedex = It claims exquisite flower gardens as its territory, and it obtains power from basking in the energy emitted by flowering plants. FormName = Red Flower +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21687,6 +22358,7 @@ Color = Brown Shape = Quadruped Kind = Mount Pokedex = If it has sunshine and water, it doesn't need to eat, because it can generate energy from the leaves on its back. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21718,6 +22390,7 @@ Color = Brown Shape = Quadruped Kind = Mount Pokedex = It can tell how its trainer is feeling by subtle shifts in the grip on its horns. This empathetic sense lets them run as if one being. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21749,6 +22422,7 @@ Color = White Shape = BipedalTail Kind = Playful Pokedex = It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark. +Generation = 6 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -21782,6 +22456,7 @@ Color = White Shape = Bipedal Kind = Daunting Pokedex = It charges ahead and bashes its opponents like a berserker, uncaring about any hits it might take. Its arms are mighty enough to snap a telephone pole. +Generation = 6 WildItemUncommon = MENTALHERB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -21814,6 +22489,7 @@ Shape = Quadruped Kind = Poodle Pokedex = Trimming its fluffy fur not only makes it more elegant but also increases the swiftness of its movements. FormName = Natural Form +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21845,6 +22521,7 @@ Color = Gray Shape = BipedalTail Kind = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21877,6 +22554,7 @@ Shape = BipedalTail Kind = Constraint Pokedex = When in danger, it raises its ears and releases enough psychic power to grind a 10-ton truck to dust. FormName = Male +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21908,6 +22586,7 @@ Color = Brown Shape = HeadBase Kind = Sword Pokedex = Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21939,6 +22618,7 @@ Color = Brown Shape = MultiBody Kind = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -21971,6 +22651,7 @@ Shape = HeadBase Kind = Royal Sword Pokedex = Apparently, it can detect the innate qualities of leadership. According to legend, whoever it recognizes is destined to become king. FormName = Shield Forme +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22002,6 +22683,7 @@ Color = Pink Shape = HeadArms Kind = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22033,6 +22715,7 @@ Color = Pink Shape = Bipedal Kind = Fragrance Pokedex = It devises various scents, pleasant and unpleasant, and emits scents that its enemies dislike in order to gain an edge in battle. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22064,6 +22747,7 @@ Color = White Shape = HeadLegs Kind = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22095,6 +22779,7 @@ Color = White Shape = Bipedal Kind = Meringue Pokedex = It can distinguish the faintest of scents. It puts its sensitive sense of smell to use by helping pastry chefs in their work. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22127,6 +22812,7 @@ Color = Blue Shape = Multiped Kind = Revolving Pokedex = It flashes the light-emitting spots on its body, which drains its opponent's will to fight. It takes the opportunity to scuttle away and hide. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22159,6 +22845,7 @@ Color = Blue Shape = HeadBase Kind = Overturning Pokedex = It lures prey close with hypnotic motions, then wraps its tentacles around it before finishing it off with digestive fluids. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22191,6 +22878,7 @@ Color = Brown Shape = MultiBody Kind = Two-Handed Pokedex = They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22223,6 +22911,7 @@ Color = Brown Shape = MultiBody Kind = Collective Pokedex = Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22255,6 +22944,7 @@ Color = Brown Shape = HeadBase Kind = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22287,6 +22977,7 @@ Color = Brown Shape = HeadBase Kind = Mock Kelp Pokedex = Their poison is strong enough to eat through the hull of a tanker, and they spit it indiscriminately at anything that enters their territory. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22317,6 +23008,7 @@ Color = Blue Shape = Insectoid Kind = Water Gun Pokedex = Through controlled expulsions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22347,6 +23039,7 @@ Color = Blue Shape = Serpentine Kind = Howitzer Pokedex = By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22379,6 +23072,7 @@ Color = Yellow Shape = BipedalTail Kind = Generator Pokedex = They make their home in deserts. They can generate their energy from basking in the sun, so eating food is not a requirement. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22411,6 +23105,7 @@ Color = Yellow Shape = BipedalTail Kind = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22443,6 +23138,7 @@ Color = Brown Shape = BipedalTail Kind = Royal Heir Pokedex = Its immense jaws have enough destructive force that it can chew up an automobile. It lived 100 million years ago. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22475,6 +23171,7 @@ Color = Red Shape = BipedalTail Kind = Despot Pokedex = Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22507,6 +23204,7 @@ Color = Blue Shape = Quadruped Kind = Tundra Pokedex = This ancient Pokémon was restored from part of its body that had been frozen in ice for over 100 million years. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22539,6 +23237,7 @@ Color = Blue Shape = Quadruped Kind = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22569,6 +23268,7 @@ Color = Pink Shape = Quadruped Kind = Intertwining Pokedex = Its ribbonlike feelers give off an aura that weakens hostility in its prey, causing them to let down their guard. Then it attacks. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22601,6 +23301,7 @@ Color = Green Shape = Bipedal Kind = Wrestling Pokedex = With its wings, it controls its position in the air. It likes to attack from above, a maneuver that is difficult to defend against. +Generation = 6 WildItemUncommon = KINGSROCK BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -22634,6 +23335,7 @@ Color = Yellow Shape = BipedalTail Kind = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22665,6 +23367,7 @@ Color = Gray Shape = Head Kind = Jewel Pokedex = Born from the high temperatures and pressures deep underground, it defends itself by firing beams from the jewel part of its body. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22696,6 +23399,7 @@ Color = Purple Shape = Serpentine Kind = Soft Tissue Pokedex = Its source of protection is its slimy, germ-laden mucous membrane. Anyone who touches it needs some thorough hand-washing. +Generation = 6 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -22728,6 +23432,7 @@ Color = Purple Shape = Serpentine Kind = Soft Tissue Pokedex = This Pokémon's mucous can dissolve anything. Toothless, it sprays mucous on its prey. Once they're nicely dissolved, it slurps them up. +Generation = 6 WildItemUncommon = SHEDSHELL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -22760,6 +23465,7 @@ Color = Purple Shape = BipedalTail Kind = Dragon Pokedex = It gets picked on because it's meek. But then, whoever teased it gets to feel the full force of its horns and a good swatting from its thick tail. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22792,6 +23498,7 @@ Color = Gray Shape = Head Kind = Key Ring Pokedex = It never lets go of a key that it likes, so people give it the keys to vaults and safes as a way to prevent crime. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22824,6 +23531,7 @@ Color = Brown Shape = HeadArms Kind = Stump Pokedex = These Pokémon are stumps possessed by the spirits of children who died in the forest. Their cries sound like eerie screams. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22856,6 +23564,7 @@ Color = Brown Shape = Multiped Kind = Elder Tree Pokedex = Through its roots, it exerts control over other trees. A deadly curse falls upon anyone cutting down trees in forests where Trevenant dwell. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22888,6 +23597,7 @@ Shape = Head Kind = Pumpkin Pokedex = The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active. FormName = Small Size +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22920,6 +23630,7 @@ Shape = HeadBase Kind = Pumpkin Pokedex = Singing in eerie voices, they wander town streets on the night of the new moon. Anyone who hears their song is cursed. FormName = Small Size +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22951,6 +23662,7 @@ Color = Blue Shape = Quadruped Kind = Ice Chunk Pokedex = It blocks opponents' attacks with the ice that shields its body. It uses cold air to repair any cracks with new ice. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -22982,6 +23694,7 @@ Color = Blue Shape = Quadruped Kind = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23014,6 +23727,7 @@ Color = Purple Shape = Winged Kind = Sound Wave Pokedex = Even a robust wrestler will become dizzy and unable to stand when exposed to its 200,000-hertz ultrasonic waves. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23046,6 +23760,7 @@ Color = Purple Shape = Winged Kind = Sound Wave Pokedex = They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23076,6 +23791,7 @@ Shape = Quadruped Kind = Life Pokedex = Legends say it can share eternal life. It slept for a thousand years in the form of a tree before its revival. FormName = Neutral Mode +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23106,6 +23822,7 @@ Color = Red Shape = Winged Kind = Destruction Pokedex = When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23137,6 +23854,7 @@ Shape = Serpentine Kind = Order Pokedex = It's thought to be monitoring the ecosystem. There are rumors that even greater power lies hidden within it. FormName = 50% Forme +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23167,6 +23885,7 @@ Color = Pink Shape = HeadArms Kind = Jewel Pokedex = A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23198,6 +23917,7 @@ Shape = HeadArms Kind = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23228,6 +23948,7 @@ Color = Brown Shape = Quadruped Kind = Steam Pokedex = It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread. +Generation = 6 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23260,6 +23981,7 @@ Color = Brown Shape = Winged Kind = Grass Quill Pokedex = It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23292,6 +24014,7 @@ Color = Brown Shape = Winged Kind = Blade Quill Pokedex = A bit of a dandy, it spends its free time preening its wings. Its preoccupation with any dirt on its plumage can leave it unable to battle. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23324,6 +24047,7 @@ Color = Brown Shape = Winged Kind = Arrow Quill Pokedex = It fires arrow quills from its wings with such precision, they can pierce a pebble at distances over a hundred yards. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23355,6 +24079,7 @@ Color = Red Shape = Quadruped Kind = Fire Cat Pokedex = Its coat regrows twice a year. When the time comes, Litten sets its own body on fire and burns away the old fur. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23386,6 +24111,7 @@ Color = Red Shape = Quadruped Kind = Fire Cat Pokedex = It can act spoiled if it grows close to its Trainer. A powerful Pokémon, its sharp claws can leave its Trainer's whole body covered in scratches. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23418,6 +24144,7 @@ Color = Red Shape = BipedalTail Kind = Heel Pokedex = Although it's rough mannered and egotistical, it finds beating down unworthy opponents boring. It gets motivated for stronger opponents. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23449,6 +24176,7 @@ Color = Blue Shape = Finned Kind = Sea Lion Pokedex = This Pokémon snorts body fluids from its nose, blowing balloons to smash into its foes. It's famous for being a hard worker. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23480,6 +24208,7 @@ Color = Blue Shape = Finned Kind = Pop Star Pokedex = It gets excited when it sees a dance it doesn't know. This hard worker practices diligently until it can learn that dance. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23512,6 +24241,7 @@ Color = Blue Shape = Finned Kind = Soloist Pokedex = It controls its water balloons with song. The melody is learned from others of its kind and is passed down from one generation to the next. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23544,6 +24274,7 @@ Color = Black Shape = Winged Kind = Woodpecker Pokedex = It pecks at trees with its hard beak. You can get some idea of its mood or condition from the rhythm of its pecking. +Generation = 7 WildItemUncommon = ORANBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23577,6 +24308,7 @@ Color = Black Shape = Winged Kind = Bugle Beak Pokedex = It eats berries and stores their seeds in its beak. When it encounters enemies or prey, it fires off all the seeds in a burst. +Generation = 7 WildItemUncommon = SITRUSBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23610,6 +24342,7 @@ Color = Black Shape = Winged Kind = Cannon Pokedex = They smack beaks with others of their kind to communicate. The strength and number of hits tell each other how they feel. +Generation = 7 WildItemUncommon = RAWSTBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23642,6 +24375,7 @@ Color = Brown Shape = Quadruped Kind = Loitering Pokedex = Its stomach takes up most of its long torso. It's a big eater, so the amount Trainers have to spend on its food is no laughing matter. +Generation = 7 WildItemUncommon = PECHABERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23674,6 +24408,7 @@ Color = Brown Shape = Quadruped Kind = Stakeout Pokedex = When it finds a trace of its prey, it patiently stakes out the location... but it's always snoozing by nightfall. +Generation = 7 WildItemUncommon = PECHABERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23705,6 +24440,7 @@ Color = Gray Shape = Insectoid Kind = Larva Pokedex = It spits a sticky thread to stop opponents in their tracks, and then it grabs them in its sharp, sturdy mandibles to take them down. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23736,6 +24472,7 @@ Color = Green Shape = Serpentine Kind = Battery Pokedex = It buries itself in fallen leaves and barely moves, munching away on humus. If you accidentally step on one, you'll get a shock! +Generation = 7 WildItemUncommon = CELLBATTERY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23768,6 +24505,7 @@ Color = Blue Shape = Insectoid Kind = Stag Beetle Pokedex = It zips around, on sharp lookout for an opening. It concentrates electrical energy within its large jaws and uses it to zap its enemies. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23799,6 +24537,7 @@ Color = Purple Shape = Insectoid Kind = Boxing Pokedex = It punches so much, its pincers often come off from overuse, but they grow back quickly. What little meat they contain is rich and delicious. +Generation = 7 WildItemUncommon = ASPEARBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23832,6 +24571,7 @@ Color = White Shape = Insectoid Kind = Woolly Crab Pokedex = It aimed for the top but got lost and ended up on a snowy mountain. Being forced to endure the cold, this Pokémon evolved and grew fur. +Generation = 7 WildItemUncommon = CHERIBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23865,6 +24605,7 @@ Shape = Winged Kind = Dancing Pokedex = It beats its wings together to create fire. As it moves in the steps of its beautiful dance, it bathes opponents in intense flames. FormName = Baile Style +Generation = 7 WildItemUncommon = HONEY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23898,6 +24639,7 @@ Color = Yellow Shape = Insectoid Kind = Bee Fly Pokedex = It feeds on the nectar and pollen of flowers. Because it's able to sense auras, it can identify which flowers are about to bloom. +Generation = 7 WildItemUncommon = HONEY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23931,6 +24673,7 @@ Color = Yellow Shape = MultiWinged Kind = Bee Fly Pokedex = Rain makes pollen damp, so Ribombee hates rain. When it sees ominous clouds, it finds a hollow in a tree, where it waits stock-still. +Generation = 7 WildItemUncommon = HONEY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -23963,6 +24706,7 @@ Color = Brown Shape = Quadruped Kind = Puppy Pokedex = This Pokémon has lived with people since times long ago. It can sense when its Trainer is in the dumps and will stick close by its Trainer's side. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -23995,6 +24739,7 @@ Shape = Quadruped Kind = Wolf Pokedex = Its quick movements confuse its enemies. Well equipped with claws and fangs, it also uses the sharp rocks in its mane as weapons. FormName = Midday Form +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24026,6 +24771,7 @@ Shape = Finned Kind = Small Fry Pokedex = It's awfully weak and notably tasty, so everyone is always out to get it. As it happens, anyone trying to bully it receives a painful lesson. FormName = Solo Form +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24058,6 +24804,7 @@ Color = Blue Shape = HeadBase Kind = Brutal Star Pokedex = It plunges the poison spike on its head into its prey. When the prey has weakened, Mareanie deals the finishing blow with its 10 tentacles. +Generation = 7 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24091,6 +24838,7 @@ Color = Blue Shape = Multiped Kind = Brutal Star Pokedex = Those attacked by Toxapex's poison will suffer intense pain for three days and three nights. Post-recovery, there will be some aftereffects. +Generation = 7 WildItemUncommon = POISONBARB BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24123,6 +24871,7 @@ Color = Brown Shape = Quadruped Kind = Donkey Pokedex = It loves playing in the mud. If it isn't showered with mud on a daily basis, it gets stressed out and stops listening to its Trainer. +Generation = 7 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24155,6 +24904,7 @@ Color = Brown Shape = Quadruped Kind = Draft Horse Pokedex = It remains calm and unmoving no matter the situation. It mixes dirt with the saliva in its mouth to make a special kind of mud. +Generation = 7 WildItemUncommon = LIGHTCLAY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24188,6 +24938,7 @@ Color = Green Shape = HeadLegs Kind = Water Bubble Pokedex = When two Dewpider meet, they display their water bubbles to each other. Then the one with the smaller bubble gets out of the other's way. +Generation = 7 WildItemUncommon = MYSTICWATER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24221,6 +24972,7 @@ Color = Green Shape = Insectoid Kind = Water Bubble Pokedex = It delivers headbutts with the water bubble on its head. Small Pokémon get sucked into the bubble, where they drown. +Generation = 7 WildItemUncommon = MYSTICWATER BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24253,6 +25005,7 @@ Color = Pink Shape = BipedalTail Kind = Sickle Grass Pokedex = When the sun rises, Fomantis spreads its four leaves and bathes in the sunlight. The tip of its head has a pleasant aroma. +Generation = 7 WildItemUncommon = MIRACLESEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24285,6 +25038,7 @@ Color = Pink Shape = Bipedal Kind = Bloom Sickle Pokedex = It requires a lot of effort to maintain Lurantis's vivid coloring, but some collectors enjoy this work and treat it as their hobby. +Generation = 7 WildItemUncommon = MIRACLESEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24318,6 +25072,7 @@ Color = Purple Shape = HeadBase Kind = Illuminating Pokedex = It scatters its shining spores around itself. Even though they're dangerous, nighttime tours of forests where Morelull live are popular. +Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 0 @@ -24352,6 +25107,7 @@ Color = Purple Shape = Bipedal Kind = Illuminating Pokedex = It puts its prey to sleep and siphons off their vitality through the tip of its arms. If one of its kind is weakened, it helps by sending it vitality. +Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM BattlerPlayerX = 0 @@ -24386,6 +25142,7 @@ Color = Black Shape = Quadruped Kind = Toxic Lizard Pokedex = It burns its bodily fluids to create a poisonous gas. When its enemies become disoriented from inhaling the gas, it attacks them. +Generation = 7 WildItemUncommon = SMOKEBALL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24419,6 +25176,7 @@ Color = Black Shape = Quadruped Kind = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. +Generation = 7 WildItemUncommon = SMOKEBALL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24452,6 +25210,7 @@ Color = Pink Shape = Quadruped Kind = Flailing Pokedex = Despite its adorable appearance, when it gets angry and flails about, its arms and legs could knock a pro wrestler sprawling. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24484,6 +25243,7 @@ Color = Pink Shape = BipedalTail Kind = Strong Arm Pokedex = It waves its hands wildly in intimidation and warning. Life is over for anyone who doesn't run away as fast as possible. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24515,6 +25275,7 @@ Color = Purple Shape = HeadLegs Kind = Fruit Pokedex = Because of its sweet, delicious aroma, bird Pokémon are always after it, but it's not intelligent enough to care. +Generation = 7 WildItemUncommon = GRASSYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24547,6 +25308,7 @@ Color = Purple Shape = Bipedal Kind = Fruit Pokedex = It's protected by its hard sepals, so it plays with bird Pokémon without worry. They peck it relentlessly, but it doesn't care. +Generation = 7 WildItemUncommon = GRASSYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24579,6 +25341,7 @@ Color = Purple Shape = Bipedal Kind = Fruit Pokedex = A Pokémon with an aggressive personality and a mastery of kicking, it cackles every time it kicks an opponent. +Generation = 7 WildItemCommon = GRASSYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24611,6 +25374,7 @@ Color = Green Shape = Head Kind = Posy Picker Pokedex = Baths prepared with the flowers from its vine have a relaxing effect, so this Pokémon is a hit with many people. +Generation = 7 WildItemUncommon = MISTYSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24644,6 +25408,7 @@ Color = White Shape = Bipedal Kind = Sage Pokedex = It normally spends its time meditating in the treetops. It throws Poké Balls and gives other Pokémon orders as it pleases. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24675,6 +25440,7 @@ Color = White Shape = BipedalTail Kind = Teamwork Pokedex = Berries are its weapons as well as the staple of its diet. The one that can throw a berry the farthest is the boss of the troop. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24706,6 +25472,7 @@ Color = Gray Shape = Multiped Kind = Turn Tail Pokedex = This Pokémon is a coward. As it desperately dashes off, the flailing of its many legs leaves a sparkling clean path in its wake. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24737,6 +25504,7 @@ Color = Gray Shape = Bipedal Kind = Hard Scale Pokedex = It battles skillfully with its six arms, but spends most of its time peacefully meditating in caves deep beneath the sea. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24769,6 +25537,7 @@ Color = Brown Shape = Serpentine Kind = Sand Heap Pokedex = It likes the shovel on its head, so Sandygast will get serious and fight any children who come to take it back. +Generation = 7 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24802,6 +25571,7 @@ Color = Brown Shape = Serpentine Kind = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. +Generation = 7 WildItemUncommon = SPELLTAG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24834,6 +25604,7 @@ Color = Black Shape = Serpentine Kind = Sea Cucumber Pokedex = It lives in shallow seas, such as areas near a beach. It can eject its internal organs, which it uses to engulf its prey or battle enemies. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24863,6 +25634,7 @@ Color = Gray Shape = Quadruped Kind = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24894,6 +25666,7 @@ Shape = Quadruped Kind = Synthetic Pokedex = Its trust in its partner is what awakens it. This Pokémon is capable of changing its type, a flexibility that is well displayed in battle. FormName = Type: Normal +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24925,6 +25698,7 @@ Shape = Head Kind = Meteor Pokedex = Originally making its home in the ozone layer, it hurtles to the ground when the shell enclosing its body grows too heavy. FormName = Meteor Form +Generation = 7 WildItemUncommon = STARPIECE BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -24956,6 +25730,7 @@ Color = Blue Shape = Bipedal Kind = Drowsing Pokedex = It remains asleep from birth to death as a result of the sedative properties of the leaves that form its diet. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -24987,6 +25762,7 @@ Color = Red Shape = BipedalTail Kind = Blast Turtle Pokedex = It lives in volcanoes and eats sulfur and other minerals. Materials from the food it eats form the basis of its explosive shell. +Generation = 7 WildItemUncommon = CHARCOAL BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25020,6 +25796,7 @@ Color = Gray Shape = BipedalTail Kind = Roly-Poly Pokedex = The long hairs on its back act as lightning rods. The bolts of lightning it attracts are stored as energy in its electric sac. +Generation = 7 WildItemUncommon = ELECTRICSEED BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25053,6 +25830,7 @@ Shape = Serpentine Kind = Disguise Pokedex = A lonely Pokémon, it conceals its terrifying appearance beneath an old rag so it can get closer to people and other Pokémon. FormName = Disguised Form +Generation = 7 WildItemUncommon = CHESTOBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25086,6 +25864,7 @@ Color = Pink Shape = Finned Kind = Gnash Teeth Pokedex = When it unleashes its psychic power from the protuberance on its head, the grating sound of grinding teeth echoes through the area. +Generation = 7 WildItemUncommon = RAZORFANG BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25119,6 +25898,7 @@ Color = White Shape = Serpentine Kind = Placid Pokedex = This Pokémon is friendly to people and loves children most of all. It comes from deep in the mountains to play with children it likes in town. +Generation = 7 WildItemUncommon = PERSIMBERRY BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25150,6 +25930,7 @@ Color = Green Shape = HeadBase Kind = Sea Creeper Pokedex = The soul of seaweed adrift in the waves became reborn as this Pokémon. It maintains itself with new infusions of seabed detritus and seaweed. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25181,6 +25962,7 @@ Color = Gray Shape = Quadruped Kind = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. +Generation = 7 WildItemUncommon = RAZORCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25214,6 +25996,7 @@ Color = Gray Shape = BipedalTail Kind = Scaly Pokedex = It sheds and regrows its scales on a continuous basis. The scales become harder and sharper each time they're regrown. +Generation = 7 WildItemUncommon = RAZORCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25247,6 +26030,7 @@ Color = Gray Shape = BipedalTail Kind = Scaly Pokedex = Its rigid scales function as offense and defense. In the past, its scales were processed and used to make weapons and other commodities. +Generation = 7 WildItemCommon = RAZORCLAW BattlerPlayerX = 0 BattlerPlayerY = 0 @@ -25279,6 +26063,7 @@ Color = Yellow Shape = HeadArms Kind = Land Spirit Pokedex = Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25310,6 +26095,7 @@ Color = Pink Shape = HeadArms Kind = Land Spirit Pokedex = As it flutters about, it scatters its strangely glowing scales. Touching them is said to restore good health on the spot. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25341,6 +26127,7 @@ Color = Red Shape = HeadArms Kind = Land Spirit Pokedex = It pulls large trees up by the roots and swings them around. It causes vegetation to grow, and then it absorbs energy from the growth. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25372,6 +26159,7 @@ Color = Purple Shape = HeadArms Kind = Land Spirit Pokedex = The dense fog it creates brings the downfall and destruction of its confused enemies. Ocean currents are the source of its energy. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25400,6 +26188,7 @@ Color = Blue Shape = Head Kind = Nebula Pokedex = Whether or not it's a Pokémon from this world is a mystery. When it's in a jam, it warps away to a safe place to hide. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25429,6 +26218,7 @@ Color = Blue Shape = Head Kind = Protostar Pokedex = Motionless as if dead, its body is faintly warm to the touch. In the distant past, it was called the cocoon of the stars. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25460,6 +26250,7 @@ Color = White Shape = Quadruped Kind = Sunne Pokedex = It is said to live in another world. The intense light it radiates from the surface of its body can make the darkest of nights light up like midday. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25490,6 +26281,7 @@ Color = Purple Shape = Winged Kind = Moone Pokedex = Said to live in another world, this Pokémon devours light, drawing the moonless dark veil of night over the brightness of day. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25520,6 +26312,7 @@ Color = White Shape = Multiped Kind = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25550,6 +26343,7 @@ Color = Red Shape = Multiped Kind = Swollen Pokedex = This Ultra Beast appeared from another world. It shows off its body, but whether that display is a boast or a threat remains unclear. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25580,6 +26374,7 @@ Color = White Shape = Bipedal Kind = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25609,6 +26404,7 @@ Color = Black Shape = BipedalTail Kind = Glowing Pokedex = One of the mysterious life-forms known as Ultra Beasts. Astonishing electric shocks emanate from its entire body, according to witnesses. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25639,6 +26435,7 @@ Color = Green Shape = Bipedal Kind = Launch Pokedex = One kind of Ultra Beast. Witnesses have seen it burn down a forest by expelling gas from its two arms. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25669,6 +26466,7 @@ Color = White Shape = Bipedal Kind = Drawn Sword Pokedex = One of the Ultra Beast life-forms, it was observed cutting down a gigantic steel tower with one stroke of its blade. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25699,6 +26497,7 @@ Color = Black Shape = BipedalTail Kind = Junkivore Pokedex = A dangerous Ultra Beast, it appears to be eating constantly, but for some reason its droppings have never been found. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25728,6 +26527,7 @@ Color = Black Shape = HeadArms Kind = Prism Pokedex = Light is apparently the source of its energy. It has an extraordinarily vicious disposition and is constantly firing off laser beams. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25758,6 +26558,7 @@ Color = Gray Shape = Bipedal Kind = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25788,6 +26589,7 @@ Color = Gray Shape = Bipedal Kind = Gloomdweller Pokedex = Able to conceal itself in shadows, it never appears before humans, so its very existence was the stuff of myth. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25817,6 +26619,7 @@ Color = Purple Shape = BipedalTail Kind = Poison Pin Pokedex = An Ultra Beast that lives in a different world, it cackles wildly as it sprays its opponents with poison from the needles on its head. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25848,6 +26651,7 @@ Color = Purple Shape = Winged Kind = Poison Pin Pokedex = One kind of Ultra Beast, it fires a glowing, venomous liquid from its needles. This liquid is also immensely adhesive. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25878,6 +26682,7 @@ Color = Gray Shape = Quadruped Kind = Rampart Pokedex = When stone walls started moving and attacking, the brute's true identity was this mysterious life-form, which brings to mind an Ultra Beast. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25908,6 +26713,7 @@ Color = White Shape = Bipedal Kind = Fireworks Pokedex = It slithers toward people. Then, without warning, it triggers the explosion of its own head. It's apparently one kind of Ultra Beast. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25937,6 +26743,7 @@ Color = Yellow Shape = Bipedal Kind = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25965,6 +26772,7 @@ Color = Gray Shape = Head Kind = Hex Nut Pokedex = It melts particles of iron and other metals found in the subsoil, so it can absorb them into its body of molten steel. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 @@ -25994,6 +26802,7 @@ Color = Gray Shape = Bipedal Kind = Hex Nut Pokedex = Revered long ago for its capacity to create iron from nothing, for some reason it has come back to life after 3,000 years. +Generation = 7 BattlerPlayerX = 0 BattlerPlayerY = 0 BattlerEnemyX = 0 diff --git a/PBS/pokemonforms.txt b/PBS/pokemonforms.txt index 16a268f9d..6bcea84b2 100644 --- a/PBS/pokemonforms.txt +++ b/PBS/pokemonforms.txt @@ -9,6 +9,7 @@ HiddenAbility = THICKFAT Height = 2.4 Weight = 155.5 Pokedex = In order to support its flower, which has grown larger due to Mega Evolution, its back and legs have become stronger. +Generation = 6 #------------------------------- [CHARIZARD,1] FormName = Mega Charizard X @@ -21,6 +22,7 @@ HiddenAbility = TOUGHCLAWS Weight = 110.5 Color = Black Pokedex = The overwhelming power that fills its entire body causes it to turn black and create intense blue flames. +Generation = 6 #------------------------------- [CHARIZARD,2] FormName = Mega Charizard Y @@ -30,6 +32,7 @@ Abilities = DROUGHT HiddenAbility = DROUGHT Weight = 100.5 Pokedex = Its bond with its Trainer is the source of its power. It boasts speed and maneuverability greater than that of a jet fighter. +Generation = 6 #------------------------------- [BLASTOISE,1] FormName = Mega Blastoise @@ -39,6 +42,7 @@ Abilities = MEGALAUNCHER HiddenAbility = MEGALAUNCHER Weight = 101.1 Pokedex = The cannon on its back is as powerful as a tank gun. Its tough legs and back enable it to withstand the recoil from firing the cannon. +Generation = 6 #------------------------------- [BEEDRILL,1] FormName = Mega Beedrill @@ -49,6 +53,7 @@ HiddenAbility = ADAPTABILITY Height = 1.4 Weight = 40.5 Pokedex = Its legs have become poison stingers. It stabs its prey repeatedly with the stingers on its limbs, dealing the final blow with the stinger on its rear. +Generation = 6 #------------------------------- [PIDGEOT,1] FormName = Mega Pidgeot @@ -59,6 +64,7 @@ HiddenAbility = NOGUARD Height = 2.2 Weight = 50.5 Pokedex = With its muscular strength now greatly increased, it can fly continuously for two weeks without resting. +Generation = 6 #------------------------------- [RATTATA,1] FormName = Alolan @@ -71,6 +77,7 @@ EggMoves = COUNTER,FINALGAMBIT,FURYSWIPES,MEFIRST,REVENGE,REVERSAL,SNATCH,STOCKP Weight = 3.8 Color = Black Pokedex = With its incisors, it gnaws through doors and infiltrates people’s homes. Then, with a twitch of its whiskers, it steals whatever food it finds. +Generation = 7 WildItemUncommon = PECHABERRY Evolutions = RATICATE,LevelNight,20 #------------------------------- @@ -85,6 +92,7 @@ TutorMoves = ATTRACT,BLIZZARD,BULKUP,CONFIDE,COVET,DARKPULSE,DOUBLETEAM,EMBARGO, Weight = 25.5 Color = Black Pokedex = It forms a group of Rattata, which it assumes command of. Each group has its own territory, and disputes over food happen often. +Generation = 7 WildItemUncommon = PECHABERRY #------------------------------- [RAICHU,1] @@ -100,6 +108,7 @@ Height = 0.7 Weight = 21.0 Color = Brown Pokedex = It uses psychokinesis to control electricity. It hops aboard its own tail, using psychic power to lift the tail and move about while riding it. +Generation = 7 #------------------------------- [SANDSHREW,1] FormName = Alolan @@ -115,6 +124,7 @@ Height = 0.7 Weight = 40.0 Color = White Pokedex = The skin on its back is as hard as steel. Predators go after its soft belly, so it clings to the ground desperately. +Generation = 7 Evolutions = SANDSLASH,Item,ICESTONE #------------------------------- [SANDSLASH,1] @@ -130,6 +140,7 @@ Height = 1.2 Weight = 55.0 Color = Blue Pokedex = It runs across snow-covered plains at high speeds. It developed thick, sharp claws to plow through the snow. +Generation = 7 #------------------------------- [VULPIX,1] FormName = Alolan @@ -141,6 +152,7 @@ TutorMoves = AQUATAIL,ATTRACT,AURORAVEIL,BLIZZARD,CONFIDE,COVET,DARKPULSE,DOUBLE EggMoves = AGILITY,CHARM,DISABLE,ENCORE,EXTRASENSORY,FLAIL,FREEZEDRY,HOWL,HYPNOSIS,MOONBLAST,POWERSWAP,SECRETPOWER,SPITE,TAILSLAP Color = White Pokedex = In hot weather, this Pokémon makes ice shards with its six tails and sprays them around to cool itself off. +Generation = 7 WildItemUncommon = SNOWBALL Evolutions = NINETALES,Item,ICESTONE #------------------------------- @@ -156,6 +168,7 @@ Moves = 0,DAZZLINGGLEAM,1,DAZZLINGGLEAM,1,IMPRISON,1,NASTYPLOT,1,ICEBEAM,1,ICESH TutorMoves = AQUATAIL,ATTRACT,AURORAVEIL,BLIZZARD,CALMMIND,CONFIDE,COVET,DARKPULSE,DAZZLINGGLEAM,DOUBLETEAM,DREAMEATER,FACADE,FOULPLAY,FROSTBREATH,FRUSTRATION,GIGAIMPACT,HAIL,HEALBELL,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,IRONTAIL,LASERFOCUS,PAINSPLIT,PAYBACK,PROTECT,PSYCHUP,PSYSHOCK,RAINDANCE,REST,RETURN,ROAR,ROLEPLAY,ROUND,SAFEGUARD,SLEEPTALK,SNORE,SPITE,SUBSTITUTE,SWAGGER,TOXIC,WONDERROOM,ZENHEADBUTT Color = Blue Pokedex = It lives on mountains perpetually covered in snow and is revered as a deity incarnate. It appears draped in a blizzard. +Generation = 7 WildItemUncommon = SNOWBALL #------------------------------- [DIGLETT,1] @@ -169,6 +182,7 @@ TutorMoves = AERIALACE,ATTRACT,BULLDOZE,CONFIDE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE EggMoves = ANCIENTPOWER,BEATUP,ENDURE,FEINTATTACK,FINALGAMBIT,HEADBUTT,MEMENTO,METALSOUND,PURSUIT,REVERSAL,THRASH Weight = 1.0 Pokedex = Its head sports an altered form of whiskers made of metal. When in communication with its comrades, its whiskers wobble to and fro. +Generation = 7 #------------------------------- [DUGTRIO,1] FormName = Alolan @@ -181,6 +195,7 @@ Moves = 0,SANDTOMB,1,SANDTOMB,1,ROTOTILLER,1,NIGHTSLASH,1,TRIATTACK,1,SANDATTACK TutorMoves = AERIALACE,ATTRACT,BULLDOZE,CONFIDE,DOUBLETEAM,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,FACADE,FLASHCANNON,FRUSTRATION,GIGAIMPACT,HIDDENPOWER,HYPERBEAM,IRONDEFENSE,IRONHEAD,PROTECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SANDSTORM,SHADOWCLAW,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SWAGGER,THIEF,TOXIC,WORKUP Weight = 66.6 Pokedex = Its shining gold hair provides it with protection. It's reputed that keeping any of its fallen hairs will bring bad luck. +Generation = 7 #------------------------------- [MEOWTH,1] FormName = Alolan @@ -192,6 +207,7 @@ TutorMoves = AERIALACE,ATTRACT,CONFIDE,COVET,DARKPULSE,DOUBLETEAM,DREAMEATER,ECH EggMoves = AMNESIA,ASSIST,CHARM,COVET,FLAIL,FLATTER,FOULPLAY,HYPNOSIS,PARTINGSHOT,PUNISHMENT,SNATCH,SPITE Color = Blue Pokedex = It's impulsive, selfish, and fickle. It's very popular with some Trainers who like giving it the attention it needs. +Generation = 7 Evolutions = PERSIAN,Happiness, #------------------------------- [PERSIAN,1] @@ -206,6 +222,7 @@ Height = 1.1 Weight = 33.0 Color = Blue Pokedex = Its round face is a symbol of wealth. Persian that have bigger, plumper faces are considered more beautiful. +Generation = 7 #------------------------------- [ALAKAZAM,1] FormName = Mega Alakazam @@ -215,6 +232,7 @@ Abilities = TRACE HiddenAbility = TRACE Height = 1.2 Pokedex = Having traded away its muscles, Alakazam's true power has been unleashed. With its psychic powers, it can foresee all things. +Generation = 6 #------------------------------- [GEODUDE,1] FormName = Alolan @@ -228,6 +246,7 @@ EggMoves = AUTOTOMIZE,BLOCK,COUNTER,CURSE,ENDURE,FLAIL,MAGNETRISE,ROCKCLIMB,SCRE Weight = 20.3 Color = Gray Pokedex = Geodude compete against each other with headbutts. The iron sand on their heads will stick to whichever one has stronger magnetism. +Generation = 7 WildItemUncommon = CELLBATTERY #------------------------------- [GRAVELER,1] @@ -241,6 +260,7 @@ TutorMoves = ALLYSWITCH,ATTRACT,BLOCK,BRICKBREAK,BRUTALSWING,BULLDOZE,CHARGEBEAM Weight = 110.0 Color = Gray Pokedex = They eat rocks and often get into a scrap over them. The shock of Graveler smashing together causes a flash of light and a booming noise. +Generation = 7 WildItemUncommon = CELLBATTERY #------------------------------- [GOLEM,1] @@ -255,6 +275,7 @@ Height = 1.7 Weight = 316.0 Color = Gray Pokedex = It fires rocks charged with electricity. Even if the rock isn't fired that accurately, just grazing an opponent will cause numbness and fainting. +Generation = 7 WildItemCommon = CELLBATTERY #------------------------------- [SLOWBRO,1] @@ -267,6 +288,7 @@ Height = 2.0 Weight = 120.0 Shape = HeadArms Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too. +Generation = 6 #------------------------------- [GRIMER,1] FormName = Alolan @@ -281,6 +303,7 @@ Height = 0.7 Weight = 42.0 Color = Green Pokedex = A Grimer, which had been brought in to solve a problem with garbage, developed over time into this form. +Generation = 7 #------------------------------- [MUK,1] FormName = Alolan @@ -294,6 +317,7 @@ Height = 1.0 Weight = 52.0 Color = Green Pokedex = The garbage it eats causes continuous chemical changes in its body, which produce its exceedingly vivid coloration. +Generation = 7 #------------------------------- [GENGAR,1] FormName = Mega Gengar @@ -303,6 +327,7 @@ Abilities = SHADOWTAG HiddenAbility = SHADOWTAG Height = 1.4 Pokedex = The energy of Mega Evolution awakened it. It sinks into another dimension, where it keeps a patient watch for its chance to attack. +Generation = 6 #------------------------------- [EXEGGUTOR,1] FormName = Alolan @@ -315,8 +340,10 @@ TutorMoves = ATTRACT,BLOCK,BRICKBREAK,BRUTALSWING,BULLDOZE,CONFIDE,DOUBLETEAM,DR Height = 10.9 Weight = 415.6 Pokedex = As it grew taller and taller, it outgrew its reliance on psychic powers, while within it awakened the power of the sleeping dragon. +Generation = 7 #------------------------------- [CUBONE,1] +Generation = 7 Evolutions = MAROWAK,LevelNight,28 #------------------------------- [MAROWAK,1] @@ -329,7 +356,8 @@ Moves = 1,GROWL,1,TAILWHIP,1,BONECLUB,1,FLAMEWHEEL,3,TAILWHIP,7,BONECLUB,11,FLAM TutorMoves = AERIALACE,ALLYSWITCH,ATTRACT,BLIZZARD,BRICKBREAK,BRUTALSWING,BULLDOZE,CONFIDE,DARKPULSE,DOUBLETEAM,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENDEAVOR,FACADE,FALSESWIPE,FIREBLAST,FIREPUNCH,FLAMECHARGE,FLAMETHROWER,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,HEATWAVE,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,IRONDEFENSE,IRONHEAD,IRONTAIL,KNOCKOFF,LASERFOCUS,LOWKICK,OUTRAGE,PAINSPLIT,PROTECT,RAINDANCE,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROUND,SANDSTORM,SHADOWBALL,SLEEPTALK,SMACKDOWN,SNORE,SPITE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SUNNYDAY,SWAGGER,SWORDSDANCE,THIEF,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERPUNCH,TOXIC,UPROAR,WILLOWISP Weight = 34.0 Color = Purple -Pokedex = Its custom is to mourn its lost companions. Mounds of dirt by the side of the road mark the graves of the Marowak +Pokedex = Its custom is to mourn its lost companions. Mounds of dirt by the side of the road mark the graves of the Marowak. +Generation = 7 #------------------------------- [KANGASKHAN,1] FormName = Mega Kangaskhan @@ -339,6 +367,7 @@ Abilities = PARENTALBOND HiddenAbility = PARENTALBOND Weight = 100.0 Pokedex = The explosive energy the child is bathed in causes temporary growth. The mother is beside herself with worry about it. +Generation = 6 #------------------------------- [PINSIR,1] FormName = Mega Pinsir @@ -352,6 +381,7 @@ Height = 1.7 Weight = 59.0 Shape = MultiWinged Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers. +Generation = 6 #------------------------------- [GYARADOS,1] FormName = Mega Gyarados @@ -363,6 +393,7 @@ Abilities = MOLDBREAKER HiddenAbility = MOLDBREAKER Weight = 305.0 Pokedex = It zooms out of the water at Mach speeds. Even large ships caught in its path are split cleanly in two! +Generation = 6 #------------------------------- [AERODACTYL,1] FormName = Mega Aerodactyl @@ -373,6 +404,7 @@ HiddenAbility = TOUGHCLAWS Height = 2.1 Weight = 79.0 Pokedex = When it Mega Evolves, it becomes more vicious than ever before. Some say that's because its excess of power is causing it pain. +Generation = 6 #------------------------------- [MEWTWO,1] FormName = Mega Mewtwo X @@ -385,6 +417,7 @@ HiddenAbility = STEADFAST Height = 2.3 Weight = 127.0 Pokedex = Psychic power has augmented its muscles. It has a grip strength of one ton and can sprint a hundred meters in two seconds flat! +Generation = 6 #------------------------------- [MEWTWO,2] FormName = Mega Mewtwo Y @@ -395,9 +428,11 @@ HiddenAbility = INSOMNIA Height = 1.5 Weight = 33.0 Pokedex = Despite its diminished size, its mental power has grown phenomenally. With a mere thought, it can smash a skyscraper to smithereens. +Generation = 6 #------------------------------- [PICHU,1] FormName = Spiky-Eared +Generation = 4 BattlerEnemyX = 3 Evolutions = PIKACHU,None, #------------------------------- @@ -410,6 +445,7 @@ BaseStats = 90,95,105,45,165,110 Abilities = MOLDBREAKER HiddenAbility = MOLDBREAKER Pokedex = Massive amounts of energy intensely stimulated Ampharos's cells, apparently awakening its long-sleeping dragon's blood. +Generation = 6 #------------------------------- [UNOWN,1] FormName = B @@ -488,9 +524,11 @@ FormName = Z #------------------------------- [UNOWN,26] FormName = ? +Generation = 3 #------------------------------- [UNOWN,27] FormName = ! +Generation = 3 #------------------------------- [STEELIX,1] FormName = Mega Steelix @@ -500,6 +538,7 @@ Abilities = SANDFORCE HiddenAbility = SANDFORCE Height = 10.5 Weight = 740.0 +Generation = 6 #------------------------------- [SCIZOR,1] FormName = Mega Scizor @@ -510,6 +549,7 @@ HiddenAbility = TECHNICIAN Height = 2.0 Weight = 125.0 Pokedex = It's better at beating things than grasping them. When it battles for a long time, the weight of its pincers becomes too much to bear. +Generation = 6 #------------------------------- [HERACROSS,1] FormName = Mega Heracross @@ -520,6 +560,7 @@ HiddenAbility = SKILLLINK Height = 1.7 Weight = 62.5 Pokedex = A tremendous influx of energy builds it up, but when Mega Evolution ends, Heracross is bothered by terrible soreness in its muscles. +Generation = 6 #------------------------------- [HOUNDOOM,1] FormName = Mega Houndoom @@ -530,6 +571,7 @@ HiddenAbility = SOLARPOWER Height = 1.9 Weight = 49.5 Pokedex = Its red claws and the tips of its tail are melting from high internal temperatures that are painful to Houndoom itself. +Generation = 6 #------------------------------- [TYRANITAR,1] FormName = Mega Tyranitar @@ -539,6 +581,7 @@ HiddenAbility = SANDSTREAM Height = 2.5 Weight = 255.0 Pokedex = Due to the colossal power poured into it, this Pokémon's back split right open. Its destructive instincts are the only thing keeping it moving. +Generation = 6 #------------------------------- [SCEPTILE,1] FormName = Mega Sceptile @@ -550,12 +593,14 @@ Abilities = LIGHTNINGROD HiddenAbility = LIGHTNINGROD Height = 1.9 Weight = 55.2 +Generation = 6 #------------------------------- [BLAZIKEN,1] FormName = Mega Blaziken MegaStone = BLAZIKENITE BaseStats = 80,160,80,100,130,80 Abilities = SPEEDBOOST +Generation = 6 #------------------------------- [SWAMPERT,1] FormName = Mega Swampert @@ -565,6 +610,7 @@ Abilities = SWIFTSWIM HiddenAbility = SWIFTSWIM Height = 1.9 Weight = 102.0 +Generation = 6 #------------------------------- [GARDEVOIR,1] FormName = Mega Gardevoir @@ -572,6 +618,7 @@ MegaStone = GARDEVOIRITE BaseStats = 68,85,65,100,165,135 Abilities = PIXILATE HiddenAbility = PIXILATE +Generation = 6 #------------------------------- [SABLEYE,1] FormName = Mega Sableye @@ -581,6 +628,7 @@ Abilities = MAGICBOUNCE HiddenAbility = MAGICBOUNCE Weight = 161.0 Pokedex = Supporting a giant heavy jewel, it can't change direction very nimbly and is vulnerable to attack from behind. +Generation = 6 #------------------------------- [MAWILE,1] FormName = Mega Mawile @@ -591,6 +639,7 @@ HiddenAbility = HUGEPOWER Height = 1.0 Weight = 23.5 Pokedex = Its two sets of jaws thrash about violently as if they each had a will of their own. One gnash from them can turn a boulder to dust. +Generation = 6 #------------------------------- [AGGRON,1] FormName = Mega Aggron @@ -601,12 +650,14 @@ Abilities = FILTER HiddenAbility = FILTER Height = 2.2 Weight = 395.0 +Generation = 6 #------------------------------- [MEDICHAM,1] FormName = Mega Medicham MegaStone = MEDICHAMITE BaseStats = 60,100,85,100,80,85 HiddenAbility = PUREPOWER +Generation = 6 #------------------------------- [MANECTRIC,1] FormName = Mega Manectric @@ -617,6 +668,7 @@ HiddenAbility = INTIMIDATE Height = 1.8 Weight = 44.0 Pokedex = Too much electricity has built up in its body, irritating Manectric. Its explosive speed is equal to that of a lightning bolt. +Generation = 6 #------------------------------- [SHARPEDO,1] FormName = Mega Sharpedo @@ -627,6 +679,7 @@ HiddenAbility = STRONGJAW Height = 2.5 Weight = 130.3 Pokedex = The yellow patterns it bears are old scars. The energy from Mega Evolution runs through them, causing it sharp pain and suffering. +Generation = 6 #------------------------------- [CAMERUPT,1] FormName = Mega Camerupt @@ -636,6 +689,7 @@ Abilities = SHEERFORCE HiddenAbility = SHEERFORCE Height = 2.5 Weight = 320.5 +Generation = 6 #------------------------------- [ALTARIA,1] FormName = Mega Altaria @@ -646,6 +700,7 @@ BaseStats = 75,110,110,80,110,105 Abilities = PIXILATE HiddenAbility = PIXILATE Height = 1.5 +Generation = 6 #------------------------------- [CASTFORM,1] FormName = Sunny Form @@ -681,6 +736,7 @@ HiddenAbility = PRANKSTER Height = 1.2 Weight = 13.0 Pokedex = Extraordinary energy amplifies its cursing power to such an extent that it can't help but curse its own Trainer. +Generation = 6 #------------------------------- [ABSOL,1] FormName = Mega Absol @@ -690,6 +746,7 @@ Abilities = MAGICBOUNCE HiddenAbility = MAGICBOUNCE Weight = 49.0 Pokedex = When this Pokémon whips the winglike fur on its back as though beating its wings, it sends an intimidating aura flying at its opponents. +Generation = 6 #------------------------------- [GLALIE,1] FormName = Mega Glalie @@ -700,6 +757,7 @@ HiddenAbility = REFRIGERATE Height = 2.1 Weight = 350.2 Pokedex = It envelops prey in its mouth, freezing them instantly. But its jaw is dislocated, so it's unable to eat them. +Generation = 6 #------------------------------- [SALAMENCE,1] FormName = Mega Salamence @@ -710,6 +768,7 @@ HiddenAbility = AERILATE Height = 1.8 Weight = 112.6 Pokedex = It puts its forelegs inside its shell to streamline itself for flight. Salamence flies at high speeds over all kinds of topographical features. +Generation = 6 #------------------------------- [METAGROSS,1] FormName = Mega Metagross @@ -720,6 +779,7 @@ HiddenAbility = TOUGHCLAWS Height = 2.5 Weight = 942.9 Pokedex = Its intellect surpasses its previous level, resulting in battles so cruel, they'll make you want to cover your eyes. +Generation = 6 #------------------------------- [LATIAS,1] FormName = Mega Latias @@ -728,6 +788,7 @@ BaseStats = 80,100,120,110,140,150 Height = 1.8 Weight = 52.0 Color = Purple +Generation = 6 #------------------------------- [LATIOS,1] FormName = Mega Latios @@ -736,6 +797,7 @@ BaseStats = 80,130,100,110,160,120 Height = 2.3 Weight = 70.0 Color = Purple +Generation = 6 #------------------------------- [KYOGRE,1] FormName = Primal Kyogre @@ -743,6 +805,7 @@ BaseStats = 100,150,90,90,180,160 Abilities = PRIMORDIALSEA Height = 9.8 Weight = 430.0 +Generation = 6 #------------------------------- [GROUDON,1] FormName = Primal Groudon @@ -752,6 +815,7 @@ BaseStats = 100,180,160,90,150,90 Abilities = DESOLATELAND Height = 5.0 Weight = 999.7 +Generation = 6 #------------------------------- [RAYQUAZA,1] FormName = Mega Rayquaza @@ -762,6 +826,7 @@ Abilities = DELTASTREAM HiddenAbility = DELTASTREAM Height = 10.8 Weight = 392.0 +Generation = 6 #------------------------------- [DEOXYS,1] FormName = Attack Forme @@ -850,6 +915,7 @@ HiddenAbility = SCRAPPY Height = 1.3 Weight = 28.3 Pokedex = It swings its ears like whips and strikes its enemies with them. It has an intensely combative disposition. +Generation = 6 #------------------------------- [GARCHOMP,1] FormName = Mega Garchomp @@ -858,6 +924,7 @@ BaseStats = 108,170,115,92,120,95 Abilities = SANDFORCE HiddenAbility = SANDFORCE Pokedex = Its vaunted wings become scythes, sending it mad with rage. It swings its scythes wildly and slices the ground to pieces. +Generation = 6 #------------------------------- [LUCARIO,1] FormName = Mega Lucario @@ -868,6 +935,7 @@ HiddenAbility = ADAPTABILITY Height = 1.3 Weight = 57.5 Pokedex = It readies itself to face its enemies by focusing its mental energies. Its fighting style can be summed up in a single word: heartless. +Generation = 6 #------------------------------- [ABOMASNOW,1] FormName = Mega Abomasnow @@ -876,6 +944,7 @@ BaseStats = 90,132,105,30,132,105 HiddenAbility = SNOWWARNING Height = 2.7 Weight = 185.0 +Generation = 6 #------------------------------- [GALLADE,1] FormName = Mega Gallade @@ -884,6 +953,7 @@ BaseStats = 68,165,95,110,65,115 Abilities = INNERFOCUS HiddenAbility = INNERFOCUS Weight = 56.4 +Generation = 6 #------------------------------- [ROTOM,1] FormName = Heat Rotom @@ -1034,6 +1104,7 @@ Type1 = DARK [ARCEUS,18] FormName = Fairy Type Type1 = FAIRY +Generation = 6 #------------------------------- [AUDINO,1] FormName = Mega Audino @@ -1046,6 +1117,7 @@ HiddenAbility = HEALER Height = 1.5 Weight = 32.0 Color = White +Generation = 6 #------------------------------- [BASCULIN,1] FormName = Blue-Striped @@ -1206,6 +1278,7 @@ FormName = Ash-Greninja BaseStats = 72,145,67,132,153,71 Abilities = BATTLEBOND HiddenAbility = BATTLEBOND +Generation = 7 #------------------------------- [VIVILLON,1] FormName = Continental Pattern @@ -1404,6 +1477,7 @@ Weight = 33.5 Color = Black Shape = Quadruped Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them. +Generation = 7 #------------------------------- [ZYGARDE,2] FormName = Complete Forme @@ -1414,6 +1488,7 @@ Weight = 610.0 Color = Black Shape = BipedalTail Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything. +Generation = 7 #------------------------------- [ZYGARDE,3] PokedexForm = 2