diff --git a/Data/Scripts/011_Data/001_PBS data/010_Species.rb b/Data/Scripts/011_Data/001_PBS data/010_Species.rb index d03be8f1c..0404b09eb 100644 --- a/Data/Scripts/011_Data/001_PBS data/010_Species.rb +++ b/Data/Scripts/011_Data/001_PBS data/010_Species.rb @@ -97,7 +97,7 @@ module GameData "Height" => [0, "f"], "Weight" => [0, "f"], "Color" => [0, "e", :BodyColor], - "Shape" => [0, "u"], + "Shape" => [0, "y", :BodyShape], "Habitat" => [0, "e", :Habitat], "Generation" => [0, "i"], "BattlerPlayerX" => [0, "i"], @@ -160,7 +160,7 @@ module GameData @height = hash[:height] || 1 @weight = hash[:weight] || 1 @color = hash[:color] || :Red - @shape = hash[:shape] || 1 + @shape = hash[:shape] || :Body @habitat = hash[:habitat] || :None @generation = hash[:generation] || 0 @mega_stone = hash[:mega_stone] diff --git a/Data/Scripts/011_Data/002_Hardcoded data/001_PBExperience.rb b/Data/Scripts/011_Data/002_Hardcoded data/001_PBExperience.rb index a1b049c8a..7bb03de01 100644 --- a/Data/Scripts/011_Data/002_Hardcoded data/001_PBExperience.rb +++ b/Data/Scripts/011_Data/002_Hardcoded data/001_PBExperience.rb @@ -1,10 +1,10 @@ module PBGrowthRates - MediumFast = Medium = 0 - Erratic = 1 - Fluctuating = 2 - MediumSlow = Parabolic = 3 - Fast = 4 - Slow = 5 + Medium = 0 # MediumFast + Erratic = 1 + Fluctuating = 2 + Parabolic = 3 # MediumSlow + Fast = 4 + Slow = 5 def self.maxValue; return 5; end end diff --git a/Data/Scripts/011_Data/002_Hardcoded data/017_BodyShape.rb b/Data/Scripts/011_Data/002_Hardcoded data/017_BodyShape.rb new file mode 100644 index 000000000..7443c3817 --- /dev/null +++ b/Data/Scripts/011_Data/002_Hardcoded data/017_BodyShape.rb @@ -0,0 +1,115 @@ +# NOTE: The id_number is only used to determine the order that body shapes are +# listed in the Pokédex search screen. Number 0 (:None) is ignored; they +# start with shape 1. +# "Graphics/Pictures/Pokedex/icon_shapes.png" contains icons for these +# shapes. +module GameData + class BodyShape + attr_reader :id + attr_reader :id_number + attr_reader :real_name + + DATA = {} + + extend ClassMethods + include InstanceMethods + + def self.load; end + def self.save; end + + def initialize(hash) + @id = hash[:id] + @id_number = hash[:id_number] || -1 + @real_name = hash[:name] || "Unnamed" + end + + # @return [String] the translated name of this body shape + def name + return _INTL(@real_name) + end + end +end + +GameData::BodyShape.register({ + :id => :Head, + :id_number => 1, + :name => _INTL("Head") +}) + +GameData::BodyShape.register({ + :id => :Serpentine, + :id_number => 2, + :name => _INTL("Serpentine") +}) + +GameData::BodyShape.register({ + :id => :Finned, + :id_number => 3, + :name => _INTL("Finned") +}) + +GameData::BodyShape.register({ + :id => :HeadArms, + :id_number => 4, + :name => _INTL("Head and arms") +}) + +GameData::BodyShape.register({ + :id => :HeadBase, + :id_number => 5, + :name => _INTL("Head and base") +}) + +GameData::BodyShape.register({ + :id => :BipedalTail, + :id_number => 6, + :name => _INTL("Bipedal with tail") +}) + +GameData::BodyShape.register({ + :id => :HeadLegs, + :id_number => 7, + :name => _INTL("Head and legs") +}) + +GameData::BodyShape.register({ + :id => :Quadruped, + :id_number => 8, + :name => _INTL("Quadruped") +}) + +GameData::BodyShape.register({ + :id => :Winged, + :id_number => 9, + :name => _INTL("Winged") +}) + +GameData::BodyShape.register({ + :id => :Multiped, + :id_number => 10, + :name => _INTL("Multiped") +}) + +GameData::BodyShape.register({ + :id => :MultiBody, + :id_number => 11, + :name => _INTL("Multi Body") +}) + +GameData::BodyShape.register({ + :id => :Bipedal, + :id_number => 12, + :name => _INTL("Bipedal") +}) + +GameData::BodyShape.register({ + :id => :MultiWinged, + :id_number => 13, + :name => _INTL("Multi Winged") +}) + +GameData::BodyShape.register({ + :id => :Insectoid, + :id_number => 14, + :name => _INTL("Insectoid") +}) diff --git a/Data/Scripts/017_UI/003_PScreen_PokedexMain.rb b/Data/Scripts/017_UI/003_PScreen_PokedexMain.rb index 380e21c0d..069591ed2 100644 --- a/Data/Scripts/017_UI/003_PScreen_PokedexMain.rb +++ b/Data/Scripts/017_UI/003_PScreen_PokedexMain.rb @@ -501,9 +501,10 @@ class PokemonPokedex_Scene overlay.blt(344,214,@hwbitmap.bitmap,Rect.new(0,(hwoffset) ? 44 : 0,32,44)) overlay.blt(344,266,@hwbitmap.bitmap,Rect.new(32,(hwoffset) ? 44 : 0,32,44)) # Draw shape icon - if params[9]>=0 - shaperect = Rect.new(0,params[9]*60,60,60) - overlay.blt(424,218,@shapebitmap.bitmap,shaperect) + if params[9] >= 0 + shape_number = @shapeCommands[params[9]].id_number + shaperect = Rect.new(0, (shape_number - 1) * 60, 60, 60) + overlay.blt(424, 218, @shapebitmap.bitmap, shaperect) end # Draw all text pbDrawTextPositions(overlay,textpos) @@ -607,9 +608,9 @@ class PokemonPokedex_Scene textpos.push([cmds[sel[0]].name,362,58,2,base,shadow,1]) end when 6 # Shape icon - if sel[0]>=0 - shaperect = Rect.new(0,@shapeCommands[sel[0]]*60,60,60) - overlay.blt(332,50,@shapebitmap.bitmap,shaperect) + if sel[0] >= 0 + shaperect = Rect.new(0, (@shapeCommands[sel[0]].id_number - 1) * 60, 60, 60) + overlay.blt(332, 50, @shapebitmap.bitmap, shaperect) end else if sel[0]<0 @@ -678,10 +679,10 @@ class PokemonPokedex_Scene textpos.push(["----", xstart+halfwidth+(cols-1)*xgap,ystart+6+(cmds.length/cols).floor*ygap,2,base,shadow,1]) when 6 # Shape - shaperect = Rect.new(0,0,60,60) + shaperect = Rect.new(0, 0, 60, 60) for i in 0...cmds.length - shaperect.y = i*60 - overlay.blt(xstart+4+(i%cols)*xgap,ystart+4+(i/cols).floor*ygap,@shapebitmap.bitmap,shaperect) + shaperect.y = (@shapeCommands[i].id_number - 1) * 60 + overlay.blt(xstart + 4 + (i % cols) * xgap, ystart + 4 + (i / cols).floor * ygap, @shapebitmap.bitmap, shaperect) end end # Draw all text @@ -760,11 +761,10 @@ class PokemonPokedex_Scene end # Filter by shape if params[9]>=0 - sshape = @shapeCommands[params[9]]+1 + sshape = @shapeCommands[params[9]].id dexlist = dexlist.find_all { |item| next false if !$Trainer.seen?(item[0]) - shape = item[9] - next shape==sshape + next item[9] == sshape } end # Remove all unseen species from the results @@ -1025,7 +1025,7 @@ class PokemonPokedex_Scene @colorCommands = [] GameData::BodyColor.each { |c| @colorCommands.push(c) } @shapeCommands = [] - for i in 0...14; @shapeCommands.push(i); end + GameData::BodyShape.each { |c| @shapeCommands.push(c) if c.id != :None } @sprites["searchbg"].visible = true @sprites["overlay"].visible = true @sprites["searchcursor"].visible = true diff --git a/Data/Scripts/021_Debug/004_Editor_Screens.rb b/Data/Scripts/021_Debug/004_Editor_Screens.rb index adbe87d0c..133537e91 100644 --- a/Data/Scripts/021_Debug/004_Editor_Screens.rb +++ b/Data/Scripts/021_Debug/004_Editor_Screens.rb @@ -980,7 +980,7 @@ def pbPokemonEditor [_INTL("Height"), NonzeroLimitProperty.new(999), _INTL("Height of the Pokémon in 0.1 metres (e.g. 42 = 4.2m).")], [_INTL("Weight"), NonzeroLimitProperty.new(9999), _INTL("Weight of the Pokémon in 0.1 kilograms (e.g. 42 = 4.2kg).")], [_INTL("Color"), GameDataProperty.new(:BodyColor), _INTL("Pokémon's body color.")], - [_INTL("Shape"), LimitProperty.new(14), _INTL("Body shape of this species (0-14).")], + [_INTL("Shape"), GameDataProperty.new(:BodyShape), _INTL("Body shape of this species.")], [_INTL("Habitat"), GameDataProperty.new(:Habitat), _INTL("The habitat of this species.")], [_INTL("Generation"), LimitProperty.new(99999), _INTL("The number of the generation the Pokémon debuted in.")], [_INTL("BattlerPlayerX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], diff --git a/Data/Scripts/021_Debug/007_Editor_DataTypes.rb b/Data/Scripts/021_Debug/007_Editor_DataTypes.rb index f40cca83c..6e2a99236 100644 --- a/Data/Scripts/021_Debug/007_Editor_DataTypes.rb +++ b/Data/Scripts/021_Debug/007_Editor_DataTypes.rb @@ -252,7 +252,7 @@ class GameDataProperty end i += 1 end - return pbChooseList(commands, oldsetting, nil, -1) + return pbChooseList(commands, oldsetting, oldsetting, -1) end def defaultValue @@ -1165,19 +1165,20 @@ class EvolutionsProperty for i in 0...oldsetting.length realcmds.push([oldsetting[i][0],oldsetting[i][1],oldsetting[i][2],i]) end - refreshlist = true; oldsel = -1 + refreshlist = true + oldsel = -1 cmd = [0,0] loop do if refreshlist realcmds.sort! { |a,b| a[3]<=>b[3] } commands = [] for i in 0...realcmds.length - if realcmds[i][0]<0 + if realcmds[i][3]<0 commands.push(_INTL("[ADD EVOLUTION]")) else - level = realcmds[i][1] - param_type = PBEvolution.getFunction(realcmds[i][0], "parameterType") - has_param = !PBEvolution.hasFunction?(realcmds[i][0], "parameterType") || param_type != nil + level = realcmds[i][2] + param_type = PBEvolution.getFunction(realcmds[i][1], "parameterType") + has_param = !PBEvolution.hasFunction?(realcmds[i][1], "parameterType") || param_type != nil if has_param if param_type && !GameData.const_defined?(param_type.to_sym) level = getConstantName(param_type, level) @@ -1186,16 +1187,17 @@ class EvolutionsProperty end level = "???" if !level || level.empty? commands.push(_INTL("{1}: {2}, {3}", - GameData::Species.get(realcmds[i][2]).name, @methods[realcmds[i][0]], level.to_s)) + GameData::Species.get(realcmds[i][0]).name, @methods[realcmds[i][1]], level.to_s)) else commands.push(_INTL("{1}: {2}", - GameData::Species.get(realcmds[i][2]).name, @methods[realcmds[i][0]])) + GameData::Species.get(realcmds[i][0]).name, @methods[realcmds[i][1]])) end end cmd[1] = i if oldsel>=0 && realcmds[i][3]==oldsel end end - refreshlist = false; oldsel = -1 + refreshlist = false + oldsel = -1 cmd = pbCommands3(cmdwin,commands,-1,cmd[1],true) if cmd[0]==1 # Swap evolution up if cmd[1]>0 && cmd[1]=0 entry = realcmds[cmd[1]] - if entry[0]==-1 # Add new evolution path + if entry[3]==-1 # Add new evolution path pbMessage(_INTL("Choose an evolved form, method and parameter.")) newspecies = pbChooseSpeciesList if newspecies @@ -1244,16 +1246,16 @@ class EvolutionsProperty (newparam.is_a?(Integer) && (newparam > 0 || (allow_zero && newparam == 0))) havemove = -1 for i in 0...realcmds.length - havemove = realcmds[i][3] if realcmds[i][0]==newmethod && - realcmds[i][1]==newparam && - realcmds[i][2]==newspecies + havemove = realcmds[i][3] if realcmds[i][0]==newspecies && + realcmds[i][1]==newmethod && + realcmds[i][2]==newparam end if havemove>=0 oldsel = havemove else maxid = -1 - for i in realcmds; maxid = [maxid,i[3]].max; end - realcmds.push([newmethod,newparam,newspecies,maxid+1]) + realcmds.each { |i| maxid = [maxid,i[3]].max } + realcmds.push([newspecies,newmethod,newparam,maxid+1]) oldsel = maxid+1 end refreshlist = true @@ -1261,34 +1263,15 @@ class EvolutionsProperty end end else # Edit evolution - cmd2 = pbMessage(_INTL("\\ts[]Do what with this evolution?"), + case pbMessage(_INTL("\\ts[]Do what with this evolution?"), [_INTL("Change species"),_INTL("Change method"), _INTL("Change parameter"),_INTL("Delete"),_INTL("Cancel")],5) - if cmd2==0 # Change species - newspecies = pbChooseSpeciesList(entry[2]) + when 0 # Change species + newspecies = pbChooseSpeciesList(entry[0]) if newspecies havemove = -1 for i in 0...realcmds.length - havemove = realcmds[i][3] if realcmds[i][0]==entry[0] && - realcmds[i][1]==entry[1] && - realcmds[i][2]==newspecies - end - if havemove>=0 - realcmds[cmd[1]] = nil - realcmds.compact! - oldsel = havemove - else - entry[2] = newspecies - oldsel = entry[3] - end - refreshlist = true - end - elsif cmd2==1 # Change method - newmethod = pbMessage(_INTL("Choose an evolution method."),@methods,-1,nil,entry[0]) - if newmethod>0 - havemove = -1 - for i in 0...realcmds.length - havemove = realcmds[i][3] if realcmds[i][0]==newmethod && + havemove = realcmds[i][3] if realcmds[i][0]==newspecies && realcmds[i][1]==entry[1] && realcmds[i][2]==entry[2] end @@ -1296,35 +1279,54 @@ class EvolutionsProperty realcmds[cmd[1]] = nil realcmds.compact! oldsel = havemove - elsif newmethod != entry[0] - entry[0] = newmethod - entry[1] = 0 + else + entry[0] = newspecies oldsel = entry[3] end refreshlist = true end - elsif cmd2==2 # Change parameter + when 1 # Change method + newmethod = pbMessage(_INTL("Choose an evolution method."),@methods,-1,nil,entry[1]) + if newmethod>0 + havemove = -1 + for i in 0...realcmds.length + havemove = realcmds[i][3] if realcmds[i][0]==entry[0] && + realcmds[i][1]==newmethod && + realcmds[i][2]==entry[2] + end + if havemove>=0 + realcmds[cmd[1]] = nil + realcmds.compact! + oldsel = havemove + elsif newmethod != entry[1] + entry[1] = newmethod + entry[2] = 0 + oldsel = entry[3] + end + refreshlist = true + end + when 2 # Change parameter newparam = -1 - param_type = PBEvolution.getFunction(entry[0], "parameterType") - has_param = !PBEvolution.hasFunction?(entry[0], "parameterType") || param_type != nil + param_type = PBEvolution.getFunction(entry[1], "parameterType") + has_param = !PBEvolution.hasFunction?(entry[1], "parameterType") || param_type != nil if has_param allow_zero = false case param_type when :Item - newparam = pbChooseItemList(entry[1]) + newparam = pbChooseItemList(entry[2]) when :Move - newparam = pbChooseMoveList(entry[1]) + newparam = pbChooseMoveList(entry[2]) when :Species - newparam = pbChooseSpeciesList(entry[1]) + newparam = pbChooseSpeciesList(entry[2]) when :Type - newparam = pbChooseTypeList(entry[1]) + newparam = pbChooseTypeList(entry[2]) when :Ability - newparam = pbChooseAbilityList(entry[1]) + newparam = pbChooseAbilityList(entry[2]) else allow_zero = true params = ChooseNumberParams.new params.setRange(0,65535) - params.setDefaultValue(entry[1]) + params.setDefaultValue(entry[2]) params.setCancelValue(-1) newparam = pbMessageChooseNumber(_INTL("Choose a parameter."),params) end @@ -1333,15 +1335,15 @@ class EvolutionsProperty havemove = -1 for i in 0...realcmds.length havemove = realcmds[i][3] if realcmds[i][0]==entry[0] && - realcmds[i][1]==newparam && - realcmds[i][2]==entry[2] + realcmds[i][1]==entry[1] && + realcmds[i][2]==newparam end if havemove>=0 realcmds[cmd[1]] = nil realcmds.compact! oldsel = havemove else - entry[1] = newparam + entry[2] = newparam oldsel = entry[3] end refreshlist = true @@ -1349,7 +1351,7 @@ class EvolutionsProperty else pbMessage(_INTL("This evolution method doesn't use a parameter.")) end - elsif cmd2==3 # Delete + when 3 # Delete realcmds[cmd[1]] = nil realcmds.compact! cmd[1] = [cmd[1],realcmds.length-1].min @@ -1385,15 +1387,15 @@ class EvolutionsProperty ret = "" for i in 0...value.length ret << "," if i>0 - param = value[i][1] - param_type = PBEvolution.getFunction(value[i][0], "parameterType") + param = value[i][2] + param_type = PBEvolution.getFunction(value[i][1], "parameterType") if param_type && !GameData.const_defined?(param_type.to_sym) param = getConstantName(param_type, param) else param = param.to_s end param = "" if !param - ret << sprintf("#{GameData::Species.get(value[i][2]).name},#{@methods[value[i][0]]},#{param}") + ret << sprintf("#{GameData::Species.get(value[i][0]).name},#{@methods[value[i][1]]},#{param}") end return ret end diff --git a/Data/Scripts/022_Compiler/003_Compiler_WritePBS.rb b/Data/Scripts/022_Compiler/003_Compiler_WritePBS.rb index 8f03e8587..9985cea9f 100644 --- a/Data/Scripts/022_Compiler/003_Compiler_WritePBS.rb +++ b/Data/Scripts/022_Compiler/003_Compiler_WritePBS.rb @@ -301,7 +301,7 @@ module Compiler f.write(sprintf("Height = %.1f\r\n", species.height / 10.0)) f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0)) f.write(sprintf("Color = %s\r\n", species.color)) - f.write(sprintf("Shape = %d\r\n", species.shape)) + f.write(sprintf("Shape = %s\r\n", GameData::BodyShape.get(species.shape).id)) f.write(sprintf("Habitat = %s\r\n", species.habitat)) if species.habitat != :None f.write(sprintf("Kind = %s\r\n", species.real_category)) f.write(sprintf("Pokedex = %s\r\n", species.real_pokedex_entry)) @@ -343,6 +343,7 @@ module Compiler f.write(sprintf("Incense = %s\r\n", species.incense)) if species.incense end } + pbSetWindowText(nil) Graphics.update end @@ -396,7 +397,9 @@ module Compiler f.write(sprintf("Height = %.1f\r\n", species.height / 10.0)) if species.height != base_species.height f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0)) if species.weight != base_species.weight f.write(sprintf("Color = %s\r\n", species.color)) if species.color != base_species.color - f.write(sprintf("Shape = %d\r\n", species.shape)) if species.shape != base_species.shape + if GameData::BodyShape.get(species.shape).id != GameData::BodyShape.get(base_species.shape).id + f.write(sprintf("Shape = %s\r\n", GameData::BodyShape.get(species.shape).id)) + end if species.habitat != :None && species.habitat != base_species.habitat f.write(sprintf("Habitat = %s\r\n", species.habitat)) end @@ -404,8 +407,8 @@ module Compiler f.write(sprintf("Pokedex = %s\r\n", species.real_pokedex_entry)) if species.real_pokedex_entry != base_species.real_pokedex_entry f.write(sprintf("Generation = %d\r\n", species.generation)) if species.generation != base_species.generation if species.wild_item_common != base_species.wild_item_common || - species.wild_item_uncommon != base_species.wild_item_uncommon || - species.wild_item_rare != base_species.wild_item_rare + species.wild_item_uncommon != base_species.wild_item_uncommon || + species.wild_item_rare != base_species.wild_item_rare f.write(sprintf("WildItemCommon = %s\r\n", species.wild_item_common)) if species.wild_item_common f.write(sprintf("WildItemUncommon = %s\r\n", species.wild_item_uncommon)) if species.wild_item_uncommon f.write(sprintf("WildItemRare = %s\r\n", species.wild_item_rare)) if species.wild_item_rare @@ -442,6 +445,7 @@ module Compiler end end } + pbSetWindowText(nil) Graphics.update end @@ -613,6 +617,7 @@ module Compiler end end } + pbSetWindowText(nil) Graphics.update end diff --git a/PBS/Gen 5/encounters.txt b/PBS/Gen 5/encounters.txt index b5040d168..ea0a991b6 100644 --- a/PBS/Gen 5/encounters.txt +++ b/PBS/Gen 5/encounters.txt @@ -1,471 +1,291 @@ # See the documentation on the wiki to learn how to edit this file. #------------------------------- -002 # Lappet Town -25,10,10 -Water - TENTACOOL,14,19 - MANTYKE,15,16 - REMORAID,14,16 - REMORAID,14,16 - REMORAID,14,16 +[002] # Lappet Town +Water,10 + 60,TENTACOOL,14,19 + 30,MANTYKE,15,16 + 10,REMORAID,14,16 OldRod - MAGIKARP,16,19 - MAGIKARP,16,19 + 100,MAGIKARP,16,19 GoodRod - BARBOACH,17,18 - SHELLDER,16,19 - KRABBY,15,16 + 60,BARBOACH,17,18 + 20,KRABBY,15,16 + 20,SHELLDER,16,19 SuperRod - CHINCHOU,17,19 - QWILFISH,16,19 - CORSOLA,15,18 - STARYU,15,17 - STARYU,15,17 + 40,CHINCHOU,17,19 + 40,QWILFISH,16,19 + 15,CORSOLA,15,18 + 5,STARYU,15,17 #------------------------------- -005 # Route 1 -25,10,10 -Land - RATTATA,11,14 - PIDGEY,11,14 - RATTATA,11,14 - PIDGEY,11,14 - RATTATA,11,14 - PIDGEY,11,14 - RATTATA,11,13 - PIDGEY,11,13 - RATTATA,11,13 - PIDGEY,11,13 - RATTATA,14 - PIDGEY,14 -LandNight - RATTATA,10,14 - HOOTHOOT,10,13 - RATTATA,10,14 - HOOTHOOT,10,13 - SPINARAK,8,12 - SPINARAK,8,12 - RATTATA,10,14 - HOOTHOOT,10,14 - RATTATA,10,14 - HOOTHOOT,10,14 - RATTATA,15 - HOOTHOOT,14 +[005] # Route 1 +Land,25 + 40,PIDGEY,11,14 + 40,RATTATA,11,14 + 9,PIDGEY,11,13 + 9,RATTATA,11,13 + 1,PIDGEY,14 + 1,RATTATA,14 +LandNight,25 + 39,RATTATA,10,14 + 30,HOOTHOOT,10,13 + 20,SPINARAK,8,12 + 9,HOOTHOOT,10,14 + 1,HOOTHOOT,14 + 1,RATTATA,15 #------------------------------- -021 # Route 2 -25,10,10 -Land - RATTATA,12,15 - RATTATA,12,15 - RATTATA,12,15 - POOCHYENA,11,15 - POOCHYENA,11,15 - POOCHYENA,11,15 - SHINX,10,12 - SHINX,10,12 - SHINX,10,11 - SHINX,10,11 - SHINX,10,11 - SHINX,10,11 -Water - MAGIKARP,7,10 - GOLDEEN,11,14 - STARYU,12,15 - STARYU,12,15 - STARYU,12,15 +[021] # Route 2 +Land,25 + 50,RATTATA,12,15 + 30,POOCHYENA,11,15 + 10,SHINX,10,12 + 10,SHINX,10,11 +Water,10 + 60,MAGIKARP,7,10 + 30,GOLDEEN,11,14 + 10,STARYU,12,15 OldRod - MAGIKARP,7,10 - MAGIKARP,9,15 + 70,MAGIKARP,7,10 + 30,MAGIKARP,9,15 GoodRod - GOLDEEN,12,14 - FINNEON,12,15 - MAGIKARP,12,17 + 60,GOLDEEN,12,14 + 20,FINNEON,12,15 + 20,MAGIKARP,12,17 SuperRod - GOLDEEN,12,14 - FINNEON,12,15 - STARYU,12,15 - STARYU,14,17 - STARYU,14,17 + 40,FINNEON,12,15 + 40,GOLDEEN,12,14 + 15,STARYU,12,15 + 5,STARYU,14,17 HeadbuttLow - PINECO,11,13 - LEDYBA,6,8 - PINECO,11,13 - SPINARAK,9,12 - LEDYBA,6,8 - SPINARAK,9,12 - SPINARAK,9,12 - MUNCHLAX,11,14 + 50,PINECO,11,13 + 30,LEDYBA,6,8 + 19,SPINARAK,9,12 + 1,MUNCHLAX,11,14 HeadbuttHigh - PINECO,11,13 - WURMPLE,6,8 - PINECO,11,13 - SPINARAK,9,12 - WURMPLE,6,8 - SPINARAK,9,12 - SPINARAK,9,12 - SPINARAK,9,12 + 50,PINECO,11,13 + 30,WURMPLE,6,8 + 20,SPINARAK,9,12 #------------------------------- -028 # Natural Park -25,10,10 -Land - CATERPIE,10 - WEEDLE,10 - PIDGEY,10,14 - PIDGEY,12,14 - SUNKERN,12 - SUNKERN,12 - METAPOD,10 - KAKUNA,10 - PIDGEY,10,14 - PIDGEY,12,14 - PIDGEY,10,14 - PIDGEY,12,14 -LandMorning - CATERPIE,10,12 - WEEDLE,10,12 - PIDGEY,10,14 - PIDGEY,10,14 - METAPOD,10 - KAKUNA,10 - METAPOD,10 - KAKUNA,10 - CATERPIE,10,12 - WEEDLE,10,12 - CATERPIE,10,12 - WEEDLE,10,12 -LandNight - HOOTHOOT,10,14 - SPINARAK,10,15 - HOOTHOOT,10,14 - SPINARAK,10,15 - PINECO,9,13 - PINECO,9,13 - NATU,12,14 - NATU,12,14 - DROWZEE,9,15 - DROWZEE,9,15 - DROWZEE,9,15 - DROWZEE,9,15 -BugContest - CATERPIE,7,18 - WEEDLE,7,18 - METAPOD,9,18 - KAKUNA,9,18 - PARAS,10,17 - VENONAT,10,16 - BUTTERFREE,12,15 - BEEDRILL,12,15 - SCYTHER,13,14 - PINSIR,13,14 - SCYTHER,13,14 - PINSIR,13,14 +[028] # Natural Park +Land,25 + 20,CATERPIE,10 + 20,SUNKERN,12 + 20,WEEDLE,10 + 15,PIDGEY,10,14 + 15,PIDGEY,12,14 + 5,KAKUNA,10 + 5,METAPOD,10 +LandNight,25 + 30,HOOTHOOT,10,14 + 30,SPINARAK,10,15 + 20,PINECO,9,13 + 10,DROWZEE,9,15 + 10,NATU,12,14 +LandMorning,25 + 25,CATERPIE,10,12 + 25,WEEDLE,10,12 + 20,PIDGEY,10,14 + 15,KAKUNA,10 + 15,METAPOD,10 +BugContest,25 + 20,CATERPIE,7,18 + 20,WEEDLE,7,18 + 10,KAKUNA,9,18 + 10,METAPOD,9,18 + 10,PARAS,10,17 + 10,VENONAT,10,16 + 5,BEEDRILL,12,15 + 5,BUTTERFREE,12,15 + 5,PINSIR,13,14 + 5,SCYTHER,13,14 #------------------------------- -031 # Route 3 -25,10,10 -Land - NIDORANfE,12,15 - NIDORANmA,12,15 - NIDORANfE,12,15 - NIDORANmA,12,15 - PIKACHU,14,17 - PIKACHU,14,17 - PONYTA,13,15 - PONYTA,13,15 - EEVEE,15 - EEVEE,15 - EEVEE,15 - EEVEE,15 -Water - SURSKIT,13,14 - LOTAD,14 - LOTAD,14 - LOTAD,15 - LOTAD,15 -RockSmash - NOSEPASS,13,14 - GEODUDE,12,15 - GEODUDE,12,15 - GEODUDE,12,15 - GEODUDE,12,15 +[031] # Route 3 +Land,25 + 30,NIDORANfE,12,15 + 30,NIDORANmA,12,15 + 20,PIKACHU,14,17 + 10,EEVEE,15 + 10,PONYTA,13,15 +Water,10 + 60,SURSKIT,13,14 + 35,LOTAD,14 + 5,LOTAD,15 OldRod - MAGIKARP,6,11 - MAGIKARP,10,17 + 70,MAGIKARP,6,11 + 30,MAGIKARP,10,17 GoodRod - POLIWAG,12,15 - PSYDUCK,11,14 - WOOPER,13,17 + 60,POLIWAG,12,15 + 20,PSYDUCK,11,14 + 20,WOOPER,13,17 SuperRod - CHINCHOU,11,12 - REMORAID,12,14 - LUVDISC,10,16 - LUVDISC,10,16 - LUVDISC,10,16 + 40,CHINCHOU,11,12 + 40,REMORAID,12,14 + 20,LUVDISC,10,16 +RockSmash + 60,NOSEPASS,13,14 + 40,GEODUDE,12,15 HeadbuttLow - PINECO,14,17 - COMBEE,15,17 - PINECO,14,16 - HERACROSS,16,18 - COMBEE,15,16 - HERACROSS,16,17 - HERACROSS,16,17 - MUNCHLAX,13,18 + 30,PINECO,14,17 + 25,COMBEE,15,17 + 20,PINECO,14,16 + 10,HERACROSS,16,18 + 9,HERACROSS,16,17 + 5,COMBEE,15,16 + 1,MUNCHLAX,13,18 HeadbuttHigh - SEEDOT,14,17 - SHROOMISH,14,17 - SEEDOT,14,17 - BURMY,12,15 - SHROOMISH,14,17 - BURMY,12,15 - BURMY,12,15 - BURMY,12,15 + 50,SEEDOT,14,17 + 30,SHROOMISH,14,17 + 20,BURMY,12,15 #------------------------------- -034 # Ice Cave -25,10,10 -Cave - SWINUB,16,18 - SWINUB,16,18 - SNEASEL,14,16 - SNEASEL,14,16 - SNORUNT,12,15 - SNORUNT,12,15 - SNOVER,14 - SNOVER,14 - SMOOCHUM,11,14 - SMOOCHUM,11,14 - SMOOCHUM,11,14 - SMOOCHUM,11,14 +[034] # Ice Cave +Cave,10 + 40,SWINUB,16,18 + 20,SNEASEL,14,16 + 20,SNORUNT,12,15 + 10,SMOOCHUM,11,14 + 10,SNOVER,14 #------------------------------- -039 # Route 4 -25,10,10 -Land - SHELLOS_1,12,15 - SHELLOS_1,12,15 - SHELLOS_1,12,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 +[039] # Route 4 +Land,25 + 50,SHELLOS_1,12,15 + 40,GRIMER,13,15 + 10,MURKROW,12,14 #------------------------------- -041 # Route 5 -25,10,10 -Land - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - SPEAROW,13,16 - SPEAROW,13,16 - SPEAROW,13,16 - SPEAROW,13,16 - SPEAROW,13,16 - SLUGMA,13,14 - SLUGMA,13,14 - SLUGMA,13,14 - SLUGMA,13,14 +[041] # Route 5 +Land,25 + 50,GRIMER,13,15 + 40,SPEAROW,13,16 + 10,SLUGMA,13,14 #------------------------------- -044 # Route 6 -25,10,10 -Land - SHELLOS_1,12,15 - SHELLOS_1,12,15 - SHELLOS_1,12,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 +[044] # Route 6 +Land,25 + 50,SHELLOS_1,12,15 + 40,GRIMER,13,15 + 10,MURKROW,12,14 #------------------------------- -047 # Route 7 -25,10,10 -Land - SHELLOS,12,15 - SHELLOS,12,15 - SHELLOS,12,15 - BIDOOF,14,17 - BIDOOF,14,17 - BIDOOF,14,17 - MURKROW,12,14 - MURKROW,12,14 - WURMPLE,9,12 - WURMPLE,9,12 - WURMPLE,9,12 - WURMPLE,9,12 +[047] # Route 7 +Land,25 + 50,SHELLOS,12,15 + 30,BIDOOF,14,17 + 10,MURKROW,12,14 + 10,WURMPLE,9,12 RockSmash - NOSEPASS,13,14 - NOSEPASS,13,14 - GEODUDE,12,15 - GEODUDE,12,15 - GEODUDE,12,15 + 90,NOSEPASS,13,14 + 10,GEODUDE,12,15 #------------------------------- -049 # Rock Cave -25,10,10 -Cave - NOSEPASS,14,15 - NOSEPASS,13,14 - MAGNETON,14,17 - MAGNETON,14,17 - MAGNETON,14,16 - MAGNETON,14,16 - GEODUDE,13,15 - GEODUDE,13,15 - MAWILE,14,16 - MAWILE,14,16 - MAWILE,14,16 - MAWILE,14,16 +[049] # Rock Cave +Cave,10 + 20,MAGNETON,14,16 + 20,MAGNETON,14,17 + 20,NOSEPASS,14,15 + 20,NOSEPASS,13,14 + 10,GEODUDE,13,15 + 10,MAWILE,14,16 #------------------------------- -050 # Rock Cave -25,10,10 -Cave - NOSEPASS,14,15 - NOSEPASS,13,14 - MAGNETON,14,17 - MAGNETON,14,17 - MAGNETON,14,16 - MAGNETON,14,16 - GEODUDE,13,15 - GEODUDE,13,15 - BURMY,14,16 - BURMY,14,16 - BURMY,14,16 - BURMY,14,16 +[050] # Rock Cave +Cave,10 + 20,MAGNETON,14,16 + 20,MAGNETON,14,17 + 20,NOSEPASS,14,15 + 20,NOSEPASS,13,14 + 10,BURMY,14,16 + 10,GEODUDE,13,15 #------------------------------- -051 # Dungeon -25,10,10 -Cave - PICHU,1 - CLEFFA,1 - IGGLYBUFF,1 - IGGLYBUFF,1 - CHINGLING,1 - CHINGLING,1 - RIOLU,1 - RIOLU,1 - TYROGUE,1 - TYROGUE,1 - TYROGUE,1 - TYROGUE,1 +[051] # Dungeon +Cave,10 + 20,CHINGLING,1 + 20,CLEFFA,1 + 20,IGGLYBUFF,1 + 20,PICHU,1 + 10,RIOLU,1 + 10,TYROGUE,1 #------------------------------- -066 # Safari Zone -25,10,10 -Land - NIDORANfE,15,16 - NIDORANmA,15,16 - DODUO,13,15 - DODUO,13,15 - ABRA,12,15 - ABRA,12,15 - TANGELA,14,16 - TANGELA,14,16 - HOPPIP,13,17 - HOPPIP,13,17 - HOPPIP,13,17 - HOPPIP,13,17 +[066] # Safari Zone +Land,25 + 20,ABRA,12,15 + 20,DODUO,13,15 + 20,NIDORANfE,15,16 + 20,NIDORANmA,15,16 + 10,HOPPIP,13,17 + 10,TANGELA,14,16 #------------------------------- -068 # Safari Zone -25,10,10 -Land - RHYHORN,16,18 - EXEGGCUTE,15,18 - VENONAT,15,17 - VENONAT,15,18 - AIPOM,14,17 - GIRAFARIG,16,17 - TAUROS,15,16 - HERACROSS,15,17 - SCYTHER,16 - PINSIR,16 - KANGASKHAN,19 - CHANSEY,17 -Water - PSYDUCK,16,18 - MARILL,15,18 - SLOWPOKE,14,16 - BUIZEL,15,17 - BUIZEL,15,17 +[068] # Safari Zone +Land,25 + 20,EXEGGCUTE,15,18 + 20,RHYHORN,16,18 + 10,AIPOM,14,17 + 10,GIRAFARIG,16,17 + 10,VENONAT,15,17 + 10,VENONAT,15,18 + 5,HERACROSS,15,17 + 5,TAUROS,15,16 + 4,PINSIR,16 + 4,SCYTHER,16 + 1,CHANSEY,17 + 1,KANGASKHAN,19 +Water,10 + 60,PSYDUCK,16,18 + 30,MARILL,15,18 + 5,BUIZEL,15,17 + 5,SLOWPOKE,14,16 OldRod - MAGIKARP,17,21 - MAGIKARP,17,20 + 70,MAGIKARP,17,21 + 30,MAGIKARP,17,20 GoodRod - MAGIKARP,16,20 - FEEBAS,16,20 - POLIWAG,17,18 + 60,MAGIKARP,16,20 + 20,FEEBAS,16,20 + 20,POLIWAG,17,18 SuperRod - GOLDEEN,16,18 - REMORAID,17,19 - CARVANHA,16,17 - FINNEON,15,18 - DRATINI,17 + 40,GOLDEEN,16,18 + 40,REMORAID,17,19 + 15,CARVANHA,16,17 + 4,FINNEON,15,18 + 1,DRATINI,17 #------------------------------- -069 # Route 8 -25,10,10 -Land - ODDISH,15,17 - MAREEP,16,18 - LOTAD,15,17 - LOTAD,15,18 - DITTO,15,17 - DITTO,16,18 - BONSLY,14,17 - BONSLY,14,16 - BONSLY,14,16 - BONSLY,14,16 - BONSLY,15,16 - BONSLY,15 -Water - TENTACOOL,14,19 - MANTYKE,15,16 - REMORAID,14,16 - REMORAID,14,16 - REMORAID,14,16 +[069] # Route 8 +Land,25 + 20,MAREEP,16,18 + 20,ODDISH,15,17 + 13,BONSLY,14,16 + 10,DITTO,15,17 + 10,DITTO,16,18 + 10,LOTAD,15,18 + 10,LOTAD,15,17 + 5,BONSLY,14,17 + 1,BONSLY,15,16 + 1,BONSLY,15 +Water,10 + 60,TENTACOOL,14,19 + 30,MANTYKE,15,16 + 10,REMORAID,14,16 OldRod - MAGIKARP,16,19 - MAGIKARP,16,19 + 100,MAGIKARP,16,19 GoodRod - BARBOACH,17,18 - SHELLDER,16,19 - KRABBY,15,16 + 60,BARBOACH,17,18 + 20,KRABBY,15,16 + 20,SHELLDER,16,19 SuperRod - CHINCHOU,17,19 - QWILFISH,16,19 - CORSOLA,15,18 - STARYU,15,17 - STARYU,15,17 + 40,CHINCHOU,17,19 + 40,QWILFISH,16,19 + 15,CORSOLA,15,18 + 5,STARYU,15,17 #------------------------------- -070 # Underwater -25,10,10 -Land - CLAMPERL,18,20 - SHELLDER,18,20 - CLAMPERL,18,19 - SHELLDER,18,19 - CHINCHOU,17,21 - CHINCHOU,17,21 - CORSOLA,17,20 - CORSOLA,17,20 - RELICANTH,16,19 - RELICANTH,16,19 - RELICANTH,16,19 - RELICANTH,16,19 +[070] # Underwater +Land,25 + 20,CHINCHOU,17,21 + 20,CLAMPERL,18,20 + 20,SHELLDER,18,20 + 10,CLAMPERL,18,19 + 10,CORSOLA,17,20 + 10,RELICANTH,16,19 + 10,SHELLDER,18,19 #------------------------------- -075 # Tiall Region -25,10,10 -Land - RATTATA,11,14 - GEODUDE,11,14 - SANDSHREW,11,14 - VULPIX,11,14 - DIGLETT,11,14 - MEOWTH,11,14 - PIKACHU,11,14 - PIKACHU,11,14 - CUBONE,11,14 - CUBONE,11,14 - CUBONE,11,14 - CUBONE,11,14 +[075] # Tiall Region +Land,25 + 20,GEODUDE,11,14 + 20,RATTATA,11,14 + 10,CUBONE,11,14 + 10,DIGLETT,11,14 + 10,MEOWTH,11,14 + 10,PIKACHU,11,14 + 10,SANDSHREW,11,14 + 10,VULPIX,11,14 diff --git a/PBS/Gen 5/pokemon.txt b/PBS/Gen 5/pokemon.txt index 167f239ca..2d4953ec0 100644 --- a/PBS/Gen 5/pokemon.txt +++ b/PBS/Gen 5/pokemon.txt @@ -22,7 +22,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 6.9 Color = Green -Shape = 8 +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. @@ -55,7 +55,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 13.0 Color = Green -Shape = 8 +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. @@ -88,7 +88,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 100.0 Color = Green -Shape = 8 +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. @@ -120,7 +120,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 8.5 Color = Red -Shape = 6 +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. @@ -152,7 +152,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 19.0 Color = Red -Shape = 6 +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. @@ -185,7 +185,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 90.5 Color = Red -Shape = 6 +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. @@ -217,7 +217,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.0 Color = Blue -Shape = 6 +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. @@ -249,7 +249,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 22.5 Color = Blue -Shape = 6 +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. @@ -281,7 +281,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 85.5 Color = Blue -Shape = 6 +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. @@ -312,7 +312,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.9 Color = Green -Shape = 14 +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. @@ -343,7 +343,7 @@ StepsToHatch = 3855 Height = 0.7 Weight = 9.9 Color = Green -Shape = 2 +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. @@ -376,7 +376,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 32.0 Color = White -Shape = 13 +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. @@ -409,7 +409,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 3.2 Color = Brown -Shape = 14 +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). @@ -441,7 +441,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 10.0 Color = Yellow -Shape = 2 +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. @@ -474,7 +474,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 29.5 Color = Yellow -Shape = 13 +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. @@ -508,7 +508,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 1.8 Color = Brown -Shape = 9 +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. @@ -541,7 +541,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 30.0 Color = Brown -Shape = 9 +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. @@ -574,7 +574,7 @@ StepsToHatch = 3855 Height = 1.5 Weight = 39.5 Color = Brown -Shape = 9 +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. @@ -606,7 +606,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 3.5 Color = Purple -Shape = 8 +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. @@ -639,7 +639,7 @@ StepsToHatch = 3855 Height = 0.7 Weight = 18.5 Color = Brown -Shape = 8 +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. @@ -673,7 +673,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.0 Color = Brown -Shape = 9 +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. @@ -706,7 +706,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 38.0 Color = Brown -Shape = 9 +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. @@ -739,7 +739,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 6.9 Color = Purple -Shape = 2 +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. @@ -771,7 +771,7 @@ StepsToHatch = 5140 Height = 3.5 Weight = 65.0 Color = Purple -Shape = 2 +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. @@ -802,7 +802,7 @@ StepsToHatch = 2570 Height = 0.4 Weight = 6.0 Color = Yellow -Shape = 8 +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. @@ -835,7 +835,7 @@ StepsToHatch = 2570 Height = 0.8 Weight = 30.0 Color = Yellow -Shape = 6 +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. @@ -868,7 +868,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 12.0 Color = Yellow -Shape = 6 +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. @@ -901,7 +901,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 29.5 Color = Yellow -Shape = 6 +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. @@ -934,7 +934,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 7.0 Color = Blue -Shape = 8 +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. @@ -966,7 +966,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 20.0 Color = Blue -Shape = 8 +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. @@ -999,7 +999,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 60.0 Color = Blue -Shape = 6 +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. @@ -1031,7 +1031,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.0 Color = Purple -Shape = 8 +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. @@ -1063,7 +1063,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 19.5 Color = Purple -Shape = 8 +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. @@ -1096,7 +1096,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 62.0 Color = Purple -Shape = 6 +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. @@ -1127,7 +1127,7 @@ StepsToHatch = 2570 Height = 0.6 Weight = 7.5 Color = Pink -Shape = 6 +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. @@ -1162,7 +1162,7 @@ StepsToHatch = 2570 Height = 1.3 Weight = 40.0 Color = Pink -Shape = 6 +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. @@ -1197,7 +1197,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 9.9 Color = Brown -Shape = 8 +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. @@ -1232,7 +1232,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 19.9 Color = Yellow -Shape = 8 +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. @@ -1266,7 +1266,7 @@ StepsToHatch = 2570 Height = 0.5 Weight = 5.5 Color = Pink -Shape = 12 +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. @@ -1298,7 +1298,7 @@ StepsToHatch = 2570 Height = 1.0 Weight = 12.0 Color = Pink -Shape = 12 +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. @@ -1331,7 +1331,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 7.5 Color = Purple -Shape = 9 +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. @@ -1364,7 +1364,7 @@ StepsToHatch = 3855 Height = 1.6 Weight = 55.0 Color = Purple -Shape = 9 +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. @@ -1398,7 +1398,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 5.4 Color = Blue -Shape = 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. @@ -1431,7 +1431,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 8.6 Color = Blue -Shape = 12 +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. @@ -1464,7 +1464,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 18.6 Color = Red -Shape = 12 +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. @@ -1497,7 +1497,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 5.4 Color = Red -Shape = 14 +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. @@ -1533,7 +1533,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 29.5 Color = Red -Shape = 14 +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. @@ -1569,7 +1569,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 30.0 Color = Purple -Shape = 12 +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. @@ -1602,7 +1602,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 12.5 Color = Purple -Shape = 13 +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. @@ -1635,7 +1635,7 @@ StepsToHatch = 5140 Height = 0.2 Weight = 0.8 Color = Brown -Shape = 5 +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. @@ -1668,7 +1668,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 33.3 Color = Brown -Shape = 11 +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. @@ -1701,7 +1701,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 8 +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. @@ -1734,7 +1734,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 32.0 Color = Yellow -Shape = 8 +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. @@ -1767,7 +1767,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 19.6 Color = Yellow -Shape = 6 +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. @@ -1799,7 +1799,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 76.6 Color = Blue -Shape = 6 +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. @@ -1831,7 +1831,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 28.0 Color = Brown -Shape = 6 +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. @@ -1864,7 +1864,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 32.0 Color = Brown -Shape = 6 +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. @@ -1897,7 +1897,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 19.0 Color = Brown -Shape = 8 +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. @@ -1930,7 +1930,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 155.0 Color = Brown -Shape = 8 +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. @@ -1963,7 +1963,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 12.4 Color = Blue -Shape = 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. @@ -1995,7 +1995,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 20.0 Color = Blue -Shape = 12 +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. @@ -2029,7 +2029,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 54.0 Color = Blue -Shape = 12 +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. @@ -2062,7 +2062,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 19.5 Color = Brown -Shape = 6 +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. @@ -2095,7 +2095,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 56.5 Color = Brown -Shape = 6 +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. @@ -2128,7 +2128,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 48.0 Color = Brown -Shape = 12 +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. @@ -2161,7 +2161,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 19.5 Color = Gray -Shape = 6 +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. @@ -2193,7 +2193,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 70.5 Color = Gray -Shape = 12 +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. @@ -2225,7 +2225,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 130.0 Color = Gray -Shape = 12 +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. @@ -2258,7 +2258,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 4.0 Color = Green -Shape = 12 +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. @@ -2291,7 +2291,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 6.4 Color = Green -Shape = 5 +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. @@ -2324,7 +2324,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 15.5 Color = Green -Shape = 5 +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. @@ -2357,7 +2357,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 45.5 Color = Blue -Shape = 10 +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. @@ -2391,7 +2391,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 55.0 Color = Blue -Shape = 10 +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. @@ -2425,7 +2425,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 20.0 Color = Brown -Shape = 4 +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. @@ -2459,7 +2459,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 105.0 Color = Brown -Shape = 12 +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. @@ -2493,7 +2493,7 @@ StepsToHatch = 3855 Height = 1.4 Weight = 300.0 Color = Brown -Shape = 12 +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. @@ -2526,7 +2526,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 30.0 Color = Yellow -Shape = 8 +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. @@ -2559,7 +2559,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 95.0 Color = Yellow -Shape = 8 +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. @@ -2593,7 +2593,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 36.0 Color = Pink -Shape = 8 +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. @@ -2627,7 +2627,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 78.5 Color = Pink -Shape = 6 +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. @@ -2660,7 +2660,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 6.0 Color = Gray -Shape = 4 +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. @@ -2694,7 +2694,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 60.0 Color = Gray -Shape = 11 +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. @@ -2729,7 +2729,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 15.0 Color = Brown -Shape = 9 +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. @@ -2763,7 +2763,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 39.2 Color = Brown -Shape = 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. @@ -2797,7 +2797,7 @@ StepsToHatch = 5140 Height = 1.8 Weight = 85.2 Color = Brown -Shape = 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. @@ -2830,7 +2830,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 90.0 Color = White -Shape = 3 +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. @@ -2863,7 +2863,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 120.0 Color = White -Shape = 3 +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. @@ -2895,7 +2895,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 30.0 Color = Purple -Shape = 4 +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. @@ -2928,7 +2928,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 30.0 Color = Purple -Shape = 4 +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. @@ -2962,7 +2962,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 4.0 Color = Purple -Shape = 1 +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. @@ -2997,7 +2997,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 132.5 Color = Purple -Shape = 1 +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. @@ -3031,7 +3031,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 0.1 Color = Purple -Shape = 1 +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. @@ -3063,7 +3063,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 0.1 Color = Purple -Shape = 4 +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. @@ -3095,7 +3095,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 40.5 Color = Purple -Shape = 6 +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. @@ -3128,7 +3128,7 @@ StepsToHatch = 6425 Height = 8.8 Weight = 210.0 Color = Gray -Shape = 2 +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. @@ -3161,7 +3161,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 32.4 Color = Yellow -Shape = 12 +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. @@ -3193,7 +3193,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 75.6 Color = Yellow -Shape = 12 +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. @@ -3225,7 +3225,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 6.5 Color = Red -Shape = 14 +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. @@ -3257,7 +3257,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 60.0 Color = Red -Shape = 14 +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. @@ -3288,7 +3288,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 10.4 Color = Red -Shape = 1 +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. @@ -3320,7 +3320,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 66.6 Color = Red -Shape = 1 +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. @@ -3353,7 +3353,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 2.5 Color = Pink -Shape = 11 +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. @@ -3386,7 +3386,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 120.0 Color = Yellow -Shape = 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. @@ -3418,7 +3418,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 6.5 Color = Brown -Shape = 6 +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. @@ -3451,7 +3451,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 45.0 Color = Brown -Shape = 6 +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. @@ -3483,7 +3483,7 @@ StepsToHatch = 6425 Height = 1.5 Weight = 49.8 Color = Brown -Shape = 12 +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. @@ -3514,7 +3514,7 @@ StepsToHatch = 6425 Height = 1.4 Weight = 50.2 Color = Brown -Shape = 12 +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. @@ -3546,7 +3546,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 65.5 Color = Pink -Shape = 6 +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. @@ -3579,7 +3579,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 1.0 Color = Purple -Shape = 1 +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. @@ -3611,7 +3611,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 9.5 Color = Purple -Shape = 11 +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. @@ -3645,7 +3645,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 115.0 Color = Gray -Shape = 8 +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. @@ -3678,7 +3678,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 120.0 Color = Gray -Shape = 6 +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. @@ -3711,7 +3711,7 @@ StepsToHatch = 10280 Height = 1.1 Weight = 34.6 Color = Pink -Shape = 6 +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. @@ -3746,7 +3746,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 35.0 Color = Blue -Shape = 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. @@ -3779,7 +3779,7 @@ StepsToHatch = 5140 Height = 2.2 Weight = 80.0 Color = Brown -Shape = 6 +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. @@ -3811,7 +3811,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 8.0 Color = Blue -Shape = 5 +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. @@ -3844,7 +3844,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 25.0 Color = Blue -Shape = 5 +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. @@ -3878,7 +3878,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 15.0 Color = Red -Shape = 3 +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. @@ -3910,7 +3910,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 39.0 Color = Red -Shape = 3 +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. @@ -3941,7 +3941,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 34.5 Color = Brown -Shape = 5 +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. @@ -3976,7 +3976,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 80.0 Color = Purple -Shape = 5 +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. @@ -4010,7 +4010,7 @@ StepsToHatch = 6425 Height = 1.3 Weight = 54.5 Color = Pink -Shape = 12 +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. @@ -4044,7 +4044,7 @@ StepsToHatch = 6425 Height = 1.5 Weight = 56.0 Color = Green -Shape = 13 +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. @@ -4077,7 +4077,7 @@ StepsToHatch = 6425 Height = 1.4 Weight = 40.6 Color = Red -Shape = 12 +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. @@ -4111,7 +4111,7 @@ StepsToHatch = 6425 Height = 1.1 Weight = 30.0 Color = Yellow -Shape = 6 +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. @@ -4144,7 +4144,7 @@ StepsToHatch = 6425 Height = 1.3 Weight = 44.5 Color = Red -Shape = 6 +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. @@ -4178,7 +4178,7 @@ StepsToHatch = 6425 Height = 1.5 Weight = 55.0 Color = Brown -Shape = 12 +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. @@ -4209,7 +4209,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 88.4 Color = Brown -Shape = 8 +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. @@ -4240,7 +4240,7 @@ StepsToHatch = 1285 Height = 0.9 Weight = 10.0 Color = Red -Shape = 3 +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. @@ -4273,7 +4273,7 @@ StepsToHatch = 1285 Height = 6.5 Weight = 235.0 Color = Blue -Shape = 2 +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. @@ -4306,7 +4306,7 @@ StepsToHatch = 10280 Height = 2.5 Weight = 220.0 Color = Blue -Shape = 3 +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. @@ -4336,7 +4336,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 4.0 Color = Purple -Shape = 1 +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. @@ -4370,7 +4370,7 @@ StepsToHatch = 8995 Height = 0.3 Weight = 6.5 Color = Brown -Shape = 8 +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. @@ -4402,7 +4402,7 @@ StepsToHatch = 8995 Height = 1.0 Weight = 29.0 Color = Blue -Shape = 8 +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. @@ -4433,7 +4433,7 @@ StepsToHatch = 8995 Height = 0.8 Weight = 24.5 Color = Yellow -Shape = 8 +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. @@ -4464,7 +4464,7 @@ StepsToHatch = 8995 Height = 0.9 Weight = 25.0 Color = Red -Shape = 8 +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. @@ -4495,7 +4495,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 36.5 Color = Pink -Shape = 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. @@ -4529,7 +4529,7 @@ StepsToHatch = 7710 Height = 0.4 Weight = 7.5 Color = Blue -Shape = 10 +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. @@ -4562,7 +4562,7 @@ StepsToHatch = 7710 Height = 1.0 Weight = 35.0 Color = Blue -Shape = 10 +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. @@ -4595,7 +4595,7 @@ StepsToHatch = 7710 Height = 0.5 Weight = 11.5 Color = Brown -Shape = 14 +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. @@ -4628,7 +4628,7 @@ StepsToHatch = 7710 Height = 1.3 Weight = 40.5 Color = Brown -Shape = 6 +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. @@ -4661,7 +4661,7 @@ StepsToHatch = 8995 Height = 1.8 Weight = 59.0 Color = Purple -Shape = 9 +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. @@ -4693,7 +4693,7 @@ StepsToHatch = 10280 Height = 2.1 Weight = 460.0 Color = Black -Shape = 12 +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. @@ -4728,7 +4728,7 @@ StepsToHatch = 20560 Height = 1.7 Weight = 55.4 Color = Blue -Shape = 9 +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. @@ -4760,7 +4760,7 @@ StepsToHatch = 20560 Height = 1.6 Weight = 52.6 Color = Yellow -Shape = 9 +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. @@ -4792,7 +4792,7 @@ StepsToHatch = 20560 Height = 2.0 Weight = 60.0 Color = Yellow -Shape = 9 +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. @@ -4824,7 +4824,7 @@ StepsToHatch = 10280 Height = 1.8 Weight = 3.3 Color = Blue -Shape = 2 +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. @@ -4857,7 +4857,7 @@ StepsToHatch = 10280 Height = 4.0 Weight = 16.5 Color = Blue -Shape = 2 +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. @@ -4891,7 +4891,7 @@ StepsToHatch = 10280 Height = 2.2 Weight = 210.0 Color = Brown -Shape = 6 +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. @@ -4923,7 +4923,7 @@ StepsToHatch = 30840 Height = 2.0 Weight = 122.0 Color = Purple -Shape = 6 +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. @@ -4953,7 +4953,7 @@ StepsToHatch = 30840 Height = 0.4 Weight = 4.0 Color = Pink -Shape = 6 +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. @@ -4988,7 +4988,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 6.4 Color = Green -Shape = 8 +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. @@ -5020,7 +5020,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 15.8 Color = Green -Shape = 8 +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. @@ -5052,7 +5052,7 @@ StepsToHatch = 5140 Height = 1.8 Weight = 100.5 Color = Green -Shape = 8 +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. @@ -5084,7 +5084,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 7.9 Color = Yellow -Shape = 12 +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. @@ -5116,7 +5116,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 19.0 Color = Yellow -Shape = 8 +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. @@ -5148,7 +5148,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 79.5 Color = Yellow -Shape = 8 +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. @@ -5180,7 +5180,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 9.5 Color = Blue -Shape = 6 +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. @@ -5212,7 +5212,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 25.0 Color = Blue -Shape = 6 +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. @@ -5244,7 +5244,7 @@ StepsToHatch = 5140 Height = 2.3 Weight = 88.8 Color = Blue -Shape = 6 +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. @@ -5276,7 +5276,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 6.0 Color = Brown -Shape = 8 +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. @@ -5309,7 +5309,7 @@ StepsToHatch = 3855 Height = 1.8 Weight = 32.5 Color = Brown -Shape = 8 +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. @@ -5344,7 +5344,7 @@ StepsToHatch = 3855 Height = 0.7 Weight = 21.2 Color = Brown -Shape = 9 +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. @@ -5377,7 +5377,7 @@ StepsToHatch = 3855 Height = 1.6 Weight = 40.8 Color = Brown -Shape = 9 +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. @@ -5410,7 +5410,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 10.8 Color = Red -Shape = 9 +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. @@ -5443,7 +5443,7 @@ StepsToHatch = 3855 Height = 1.4 Weight = 35.6 Color = Red -Shape = 9 +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. @@ -5476,7 +5476,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 8.5 Color = Green -Shape = 14 +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. @@ -5509,7 +5509,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 33.5 Color = Red -Shape = 14 +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. @@ -5541,7 +5541,7 @@ StepsToHatch = 3855 Height = 1.8 Weight = 75.0 Color = Purple -Shape = 13 +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. @@ -5574,7 +5574,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 12.0 Color = Blue -Shape = 3 +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. @@ -5608,7 +5608,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 22.5 Color = Blue -Shape = 3 +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. @@ -5641,7 +5641,7 @@ StepsToHatch = 2570 Height = 0.3 Weight = 2.0 Color = Yellow -Shape = 8 +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. @@ -5675,7 +5675,7 @@ StepsToHatch = 2570 Height = 0.3 Weight = 3.0 Color = Pink -Shape = 6 +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. @@ -5711,7 +5711,7 @@ StepsToHatch = 2570 Height = 0.3 Weight = 1.0 Color = Pink -Shape = 12 +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. @@ -5744,7 +5744,7 @@ StepsToHatch = 2570 Height = 0.3 Weight = 1.5 Color = White -Shape = 12 +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. @@ -5777,7 +5777,7 @@ StepsToHatch = 2570 Height = 0.6 Weight = 3.2 Color = White -Shape = 12 +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. @@ -5811,7 +5811,7 @@ StepsToHatch = 5140 Height = 0.2 Weight = 2.0 Color = Green -Shape = 9 +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. @@ -5844,7 +5844,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 15.0 Color = Green -Shape = 9 +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. @@ -5876,7 +5876,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 7.8 Color = White -Shape = 8 +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. @@ -5908,7 +5908,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 13.3 Color = Pink -Shape = 6 +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. @@ -5940,7 +5940,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 61.5 Color = Yellow -Shape = 6 +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. @@ -5971,7 +5971,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 5.8 Color = Green -Shape = 12 +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. @@ -6003,7 +6003,7 @@ StepsToHatch = 2570 Height = 0.4 Weight = 8.5 Color = Blue -Shape = 6 +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. @@ -6035,7 +6035,7 @@ StepsToHatch = 2570 Height = 0.8 Weight = 28.5 Color = Blue -Shape = 6 +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. @@ -6067,7 +6067,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 38.0 Color = Brown -Shape = 12 +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. @@ -6098,7 +6098,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 33.9 Color = Green -Shape = 12 +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. @@ -6132,7 +6132,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 0.5 Color = Pink -Shape = 6 +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. @@ -6165,7 +6165,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 1.0 Color = Green -Shape = 6 +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. @@ -6198,7 +6198,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 3.0 Color = Blue -Shape = 6 +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. @@ -6230,7 +6230,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 11.5 Color = Purple -Shape = 6 +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. @@ -6263,7 +6263,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 1.8 Color = Yellow -Shape = 1 +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. @@ -6296,7 +6296,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 8.5 Color = Yellow -Shape = 12 +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. @@ -6329,7 +6329,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 38.0 Color = Red -Shape = 13 +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. @@ -6364,7 +6364,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 8.5 Color = Blue -Shape = 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. @@ -6397,7 +6397,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 75.0 Color = Blue -Shape = 6 +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. @@ -6428,7 +6428,7 @@ StepsToHatch = 8995 Height = 0.9 Weight = 26.5 Color = Purple -Shape = 8 +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. @@ -6459,7 +6459,7 @@ StepsToHatch = 8995 Height = 1.0 Weight = 27.0 Color = Black -Shape = 8 +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. @@ -6492,7 +6492,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 2.1 Color = Black -Shape = 9 +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. @@ -6525,7 +6525,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 79.5 Color = Pink -Shape = 6 +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. @@ -6557,7 +6557,7 @@ StepsToHatch = 6425 Height = 0.7 Weight = 1.0 Color = Gray -Shape = 1 +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. @@ -6587,7 +6587,7 @@ StepsToHatch = 10280 Height = 0.5 Weight = 5.0 Color = Black -Shape = 1 +Shape = Head 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. @@ -6618,7 +6618,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 28.5 Color = Blue -Shape = 5 +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. @@ -6651,7 +6651,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 41.5 Color = Yellow -Shape = 8 +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. @@ -6684,7 +6684,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 7.2 Color = Gray -Shape = 1 +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. @@ -6717,7 +6717,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 125.8 Color = Purple -Shape = 1 +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. @@ -6749,7 +6749,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 14.0 Color = Yellow -Shape = 2 +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. @@ -6782,7 +6782,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 64.8 Color = Purple -Shape = 9 +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. @@ -6815,7 +6815,7 @@ StepsToHatch = 6425 Height = 9.2 Weight = 400.0 Color = Gray -Shape = 2 +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. @@ -6848,7 +6848,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 7.8 Color = Pink -Shape = 12 +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. @@ -6880,7 +6880,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 48.7 Color = Purple -Shape = 6 +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. @@ -6913,7 +6913,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 3.9 Color = Gray -Shape = 3 +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. @@ -6946,7 +6946,7 @@ StepsToHatch = 6425 Height = 1.8 Weight = 118.0 Color = Red -Shape = 13 +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. @@ -6979,7 +6979,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 20.5 Color = Yellow -Shape = 14 +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. @@ -7015,7 +7015,7 @@ StepsToHatch = 6425 Height = 1.5 Weight = 54.0 Color = Blue -Shape = 12 +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. @@ -7048,7 +7048,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 28.0 Color = Black -Shape = 6 +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. @@ -7083,7 +7083,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 8.8 Color = Brown -Shape = 6 +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. @@ -7115,7 +7115,7 @@ StepsToHatch = 5140 Height = 1.8 Weight = 125.8 Color = Brown -Shape = 6 +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. @@ -7147,7 +7147,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 35.0 Color = Red -Shape = 2 +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. @@ -7180,7 +7180,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 55.0 Color = Red -Shape = 2 +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. @@ -7213,7 +7213,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 6.5 Color = Brown -Shape = 8 +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. @@ -7246,7 +7246,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 55.8 Color = Brown -Shape = 8 +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. @@ -7280,7 +7280,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 5.0 Color = Pink -Shape = 14 +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. @@ -7313,7 +7313,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 12.0 Color = Gray -Shape = 3 +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. @@ -7345,7 +7345,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 28.5 Color = Red -Shape = 10 +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. @@ -7378,7 +7378,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 16.0 Color = Red -Shape = 9 +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. @@ -7411,7 +7411,7 @@ StepsToHatch = 6425 Height = 2.1 Weight = 220.0 Color = Purple -Shape = 9 +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. @@ -7444,7 +7444,7 @@ StepsToHatch = 6425 Height = 1.7 Weight = 50.5 Color = Gray -Shape = 9 +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. @@ -7477,7 +7477,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 10.8 Color = Black -Shape = 8 +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. @@ -7510,7 +7510,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 35.0 Color = Black -Shape = 8 +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. @@ -7542,7 +7542,7 @@ StepsToHatch = 5140 Height = 1.8 Weight = 152.0 Color = Blue -Shape = 5 +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. @@ -7575,7 +7575,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 33.5 Color = Blue -Shape = 8 +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. @@ -7608,7 +7608,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 120.0 Color = Gray -Shape = 8 +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. @@ -7640,7 +7640,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 32.5 Color = Red -Shape = 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. @@ -7673,7 +7673,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 71.2 Color = Brown -Shape = 8 +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. @@ -7703,7 +7703,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 58.0 Color = White -Shape = 6 +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. @@ -7735,7 +7735,7 @@ StepsToHatch = 6425 Height = 0.7 Weight = 21.0 Color = Purple -Shape = 12 +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. @@ -7767,7 +7767,7 @@ StepsToHatch = 6425 Height = 1.4 Weight = 48.0 Color = Brown -Shape = 6 +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. @@ -7800,7 +7800,7 @@ StepsToHatch = 6425 Height = 0.4 Weight = 6.0 Color = Pink -Shape = 12 +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. @@ -7836,7 +7836,7 @@ StepsToHatch = 6425 Height = 0.6 Weight = 23.5 Color = Yellow -Shape = 12 +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. @@ -7870,7 +7870,7 @@ StepsToHatch = 6425 Height = 0.7 Weight = 21.4 Color = Red -Shape = 6 +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. @@ -7904,7 +7904,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 75.5 Color = Pink -Shape = 6 +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. @@ -7938,7 +7938,7 @@ StepsToHatch = 10280 Height = 1.5 Weight = 46.8 Color = Pink -Shape = 12 +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. @@ -7972,7 +7972,7 @@ StepsToHatch = 20560 Height = 1.9 Weight = 178.0 Color = Yellow -Shape = 8 +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. @@ -8003,7 +8003,7 @@ StepsToHatch = 20560 Height = 2.1 Weight = 198.0 Color = Brown -Shape = 8 +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. @@ -8034,7 +8034,7 @@ StepsToHatch = 20560 Height = 2.0 Weight = 187.0 Color = Blue -Shape = 8 +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. @@ -8067,7 +8067,7 @@ StepsToHatch = 10280 Height = 0.6 Weight = 72.0 Color = Green -Shape = 6 +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. @@ -8099,7 +8099,7 @@ StepsToHatch = 10280 Height = 1.2 Weight = 152.0 Color = Gray -Shape = 2 +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. @@ -8132,7 +8132,7 @@ StepsToHatch = 10280 Height = 2.0 Weight = 202.0 Color = Green -Shape = 6 +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. @@ -8164,7 +8164,7 @@ StepsToHatch = 30840 Height = 5.2 Weight = 216.0 Color = White -Shape = 9 +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. @@ -8196,7 +8196,7 @@ StepsToHatch = 30840 Height = 3.8 Weight = 199.0 Color = Red -Shape = 9 +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. @@ -8230,7 +8230,7 @@ StepsToHatch = 30840 Height = 0.6 Weight = 5.0 Color = Green -Shape = 12 +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. @@ -8265,7 +8265,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 5.0 Color = Green -Shape = 6 +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. @@ -8297,7 +8297,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 21.6 Color = Green -Shape = 6 +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. @@ -8329,7 +8329,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 52.2 Color = Green -Shape = 6 +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. @@ -8361,7 +8361,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 2.5 Color = Red -Shape = 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. @@ -8394,7 +8394,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 19.5 Color = Red -Shape = 6 +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. @@ -8427,7 +8427,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 52.0 Color = Red -Shape = 6 +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. @@ -8459,7 +8459,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 7.6 Color = Blue -Shape = 8 +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. @@ -8492,7 +8492,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 28.0 Color = Blue -Shape = 6 +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. @@ -8525,7 +8525,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 81.9 Color = Blue -Shape = 6 +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. @@ -8557,7 +8557,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 13.6 Color = Gray -Shape = 8 +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. @@ -8590,7 +8590,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 37.0 Color = Gray -Shape = 8 +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. @@ -8623,7 +8623,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 17.5 Color = Brown -Shape = 8 +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. @@ -8656,7 +8656,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 32.5 Color = White -Shape = 8 +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. @@ -8689,7 +8689,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 3.6 Color = Red -Shape = 14 +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. @@ -8720,7 +8720,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 10.0 Color = White -Shape = 1 +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. @@ -8753,7 +8753,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 28.4 Color = Yellow -Shape = 13 +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. @@ -8784,7 +8784,7 @@ StepsToHatch = 3855 Height = 0.7 Weight = 11.5 Color = Purple -Shape = 1 +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. @@ -8817,7 +8817,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 31.6 Color = Green -Shape = 13 +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. @@ -8851,7 +8851,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 2.6 Color = Green -Shape = 14 +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. @@ -8884,7 +8884,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 32.5 Color = Green -Shape = 12 +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. @@ -8917,7 +8917,7 @@ StepsToHatch = 3855 Height = 1.5 Weight = 55.0 Color = Green -Shape = 12 +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. @@ -8949,7 +8949,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 4.0 Color = Brown -Shape = 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. @@ -8982,7 +8982,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 28.0 Color = Brown -Shape = 12 +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. @@ -9015,7 +9015,7 @@ StepsToHatch = 3855 Height = 1.3 Weight = 59.6 Color = Brown -Shape = 12 +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. @@ -9048,7 +9048,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.3 Color = Blue -Shape = 9 +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. @@ -9082,7 +9082,7 @@ StepsToHatch = 3855 Height = 0.7 Weight = 19.8 Color = Blue -Shape = 9 +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. @@ -9116,7 +9116,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 9.5 Color = White -Shape = 9 +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. @@ -9149,7 +9149,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 28.0 Color = Yellow -Shape = 9 +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. @@ -9181,7 +9181,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 6.6 Color = White -Shape = 12 +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. @@ -9213,7 +9213,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 20.2 Color = White -Shape = 12 +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. @@ -9245,7 +9245,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 48.4 Color = White -Shape = 12 +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. @@ -9278,7 +9278,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 1.7 Color = Blue -Shape = 14 +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. @@ -9311,7 +9311,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 3.6 Color = Blue -Shape = 13 +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. @@ -9344,7 +9344,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 4.5 Color = Brown -Shape = 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. @@ -9378,7 +9378,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 39.2 Color = Green -Shape = 6 +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. @@ -9410,7 +9410,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 24.0 Color = Brown -Shape = 8 +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. @@ -9441,7 +9441,7 @@ StepsToHatch = 3855 Height = 1.4 Weight = 46.5 Color = White -Shape = 6 +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. @@ -9472,7 +9472,7 @@ StepsToHatch = 3855 Height = 2.0 Weight = 130.5 Color = Brown -Shape = 12 +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. @@ -9505,7 +9505,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 5.5 Color = Gray -Shape = 14 +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. @@ -9538,7 +9538,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 12.0 Color = Yellow -Shape = 13 +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. @@ -9569,7 +9569,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 1.2 Color = Brown -Shape = 5 +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. @@ -9601,7 +9601,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 16.3 Color = Pink -Shape = 6 +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. @@ -9634,7 +9634,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 40.5 Color = Blue -Shape = 6 +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. @@ -9667,7 +9667,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 84.0 Color = Blue -Shape = 6 +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. @@ -9700,7 +9700,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 86.4 Color = Yellow -Shape = 12 +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. @@ -9732,7 +9732,7 @@ StepsToHatch = 5140 Height = 2.3 Weight = 253.8 Color = Brown -Shape = 12 +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. @@ -9765,7 +9765,7 @@ StepsToHatch = 2570 Height = 0.2 Weight = 2.0 Color = Blue -Shape = 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. @@ -9799,7 +9799,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 97.0 Color = Gray -Shape = 12 +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. @@ -9833,7 +9833,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 11.0 Color = Pink -Shape = 8 +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. @@ -9866,7 +9866,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 32.6 Color = Purple -Shape = 8 +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. @@ -9900,7 +9900,7 @@ StepsToHatch = 6425 Height = 0.5 Weight = 11.0 Color = Purple -Shape = 12 +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. @@ -9932,7 +9932,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 11.5 Color = Black -Shape = 12 +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. @@ -9966,7 +9966,7 @@ StepsToHatch = 8995 Height = 0.4 Weight = 60.0 Color = Gray -Shape = 8 +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. @@ -10000,7 +10000,7 @@ StepsToHatch = 8995 Height = 0.9 Weight = 120.0 Color = Gray -Shape = 8 +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. @@ -10034,7 +10034,7 @@ StepsToHatch = 8995 Height = 2.1 Weight = 360.0 Color = Gray -Shape = 6 +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. @@ -10068,7 +10068,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 11.2 Color = Blue -Shape = 12 +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. @@ -10101,7 +10101,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 31.5 Color = Red -Shape = 12 +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. @@ -10133,7 +10133,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 15.2 Color = Green -Shape = 8 +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. @@ -10165,7 +10165,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 40.2 Color = Yellow -Shape = 8 +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. @@ -10196,7 +10196,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 6 +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. @@ -10227,7 +10227,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 6 +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. @@ -10259,7 +10259,7 @@ StepsToHatch = 3855 Height = 0.7 Weight = 17.7 Color = Gray -Shape = 6 +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. @@ -10291,7 +10291,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 17.7 Color = Purple -Shape = 12 +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. @@ -10324,7 +10324,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 2.0 Color = Green -Shape = 12 +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. @@ -10359,7 +10359,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 10.3 Color = Green -Shape = 4 +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. @@ -10392,7 +10392,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 80.0 Color = Purple -Shape = 4 +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. @@ -10426,7 +10426,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 20.8 Color = Red -Shape = 3 +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. @@ -10460,7 +10460,7 @@ StepsToHatch = 5140 Height = 1.8 Weight = 88.8 Color = Blue -Shape = 3 +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. @@ -10493,7 +10493,7 @@ StepsToHatch = 10280 Height = 2.0 Weight = 130.0 Color = Blue -Shape = 3 +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. @@ -10525,7 +10525,7 @@ StepsToHatch = 10280 Height = 14.5 Weight = 398.0 Color = Blue -Shape = 3 +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. @@ -10558,7 +10558,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 24.0 Color = Yellow -Shape = 8 +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. @@ -10594,7 +10594,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 220.0 Color = Red -Shape = 8 +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. @@ -10629,7 +10629,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 80.4 Color = Brown -Shape = 8 +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. @@ -10661,7 +10661,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 30.6 Color = Black -Shape = 4 +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. @@ -10694,7 +10694,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 71.5 Color = Purple -Shape = 6 +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. @@ -10727,7 +10727,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 5.0 Color = Brown -Shape = 6 +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. @@ -10760,7 +10760,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 15.0 Color = Brown -Shape = 14 +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. @@ -10793,7 +10793,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 15.3 Color = Green -Shape = 13 +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. @@ -10825,7 +10825,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 82.0 Color = Green -Shape = 9 +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. @@ -10857,7 +10857,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 51.3 Color = Green -Shape = 12 +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. @@ -10891,7 +10891,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 77.4 Color = Green -Shape = 12 +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. @@ -10925,7 +10925,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 1.2 Color = Blue -Shape = 9 +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. @@ -10958,7 +10958,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 20.6 Color = Blue -Shape = 9 +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. @@ -10990,7 +10990,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 40.3 Color = White -Shape = 6 +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. @@ -11023,7 +11023,7 @@ StepsToHatch = 5140 Height = 2.7 Weight = 52.5 Color = Black -Shape = 2 +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. @@ -11054,7 +11054,7 @@ StepsToHatch = 6425 Height = 1.0 Weight = 168.0 Color = Yellow -Shape = 1 +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. @@ -11087,7 +11087,7 @@ StepsToHatch = 6425 Height = 1.2 Weight = 154.0 Color = Red -Shape = 1 +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. @@ -11122,7 +11122,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 1.9 Color = Gray -Shape = 3 +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. @@ -11155,7 +11155,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 23.6 Color = Blue -Shape = 3 +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. @@ -11187,7 +11187,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 11.5 Color = Red -Shape = 14 +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. @@ -11220,7 +11220,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 32.8 Color = Red -Shape = 14 +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. @@ -11251,7 +11251,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 21.5 Color = Brown -Shape = 4 +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. @@ -11283,7 +11283,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 108.0 Color = Black -Shape = 4 +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. @@ -11316,7 +11316,7 @@ StepsToHatch = 7710 Height = 1.0 Weight = 23.8 Color = Purple -Shape = 5 +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. @@ -11350,7 +11350,7 @@ StepsToHatch = 7710 Height = 1.5 Weight = 60.4 Color = Green -Shape = 5 +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. @@ -11384,7 +11384,7 @@ StepsToHatch = 7710 Height = 0.7 Weight = 12.5 Color = Gray -Shape = 14 +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. @@ -11417,7 +11417,7 @@ StepsToHatch = 7710 Height = 1.5 Weight = 68.2 Color = Gray -Shape = 6 +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. @@ -11449,7 +11449,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 7.4 Color = Brown -Shape = 3 +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. @@ -11481,7 +11481,7 @@ StepsToHatch = 5140 Height = 6.2 Weight = 162.0 Color = Pink -Shape = 2 +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. @@ -11512,7 +11512,7 @@ StepsToHatch = 6425 Height = 0.3 Weight = 0.8 Color = Gray -Shape = 1 +Shape = Head 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. @@ -11547,7 +11547,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 22.0 Color = Green -Shape = 6 +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. @@ -11580,7 +11580,7 @@ StepsToHatch = 6425 Height = 0.6 Weight = 2.3 Color = Black -Shape = 1 +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. @@ -11613,7 +11613,7 @@ StepsToHatch = 6425 Height = 1.1 Weight = 12.5 Color = Black -Shape = 6 +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. @@ -11645,7 +11645,7 @@ StepsToHatch = 6425 Height = 0.8 Weight = 15.0 Color = Black -Shape = 4 +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. @@ -11677,7 +11677,7 @@ StepsToHatch = 6425 Height = 1.6 Weight = 30.6 Color = Black -Shape = 12 +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. @@ -11712,7 +11712,7 @@ StepsToHatch = 6425 Height = 2.0 Weight = 100.0 Color = Green -Shape = 8 +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. @@ -11743,7 +11743,7 @@ StepsToHatch = 6425 Height = 0.6 Weight = 1.0 Color = Blue -Shape = 4 +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. @@ -11776,7 +11776,7 @@ StepsToHatch = 6425 Height = 1.2 Weight = 47.0 Color = White -Shape = 8 +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. @@ -11806,7 +11806,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 14.0 Color = Blue -Shape = 6 +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. @@ -11840,7 +11840,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 16.8 Color = Gray -Shape = 12 +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. @@ -11873,7 +11873,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 256.5 Color = Gray -Shape = 1 +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. @@ -11907,7 +11907,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 39.5 Color = Blue -Shape = 3 +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. @@ -11940,7 +11940,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 87.6 Color = Blue -Shape = 3 +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. @@ -11973,7 +11973,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 150.6 Color = Blue -Shape = 8 +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. @@ -12005,7 +12005,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 52.5 Color = Blue -Shape = 1 +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. @@ -12038,7 +12038,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 27.0 Color = Blue -Shape = 2 +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. @@ -12070,7 +12070,7 @@ StepsToHatch = 5140 Height = 1.8 Weight = 22.6 Color = Pink -Shape = 2 +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. @@ -12104,7 +12104,7 @@ StepsToHatch = 10280 Height = 1.0 Weight = 23.4 Color = Gray -Shape = 3 +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. @@ -12137,7 +12137,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 8.7 Color = Pink -Shape = 3 +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. @@ -12170,7 +12170,7 @@ StepsToHatch = 10280 Height = 0.6 Weight = 42.1 Color = Blue -Shape = 12 +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. @@ -12203,7 +12203,7 @@ StepsToHatch = 10280 Height = 1.1 Weight = 110.5 Color = White -Shape = 8 +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. @@ -12237,7 +12237,7 @@ StepsToHatch = 10280 Height = 1.5 Weight = 102.6 Color = Blue -Shape = 8 +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. @@ -12270,7 +12270,7 @@ StepsToHatch = 10280 Height = 0.6 Weight = 95.2 Color = Blue -Shape = 5 +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. @@ -12304,7 +12304,7 @@ StepsToHatch = 10280 Height = 1.2 Weight = 202.5 Color = Blue -Shape = 4 +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. @@ -12338,7 +12338,7 @@ StepsToHatch = 10280 Height = 1.6 Weight = 550.0 Color = Blue -Shape = 11 +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. @@ -12370,7 +12370,7 @@ StepsToHatch = 20560 Height = 1.7 Weight = 230.0 Color = Brown -Shape = 12 +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. @@ -12401,7 +12401,7 @@ StepsToHatch = 20560 Height = 1.8 Weight = 175.0 Color = Blue -Shape = 12 +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. @@ -12432,7 +12432,7 @@ StepsToHatch = 20560 Height = 1.9 Weight = 205.0 Color = Gray -Shape = 12 +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. @@ -12463,7 +12463,7 @@ StepsToHatch = 30840 Height = 1.4 Weight = 40.0 Color = Red -Shape = 9 +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. @@ -12494,7 +12494,7 @@ StepsToHatch = 30840 Height = 2.0 Weight = 60.0 Color = Blue -Shape = 9 +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. @@ -12524,7 +12524,7 @@ StepsToHatch = 30840 Height = 4.5 Weight = 352.0 Color = Blue -Shape = 3 +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. @@ -12554,7 +12554,7 @@ StepsToHatch = 30840 Height = 3.5 Weight = 950.0 Color = Red -Shape = 6 +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. @@ -12585,7 +12585,7 @@ StepsToHatch = 30840 Height = 7.0 Weight = 206.5 Color = Green -Shape = 2 +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. @@ -12616,7 +12616,7 @@ StepsToHatch = 30840 Height = 0.3 Weight = 1.1 Color = Yellow -Shape = 12 +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. @@ -12649,7 +12649,7 @@ StepsToHatch = 30840 Height = 1.7 Weight = 60.8 Color = Red -Shape = 12 +Shape = Bipedal 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. @@ -12682,7 +12682,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 10.2 Color = Green -Shape = 8 +Shape = Quadruped Kind = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. BattlerPlayerX = -3 @@ -12713,7 +12713,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 97.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. BattlerPlayerX = -4 @@ -12745,7 +12745,7 @@ StepsToHatch = 5140 Height = 2.2 Weight = 310.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. BattlerPlayerX = 0 @@ -12776,7 +12776,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 6.2 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. BattlerPlayerX = 4 @@ -12808,7 +12808,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 22.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. BattlerPlayerX = -6 @@ -12840,7 +12840,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 55.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. BattlerPlayerX = 1 @@ -12871,7 +12871,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 5.2 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. BattlerPlayerX = 0 @@ -12902,7 +12902,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 23.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. BattlerPlayerX = 2 @@ -12934,7 +12934,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 84.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. BattlerPlayerX = 2 @@ -12965,7 +12965,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.0 Color = Brown -Shape = 9 +Shape = Winged Kind = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. WildItemUncommon = YACHEBERRY @@ -12998,7 +12998,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 15.5 Color = Brown -Shape = 9 +Shape = Winged Kind = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. WildItemUncommon = YACHEBERRY @@ -13031,7 +13031,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 24.9 Color = Brown -Shape = 9 +Shape = Winged Kind = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. WildItemUncommon = YACHEBERRY @@ -13063,7 +13063,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 20.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. BattlerPlayerX = 0 @@ -13095,7 +13095,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 31.5 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. WildItemCommon = ORANBERRY @@ -13127,7 +13127,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.2 Color = Red -Shape = 12 +Shape = Bipedal Kind = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. WildItemUncommon = METRONOME @@ -13159,7 +13159,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 25.5 Color = Red -Shape = 13 +Shape = MultiWinged Kind = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. WildItemUncommon = METRONOME @@ -13191,7 +13191,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.5 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. BattlerPlayerX = -9 @@ -13222,7 +13222,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 30.5 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. BattlerPlayerX = 1 @@ -13253,7 +13253,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 42.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. BattlerPlayerX = 0 @@ -13285,7 +13285,7 @@ StepsToHatch = 5140 Height = 0.2 Weight = 1.2 Color = Green -Shape = 12 +Shape = Bipedal Kind = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. WildItemUncommon = POISONBARB @@ -13319,7 +13319,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 14.5 Color = Green -Shape = 12 +Shape = Bipedal Kind = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. WildItemUncommon = POISONBARB @@ -13352,7 +13352,7 @@ StepsToHatch = 7710 Height = 0.9 Weight = 31.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. BattlerPlayerX = 0 @@ -13383,7 +13383,7 @@ StepsToHatch = 7710 Height = 1.6 Weight = 102.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. BattlerPlayerX = 0 @@ -13415,7 +13415,7 @@ StepsToHatch = 7710 Height = 0.5 Weight = 57.0 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. BattlerPlayerX = 0 @@ -13447,7 +13447,7 @@ StepsToHatch = 7710 Height = 1.3 Weight = 149.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. BattlerPlayerX = -4 @@ -13477,7 +13477,7 @@ StepsToHatch = 3855 Height = 0.2 Weight = 3.4 Color = Green -Shape = 5 +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 @@ -13510,7 +13510,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 6.5 Color = Green -Shape = 5 +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 @@ -13543,7 +13543,7 @@ StepsToHatch = 3855 Height = 0.9 Weight = 23.3 Color = Yellow -Shape = 13 +Shape = MultiWinged Kind = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. WildItemUncommon = SILVERPOWDER @@ -13575,7 +13575,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 5.5 Color = Yellow -Shape = 11 +Shape = MultiBody Kind = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. WildItemUncommon = HONEY @@ -13608,7 +13608,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 38.5 Color = Yellow -Shape = 13 +Shape = MultiWinged Kind = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. WildItemUncommon = POISONBARB @@ -13640,7 +13640,7 @@ StepsToHatch = 2570 Height = 0.4 Weight = 3.9 Color = White -Shape = 8 +Shape = Quadruped Kind = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. BattlerPlayerX = -5 @@ -13671,7 +13671,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 29.5 Color = Brown -Shape = 8 +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. WildItemUncommon = WACANBERRY @@ -13703,7 +13703,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 33.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. WildItemUncommon = WACANBERRY @@ -13734,7 +13734,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 3.3 Color = Pink -Shape = 11 +Shape = MultiBody Kind = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. WildItemUncommon = MIRACLESEED @@ -13765,7 +13765,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.3 Color = Purple -Shape = 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 @@ -13798,7 +13798,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 6.3 Color = Purple -Shape = 2 +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 @@ -13831,7 +13831,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 29.9 Color = Purple -Shape = 2 +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 @@ -13862,7 +13862,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 20.3 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. BattlerPlayerX = 8 @@ -13894,7 +13894,7 @@ StepsToHatch = 7710 Height = 0.4 Weight = 1.2 Color = Purple -Shape = 4 +Shape = HeadArms Kind = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. BattlerPlayerX = 2 @@ -13926,7 +13926,7 @@ StepsToHatch = 7710 Height = 1.2 Weight = 15.0 Color = Purple -Shape = 4 +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. WildItemRare = AIRBALLOON @@ -13958,7 +13958,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 5.5 Color = Brown -Shape = 6 +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. WildItemCommon = PECHABERRY @@ -13990,7 +13990,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 33.3 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. WildItemCommon = PECHABERRY @@ -14020,7 +14020,7 @@ StepsToHatch = 6425 Height = 0.9 Weight = 4.4 Color = Purple -Shape = 1 +Shape = Head Kind = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. BattlerPlayerX = -3 @@ -14051,7 +14051,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 27.3 Color = Black -Shape = 9 +Shape = Winged Kind = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. BattlerPlayerX = 2 @@ -14082,7 +14082,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 3.9 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. WildItemUncommon = CHERIBERRY @@ -14114,7 +14114,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 43.8 Color = Gray -Shape = 8 +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. WildItemUncommon = CHERIBERRY @@ -14145,7 +14145,7 @@ StepsToHatch = 6425 Height = 0.2 Weight = 0.6 Color = Yellow -Shape = 12 +Shape = Bipedal Kind = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. WildItemUncommon = COLBURBERRY @@ -14180,7 +14180,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 19.2 Color = Purple -Shape = 8 +Shape = Quadruped Kind = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. WildItemUncommon = PECHABERRY @@ -14213,7 +14213,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 38.0 Color = Purple -Shape = 8 +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. WildItemUncommon = PECHABERRY @@ -14245,7 +14245,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 60.5 Color = Green -Shape = 1 +Shape = Head Kind = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. WildItemUncommon = METALCOAT @@ -14278,7 +14278,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 187.0 Color = Green -Shape = 4 +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. WildItemUncommon = METALCOAT @@ -14310,7 +14310,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 15.0 Color = Brown -Shape = 7 +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. BattlerPlayerX = 3 @@ -14343,7 +14343,7 @@ StepsToHatch = 6425 Height = 0.6 Weight = 13.0 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. WildItemUncommon = LEPPABERRY @@ -14377,7 +14377,7 @@ StepsToHatch = 10280 Height = 0.6 Weight = 24.4 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. WildItemCommon = OVALSTONE @@ -14413,7 +14413,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 1.9 Color = Black -Shape = 9 +Shape = Winged Kind = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. WildItemUncommon = METRONOME @@ -14446,7 +14446,7 @@ StepsToHatch = 7710 Height = 1.0 Weight = 108.0 Color = Purple -Shape = 5 +Shape = HeadBase Kind = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. BattlerPlayerX = 2 @@ -14478,7 +14478,7 @@ StepsToHatch = 10280 Height = 0.7 Weight = 20.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. WildItemUncommon = HABANBERRY @@ -14511,7 +14511,7 @@ StepsToHatch = 10280 Height = 1.4 Weight = 56.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. WildItemUncommon = HABANBERRY @@ -14544,7 +14544,7 @@ StepsToHatch = 10280 Height = 1.9 Weight = 95.0 Color = Blue -Shape = 6 +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. WildItemUncommon = HABANBERRY @@ -14576,7 +14576,7 @@ StepsToHatch = 10280 Height = 0.6 Weight = 105.0 Color = Black -Shape = 12 +Shape = Bipedal Kind = Big Eater Pokedex = It wolfs down its weight in food once a day, swallowing food whole with almost no chewing. WildItemCommon = LEFTOVERS @@ -14612,7 +14612,7 @@ StepsToHatch = 6425 Height = 0.7 Weight = 20.2 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. BattlerPlayerX = -9 @@ -14644,7 +14644,7 @@ StepsToHatch = 6425 Height = 1.2 Weight = 54.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. BattlerPlayerX = 8 @@ -14675,7 +14675,7 @@ StepsToHatch = 7710 Height = 0.8 Weight = 49.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. BattlerPlayerX = 0 @@ -14706,7 +14706,7 @@ StepsToHatch = 7710 Height = 2.0 Weight = 300.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. BattlerPlayerX = 2 @@ -14738,7 +14738,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 12.0 Color = Purple -Shape = 14 +Shape = Insectoid Kind = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. WildItemUncommon = POISONBARB @@ -14771,7 +14771,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 61.5 Color = Purple -Shape = 14 +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. WildItemUncommon = POISONBARB @@ -14804,7 +14804,7 @@ StepsToHatch = 2570 Height = 0.7 Weight = 23.0 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. WildItemUncommon = BLACKSLUDGE @@ -14837,7 +14837,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 44.4 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. WildItemUncommon = BLACKSLUDGE @@ -14868,7 +14868,7 @@ StepsToHatch = 6425 Height = 1.4 Weight = 27.0 Color = Green -Shape = 10 +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. BattlerPlayerX = -2 @@ -14899,7 +14899,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 7.0 Color = Blue -Shape = 3 +Shape = Finned Kind = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. WildItemUncommon = RINDOBERRY @@ -14931,7 +14931,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 24.0 Color = Blue -Shape = 3 +Shape = Finned Kind = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. WildItemUncommon = RINDOBERRY @@ -14964,7 +14964,7 @@ StepsToHatch = 6425 Height = 1.0 Weight = 65.0 Color = Blue -Shape = 9 +Shape = Winged Kind = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. BattlerPlayerX = -1 @@ -14998,7 +14998,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 50.5 Color = White -Shape = 6 +Shape = BipedalTail Kind = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. WildItemUncommon = NEVERMELTICE @@ -15031,7 +15031,7 @@ StepsToHatch = 5140 Height = 2.2 Weight = 135.5 Color = White -Shape = 6 +Shape = BipedalTail Kind = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. WildItemUncommon = NEVERMELTICE @@ -15063,7 +15063,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 34.0 Color = Black -Shape = 6 +Shape = BipedalTail Kind = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. WildItemCommon = GRIPCLAW @@ -15096,7 +15096,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 180.0 Color = Gray -Shape = 4 +Shape = HeadArms Kind = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. WildItemUncommon = METALCOAT @@ -15127,7 +15127,7 @@ StepsToHatch = 5140 Height = 1.7 Weight = 140.0 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. WildItemUncommon = LAGGINGTAIL @@ -15159,7 +15159,7 @@ StepsToHatch = 5140 Height = 2.4 Weight = 282.8 Color = Gray -Shape = 6 +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. BattlerPlayerX = 1 @@ -15189,7 +15189,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 128.6 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. BattlerPlayerX = 0 @@ -15219,7 +15219,7 @@ StepsToHatch = 6425 Height = 1.8 Weight = 138.6 Color = Yellow -Shape = 6 +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. WildItemUncommon = ELECTIRIZER @@ -15250,7 +15250,7 @@ StepsToHatch = 6425 Height = 1.6 Weight = 68.0 Color = Red -Shape = 6 +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. WildItemUncommon = MAGMARIZER @@ -15282,7 +15282,7 @@ StepsToHatch = 2570 Height = 1.5 Weight = 38.0 Color = White -Shape = 9 +Shape = Winged Kind = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. BattlerPlayerX = -3 @@ -15313,7 +15313,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 51.5 Color = Green -Shape = 13 +Shape = MultiWinged Kind = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. WildItemUncommon = WIDELENS @@ -15344,7 +15344,7 @@ StepsToHatch = 8995 Height = 1.0 Weight = 25.5 Color = Green -Shape = 8 +Shape = Quadruped Kind = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. BattlerPlayerX = -3 @@ -15374,7 +15374,7 @@ StepsToHatch = 8995 Height = 0.8 Weight = 25.9 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. BattlerPlayerX = -3 @@ -15405,7 +15405,7 @@ StepsToHatch = 5140 Height = 2.0 Weight = 42.5 Color = Purple -Shape = 9 +Shape = Winged Kind = Fang Scorp Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! BattlerPlayerX = 3 @@ -15436,7 +15436,7 @@ StepsToHatch = 5140 Height = 2.5 Weight = 291.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. BattlerPlayerX = -1 @@ -15466,7 +15466,7 @@ StepsToHatch = 5140 Height = 0.9 Weight = 34.0 Color = Red -Shape = 4 +Shape = HeadArms Kind = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. BattlerPlayerX = 2 @@ -15497,7 +15497,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 52.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. BattlerPlayerX = 1 @@ -15528,7 +15528,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 340.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. WildItemUncommon = HARDSTONE @@ -15558,7 +15558,7 @@ StepsToHatch = 6425 Height = 2.2 Weight = 106.6 Color = Black -Shape = 4 +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. WildItemUncommon = KASIBBERRY @@ -15590,7 +15590,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 26.6 Color = White -Shape = 4 +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. WildItemUncommon = BABIRIBERRY @@ -15621,7 +15621,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 0.3 Color = Red -Shape = 1 +Shape = Head Kind = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Normal Rotom @@ -15651,7 +15651,7 @@ StepsToHatch = 20560 Height = 0.3 Weight = 0.3 Color = Yellow -Shape = 6 +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. BattlerPlayerX = -1 @@ -15680,7 +15680,7 @@ StepsToHatch = 20560 Height = 0.3 Weight = 0.3 Color = Pink -Shape = 6 +Shape = BipedalTail Kind = Emotion Pokedex = Known as “The Being of Emotion.” It taught humans the nobility of sorrow, pain, and joy. BattlerPlayerX = 1 @@ -15709,7 +15709,7 @@ StepsToHatch = 20560 Height = 0.3 Weight = 0.3 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -15740,7 +15740,7 @@ StepsToHatch = 30840 Height = 5.4 Weight = 683.0 Color = White -Shape = 8 +Shape = Quadruped Kind = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. BattlerPlayerX = 1 @@ -15771,7 +15771,7 @@ StepsToHatch = 30840 Height = 4.2 Weight = 336.0 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. BattlerPlayerX = 0 @@ -15802,7 +15802,7 @@ StepsToHatch = 2570 Height = 1.7 Weight = 430.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 2 @@ -15831,7 +15831,7 @@ StepsToHatch = 30840 Height = 3.7 Weight = 420.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. BattlerPlayerX = 0 @@ -15862,7 +15862,7 @@ StepsToHatch = 30840 Height = 4.5 Weight = 750.0 Color = Black -Shape = 10 +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 @@ -15892,7 +15892,7 @@ StepsToHatch = 30840 Height = 1.5 Weight = 85.6 Color = Yellow -Shape = 2 +Shape = Serpentine Kind = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. BattlerPlayerX = -5 @@ -15921,7 +15921,7 @@ StepsToHatch = 10280 Height = 0.4 Weight = 3.1 Color = Blue -Shape = 4 +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. BattlerPlayerX = -9 @@ -15950,7 +15950,7 @@ StepsToHatch = 2570 Height = 0.3 Weight = 1.4 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. BattlerPlayerX = -9 @@ -15979,7 +15979,7 @@ StepsToHatch = 30840 Height = 1.5 Weight = 50.5 Color = Black -Shape = 12 +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. BattlerPlayerX = 0 @@ -16008,7 +16008,7 @@ StepsToHatch = 30840 Height = 0.2 Weight = 2.1 Color = Green -Shape = 8 +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 @@ -16041,7 +16041,7 @@ StepsToHatch = 30840 Height = 3.2 Weight = 320.0 Color = White -Shape = 8 +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 @@ -16072,7 +16072,7 @@ StepsToHatch = 30840 Height = 0.4 Weight = 4.0 Color = Yellow -Shape = 12 +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. BattlerPlayerX = 0 @@ -16103,7 +16103,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 8.1 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. BattlerPlayerX = -2 @@ -16134,7 +16134,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 16.0 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. BattlerPlayerX = 0 @@ -16165,7 +16165,7 @@ StepsToHatch = 5140 Height = 3.3 Weight = 63.0 Color = Green -Shape = 2 +Shape = Serpentine Kind = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. BattlerPlayerX = -3 @@ -16196,7 +16196,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.9 Color = Red -Shape = 8 +Shape = Quadruped Kind = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. BattlerPlayerX = -4 @@ -16228,7 +16228,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 55.5 Color = Red -Shape = 6 +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. BattlerPlayerX = -1 @@ -16260,7 +16260,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 150.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 1 @@ -16291,7 +16291,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 5.9 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -16322,7 +16322,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 24.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. BattlerPlayerX = 2 @@ -16353,7 +16353,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 94.6 Color = Blue -Shape = 8 +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. BattlerPlayerX = -1 @@ -16384,7 +16384,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 11.6 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. BattlerPlayerX = -1 @@ -16415,7 +16415,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 27.0 Color = Brown -Shape = 6 +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. BattlerPlayerX = -2 @@ -16446,7 +16446,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 4.1 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. BattlerPlayerX = 1 @@ -16477,7 +16477,7 @@ StepsToHatch = 3855 Height = 0.9 Weight = 14.7 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. BattlerPlayerX = -3 @@ -16508,7 +16508,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 61.0 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. BattlerPlayerX = -1 @@ -16539,7 +16539,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 10.1 Color = Purple -Shape = 8 +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. BattlerPlayerX = 2 @@ -16570,7 +16570,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 37.5 Color = Purple -Shape = 8 +Shape = Quadruped Kind = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. BattlerPlayerX = 0 @@ -16601,7 +16601,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 10.5 Color = Green -Shape = 6 +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. WildItemCommon = ORANBERRY @@ -16634,7 +16634,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 30.5 Color = Green -Shape = 6 +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. WildItemCommon = ORANBERRY @@ -16667,7 +16667,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 11.0 Color = Red -Shape = 6 +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. WildItemCommon = ORANBERRY @@ -16700,7 +16700,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 28.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. WildItemCommon = ORANBERRY @@ -16733,7 +16733,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 13.5 Color = Blue -Shape = 6 +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. WildItemCommon = ORANBERRY @@ -16766,7 +16766,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 29.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. WildItemCommon = ORANBERRY @@ -16799,7 +16799,7 @@ StepsToHatch = 2570 Height = 0.6 Weight = 23.3 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -16830,7 +16830,7 @@ StepsToHatch = 2570 Height = 1.1 Weight = 60.5 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. BattlerPlayerX = 6 @@ -16862,7 +16862,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.1 Color = Gray -Shape = 9 +Shape = Winged Kind = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. BattlerPlayerX = -3 @@ -16894,7 +16894,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 15.0 Color = Gray -Shape = 9 +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. BattlerPlayerX = 0 @@ -16926,7 +16926,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 29.0 Color = Gray -Shape = 9 +Shape = Winged Kind = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. BattlerPlayerX = -3 @@ -16957,7 +16957,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 29.8 Color = Black -Shape = 8 +Shape = Quadruped Kind = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. WildItemCommon = CHERIBERRY @@ -16989,7 +16989,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 79.5 Color = Black -Shape = 8 +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. WildItemCommon = CHERIBERRY @@ -17021,7 +17021,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 18.0 Color = Blue -Shape = 7 +Shape = HeadLegs Kind = Mantle Pokedex = They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core. WildItemCommon = EVERSTONE @@ -17054,7 +17054,7 @@ StepsToHatch = 3855 Height = 0.9 Weight = 102.0 Color = Blue -Shape = 10 +Shape = Multiped Kind = Ore Pokedex = Because its energy was too great to be contained, the energy leaked and formed orange crystals. WildItemCommon = EVERSTONE @@ -17087,7 +17087,7 @@ StepsToHatch = 3855 Height = 1.7 Weight = 260.0 Color = Blue -Shape = 10 +Shape = Multiped Kind = Compressed Pokedex = The solar energy absorbed by its body's orange crystals is magnified internally and fired from its mouth. WildItemCommon = EVERSTONE @@ -17121,7 +17121,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 2.1 Color = Blue -Shape = 9 +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. BattlerPlayerX = 2 @@ -17153,7 +17153,7 @@ StepsToHatch = 3855 Height = 0.9 Weight = 10.5 Color = Blue -Shape = 9 +Shape = Winged Kind = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. BattlerPlayerX = -3 @@ -17184,7 +17184,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 8.5 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. BattlerPlayerX = 3 @@ -17216,7 +17216,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 40.4 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. BattlerPlayerX = -1 @@ -17247,7 +17247,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 31.0 Color = Pink -Shape = 6 +Shape = BipedalTail Kind = Hearing Pokedex = Its auditory sense is astounding. It has a radar-like ability to understand its surrounding through slight sounds. WildItemCommon = ORANBERRY @@ -17280,7 +17280,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 12.5 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. BattlerPlayerX = -1 @@ -17311,7 +17311,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 40.0 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. BattlerPlayerX = 2 @@ -17342,7 +17342,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 87.0 Color = Brown -Shape = 12 +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. BattlerPlayerX = 3 @@ -17373,7 +17373,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 4.5 Color = Blue -Shape = 3 +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. WildItemCommon = PECHABERRY @@ -17406,7 +17406,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 17.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. WildItemCommon = PECHABERRY @@ -17439,7 +17439,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 62.0 Color = Blue -Shape = 12 +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. WildItemCommon = PECHABERRY @@ -17470,7 +17470,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 55.5 Color = Red -Shape = 12 +Shape = Bipedal Kind = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. WildItemUncommon = BLACKBELT @@ -17502,7 +17502,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 51.0 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. WildItemUncommon = BLACKBELT @@ -17536,7 +17536,7 @@ StepsToHatch = 3855 Height = 0.3 Weight = 2.5 Color = Yellow -Shape = 14 +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. WildItemUncommon = MENTALHERB @@ -17569,7 +17569,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 7.3 Color = Green -Shape = 4 +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. WildItemUncommon = MENTALHERB @@ -17602,7 +17602,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 20.5 Color = Yellow -Shape = 12 +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. WildItemUncommon = MENTALHERB @@ -17635,7 +17635,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 5.3 Color = Red -Shape = 14 +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. WildItemCommon = PECHABERRY @@ -17669,7 +17669,7 @@ StepsToHatch = 3855 Height = 1.2 Weight = 58.5 Color = Gray -Shape = 1 +Shape = Head Kind = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. WildItemCommon = PECHABERRY @@ -17703,7 +17703,7 @@ StepsToHatch = 5140 Height = 2.5 Weight = 200.5 Color = Red -Shape = 14 +Shape = Insectoid Kind = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. WildItemCommon = PECHABERRY @@ -17736,7 +17736,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 0.6 Color = Green -Shape = 1 +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. BattlerPlayerX = 0 @@ -17767,7 +17767,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 6.6 Color = Green -Shape = 12 +Shape = Bipedal Kind = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. BattlerPlayerX = 0 @@ -17798,7 +17798,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 6.6 Color = Green -Shape = 5 +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. BattlerPlayerX = 0 @@ -17829,7 +17829,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 16.3 Color = Green -Shape = 5 +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. BattlerPlayerX = 1 @@ -17860,7 +17860,7 @@ StepsToHatch = 10280 Height = 1.0 Weight = 18.0 Color = Green -Shape = 3 +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 @@ -17894,7 +17894,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 15.2 Color = Brown -Shape = 8 +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. BattlerPlayerX = -2 @@ -17926,7 +17926,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 33.4 Color = Brown -Shape = 8 +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. BattlerPlayerX = 3 @@ -17958,7 +17958,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 96.3 Color = Red -Shape = 6 +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. BattlerPlayerX = 2 @@ -17989,7 +17989,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 37.5 Color = Red -Shape = 12 +Shape = Bipedal Kind = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. WildItemCommon = RAWSTBERRY @@ -18021,7 +18021,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 92.9 Color = Red -Shape = 8 +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 @@ -18054,7 +18054,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 28.0 Color = Green -Shape = 5 +Shape = HeadBase Kind = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. WildItemUncommon = MIRACLESEED @@ -18087,7 +18087,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 14.5 Color = Red -Shape = 14 +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. WildItemUncommon = HARDSTONE @@ -18121,7 +18121,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 200.0 Color = Red -Shape = 14 +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. WildItemUncommon = HARDSTONE @@ -18155,7 +18155,7 @@ StepsToHatch = 3855 Height = 0.6 Weight = 11.8 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. WildItemUncommon = SHEDSHELL @@ -18188,7 +18188,7 @@ StepsToHatch = 3855 Height = 1.1 Weight = 30.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. WildItemUncommon = SHEDSHELL @@ -18221,7 +18221,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 14.0 Color = Black -Shape = 9 +Shape = Winged Kind = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. BattlerPlayerX = 7 @@ -18251,7 +18251,7 @@ StepsToHatch = 6425 Height = 0.5 Weight = 1.5 Color = Black -Shape = 4 +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. WildItemUncommon = SPELLTAG @@ -18282,7 +18282,7 @@ StepsToHatch = 6425 Height = 1.7 Weight = 76.5 Color = Yellow -Shape = 5 +Shape = HeadBase Kind = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. WildItemUncommon = SPELLTAG @@ -18315,7 +18315,7 @@ StepsToHatch = 7710 Height = 0.7 Weight = 16.5 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -18347,7 +18347,7 @@ StepsToHatch = 7710 Height = 1.2 Weight = 81.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. BattlerPlayerX = -1 @@ -18378,7 +18378,7 @@ StepsToHatch = 7710 Height = 0.5 Weight = 9.5 Color = Yellow -Shape = 9 +Shape = Winged Kind = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. BattlerPlayerX = 0 @@ -18409,7 +18409,7 @@ StepsToHatch = 7710 Height = 1.4 Weight = 32.0 Color = Yellow -Shape = 9 +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. BattlerPlayerX = 4 @@ -18440,7 +18440,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 31.0 Color = Green -Shape = 12 +Shape = Bipedal Kind = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. WildItemUncommon = BLACKSLUDGE @@ -18473,7 +18473,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 107.3 Color = Green -Shape = 12 +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. WildItemCommon = BLACKSLUDGE @@ -18506,7 +18506,7 @@ StepsToHatch = 6425 Height = 0.7 Weight = 12.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. BattlerPlayerX = -1 @@ -18536,7 +18536,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 81.1 Color = Gray -Shape = 6 +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. BattlerPlayerX = 0 @@ -18567,7 +18567,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 5.8 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. WildItemCommon = CHESTOBERRY @@ -18599,7 +18599,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 7.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. WildItemCommon = CHESTOBERRY @@ -18631,7 +18631,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 5.8 Color = Purple -Shape = 12 +Shape = Bipedal Kind = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. WildItemCommon = PERSIMBERRY @@ -18663,7 +18663,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 18.0 Color = Purple -Shape = 12 +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. WildItemCommon = PERSIMBERRY @@ -18695,7 +18695,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 44.0 Color = Purple -Shape = 12 +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. WildItemCommon = PERSIMBERRY @@ -18727,7 +18727,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 1.0 Color = Green -Shape = 1 +Shape = Head Kind = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. WildItemCommon = PERSIMBERRY @@ -18759,7 +18759,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 8.0 Color = Green -Shape = 1 +Shape = Head Kind = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. WildItemCommon = PERSIMBERRY @@ -18791,7 +18791,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 20.1 Color = Green -Shape = 4 +Shape = HeadArms Kind = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. WildItemCommon = PERSIMBERRY @@ -18824,7 +18824,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 5.5 Color = Blue -Shape = 9 +Shape = Winged Kind = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. BattlerPlayerX = -4 @@ -18856,7 +18856,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 24.2 Color = White -Shape = 9 +Shape = Winged Kind = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. BattlerPlayerX = -2 @@ -18887,7 +18887,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 5.7 Color = White -Shape = 5 +Shape = HeadBase Kind = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. BattlerPlayerX = 1 @@ -18918,7 +18918,7 @@ StepsToHatch = 5140 Height = 1.1 Weight = 41.0 Color = White -Shape = 5 +Shape = HeadBase Kind = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. BattlerPlayerX = 1 @@ -18949,7 +18949,7 @@ StepsToHatch = 5140 Height = 1.3 Weight = 57.5 Color = White -Shape = 11 +Shape = MultiBody Kind = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. BattlerPlayerX = 0 @@ -18981,7 +18981,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 19.5 Color = Pink -Shape = 8 +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 @@ -19014,7 +19014,7 @@ StepsToHatch = 5140 Height = 1.9 Weight = 92.5 Color = Brown -Shape = 8 +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 @@ -19047,7 +19047,7 @@ StepsToHatch = 5140 Height = 0.4 Weight = 5.0 Color = White -Shape = 8 +Shape = Quadruped Kind = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. WildItemCommon = CHERIBERRY @@ -19081,7 +19081,7 @@ StepsToHatch = 3855 Height = 0.5 Weight = 5.9 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. BattlerPlayerX = 1 @@ -19113,7 +19113,7 @@ StepsToHatch = 3855 Height = 1.0 Weight = 33.0 Color = Gray -Shape = 4 +Shape = HeadArms Kind = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. BattlerPlayerX = 3 @@ -19145,7 +19145,7 @@ StepsToHatch = 5140 Height = 0.2 Weight = 1.0 Color = White -Shape = 4 +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. WildItemCommon = TINYMUSHROOM @@ -19180,7 +19180,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 10.5 Color = White -Shape = 4 +Shape = HeadArms Kind = Mushroom Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémon are fooled by this. WildItemCommon = TINYMUSHROOM @@ -19215,7 +19215,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 33.0 Color = White -Shape = 10 +Shape = Multiped Kind = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. BattlerPlayerX = -1 @@ -19247,7 +19247,7 @@ StepsToHatch = 5140 Height = 2.2 Weight = 135.0 Color = White -Shape = 10 +Shape = Multiped Kind = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. BattlerPlayerX = 1 @@ -19278,7 +19278,7 @@ StepsToHatch = 10280 Height = 1.2 Weight = 31.6 Color = Pink -Shape = 3 +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. BattlerPlayerX = -2 @@ -19310,7 +19310,7 @@ StepsToHatch = 5140 Height = 0.1 Weight = 0.6 Color = Yellow -Shape = 14 +Shape = Insectoid Kind = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. BattlerPlayerX = 0 @@ -19342,7 +19342,7 @@ StepsToHatch = 5140 Height = 0.8 Weight = 14.3 Color = Yellow -Shape = 14 +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. BattlerPlayerX = 0 @@ -19373,7 +19373,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 18.8 Color = Gray -Shape = 1 +Shape = Head Kind = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. WildItemUncommon = STICKYBARB @@ -19405,7 +19405,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 110.0 Color = Gray -Shape = 10 +Shape = Multiped Kind = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. WildItemUncommon = STICKYBARB @@ -19436,7 +19436,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 21.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. BattlerPlayerX = 2 @@ -19467,7 +19467,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 51.0 Color = Gray -Shape = 11 +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. BattlerPlayerX = 1 @@ -19498,7 +19498,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 81.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. BattlerPlayerX = 1 @@ -19527,7 +19527,7 @@ StepsToHatch = 5140 Height = 0.2 Weight = 0.3 Color = White -Shape = 3 +Shape = Finned Kind = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. BattlerPlayerX = -4 @@ -19557,7 +19557,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 22.0 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -19587,7 +19587,7 @@ StepsToHatch = 5140 Height = 2.1 Weight = 80.5 Color = Blue -Shape = 3 +Shape = Finned Kind = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. BattlerPlayerX = -5 @@ -19618,7 +19618,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. BattlerPlayerX = 0 @@ -19649,7 +19649,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 34.5 Color = Brown -Shape = 12 +Shape = Bipedal Kind = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. BattlerPlayerX = -2 @@ -19681,7 +19681,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 3.1 Color = White -Shape = 5 +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. BattlerPlayerX = -1 @@ -19713,7 +19713,7 @@ StepsToHatch = 5140 Height = 0.6 Weight = 13.0 Color = Black -Shape = 4 +Shape = HeadArms Kind = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. BattlerPlayerX = -1 @@ -19745,7 +19745,7 @@ StepsToHatch = 5140 Height = 1.0 Weight = 34.3 Color = Black -Shape = 4 +Shape = HeadArms Kind = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. BattlerPlayerX = -2 @@ -19776,7 +19776,7 @@ StepsToHatch = 10280 Height = 0.6 Weight = 18.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 1 @@ -19807,7 +19807,7 @@ StepsToHatch = 10280 Height = 1.0 Weight = 36.0 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. BattlerPlayerX = -5 @@ -19838,7 +19838,7 @@ StepsToHatch = 10280 Height = 1.8 Weight = 105.5 Color = Yellow -Shape = 6 +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. BattlerPlayerX = -1 @@ -19869,7 +19869,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 8.5 Color = White -Shape = 6 +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. WildItemCommon = ASPEARBERRY @@ -19901,7 +19901,7 @@ StepsToHatch = 5140 Height = 2.6 Weight = 260.0 Color = White -Shape = 8 +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. WildItemCommon = ASPEARBERRY @@ -19931,7 +19931,7 @@ StepsToHatch = 6425 Height = 1.1 Weight = 148.0 Color = Blue -Shape = 1 +Shape = Head Kind = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. WildItemUncommon = NEVERMELTICE @@ -19963,7 +19963,7 @@ StepsToHatch = 3855 Height = 0.4 Weight = 7.7 Color = Red -Shape = 1 +Shape = Head Kind = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. BattlerPlayerX = -4 @@ -19994,7 +19994,7 @@ StepsToHatch = 3855 Height = 0.8 Weight = 25.3 Color = Red -Shape = 4 +Shape = HeadArms Kind = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. BattlerPlayerX = -4 @@ -20026,7 +20026,7 @@ StepsToHatch = 5140 Height = 0.7 Weight = 11.0 Color = Brown -Shape = 3 +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. WildItemUncommon = SOFTSAND @@ -20058,7 +20058,7 @@ StepsToHatch = 6425 Height = 0.9 Weight = 20.0 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. BattlerPlayerX = -1 @@ -20089,7 +20089,7 @@ StepsToHatch = 6425 Height = 1.4 Weight = 35.5 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. BattlerPlayerX = -3 @@ -20120,7 +20120,7 @@ StepsToHatch = 7710 Height = 1.6 Weight = 139.0 Color = Red -Shape = 6 +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. WildItemUncommon = DRAGONFANG @@ -20152,7 +20152,7 @@ StepsToHatch = 6425 Height = 1.0 Weight = 92.0 Color = Green -Shape = 12 +Shape = Bipedal Kind = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. WildItemUncommon = LIGHTCLAY @@ -20185,7 +20185,7 @@ StepsToHatch = 6425 Height = 2.8 Weight = 330.0 Color = Green -Shape = 12 +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. WildItemUncommon = LIGHTCLAY @@ -20218,7 +20218,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 10.2 Color = Red -Shape = 12 +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. BattlerPlayerX = 2 @@ -20250,7 +20250,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 70.0 Color = Red -Shape = 12 +Shape = Bipedal Kind = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. BattlerPlayerX = 0 @@ -20281,7 +20281,7 @@ StepsToHatch = 5140 Height = 1.6 Weight = 94.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. BattlerPlayerX = -1 @@ -20312,7 +20312,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 10.5 Color = White -Shape = 9 +Shape = Winged Kind = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. BattlerPlayerX = 1 @@ -20344,7 +20344,7 @@ StepsToHatch = 5140 Height = 1.5 Weight = 41.0 Color = Red -Shape = 9 +Shape = Winged Kind = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. BattlerPlayerX = -2 @@ -20376,7 +20376,7 @@ StepsToHatch = 5140 Height = 0.5 Weight = 9.0 Color = Brown -Shape = 9 +Shape = Winged Kind = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. BattlerPlayerX = 0 @@ -20408,7 +20408,7 @@ StepsToHatch = 5140 Height = 1.2 Weight = 39.5 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -20439,7 +20439,7 @@ StepsToHatch = 5140 Height = 1.4 Weight = 58.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. WildItemRare = FLAMEORB @@ -20472,7 +20472,7 @@ StepsToHatch = 5140 Height = 0.3 Weight = 33.0 Color = Gray -Shape = 14 +Shape = Insectoid Kind = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. BattlerPlayerX = 0 @@ -20503,7 +20503,7 @@ StepsToHatch = 10280 Height = 0.8 Weight = 17.3 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. BattlerPlayerX = 0 @@ -20534,7 +20534,7 @@ StepsToHatch = 10280 Height = 1.4 Weight = 50.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -20565,7 +20565,7 @@ StepsToHatch = 10280 Height = 1.8 Weight = 160.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. BattlerPlayerX = -2 @@ -20597,7 +20597,7 @@ StepsToHatch = 10280 Height = 1.1 Weight = 28.8 Color = White -Shape = 14 +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. BattlerPlayerX = 0 @@ -20629,7 +20629,7 @@ StepsToHatch = 10280 Height = 1.6 Weight = 46.0 Color = White -Shape = 13 +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. WildItemCommon = SILVERPOWDER @@ -20662,7 +20662,7 @@ StepsToHatch = 20560 Height = 2.1 Weight = 250.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -20692,7 +20692,7 @@ StepsToHatch = 20560 Height = 1.9 Weight = 260.0 Color = Gray -Shape = 8 +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. BattlerPlayerX = 0 @@ -20722,7 +20722,7 @@ StepsToHatch = 20560 Height = 2.0 Weight = 200.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. BattlerPlayerX = 0 @@ -20752,7 +20752,7 @@ StepsToHatch = 30840 Height = 1.5 Weight = 63.0 Color = Green -Shape = 4 +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 @@ -20784,7 +20784,7 @@ StepsToHatch = 30840 Height = 1.5 Weight = 61.0 Color = Blue -Shape = 4 +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 @@ -20815,7 +20815,7 @@ StepsToHatch = 30840 Height = 3.2 Weight = 330.0 Color = White -Shape = 9 +Shape = Winged Kind = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. BattlerPlayerX = 2 @@ -20845,7 +20845,7 @@ StepsToHatch = 30840 Height = 2.9 Weight = 345.0 Color = Black -Shape = 6 +Shape = BipedalTail Kind = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. BattlerPlayerX = 0 @@ -20876,7 +20876,7 @@ StepsToHatch = 30840 Height = 1.5 Weight = 68.0 Color = Brown -Shape = 4 +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 @@ -20907,7 +20907,7 @@ StepsToHatch = 30840 Height = 3.0 Weight = 325.0 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. BattlerPlayerX = -3 @@ -20937,7 +20937,7 @@ StepsToHatch = 20560 Height = 1.4 Weight = 48.5 Color = Yellow -Shape = 8 +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 @@ -20968,7 +20968,7 @@ StepsToHatch = 30840 Height = 0.6 Weight = 6.5 Color = White -Shape = 12 +Shape = Bipedal Kind = Melody Pokedex = Many famous songs have been inspired by the melodies that Meloetta plays. FormName = Aria Forme @@ -21002,7 +21002,7 @@ StepsToHatch = 30840 Height = 1.5 Weight = 82.5 Color = Purple -Shape = 12 +Shape = Bipedal Kind = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal diff --git a/PBS/Gen 5/pokemonforms.txt b/PBS/Gen 5/pokemonforms.txt index 97d6448dc..6fe5cbd88 100644 --- a/PBS/Gen 5/pokemonforms.txt +++ b/PBS/Gen 5/pokemonforms.txt @@ -231,7 +231,7 @@ HiddenAbility = LEVITATE TutorMoves = AERIALACE,AIRCUTTER,ANCIENTPOWER,AQUATAIL,BULLDOZE,CALMMIND,CHARGEBEAM,CUT,DARKPULSE,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,FURYCUTTER,GIGAIMPACT,GRAVITY,HEADBUTT,HIDDENPOWER,HONECLAWS,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,MUDSLAP,OMINOUSWIND,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNORE,SPITE,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,TWISTER,WILLOWISP Height = 6.9 Weight = 650.0 -Shape = 2 +Shape = Serpentine BattlerEnemyX = -2 BattlerEnemyY = -8 #------------------------------- @@ -359,7 +359,7 @@ EffortPoints = 0,0,0,3,0,0 Abilities = REGENERATOR HiddenAbility = REGENERATOR Height = 1.4 -Shape = 9 +Shape = Winged BattlerPlayerX = -2 BattlerEnemyX = 8 BattlerEnemyY = 11 @@ -371,7 +371,7 @@ EffortPoints = 0,0,0,0,3,0 Abilities = VOLTABSORB HiddenAbility = VOLTABSORB Height = 3.0 -Shape = 6 +Shape = BipedalTail BattlerPlayerX = -3 BattlerEnemyX = 2 BattlerEnemyY = 5 @@ -383,7 +383,7 @@ EffortPoints = 0,3,0,0,0,0 Abilities = INTIMIDATE HiddenAbility = INTIMIDATE Height = 1.3 -Shape = 8 +Shape = Quadruped BattlerPlayerX = -8 BattlerEnemyX = 3 BattlerEnemyY = 14 diff --git a/PBS/Gen 7/encounters.txt b/PBS/Gen 7/encounters.txt index 23964a3af..16ea7231c 100644 --- a/PBS/Gen 7/encounters.txt +++ b/PBS/Gen 7/encounters.txt @@ -1,471 +1,291 @@ # See the documentation on the wiki to learn how to edit this file. #------------------------------- -002 # Lappet Town -25,10,10 -Water - TENTACOOL,14,19 - MANTYKE,15,16 - REMORAID,14,16 - REMORAID,14,16 - REMORAID,14,16 +[002] # Lappet Town +Water,10 + 60,TENTACOOL,14,19 + 30,MANTYKE,15,16 + 10,REMORAID,14,16 OldRod - MAGIKARP,16,19 - MAGIKARP,16,19 + 100,MAGIKARP,16,19 GoodRod - BARBOACH,17,18 - SHELLDER,16,19 - KRABBY,15,16 + 60,BARBOACH,17,18 + 20,KRABBY,15,16 + 20,SHELLDER,16,19 SuperRod - CHINCHOU,17,19 - QWILFISH,16,19 - CORSOLA,15,18 - STARYU,15,17 - STARYU,15,17 + 40,CHINCHOU,17,19 + 40,QWILFISH,16,19 + 15,CORSOLA,15,18 + 5,STARYU,15,17 #------------------------------- -005 # Route 1 -25,10,10 -Land - RATTATA,11,14 - PIDGEY,11,14 - RATTATA,11,14 - PIDGEY,11,14 - RATTATA,11,14 - PIDGEY,11,14 - RATTATA,11,13 - PIDGEY,11,13 - RATTATA,11,13 - PIDGEY,11,13 - RATTATA,14 - PIDGEY,14 -LandNight - RATTATA,10,14 - HOOTHOOT,10,13 - RATTATA,10,14 - HOOTHOOT,10,13 - SPINARAK,8,12 - SPINARAK,8,12 - RATTATA,10,14 - HOOTHOOT,10,14 - RATTATA,10,14 - HOOTHOOT,10,14 - RATTATA,15 - HOOTHOOT,14 +[005] # Route 1 +Land,25 + 40,PIDGEY,11,14 + 40,RATTATA,11,14 + 9,PIDGEY,11,13 + 9,RATTATA,11,13 + 1,PIDGEY,14 + 1,RATTATA,14 +LandNight,25 + 39,RATTATA,10,14 + 30,HOOTHOOT,10,13 + 20,SPINARAK,8,12 + 9,HOOTHOOT,10,14 + 1,HOOTHOOT,14 + 1,RATTATA,15 #------------------------------- -021 # Route 2 -25,10,10 -Land - RATTATA,12,15 - RATTATA,12,15 - RATTATA,12,15 - POOCHYENA,11,15 - POOCHYENA,11,15 - POOCHYENA,11,15 - SHINX,10,12 - SHINX,10,12 - SHINX,10,11 - SHINX,10,11 - SHINX,10,11 - SHINX,10,11 -Water - MAGIKARP,7,10 - GOLDEEN,11,14 - STARYU,12,15 - STARYU,12,15 - STARYU,12,15 +[021] # Route 2 +Land,25 + 50,RATTATA,12,15 + 30,POOCHYENA,11,15 + 10,SHINX,10,12 + 10,SHINX,10,11 +Water,10 + 60,MAGIKARP,7,10 + 30,GOLDEEN,11,14 + 10,STARYU,12,15 OldRod - MAGIKARP,7,10 - MAGIKARP,9,15 + 70,MAGIKARP,7,10 + 30,MAGIKARP,9,15 GoodRod - GOLDEEN,12,14 - FINNEON,12,15 - MAGIKARP,12,17 + 60,GOLDEEN,12,14 + 20,FINNEON,12,15 + 20,MAGIKARP,12,17 SuperRod - GOLDEEN,12,14 - FINNEON,12,15 - STARYU,12,15 - STARYU,14,17 - STARYU,14,17 + 40,FINNEON,12,15 + 40,GOLDEEN,12,14 + 15,STARYU,12,15 + 5,STARYU,14,17 HeadbuttLow - PINECO,11,13 - LEDYBA,6,8 - PINECO,11,13 - SPINARAK,9,12 - LEDYBA,6,8 - SPINARAK,9,12 - SPINARAK,9,12 - MUNCHLAX,11,14 + 50,PINECO,11,13 + 30,LEDYBA,6,8 + 19,SPINARAK,9,12 + 1,MUNCHLAX,11,14 HeadbuttHigh - PINECO,11,13 - WURMPLE,6,8 - PINECO,11,13 - SPINARAK,9,12 - WURMPLE,6,8 - SPINARAK,9,12 - SPINARAK,9,12 - SPINARAK,9,12 + 50,PINECO,11,13 + 30,WURMPLE,6,8 + 20,SPINARAK,9,12 #------------------------------- -028 # Natural Park -25,10,10 -Land - CATERPIE,10 - WEEDLE,10 - PIDGEY,10,14 - PIDGEY,12,14 - SUNKERN,12 - SUNKERN,12 - METAPOD,10 - KAKUNA,10 - PIDGEY,10,14 - PIDGEY,12,14 - PIDGEY,10,14 - PIDGEY,12,14 -LandMorning - CATERPIE,10,12 - WEEDLE,10,12 - PIDGEY,10,14 - PIDGEY,10,14 - METAPOD,10 - KAKUNA,10 - METAPOD,10 - KAKUNA,10 - CATERPIE,10,12 - WEEDLE,10,12 - CATERPIE,10,12 - WEEDLE,10,12 -LandNight - HOOTHOOT,10,14 - SPINARAK,10,15 - HOOTHOOT,10,14 - SPINARAK,10,15 - PINECO,9,13 - PINECO,9,13 - NATU,12,14 - NATU,12,14 - DROWZEE,9,15 - DROWZEE,9,15 - DROWZEE,9,15 - DROWZEE,9,15 -BugContest - CATERPIE,7,18 - WEEDLE,7,18 - METAPOD,9,18 - KAKUNA,9,18 - PARAS,10,17 - VENONAT,10,16 - BUTTERFREE,12,15 - BEEDRILL,12,15 - SCYTHER,13,14 - PINSIR,13,14 - SCYTHER,13,14 - PINSIR,13,14 +[028] # Natural Park +Land,25 + 20,CATERPIE,10 + 20,SUNKERN,12 + 20,WEEDLE,10 + 15,PIDGEY,10,14 + 15,PIDGEY,12,14 + 5,KAKUNA,10 + 5,METAPOD,10 +LandNight,25 + 30,HOOTHOOT,10,14 + 30,SPINARAK,10,15 + 20,PINECO,9,13 + 10,DROWZEE,9,15 + 10,NATU,12,14 +LandMorning,25 + 25,CATERPIE,10,12 + 25,WEEDLE,10,12 + 20,PIDGEY,10,14 + 15,KAKUNA,10 + 15,METAPOD,10 +BugContest,25 + 20,CATERPIE,7,18 + 20,WEEDLE,7,18 + 10,KAKUNA,9,18 + 10,METAPOD,9,18 + 10,PARAS,10,17 + 10,VENONAT,10,16 + 5,BEEDRILL,12,15 + 5,BUTTERFREE,12,15 + 5,PINSIR,13,14 + 5,SCYTHER,13,14 #------------------------------- -031 # Route 3 -25,10,10 -Land - NIDORANfE,12,15 - NIDORANmA,12,15 - NIDORANfE,12,15 - NIDORANmA,12,15 - PIKACHU,14,17 - PIKACHU,14,17 - PONYTA,13,15 - PONYTA,13,15 - EEVEE,15 - EEVEE,15 - EEVEE,15 - EEVEE,15 -Water - SURSKIT,13,14 - LOTAD,14 - LOTAD,14 - LOTAD,15 - LOTAD,15 -RockSmash - NOSEPASS,13,14 - GEODUDE,12,15 - GEODUDE,12,15 - GEODUDE,12,15 - GEODUDE,12,15 +[031] # Route 3 +Land,25 + 30,NIDORANfE,12,15 + 30,NIDORANmA,12,15 + 20,PIKACHU,14,17 + 10,EEVEE,15 + 10,PONYTA,13,15 +Water,10 + 60,SURSKIT,13,14 + 35,LOTAD,14 + 5,LOTAD,15 OldRod - MAGIKARP,6,11 - MAGIKARP,10,17 + 70,MAGIKARP,6,11 + 30,MAGIKARP,10,17 GoodRod - POLIWAG,12,15 - PSYDUCK,11,14 - WOOPER,13,17 + 60,POLIWAG,12,15 + 20,PSYDUCK,11,14 + 20,WOOPER,13,17 SuperRod - CHINCHOU,11,12 - REMORAID,12,14 - LUVDISC,10,16 - LUVDISC,10,16 - LUVDISC,10,16 + 40,CHINCHOU,11,12 + 40,REMORAID,12,14 + 20,LUVDISC,10,16 +RockSmash + 60,NOSEPASS,13,14 + 40,GEODUDE,12,15 HeadbuttLow - PINECO,14,17 - COMBEE,15,17 - PINECO,14,16 - HERACROSS,16,18 - COMBEE,15,16 - HERACROSS,16,17 - HERACROSS,16,17 - MUNCHLAX,13,18 + 30,PINECO,14,17 + 25,COMBEE,15,17 + 20,PINECO,14,16 + 10,HERACROSS,16,18 + 9,HERACROSS,16,17 + 5,COMBEE,15,16 + 1,MUNCHLAX,13,18 HeadbuttHigh - SEEDOT,14,17 - SHROOMISH,14,17 - SEEDOT,14,17 - BURMY,12,15 - SHROOMISH,14,17 - BURMY,12,15 - BURMY,12,15 - BURMY,12,15 + 50,SEEDOT,14,17 + 30,SHROOMISH,14,17 + 20,BURMY,12,15 #------------------------------- -034 # Ice Cave -25,10,10 -Cave - SWINUB,16,18 - SWINUB,16,18 - SNEASEL,14,16 - SNEASEL,14,16 - SNORUNT,12,15 - SNORUNT,12,15 - SNOVER,14 - SNOVER,14 - SMOOCHUM,11,14 - SMOOCHUM,11,14 - SMOOCHUM,11,14 - SMOOCHUM,11,14 +[034] # Ice Cave +Cave,10 + 40,SWINUB,16,18 + 20,SNEASEL,14,16 + 20,SNORUNT,12,15 + 10,SMOOCHUM,11,14 + 10,SNOVER,14 #------------------------------- -039 # Route 4 -25,10,10 -Land - SHELLOS_1,12,15 - SHELLOS_1,12,15 - SHELLOS_1,12,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 +[039] # Route 4 +Land,25 + 50,SHELLOS_1,12,15 + 40,GRIMER,13,15 + 10,MURKROW,12,14 #------------------------------- -041 # Route 5 -25,10,10 -Land - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - SPEAROW,13,16 - SPEAROW,13,16 - SPEAROW,13,16 - SPEAROW,13,16 - SPEAROW,13,16 - SLUGMA,13,14 - SLUGMA,13,14 - SLUGMA,13,14 - SLUGMA,13,14 +[041] # Route 5 +Land,25 + 50,GRIMER,13,15 + 40,SPEAROW,13,16 + 10,SLUGMA,13,14 #------------------------------- -044 # Route 6 -25,10,10 -Land - SHELLOS_1,12,15 - SHELLOS_1,12,15 - SHELLOS_1,12,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - GRIMER,13,15 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 - MURKROW,12,14 +[044] # Route 6 +Land,25 + 50,SHELLOS_1,12,15 + 40,GRIMER,13,15 + 10,MURKROW,12,14 #------------------------------- -047 # Route 7 -25,10,10 -Land - SHELLOS,12,15 - SHELLOS,12,15 - SHELLOS,12,15 - BIDOOF,14,17 - BIDOOF,14,17 - BIDOOF,14,17 - MURKROW,12,14 - MURKROW,12,14 - WURMPLE,9,12 - WURMPLE,9,12 - WURMPLE,9,12 - WURMPLE,9,12 +[047] # Route 7 +Land,25 + 50,SHELLOS,12,15 + 30,BIDOOF,14,17 + 10,MURKROW,12,14 + 10,WURMPLE,9,12 RockSmash - NOSEPASS,13,14 - NOSEPASS,13,14 - GEODUDE,12,15 - GEODUDE,12,15 - GEODUDE,12,15 + 90,NOSEPASS,13,14 + 10,GEODUDE,12,15 #------------------------------- -049 # Rock Cave -25,10,10 -Cave - NOSEPASS,14,15 - NOSEPASS,13,14 - MAGNETON,14,17 - MAGNETON,14,17 - MAGNETON,14,16 - MAGNETON,14,16 - GEODUDE,13,15 - GEODUDE,13,15 - MAWILE,14,16 - MAWILE,14,16 - MAWILE,14,16 - MAWILE,14,16 +[049] # Rock Cave +Cave,10 + 20,MAGNETON,14,16 + 20,MAGNETON,14,17 + 20,NOSEPASS,14,15 + 20,NOSEPASS,13,14 + 10,GEODUDE,13,15 + 10,MAWILE,14,16 #------------------------------- -050 # Rock Cave -25,10,10 -Cave - NOSEPASS,14,15 - NOSEPASS,13,14 - MAGNETON,14,17 - MAGNETON,14,17 - MAGNETON,14,16 - MAGNETON,14,16 - GEODUDE,13,15 - GEODUDE,13,15 - BURMY,14,16 - BURMY,14,16 - BURMY,14,16 - BURMY,14,16 +[050] # Rock Cave +Cave,10 + 20,MAGNETON,14,16 + 20,MAGNETON,14,17 + 20,NOSEPASS,14,15 + 20,NOSEPASS,13,14 + 10,BURMY,14,16 + 10,GEODUDE,13,15 #------------------------------- -051 # Dungeon -25,10,10 -Cave - PICHU,1 - CLEFFA,1 - IGGLYBUFF,1 - IGGLYBUFF,1 - CHINGLING,1 - CHINGLING,1 - RIOLU,1 - RIOLU,1 - TYROGUE,1 - TYROGUE,1 - TYROGUE,1 - TYROGUE,1 +[051] # Dungeon +Cave,10 + 20,CHINGLING,1 + 20,CLEFFA,1 + 20,IGGLYBUFF,1 + 20,PICHU,1 + 10,RIOLU,1 + 10,TYROGUE,1 #------------------------------- -066 # Safari Zone -25,10,10 -Land - NIDORANfE,15,16 - NIDORANmA,15,16 - DODUO,13,15 - DODUO,13,15 - ABRA,12,15 - ABRA,12,15 - TANGELA,14,16 - TANGELA,14,16 - HOPPIP,13,17 - HOPPIP,13,17 - HOPPIP,13,17 - HOPPIP,13,17 +[066] # Safari Zone +Land,25 + 20,ABRA,12,15 + 20,DODUO,13,15 + 20,NIDORANfE,15,16 + 20,NIDORANmA,15,16 + 10,HOPPIP,13,17 + 10,TANGELA,14,16 #------------------------------- -068 # Safari Zone -25,10,10 -Land - RHYHORN,16,18 - EXEGGCUTE,15,18 - VENONAT,15,17 - VENONAT,15,18 - AIPOM,14,17 - GIRAFARIG,16,17 - TAUROS,15,16 - HERACROSS,15,17 - SCYTHER,16 - PINSIR,16 - KANGASKHAN,19 - CHANSEY,17 -Water - PSYDUCK,16,18 - MARILL,15,18 - SLOWPOKE,14,16 - BUIZEL,15,17 - BUIZEL,15,17 +[068] # Safari Zone +Land,25 + 20,EXEGGCUTE,15,18 + 20,RHYHORN,16,18 + 10,AIPOM,14,17 + 10,GIRAFARIG,16,17 + 10,VENONAT,15,17 + 10,VENONAT,15,18 + 5,HERACROSS,15,17 + 5,TAUROS,15,16 + 4,PINSIR,16 + 4,SCYTHER,16 + 1,CHANSEY,17 + 1,KANGASKHAN,19 +Water,10 + 60,PSYDUCK,16,18 + 30,MARILL,15,18 + 5,BUIZEL,15,17 + 5,SLOWPOKE,14,16 OldRod - MAGIKARP,17,21 - MAGIKARP,17,20 + 70,MAGIKARP,17,21 + 30,MAGIKARP,17,20 GoodRod - MAGIKARP,16,20 - FEEBAS,16,20 - POLIWAG,17,18 + 60,MAGIKARP,16,20 + 20,FEEBAS,16,20 + 20,POLIWAG,17,18 SuperRod - GOLDEEN,16,18 - REMORAID,17,19 - CARVANHA,16,17 - FINNEON,15,18 - DRATINI,17 + 40,GOLDEEN,16,18 + 40,REMORAID,17,19 + 15,CARVANHA,16,17 + 4,FINNEON,15,18 + 1,DRATINI,17 #------------------------------- -069 # Route 8 -25,10,10 -Land - ODDISH,15,17 - MAREEP,16,18 - LOTAD,15,17 - LOTAD,15,18 - DITTO,15,17 - DITTO,16,18 - BONSLY,14,17 - BONSLY,14,16 - BONSLY,14,16 - BONSLY,14,16 - BONSLY,15,16 - BONSLY,15 -Water - TENTACOOL,14,19 - MANTYKE,15,16 - REMORAID,14,16 - REMORAID,14,16 - REMORAID,14,16 +[069] # Route 8 +Land,25 + 20,MAREEP,16,18 + 20,ODDISH,15,17 + 13,BONSLY,14,16 + 10,DITTO,15,17 + 10,DITTO,16,18 + 10,LOTAD,15,18 + 10,LOTAD,15,17 + 5,BONSLY,14,17 + 1,BONSLY,15,16 + 1,BONSLY,15 +Water,10 + 60,TENTACOOL,14,19 + 30,MANTYKE,15,16 + 10,REMORAID,14,16 OldRod - MAGIKARP,16,19 - MAGIKARP,16,19 + 100,MAGIKARP,16,19 GoodRod - BARBOACH,17,18 - SHELLDER,16,19 - KRABBY,15,16 + 60,BARBOACH,17,18 + 20,KRABBY,15,16 + 20,SHELLDER,16,19 SuperRod - CHINCHOU,17,19 - QWILFISH,16,19 - CORSOLA,15,18 - STARYU,15,17 - STARYU,15,17 + 40,CHINCHOU,17,19 + 40,QWILFISH,16,19 + 15,CORSOLA,15,18 + 5,STARYU,15,17 #------------------------------- -070 # Underwater -25,10,10 -Land - CLAMPERL,18,20 - SHELLDER,18,20 - CLAMPERL,18,19 - SHELLDER,18,19 - CHINCHOU,17,21 - CHINCHOU,17,21 - CORSOLA,17,20 - CORSOLA,17,20 - RELICANTH,16,19 - RELICANTH,16,19 - RELICANTH,16,19 - RELICANTH,16,19 +[070] # Underwater +Land,25 + 20,CHINCHOU,17,21 + 20,CLAMPERL,18,20 + 20,SHELLDER,18,20 + 10,CLAMPERL,18,19 + 10,CORSOLA,17,20 + 10,RELICANTH,16,19 + 10,SHELLDER,18,19 #------------------------------- -075 # Tiall Region -25,10,10 -Land - RATTATA_1,11,14 - GEODUDE_1,11,14 - SANDSHREW_1,11,14 - VULPIX_1,11,14 - DIGLETT_1,11,14 - MEOWTH_1,11,14 - PIKACHU,11,14 - PIKACHU,11,14 - CUBONE,11,14 - CUBONE,11,14 - CUBONE,11,14 - CUBONE,11,14 +[075] # Tiall Region +Land,25 + 20,GEODUDE_1,11,14 + 20,RATTATA_1,11,14 + 10,CUBONE,11,14 + 10,DIGLETT_1,11,14 + 10,MEOWTH_1,11,14 + 10,PIKACHU,11,14 + 10,SANDSHREW_1,11,14 + 10,VULPIX_1,11,14 diff --git a/PBS/Gen 7/moves.txt b/PBS/Gen 7/moves.txt index 0108b952f..2ee7c9697 100644 --- a/PBS/Gen 7/moves.txt +++ b/PBS/Gen 7/moves.txt @@ -121,8 +121,8 @@ 115,DRAININGKISS,Draining Kiss,14F,50,FAIRY,Special,100,10,0,NearOther,0,abef,"The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage dealt." 116,DISARMINGVOICE,Disarming Voice,0A5,40,FAIRY,Special,0,15,0,AllNearFoes,0,befk,"Letting out a charming cry, the user does emotional damage to foes. This attack never misses." 117,FAIRYWIND,Fairy Wind,000,40,FAIRY,Special,100,30,0,NearOther,0,bef,"The user stirs up a fairy wind and strikes the target with it." -118,AROMATICMIST,Aromatic Mist,138,0,FAIRY,Status,0,20,0,NearAlly,0,,"The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma." -119,NATURESMADNESS,Nature's Madness,06C,1,FAIRY,Special,90,10,0,NearOther,0,bef,"The user hits the target with the force of nature. It halves the target's HP." +118,NATURESMADNESS,Nature's Madness,06C,1,FAIRY,Special,90,10,0,NearOther,0,bef,"The user hits the target with the force of nature. It halves the target's HP." +119,AROMATICMIST,Aromatic Mist,138,0,FAIRY,Status,0,20,0,NearAlly,0,,"The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma." 120,BABYDOLLEYES,Baby-Doll Eyes,042,0,FAIRY,Status,100,30,0,NearOther,1,bce,"The user stares with its baby-doll eyes, which lowers the target's Attack stat. Always goes first." 121,CHARM,Charm,04B,0,FAIRY,Status,100,20,0,NearOther,0,bce,"The user charmingly gazes at the foe, making it less wary. The target's Attack is harshly lowered." 122,CRAFTYSHIELD,Crafty Shield,14A,0,FAIRY,Status,0,10,0,UserSide,3,,"The user protects itself and its allies from status moves with a mysterious power." diff --git a/PBS/Gen 7/pokemon.txt b/PBS/Gen 7/pokemon.txt index 21c2be8bd..fe5904dab 100644 --- a/PBS/Gen 7/pokemon.txt +++ b/PBS/Gen 7/pokemon.txt @@ -22,7 +22,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 6.9 Color = Green -Shape = 8 +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. @@ -55,7 +55,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 13.0 Color = Green -Shape = 8 +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. @@ -88,7 +88,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 100.0 Color = Green -Shape = 8 +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. @@ -120,7 +120,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.5 Color = Red -Shape = 6 +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. @@ -152,7 +152,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 19.0 Color = Red -Shape = 6 +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. @@ -185,7 +185,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 90.5 Color = Red -Shape = 6 +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. @@ -217,7 +217,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Blue -Shape = 6 +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. @@ -249,7 +249,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 22.5 Color = Blue -Shape = 6 +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. @@ -281,7 +281,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 85.5 Color = Blue -Shape = 6 +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. @@ -312,7 +312,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.9 Color = Green -Shape = 14 +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. @@ -343,7 +343,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 9.9 Color = Green -Shape = 2 +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. @@ -376,7 +376,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 32.0 Color = White -Shape = 13 +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. @@ -409,7 +409,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 3.2 Color = Brown -Shape = 14 +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). @@ -441,7 +441,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 10.0 Color = Yellow -Shape = 2 +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. @@ -474,7 +474,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 29.5 Color = Yellow -Shape = 13 +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. @@ -508,7 +508,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.8 Color = Brown -Shape = 9 +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. @@ -541,7 +541,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 30.0 Color = Brown -Shape = 9 +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. @@ -574,7 +574,7 @@ StepsToHatch = 3840 Height = 1.5 Weight = 39.5 Color = Brown -Shape = 9 +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. @@ -606,7 +606,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 3.5 Color = Purple -Shape = 8 +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. @@ -639,7 +639,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 18.5 Color = Brown -Shape = 8 +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. @@ -673,7 +673,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.0 Color = Brown -Shape = 9 +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. @@ -707,7 +707,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 38.0 Color = Brown -Shape = 9 +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. @@ -740,7 +740,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 6.9 Color = Purple -Shape = 2 +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. @@ -772,7 +772,7 @@ StepsToHatch = 5120 Height = 3.5 Weight = 65.0 Color = Purple -Shape = 2 +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. @@ -803,7 +803,7 @@ StepsToHatch = 2560 Height = 0.4 Weight = 6.0 Color = Yellow -Shape = 8 +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. @@ -836,7 +836,7 @@ StepsToHatch = 2560 Height = 0.8 Weight = 30.0 Color = Yellow -Shape = 6 +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. @@ -868,7 +868,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.0 Color = Yellow -Shape = 6 +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. @@ -901,7 +901,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 29.5 Color = Yellow -Shape = 6 +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. @@ -934,7 +934,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.0 Color = Blue -Shape = 8 +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. @@ -966,7 +966,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 20.0 Color = Blue -Shape = 8 +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. @@ -999,7 +999,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 60.0 Color = Blue -Shape = 6 +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. @@ -1031,7 +1031,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Purple -Shape = 8 +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. @@ -1063,7 +1063,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.5 Color = Purple -Shape = 8 +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. @@ -1096,7 +1096,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 62.0 Color = Purple -Shape = 6 +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. @@ -1127,7 +1127,7 @@ StepsToHatch = 2560 Height = 0.6 Weight = 7.5 Color = Pink -Shape = 6 +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. @@ -1160,7 +1160,7 @@ StepsToHatch = 2560 Height = 1.3 Weight = 40.0 Color = Pink -Shape = 6 +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. @@ -1193,7 +1193,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 9.9 Color = Brown -Shape = 8 +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. @@ -1226,7 +1226,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 19.9 Color = Yellow -Shape = 8 +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. @@ -1259,7 +1259,7 @@ StepsToHatch = 2560 Height = 0.5 Weight = 5.5 Color = Pink -Shape = 12 +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. @@ -1293,7 +1293,7 @@ StepsToHatch = 2560 Height = 1.0 Weight = 12.0 Color = Pink -Shape = 12 +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. @@ -1327,7 +1327,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 7.5 Color = Purple -Shape = 9 +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. @@ -1360,7 +1360,7 @@ StepsToHatch = 3840 Height = 1.6 Weight = 55.0 Color = Purple -Shape = 9 +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. @@ -1394,7 +1394,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.4 Color = Blue -Shape = 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. @@ -1428,7 +1428,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 8.6 Color = Blue -Shape = 12 +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. @@ -1462,7 +1462,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 18.6 Color = Red -Shape = 12 +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. @@ -1496,7 +1496,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 5.4 Color = Red -Shape = 14 +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. @@ -1531,7 +1531,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 29.5 Color = Red -Shape = 14 +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. @@ -1566,7 +1566,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 30.0 Color = Purple -Shape = 12 +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. @@ -1599,7 +1599,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 12.5 Color = Purple -Shape = 13 +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. @@ -1632,7 +1632,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.8 Color = Brown -Shape = 5 +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. @@ -1665,7 +1665,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 33.3 Color = Brown -Shape = 11 +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. @@ -1698,7 +1698,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 8 +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. @@ -1731,7 +1731,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 32.0 Color = Yellow -Shape = 8 +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. @@ -1764,7 +1764,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 19.6 Color = Yellow -Shape = 6 +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. @@ -1796,7 +1796,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 76.6 Color = Blue -Shape = 6 +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. @@ -1828,7 +1828,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 28.0 Color = Brown -Shape = 6 +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. @@ -1860,7 +1860,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 32.0 Color = Brown -Shape = 6 +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. @@ -1892,7 +1892,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 19.0 Color = Brown -Shape = 8 +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. @@ -1924,7 +1924,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 155.0 Color = Brown -Shape = 8 +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. @@ -1956,7 +1956,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.4 Color = Blue -Shape = 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. @@ -1988,7 +1988,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 20.0 Color = Blue -Shape = 12 +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. @@ -2022,7 +2022,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 54.0 Color = Blue -Shape = 12 +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. @@ -2055,7 +2055,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.5 Color = Brown -Shape = 6 +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. @@ -2088,7 +2088,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 56.5 Color = Brown -Shape = 6 +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. @@ -2121,7 +2121,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 48.0 Color = Brown -Shape = 12 +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. @@ -2154,7 +2154,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 19.5 Color = Gray -Shape = 6 +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. @@ -2187,7 +2187,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 70.5 Color = Gray -Shape = 12 +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. @@ -2220,7 +2220,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 130.0 Color = Gray -Shape = 12 +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. @@ -2254,7 +2254,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 4.0 Color = Green -Shape = 12 +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. @@ -2287,7 +2287,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 6.4 Color = Green -Shape = 5 +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. @@ -2320,7 +2320,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 15.5 Color = Green -Shape = 5 +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. @@ -2353,7 +2353,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 45.5 Color = Blue -Shape = 10 +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. @@ -2387,7 +2387,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 55.0 Color = Blue -Shape = 10 +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. @@ -2421,7 +2421,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 20.0 Color = Brown -Shape = 4 +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. @@ -2455,7 +2455,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 105.0 Color = Brown -Shape = 12 +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. @@ -2489,7 +2489,7 @@ StepsToHatch = 3840 Height = 1.4 Weight = 300.0 Color = Brown -Shape = 12 +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. @@ -2522,7 +2522,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 30.0 Color = Yellow -Shape = 8 +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. @@ -2554,7 +2554,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 95.0 Color = Yellow -Shape = 8 +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. @@ -2587,7 +2587,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 36.0 Color = Pink -Shape = 8 +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. @@ -2621,7 +2621,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 78.5 Color = Pink -Shape = 6 +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. @@ -2654,7 +2654,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 6.0 Color = Gray -Shape = 4 +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. @@ -2688,7 +2688,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 60.0 Color = Gray -Shape = 11 +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. @@ -2723,7 +2723,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 15.0 Color = Brown -Shape = 9 +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. @@ -2757,7 +2757,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 39.2 Color = Brown -Shape = 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. @@ -2791,7 +2791,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 85.2 Color = Brown -Shape = 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. @@ -2824,7 +2824,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 90.0 Color = White -Shape = 3 +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. @@ -2857,7 +2857,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 120.0 Color = White -Shape = 3 +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. @@ -2889,7 +2889,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 30.0 Color = Purple -Shape = 4 +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. @@ -2922,7 +2922,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 30.0 Color = Purple -Shape = 4 +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. @@ -2955,7 +2955,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 4.0 Color = Purple -Shape = 1 +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. @@ -2990,7 +2990,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 132.5 Color = Purple -Shape = 1 +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. @@ -3024,7 +3024,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 0.1 Color = Purple -Shape = 1 +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. @@ -3056,7 +3056,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 0.1 Color = Purple -Shape = 4 +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. @@ -3088,7 +3088,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 40.5 Color = Purple -Shape = 6 +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. @@ -3121,7 +3121,7 @@ StepsToHatch = 6400 Height = 8.8 Weight = 210.0 Color = Gray -Shape = 2 +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. @@ -3154,7 +3154,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 32.4 Color = Yellow -Shape = 12 +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. @@ -3186,7 +3186,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 75.6 Color = Yellow -Shape = 12 +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. @@ -3218,7 +3218,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.5 Color = Red -Shape = 14 +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. @@ -3250,7 +3250,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 60.0 Color = Red -Shape = 14 +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. @@ -3281,7 +3281,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 10.4 Color = Red -Shape = 1 +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. @@ -3313,7 +3313,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 66.6 Color = Red -Shape = 1 +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. @@ -3346,7 +3346,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 2.5 Color = Pink -Shape = 11 +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. @@ -3380,7 +3380,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 120.0 Color = Yellow -Shape = 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. @@ -3412,7 +3412,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.5 Color = Brown -Shape = 6 +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. @@ -3445,7 +3445,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 45.0 Color = Brown -Shape = 6 +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. @@ -3477,7 +3477,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 49.8 Color = Brown -Shape = 12 +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. @@ -3508,7 +3508,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 50.2 Color = Brown -Shape = 12 +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. @@ -3540,7 +3540,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 65.5 Color = Pink -Shape = 6 +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. @@ -3573,7 +3573,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 1.0 Color = Purple -Shape = 1 +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. @@ -3605,7 +3605,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 9.5 Color = Purple -Shape = 11 +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. @@ -3639,7 +3639,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 115.0 Color = Gray -Shape = 8 +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. @@ -3672,7 +3672,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 120.0 Color = Gray -Shape = 6 +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. @@ -3705,7 +3705,7 @@ StepsToHatch = 10240 Height = 1.1 Weight = 34.6 Color = Pink -Shape = 6 +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. @@ -3739,7 +3739,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 35.0 Color = Blue -Shape = 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. @@ -3772,7 +3772,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 80.0 Color = Brown -Shape = 6 +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. @@ -3804,7 +3804,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 8.0 Color = Blue -Shape = 5 +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. @@ -3837,7 +3837,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 25.0 Color = Blue -Shape = 5 +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. @@ -3871,7 +3871,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 15.0 Color = Red -Shape = 3 +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. @@ -3904,7 +3904,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 39.0 Color = Red -Shape = 3 +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. @@ -3936,7 +3936,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 34.5 Color = Brown -Shape = 5 +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. @@ -3971,7 +3971,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 80.0 Color = Purple -Shape = 5 +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. @@ -4006,7 +4006,7 @@ StepsToHatch = 6400 Height = 1.3 Weight = 54.5 Color = Pink -Shape = 12 +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. @@ -4039,7 +4039,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 56.0 Color = Green -Shape = 13 +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. @@ -4072,7 +4072,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 40.6 Color = Red -Shape = 12 +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. @@ -4103,7 +4103,7 @@ StepsToHatch = 6400 Height = 1.1 Weight = 30.0 Color = Yellow -Shape = 6 +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. @@ -4136,7 +4136,7 @@ StepsToHatch = 6400 Height = 1.3 Weight = 44.5 Color = Red -Shape = 6 +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. @@ -4170,7 +4170,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 55.0 Color = Brown -Shape = 12 +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. @@ -4201,7 +4201,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 88.4 Color = Brown -Shape = 8 +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. @@ -4232,7 +4232,7 @@ StepsToHatch = 1280 Height = 0.9 Weight = 10.0 Color = Red -Shape = 3 +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. @@ -4265,7 +4265,7 @@ StepsToHatch = 1280 Height = 6.5 Weight = 235.0 Color = Blue -Shape = 2 +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. @@ -4298,7 +4298,7 @@ StepsToHatch = 10240 Height = 2.5 Weight = 220.0 Color = Blue -Shape = 3 +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. @@ -4331,7 +4331,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 4.0 Color = Purple -Shape = 1 +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. @@ -4365,7 +4365,7 @@ StepsToHatch = 8960 Height = 0.3 Weight = 6.5 Color = Brown -Shape = 8 +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. @@ -4397,7 +4397,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 29.0 Color = Blue -Shape = 8 +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. @@ -4428,7 +4428,7 @@ StepsToHatch = 8960 Height = 0.8 Weight = 24.5 Color = Yellow -Shape = 8 +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. @@ -4459,7 +4459,7 @@ StepsToHatch = 8960 Height = 0.9 Weight = 25.0 Color = Red -Shape = 8 +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. @@ -4490,7 +4490,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 36.5 Color = Pink -Shape = 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. @@ -4524,7 +4524,7 @@ StepsToHatch = 7680 Height = 0.4 Weight = 7.5 Color = Blue -Shape = 10 +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. @@ -4557,7 +4557,7 @@ StepsToHatch = 7680 Height = 1.0 Weight = 35.0 Color = Blue -Shape = 10 +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. @@ -4590,7 +4590,7 @@ StepsToHatch = 7680 Height = 0.5 Weight = 11.5 Color = Brown -Shape = 14 +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. @@ -4623,7 +4623,7 @@ StepsToHatch = 7680 Height = 1.3 Weight = 40.5 Color = Brown -Shape = 6 +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. @@ -4656,7 +4656,7 @@ StepsToHatch = 8960 Height = 1.8 Weight = 59.0 Color = Purple -Shape = 9 +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. @@ -4688,7 +4688,7 @@ StepsToHatch = 10240 Height = 2.1 Weight = 460.0 Color = Black -Shape = 12 +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. @@ -4723,7 +4723,7 @@ StepsToHatch = 20480 Height = 1.7 Weight = 55.4 Color = Blue -Shape = 9 +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. @@ -4755,7 +4755,7 @@ StepsToHatch = 20480 Height = 1.6 Weight = 52.6 Color = Yellow -Shape = 9 +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. @@ -4787,7 +4787,7 @@ StepsToHatch = 20480 Height = 2.0 Weight = 60.0 Color = Yellow -Shape = 9 +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. @@ -4819,7 +4819,7 @@ StepsToHatch = 10240 Height = 1.8 Weight = 3.3 Color = Blue -Shape = 2 +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. @@ -4852,7 +4852,7 @@ StepsToHatch = 10240 Height = 4.0 Weight = 16.5 Color = Blue -Shape = 2 +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. @@ -4886,7 +4886,7 @@ StepsToHatch = 10240 Height = 2.2 Weight = 210.0 Color = Brown -Shape = 6 +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. @@ -4918,7 +4918,7 @@ StepsToHatch = 30720 Height = 2.0 Weight = 122.0 Color = Purple -Shape = 6 +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. @@ -4948,7 +4948,7 @@ StepsToHatch = 30720 Height = 0.4 Weight = 4.0 Color = Pink -Shape = 6 +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. @@ -4983,7 +4983,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 6.4 Color = Green -Shape = 8 +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. @@ -5015,7 +5015,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 15.8 Color = Green -Shape = 8 +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. @@ -5047,7 +5047,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 100.5 Color = Green -Shape = 8 +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. @@ -5079,7 +5079,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 7.9 Color = Yellow -Shape = 12 +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. @@ -5111,7 +5111,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.0 Color = Yellow -Shape = 8 +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. @@ -5143,7 +5143,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 79.5 Color = Yellow -Shape = 8 +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. @@ -5175,7 +5175,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 9.5 Color = Blue -Shape = 6 +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. @@ -5207,7 +5207,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 25.0 Color = Blue -Shape = 6 +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. @@ -5239,7 +5239,7 @@ StepsToHatch = 5120 Height = 2.3 Weight = 88.8 Color = Blue -Shape = 6 +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. @@ -5271,7 +5271,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 6.0 Color = Brown -Shape = 8 +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. @@ -5303,7 +5303,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 32.5 Color = Brown -Shape = 8 +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. @@ -5336,7 +5336,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 21.2 Color = Brown -Shape = 9 +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. @@ -5369,7 +5369,7 @@ StepsToHatch = 3840 Height = 1.6 Weight = 40.8 Color = Brown -Shape = 9 +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. @@ -5402,7 +5402,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 10.8 Color = Red -Shape = 9 +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. @@ -5435,7 +5435,7 @@ StepsToHatch = 3840 Height = 1.4 Weight = 35.6 Color = Red -Shape = 9 +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. @@ -5468,7 +5468,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 8.5 Color = Green -Shape = 14 +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. @@ -5501,7 +5501,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 33.5 Color = Red -Shape = 14 +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. @@ -5533,7 +5533,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 75.0 Color = Purple -Shape = 13 +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. @@ -5566,7 +5566,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 12.0 Color = Blue -Shape = 3 +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. @@ -5600,7 +5600,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 22.5 Color = Blue -Shape = 3 +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. @@ -5633,7 +5633,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 2.0 Color = Yellow -Shape = 8 +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. @@ -5666,7 +5666,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 3.0 Color = Pink -Shape = 6 +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. @@ -5701,7 +5701,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 1.0 Color = Pink -Shape = 12 +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. @@ -5734,7 +5734,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 1.5 Color = White -Shape = 12 +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. @@ -5767,7 +5767,7 @@ StepsToHatch = 2560 Height = 0.6 Weight = 3.2 Color = White -Shape = 12 +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. @@ -5801,7 +5801,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 2.0 Color = Green -Shape = 9 +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. @@ -5834,7 +5834,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 15.0 Color = Green -Shape = 9 +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. @@ -5866,7 +5866,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.8 Color = White -Shape = 8 +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. @@ -5898,7 +5898,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 13.3 Color = Pink -Shape = 6 +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. @@ -5930,7 +5930,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 61.5 Color = Yellow -Shape = 6 +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. @@ -5961,7 +5961,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.8 Color = Green -Shape = 12 +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. @@ -5995,7 +5995,7 @@ StepsToHatch = 2560 Height = 0.4 Weight = 8.5 Color = Blue -Shape = 6 +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. @@ -6028,7 +6028,7 @@ StepsToHatch = 2560 Height = 0.8 Weight = 28.5 Color = Blue -Shape = 6 +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. @@ -6060,7 +6060,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 38.0 Color = Brown -Shape = 12 +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. @@ -6091,7 +6091,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 33.9 Color = Green -Shape = 12 +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. @@ -6125,7 +6125,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 0.5 Color = Pink -Shape = 6 +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. @@ -6158,7 +6158,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 1.0 Color = Green -Shape = 6 +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. @@ -6191,7 +6191,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 3.0 Color = Blue -Shape = 6 +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. @@ -6223,7 +6223,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 11.5 Color = Purple -Shape = 6 +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. @@ -6256,7 +6256,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 1.8 Color = Yellow -Shape = 1 +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. @@ -6288,7 +6288,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 8.5 Color = Yellow -Shape = 12 +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. @@ -6321,7 +6321,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 38.0 Color = Red -Shape = 13 +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. @@ -6356,7 +6356,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 8.5 Color = Blue -Shape = 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. @@ -6389,7 +6389,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 75.0 Color = Blue -Shape = 6 +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. @@ -6420,7 +6420,7 @@ StepsToHatch = 8960 Height = 0.9 Weight = 26.5 Color = Purple -Shape = 8 +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. @@ -6451,7 +6451,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 27.0 Color = Black -Shape = 8 +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. @@ -6484,7 +6484,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 2.1 Color = Black -Shape = 9 +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. @@ -6517,7 +6517,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 79.5 Color = Pink -Shape = 6 +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. @@ -6549,7 +6549,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 1.0 Color = Gray -Shape = 1 +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. @@ -6580,7 +6580,7 @@ StepsToHatch = 10240 Height = 0.5 Weight = 5.0 Color = Black -Shape = 1 +Shape = Head 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. @@ -6612,7 +6612,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 28.5 Color = Blue -Shape = 5 +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. @@ -6645,7 +6645,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 41.5 Color = Yellow -Shape = 8 +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. @@ -6677,7 +6677,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.2 Color = Gray -Shape = 1 +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. @@ -6710,7 +6710,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 125.8 Color = Purple -Shape = 1 +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. @@ -6742,7 +6742,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 14.0 Color = Yellow -Shape = 2 +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. @@ -6775,7 +6775,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 64.8 Color = Purple -Shape = 9 +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. @@ -6808,7 +6808,7 @@ StepsToHatch = 6400 Height = 9.2 Weight = 400.0 Color = Gray -Shape = 2 +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. @@ -6841,7 +6841,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.8 Color = Pink -Shape = 12 +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. @@ -6873,7 +6873,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 48.7 Color = Purple -Shape = 6 +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. @@ -6906,7 +6906,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 3.9 Color = Gray -Shape = 3 +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. @@ -6939,7 +6939,7 @@ StepsToHatch = 6400 Height = 1.8 Weight = 118.0 Color = Red -Shape = 13 +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. @@ -6972,7 +6972,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 20.5 Color = Yellow -Shape = 14 +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. @@ -7008,7 +7008,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 54.0 Color = Blue -Shape = 12 +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. @@ -7041,7 +7041,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 28.0 Color = Black -Shape = 6 +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. @@ -7075,7 +7075,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.8 Color = Brown -Shape = 6 +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. @@ -7107,7 +7107,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 125.8 Color = Brown -Shape = 6 +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. @@ -7139,7 +7139,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 35.0 Color = Red -Shape = 2 +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. @@ -7172,7 +7172,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 55.0 Color = Red -Shape = 2 +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. @@ -7205,7 +7205,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.5 Color = Brown -Shape = 8 +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. @@ -7238,7 +7238,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 55.8 Color = Brown -Shape = 8 +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. @@ -7272,7 +7272,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 5.0 Color = Pink -Shape = 14 +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. @@ -7305,7 +7305,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.0 Color = Gray -Shape = 3 +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. @@ -7337,7 +7337,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 28.5 Color = Red -Shape = 10 +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. @@ -7370,7 +7370,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 16.0 Color = Red -Shape = 9 +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. @@ -7403,7 +7403,7 @@ StepsToHatch = 6400 Height = 2.1 Weight = 220.0 Color = Purple -Shape = 9 +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. @@ -7436,7 +7436,7 @@ StepsToHatch = 6400 Height = 1.7 Weight = 50.5 Color = Gray -Shape = 9 +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. @@ -7470,7 +7470,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.8 Color = Black -Shape = 8 +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. @@ -7503,7 +7503,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 35.0 Color = Black -Shape = 8 +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. @@ -7535,7 +7535,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 152.0 Color = Blue -Shape = 5 +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. @@ -7568,7 +7568,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 33.5 Color = Blue -Shape = 8 +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. @@ -7600,7 +7600,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 120.0 Color = Gray -Shape = 8 +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. @@ -7631,7 +7631,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 32.5 Color = Red -Shape = 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. @@ -7664,7 +7664,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 71.2 Color = Brown -Shape = 8 +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. @@ -7694,7 +7694,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 58.0 Color = White -Shape = 6 +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. @@ -7726,7 +7726,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 21.0 Color = Purple -Shape = 12 +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. @@ -7758,7 +7758,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 48.0 Color = Brown -Shape = 6 +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. @@ -7791,7 +7791,7 @@ StepsToHatch = 6400 Height = 0.4 Weight = 6.0 Color = Pink -Shape = 12 +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. @@ -7824,7 +7824,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 23.5 Color = Yellow -Shape = 12 +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. @@ -7858,7 +7858,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 21.4 Color = Red -Shape = 6 +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. @@ -7892,7 +7892,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 75.5 Color = Pink -Shape = 6 +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. @@ -7926,7 +7926,7 @@ StepsToHatch = 10240 Height = 1.5 Weight = 46.8 Color = Pink -Shape = 12 +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. @@ -7960,7 +7960,7 @@ StepsToHatch = 20480 Height = 1.9 Weight = 178.0 Color = Yellow -Shape = 8 +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. @@ -7991,7 +7991,7 @@ StepsToHatch = 20480 Height = 2.1 Weight = 198.0 Color = Brown -Shape = 8 +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. @@ -8022,7 +8022,7 @@ StepsToHatch = 20480 Height = 2.0 Weight = 187.0 Color = Blue -Shape = 8 +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. @@ -8055,7 +8055,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 72.0 Color = Green -Shape = 6 +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. @@ -8087,7 +8087,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 152.0 Color = Gray -Shape = 2 +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. @@ -8120,7 +8120,7 @@ StepsToHatch = 10240 Height = 2.0 Weight = 202.0 Color = Green -Shape = 6 +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. @@ -8152,7 +8152,7 @@ StepsToHatch = 30720 Height = 5.2 Weight = 216.0 Color = White -Shape = 9 +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. @@ -8184,7 +8184,7 @@ StepsToHatch = 30720 Height = 3.8 Weight = 199.0 Color = Red -Shape = 9 +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. @@ -8218,7 +8218,7 @@ StepsToHatch = 30720 Height = 0.6 Weight = 5.0 Color = Green -Shape = 12 +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. @@ -8253,7 +8253,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.0 Color = Green -Shape = 6 +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. @@ -8285,7 +8285,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 21.6 Color = Green -Shape = 6 +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. @@ -8317,7 +8317,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 52.2 Color = Green -Shape = 6 +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. @@ -8349,7 +8349,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 2.5 Color = Red -Shape = 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. @@ -8382,7 +8382,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.5 Color = Red -Shape = 6 +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. @@ -8415,7 +8415,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 52.0 Color = Red -Shape = 6 +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. @@ -8447,7 +8447,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.6 Color = Blue -Shape = 8 +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. @@ -8480,7 +8480,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 28.0 Color = Blue -Shape = 6 +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. @@ -8513,7 +8513,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 81.9 Color = Blue -Shape = 6 +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. @@ -8545,7 +8545,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 13.6 Color = Gray -Shape = 8 +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. @@ -8577,7 +8577,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 37.0 Color = Gray -Shape = 8 +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. @@ -8609,7 +8609,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 17.5 Color = Brown -Shape = 8 +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. @@ -8643,7 +8643,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 32.5 Color = White -Shape = 8 +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. @@ -8676,7 +8676,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 3.6 Color = Red -Shape = 14 +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. @@ -8709,7 +8709,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 10.0 Color = White -Shape = 1 +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. @@ -8742,7 +8742,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 28.4 Color = Yellow -Shape = 13 +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. @@ -8773,7 +8773,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 11.5 Color = Purple -Shape = 1 +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. @@ -8806,7 +8806,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 31.6 Color = Green -Shape = 13 +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. @@ -8840,7 +8840,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 2.6 Color = Green -Shape = 14 +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. @@ -8874,7 +8874,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 32.5 Color = Green -Shape = 12 +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. @@ -8908,7 +8908,7 @@ StepsToHatch = 3840 Height = 1.5 Weight = 55.0 Color = Green -Shape = 12 +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. @@ -8941,7 +8941,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 4.0 Color = Brown -Shape = 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. @@ -8975,7 +8975,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 28.0 Color = Brown -Shape = 12 +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. @@ -9009,7 +9009,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 59.6 Color = Brown -Shape = 12 +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. @@ -9043,7 +9043,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.3 Color = Blue -Shape = 9 +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. @@ -9076,7 +9076,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 19.8 Color = Blue -Shape = 9 +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. @@ -9109,7 +9109,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 9.5 Color = White -Shape = 9 +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. @@ -9143,7 +9143,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 28.0 Color = Yellow -Shape = 9 +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. @@ -9177,7 +9177,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.6 Color = White -Shape = 12 +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. @@ -9210,7 +9210,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 20.2 Color = White -Shape = 12 +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. @@ -9243,7 +9243,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 48.4 Color = White -Shape = 12 +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. @@ -9276,7 +9276,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 1.7 Color = Blue -Shape = 14 +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. @@ -9310,7 +9310,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 3.6 Color = Blue -Shape = 13 +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. @@ -9343,7 +9343,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.5 Color = Brown -Shape = 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. @@ -9378,7 +9378,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 39.2 Color = Green -Shape = 6 +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. @@ -9411,7 +9411,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 24.0 Color = Brown -Shape = 8 +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. @@ -9442,7 +9442,7 @@ StepsToHatch = 3840 Height = 1.4 Weight = 46.5 Color = White -Shape = 6 +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. @@ -9473,7 +9473,7 @@ StepsToHatch = 3840 Height = 2.0 Weight = 130.5 Color = Brown -Shape = 12 +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. @@ -9506,7 +9506,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 5.5 Color = Gray -Shape = 14 +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. @@ -9540,7 +9540,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 12.0 Color = Yellow -Shape = 13 +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. @@ -9571,7 +9571,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 1.2 Color = Brown -Shape = 5 +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. @@ -9603,7 +9603,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 16.3 Color = Pink -Shape = 6 +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. @@ -9635,7 +9635,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 40.5 Color = Blue -Shape = 6 +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. @@ -9667,7 +9667,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 84.0 Color = Blue -Shape = 6 +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. @@ -9699,7 +9699,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 86.4 Color = Yellow -Shape = 12 +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. @@ -9732,7 +9732,7 @@ StepsToHatch = 5120 Height = 2.3 Weight = 253.8 Color = Brown -Shape = 12 +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. @@ -9766,7 +9766,7 @@ StepsToHatch = 2560 Height = 0.2 Weight = 2.0 Color = Blue -Shape = 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. @@ -9800,7 +9800,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 97.0 Color = Gray -Shape = 12 +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. @@ -9834,7 +9834,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 11.0 Color = Pink -Shape = 8 +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. @@ -9866,7 +9866,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 32.6 Color = Purple -Shape = 8 +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. @@ -9899,7 +9899,7 @@ StepsToHatch = 6400 Height = 0.5 Weight = 11.0 Color = Purple -Shape = 12 +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. @@ -9933,7 +9933,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 11.5 Color = Black -Shape = 12 +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. @@ -9967,7 +9967,7 @@ StepsToHatch = 8960 Height = 0.4 Weight = 60.0 Color = Gray -Shape = 8 +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. @@ -10001,7 +10001,7 @@ StepsToHatch = 8960 Height = 0.9 Weight = 120.0 Color = Gray -Shape = 8 +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. @@ -10035,7 +10035,7 @@ StepsToHatch = 8960 Height = 2.1 Weight = 360.0 Color = Gray -Shape = 6 +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. @@ -10069,7 +10069,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 11.2 Color = Blue -Shape = 12 +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. @@ -10102,7 +10102,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 31.5 Color = Red -Shape = 12 +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. @@ -10134,7 +10134,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 15.2 Color = Green -Shape = 8 +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. @@ -10166,7 +10166,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 40.2 Color = Yellow -Shape = 8 +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. @@ -10198,7 +10198,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 6 +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. @@ -10231,7 +10231,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 6 +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. @@ -10264,7 +10264,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 17.7 Color = Gray -Shape = 6 +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. @@ -10297,7 +10297,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 17.7 Color = Purple -Shape = 12 +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. @@ -10331,7 +10331,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 2.0 Color = Green -Shape = 12 +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. @@ -10365,7 +10365,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 10.3 Color = Green -Shape = 4 +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. @@ -10399,7 +10399,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 80.0 Color = Purple -Shape = 4 +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. @@ -10434,7 +10434,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 20.8 Color = Red -Shape = 3 +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. @@ -10468,7 +10468,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 88.8 Color = Blue -Shape = 3 +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. @@ -10501,7 +10501,7 @@ StepsToHatch = 10240 Height = 2.0 Weight = 130.0 Color = Blue -Shape = 3 +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. @@ -10533,7 +10533,7 @@ StepsToHatch = 10240 Height = 14.5 Weight = 398.0 Color = Blue -Shape = 3 +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. @@ -10566,7 +10566,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 24.0 Color = Yellow -Shape = 8 +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. @@ -10599,7 +10599,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 220.0 Color = Red -Shape = 8 +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. @@ -10631,7 +10631,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 80.4 Color = Brown -Shape = 8 +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. @@ -10664,7 +10664,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 30.6 Color = Black -Shape = 4 +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. @@ -10696,7 +10696,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 71.5 Color = Purple -Shape = 6 +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. @@ -10728,7 +10728,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 5.0 Color = Brown -Shape = 6 +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. @@ -10760,7 +10760,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 15.0 Color = Brown -Shape = 14 +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. @@ -10793,7 +10793,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 15.3 Color = Green -Shape = 13 +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. @@ -10825,7 +10825,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 82.0 Color = Green -Shape = 9 +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. @@ -10857,7 +10857,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 51.3 Color = Green -Shape = 12 +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. @@ -10891,7 +10891,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 77.4 Color = Green -Shape = 12 +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. @@ -10925,7 +10925,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 1.2 Color = Blue -Shape = 9 +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. @@ -10958,7 +10958,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 20.6 Color = Blue -Shape = 9 +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. @@ -10990,7 +10990,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 40.3 Color = White -Shape = 6 +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. @@ -11023,7 +11023,7 @@ StepsToHatch = 5120 Height = 2.7 Weight = 52.5 Color = Black -Shape = 2 +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. @@ -11055,7 +11055,7 @@ StepsToHatch = 6400 Height = 1.0 Weight = 168.0 Color = Yellow -Shape = 1 +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. @@ -11088,7 +11088,7 @@ StepsToHatch = 6400 Height = 1.2 Weight = 154.0 Color = Red -Shape = 1 +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. @@ -11123,7 +11123,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 1.9 Color = Gray -Shape = 3 +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. @@ -11156,7 +11156,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 23.6 Color = Blue -Shape = 3 +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. @@ -11188,7 +11188,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 11.5 Color = Red -Shape = 14 +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. @@ -11221,7 +11221,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 32.8 Color = Red -Shape = 14 +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. @@ -11252,7 +11252,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 21.5 Color = Brown -Shape = 4 +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. @@ -11285,7 +11285,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 108.0 Color = Black -Shape = 4 +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. @@ -11319,7 +11319,7 @@ StepsToHatch = 7680 Height = 1.0 Weight = 23.8 Color = Purple -Shape = 5 +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. @@ -11353,7 +11353,7 @@ StepsToHatch = 7680 Height = 1.5 Weight = 60.4 Color = Green -Shape = 5 +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. @@ -11387,7 +11387,7 @@ StepsToHatch = 7680 Height = 0.7 Weight = 12.5 Color = Gray -Shape = 14 +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. @@ -11420,7 +11420,7 @@ StepsToHatch = 7680 Height = 1.5 Weight = 68.2 Color = Gray -Shape = 6 +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. @@ -11452,7 +11452,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.4 Color = Brown -Shape = 3 +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. @@ -11484,7 +11484,7 @@ StepsToHatch = 5120 Height = 6.2 Weight = 162.0 Color = Pink -Shape = 2 +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. @@ -11515,7 +11515,7 @@ StepsToHatch = 6400 Height = 0.3 Weight = 0.8 Color = Gray -Shape = 1 +Shape = Head 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. @@ -11551,7 +11551,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 22.0 Color = Green -Shape = 6 +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. @@ -11583,7 +11583,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 2.3 Color = Black -Shape = 1 +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. @@ -11616,7 +11616,7 @@ StepsToHatch = 6400 Height = 1.1 Weight = 12.5 Color = Black -Shape = 6 +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. @@ -11649,7 +11649,7 @@ StepsToHatch = 6400 Height = 0.8 Weight = 15.0 Color = Black -Shape = 4 +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. @@ -11682,7 +11682,7 @@ StepsToHatch = 6400 Height = 1.6 Weight = 30.6 Color = Black -Shape = 12 +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. @@ -11717,7 +11717,7 @@ StepsToHatch = 6400 Height = 2.0 Weight = 100.0 Color = Green -Shape = 8 +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. @@ -11748,7 +11748,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 1.0 Color = Blue -Shape = 4 +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. @@ -11781,7 +11781,7 @@ StepsToHatch = 6400 Height = 1.2 Weight = 47.0 Color = White -Shape = 8 +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. @@ -11812,7 +11812,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 14.0 Color = Blue -Shape = 6 +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. @@ -11846,7 +11846,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 16.8 Color = Gray -Shape = 12 +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. @@ -11879,7 +11879,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 256.5 Color = Gray -Shape = 1 +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. @@ -11912,7 +11912,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 39.5 Color = Blue -Shape = 3 +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. @@ -11945,7 +11945,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 87.6 Color = Blue -Shape = 3 +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. @@ -11978,7 +11978,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 150.6 Color = Blue -Shape = 8 +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. @@ -12010,7 +12010,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 52.5 Color = Blue -Shape = 1 +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. @@ -12044,7 +12044,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 27.0 Color = Blue -Shape = 2 +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. @@ -12076,7 +12076,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 22.6 Color = Pink -Shape = 2 +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. @@ -12110,7 +12110,7 @@ StepsToHatch = 10240 Height = 1.0 Weight = 23.4 Color = Gray -Shape = 3 +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. @@ -12143,7 +12143,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.7 Color = Pink -Shape = 3 +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. @@ -12176,7 +12176,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 42.1 Color = Blue -Shape = 12 +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. @@ -12209,7 +12209,7 @@ StepsToHatch = 10240 Height = 1.1 Weight = 110.5 Color = White -Shape = 8 +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. @@ -12243,7 +12243,7 @@ StepsToHatch = 10240 Height = 1.5 Weight = 102.6 Color = Blue -Shape = 8 +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. @@ -12276,7 +12276,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 95.2 Color = Blue -Shape = 5 +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. @@ -12310,7 +12310,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 202.5 Color = Blue -Shape = 4 +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. @@ -12344,7 +12344,7 @@ StepsToHatch = 10240 Height = 1.6 Weight = 550.0 Color = Blue -Shape = 11 +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. @@ -12376,7 +12376,7 @@ StepsToHatch = 20480 Height = 1.7 Weight = 230.0 Color = Brown -Shape = 12 +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. @@ -12407,7 +12407,7 @@ StepsToHatch = 20480 Height = 1.8 Weight = 175.0 Color = Blue -Shape = 12 +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. @@ -12438,7 +12438,7 @@ StepsToHatch = 20480 Height = 1.9 Weight = 205.0 Color = Gray -Shape = 12 +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. @@ -12469,7 +12469,7 @@ StepsToHatch = 30720 Height = 1.4 Weight = 40.0 Color = Red -Shape = 9 +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. @@ -12500,7 +12500,7 @@ StepsToHatch = 30720 Height = 2.0 Weight = 60.0 Color = Blue -Shape = 9 +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. @@ -12530,7 +12530,7 @@ StepsToHatch = 30720 Height = 4.5 Weight = 352.0 Color = Blue -Shape = 3 +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. @@ -12560,7 +12560,7 @@ StepsToHatch = 30720 Height = 3.5 Weight = 950.0 Color = Red -Shape = 6 +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. @@ -12591,7 +12591,7 @@ StepsToHatch = 30720 Height = 7.0 Weight = 206.5 Color = Green -Shape = 2 +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. @@ -12622,7 +12622,7 @@ StepsToHatch = 30720 Height = 0.3 Weight = 1.1 Color = Yellow -Shape = 12 +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. @@ -12655,7 +12655,7 @@ StepsToHatch = 30720 Height = 1.7 Weight = 60.8 Color = Red -Shape = 12 +Shape = Bipedal 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. @@ -12688,7 +12688,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 10.2 Color = Green -Shape = 8 +Shape = Quadruped Kind = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. BattlerPlayerX = -3 @@ -12719,7 +12719,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 97.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. BattlerPlayerX = -4 @@ -12751,7 +12751,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 310.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. BattlerPlayerX = 0 @@ -12782,7 +12782,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 6.2 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. BattlerPlayerX = 4 @@ -12814,7 +12814,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 22.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. BattlerPlayerX = -6 @@ -12846,7 +12846,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 55.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. BattlerPlayerX = 1 @@ -12877,7 +12877,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.2 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. BattlerPlayerX = 0 @@ -12908,7 +12908,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 23.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. BattlerPlayerX = 2 @@ -12940,7 +12940,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 84.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. BattlerPlayerX = 2 @@ -12972,7 +12972,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.0 Color = Brown -Shape = 9 +Shape = Winged Kind = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. BattlerPlayerX = -3 @@ -13004,7 +13004,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 15.5 Color = Brown -Shape = 9 +Shape = Winged Kind = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. BattlerPlayerX = -3 @@ -13036,7 +13036,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 24.9 Color = Brown -Shape = 9 +Shape = Winged Kind = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. BattlerPlayerX = -5 @@ -13067,7 +13067,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 20.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. BattlerPlayerX = 0 @@ -13099,7 +13099,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 31.5 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. BattlerPlayerX = -6 @@ -13129,7 +13129,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.2 Color = Red -Shape = 12 +Shape = Bipedal Kind = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. WildItemUncommon = METRONOME @@ -13161,7 +13161,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 25.5 Color = Red -Shape = 13 +Shape = MultiWinged Kind = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. WildItemUncommon = METRONOME @@ -13193,7 +13193,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.5 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. BattlerPlayerX = -9 @@ -13224,7 +13224,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 30.5 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. BattlerPlayerX = 1 @@ -13255,7 +13255,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 42.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. BattlerPlayerX = 0 @@ -13287,7 +13287,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 1.2 Color = Green -Shape = 12 +Shape = Bipedal Kind = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. WildItemUncommon = POISONBARB @@ -13321,7 +13321,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 14.5 Color = Green -Shape = 12 +Shape = Bipedal Kind = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. WildItemUncommon = POISONBARB @@ -13353,7 +13353,7 @@ StepsToHatch = 7680 Height = 0.9 Weight = 31.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. BattlerPlayerX = 0 @@ -13384,7 +13384,7 @@ StepsToHatch = 7680 Height = 1.6 Weight = 102.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. BattlerPlayerX = 0 @@ -13416,7 +13416,7 @@ StepsToHatch = 7680 Height = 0.5 Weight = 57.0 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. BattlerPlayerX = 0 @@ -13448,7 +13448,7 @@ StepsToHatch = 7680 Height = 1.3 Weight = 149.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. BattlerPlayerX = -4 @@ -13478,7 +13478,7 @@ StepsToHatch = 3840 Height = 0.2 Weight = 3.4 Color = Green -Shape = 5 +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 @@ -13511,7 +13511,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 6.5 Color = Green -Shape = 5 +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 @@ -13544,7 +13544,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 23.3 Color = Yellow -Shape = 13 +Shape = MultiWinged Kind = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. WildItemUncommon = SILVERPOWDER @@ -13576,7 +13576,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 5.5 Color = Yellow -Shape = 11 +Shape = MultiBody Kind = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. WildItemUncommon = HONEY @@ -13609,7 +13609,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 38.5 Color = Yellow -Shape = 13 +Shape = MultiWinged Kind = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. WildItemUncommon = POISONBARB @@ -13641,7 +13641,7 @@ StepsToHatch = 2560 Height = 0.4 Weight = 3.9 Color = White -Shape = 8 +Shape = Quadruped Kind = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. BattlerPlayerX = -5 @@ -13672,7 +13672,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 29.5 Color = Brown -Shape = 8 +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. BattlerPlayerX = -12 @@ -13703,7 +13703,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 33.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. BattlerPlayerX = 3 @@ -13733,7 +13733,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 3.3 Color = Pink -Shape = 11 +Shape = MultiBody Kind = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. WildItemUncommon = MIRACLESEED @@ -13764,7 +13764,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.3 Color = Purple -Shape = 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 @@ -13797,7 +13797,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 6.3 Color = Purple -Shape = 2 +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 @@ -13830,7 +13830,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 29.9 Color = Purple -Shape = 2 +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 @@ -13861,7 +13861,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 20.3 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. BattlerPlayerX = 8 @@ -13893,7 +13893,7 @@ StepsToHatch = 7680 Height = 0.4 Weight = 1.2 Color = Purple -Shape = 4 +Shape = HeadArms Kind = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. BattlerPlayerX = 2 @@ -13925,7 +13925,7 @@ StepsToHatch = 7680 Height = 1.2 Weight = 15.0 Color = Purple -Shape = 4 +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. BattlerPlayerX = -1 @@ -13956,7 +13956,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.5 Color = Brown -Shape = 6 +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. BattlerPlayerX = 8 @@ -13987,7 +13987,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 33.3 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. BattlerPlayerX = -6 @@ -14016,7 +14016,7 @@ StepsToHatch = 6400 Height = 0.9 Weight = 4.4 Color = Purple -Shape = 1 +Shape = Head Kind = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. BattlerPlayerX = -3 @@ -14047,7 +14047,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 27.3 Color = Black -Shape = 9 +Shape = Winged Kind = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. BattlerPlayerX = 2 @@ -14078,7 +14078,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 3.9 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. BattlerPlayerX = -6 @@ -14109,7 +14109,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 43.8 Color = Gray -Shape = 8 +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. BattlerPlayerX = 4 @@ -14139,7 +14139,7 @@ StepsToHatch = 6400 Height = 0.2 Weight = 0.6 Color = Yellow -Shape = 12 +Shape = Bipedal Kind = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. WildItemUncommon = CLEANSETAG @@ -14174,7 +14174,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 19.2 Color = Purple -Shape = 8 +Shape = Quadruped Kind = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. BattlerPlayerX = -3 @@ -14206,7 +14206,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 38.0 Color = Purple -Shape = 8 +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. BattlerPlayerX = 0 @@ -14237,7 +14237,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 60.5 Color = Green -Shape = 1 +Shape = Head Kind = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. WildItemUncommon = METALCOAT @@ -14270,7 +14270,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 187.0 Color = Green -Shape = 4 +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. WildItemUncommon = METALCOAT @@ -14302,7 +14302,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 15.0 Color = Brown -Shape = 7 +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. BattlerPlayerX = 3 @@ -14336,7 +14336,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 13.0 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. BattlerPlayerX = -1 @@ -14369,7 +14369,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 24.4 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. WildItemCommon = OVALSTONE @@ -14404,7 +14404,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 1.9 Color = Black -Shape = 9 +Shape = Winged Kind = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. WildItemUncommon = METRONOME @@ -14437,7 +14437,7 @@ StepsToHatch = 7680 Height = 1.0 Weight = 108.0 Color = Purple -Shape = 5 +Shape = HeadBase Kind = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. BattlerPlayerX = 2 @@ -14469,7 +14469,7 @@ StepsToHatch = 10240 Height = 0.7 Weight = 20.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. BattlerPlayerX = -2 @@ -14501,7 +14501,7 @@ StepsToHatch = 10240 Height = 1.4 Weight = 56.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. BattlerPlayerX = -6 @@ -14533,7 +14533,7 @@ StepsToHatch = 10240 Height = 1.9 Weight = 95.0 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -14564,7 +14564,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 105.0 Color = Black -Shape = 12 +Shape = Bipedal Kind = Big Eater Pokedex = It wolfs down its weight in food once a day, swallowing food whole with almost no chewing. WildItemCommon = LEFTOVERS @@ -14600,7 +14600,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 20.2 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. BattlerPlayerX = -9 @@ -14632,7 +14632,7 @@ StepsToHatch = 6400 Height = 1.2 Weight = 54.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. BattlerPlayerX = 8 @@ -14663,7 +14663,7 @@ StepsToHatch = 7680 Height = 0.8 Weight = 49.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. BattlerPlayerX = 0 @@ -14694,7 +14694,7 @@ StepsToHatch = 7680 Height = 2.0 Weight = 300.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. BattlerPlayerX = 2 @@ -14726,7 +14726,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 12.0 Color = Purple -Shape = 14 +Shape = Insectoid Kind = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. WildItemUncommon = POISONBARB @@ -14759,7 +14759,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 61.5 Color = Purple -Shape = 14 +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. WildItemUncommon = POISONBARB @@ -14792,7 +14792,7 @@ StepsToHatch = 2560 Height = 0.7 Weight = 23.0 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. WildItemUncommon = BLACKSLUDGE @@ -14825,7 +14825,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 44.4 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. WildItemUncommon = BLACKSLUDGE @@ -14856,7 +14856,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 27.0 Color = Green -Shape = 10 +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. BattlerPlayerX = -2 @@ -14887,7 +14887,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.0 Color = Blue -Shape = 3 +Shape = Finned Kind = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. BattlerPlayerX = -7 @@ -14918,7 +14918,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 24.0 Color = Blue -Shape = 3 +Shape = Finned Kind = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. BattlerPlayerX = -8 @@ -14950,7 +14950,7 @@ StepsToHatch = 6400 Height = 1.0 Weight = 65.0 Color = Blue -Shape = 9 +Shape = Winged Kind = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. BattlerPlayerX = -1 @@ -14984,7 +14984,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 50.5 Color = White -Shape = 6 +Shape = BipedalTail Kind = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. WildItemUncommon = NEVERMELTICE @@ -15017,7 +15017,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 135.5 Color = White -Shape = 6 +Shape = BipedalTail Kind = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. WildItemUncommon = NEVERMELTICE @@ -15049,7 +15049,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 34.0 Color = Black -Shape = 6 +Shape = BipedalTail Kind = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. WildItemUncommon = QUICKCLAW @@ -15081,7 +15081,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 180.0 Color = Gray -Shape = 4 +Shape = HeadArms Kind = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. WildItemUncommon = METALCOAT @@ -15112,7 +15112,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 140.0 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. WildItemUncommon = LAGGINGTAIL @@ -15144,7 +15144,7 @@ StepsToHatch = 5120 Height = 2.4 Weight = 282.8 Color = Gray -Shape = 6 +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. BattlerPlayerX = 1 @@ -15174,7 +15174,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 128.6 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. BattlerPlayerX = 0 @@ -15204,7 +15204,7 @@ StepsToHatch = 6400 Height = 1.8 Weight = 138.6 Color = Yellow -Shape = 6 +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. WildItemUncommon = ELECTIRIZER @@ -15235,7 +15235,7 @@ StepsToHatch = 6400 Height = 1.6 Weight = 68.0 Color = Red -Shape = 6 +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. WildItemUncommon = MAGMARIZER @@ -15267,7 +15267,7 @@ StepsToHatch = 2560 Height = 1.5 Weight = 38.0 Color = White -Shape = 9 +Shape = Winged Kind = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. BattlerPlayerX = -3 @@ -15298,7 +15298,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 51.5 Color = Green -Shape = 13 +Shape = MultiWinged Kind = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. WildItemUncommon = WIDELENS @@ -15329,7 +15329,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 25.5 Color = Green -Shape = 8 +Shape = Quadruped Kind = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. BattlerPlayerX = -3 @@ -15359,7 +15359,7 @@ StepsToHatch = 8960 Height = 0.8 Weight = 25.9 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. BattlerPlayerX = -3 @@ -15390,7 +15390,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 42.5 Color = Purple -Shape = 9 +Shape = Winged Kind = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! BattlerPlayerX = 3 @@ -15421,7 +15421,7 @@ StepsToHatch = 5120 Height = 2.5 Weight = 291.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. BattlerPlayerX = -1 @@ -15451,7 +15451,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 34.0 Color = Red -Shape = 4 +Shape = HeadArms Kind = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. BattlerPlayerX = 2 @@ -15482,7 +15482,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 52.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. BattlerPlayerX = 1 @@ -15513,7 +15513,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 340.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. WildItemUncommon = MAGNET @@ -15544,7 +15544,7 @@ StepsToHatch = 6400 Height = 2.2 Weight = 106.6 Color = Black -Shape = 4 +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. WildItemUncommon = SPELLTAG @@ -15576,7 +15576,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 26.6 Color = White -Shape = 4 +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. BattlerPlayerX = 6 @@ -15606,7 +15606,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 0.3 Color = Red -Shape = 1 +Shape = Head Kind = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom @@ -15636,7 +15636,7 @@ StepsToHatch = 20480 Height = 0.3 Weight = 0.3 Color = Yellow -Shape = 6 +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. BattlerPlayerX = -1 @@ -15665,7 +15665,7 @@ StepsToHatch = 20480 Height = 0.3 Weight = 0.3 Color = Pink -Shape = 6 +Shape = BipedalTail Kind = Emotion Pokedex = Known as “The Being of Emotion.” It taught humans the nobility of sorrow, pain, and joy. BattlerPlayerX = 1 @@ -15694,7 +15694,7 @@ StepsToHatch = 20480 Height = 0.3 Weight = 0.3 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -15725,7 +15725,7 @@ StepsToHatch = 30720 Height = 5.4 Weight = 683.0 Color = White -Shape = 8 +Shape = Quadruped Kind = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. BattlerPlayerX = 1 @@ -15756,7 +15756,7 @@ StepsToHatch = 30720 Height = 4.2 Weight = 336.0 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. BattlerPlayerX = 0 @@ -15787,7 +15787,7 @@ StepsToHatch = 2560 Height = 1.7 Weight = 430.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 2 @@ -15816,7 +15816,7 @@ StepsToHatch = 30720 Height = 3.7 Weight = 420.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. BattlerPlayerX = 0 @@ -15847,7 +15847,7 @@ StepsToHatch = 30720 Height = 4.5 Weight = 750.0 Color = Black -Shape = 10 +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 @@ -15877,7 +15877,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 85.6 Color = Yellow -Shape = 2 +Shape = Serpentine Kind = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. BattlerPlayerX = -5 @@ -15906,7 +15906,7 @@ StepsToHatch = 10240 Height = 0.4 Weight = 3.1 Color = Blue -Shape = 4 +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. BattlerPlayerX = -9 @@ -15935,7 +15935,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 1.4 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. BattlerPlayerX = -9 @@ -15964,7 +15964,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 50.5 Color = Black -Shape = 12 +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. BattlerPlayerX = 0 @@ -15993,7 +15993,7 @@ StepsToHatch = 30720 Height = 0.2 Weight = 2.1 Color = Green -Shape = 8 +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 @@ -16026,7 +16026,7 @@ StepsToHatch = 30720 Height = 3.2 Weight = 320.0 Color = White -Shape = 8 +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 @@ -16057,7 +16057,7 @@ StepsToHatch = 30720 Height = 0.4 Weight = 4.0 Color = Yellow -Shape = 12 +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. BattlerPlayerX = 0 @@ -16088,7 +16088,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.1 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. BattlerPlayerX = -2 @@ -16119,7 +16119,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 16.0 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. BattlerPlayerX = 0 @@ -16150,7 +16150,7 @@ StepsToHatch = 5120 Height = 3.3 Weight = 63.0 Color = Green -Shape = 2 +Shape = Serpentine Kind = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. BattlerPlayerX = -3 @@ -16181,7 +16181,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.9 Color = Red -Shape = 8 +Shape = Quadruped Kind = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. BattlerPlayerX = -4 @@ -16213,7 +16213,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 55.5 Color = Red -Shape = 6 +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. BattlerPlayerX = -1 @@ -16245,7 +16245,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 150.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 1 @@ -16276,7 +16276,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.9 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -16307,7 +16307,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 24.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. BattlerPlayerX = 2 @@ -16338,7 +16338,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 94.6 Color = Blue -Shape = 8 +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. BattlerPlayerX = -1 @@ -16369,7 +16369,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 11.6 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. BattlerPlayerX = -1 @@ -16400,7 +16400,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 27.0 Color = Brown -Shape = 6 +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. BattlerPlayerX = -2 @@ -16431,7 +16431,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.1 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. BattlerPlayerX = 1 @@ -16462,7 +16462,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 14.7 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. BattlerPlayerX = -3 @@ -16493,7 +16493,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 61.0 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. BattlerPlayerX = -1 @@ -16524,7 +16524,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 10.1 Color = Purple -Shape = 8 +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. BattlerPlayerX = 2 @@ -16555,7 +16555,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 37.5 Color = Purple -Shape = 8 +Shape = Quadruped Kind = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. BattlerPlayerX = 0 @@ -16586,7 +16586,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.5 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -16617,7 +16617,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 30.5 Color = Green -Shape = 6 +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. BattlerPlayerX = -1 @@ -16648,7 +16648,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 11.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -16679,7 +16679,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 28.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. BattlerPlayerX = 0 @@ -16710,7 +16710,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 13.5 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -16741,7 +16741,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 29.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. BattlerPlayerX = 0 @@ -16772,7 +16772,7 @@ StepsToHatch = 2560 Height = 0.6 Weight = 23.3 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -16803,7 +16803,7 @@ StepsToHatch = 2560 Height = 1.1 Weight = 60.5 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. BattlerPlayerX = 6 @@ -16835,7 +16835,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.1 Color = Gray -Shape = 9 +Shape = Winged Kind = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. BattlerPlayerX = -3 @@ -16867,7 +16867,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 15.0 Color = Gray -Shape = 9 +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. BattlerPlayerX = 0 @@ -16899,7 +16899,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 29.0 Color = Gray -Shape = 9 +Shape = Winged Kind = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. BattlerPlayerX = -3 @@ -16930,7 +16930,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 29.8 Color = Black -Shape = 8 +Shape = Quadruped Kind = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. BattlerPlayerX = -6 @@ -16961,7 +16961,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 79.5 Color = Black -Shape = 8 +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. BattlerPlayerX = 0 @@ -16992,7 +16992,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 18.0 Color = Blue -Shape = 7 +Shape = HeadLegs Kind = Mantle Pokedex = They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core. WildItemCommon = EVERSTONE @@ -17025,7 +17025,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 102.0 Color = Blue -Shape = 10 +Shape = Multiped Kind = Ore Pokedex = Because its energy was too great to be contained, the energy leaked and formed orange crystals. WildItemCommon = EVERSTONE @@ -17058,7 +17058,7 @@ StepsToHatch = 3840 Height = 1.7 Weight = 260.0 Color = Blue -Shape = 10 +Shape = Multiped Kind = Compressed Pokedex = The solar energy absorbed by its body's orange crystals is magnified internally and fired from its mouth. WildItemCommon = EVERSTONE @@ -17092,7 +17092,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 2.1 Color = Blue -Shape = 9 +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. BattlerPlayerX = 2 @@ -17124,7 +17124,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 10.5 Color = Blue -Shape = 9 +Shape = Winged Kind = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. BattlerPlayerX = -3 @@ -17155,7 +17155,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 8.5 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. BattlerPlayerX = 3 @@ -17187,7 +17187,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 40.4 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. BattlerPlayerX = -1 @@ -17218,7 +17218,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 31.0 Color = Pink -Shape = 6 +Shape = BipedalTail Kind = Hearing Pokedex = Its auditory sense is astounding. It has a radar-like ability to understand its surrounding through slight sounds. WildItemCommon = ORANBERRY @@ -17251,7 +17251,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.5 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. BattlerPlayerX = -1 @@ -17282,7 +17282,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 40.0 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. BattlerPlayerX = 2 @@ -17313,7 +17313,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 87.0 Color = Brown -Shape = 12 +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. BattlerPlayerX = 3 @@ -17344,7 +17344,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 4.5 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -17376,7 +17376,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 17.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. BattlerPlayerX = -6 @@ -17408,7 +17408,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 62.0 Color = Blue -Shape = 12 +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. BattlerPlayerX = 2 @@ -17438,7 +17438,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 55.5 Color = Red -Shape = 12 +Shape = Bipedal Kind = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. WildItemUncommon = BLACKBELT @@ -17469,7 +17469,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 51.0 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. WildItemUncommon = BLACKBELT @@ -17502,7 +17502,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.5 Color = Yellow -Shape = 14 +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. WildItemUncommon = MENTALHERB @@ -17535,7 +17535,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 7.3 Color = Green -Shape = 4 +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. WildItemUncommon = MENTALHERB @@ -17568,7 +17568,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 20.5 Color = Yellow -Shape = 12 +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. WildItemUncommon = MENTALHERB @@ -17601,7 +17601,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 5.3 Color = Red -Shape = 14 +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. WildItemUncommon = POISONBARB @@ -17634,7 +17634,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 58.5 Color = Gray -Shape = 1 +Shape = Head Kind = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. WildItemUncommon = POISONBARB @@ -17667,7 +17667,7 @@ StepsToHatch = 5120 Height = 2.5 Weight = 200.5 Color = Red -Shape = 14 +Shape = Insectoid Kind = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. WildItemUncommon = POISONBARB @@ -17700,7 +17700,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 0.6 Color = Green -Shape = 1 +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. WildItemUncommon = ABSORBBULB @@ -17733,7 +17733,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 6.6 Color = Green -Shape = 12 +Shape = Bipedal Kind = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. WildItemUncommon = ABSORBBULB @@ -17765,7 +17765,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 6.6 Color = Green -Shape = 5 +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. WildItemUncommon = ABSORBBULB @@ -17797,7 +17797,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 16.3 Color = Green -Shape = 5 +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. WildItemUncommon = ABSORBBULB @@ -17829,7 +17829,7 @@ StepsToHatch = 10240 Height = 1.0 Weight = 18.0 Color = Green -Shape = 3 +Shape = Finned Kind = Hostile Pokedex = Savage, violent Pokémon, red and blue Basculin are always fighting each other over territory. FormName = Red-Striped @@ -17863,7 +17863,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 15.2 Color = Brown -Shape = 8 +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. WildItemUncommon = BLACKGLASSES @@ -17896,7 +17896,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 33.4 Color = Brown -Shape = 8 +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. WildItemUncommon = BLACKGLASSES @@ -17929,7 +17929,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 96.3 Color = Red -Shape = 6 +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. WildItemCommon = BLACKGLASSES @@ -17961,7 +17961,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 37.5 Color = Red -Shape = 12 +Shape = Bipedal Kind = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. BattlerPlayerX = -2 @@ -17992,7 +17992,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 92.9 Color = Red -Shape = 8 +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 @@ -18024,7 +18024,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 28.0 Color = Green -Shape = 5 +Shape = HeadBase Kind = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. WildItemUncommon = MIRACLESEED @@ -18057,7 +18057,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 14.5 Color = Red -Shape = 14 +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. WildItemUncommon = HARDSTONE @@ -18090,7 +18090,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 200.0 Color = Red -Shape = 14 +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. WildItemUncommon = HARDSTONE @@ -18123,7 +18123,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 11.8 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. WildItemUncommon = SHEDSHELL @@ -18156,7 +18156,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 30.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. WildItemUncommon = SHEDSHELL @@ -18189,7 +18189,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 14.0 Color = Black -Shape = 9 +Shape = Winged Kind = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. BattlerPlayerX = 7 @@ -18219,7 +18219,7 @@ StepsToHatch = 6400 Height = 0.5 Weight = 1.5 Color = Black -Shape = 4 +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. WildItemUncommon = SPELLTAG @@ -18250,7 +18250,7 @@ StepsToHatch = 6400 Height = 1.7 Weight = 76.5 Color = Yellow -Shape = 5 +Shape = HeadBase Kind = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. WildItemUncommon = SPELLTAG @@ -18283,7 +18283,7 @@ StepsToHatch = 7680 Height = 0.7 Weight = 16.5 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -18315,7 +18315,7 @@ StepsToHatch = 7680 Height = 1.2 Weight = 81.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. BattlerPlayerX = -1 @@ -18346,7 +18346,7 @@ StepsToHatch = 7680 Height = 0.5 Weight = 9.5 Color = Yellow -Shape = 9 +Shape = Winged Kind = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. BattlerPlayerX = 0 @@ -18377,7 +18377,7 @@ StepsToHatch = 7680 Height = 1.4 Weight = 32.0 Color = Yellow -Shape = 9 +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. BattlerPlayerX = 4 @@ -18408,7 +18408,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 31.0 Color = Green -Shape = 12 +Shape = Bipedal Kind = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. WildItemUncommon = SILKSCARF @@ -18440,7 +18440,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 107.3 Color = Green -Shape = 12 +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. WildItemCommon = SILKSCARF @@ -18472,7 +18472,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 12.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. BattlerPlayerX = -1 @@ -18502,7 +18502,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 81.1 Color = Gray -Shape = 6 +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. BattlerPlayerX = 0 @@ -18533,7 +18533,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 5.8 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. BattlerPlayerX = -3 @@ -18564,7 +18564,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 7.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. BattlerPlayerX = 1 @@ -18595,7 +18595,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.8 Color = Purple -Shape = 12 +Shape = Bipedal Kind = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. BattlerPlayerX = 0 @@ -18626,7 +18626,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 18.0 Color = Purple -Shape = 12 +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. BattlerPlayerX = 0 @@ -18657,7 +18657,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 44.0 Color = Purple -Shape = 12 +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. BattlerPlayerX = 1 @@ -18688,7 +18688,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 1.0 Color = Green -Shape = 1 +Shape = Head Kind = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. BattlerPlayerX = 0 @@ -18719,7 +18719,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.0 Color = Green -Shape = 1 +Shape = Head Kind = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. BattlerPlayerX = 0 @@ -18750,7 +18750,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 20.1 Color = Green -Shape = 4 +Shape = HeadArms Kind = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. BattlerPlayerX = 3 @@ -18782,7 +18782,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.5 Color = Blue -Shape = 9 +Shape = Winged Kind = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. BattlerPlayerX = -4 @@ -18814,7 +18814,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 24.2 Color = White -Shape = 9 +Shape = Winged Kind = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. BattlerPlayerX = -2 @@ -18845,7 +18845,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.7 Color = White -Shape = 5 +Shape = HeadBase Kind = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. WildItemUncommon = NEVERMELTICE @@ -18877,7 +18877,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 41.0 Color = White -Shape = 5 +Shape = HeadBase Kind = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. WildItemUncommon = NEVERMELTICE @@ -18909,7 +18909,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 57.5 Color = White -Shape = 11 +Shape = MultiBody Kind = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. WildItemCommon = NEVERMELTICE @@ -18942,7 +18942,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 19.5 Color = Pink -Shape = 8 +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 @@ -18975,7 +18975,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 92.5 Color = Brown -Shape = 8 +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 @@ -19008,7 +19008,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.0 Color = White -Shape = 8 +Shape = Quadruped Kind = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. BattlerPlayerX = -4 @@ -19039,7 +19039,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 5.9 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. BattlerPlayerX = 1 @@ -19071,7 +19071,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 33.0 Color = Gray -Shape = 4 +Shape = HeadArms Kind = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. BattlerPlayerX = 3 @@ -19103,7 +19103,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 1.0 Color = White -Shape = 4 +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. WildItemCommon = TINYMUSHROOM @@ -19137,7 +19137,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.5 Color = White -Shape = 4 +Shape = HeadArms Kind = Mushroom Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémon are fooled by this. WildItemCommon = TINYMUSHROOM @@ -19171,7 +19171,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 33.0 Color = White -Shape = 10 +Shape = Multiped Kind = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. BattlerPlayerX = -1 @@ -19203,7 +19203,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 135.0 Color = White -Shape = 10 +Shape = Multiped Kind = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. BattlerPlayerX = 1 @@ -19234,7 +19234,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 31.6 Color = Pink -Shape = 3 +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. BattlerPlayerX = -2 @@ -19266,7 +19266,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.6 Color = Yellow -Shape = 14 +Shape = Insectoid Kind = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. BattlerPlayerX = 0 @@ -19298,7 +19298,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 14.3 Color = Yellow -Shape = 14 +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. BattlerPlayerX = 0 @@ -19329,7 +19329,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 18.8 Color = Gray -Shape = 1 +Shape = Head Kind = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. WildItemUncommon = STICKYBARB @@ -19362,7 +19362,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 110.0 Color = Gray -Shape = 10 +Shape = Multiped Kind = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. WildItemUncommon = STICKYBARB @@ -19393,7 +19393,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 21.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. BattlerPlayerX = 2 @@ -19424,7 +19424,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 51.0 Color = Gray -Shape = 11 +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. BattlerPlayerX = 1 @@ -19455,7 +19455,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 81.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. BattlerPlayerX = 1 @@ -19484,7 +19484,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.3 Color = White -Shape = 3 +Shape = Finned Kind = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. BattlerPlayerX = -4 @@ -19514,7 +19514,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 22.0 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -19544,7 +19544,7 @@ StepsToHatch = 5120 Height = 2.1 Weight = 80.5 Color = Blue -Shape = 3 +Shape = Finned Kind = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. BattlerPlayerX = -5 @@ -19575,7 +19575,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. BattlerPlayerX = 0 @@ -19606,7 +19606,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 34.5 Color = Brown -Shape = 12 +Shape = Bipedal Kind = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. BattlerPlayerX = -2 @@ -19638,7 +19638,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.1 Color = White -Shape = 5 +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. BattlerPlayerX = -1 @@ -19670,7 +19670,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 13.0 Color = Black -Shape = 4 +Shape = HeadArms Kind = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. BattlerPlayerX = -1 @@ -19702,7 +19702,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 34.3 Color = Black -Shape = 4 +Shape = HeadArms Kind = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. BattlerPlayerX = -2 @@ -19733,7 +19733,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 18.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 1 @@ -19764,7 +19764,7 @@ StepsToHatch = 10240 Height = 1.0 Weight = 36.0 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. BattlerPlayerX = -5 @@ -19795,7 +19795,7 @@ StepsToHatch = 10240 Height = 1.8 Weight = 105.5 Color = Yellow -Shape = 6 +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. BattlerPlayerX = -1 @@ -19826,7 +19826,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 8.5 Color = White -Shape = 6 +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. BattlerPlayerX = -2 @@ -19857,7 +19857,7 @@ StepsToHatch = 5120 Height = 2.6 Weight = 260.0 Color = White -Shape = 8 +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. BattlerPlayerX = -2 @@ -19886,7 +19886,7 @@ StepsToHatch = 6400 Height = 1.1 Weight = 148.0 Color = Blue -Shape = 1 +Shape = Head Kind = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. WildItemUncommon = NEVERMELTICE @@ -19918,7 +19918,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 7.7 Color = Red -Shape = 1 +Shape = Head Kind = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. BattlerPlayerX = -4 @@ -19949,7 +19949,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 25.3 Color = Red -Shape = 4 +Shape = HeadArms Kind = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. BattlerPlayerX = -4 @@ -19981,7 +19981,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 11.0 Color = Brown -Shape = 3 +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. WildItemUncommon = SOFTSAND @@ -20013,7 +20013,7 @@ StepsToHatch = 6400 Height = 0.9 Weight = 20.0 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. BattlerPlayerX = -1 @@ -20044,7 +20044,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 35.5 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. BattlerPlayerX = -3 @@ -20075,7 +20075,7 @@ StepsToHatch = 7680 Height = 1.6 Weight = 139.0 Color = Red -Shape = 6 +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. WildItemUncommon = DRAGONFANG @@ -20107,7 +20107,7 @@ StepsToHatch = 6400 Height = 1.0 Weight = 92.0 Color = Green -Shape = 12 +Shape = Bipedal Kind = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. WildItemUncommon = LIGHTCLAY @@ -20140,7 +20140,7 @@ StepsToHatch = 6400 Height = 2.8 Weight = 330.0 Color = Green -Shape = 12 +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. WildItemUncommon = LIGHTCLAY @@ -20173,7 +20173,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 10.2 Color = Red -Shape = 12 +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. BattlerPlayerX = 2 @@ -20205,7 +20205,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 70.0 Color = Red -Shape = 12 +Shape = Bipedal Kind = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. BattlerPlayerX = 0 @@ -20236,7 +20236,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 94.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. BattlerPlayerX = -1 @@ -20267,7 +20267,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 10.5 Color = White -Shape = 9 +Shape = Winged Kind = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. BattlerPlayerX = 1 @@ -20299,7 +20299,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 41.0 Color = Red -Shape = 9 +Shape = Winged Kind = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. BattlerPlayerX = -2 @@ -20331,7 +20331,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Brown -Shape = 9 +Shape = Winged Kind = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. BattlerPlayerX = 0 @@ -20363,7 +20363,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 39.5 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -20394,7 +20394,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 58.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. BattlerPlayerX = 3 @@ -20426,7 +20426,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 33.0 Color = Gray -Shape = 14 +Shape = Insectoid Kind = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. BattlerPlayerX = 0 @@ -20457,7 +20457,7 @@ StepsToHatch = 10240 Height = 0.8 Weight = 17.3 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. BattlerPlayerX = 0 @@ -20488,7 +20488,7 @@ StepsToHatch = 10240 Height = 1.4 Weight = 50.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -20519,7 +20519,7 @@ StepsToHatch = 10240 Height = 1.8 Weight = 160.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. BattlerPlayerX = -2 @@ -20551,7 +20551,7 @@ StepsToHatch = 10240 Height = 1.1 Weight = 28.8 Color = White -Shape = 14 +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. BattlerPlayerX = 0 @@ -20583,7 +20583,7 @@ StepsToHatch = 10240 Height = 1.6 Weight = 46.0 Color = White -Shape = 13 +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. WildItemCommon = SILVERPOWDER @@ -20616,7 +20616,7 @@ StepsToHatch = 20480 Height = 2.1 Weight = 250.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -20646,7 +20646,7 @@ StepsToHatch = 20480 Height = 1.9 Weight = 260.0 Color = Gray -Shape = 8 +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. BattlerPlayerX = 0 @@ -20676,7 +20676,7 @@ StepsToHatch = 20480 Height = 2.0 Weight = 200.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. BattlerPlayerX = 0 @@ -20706,7 +20706,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 63.0 Color = Green -Shape = 4 +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 @@ -20738,7 +20738,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 61.0 Color = Blue -Shape = 4 +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 @@ -20769,7 +20769,7 @@ StepsToHatch = 30720 Height = 3.2 Weight = 330.0 Color = White -Shape = 9 +Shape = Winged Kind = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. BattlerPlayerX = 2 @@ -20799,7 +20799,7 @@ StepsToHatch = 30720 Height = 2.9 Weight = 345.0 Color = Black -Shape = 6 +Shape = BipedalTail Kind = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. BattlerPlayerX = 0 @@ -20830,7 +20830,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 68.0 Color = Brown -Shape = 4 +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 @@ -20861,7 +20861,7 @@ StepsToHatch = 30720 Height = 3.0 Weight = 325.0 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. BattlerPlayerX = -3 @@ -20891,7 +20891,7 @@ StepsToHatch = 20480 Height = 1.4 Weight = 48.5 Color = Yellow -Shape = 8 +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 @@ -20922,7 +20922,7 @@ StepsToHatch = 30720 Height = 0.6 Weight = 6.5 Color = White -Shape = 12 +Shape = Bipedal Kind = Melody Pokedex = Many famous songs have been inspired by the melodies that Meloetta plays. FormName = Aria Forme @@ -20956,7 +20956,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 82.5 Color = Purple -Shape = 12 +Shape = Bipedal Kind = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal @@ -20988,7 +20988,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 9.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -21019,7 +21019,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 29.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -21051,7 +21051,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 90.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -21082,7 +21082,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 9.4 Color = Red -Shape = 8 +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. BattlerPlayerX = 0 @@ -21113,7 +21113,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 14.5 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -21145,7 +21145,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 39.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -21176,7 +21176,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 7.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -21207,7 +21207,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.9 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. BattlerPlayerX = 0 @@ -21239,7 +21239,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 40.0 Color = Blue -Shape = 12 +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. BattlerPlayerX = 0 @@ -21270,7 +21270,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 5.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. BattlerPlayerX = 0 @@ -21302,7 +21302,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 42.4 Color = Brown -Shape = 6 +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. BattlerPlayerX = 0 @@ -21334,7 +21334,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.7 Color = Red -Shape = 9 +Shape = Winged Kind = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. BattlerPlayerX = 0 @@ -21366,7 +21366,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 16.0 Color = Red -Shape = 9 +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. BattlerPlayerX = 0 @@ -21398,7 +21398,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 24.5 Color = Red -Shape = 9 +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. BattlerPlayerX = 0 @@ -21429,7 +21429,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.5 Color = Black -Shape = 14 +Shape = Insectoid Kind = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. BattlerPlayerX = 0 @@ -21460,7 +21460,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 8.4 Color = Black -Shape = 5 +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. BattlerPlayerX = 0 @@ -21492,7 +21492,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 17.0 Color = White -Shape = 13 +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 @@ -21525,7 +21525,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 13.5 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21557,7 +21557,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 81.5 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21588,7 +21588,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.1 Color = White -Shape = 4 +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 @@ -21620,7 +21620,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.9 Color = White -Shape = 4 +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 @@ -21652,7 +21652,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 10.0 Color = White -Shape = 4 +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 @@ -21684,7 +21684,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 31.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21715,7 +21715,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 91.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21746,7 +21746,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 8.0 Color = White -Shape = 6 +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. WildItemUncommon = MENTALHERB @@ -21779,7 +21779,7 @@ StepsToHatch = 6400 Height = 2.1 Weight = 136.0 Color = White -Shape = 12 +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. WildItemUncommon = MENTALHERB @@ -21810,7 +21810,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 28.0 Color = White -Shape = 8 +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 @@ -21842,7 +21842,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.5 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. BattlerPlayerX = 0 @@ -21873,7 +21873,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.5 Color = Blue -Shape = 6 +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 @@ -21905,7 +21905,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 2.0 Color = Brown -Shape = 5 +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. BattlerPlayerX = 0 @@ -21936,7 +21936,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 4.5 Color = Brown -Shape = 11 +Shape = MultiBody Kind = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. BattlerPlayerX = 0 @@ -21967,7 +21967,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 53.0 Color = Brown -Shape = 5 +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 @@ -21999,7 +21999,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.5 Color = Pink -Shape = 4 +Shape = HeadArms Kind = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. BattlerPlayerX = 0 @@ -22030,7 +22030,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 15.5 Color = Pink -Shape = 12 +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. BattlerPlayerX = 0 @@ -22061,7 +22061,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 3.5 Color = White -Shape = 7 +Shape = HeadLegs Kind = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. BattlerPlayerX = 0 @@ -22092,7 +22092,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 5.0 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -22124,7 +22124,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 3.5 Color = Blue -Shape = 10 +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. BattlerPlayerX = 0 @@ -22156,7 +22156,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 47.0 Color = Blue -Shape = 5 +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. BattlerPlayerX = 0 @@ -22188,7 +22188,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 31.0 Color = Brown -Shape = 11 +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. BattlerPlayerX = 0 @@ -22220,7 +22220,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 96.0 Color = Brown -Shape = 11 +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. BattlerPlayerX = 0 @@ -22252,7 +22252,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 7.3 Color = Brown -Shape = 5 +Shape = HeadBase Kind = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. BattlerPlayerX = 0 @@ -22284,7 +22284,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 81.5 Color = Brown -Shape = 5 +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. BattlerPlayerX = 0 @@ -22314,7 +22314,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 8.3 Color = Blue -Shape = 14 +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. BattlerPlayerX = 0 @@ -22344,7 +22344,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 35.3 Color = Blue -Shape = 2 +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. BattlerPlayerX = 0 @@ -22376,7 +22376,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 6.0 Color = Yellow -Shape = 6 +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. BattlerPlayerX = 0 @@ -22408,7 +22408,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 21.0 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. BattlerPlayerX = 0 @@ -22440,7 +22440,7 @@ StepsToHatch = 7680 Height = 0.8 Weight = 26.0 Color = Brown -Shape = 6 +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. BattlerPlayerX = 0 @@ -22472,7 +22472,7 @@ StepsToHatch = 7680 Height = 2.5 Weight = 270.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -22504,7 +22504,7 @@ StepsToHatch = 7680 Height = 1.3 Weight = 25.2 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -22536,7 +22536,7 @@ StepsToHatch = 7680 Height = 2.7 Weight = 225.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. BattlerPlayerX = 0 @@ -22566,7 +22566,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 23.5 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -22598,7 +22598,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 21.5 Color = Green -Shape = 12 +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. WildItemUncommon = KINGSROCK @@ -22631,7 +22631,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 2.2 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. BattlerPlayerX = 0 @@ -22662,7 +22662,7 @@ StepsToHatch = 6400 Height = 0.3 Weight = 5.7 Color = Gray -Shape = 1 +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. BattlerPlayerX = 0 @@ -22693,7 +22693,7 @@ StepsToHatch = 10240 Height = 0.3 Weight = 2.8 Color = Purple -Shape = 2 +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. WildItemUncommon = SHEDSHELL @@ -22725,7 +22725,7 @@ StepsToHatch = 10240 Height = 0.8 Weight = 17.5 Color = Purple -Shape = 2 +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. WildItemUncommon = SHEDSHELL @@ -22757,7 +22757,7 @@ StepsToHatch = 10240 Height = 2.0 Weight = 150.5 Color = Purple -Shape = 6 +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. BattlerPlayerX = 0 @@ -22789,7 +22789,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 3.0 Color = Gray -Shape = 1 +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. BattlerPlayerX = 0 @@ -22821,7 +22821,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.0 Color = Brown -Shape = 4 +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. BattlerPlayerX = 0 @@ -22853,7 +22853,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 71.0 Color = Brown -Shape = 10 +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. BattlerPlayerX = 0 @@ -22884,7 +22884,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.5 Color = Brown -Shape = 1 +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 @@ -22916,7 +22916,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 9.5 Color = Brown -Shape = 5 +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 @@ -22948,7 +22948,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 99.5 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -22979,7 +22979,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 505.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. BattlerPlayerX = 0 @@ -23011,7 +23011,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 8.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -23043,7 +23043,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 85.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -23072,7 +23072,7 @@ StepsToHatch = 30720 Height = 3.0 Weight = 215.0 Color = Blue -Shape = 8 +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 @@ -23103,7 +23103,7 @@ StepsToHatch = 30720 Height = 5.8 Weight = 203.0 Color = Red -Shape = 9 +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. BattlerPlayerX = 0 @@ -23133,7 +23133,7 @@ StepsToHatch = 30720 Height = 5.0 Weight = 305.0 Color = Green -Shape = 2 +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 @@ -23164,7 +23164,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 8.8 Color = Pink -Shape = 4 +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. BattlerPlayerX = 0 @@ -23194,7 +23194,7 @@ StepsToHatch = 30720 Height = 0.5 Weight = 9.0 Color = Purple -Shape = 4 +Shape = HeadArms Kind = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined @@ -23225,7 +23225,7 @@ StepsToHatch = 30720 Height = 1.7 Weight = 195.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -23257,7 +23257,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.5 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -23289,7 +23289,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 16.0 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -23321,7 +23321,7 @@ StepsToHatch = 3840 Height = 1.6 Weight = 36.6 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -23352,7 +23352,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.3 Color = Red -Shape = 8 +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. BattlerPlayerX = 0 @@ -23383,7 +23383,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 25.0 Color = Red -Shape = 8 +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. BattlerPlayerX = 0 @@ -23415,7 +23415,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 83.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -23446,7 +23446,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 7.5 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -23477,7 +23477,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 17.5 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -23509,7 +23509,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 44.0 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -23541,7 +23541,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.2 Color = Black -Shape = 9 +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. WildItemUncommon = ORANBERRY @@ -23574,7 +23574,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 14.8 Color = Black -Shape = 9 +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. WildItemUncommon = SITRUSBERRY @@ -23607,7 +23607,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 26.0 Color = Black -Shape = 9 +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. WildItemUncommon = RAWSTBERRY @@ -23639,7 +23639,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 6.0 Color = Brown -Shape = 8 +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. WildItemUncommon = PECHABERRY @@ -23671,7 +23671,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 14.2 Color = Brown -Shape = 8 +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. WildItemUncommon = PECHABERRY @@ -23702,7 +23702,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.4 Color = Gray -Shape = 14 +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. BattlerPlayerX = 0 @@ -23733,7 +23733,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 10.5 Color = Green -Shape = 2 +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! WildItemUncommon = CELLBATTERY @@ -23765,7 +23765,7 @@ StepsToHatch = 3840 Height = 1.5 Weight = 45.0 Color = Blue -Shape = 14 +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. BattlerPlayerX = 0 @@ -23796,7 +23796,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.0 Color = Purple -Shape = 14 +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. WildItemUncommon = ASPEARBERRY @@ -23829,7 +23829,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 180.0 Color = White -Shape = 14 +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. WildItemUncommon = CHERIBERRY @@ -23861,7 +23861,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 3.4 Color = Red -Shape = 9 +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 @@ -23895,7 +23895,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.2 Color = Yellow -Shape = 14 +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. WildItemUncommon = HONEY @@ -23928,7 +23928,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.5 Color = Yellow -Shape = 13 +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. WildItemUncommon = HONEY @@ -23960,7 +23960,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 9.2 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -23991,7 +23991,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 25.0 Color = Brown -Shape = 8 +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 @@ -24022,7 +24022,7 @@ StepsToHatch = 3840 Height = 0.2 Weight = 0.3 Color = Blue -Shape = 3 +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 @@ -24055,7 +24055,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 8.0 Color = Blue -Shape = 5 +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. WildItemUncommon = POISONBARB @@ -24088,7 +24088,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 14.5 Color = Blue -Shape = 10 +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. WildItemUncommon = POISONBARB @@ -24120,7 +24120,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 110.0 Color = Brown -Shape = 8 +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. WildItemUncommon = LIGHTCLAY @@ -24152,7 +24152,7 @@ StepsToHatch = 5120 Height = 2.5 Weight = 920.0 Color = Brown -Shape = 8 +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. WildItemUncommon = LIGHTCLAY @@ -24185,7 +24185,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 4.0 Color = Green -Shape = 7 +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. WildItemUncommon = MYSTICWATER @@ -24218,7 +24218,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 82.0 Color = Green -Shape = 14 +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. WildItemUncommon = MYSTICWATER @@ -24250,7 +24250,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 1.5 Color = Pink -Shape = 6 +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. WildItemUncommon = MIRACLESEED @@ -24282,7 +24282,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 18.5 Color = Pink -Shape = 12 +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. WildItemUncommon = MIRACLESEED @@ -24315,7 +24315,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 1.5 Color = Purple -Shape = 5 +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. WildItemCommon = TINYMUSHROOM @@ -24349,7 +24349,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 11.5 Color = Purple -Shape = 12 +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. WildItemCommon = TINYMUSHROOM @@ -24383,7 +24383,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 4.8 Color = Black -Shape = 8 +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. WildItemUncommon = SMOKEBALL @@ -24416,7 +24416,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 22.2 Color = Black -Shape = 8 +Shape = Quadruped Kind = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. WildItemUncommon = SMOKEBALL @@ -24449,7 +24449,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 6.8 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -24481,7 +24481,7 @@ StepsToHatch = 3840 Height = 2.1 Weight = 135.0 Color = Pink -Shape = 6 +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. BattlerPlayerX = 0 @@ -24512,7 +24512,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.2 Color = Purple -Shape = 7 +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. WildItemUncommon = GRASSYSEED @@ -24544,7 +24544,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 8.2 Color = Purple -Shape = 12 +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. WildItemUncommon = GRASSYSEED @@ -24576,7 +24576,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 21.4 Color = Purple -Shape = 12 +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. WildItemCommon = GRASSYSEED @@ -24608,7 +24608,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.3 Color = Green -Shape = 1 +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. WildItemUncommon = MISTYSEED @@ -24641,7 +24641,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 76.0 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -24672,7 +24672,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 82.8 Color = White -Shape = 6 +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. BattlerPlayerX = 0 @@ -24703,7 +24703,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 12.0 Color = Gray -Shape = 10 +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. BattlerPlayerX = 0 @@ -24734,7 +24734,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 108.0 Color = Gray -Shape = 12 +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. BattlerPlayerX = 0 @@ -24766,7 +24766,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 70.0 Color = Brown -Shape = 2 +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. WildItemUncommon = SPELLTAG @@ -24799,7 +24799,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 250.0 Color = Brown -Shape = 2 +Shape = Serpentine Kind = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. WildItemUncommon = SPELLTAG @@ -24831,7 +24831,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.2 Color = Black -Shape = 2 +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. BattlerPlayerX = 0 @@ -24860,7 +24860,7 @@ StepsToHatch = 30720 Height = 1.9 Weight = 120.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. BattlerPlayerX = 0 @@ -24890,7 +24890,7 @@ StepsToHatch = 30720 Height = 2.3 Weight = 100.5 Color = Gray -Shape = 8 +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 @@ -24921,7 +24921,7 @@ StepsToHatch = 6400 Height = 0.3 Weight = 40.0 Color = Brown -Shape = 1 +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 @@ -24953,7 +24953,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 19.9 Color = Blue -Shape = 12 +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. BattlerPlayerX = 0 @@ -24984,7 +24984,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 212.0 Color = Red -Shape = 6 +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. WildItemUncommon = CHARCOAL @@ -25017,7 +25017,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 3.3 Color = Gray -Shape = 6 +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. WildItemUncommon = ELECTRICSEED @@ -25049,7 +25049,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.7 Color = Yellow -Shape = 2 +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 @@ -25083,7 +25083,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 19.0 Color = Pink -Shape = 3 +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. WildItemUncommon = RAZORFANG @@ -25116,7 +25116,7 @@ StepsToHatch = 5120 Height = 3.0 Weight = 185.0 Color = White -Shape = 2 +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. WildItemUncommon = PERSIMBERRY @@ -25147,7 +25147,7 @@ StepsToHatch = 6400 Height = 3.9 Weight = 210.0 Color = Green -Shape = 5 +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. BattlerPlayerX = 0 @@ -25178,7 +25178,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 29.7 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. WildItemUncommon = RAZORCLAW @@ -25211,7 +25211,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 47.0 Color = Gray -Shape = 6 +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. WildItemUncommon = RAZORCLAW @@ -25244,7 +25244,7 @@ StepsToHatch = 10240 Height = 1.6 Weight = 78.2 Color = Gray -Shape = 6 +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. WildItemCommon = RAZORCLAW @@ -25276,7 +25276,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 20.5 Color = Yellow -Shape = 4 +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. BattlerPlayerX = 0 @@ -25307,7 +25307,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 18.6 Color = Pink -Shape = 4 +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. BattlerPlayerX = 0 @@ -25338,7 +25338,7 @@ StepsToHatch = 3840 Height = 1.9 Weight = 45.5 Color = Red -Shape = 4 +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. BattlerPlayerX = 0 @@ -25369,7 +25369,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 21.2 Color = Purple -Shape = 4 +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. BattlerPlayerX = 0 @@ -25397,7 +25397,7 @@ StepsToHatch = 30720 Height = 0.2 Weight = 0.1 Color = Blue -Shape = 1 +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. BattlerPlayerX = 0 @@ -25426,7 +25426,7 @@ StepsToHatch = 30720 Height = 0.1 Weight = 999.9 Color = Blue -Shape = 1 +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. BattlerPlayerX = 0 @@ -25457,7 +25457,7 @@ StepsToHatch = 30720 Height = 3.4 Weight = 230.0 Color = White -Shape = 8 +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. BattlerPlayerX = 0 @@ -25487,7 +25487,7 @@ StepsToHatch = 30720 Height = 4.0 Weight = 120.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -25517,7 +25517,7 @@ StepsToHatch = 30720 Height = 1.2 Weight = 55.5 Color = White -Shape = 10 +Shape = Multiped Kind = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. BattlerPlayerX = 0 @@ -25547,7 +25547,7 @@ StepsToHatch = 30720 Height = 2.4 Weight = 333.6 Color = Red -Shape = 10 +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. BattlerPlayerX = 0 @@ -25577,7 +25577,7 @@ StepsToHatch = 30720 Height = 1.8 Weight = 25.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. BattlerPlayerX = 0 @@ -25606,7 +25606,7 @@ StepsToHatch = 30720 Height = 3.8 Weight = 100.0 Color = Black -Shape = 6 +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. BattlerPlayerX = 0 @@ -25636,7 +25636,7 @@ StepsToHatch = 30720 Height = 9.2 Weight = 999.9 Color = Green -Shape = 12 +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. BattlerPlayerX = 0 @@ -25666,7 +25666,7 @@ StepsToHatch = 30720 Height = 0.3 Weight = 0.1 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -25696,7 +25696,7 @@ StepsToHatch = 30720 Height = 5.5 Weight = 888.0 Color = Black -Shape = 6 +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. BattlerPlayerX = 0 @@ -25725,7 +25725,7 @@ StepsToHatch = 30720 Height = 2.4 Weight = 230.0 Color = Black -Shape = 4 +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. BattlerPlayerX = 0 @@ -25755,7 +25755,7 @@ StepsToHatch = 30720 Height = 1.0 Weight = 80.5 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. BattlerPlayerX = 0 @@ -25785,7 +25785,7 @@ StepsToHatch = 30720 Height = 0.7 Weight = 22.2 Color = Gray -Shape = 12 +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. BattlerPlayerX = 0 @@ -25814,7 +25814,7 @@ StepsToHatch = 30720 Height = 0.6 Weight = 1.8 Color = Purple -Shape = 6 +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. BattlerPlayerX = 0 @@ -25845,7 +25845,7 @@ StepsToHatch = 30720 Height = 3.6 Weight = 150.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -25875,7 +25875,7 @@ StepsToHatch = 30720 Height = 5.5 Weight = 820.0 Color = Gray -Shape = 8 +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. BattlerPlayerX = 0 @@ -25905,7 +25905,7 @@ StepsToHatch = 30720 Height = 1.8 Weight = 13.0 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -25934,7 +25934,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 44.5 Color = Yellow -Shape = 12 +Shape = Bipedal Kind = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. BattlerPlayerX = 0 @@ -25962,7 +25962,7 @@ StepsToHatch = 30720 Height = 0.2 Weight = 8.0 Color = Gray -Shape = 1 +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. BattlerPlayerX = 0 @@ -25991,7 +25991,7 @@ StepsToHatch = 30720 Height = 2.5 Weight = 800.0 Color = Gray -Shape = 12 +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. BattlerPlayerX = 0 diff --git a/PBS/Gen 7/pokemonforms.txt b/PBS/Gen 7/pokemonforms.txt index 91226807c..16a268f9d 100644 --- a/PBS/Gen 7/pokemonforms.txt +++ b/PBS/Gen 7/pokemonforms.txt @@ -265,7 +265,7 @@ Abilities = SHELLARMOR HiddenAbility = SHELLARMOR Height = 2.0 Weight = 120.0 -Shape = 4 +Shape = HeadArms Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too. #------------------------------- [GRIMER,1] @@ -350,7 +350,7 @@ Abilities = AERILATE HiddenAbility = AERILATE Height = 1.7 Weight = 59.0 -Shape = 13 +Shape = MultiWinged Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers. #------------------------------- [GYARADOS,1] @@ -944,7 +944,7 @@ HiddenAbility = LEVITATE TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP Height = 6.9 Weight = 650.0 -Shape = 2 +Shape = Serpentine BattlerEnemyX = -2 BattlerEnemyY = -8 #------------------------------- @@ -1093,7 +1093,7 @@ EffortPoints = 0,0,0,3,0,0 Abilities = REGENERATOR HiddenAbility = REGENERATOR Height = 1.4 -Shape = 9 +Shape = Winged BattlerPlayerX = -2 BattlerEnemyX = 8 BattlerEnemyY = 11 @@ -1106,7 +1106,7 @@ Abilities = VOLTABSORB HiddenAbility = VOLTABSORB TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE Height = 3.0 -Shape = 6 +Shape = BipedalTail BattlerPlayerX = -3 BattlerEnemyX = 2 BattlerEnemyY = 5 @@ -1118,7 +1118,7 @@ EffortPoints = 0,3,0,0,0,0 Abilities = INTIMIDATE HiddenAbility = INTIMIDATE Height = 1.3 -Shape = 8 +Shape = Quadruped BattlerPlayerX = -8 BattlerEnemyX = 3 BattlerEnemyY = 14 @@ -1402,7 +1402,7 @@ BaseStats = 54,100,71,115,61,85 Height = 1.2 Weight = 33.5 Color = Black -Shape = 8 +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. #------------------------------- [ZYGARDE,2] @@ -1412,7 +1412,7 @@ Abilities = POWERCONSTRUCT Height = 4.5 Weight = 610.0 Color = Black -Shape = 6 +Shape = BipedalTail Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything. #------------------------------- [ZYGARDE,3] @@ -1422,7 +1422,7 @@ Abilities = POWERCONSTRUCT Height = 4.5 Weight = 610.0 Color = Black -Shape = 6 +Shape = BipedalTail #------------------------------- [DIANCIE,1] FormName = Mega Diancie @@ -1441,7 +1441,7 @@ BaseStats = 80,160,60,80,170,130 Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY Height = 6.5 Weight = 490.0 -Shape = 6 +Shape = BipedalTail #------------------------------- [ORICORIO,1] FormName = Pom-Pom Style @@ -1478,7 +1478,7 @@ Moves = 0,COUNTER,1,COUNTER,1,REVERSAL,1,TAUNT,1,TACKLE,1,LEER,1,SANDATTACK,1,BI TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT Height = 1.1 Color = Red -Shape = 6 +Shape = BipedalTail Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane. #------------------------------- [LYCANROC,2] @@ -1495,7 +1495,7 @@ FormName = School Form BaseStats = 45,140,130,30,140,135 Height = 8.2 Weight = 78.6 -Shape = 11 +Shape = MultiBody Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far. #------------------------------- [SILVALLY,1] @@ -1640,7 +1640,7 @@ EffortPoints = 0,3,0,0,0,0 Height = 3.8 Weight = 460.0 Color = Yellow -Shape = 8 +Shape = Quadruped Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control. #------------------------------- [NECROZMA,2] diff --git a/PBS/pokemon.txt b/PBS/pokemon.txt index 21c2be8bd..fe5904dab 100644 --- a/PBS/pokemon.txt +++ b/PBS/pokemon.txt @@ -22,7 +22,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 6.9 Color = Green -Shape = 8 +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. @@ -55,7 +55,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 13.0 Color = Green -Shape = 8 +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. @@ -88,7 +88,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 100.0 Color = Green -Shape = 8 +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. @@ -120,7 +120,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.5 Color = Red -Shape = 6 +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. @@ -152,7 +152,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 19.0 Color = Red -Shape = 6 +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. @@ -185,7 +185,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 90.5 Color = Red -Shape = 6 +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. @@ -217,7 +217,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Blue -Shape = 6 +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. @@ -249,7 +249,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 22.5 Color = Blue -Shape = 6 +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. @@ -281,7 +281,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 85.5 Color = Blue -Shape = 6 +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. @@ -312,7 +312,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.9 Color = Green -Shape = 14 +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. @@ -343,7 +343,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 9.9 Color = Green -Shape = 2 +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. @@ -376,7 +376,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 32.0 Color = White -Shape = 13 +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. @@ -409,7 +409,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 3.2 Color = Brown -Shape = 14 +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). @@ -441,7 +441,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 10.0 Color = Yellow -Shape = 2 +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. @@ -474,7 +474,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 29.5 Color = Yellow -Shape = 13 +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. @@ -508,7 +508,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.8 Color = Brown -Shape = 9 +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. @@ -541,7 +541,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 30.0 Color = Brown -Shape = 9 +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. @@ -574,7 +574,7 @@ StepsToHatch = 3840 Height = 1.5 Weight = 39.5 Color = Brown -Shape = 9 +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. @@ -606,7 +606,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 3.5 Color = Purple -Shape = 8 +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. @@ -639,7 +639,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 18.5 Color = Brown -Shape = 8 +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. @@ -673,7 +673,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.0 Color = Brown -Shape = 9 +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. @@ -707,7 +707,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 38.0 Color = Brown -Shape = 9 +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. @@ -740,7 +740,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 6.9 Color = Purple -Shape = 2 +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. @@ -772,7 +772,7 @@ StepsToHatch = 5120 Height = 3.5 Weight = 65.0 Color = Purple -Shape = 2 +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. @@ -803,7 +803,7 @@ StepsToHatch = 2560 Height = 0.4 Weight = 6.0 Color = Yellow -Shape = 8 +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. @@ -836,7 +836,7 @@ StepsToHatch = 2560 Height = 0.8 Weight = 30.0 Color = Yellow -Shape = 6 +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. @@ -868,7 +868,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.0 Color = Yellow -Shape = 6 +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. @@ -901,7 +901,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 29.5 Color = Yellow -Shape = 6 +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. @@ -934,7 +934,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.0 Color = Blue -Shape = 8 +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. @@ -966,7 +966,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 20.0 Color = Blue -Shape = 8 +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. @@ -999,7 +999,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 60.0 Color = Blue -Shape = 6 +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. @@ -1031,7 +1031,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Purple -Shape = 8 +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. @@ -1063,7 +1063,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.5 Color = Purple -Shape = 8 +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. @@ -1096,7 +1096,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 62.0 Color = Purple -Shape = 6 +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. @@ -1127,7 +1127,7 @@ StepsToHatch = 2560 Height = 0.6 Weight = 7.5 Color = Pink -Shape = 6 +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. @@ -1160,7 +1160,7 @@ StepsToHatch = 2560 Height = 1.3 Weight = 40.0 Color = Pink -Shape = 6 +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. @@ -1193,7 +1193,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 9.9 Color = Brown -Shape = 8 +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. @@ -1226,7 +1226,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 19.9 Color = Yellow -Shape = 8 +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. @@ -1259,7 +1259,7 @@ StepsToHatch = 2560 Height = 0.5 Weight = 5.5 Color = Pink -Shape = 12 +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. @@ -1293,7 +1293,7 @@ StepsToHatch = 2560 Height = 1.0 Weight = 12.0 Color = Pink -Shape = 12 +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. @@ -1327,7 +1327,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 7.5 Color = Purple -Shape = 9 +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. @@ -1360,7 +1360,7 @@ StepsToHatch = 3840 Height = 1.6 Weight = 55.0 Color = Purple -Shape = 9 +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. @@ -1394,7 +1394,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.4 Color = Blue -Shape = 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. @@ -1428,7 +1428,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 8.6 Color = Blue -Shape = 12 +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. @@ -1462,7 +1462,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 18.6 Color = Red -Shape = 12 +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. @@ -1496,7 +1496,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 5.4 Color = Red -Shape = 14 +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. @@ -1531,7 +1531,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 29.5 Color = Red -Shape = 14 +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. @@ -1566,7 +1566,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 30.0 Color = Purple -Shape = 12 +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. @@ -1599,7 +1599,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 12.5 Color = Purple -Shape = 13 +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. @@ -1632,7 +1632,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.8 Color = Brown -Shape = 5 +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. @@ -1665,7 +1665,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 33.3 Color = Brown -Shape = 11 +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. @@ -1698,7 +1698,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 8 +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. @@ -1731,7 +1731,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 32.0 Color = Yellow -Shape = 8 +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. @@ -1764,7 +1764,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 19.6 Color = Yellow -Shape = 6 +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. @@ -1796,7 +1796,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 76.6 Color = Blue -Shape = 6 +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. @@ -1828,7 +1828,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 28.0 Color = Brown -Shape = 6 +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. @@ -1860,7 +1860,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 32.0 Color = Brown -Shape = 6 +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. @@ -1892,7 +1892,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 19.0 Color = Brown -Shape = 8 +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. @@ -1924,7 +1924,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 155.0 Color = Brown -Shape = 8 +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. @@ -1956,7 +1956,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.4 Color = Blue -Shape = 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. @@ -1988,7 +1988,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 20.0 Color = Blue -Shape = 12 +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. @@ -2022,7 +2022,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 54.0 Color = Blue -Shape = 12 +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. @@ -2055,7 +2055,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.5 Color = Brown -Shape = 6 +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. @@ -2088,7 +2088,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 56.5 Color = Brown -Shape = 6 +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. @@ -2121,7 +2121,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 48.0 Color = Brown -Shape = 12 +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. @@ -2154,7 +2154,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 19.5 Color = Gray -Shape = 6 +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. @@ -2187,7 +2187,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 70.5 Color = Gray -Shape = 12 +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. @@ -2220,7 +2220,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 130.0 Color = Gray -Shape = 12 +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. @@ -2254,7 +2254,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 4.0 Color = Green -Shape = 12 +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. @@ -2287,7 +2287,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 6.4 Color = Green -Shape = 5 +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. @@ -2320,7 +2320,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 15.5 Color = Green -Shape = 5 +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. @@ -2353,7 +2353,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 45.5 Color = Blue -Shape = 10 +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. @@ -2387,7 +2387,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 55.0 Color = Blue -Shape = 10 +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. @@ -2421,7 +2421,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 20.0 Color = Brown -Shape = 4 +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. @@ -2455,7 +2455,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 105.0 Color = Brown -Shape = 12 +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. @@ -2489,7 +2489,7 @@ StepsToHatch = 3840 Height = 1.4 Weight = 300.0 Color = Brown -Shape = 12 +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. @@ -2522,7 +2522,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 30.0 Color = Yellow -Shape = 8 +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. @@ -2554,7 +2554,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 95.0 Color = Yellow -Shape = 8 +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. @@ -2587,7 +2587,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 36.0 Color = Pink -Shape = 8 +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. @@ -2621,7 +2621,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 78.5 Color = Pink -Shape = 6 +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. @@ -2654,7 +2654,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 6.0 Color = Gray -Shape = 4 +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. @@ -2688,7 +2688,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 60.0 Color = Gray -Shape = 11 +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. @@ -2723,7 +2723,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 15.0 Color = Brown -Shape = 9 +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. @@ -2757,7 +2757,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 39.2 Color = Brown -Shape = 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. @@ -2791,7 +2791,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 85.2 Color = Brown -Shape = 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. @@ -2824,7 +2824,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 90.0 Color = White -Shape = 3 +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. @@ -2857,7 +2857,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 120.0 Color = White -Shape = 3 +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. @@ -2889,7 +2889,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 30.0 Color = Purple -Shape = 4 +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. @@ -2922,7 +2922,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 30.0 Color = Purple -Shape = 4 +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. @@ -2955,7 +2955,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 4.0 Color = Purple -Shape = 1 +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. @@ -2990,7 +2990,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 132.5 Color = Purple -Shape = 1 +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. @@ -3024,7 +3024,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 0.1 Color = Purple -Shape = 1 +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. @@ -3056,7 +3056,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 0.1 Color = Purple -Shape = 4 +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. @@ -3088,7 +3088,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 40.5 Color = Purple -Shape = 6 +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. @@ -3121,7 +3121,7 @@ StepsToHatch = 6400 Height = 8.8 Weight = 210.0 Color = Gray -Shape = 2 +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. @@ -3154,7 +3154,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 32.4 Color = Yellow -Shape = 12 +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. @@ -3186,7 +3186,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 75.6 Color = Yellow -Shape = 12 +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. @@ -3218,7 +3218,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.5 Color = Red -Shape = 14 +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. @@ -3250,7 +3250,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 60.0 Color = Red -Shape = 14 +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. @@ -3281,7 +3281,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 10.4 Color = Red -Shape = 1 +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. @@ -3313,7 +3313,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 66.6 Color = Red -Shape = 1 +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. @@ -3346,7 +3346,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 2.5 Color = Pink -Shape = 11 +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. @@ -3380,7 +3380,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 120.0 Color = Yellow -Shape = 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. @@ -3412,7 +3412,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.5 Color = Brown -Shape = 6 +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. @@ -3445,7 +3445,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 45.0 Color = Brown -Shape = 6 +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. @@ -3477,7 +3477,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 49.8 Color = Brown -Shape = 12 +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. @@ -3508,7 +3508,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 50.2 Color = Brown -Shape = 12 +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. @@ -3540,7 +3540,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 65.5 Color = Pink -Shape = 6 +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. @@ -3573,7 +3573,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 1.0 Color = Purple -Shape = 1 +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. @@ -3605,7 +3605,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 9.5 Color = Purple -Shape = 11 +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. @@ -3639,7 +3639,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 115.0 Color = Gray -Shape = 8 +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. @@ -3672,7 +3672,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 120.0 Color = Gray -Shape = 6 +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. @@ -3705,7 +3705,7 @@ StepsToHatch = 10240 Height = 1.1 Weight = 34.6 Color = Pink -Shape = 6 +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. @@ -3739,7 +3739,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 35.0 Color = Blue -Shape = 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. @@ -3772,7 +3772,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 80.0 Color = Brown -Shape = 6 +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. @@ -3804,7 +3804,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 8.0 Color = Blue -Shape = 5 +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. @@ -3837,7 +3837,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 25.0 Color = Blue -Shape = 5 +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. @@ -3871,7 +3871,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 15.0 Color = Red -Shape = 3 +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. @@ -3904,7 +3904,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 39.0 Color = Red -Shape = 3 +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. @@ -3936,7 +3936,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 34.5 Color = Brown -Shape = 5 +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. @@ -3971,7 +3971,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 80.0 Color = Purple -Shape = 5 +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. @@ -4006,7 +4006,7 @@ StepsToHatch = 6400 Height = 1.3 Weight = 54.5 Color = Pink -Shape = 12 +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. @@ -4039,7 +4039,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 56.0 Color = Green -Shape = 13 +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. @@ -4072,7 +4072,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 40.6 Color = Red -Shape = 12 +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. @@ -4103,7 +4103,7 @@ StepsToHatch = 6400 Height = 1.1 Weight = 30.0 Color = Yellow -Shape = 6 +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. @@ -4136,7 +4136,7 @@ StepsToHatch = 6400 Height = 1.3 Weight = 44.5 Color = Red -Shape = 6 +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. @@ -4170,7 +4170,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 55.0 Color = Brown -Shape = 12 +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. @@ -4201,7 +4201,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 88.4 Color = Brown -Shape = 8 +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. @@ -4232,7 +4232,7 @@ StepsToHatch = 1280 Height = 0.9 Weight = 10.0 Color = Red -Shape = 3 +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. @@ -4265,7 +4265,7 @@ StepsToHatch = 1280 Height = 6.5 Weight = 235.0 Color = Blue -Shape = 2 +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. @@ -4298,7 +4298,7 @@ StepsToHatch = 10240 Height = 2.5 Weight = 220.0 Color = Blue -Shape = 3 +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. @@ -4331,7 +4331,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 4.0 Color = Purple -Shape = 1 +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. @@ -4365,7 +4365,7 @@ StepsToHatch = 8960 Height = 0.3 Weight = 6.5 Color = Brown -Shape = 8 +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. @@ -4397,7 +4397,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 29.0 Color = Blue -Shape = 8 +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. @@ -4428,7 +4428,7 @@ StepsToHatch = 8960 Height = 0.8 Weight = 24.5 Color = Yellow -Shape = 8 +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. @@ -4459,7 +4459,7 @@ StepsToHatch = 8960 Height = 0.9 Weight = 25.0 Color = Red -Shape = 8 +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. @@ -4490,7 +4490,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 36.5 Color = Pink -Shape = 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. @@ -4524,7 +4524,7 @@ StepsToHatch = 7680 Height = 0.4 Weight = 7.5 Color = Blue -Shape = 10 +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. @@ -4557,7 +4557,7 @@ StepsToHatch = 7680 Height = 1.0 Weight = 35.0 Color = Blue -Shape = 10 +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. @@ -4590,7 +4590,7 @@ StepsToHatch = 7680 Height = 0.5 Weight = 11.5 Color = Brown -Shape = 14 +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. @@ -4623,7 +4623,7 @@ StepsToHatch = 7680 Height = 1.3 Weight = 40.5 Color = Brown -Shape = 6 +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. @@ -4656,7 +4656,7 @@ StepsToHatch = 8960 Height = 1.8 Weight = 59.0 Color = Purple -Shape = 9 +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. @@ -4688,7 +4688,7 @@ StepsToHatch = 10240 Height = 2.1 Weight = 460.0 Color = Black -Shape = 12 +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. @@ -4723,7 +4723,7 @@ StepsToHatch = 20480 Height = 1.7 Weight = 55.4 Color = Blue -Shape = 9 +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. @@ -4755,7 +4755,7 @@ StepsToHatch = 20480 Height = 1.6 Weight = 52.6 Color = Yellow -Shape = 9 +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. @@ -4787,7 +4787,7 @@ StepsToHatch = 20480 Height = 2.0 Weight = 60.0 Color = Yellow -Shape = 9 +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. @@ -4819,7 +4819,7 @@ StepsToHatch = 10240 Height = 1.8 Weight = 3.3 Color = Blue -Shape = 2 +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. @@ -4852,7 +4852,7 @@ StepsToHatch = 10240 Height = 4.0 Weight = 16.5 Color = Blue -Shape = 2 +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. @@ -4886,7 +4886,7 @@ StepsToHatch = 10240 Height = 2.2 Weight = 210.0 Color = Brown -Shape = 6 +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. @@ -4918,7 +4918,7 @@ StepsToHatch = 30720 Height = 2.0 Weight = 122.0 Color = Purple -Shape = 6 +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. @@ -4948,7 +4948,7 @@ StepsToHatch = 30720 Height = 0.4 Weight = 4.0 Color = Pink -Shape = 6 +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. @@ -4983,7 +4983,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 6.4 Color = Green -Shape = 8 +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. @@ -5015,7 +5015,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 15.8 Color = Green -Shape = 8 +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. @@ -5047,7 +5047,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 100.5 Color = Green -Shape = 8 +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. @@ -5079,7 +5079,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 7.9 Color = Yellow -Shape = 12 +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. @@ -5111,7 +5111,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.0 Color = Yellow -Shape = 8 +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. @@ -5143,7 +5143,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 79.5 Color = Yellow -Shape = 8 +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. @@ -5175,7 +5175,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 9.5 Color = Blue -Shape = 6 +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. @@ -5207,7 +5207,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 25.0 Color = Blue -Shape = 6 +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. @@ -5239,7 +5239,7 @@ StepsToHatch = 5120 Height = 2.3 Weight = 88.8 Color = Blue -Shape = 6 +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. @@ -5271,7 +5271,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 6.0 Color = Brown -Shape = 8 +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. @@ -5303,7 +5303,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 32.5 Color = Brown -Shape = 8 +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. @@ -5336,7 +5336,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 21.2 Color = Brown -Shape = 9 +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. @@ -5369,7 +5369,7 @@ StepsToHatch = 3840 Height = 1.6 Weight = 40.8 Color = Brown -Shape = 9 +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. @@ -5402,7 +5402,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 10.8 Color = Red -Shape = 9 +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. @@ -5435,7 +5435,7 @@ StepsToHatch = 3840 Height = 1.4 Weight = 35.6 Color = Red -Shape = 9 +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. @@ -5468,7 +5468,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 8.5 Color = Green -Shape = 14 +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. @@ -5501,7 +5501,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 33.5 Color = Red -Shape = 14 +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. @@ -5533,7 +5533,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 75.0 Color = Purple -Shape = 13 +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. @@ -5566,7 +5566,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 12.0 Color = Blue -Shape = 3 +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. @@ -5600,7 +5600,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 22.5 Color = Blue -Shape = 3 +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. @@ -5633,7 +5633,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 2.0 Color = Yellow -Shape = 8 +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. @@ -5666,7 +5666,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 3.0 Color = Pink -Shape = 6 +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. @@ -5701,7 +5701,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 1.0 Color = Pink -Shape = 12 +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. @@ -5734,7 +5734,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 1.5 Color = White -Shape = 12 +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. @@ -5767,7 +5767,7 @@ StepsToHatch = 2560 Height = 0.6 Weight = 3.2 Color = White -Shape = 12 +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. @@ -5801,7 +5801,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 2.0 Color = Green -Shape = 9 +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. @@ -5834,7 +5834,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 15.0 Color = Green -Shape = 9 +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. @@ -5866,7 +5866,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.8 Color = White -Shape = 8 +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. @@ -5898,7 +5898,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 13.3 Color = Pink -Shape = 6 +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. @@ -5930,7 +5930,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 61.5 Color = Yellow -Shape = 6 +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. @@ -5961,7 +5961,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.8 Color = Green -Shape = 12 +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. @@ -5995,7 +5995,7 @@ StepsToHatch = 2560 Height = 0.4 Weight = 8.5 Color = Blue -Shape = 6 +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. @@ -6028,7 +6028,7 @@ StepsToHatch = 2560 Height = 0.8 Weight = 28.5 Color = Blue -Shape = 6 +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. @@ -6060,7 +6060,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 38.0 Color = Brown -Shape = 12 +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. @@ -6091,7 +6091,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 33.9 Color = Green -Shape = 12 +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. @@ -6125,7 +6125,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 0.5 Color = Pink -Shape = 6 +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. @@ -6158,7 +6158,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 1.0 Color = Green -Shape = 6 +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. @@ -6191,7 +6191,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 3.0 Color = Blue -Shape = 6 +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. @@ -6223,7 +6223,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 11.5 Color = Purple -Shape = 6 +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. @@ -6256,7 +6256,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 1.8 Color = Yellow -Shape = 1 +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. @@ -6288,7 +6288,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 8.5 Color = Yellow -Shape = 12 +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. @@ -6321,7 +6321,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 38.0 Color = Red -Shape = 13 +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. @@ -6356,7 +6356,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 8.5 Color = Blue -Shape = 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. @@ -6389,7 +6389,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 75.0 Color = Blue -Shape = 6 +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. @@ -6420,7 +6420,7 @@ StepsToHatch = 8960 Height = 0.9 Weight = 26.5 Color = Purple -Shape = 8 +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. @@ -6451,7 +6451,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 27.0 Color = Black -Shape = 8 +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. @@ -6484,7 +6484,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 2.1 Color = Black -Shape = 9 +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. @@ -6517,7 +6517,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 79.5 Color = Pink -Shape = 6 +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. @@ -6549,7 +6549,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 1.0 Color = Gray -Shape = 1 +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. @@ -6580,7 +6580,7 @@ StepsToHatch = 10240 Height = 0.5 Weight = 5.0 Color = Black -Shape = 1 +Shape = Head 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. @@ -6612,7 +6612,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 28.5 Color = Blue -Shape = 5 +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. @@ -6645,7 +6645,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 41.5 Color = Yellow -Shape = 8 +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. @@ -6677,7 +6677,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.2 Color = Gray -Shape = 1 +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. @@ -6710,7 +6710,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 125.8 Color = Purple -Shape = 1 +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. @@ -6742,7 +6742,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 14.0 Color = Yellow -Shape = 2 +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. @@ -6775,7 +6775,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 64.8 Color = Purple -Shape = 9 +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. @@ -6808,7 +6808,7 @@ StepsToHatch = 6400 Height = 9.2 Weight = 400.0 Color = Gray -Shape = 2 +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. @@ -6841,7 +6841,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.8 Color = Pink -Shape = 12 +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. @@ -6873,7 +6873,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 48.7 Color = Purple -Shape = 6 +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. @@ -6906,7 +6906,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 3.9 Color = Gray -Shape = 3 +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. @@ -6939,7 +6939,7 @@ StepsToHatch = 6400 Height = 1.8 Weight = 118.0 Color = Red -Shape = 13 +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. @@ -6972,7 +6972,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 20.5 Color = Yellow -Shape = 14 +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. @@ -7008,7 +7008,7 @@ StepsToHatch = 6400 Height = 1.5 Weight = 54.0 Color = Blue -Shape = 12 +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. @@ -7041,7 +7041,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 28.0 Color = Black -Shape = 6 +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. @@ -7075,7 +7075,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.8 Color = Brown -Shape = 6 +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. @@ -7107,7 +7107,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 125.8 Color = Brown -Shape = 6 +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. @@ -7139,7 +7139,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 35.0 Color = Red -Shape = 2 +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. @@ -7172,7 +7172,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 55.0 Color = Red -Shape = 2 +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. @@ -7205,7 +7205,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.5 Color = Brown -Shape = 8 +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. @@ -7238,7 +7238,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 55.8 Color = Brown -Shape = 8 +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. @@ -7272,7 +7272,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 5.0 Color = Pink -Shape = 14 +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. @@ -7305,7 +7305,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.0 Color = Gray -Shape = 3 +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. @@ -7337,7 +7337,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 28.5 Color = Red -Shape = 10 +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. @@ -7370,7 +7370,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 16.0 Color = Red -Shape = 9 +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. @@ -7403,7 +7403,7 @@ StepsToHatch = 6400 Height = 2.1 Weight = 220.0 Color = Purple -Shape = 9 +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. @@ -7436,7 +7436,7 @@ StepsToHatch = 6400 Height = 1.7 Weight = 50.5 Color = Gray -Shape = 9 +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. @@ -7470,7 +7470,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.8 Color = Black -Shape = 8 +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. @@ -7503,7 +7503,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 35.0 Color = Black -Shape = 8 +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. @@ -7535,7 +7535,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 152.0 Color = Blue -Shape = 5 +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. @@ -7568,7 +7568,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 33.5 Color = Blue -Shape = 8 +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. @@ -7600,7 +7600,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 120.0 Color = Gray -Shape = 8 +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. @@ -7631,7 +7631,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 32.5 Color = Red -Shape = 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. @@ -7664,7 +7664,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 71.2 Color = Brown -Shape = 8 +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. @@ -7694,7 +7694,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 58.0 Color = White -Shape = 6 +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. @@ -7726,7 +7726,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 21.0 Color = Purple -Shape = 12 +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. @@ -7758,7 +7758,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 48.0 Color = Brown -Shape = 6 +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. @@ -7791,7 +7791,7 @@ StepsToHatch = 6400 Height = 0.4 Weight = 6.0 Color = Pink -Shape = 12 +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. @@ -7824,7 +7824,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 23.5 Color = Yellow -Shape = 12 +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. @@ -7858,7 +7858,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 21.4 Color = Red -Shape = 6 +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. @@ -7892,7 +7892,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 75.5 Color = Pink -Shape = 6 +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. @@ -7926,7 +7926,7 @@ StepsToHatch = 10240 Height = 1.5 Weight = 46.8 Color = Pink -Shape = 12 +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. @@ -7960,7 +7960,7 @@ StepsToHatch = 20480 Height = 1.9 Weight = 178.0 Color = Yellow -Shape = 8 +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. @@ -7991,7 +7991,7 @@ StepsToHatch = 20480 Height = 2.1 Weight = 198.0 Color = Brown -Shape = 8 +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. @@ -8022,7 +8022,7 @@ StepsToHatch = 20480 Height = 2.0 Weight = 187.0 Color = Blue -Shape = 8 +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. @@ -8055,7 +8055,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 72.0 Color = Green -Shape = 6 +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. @@ -8087,7 +8087,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 152.0 Color = Gray -Shape = 2 +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. @@ -8120,7 +8120,7 @@ StepsToHatch = 10240 Height = 2.0 Weight = 202.0 Color = Green -Shape = 6 +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. @@ -8152,7 +8152,7 @@ StepsToHatch = 30720 Height = 5.2 Weight = 216.0 Color = White -Shape = 9 +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. @@ -8184,7 +8184,7 @@ StepsToHatch = 30720 Height = 3.8 Weight = 199.0 Color = Red -Shape = 9 +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. @@ -8218,7 +8218,7 @@ StepsToHatch = 30720 Height = 0.6 Weight = 5.0 Color = Green -Shape = 12 +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. @@ -8253,7 +8253,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.0 Color = Green -Shape = 6 +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. @@ -8285,7 +8285,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 21.6 Color = Green -Shape = 6 +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. @@ -8317,7 +8317,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 52.2 Color = Green -Shape = 6 +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. @@ -8349,7 +8349,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 2.5 Color = Red -Shape = 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. @@ -8382,7 +8382,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 19.5 Color = Red -Shape = 6 +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. @@ -8415,7 +8415,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 52.0 Color = Red -Shape = 6 +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. @@ -8447,7 +8447,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.6 Color = Blue -Shape = 8 +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. @@ -8480,7 +8480,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 28.0 Color = Blue -Shape = 6 +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. @@ -8513,7 +8513,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 81.9 Color = Blue -Shape = 6 +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. @@ -8545,7 +8545,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 13.6 Color = Gray -Shape = 8 +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. @@ -8577,7 +8577,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 37.0 Color = Gray -Shape = 8 +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. @@ -8609,7 +8609,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 17.5 Color = Brown -Shape = 8 +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. @@ -8643,7 +8643,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 32.5 Color = White -Shape = 8 +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. @@ -8676,7 +8676,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 3.6 Color = Red -Shape = 14 +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. @@ -8709,7 +8709,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 10.0 Color = White -Shape = 1 +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. @@ -8742,7 +8742,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 28.4 Color = Yellow -Shape = 13 +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. @@ -8773,7 +8773,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 11.5 Color = Purple -Shape = 1 +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. @@ -8806,7 +8806,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 31.6 Color = Green -Shape = 13 +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. @@ -8840,7 +8840,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 2.6 Color = Green -Shape = 14 +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. @@ -8874,7 +8874,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 32.5 Color = Green -Shape = 12 +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. @@ -8908,7 +8908,7 @@ StepsToHatch = 3840 Height = 1.5 Weight = 55.0 Color = Green -Shape = 12 +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. @@ -8941,7 +8941,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 4.0 Color = Brown -Shape = 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. @@ -8975,7 +8975,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 28.0 Color = Brown -Shape = 12 +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. @@ -9009,7 +9009,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 59.6 Color = Brown -Shape = 12 +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. @@ -9043,7 +9043,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.3 Color = Blue -Shape = 9 +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. @@ -9076,7 +9076,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 19.8 Color = Blue -Shape = 9 +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. @@ -9109,7 +9109,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 9.5 Color = White -Shape = 9 +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. @@ -9143,7 +9143,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 28.0 Color = Yellow -Shape = 9 +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. @@ -9177,7 +9177,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 6.6 Color = White -Shape = 12 +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. @@ -9210,7 +9210,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 20.2 Color = White -Shape = 12 +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. @@ -9243,7 +9243,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 48.4 Color = White -Shape = 12 +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. @@ -9276,7 +9276,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 1.7 Color = Blue -Shape = 14 +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. @@ -9310,7 +9310,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 3.6 Color = Blue -Shape = 13 +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. @@ -9343,7 +9343,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.5 Color = Brown -Shape = 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. @@ -9378,7 +9378,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 39.2 Color = Green -Shape = 6 +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. @@ -9411,7 +9411,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 24.0 Color = Brown -Shape = 8 +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. @@ -9442,7 +9442,7 @@ StepsToHatch = 3840 Height = 1.4 Weight = 46.5 Color = White -Shape = 6 +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. @@ -9473,7 +9473,7 @@ StepsToHatch = 3840 Height = 2.0 Weight = 130.5 Color = Brown -Shape = 12 +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. @@ -9506,7 +9506,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 5.5 Color = Gray -Shape = 14 +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. @@ -9540,7 +9540,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 12.0 Color = Yellow -Shape = 13 +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. @@ -9571,7 +9571,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 1.2 Color = Brown -Shape = 5 +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. @@ -9603,7 +9603,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 16.3 Color = Pink -Shape = 6 +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. @@ -9635,7 +9635,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 40.5 Color = Blue -Shape = 6 +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. @@ -9667,7 +9667,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 84.0 Color = Blue -Shape = 6 +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. @@ -9699,7 +9699,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 86.4 Color = Yellow -Shape = 12 +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. @@ -9732,7 +9732,7 @@ StepsToHatch = 5120 Height = 2.3 Weight = 253.8 Color = Brown -Shape = 12 +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. @@ -9766,7 +9766,7 @@ StepsToHatch = 2560 Height = 0.2 Weight = 2.0 Color = Blue -Shape = 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. @@ -9800,7 +9800,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 97.0 Color = Gray -Shape = 12 +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. @@ -9834,7 +9834,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 11.0 Color = Pink -Shape = 8 +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. @@ -9866,7 +9866,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 32.6 Color = Purple -Shape = 8 +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. @@ -9899,7 +9899,7 @@ StepsToHatch = 6400 Height = 0.5 Weight = 11.0 Color = Purple -Shape = 12 +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. @@ -9933,7 +9933,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 11.5 Color = Black -Shape = 12 +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. @@ -9967,7 +9967,7 @@ StepsToHatch = 8960 Height = 0.4 Weight = 60.0 Color = Gray -Shape = 8 +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. @@ -10001,7 +10001,7 @@ StepsToHatch = 8960 Height = 0.9 Weight = 120.0 Color = Gray -Shape = 8 +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. @@ -10035,7 +10035,7 @@ StepsToHatch = 8960 Height = 2.1 Weight = 360.0 Color = Gray -Shape = 6 +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. @@ -10069,7 +10069,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 11.2 Color = Blue -Shape = 12 +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. @@ -10102,7 +10102,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 31.5 Color = Red -Shape = 12 +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. @@ -10134,7 +10134,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 15.2 Color = Green -Shape = 8 +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. @@ -10166,7 +10166,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 40.2 Color = Yellow -Shape = 8 +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. @@ -10198,7 +10198,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 6 +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. @@ -10231,7 +10231,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 4.2 Color = Yellow -Shape = 6 +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. @@ -10264,7 +10264,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 17.7 Color = Gray -Shape = 6 +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. @@ -10297,7 +10297,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 17.7 Color = Purple -Shape = 12 +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. @@ -10331,7 +10331,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 2.0 Color = Green -Shape = 12 +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. @@ -10365,7 +10365,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 10.3 Color = Green -Shape = 4 +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. @@ -10399,7 +10399,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 80.0 Color = Purple -Shape = 4 +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. @@ -10434,7 +10434,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 20.8 Color = Red -Shape = 3 +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. @@ -10468,7 +10468,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 88.8 Color = Blue -Shape = 3 +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. @@ -10501,7 +10501,7 @@ StepsToHatch = 10240 Height = 2.0 Weight = 130.0 Color = Blue -Shape = 3 +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. @@ -10533,7 +10533,7 @@ StepsToHatch = 10240 Height = 14.5 Weight = 398.0 Color = Blue -Shape = 3 +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. @@ -10566,7 +10566,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 24.0 Color = Yellow -Shape = 8 +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. @@ -10599,7 +10599,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 220.0 Color = Red -Shape = 8 +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. @@ -10631,7 +10631,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 80.4 Color = Brown -Shape = 8 +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. @@ -10664,7 +10664,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 30.6 Color = Black -Shape = 4 +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. @@ -10696,7 +10696,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 71.5 Color = Purple -Shape = 6 +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. @@ -10728,7 +10728,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 5.0 Color = Brown -Shape = 6 +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. @@ -10760,7 +10760,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 15.0 Color = Brown -Shape = 14 +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. @@ -10793,7 +10793,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 15.3 Color = Green -Shape = 13 +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. @@ -10825,7 +10825,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 82.0 Color = Green -Shape = 9 +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. @@ -10857,7 +10857,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 51.3 Color = Green -Shape = 12 +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. @@ -10891,7 +10891,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 77.4 Color = Green -Shape = 12 +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. @@ -10925,7 +10925,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 1.2 Color = Blue -Shape = 9 +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. @@ -10958,7 +10958,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 20.6 Color = Blue -Shape = 9 +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. @@ -10990,7 +10990,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 40.3 Color = White -Shape = 6 +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. @@ -11023,7 +11023,7 @@ StepsToHatch = 5120 Height = 2.7 Weight = 52.5 Color = Black -Shape = 2 +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. @@ -11055,7 +11055,7 @@ StepsToHatch = 6400 Height = 1.0 Weight = 168.0 Color = Yellow -Shape = 1 +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. @@ -11088,7 +11088,7 @@ StepsToHatch = 6400 Height = 1.2 Weight = 154.0 Color = Red -Shape = 1 +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. @@ -11123,7 +11123,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 1.9 Color = Gray -Shape = 3 +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. @@ -11156,7 +11156,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 23.6 Color = Blue -Shape = 3 +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. @@ -11188,7 +11188,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 11.5 Color = Red -Shape = 14 +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. @@ -11221,7 +11221,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 32.8 Color = Red -Shape = 14 +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. @@ -11252,7 +11252,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 21.5 Color = Brown -Shape = 4 +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. @@ -11285,7 +11285,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 108.0 Color = Black -Shape = 4 +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. @@ -11319,7 +11319,7 @@ StepsToHatch = 7680 Height = 1.0 Weight = 23.8 Color = Purple -Shape = 5 +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. @@ -11353,7 +11353,7 @@ StepsToHatch = 7680 Height = 1.5 Weight = 60.4 Color = Green -Shape = 5 +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. @@ -11387,7 +11387,7 @@ StepsToHatch = 7680 Height = 0.7 Weight = 12.5 Color = Gray -Shape = 14 +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. @@ -11420,7 +11420,7 @@ StepsToHatch = 7680 Height = 1.5 Weight = 68.2 Color = Gray -Shape = 6 +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. @@ -11452,7 +11452,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.4 Color = Brown -Shape = 3 +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. @@ -11484,7 +11484,7 @@ StepsToHatch = 5120 Height = 6.2 Weight = 162.0 Color = Pink -Shape = 2 +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. @@ -11515,7 +11515,7 @@ StepsToHatch = 6400 Height = 0.3 Weight = 0.8 Color = Gray -Shape = 1 +Shape = Head 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. @@ -11551,7 +11551,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 22.0 Color = Green -Shape = 6 +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. @@ -11583,7 +11583,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 2.3 Color = Black -Shape = 1 +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. @@ -11616,7 +11616,7 @@ StepsToHatch = 6400 Height = 1.1 Weight = 12.5 Color = Black -Shape = 6 +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. @@ -11649,7 +11649,7 @@ StepsToHatch = 6400 Height = 0.8 Weight = 15.0 Color = Black -Shape = 4 +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. @@ -11682,7 +11682,7 @@ StepsToHatch = 6400 Height = 1.6 Weight = 30.6 Color = Black -Shape = 12 +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. @@ -11717,7 +11717,7 @@ StepsToHatch = 6400 Height = 2.0 Weight = 100.0 Color = Green -Shape = 8 +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. @@ -11748,7 +11748,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 1.0 Color = Blue -Shape = 4 +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. @@ -11781,7 +11781,7 @@ StepsToHatch = 6400 Height = 1.2 Weight = 47.0 Color = White -Shape = 8 +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. @@ -11812,7 +11812,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 14.0 Color = Blue -Shape = 6 +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. @@ -11846,7 +11846,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 16.8 Color = Gray -Shape = 12 +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. @@ -11879,7 +11879,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 256.5 Color = Gray -Shape = 1 +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. @@ -11912,7 +11912,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 39.5 Color = Blue -Shape = 3 +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. @@ -11945,7 +11945,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 87.6 Color = Blue -Shape = 3 +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. @@ -11978,7 +11978,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 150.6 Color = Blue -Shape = 8 +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. @@ -12010,7 +12010,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 52.5 Color = Blue -Shape = 1 +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. @@ -12044,7 +12044,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 27.0 Color = Blue -Shape = 2 +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. @@ -12076,7 +12076,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 22.6 Color = Pink -Shape = 2 +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. @@ -12110,7 +12110,7 @@ StepsToHatch = 10240 Height = 1.0 Weight = 23.4 Color = Gray -Shape = 3 +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. @@ -12143,7 +12143,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.7 Color = Pink -Shape = 3 +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. @@ -12176,7 +12176,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 42.1 Color = Blue -Shape = 12 +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. @@ -12209,7 +12209,7 @@ StepsToHatch = 10240 Height = 1.1 Weight = 110.5 Color = White -Shape = 8 +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. @@ -12243,7 +12243,7 @@ StepsToHatch = 10240 Height = 1.5 Weight = 102.6 Color = Blue -Shape = 8 +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. @@ -12276,7 +12276,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 95.2 Color = Blue -Shape = 5 +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. @@ -12310,7 +12310,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 202.5 Color = Blue -Shape = 4 +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. @@ -12344,7 +12344,7 @@ StepsToHatch = 10240 Height = 1.6 Weight = 550.0 Color = Blue -Shape = 11 +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. @@ -12376,7 +12376,7 @@ StepsToHatch = 20480 Height = 1.7 Weight = 230.0 Color = Brown -Shape = 12 +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. @@ -12407,7 +12407,7 @@ StepsToHatch = 20480 Height = 1.8 Weight = 175.0 Color = Blue -Shape = 12 +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. @@ -12438,7 +12438,7 @@ StepsToHatch = 20480 Height = 1.9 Weight = 205.0 Color = Gray -Shape = 12 +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. @@ -12469,7 +12469,7 @@ StepsToHatch = 30720 Height = 1.4 Weight = 40.0 Color = Red -Shape = 9 +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. @@ -12500,7 +12500,7 @@ StepsToHatch = 30720 Height = 2.0 Weight = 60.0 Color = Blue -Shape = 9 +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. @@ -12530,7 +12530,7 @@ StepsToHatch = 30720 Height = 4.5 Weight = 352.0 Color = Blue -Shape = 3 +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. @@ -12560,7 +12560,7 @@ StepsToHatch = 30720 Height = 3.5 Weight = 950.0 Color = Red -Shape = 6 +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. @@ -12591,7 +12591,7 @@ StepsToHatch = 30720 Height = 7.0 Weight = 206.5 Color = Green -Shape = 2 +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. @@ -12622,7 +12622,7 @@ StepsToHatch = 30720 Height = 0.3 Weight = 1.1 Color = Yellow -Shape = 12 +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. @@ -12655,7 +12655,7 @@ StepsToHatch = 30720 Height = 1.7 Weight = 60.8 Color = Red -Shape = 12 +Shape = Bipedal 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. @@ -12688,7 +12688,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 10.2 Color = Green -Shape = 8 +Shape = Quadruped Kind = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. BattlerPlayerX = -3 @@ -12719,7 +12719,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 97.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. BattlerPlayerX = -4 @@ -12751,7 +12751,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 310.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. BattlerPlayerX = 0 @@ -12782,7 +12782,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 6.2 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. BattlerPlayerX = 4 @@ -12814,7 +12814,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 22.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. BattlerPlayerX = -6 @@ -12846,7 +12846,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 55.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. BattlerPlayerX = 1 @@ -12877,7 +12877,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.2 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. BattlerPlayerX = 0 @@ -12908,7 +12908,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 23.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. BattlerPlayerX = 2 @@ -12940,7 +12940,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 84.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. BattlerPlayerX = 2 @@ -12972,7 +12972,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.0 Color = Brown -Shape = 9 +Shape = Winged Kind = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. BattlerPlayerX = -3 @@ -13004,7 +13004,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 15.5 Color = Brown -Shape = 9 +Shape = Winged Kind = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. BattlerPlayerX = -3 @@ -13036,7 +13036,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 24.9 Color = Brown -Shape = 9 +Shape = Winged Kind = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. BattlerPlayerX = -5 @@ -13067,7 +13067,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 20.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. BattlerPlayerX = 0 @@ -13099,7 +13099,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 31.5 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. BattlerPlayerX = -6 @@ -13129,7 +13129,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.2 Color = Red -Shape = 12 +Shape = Bipedal Kind = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. WildItemUncommon = METRONOME @@ -13161,7 +13161,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 25.5 Color = Red -Shape = 13 +Shape = MultiWinged Kind = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. WildItemUncommon = METRONOME @@ -13193,7 +13193,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.5 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. BattlerPlayerX = -9 @@ -13224,7 +13224,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 30.5 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. BattlerPlayerX = 1 @@ -13255,7 +13255,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 42.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. BattlerPlayerX = 0 @@ -13287,7 +13287,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 1.2 Color = Green -Shape = 12 +Shape = Bipedal Kind = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. WildItemUncommon = POISONBARB @@ -13321,7 +13321,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 14.5 Color = Green -Shape = 12 +Shape = Bipedal Kind = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. WildItemUncommon = POISONBARB @@ -13353,7 +13353,7 @@ StepsToHatch = 7680 Height = 0.9 Weight = 31.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. BattlerPlayerX = 0 @@ -13384,7 +13384,7 @@ StepsToHatch = 7680 Height = 1.6 Weight = 102.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. BattlerPlayerX = 0 @@ -13416,7 +13416,7 @@ StepsToHatch = 7680 Height = 0.5 Weight = 57.0 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. BattlerPlayerX = 0 @@ -13448,7 +13448,7 @@ StepsToHatch = 7680 Height = 1.3 Weight = 149.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. BattlerPlayerX = -4 @@ -13478,7 +13478,7 @@ StepsToHatch = 3840 Height = 0.2 Weight = 3.4 Color = Green -Shape = 5 +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 @@ -13511,7 +13511,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 6.5 Color = Green -Shape = 5 +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 @@ -13544,7 +13544,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 23.3 Color = Yellow -Shape = 13 +Shape = MultiWinged Kind = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. WildItemUncommon = SILVERPOWDER @@ -13576,7 +13576,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 5.5 Color = Yellow -Shape = 11 +Shape = MultiBody Kind = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. WildItemUncommon = HONEY @@ -13609,7 +13609,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 38.5 Color = Yellow -Shape = 13 +Shape = MultiWinged Kind = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. WildItemUncommon = POISONBARB @@ -13641,7 +13641,7 @@ StepsToHatch = 2560 Height = 0.4 Weight = 3.9 Color = White -Shape = 8 +Shape = Quadruped Kind = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. BattlerPlayerX = -5 @@ -13672,7 +13672,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 29.5 Color = Brown -Shape = 8 +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. BattlerPlayerX = -12 @@ -13703,7 +13703,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 33.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. BattlerPlayerX = 3 @@ -13733,7 +13733,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 3.3 Color = Pink -Shape = 11 +Shape = MultiBody Kind = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. WildItemUncommon = MIRACLESEED @@ -13764,7 +13764,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.3 Color = Purple -Shape = 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 @@ -13797,7 +13797,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 6.3 Color = Purple -Shape = 2 +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 @@ -13830,7 +13830,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 29.9 Color = Purple -Shape = 2 +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 @@ -13861,7 +13861,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 20.3 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. BattlerPlayerX = 8 @@ -13893,7 +13893,7 @@ StepsToHatch = 7680 Height = 0.4 Weight = 1.2 Color = Purple -Shape = 4 +Shape = HeadArms Kind = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. BattlerPlayerX = 2 @@ -13925,7 +13925,7 @@ StepsToHatch = 7680 Height = 1.2 Weight = 15.0 Color = Purple -Shape = 4 +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. BattlerPlayerX = -1 @@ -13956,7 +13956,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.5 Color = Brown -Shape = 6 +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. BattlerPlayerX = 8 @@ -13987,7 +13987,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 33.3 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. BattlerPlayerX = -6 @@ -14016,7 +14016,7 @@ StepsToHatch = 6400 Height = 0.9 Weight = 4.4 Color = Purple -Shape = 1 +Shape = Head Kind = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. BattlerPlayerX = -3 @@ -14047,7 +14047,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 27.3 Color = Black -Shape = 9 +Shape = Winged Kind = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. BattlerPlayerX = 2 @@ -14078,7 +14078,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 3.9 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. BattlerPlayerX = -6 @@ -14109,7 +14109,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 43.8 Color = Gray -Shape = 8 +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. BattlerPlayerX = 4 @@ -14139,7 +14139,7 @@ StepsToHatch = 6400 Height = 0.2 Weight = 0.6 Color = Yellow -Shape = 12 +Shape = Bipedal Kind = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. WildItemUncommon = CLEANSETAG @@ -14174,7 +14174,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 19.2 Color = Purple -Shape = 8 +Shape = Quadruped Kind = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. BattlerPlayerX = -3 @@ -14206,7 +14206,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 38.0 Color = Purple -Shape = 8 +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. BattlerPlayerX = 0 @@ -14237,7 +14237,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 60.5 Color = Green -Shape = 1 +Shape = Head Kind = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. WildItemUncommon = METALCOAT @@ -14270,7 +14270,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 187.0 Color = Green -Shape = 4 +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. WildItemUncommon = METALCOAT @@ -14302,7 +14302,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 15.0 Color = Brown -Shape = 7 +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. BattlerPlayerX = 3 @@ -14336,7 +14336,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 13.0 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. BattlerPlayerX = -1 @@ -14369,7 +14369,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 24.4 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. WildItemCommon = OVALSTONE @@ -14404,7 +14404,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 1.9 Color = Black -Shape = 9 +Shape = Winged Kind = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. WildItemUncommon = METRONOME @@ -14437,7 +14437,7 @@ StepsToHatch = 7680 Height = 1.0 Weight = 108.0 Color = Purple -Shape = 5 +Shape = HeadBase Kind = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. BattlerPlayerX = 2 @@ -14469,7 +14469,7 @@ StepsToHatch = 10240 Height = 0.7 Weight = 20.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. BattlerPlayerX = -2 @@ -14501,7 +14501,7 @@ StepsToHatch = 10240 Height = 1.4 Weight = 56.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. BattlerPlayerX = -6 @@ -14533,7 +14533,7 @@ StepsToHatch = 10240 Height = 1.9 Weight = 95.0 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -14564,7 +14564,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 105.0 Color = Black -Shape = 12 +Shape = Bipedal Kind = Big Eater Pokedex = It wolfs down its weight in food once a day, swallowing food whole with almost no chewing. WildItemCommon = LEFTOVERS @@ -14600,7 +14600,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 20.2 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. BattlerPlayerX = -9 @@ -14632,7 +14632,7 @@ StepsToHatch = 6400 Height = 1.2 Weight = 54.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. BattlerPlayerX = 8 @@ -14663,7 +14663,7 @@ StepsToHatch = 7680 Height = 0.8 Weight = 49.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. BattlerPlayerX = 0 @@ -14694,7 +14694,7 @@ StepsToHatch = 7680 Height = 2.0 Weight = 300.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. BattlerPlayerX = 2 @@ -14726,7 +14726,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 12.0 Color = Purple -Shape = 14 +Shape = Insectoid Kind = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. WildItemUncommon = POISONBARB @@ -14759,7 +14759,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 61.5 Color = Purple -Shape = 14 +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. WildItemUncommon = POISONBARB @@ -14792,7 +14792,7 @@ StepsToHatch = 2560 Height = 0.7 Weight = 23.0 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. WildItemUncommon = BLACKSLUDGE @@ -14825,7 +14825,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 44.4 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. WildItemUncommon = BLACKSLUDGE @@ -14856,7 +14856,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 27.0 Color = Green -Shape = 10 +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. BattlerPlayerX = -2 @@ -14887,7 +14887,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.0 Color = Blue -Shape = 3 +Shape = Finned Kind = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. BattlerPlayerX = -7 @@ -14918,7 +14918,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 24.0 Color = Blue -Shape = 3 +Shape = Finned Kind = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. BattlerPlayerX = -8 @@ -14950,7 +14950,7 @@ StepsToHatch = 6400 Height = 1.0 Weight = 65.0 Color = Blue -Shape = 9 +Shape = Winged Kind = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. BattlerPlayerX = -1 @@ -14984,7 +14984,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 50.5 Color = White -Shape = 6 +Shape = BipedalTail Kind = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. WildItemUncommon = NEVERMELTICE @@ -15017,7 +15017,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 135.5 Color = White -Shape = 6 +Shape = BipedalTail Kind = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. WildItemUncommon = NEVERMELTICE @@ -15049,7 +15049,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 34.0 Color = Black -Shape = 6 +Shape = BipedalTail Kind = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. WildItemUncommon = QUICKCLAW @@ -15081,7 +15081,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 180.0 Color = Gray -Shape = 4 +Shape = HeadArms Kind = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. WildItemUncommon = METALCOAT @@ -15112,7 +15112,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 140.0 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. WildItemUncommon = LAGGINGTAIL @@ -15144,7 +15144,7 @@ StepsToHatch = 5120 Height = 2.4 Weight = 282.8 Color = Gray -Shape = 6 +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. BattlerPlayerX = 1 @@ -15174,7 +15174,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 128.6 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. BattlerPlayerX = 0 @@ -15204,7 +15204,7 @@ StepsToHatch = 6400 Height = 1.8 Weight = 138.6 Color = Yellow -Shape = 6 +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. WildItemUncommon = ELECTIRIZER @@ -15235,7 +15235,7 @@ StepsToHatch = 6400 Height = 1.6 Weight = 68.0 Color = Red -Shape = 6 +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. WildItemUncommon = MAGMARIZER @@ -15267,7 +15267,7 @@ StepsToHatch = 2560 Height = 1.5 Weight = 38.0 Color = White -Shape = 9 +Shape = Winged Kind = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. BattlerPlayerX = -3 @@ -15298,7 +15298,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 51.5 Color = Green -Shape = 13 +Shape = MultiWinged Kind = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. WildItemUncommon = WIDELENS @@ -15329,7 +15329,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 25.5 Color = Green -Shape = 8 +Shape = Quadruped Kind = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. BattlerPlayerX = -3 @@ -15359,7 +15359,7 @@ StepsToHatch = 8960 Height = 0.8 Weight = 25.9 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. BattlerPlayerX = -3 @@ -15390,7 +15390,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 42.5 Color = Purple -Shape = 9 +Shape = Winged Kind = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! BattlerPlayerX = 3 @@ -15421,7 +15421,7 @@ StepsToHatch = 5120 Height = 2.5 Weight = 291.0 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. BattlerPlayerX = -1 @@ -15451,7 +15451,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 34.0 Color = Red -Shape = 4 +Shape = HeadArms Kind = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. BattlerPlayerX = 2 @@ -15482,7 +15482,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 52.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. BattlerPlayerX = 1 @@ -15513,7 +15513,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 340.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. WildItemUncommon = MAGNET @@ -15544,7 +15544,7 @@ StepsToHatch = 6400 Height = 2.2 Weight = 106.6 Color = Black -Shape = 4 +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. WildItemUncommon = SPELLTAG @@ -15576,7 +15576,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 26.6 Color = White -Shape = 4 +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. BattlerPlayerX = 6 @@ -15606,7 +15606,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 0.3 Color = Red -Shape = 1 +Shape = Head Kind = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom @@ -15636,7 +15636,7 @@ StepsToHatch = 20480 Height = 0.3 Weight = 0.3 Color = Yellow -Shape = 6 +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. BattlerPlayerX = -1 @@ -15665,7 +15665,7 @@ StepsToHatch = 20480 Height = 0.3 Weight = 0.3 Color = Pink -Shape = 6 +Shape = BipedalTail Kind = Emotion Pokedex = Known as “The Being of Emotion.” It taught humans the nobility of sorrow, pain, and joy. BattlerPlayerX = 1 @@ -15694,7 +15694,7 @@ StepsToHatch = 20480 Height = 0.3 Weight = 0.3 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -15725,7 +15725,7 @@ StepsToHatch = 30720 Height = 5.4 Weight = 683.0 Color = White -Shape = 8 +Shape = Quadruped Kind = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. BattlerPlayerX = 1 @@ -15756,7 +15756,7 @@ StepsToHatch = 30720 Height = 4.2 Weight = 336.0 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. BattlerPlayerX = 0 @@ -15787,7 +15787,7 @@ StepsToHatch = 2560 Height = 1.7 Weight = 430.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 2 @@ -15816,7 +15816,7 @@ StepsToHatch = 30720 Height = 3.7 Weight = 420.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. BattlerPlayerX = 0 @@ -15847,7 +15847,7 @@ StepsToHatch = 30720 Height = 4.5 Weight = 750.0 Color = Black -Shape = 10 +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 @@ -15877,7 +15877,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 85.6 Color = Yellow -Shape = 2 +Shape = Serpentine Kind = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. BattlerPlayerX = -5 @@ -15906,7 +15906,7 @@ StepsToHatch = 10240 Height = 0.4 Weight = 3.1 Color = Blue -Shape = 4 +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. BattlerPlayerX = -9 @@ -15935,7 +15935,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 1.4 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. BattlerPlayerX = -9 @@ -15964,7 +15964,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 50.5 Color = Black -Shape = 12 +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. BattlerPlayerX = 0 @@ -15993,7 +15993,7 @@ StepsToHatch = 30720 Height = 0.2 Weight = 2.1 Color = Green -Shape = 8 +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 @@ -16026,7 +16026,7 @@ StepsToHatch = 30720 Height = 3.2 Weight = 320.0 Color = White -Shape = 8 +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 @@ -16057,7 +16057,7 @@ StepsToHatch = 30720 Height = 0.4 Weight = 4.0 Color = Yellow -Shape = 12 +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. BattlerPlayerX = 0 @@ -16088,7 +16088,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.1 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. BattlerPlayerX = -2 @@ -16119,7 +16119,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 16.0 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. BattlerPlayerX = 0 @@ -16150,7 +16150,7 @@ StepsToHatch = 5120 Height = 3.3 Weight = 63.0 Color = Green -Shape = 2 +Shape = Serpentine Kind = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. BattlerPlayerX = -3 @@ -16181,7 +16181,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.9 Color = Red -Shape = 8 +Shape = Quadruped Kind = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. BattlerPlayerX = -4 @@ -16213,7 +16213,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 55.5 Color = Red -Shape = 6 +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. BattlerPlayerX = -1 @@ -16245,7 +16245,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 150.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 1 @@ -16276,7 +16276,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.9 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -16307,7 +16307,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 24.5 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. BattlerPlayerX = 2 @@ -16338,7 +16338,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 94.6 Color = Blue -Shape = 8 +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. BattlerPlayerX = -1 @@ -16369,7 +16369,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 11.6 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. BattlerPlayerX = -1 @@ -16400,7 +16400,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 27.0 Color = Brown -Shape = 6 +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. BattlerPlayerX = -2 @@ -16431,7 +16431,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.1 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. BattlerPlayerX = 1 @@ -16462,7 +16462,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 14.7 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. BattlerPlayerX = -3 @@ -16493,7 +16493,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 61.0 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. BattlerPlayerX = -1 @@ -16524,7 +16524,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 10.1 Color = Purple -Shape = 8 +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. BattlerPlayerX = 2 @@ -16555,7 +16555,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 37.5 Color = Purple -Shape = 8 +Shape = Quadruped Kind = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. BattlerPlayerX = 0 @@ -16586,7 +16586,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.5 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -16617,7 +16617,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 30.5 Color = Green -Shape = 6 +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. BattlerPlayerX = -1 @@ -16648,7 +16648,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 11.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -16679,7 +16679,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 28.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. BattlerPlayerX = 0 @@ -16710,7 +16710,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 13.5 Color = Blue -Shape = 6 +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. BattlerPlayerX = 0 @@ -16741,7 +16741,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 29.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. BattlerPlayerX = 0 @@ -16772,7 +16772,7 @@ StepsToHatch = 2560 Height = 0.6 Weight = 23.3 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -16803,7 +16803,7 @@ StepsToHatch = 2560 Height = 1.1 Weight = 60.5 Color = Pink -Shape = 12 +Shape = Bipedal Kind = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. BattlerPlayerX = 6 @@ -16835,7 +16835,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.1 Color = Gray -Shape = 9 +Shape = Winged Kind = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. BattlerPlayerX = -3 @@ -16867,7 +16867,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 15.0 Color = Gray -Shape = 9 +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. BattlerPlayerX = 0 @@ -16899,7 +16899,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 29.0 Color = Gray -Shape = 9 +Shape = Winged Kind = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. BattlerPlayerX = -3 @@ -16930,7 +16930,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 29.8 Color = Black -Shape = 8 +Shape = Quadruped Kind = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. BattlerPlayerX = -6 @@ -16961,7 +16961,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 79.5 Color = Black -Shape = 8 +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. BattlerPlayerX = 0 @@ -16992,7 +16992,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 18.0 Color = Blue -Shape = 7 +Shape = HeadLegs Kind = Mantle Pokedex = They were discovered a hundred years ago in an earthquake fissure. Inside each one is an energy core. WildItemCommon = EVERSTONE @@ -17025,7 +17025,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 102.0 Color = Blue -Shape = 10 +Shape = Multiped Kind = Ore Pokedex = Because its energy was too great to be contained, the energy leaked and formed orange crystals. WildItemCommon = EVERSTONE @@ -17058,7 +17058,7 @@ StepsToHatch = 3840 Height = 1.7 Weight = 260.0 Color = Blue -Shape = 10 +Shape = Multiped Kind = Compressed Pokedex = The solar energy absorbed by its body's orange crystals is magnified internally and fired from its mouth. WildItemCommon = EVERSTONE @@ -17092,7 +17092,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 2.1 Color = Blue -Shape = 9 +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. BattlerPlayerX = 2 @@ -17124,7 +17124,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 10.5 Color = Blue -Shape = 9 +Shape = Winged Kind = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. BattlerPlayerX = -3 @@ -17155,7 +17155,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 8.5 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. BattlerPlayerX = 3 @@ -17187,7 +17187,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 40.4 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. BattlerPlayerX = -1 @@ -17218,7 +17218,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 31.0 Color = Pink -Shape = 6 +Shape = BipedalTail Kind = Hearing Pokedex = Its auditory sense is astounding. It has a radar-like ability to understand its surrounding through slight sounds. WildItemCommon = ORANBERRY @@ -17251,7 +17251,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 12.5 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. BattlerPlayerX = -1 @@ -17282,7 +17282,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 40.0 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. BattlerPlayerX = 2 @@ -17313,7 +17313,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 87.0 Color = Brown -Shape = 12 +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. BattlerPlayerX = 3 @@ -17344,7 +17344,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 4.5 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -17376,7 +17376,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 17.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. BattlerPlayerX = -6 @@ -17408,7 +17408,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 62.0 Color = Blue -Shape = 12 +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. BattlerPlayerX = 2 @@ -17438,7 +17438,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 55.5 Color = Red -Shape = 12 +Shape = Bipedal Kind = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. WildItemUncommon = BLACKBELT @@ -17469,7 +17469,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 51.0 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. WildItemUncommon = BLACKBELT @@ -17502,7 +17502,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.5 Color = Yellow -Shape = 14 +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. WildItemUncommon = MENTALHERB @@ -17535,7 +17535,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 7.3 Color = Green -Shape = 4 +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. WildItemUncommon = MENTALHERB @@ -17568,7 +17568,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 20.5 Color = Yellow -Shape = 12 +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. WildItemUncommon = MENTALHERB @@ -17601,7 +17601,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 5.3 Color = Red -Shape = 14 +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. WildItemUncommon = POISONBARB @@ -17634,7 +17634,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 58.5 Color = Gray -Shape = 1 +Shape = Head Kind = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. WildItemUncommon = POISONBARB @@ -17667,7 +17667,7 @@ StepsToHatch = 5120 Height = 2.5 Weight = 200.5 Color = Red -Shape = 14 +Shape = Insectoid Kind = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. WildItemUncommon = POISONBARB @@ -17700,7 +17700,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 0.6 Color = Green -Shape = 1 +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. WildItemUncommon = ABSORBBULB @@ -17733,7 +17733,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 6.6 Color = Green -Shape = 12 +Shape = Bipedal Kind = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. WildItemUncommon = ABSORBBULB @@ -17765,7 +17765,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 6.6 Color = Green -Shape = 5 +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. WildItemUncommon = ABSORBBULB @@ -17797,7 +17797,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 16.3 Color = Green -Shape = 5 +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. WildItemUncommon = ABSORBBULB @@ -17829,7 +17829,7 @@ StepsToHatch = 10240 Height = 1.0 Weight = 18.0 Color = Green -Shape = 3 +Shape = Finned Kind = Hostile Pokedex = Savage, violent Pokémon, red and blue Basculin are always fighting each other over territory. FormName = Red-Striped @@ -17863,7 +17863,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 15.2 Color = Brown -Shape = 8 +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. WildItemUncommon = BLACKGLASSES @@ -17896,7 +17896,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 33.4 Color = Brown -Shape = 8 +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. WildItemUncommon = BLACKGLASSES @@ -17929,7 +17929,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 96.3 Color = Red -Shape = 6 +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. WildItemCommon = BLACKGLASSES @@ -17961,7 +17961,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 37.5 Color = Red -Shape = 12 +Shape = Bipedal Kind = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. BattlerPlayerX = -2 @@ -17992,7 +17992,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 92.9 Color = Red -Shape = 8 +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 @@ -18024,7 +18024,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 28.0 Color = Green -Shape = 5 +Shape = HeadBase Kind = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. WildItemUncommon = MIRACLESEED @@ -18057,7 +18057,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 14.5 Color = Red -Shape = 14 +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. WildItemUncommon = HARDSTONE @@ -18090,7 +18090,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 200.0 Color = Red -Shape = 14 +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. WildItemUncommon = HARDSTONE @@ -18123,7 +18123,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 11.8 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. WildItemUncommon = SHEDSHELL @@ -18156,7 +18156,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 30.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. WildItemUncommon = SHEDSHELL @@ -18189,7 +18189,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 14.0 Color = Black -Shape = 9 +Shape = Winged Kind = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. BattlerPlayerX = 7 @@ -18219,7 +18219,7 @@ StepsToHatch = 6400 Height = 0.5 Weight = 1.5 Color = Black -Shape = 4 +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. WildItemUncommon = SPELLTAG @@ -18250,7 +18250,7 @@ StepsToHatch = 6400 Height = 1.7 Weight = 76.5 Color = Yellow -Shape = 5 +Shape = HeadBase Kind = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. WildItemUncommon = SPELLTAG @@ -18283,7 +18283,7 @@ StepsToHatch = 7680 Height = 0.7 Weight = 16.5 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -18315,7 +18315,7 @@ StepsToHatch = 7680 Height = 1.2 Weight = 81.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. BattlerPlayerX = -1 @@ -18346,7 +18346,7 @@ StepsToHatch = 7680 Height = 0.5 Weight = 9.5 Color = Yellow -Shape = 9 +Shape = Winged Kind = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. BattlerPlayerX = 0 @@ -18377,7 +18377,7 @@ StepsToHatch = 7680 Height = 1.4 Weight = 32.0 Color = Yellow -Shape = 9 +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. BattlerPlayerX = 4 @@ -18408,7 +18408,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 31.0 Color = Green -Shape = 12 +Shape = Bipedal Kind = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. WildItemUncommon = SILKSCARF @@ -18440,7 +18440,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 107.3 Color = Green -Shape = 12 +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. WildItemCommon = SILKSCARF @@ -18472,7 +18472,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 12.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. BattlerPlayerX = -1 @@ -18502,7 +18502,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 81.1 Color = Gray -Shape = 6 +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. BattlerPlayerX = 0 @@ -18533,7 +18533,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 5.8 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. BattlerPlayerX = -3 @@ -18564,7 +18564,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 7.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. BattlerPlayerX = 1 @@ -18595,7 +18595,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.8 Color = Purple -Shape = 12 +Shape = Bipedal Kind = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. BattlerPlayerX = 0 @@ -18626,7 +18626,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 18.0 Color = Purple -Shape = 12 +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. BattlerPlayerX = 0 @@ -18657,7 +18657,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 44.0 Color = Purple -Shape = 12 +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. BattlerPlayerX = 1 @@ -18688,7 +18688,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 1.0 Color = Green -Shape = 1 +Shape = Head Kind = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. BattlerPlayerX = 0 @@ -18719,7 +18719,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.0 Color = Green -Shape = 1 +Shape = Head Kind = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. BattlerPlayerX = 0 @@ -18750,7 +18750,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 20.1 Color = Green -Shape = 4 +Shape = HeadArms Kind = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. BattlerPlayerX = 3 @@ -18782,7 +18782,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 5.5 Color = Blue -Shape = 9 +Shape = Winged Kind = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. BattlerPlayerX = -4 @@ -18814,7 +18814,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 24.2 Color = White -Shape = 9 +Shape = Winged Kind = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. BattlerPlayerX = -2 @@ -18845,7 +18845,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.7 Color = White -Shape = 5 +Shape = HeadBase Kind = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. WildItemUncommon = NEVERMELTICE @@ -18877,7 +18877,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 41.0 Color = White -Shape = 5 +Shape = HeadBase Kind = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. WildItemUncommon = NEVERMELTICE @@ -18909,7 +18909,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 57.5 Color = White -Shape = 11 +Shape = MultiBody Kind = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. WildItemCommon = NEVERMELTICE @@ -18942,7 +18942,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 19.5 Color = Pink -Shape = 8 +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 @@ -18975,7 +18975,7 @@ StepsToHatch = 5120 Height = 1.9 Weight = 92.5 Color = Brown -Shape = 8 +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 @@ -19008,7 +19008,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 5.0 Color = White -Shape = 8 +Shape = Quadruped Kind = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. BattlerPlayerX = -4 @@ -19039,7 +19039,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 5.9 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. BattlerPlayerX = 1 @@ -19071,7 +19071,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 33.0 Color = Gray -Shape = 4 +Shape = HeadArms Kind = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. BattlerPlayerX = 3 @@ -19103,7 +19103,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 1.0 Color = White -Shape = 4 +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. WildItemCommon = TINYMUSHROOM @@ -19137,7 +19137,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.5 Color = White -Shape = 4 +Shape = HeadArms Kind = Mushroom Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémon are fooled by this. WildItemCommon = TINYMUSHROOM @@ -19171,7 +19171,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 33.0 Color = White -Shape = 10 +Shape = Multiped Kind = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. BattlerPlayerX = -1 @@ -19203,7 +19203,7 @@ StepsToHatch = 5120 Height = 2.2 Weight = 135.0 Color = White -Shape = 10 +Shape = Multiped Kind = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. BattlerPlayerX = 1 @@ -19234,7 +19234,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 31.6 Color = Pink -Shape = 3 +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. BattlerPlayerX = -2 @@ -19266,7 +19266,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.6 Color = Yellow -Shape = 14 +Shape = Insectoid Kind = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. BattlerPlayerX = 0 @@ -19298,7 +19298,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 14.3 Color = Yellow -Shape = 14 +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. BattlerPlayerX = 0 @@ -19329,7 +19329,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 18.8 Color = Gray -Shape = 1 +Shape = Head Kind = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. WildItemUncommon = STICKYBARB @@ -19362,7 +19362,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 110.0 Color = Gray -Shape = 10 +Shape = Multiped Kind = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. WildItemUncommon = STICKYBARB @@ -19393,7 +19393,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 21.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. BattlerPlayerX = 2 @@ -19424,7 +19424,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 51.0 Color = Gray -Shape = 11 +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. BattlerPlayerX = 1 @@ -19455,7 +19455,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 81.0 Color = Gray -Shape = 11 +Shape = MultiBody Kind = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. BattlerPlayerX = 1 @@ -19484,7 +19484,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.3 Color = White -Shape = 3 +Shape = Finned Kind = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. BattlerPlayerX = -4 @@ -19514,7 +19514,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 22.0 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -19544,7 +19544,7 @@ StepsToHatch = 5120 Height = 2.1 Weight = 80.5 Color = Blue -Shape = 3 +Shape = Finned Kind = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. BattlerPlayerX = -5 @@ -19575,7 +19575,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. BattlerPlayerX = 0 @@ -19606,7 +19606,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 34.5 Color = Brown -Shape = 12 +Shape = Bipedal Kind = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. BattlerPlayerX = -2 @@ -19638,7 +19638,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.1 Color = White -Shape = 5 +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. BattlerPlayerX = -1 @@ -19670,7 +19670,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 13.0 Color = Black -Shape = 4 +Shape = HeadArms Kind = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. BattlerPlayerX = -1 @@ -19702,7 +19702,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 34.3 Color = Black -Shape = 4 +Shape = HeadArms Kind = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. BattlerPlayerX = -2 @@ -19733,7 +19733,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 18.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 1 @@ -19764,7 +19764,7 @@ StepsToHatch = 10240 Height = 1.0 Weight = 36.0 Color = Green -Shape = 6 +Shape = BipedalTail Kind = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. BattlerPlayerX = -5 @@ -19795,7 +19795,7 @@ StepsToHatch = 10240 Height = 1.8 Weight = 105.5 Color = Yellow -Shape = 6 +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. BattlerPlayerX = -1 @@ -19826,7 +19826,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 8.5 Color = White -Shape = 6 +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. BattlerPlayerX = -2 @@ -19857,7 +19857,7 @@ StepsToHatch = 5120 Height = 2.6 Weight = 260.0 Color = White -Shape = 8 +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. BattlerPlayerX = -2 @@ -19886,7 +19886,7 @@ StepsToHatch = 6400 Height = 1.1 Weight = 148.0 Color = Blue -Shape = 1 +Shape = Head Kind = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. WildItemUncommon = NEVERMELTICE @@ -19918,7 +19918,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 7.7 Color = Red -Shape = 1 +Shape = Head Kind = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. BattlerPlayerX = -4 @@ -19949,7 +19949,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 25.3 Color = Red -Shape = 4 +Shape = HeadArms Kind = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. BattlerPlayerX = -4 @@ -19981,7 +19981,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 11.0 Color = Brown -Shape = 3 +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. WildItemUncommon = SOFTSAND @@ -20013,7 +20013,7 @@ StepsToHatch = 6400 Height = 0.9 Weight = 20.0 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. BattlerPlayerX = -1 @@ -20044,7 +20044,7 @@ StepsToHatch = 6400 Height = 1.4 Weight = 35.5 Color = Purple -Shape = 6 +Shape = BipedalTail Kind = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. BattlerPlayerX = -3 @@ -20075,7 +20075,7 @@ StepsToHatch = 7680 Height = 1.6 Weight = 139.0 Color = Red -Shape = 6 +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. WildItemUncommon = DRAGONFANG @@ -20107,7 +20107,7 @@ StepsToHatch = 6400 Height = 1.0 Weight = 92.0 Color = Green -Shape = 12 +Shape = Bipedal Kind = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. WildItemUncommon = LIGHTCLAY @@ -20140,7 +20140,7 @@ StepsToHatch = 6400 Height = 2.8 Weight = 330.0 Color = Green -Shape = 12 +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. WildItemUncommon = LIGHTCLAY @@ -20173,7 +20173,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 10.2 Color = Red -Shape = 12 +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. BattlerPlayerX = 2 @@ -20205,7 +20205,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 70.0 Color = Red -Shape = 12 +Shape = Bipedal Kind = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. BattlerPlayerX = 0 @@ -20236,7 +20236,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 94.5 Color = Brown -Shape = 8 +Shape = Quadruped Kind = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. BattlerPlayerX = -1 @@ -20267,7 +20267,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 10.5 Color = White -Shape = 9 +Shape = Winged Kind = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. BattlerPlayerX = 1 @@ -20299,7 +20299,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 41.0 Color = Red -Shape = 9 +Shape = Winged Kind = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. BattlerPlayerX = -2 @@ -20331,7 +20331,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 9.0 Color = Brown -Shape = 9 +Shape = Winged Kind = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. BattlerPlayerX = 0 @@ -20363,7 +20363,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 39.5 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -20394,7 +20394,7 @@ StepsToHatch = 5120 Height = 1.4 Weight = 58.0 Color = Red -Shape = 6 +Shape = BipedalTail Kind = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. BattlerPlayerX = 3 @@ -20426,7 +20426,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 33.0 Color = Gray -Shape = 14 +Shape = Insectoid Kind = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. BattlerPlayerX = 0 @@ -20457,7 +20457,7 @@ StepsToHatch = 10240 Height = 0.8 Weight = 17.3 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. BattlerPlayerX = 0 @@ -20488,7 +20488,7 @@ StepsToHatch = 10240 Height = 1.4 Weight = 50.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -20519,7 +20519,7 @@ StepsToHatch = 10240 Height = 1.8 Weight = 160.0 Color = Blue -Shape = 6 +Shape = BipedalTail Kind = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. BattlerPlayerX = -2 @@ -20551,7 +20551,7 @@ StepsToHatch = 10240 Height = 1.1 Weight = 28.8 Color = White -Shape = 14 +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. BattlerPlayerX = 0 @@ -20583,7 +20583,7 @@ StepsToHatch = 10240 Height = 1.6 Weight = 46.0 Color = White -Shape = 13 +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. WildItemCommon = SILVERPOWDER @@ -20616,7 +20616,7 @@ StepsToHatch = 20480 Height = 2.1 Weight = 250.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -20646,7 +20646,7 @@ StepsToHatch = 20480 Height = 1.9 Weight = 260.0 Color = Gray -Shape = 8 +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. BattlerPlayerX = 0 @@ -20676,7 +20676,7 @@ StepsToHatch = 20480 Height = 2.0 Weight = 200.0 Color = Green -Shape = 8 +Shape = Quadruped Kind = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. BattlerPlayerX = 0 @@ -20706,7 +20706,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 63.0 Color = Green -Shape = 4 +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 @@ -20738,7 +20738,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 61.0 Color = Blue -Shape = 4 +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 @@ -20769,7 +20769,7 @@ StepsToHatch = 30720 Height = 3.2 Weight = 330.0 Color = White -Shape = 9 +Shape = Winged Kind = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. BattlerPlayerX = 2 @@ -20799,7 +20799,7 @@ StepsToHatch = 30720 Height = 2.9 Weight = 345.0 Color = Black -Shape = 6 +Shape = BipedalTail Kind = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. BattlerPlayerX = 0 @@ -20830,7 +20830,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 68.0 Color = Brown -Shape = 4 +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 @@ -20861,7 +20861,7 @@ StepsToHatch = 30720 Height = 3.0 Weight = 325.0 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. BattlerPlayerX = -3 @@ -20891,7 +20891,7 @@ StepsToHatch = 20480 Height = 1.4 Weight = 48.5 Color = Yellow -Shape = 8 +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 @@ -20922,7 +20922,7 @@ StepsToHatch = 30720 Height = 0.6 Weight = 6.5 Color = White -Shape = 12 +Shape = Bipedal Kind = Melody Pokedex = Many famous songs have been inspired by the melodies that Meloetta plays. FormName = Aria Forme @@ -20956,7 +20956,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 82.5 Color = Purple -Shape = 12 +Shape = Bipedal Kind = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal @@ -20988,7 +20988,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 9.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -21019,7 +21019,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 29.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -21051,7 +21051,7 @@ StepsToHatch = 5120 Height = 1.6 Weight = 90.0 Color = Green -Shape = 6 +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. BattlerPlayerX = 0 @@ -21082,7 +21082,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 9.4 Color = Red -Shape = 8 +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. BattlerPlayerX = 0 @@ -21113,7 +21113,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 14.5 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -21145,7 +21145,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 39.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -21176,7 +21176,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 7.0 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -21207,7 +21207,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 10.9 Color = Blue -Shape = 12 +Shape = Bipedal Kind = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. BattlerPlayerX = 0 @@ -21239,7 +21239,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 40.0 Color = Blue -Shape = 12 +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. BattlerPlayerX = 0 @@ -21270,7 +21270,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 5.0 Color = Brown -Shape = 6 +Shape = BipedalTail Kind = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. BattlerPlayerX = 0 @@ -21302,7 +21302,7 @@ StepsToHatch = 3840 Height = 1.0 Weight = 42.4 Color = Brown -Shape = 6 +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. BattlerPlayerX = 0 @@ -21334,7 +21334,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.7 Color = Red -Shape = 9 +Shape = Winged Kind = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. BattlerPlayerX = 0 @@ -21366,7 +21366,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 16.0 Color = Red -Shape = 9 +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. BattlerPlayerX = 0 @@ -21398,7 +21398,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 24.5 Color = Red -Shape = 9 +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. BattlerPlayerX = 0 @@ -21429,7 +21429,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 2.5 Color = Black -Shape = 14 +Shape = Insectoid Kind = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. BattlerPlayerX = 0 @@ -21460,7 +21460,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 8.4 Color = Black -Shape = 5 +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. BattlerPlayerX = 0 @@ -21492,7 +21492,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 17.0 Color = White -Shape = 13 +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 @@ -21525,7 +21525,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 13.5 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21557,7 +21557,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 81.5 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21588,7 +21588,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.1 Color = White -Shape = 4 +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 @@ -21620,7 +21620,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.9 Color = White -Shape = 4 +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 @@ -21652,7 +21652,7 @@ StepsToHatch = 5120 Height = 1.1 Weight = 10.0 Color = White -Shape = 4 +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 @@ -21684,7 +21684,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 31.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21715,7 +21715,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 91.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -21746,7 +21746,7 @@ StepsToHatch = 6400 Height = 0.6 Weight = 8.0 Color = White -Shape = 6 +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. WildItemUncommon = MENTALHERB @@ -21779,7 +21779,7 @@ StepsToHatch = 6400 Height = 2.1 Weight = 136.0 Color = White -Shape = 12 +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. WildItemUncommon = MENTALHERB @@ -21810,7 +21810,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 28.0 Color = White -Shape = 8 +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 @@ -21842,7 +21842,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.5 Color = Gray -Shape = 6 +Shape = BipedalTail Kind = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. BattlerPlayerX = 0 @@ -21873,7 +21873,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 8.5 Color = Blue -Shape = 6 +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 @@ -21905,7 +21905,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 2.0 Color = Brown -Shape = 5 +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. BattlerPlayerX = 0 @@ -21936,7 +21936,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 4.5 Color = Brown -Shape = 11 +Shape = MultiBody Kind = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. BattlerPlayerX = 0 @@ -21967,7 +21967,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 53.0 Color = Brown -Shape = 5 +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 @@ -21999,7 +21999,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.5 Color = Pink -Shape = 4 +Shape = HeadArms Kind = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. BattlerPlayerX = 0 @@ -22030,7 +22030,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 15.5 Color = Pink -Shape = 12 +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. BattlerPlayerX = 0 @@ -22061,7 +22061,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 3.5 Color = White -Shape = 7 +Shape = HeadLegs Kind = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. BattlerPlayerX = 0 @@ -22092,7 +22092,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 5.0 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -22124,7 +22124,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 3.5 Color = Blue -Shape = 10 +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. BattlerPlayerX = 0 @@ -22156,7 +22156,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 47.0 Color = Blue -Shape = 5 +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. BattlerPlayerX = 0 @@ -22188,7 +22188,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 31.0 Color = Brown -Shape = 11 +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. BattlerPlayerX = 0 @@ -22220,7 +22220,7 @@ StepsToHatch = 5120 Height = 1.3 Weight = 96.0 Color = Brown -Shape = 11 +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. BattlerPlayerX = 0 @@ -22252,7 +22252,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 7.3 Color = Brown -Shape = 5 +Shape = HeadBase Kind = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. BattlerPlayerX = 0 @@ -22284,7 +22284,7 @@ StepsToHatch = 5120 Height = 1.8 Weight = 81.5 Color = Brown -Shape = 5 +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. BattlerPlayerX = 0 @@ -22314,7 +22314,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 8.3 Color = Blue -Shape = 14 +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. BattlerPlayerX = 0 @@ -22344,7 +22344,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 35.3 Color = Blue -Shape = 2 +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. BattlerPlayerX = 0 @@ -22376,7 +22376,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 6.0 Color = Yellow -Shape = 6 +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. BattlerPlayerX = 0 @@ -22408,7 +22408,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 21.0 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. BattlerPlayerX = 0 @@ -22440,7 +22440,7 @@ StepsToHatch = 7680 Height = 0.8 Weight = 26.0 Color = Brown -Shape = 6 +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. BattlerPlayerX = 0 @@ -22472,7 +22472,7 @@ StepsToHatch = 7680 Height = 2.5 Weight = 270.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -22504,7 +22504,7 @@ StepsToHatch = 7680 Height = 1.3 Weight = 25.2 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -22536,7 +22536,7 @@ StepsToHatch = 7680 Height = 2.7 Weight = 225.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. BattlerPlayerX = 0 @@ -22566,7 +22566,7 @@ StepsToHatch = 8960 Height = 1.0 Weight = 23.5 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -22598,7 +22598,7 @@ StepsToHatch = 5120 Height = 0.8 Weight = 21.5 Color = Green -Shape = 12 +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. WildItemUncommon = KINGSROCK @@ -22631,7 +22631,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 2.2 Color = Yellow -Shape = 6 +Shape = BipedalTail Kind = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. BattlerPlayerX = 0 @@ -22662,7 +22662,7 @@ StepsToHatch = 6400 Height = 0.3 Weight = 5.7 Color = Gray -Shape = 1 +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. BattlerPlayerX = 0 @@ -22693,7 +22693,7 @@ StepsToHatch = 10240 Height = 0.3 Weight = 2.8 Color = Purple -Shape = 2 +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. WildItemUncommon = SHEDSHELL @@ -22725,7 +22725,7 @@ StepsToHatch = 10240 Height = 0.8 Weight = 17.5 Color = Purple -Shape = 2 +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. WildItemUncommon = SHEDSHELL @@ -22757,7 +22757,7 @@ StepsToHatch = 10240 Height = 2.0 Weight = 150.5 Color = Purple -Shape = 6 +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. BattlerPlayerX = 0 @@ -22789,7 +22789,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 3.0 Color = Gray -Shape = 1 +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. BattlerPlayerX = 0 @@ -22821,7 +22821,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 7.0 Color = Brown -Shape = 4 +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. BattlerPlayerX = 0 @@ -22853,7 +22853,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 71.0 Color = Brown -Shape = 10 +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. BattlerPlayerX = 0 @@ -22884,7 +22884,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.5 Color = Brown -Shape = 1 +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 @@ -22916,7 +22916,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 9.5 Color = Brown -Shape = 5 +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 @@ -22948,7 +22948,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 99.5 Color = Blue -Shape = 8 +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. BattlerPlayerX = 0 @@ -22979,7 +22979,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 505.0 Color = Blue -Shape = 8 +Shape = Quadruped Kind = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. BattlerPlayerX = 0 @@ -23011,7 +23011,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 8.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -23043,7 +23043,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 85.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -23072,7 +23072,7 @@ StepsToHatch = 30720 Height = 3.0 Weight = 215.0 Color = Blue -Shape = 8 +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 @@ -23103,7 +23103,7 @@ StepsToHatch = 30720 Height = 5.8 Weight = 203.0 Color = Red -Shape = 9 +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. BattlerPlayerX = 0 @@ -23133,7 +23133,7 @@ StepsToHatch = 30720 Height = 5.0 Weight = 305.0 Color = Green -Shape = 2 +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 @@ -23164,7 +23164,7 @@ StepsToHatch = 6400 Height = 0.7 Weight = 8.8 Color = Pink -Shape = 4 +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. BattlerPlayerX = 0 @@ -23194,7 +23194,7 @@ StepsToHatch = 30720 Height = 0.5 Weight = 9.0 Color = Purple -Shape = 4 +Shape = HeadArms Kind = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined @@ -23225,7 +23225,7 @@ StepsToHatch = 30720 Height = 1.7 Weight = 195.0 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -23257,7 +23257,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.5 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -23289,7 +23289,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 16.0 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -23321,7 +23321,7 @@ StepsToHatch = 3840 Height = 1.6 Weight = 36.6 Color = Brown -Shape = 9 +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. BattlerPlayerX = 0 @@ -23352,7 +23352,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.3 Color = Red -Shape = 8 +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. BattlerPlayerX = 0 @@ -23383,7 +23383,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 25.0 Color = Red -Shape = 8 +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. BattlerPlayerX = 0 @@ -23415,7 +23415,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 83.0 Color = Red -Shape = 6 +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. BattlerPlayerX = 0 @@ -23446,7 +23446,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 7.5 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -23477,7 +23477,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 17.5 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -23509,7 +23509,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 44.0 Color = Blue -Shape = 3 +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. BattlerPlayerX = 0 @@ -23541,7 +23541,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.2 Color = Black -Shape = 9 +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. WildItemUncommon = ORANBERRY @@ -23574,7 +23574,7 @@ StepsToHatch = 3840 Height = 0.6 Weight = 14.8 Color = Black -Shape = 9 +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. WildItemUncommon = SITRUSBERRY @@ -23607,7 +23607,7 @@ StepsToHatch = 3840 Height = 1.1 Weight = 26.0 Color = Black -Shape = 9 +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. WildItemUncommon = RAWSTBERRY @@ -23639,7 +23639,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 6.0 Color = Brown -Shape = 8 +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. WildItemUncommon = PECHABERRY @@ -23671,7 +23671,7 @@ StepsToHatch = 3840 Height = 0.7 Weight = 14.2 Color = Brown -Shape = 8 +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. WildItemUncommon = PECHABERRY @@ -23702,7 +23702,7 @@ StepsToHatch = 3840 Height = 0.4 Weight = 4.4 Color = Gray -Shape = 14 +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. BattlerPlayerX = 0 @@ -23733,7 +23733,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 10.5 Color = Green -Shape = 2 +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! WildItemUncommon = CELLBATTERY @@ -23765,7 +23765,7 @@ StepsToHatch = 3840 Height = 1.5 Weight = 45.0 Color = Blue -Shape = 14 +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. BattlerPlayerX = 0 @@ -23796,7 +23796,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 7.0 Color = Purple -Shape = 14 +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. WildItemUncommon = ASPEARBERRY @@ -23829,7 +23829,7 @@ StepsToHatch = 5120 Height = 1.7 Weight = 180.0 Color = White -Shape = 14 +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. WildItemUncommon = CHERIBERRY @@ -23861,7 +23861,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 3.4 Color = Red -Shape = 9 +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 @@ -23895,7 +23895,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.2 Color = Yellow -Shape = 14 +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. WildItemUncommon = HONEY @@ -23928,7 +23928,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.5 Color = Yellow -Shape = 13 +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. WildItemUncommon = HONEY @@ -23960,7 +23960,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 9.2 Color = Brown -Shape = 8 +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. BattlerPlayerX = 0 @@ -23991,7 +23991,7 @@ StepsToHatch = 3840 Height = 0.8 Weight = 25.0 Color = Brown -Shape = 8 +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 @@ -24022,7 +24022,7 @@ StepsToHatch = 3840 Height = 0.2 Weight = 0.3 Color = Blue -Shape = 3 +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 @@ -24055,7 +24055,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 8.0 Color = Blue -Shape = 5 +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. WildItemUncommon = POISONBARB @@ -24088,7 +24088,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 14.5 Color = Blue -Shape = 10 +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. WildItemUncommon = POISONBARB @@ -24120,7 +24120,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 110.0 Color = Brown -Shape = 8 +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. WildItemUncommon = LIGHTCLAY @@ -24152,7 +24152,7 @@ StepsToHatch = 5120 Height = 2.5 Weight = 920.0 Color = Brown -Shape = 8 +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. WildItemUncommon = LIGHTCLAY @@ -24185,7 +24185,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 4.0 Color = Green -Shape = 7 +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. WildItemUncommon = MYSTICWATER @@ -24218,7 +24218,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 82.0 Color = Green -Shape = 14 +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. WildItemUncommon = MYSTICWATER @@ -24250,7 +24250,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 1.5 Color = Pink -Shape = 6 +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. WildItemUncommon = MIRACLESEED @@ -24282,7 +24282,7 @@ StepsToHatch = 5120 Height = 0.9 Weight = 18.5 Color = Pink -Shape = 12 +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. WildItemUncommon = MIRACLESEED @@ -24315,7 +24315,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 1.5 Color = Purple -Shape = 5 +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. WildItemCommon = TINYMUSHROOM @@ -24349,7 +24349,7 @@ StepsToHatch = 5120 Height = 1.0 Weight = 11.5 Color = Purple -Shape = 12 +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. WildItemCommon = TINYMUSHROOM @@ -24383,7 +24383,7 @@ StepsToHatch = 5120 Height = 0.6 Weight = 4.8 Color = Black -Shape = 8 +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. WildItemUncommon = SMOKEBALL @@ -24416,7 +24416,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 22.2 Color = Black -Shape = 8 +Shape = Quadruped Kind = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. WildItemUncommon = SMOKEBALL @@ -24449,7 +24449,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 6.8 Color = Pink -Shape = 8 +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. BattlerPlayerX = 0 @@ -24481,7 +24481,7 @@ StepsToHatch = 3840 Height = 2.1 Weight = 135.0 Color = Pink -Shape = 6 +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. BattlerPlayerX = 0 @@ -24512,7 +24512,7 @@ StepsToHatch = 5120 Height = 0.3 Weight = 3.2 Color = Purple -Shape = 7 +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. WildItemUncommon = GRASSYSEED @@ -24544,7 +24544,7 @@ StepsToHatch = 5120 Height = 0.7 Weight = 8.2 Color = Purple -Shape = 12 +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. WildItemUncommon = GRASSYSEED @@ -24576,7 +24576,7 @@ StepsToHatch = 5120 Height = 1.2 Weight = 21.4 Color = Purple -Shape = 12 +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. WildItemCommon = GRASSYSEED @@ -24608,7 +24608,7 @@ StepsToHatch = 5120 Height = 0.1 Weight = 0.3 Color = Green -Shape = 1 +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. WildItemUncommon = MISTYSEED @@ -24641,7 +24641,7 @@ StepsToHatch = 5120 Height = 1.5 Weight = 76.0 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -24672,7 +24672,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 82.8 Color = White -Shape = 6 +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. BattlerPlayerX = 0 @@ -24703,7 +24703,7 @@ StepsToHatch = 5120 Height = 0.5 Weight = 12.0 Color = Gray -Shape = 10 +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. BattlerPlayerX = 0 @@ -24734,7 +24734,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 108.0 Color = Gray -Shape = 12 +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. BattlerPlayerX = 0 @@ -24766,7 +24766,7 @@ StepsToHatch = 3840 Height = 0.5 Weight = 70.0 Color = Brown -Shape = 2 +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. WildItemUncommon = SPELLTAG @@ -24799,7 +24799,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 250.0 Color = Brown -Shape = 2 +Shape = Serpentine Kind = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. WildItemUncommon = SPELLTAG @@ -24831,7 +24831,7 @@ StepsToHatch = 3840 Height = 0.3 Weight = 1.2 Color = Black -Shape = 2 +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. BattlerPlayerX = 0 @@ -24860,7 +24860,7 @@ StepsToHatch = 30720 Height = 1.9 Weight = 120.5 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. BattlerPlayerX = 0 @@ -24890,7 +24890,7 @@ StepsToHatch = 30720 Height = 2.3 Weight = 100.5 Color = Gray -Shape = 8 +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 @@ -24921,7 +24921,7 @@ StepsToHatch = 6400 Height = 0.3 Weight = 40.0 Color = Brown -Shape = 1 +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 @@ -24953,7 +24953,7 @@ StepsToHatch = 5120 Height = 0.4 Weight = 19.9 Color = Blue -Shape = 12 +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. BattlerPlayerX = 0 @@ -24984,7 +24984,7 @@ StepsToHatch = 5120 Height = 2.0 Weight = 212.0 Color = Red -Shape = 6 +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. WildItemUncommon = CHARCOAL @@ -25017,7 +25017,7 @@ StepsToHatch = 2560 Height = 0.3 Weight = 3.3 Color = Gray -Shape = 6 +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. WildItemUncommon = ELECTRICSEED @@ -25049,7 +25049,7 @@ StepsToHatch = 5120 Height = 0.2 Weight = 0.7 Color = Yellow -Shape = 2 +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 @@ -25083,7 +25083,7 @@ StepsToHatch = 3840 Height = 0.9 Weight = 19.0 Color = Pink -Shape = 3 +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. WildItemUncommon = RAZORFANG @@ -25116,7 +25116,7 @@ StepsToHatch = 5120 Height = 3.0 Weight = 185.0 Color = White -Shape = 2 +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. WildItemUncommon = PERSIMBERRY @@ -25147,7 +25147,7 @@ StepsToHatch = 6400 Height = 3.9 Weight = 210.0 Color = Green -Shape = 5 +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. BattlerPlayerX = 0 @@ -25178,7 +25178,7 @@ StepsToHatch = 10240 Height = 0.6 Weight = 29.7 Color = Gray -Shape = 8 +Shape = Quadruped Kind = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. WildItemUncommon = RAZORCLAW @@ -25211,7 +25211,7 @@ StepsToHatch = 10240 Height = 1.2 Weight = 47.0 Color = Gray -Shape = 6 +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. WildItemUncommon = RAZORCLAW @@ -25244,7 +25244,7 @@ StepsToHatch = 10240 Height = 1.6 Weight = 78.2 Color = Gray -Shape = 6 +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. WildItemCommon = RAZORCLAW @@ -25276,7 +25276,7 @@ StepsToHatch = 3840 Height = 1.8 Weight = 20.5 Color = Yellow -Shape = 4 +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. BattlerPlayerX = 0 @@ -25307,7 +25307,7 @@ StepsToHatch = 3840 Height = 1.2 Weight = 18.6 Color = Pink -Shape = 4 +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. BattlerPlayerX = 0 @@ -25338,7 +25338,7 @@ StepsToHatch = 3840 Height = 1.9 Weight = 45.5 Color = Red -Shape = 4 +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. BattlerPlayerX = 0 @@ -25369,7 +25369,7 @@ StepsToHatch = 3840 Height = 1.3 Weight = 21.2 Color = Purple -Shape = 4 +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. BattlerPlayerX = 0 @@ -25397,7 +25397,7 @@ StepsToHatch = 30720 Height = 0.2 Weight = 0.1 Color = Blue -Shape = 1 +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. BattlerPlayerX = 0 @@ -25426,7 +25426,7 @@ StepsToHatch = 30720 Height = 0.1 Weight = 999.9 Color = Blue -Shape = 1 +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. BattlerPlayerX = 0 @@ -25457,7 +25457,7 @@ StepsToHatch = 30720 Height = 3.4 Weight = 230.0 Color = White -Shape = 8 +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. BattlerPlayerX = 0 @@ -25487,7 +25487,7 @@ StepsToHatch = 30720 Height = 4.0 Weight = 120.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -25517,7 +25517,7 @@ StepsToHatch = 30720 Height = 1.2 Weight = 55.5 Color = White -Shape = 10 +Shape = Multiped Kind = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. BattlerPlayerX = 0 @@ -25547,7 +25547,7 @@ StepsToHatch = 30720 Height = 2.4 Weight = 333.6 Color = Red -Shape = 10 +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. BattlerPlayerX = 0 @@ -25577,7 +25577,7 @@ StepsToHatch = 30720 Height = 1.8 Weight = 25.0 Color = White -Shape = 12 +Shape = Bipedal Kind = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. BattlerPlayerX = 0 @@ -25606,7 +25606,7 @@ StepsToHatch = 30720 Height = 3.8 Weight = 100.0 Color = Black -Shape = 6 +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. BattlerPlayerX = 0 @@ -25636,7 +25636,7 @@ StepsToHatch = 30720 Height = 9.2 Weight = 999.9 Color = Green -Shape = 12 +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. BattlerPlayerX = 0 @@ -25666,7 +25666,7 @@ StepsToHatch = 30720 Height = 0.3 Weight = 0.1 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -25696,7 +25696,7 @@ StepsToHatch = 30720 Height = 5.5 Weight = 888.0 Color = Black -Shape = 6 +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. BattlerPlayerX = 0 @@ -25725,7 +25725,7 @@ StepsToHatch = 30720 Height = 2.4 Weight = 230.0 Color = Black -Shape = 4 +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. BattlerPlayerX = 0 @@ -25755,7 +25755,7 @@ StepsToHatch = 30720 Height = 1.0 Weight = 80.5 Color = Gray -Shape = 12 +Shape = Bipedal Kind = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. BattlerPlayerX = 0 @@ -25785,7 +25785,7 @@ StepsToHatch = 30720 Height = 0.7 Weight = 22.2 Color = Gray -Shape = 12 +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. BattlerPlayerX = 0 @@ -25814,7 +25814,7 @@ StepsToHatch = 30720 Height = 0.6 Weight = 1.8 Color = Purple -Shape = 6 +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. BattlerPlayerX = 0 @@ -25845,7 +25845,7 @@ StepsToHatch = 30720 Height = 3.6 Weight = 150.0 Color = Purple -Shape = 9 +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. BattlerPlayerX = 0 @@ -25875,7 +25875,7 @@ StepsToHatch = 30720 Height = 5.5 Weight = 820.0 Color = Gray -Shape = 8 +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. BattlerPlayerX = 0 @@ -25905,7 +25905,7 @@ StepsToHatch = 30720 Height = 1.8 Weight = 13.0 Color = White -Shape = 12 +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. BattlerPlayerX = 0 @@ -25934,7 +25934,7 @@ StepsToHatch = 30720 Height = 1.5 Weight = 44.5 Color = Yellow -Shape = 12 +Shape = Bipedal Kind = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. BattlerPlayerX = 0 @@ -25962,7 +25962,7 @@ StepsToHatch = 30720 Height = 0.2 Weight = 8.0 Color = Gray -Shape = 1 +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. BattlerPlayerX = 0 @@ -25991,7 +25991,7 @@ StepsToHatch = 30720 Height = 2.5 Weight = 800.0 Color = Gray -Shape = 12 +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. BattlerPlayerX = 0 diff --git a/PBS/pokemonforms.txt b/PBS/pokemonforms.txt index 91226807c..16a268f9d 100644 --- a/PBS/pokemonforms.txt +++ b/PBS/pokemonforms.txt @@ -265,7 +265,7 @@ Abilities = SHELLARMOR HiddenAbility = SHELLARMOR Height = 2.0 Weight = 120.0 -Shape = 4 +Shape = HeadArms Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too. #------------------------------- [GRIMER,1] @@ -350,7 +350,7 @@ Abilities = AERILATE HiddenAbility = AERILATE Height = 1.7 Weight = 59.0 -Shape = 13 +Shape = MultiWinged Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers. #------------------------------- [GYARADOS,1] @@ -944,7 +944,7 @@ HiddenAbility = LEVITATE TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP Height = 6.9 Weight = 650.0 -Shape = 2 +Shape = Serpentine BattlerEnemyX = -2 BattlerEnemyY = -8 #------------------------------- @@ -1093,7 +1093,7 @@ EffortPoints = 0,0,0,3,0,0 Abilities = REGENERATOR HiddenAbility = REGENERATOR Height = 1.4 -Shape = 9 +Shape = Winged BattlerPlayerX = -2 BattlerEnemyX = 8 BattlerEnemyY = 11 @@ -1106,7 +1106,7 @@ Abilities = VOLTABSORB HiddenAbility = VOLTABSORB TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE Height = 3.0 -Shape = 6 +Shape = BipedalTail BattlerPlayerX = -3 BattlerEnemyX = 2 BattlerEnemyY = 5 @@ -1118,7 +1118,7 @@ EffortPoints = 0,3,0,0,0,0 Abilities = INTIMIDATE HiddenAbility = INTIMIDATE Height = 1.3 -Shape = 8 +Shape = Quadruped BattlerPlayerX = -8 BattlerEnemyX = 3 BattlerEnemyY = 14 @@ -1402,7 +1402,7 @@ BaseStats = 54,100,71,115,61,85 Height = 1.2 Weight = 33.5 Color = Black -Shape = 8 +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. #------------------------------- [ZYGARDE,2] @@ -1412,7 +1412,7 @@ Abilities = POWERCONSTRUCT Height = 4.5 Weight = 610.0 Color = Black -Shape = 6 +Shape = BipedalTail Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything. #------------------------------- [ZYGARDE,3] @@ -1422,7 +1422,7 @@ Abilities = POWERCONSTRUCT Height = 4.5 Weight = 610.0 Color = Black -Shape = 6 +Shape = BipedalTail #------------------------------- [DIANCIE,1] FormName = Mega Diancie @@ -1441,7 +1441,7 @@ BaseStats = 80,160,60,80,170,130 Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY Height = 6.5 Weight = 490.0 -Shape = 6 +Shape = BipedalTail #------------------------------- [ORICORIO,1] FormName = Pom-Pom Style @@ -1478,7 +1478,7 @@ Moves = 0,COUNTER,1,COUNTER,1,REVERSAL,1,TAUNT,1,TACKLE,1,LEER,1,SANDATTACK,1,BI TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT Height = 1.1 Color = Red -Shape = 6 +Shape = BipedalTail Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane. #------------------------------- [LYCANROC,2] @@ -1495,7 +1495,7 @@ FormName = School Form BaseStats = 45,140,130,30,140,135 Height = 8.2 Weight = 78.6 -Shape = 11 +Shape = MultiBody Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far. #------------------------------- [SILVALLY,1] @@ -1640,7 +1640,7 @@ EffortPoints = 0,3,0,0,0,0 Height = 3.8 Weight = 460.0 Color = Yellow -Shape = 8 +Shape = Quadruped Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control. #------------------------------- [NECROZMA,2]