From 10a1fc443086ee6ad15c613562ccf31f1f295b2a Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sat, 23 Oct 2021 20:30:09 +0100 Subject: [PATCH] =?UTF-8?q?Added=20PBS=20file=20pokemon=5Fmetrics.txt,=20f?= =?UTF-8?q?or=20all=20Pok=C3=A9mon=20sprite=20positionings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Data/Scripts/010_Data/001_GameData.rb | 1 + .../010_Data/002_PBS data/008_Species.rb | 34 +- .../002_PBS data/009_Species_Files.rb | 3 +- .../002_PBS data/010_SpeciesMetrics.rb | 89 + .../{010_Ribbon.rb => 011_Ribbon.rb} | 0 .../{011_Encounter.rb => 012_Encounter.rb} | 0 ...{012_TrainerType.rb => 013_TrainerType.rb} | 0 .../{013_Trainer.rb => 014_Trainer.rb} | 0 .../{014_Metadata.rb => 015_Metadata.rb} | 0 ...layerMetadata.rb => 016_PlayerMetadata.rb} | 0 ...{016_MapMetadata.rb => 017_MapMetadata.rb} | 0 Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb | 4 +- .../001_Editor screens/001_EditorScreens.rb | 27 +- .../004_EditorScreens_SpritePositioning.rb | 136 +- .../003_Debug menus/002_Debug_MenuCommands.rb | 16 +- Data/Scripts/021_Compiler/001_Compiler.rb | 4 + .../021_Compiler/002_Compiler_CompilePBS.rb | 117 +- .../021_Compiler/003_Compiler_WritePBS.rb | 68 +- .../004_Compiler_MapsAndEvents.rb | 13 +- PBS/Gen 5/berry_plants.txt | 66 + PBS/Gen 5/pokemon.txt | 3894 ------------ PBS/Gen 5/pokemon_forms.txt | 77 - PBS/Gen 5/pokemon_metrics.txt | 4045 +++++++++++++ PBS/Gen 7/berry_plants.txt | 69 + PBS/Gen 7/pokemon.txt | 4854 --------------- PBS/Gen 7/pokemon_forms.txt | 98 - PBS/Gen 7/pokemon_metrics.txt | 4045 +++++++++++++ PBS/Gen 8/berry_plants.txt | 69 + PBS/Gen 8/pokemon.txt | 5388 ----------------- PBS/Gen 8/pokemon_forms.txt | 98 - PBS/Gen 8/pokemon_metrics.txt | 4045 +++++++++++++ PBS/pokemon.txt | 5388 ----------------- PBS/pokemon_forms.txt | 98 - PBS/pokemon_metrics.txt | 4045 +++++++++++++ 34 files changed, 16729 insertions(+), 20062 deletions(-) create mode 100644 Data/Scripts/010_Data/002_PBS data/010_SpeciesMetrics.rb rename Data/Scripts/010_Data/002_PBS data/{010_Ribbon.rb => 011_Ribbon.rb} (100%) rename Data/Scripts/010_Data/002_PBS data/{011_Encounter.rb => 012_Encounter.rb} (100%) rename Data/Scripts/010_Data/002_PBS data/{012_TrainerType.rb => 013_TrainerType.rb} (100%) rename Data/Scripts/010_Data/002_PBS data/{013_Trainer.rb => 014_Trainer.rb} (100%) rename Data/Scripts/010_Data/002_PBS data/{014_Metadata.rb => 015_Metadata.rb} (100%) rename Data/Scripts/010_Data/002_PBS data/{015_PlayerMetadata.rb => 016_PlayerMetadata.rb} (100%) rename Data/Scripts/010_Data/002_PBS data/{016_MapMetadata.rb => 017_MapMetadata.rb} (100%) create mode 100644 PBS/Gen 5/berry_plants.txt create mode 100644 PBS/Gen 5/pokemon_metrics.txt create mode 100644 PBS/Gen 7/berry_plants.txt create mode 100644 PBS/Gen 7/pokemon_metrics.txt create mode 100644 PBS/Gen 8/berry_plants.txt create mode 100644 PBS/Gen 8/pokemon_metrics.txt create mode 100644 PBS/pokemon_metrics.txt diff --git a/Data/Scripts/010_Data/001_GameData.rb b/Data/Scripts/010_Data/001_GameData.rb index 63d4e4662..a05321bf5 100644 --- a/Data/Scripts/010_Data/001_GameData.rb +++ b/Data/Scripts/010_Data/001_GameData.rb @@ -230,6 +230,7 @@ module GameData Item.load BerryPlant.load Species.load + SpeciesMetrics.load Ribbon.load Encounter.load TrainerType.load diff --git a/Data/Scripts/010_Data/002_PBS data/008_Species.rb b/Data/Scripts/010_Data/002_PBS data/008_Species.rb index f5e93e225..7a8ab085f 100644 --- a/Data/Scripts/010_Data/002_PBS data/008_Species.rb +++ b/Data/Scripts/010_Data/002_PBS data/008_Species.rb @@ -40,13 +40,6 @@ module GameData attr_reader :mega_move attr_reader :unmega_form attr_reader :mega_message - attr_accessor :back_sprite_x - attr_accessor :back_sprite_y - attr_accessor :front_sprite_x - attr_accessor :front_sprite_y - attr_accessor :front_sprite_altitude - attr_accessor :shadow_x - attr_accessor :shadow_size DATA = {} DATA_FILENAME = "species.dat" @@ -190,13 +183,6 @@ module GameData @mega_move = hash[:mega_move] @unmega_form = hash[:unmega_form] || 0 @mega_message = hash[:mega_message] || 0 - @back_sprite_x = hash[:back_sprite_x] || 0 - @back_sprite_y = hash[:back_sprite_y] || 0 - @front_sprite_x = hash[:front_sprite_x] || 0 - @front_sprite_y = hash[:front_sprite_y] || 0 - @front_sprite_altitude = hash[:front_sprite_altitude] || 0 - @shadow_x = hash[:shadow_x] || 0 - @shadow_size = hash[:shadow_size] || 2 end # @return [String] the translated name of this species @@ -235,25 +221,13 @@ module GameData end def apply_metrics_to_sprite(sprite, index, shadow = false) - if shadow - if (index & 1) == 1 # Foe Pokémon - sprite.x += @shadow_x * 2 - end - else - if (index & 1) == 0 # Player's Pokémon - sprite.x += @back_sprite_x * 2 - sprite.y += @back_sprite_y * 2 - else # Foe Pokémon - sprite.x += @front_sprite_x * 2 - sprite.y += @front_sprite_y * 2 - sprite.y -= @front_sprite_altitude * 2 - end - end + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) + metrics_data.apply_metrics_to_sprite(sprite, index, shadow) end def shows_shadow? - return true -# return @front_sprite_altitude > 0 + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) + return metrics_data.shows_shadow? end def get_evolutions(exclude_invalid = false) diff --git a/Data/Scripts/010_Data/002_PBS data/009_Species_Files.rb b/Data/Scripts/010_Data/002_PBS data/009_Species_Files.rb index 3db307561..1ac5fde5f 100644 --- a/Data/Scripts/010_Data/002_PBS data/009_Species_Files.rb +++ b/Data/Scripts/010_Data/002_PBS data/009_Species_Files.rb @@ -158,7 +158,8 @@ module GameData ret = pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%s", species_data.species)) return ret if ret # Use general shadow graphic - return pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%d", species_data.shadow_size)) + metrics_data = GameData::SpeciesMetrics.get_species_form(species_data.species, form) + return pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%d", metrics_data.shadow_size)) end def self.shadow_bitmap(species, form = 0) diff --git a/Data/Scripts/010_Data/002_PBS data/010_SpeciesMetrics.rb b/Data/Scripts/010_Data/002_PBS data/010_SpeciesMetrics.rb new file mode 100644 index 000000000..3455ca8da --- /dev/null +++ b/Data/Scripts/010_Data/002_PBS data/010_SpeciesMetrics.rb @@ -0,0 +1,89 @@ +module GameData + class SpeciesMetrics + attr_reader :id + attr_reader :species + attr_reader :form + attr_accessor :back_sprite + attr_accessor :front_sprite + attr_accessor :front_sprite_altitude + attr_accessor :shadow_x + attr_accessor :shadow_size + + DATA = {} + DATA_FILENAME = "species_metrics.dat" + + SCHEMA = { + "BackSprite" => [0, "ii"], + "FrontSprite" => [0, "ii"], + "FrontSpriteAltitude" => [0, "i"], + "ShadowX" => [0, "i"], + "ShadowSize" => [0, "u"] + } + + extend ClassMethodsSymbols + include InstanceMethods + + # @param species [Symbol, String] + # @param form [Integer] + # @return [self, nil] + def self.get_species_form(species, form) + return nil if !species || !form + validate species => [Symbol, String] + validate form => Integer + raise _INTL("Undefined species {1}.", species) if !GameData::Species.exists?(species) + species = species.to_sym if species.is_a?(String) + if form > 0 + trial = sprintf("%s_%d", species, form).to_sym + if !DATA.has_key?(trial) + self.register({:id => species}) if !DATA[species] + self.register({ + :id => trial, + :species => species, + :form => form, + :back_sprite => DATA[species].back_sprite.clone, + :front_sprite => DATA[species].front_sprite.clone, + :front_sprite_altitude => DATA[species].front_sprite_altitude, + :shadow_x => DATA[species].shadow_x, + :shadow_size => DATA[species].shadow_size + }) + end + return DATA[trial] + end + self.register({:id => species}) if !DATA[species] + return DATA[species] + end + + def initialize(hash) + @id = hash[:id] + @species = hash[:species] || @id + @form = hash[:form] || 0 + @back_sprite = hash[:back_sprite] || [0, 0] + @front_sprite = hash[:front_sprite] || [0, 0] + @front_sprite_altitude = hash[:front_sprite_altitude] || 0 + @shadow_x = hash[:shadow_x] || 0 + @shadow_size = hash[:shadow_size] || 2 + end + + def apply_metrics_to_sprite(sprite, index, shadow = false) + if shadow + if (index & 1) == 1 # Foe Pokémon + sprite.x += @shadow_x * 2 + end + else + if (index & 1) == 0 # Player's Pokémon + sprite.x += @back_sprite[0] * 2 + sprite.y += @back_sprite[1] * 2 + else # Foe Pokémon + sprite.x += @front_sprite[0] * 2 + sprite.y += @front_sprite[1] * 2 + sprite.y -= @front_sprite_altitude * 2 + end + end + end + + def shows_shadow? + return true +# return @front_sprite_altitude > 0 + end + end +end diff --git a/Data/Scripts/010_Data/002_PBS data/010_Ribbon.rb b/Data/Scripts/010_Data/002_PBS data/011_Ribbon.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/010_Ribbon.rb rename to Data/Scripts/010_Data/002_PBS data/011_Ribbon.rb diff --git a/Data/Scripts/010_Data/002_PBS data/011_Encounter.rb b/Data/Scripts/010_Data/002_PBS data/012_Encounter.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/011_Encounter.rb rename to Data/Scripts/010_Data/002_PBS data/012_Encounter.rb diff --git a/Data/Scripts/010_Data/002_PBS data/012_TrainerType.rb b/Data/Scripts/010_Data/002_PBS data/013_TrainerType.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/012_TrainerType.rb rename to Data/Scripts/010_Data/002_PBS data/013_TrainerType.rb diff --git a/Data/Scripts/010_Data/002_PBS data/013_Trainer.rb b/Data/Scripts/010_Data/002_PBS data/014_Trainer.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/013_Trainer.rb rename to Data/Scripts/010_Data/002_PBS data/014_Trainer.rb diff --git a/Data/Scripts/010_Data/002_PBS data/014_Metadata.rb b/Data/Scripts/010_Data/002_PBS data/015_Metadata.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/014_Metadata.rb rename to Data/Scripts/010_Data/002_PBS data/015_Metadata.rb diff --git a/Data/Scripts/010_Data/002_PBS data/015_PlayerMetadata.rb b/Data/Scripts/010_Data/002_PBS data/016_PlayerMetadata.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/015_PlayerMetadata.rb rename to Data/Scripts/010_Data/002_PBS data/016_PlayerMetadata.rb diff --git a/Data/Scripts/010_Data/002_PBS data/016_MapMetadata.rb b/Data/Scripts/010_Data/002_PBS data/017_MapMetadata.rb similarity index 100% rename from Data/Scripts/010_Data/002_PBS data/016_MapMetadata.rb rename to Data/Scripts/010_Data/002_PBS data/017_MapMetadata.rb diff --git a/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb b/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb index cbb54e9a3..4360a9736 100644 --- a/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb +++ b/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb @@ -127,7 +127,7 @@ class PokemonPokedexInfo_Scene def pbUpdateDummyPokemon @species = @dexlist[@index][0] @gender, @form = $player.pokedex.last_form_seen(@species) - species_data = GameData::Species.get_species_form(@species, @form) + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) @sprites["infosprite"].setSpeciesBitmap(@species,@gender,@form) if @sprites["formfront"] @sprites["formfront"].setSpeciesBitmap(@species,@gender,@form) @@ -135,7 +135,7 @@ class PokemonPokedexInfo_Scene if @sprites["formback"] @sprites["formback"].setSpeciesBitmap(@species,@gender,@form,false,false,true) @sprites["formback"].y = 256 - @sprites["formback"].y += species_data.back_sprite_y * 2 + @sprites["formback"].y += metrics_data.back_sprite[1] * 2 end if @sprites["formicon"] @sprites["formicon"].pbSetParams(@species,@gender,@form) diff --git a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb index 2ab368119..82f57fa20 100644 --- a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb +++ b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb @@ -1030,14 +1030,7 @@ def pbPokemonEditor [_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("Flags"), StringListProperty, _INTL("Words/phrases that distinguish this species from others.")], - [_INTL("BattlerPlayerX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], - [_INTL("BattlerPlayerY"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], - [_INTL("BattlerEnemyX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], - [_INTL("BattlerEnemyY"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], - [_INTL("BattlerAltitude"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], - [_INTL("BattlerShadowX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], - [_INTL("BattlerShadowSize"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], + [_INTL("Flags"), StringListProperty, _INTL("Words/phrases that distinguish this species from others.")] ] pbListScreenBlock(_INTL("Pokémon species"), SpeciesLister.new(0, false)) { |button, species| if species @@ -1097,14 +1090,7 @@ def pbPokemonEditor spec.shape, spec.habitat, spec.generation, - spec.flags.clone, - spec.back_sprite_x, - spec.back_sprite_y, - spec.front_sprite_x, - spec.front_sprite_y, - spec.front_sprite_altitude, - spec.shadow_x, - spec.shadow_size + spec.flags.clone ] # Edit the properties if pbPropertyList(spec.id.to_s, data, species_properties, true) @@ -1149,14 +1135,7 @@ def pbPokemonEditor :shape => data[34], :habitat => data[35], :generation => data[36], - :flags => data[37], - :back_sprite_x => data[38], - :back_sprite_y => data[39], - :front_sprite_x => data[40], - :front_sprite_y => data[41], - :front_sprite_altitude => data[42], - :shadow_x => data[43], - :shadow_size => data[44] + :flags => data[37] } # Add species' data to records GameData::Species.register(species_hash) diff --git a/Data/Scripts/020_Debug/001_Editor screens/004_EditorScreens_SpritePositioning.rb b/Data/Scripts/020_Debug/001_Editor screens/004_EditorScreens_SpritePositioning.rb index 371e4f7f4..986d36c41 100644 --- a/Data/Scripts/020_Debug/001_Editor screens/004_EditorScreens_SpritePositioning.rb +++ b/Data/Scripts/020_Debug/001_Editor screens/004_EditorScreens_SpritePositioning.rb @@ -18,26 +18,26 @@ def pbAutoPositionAll t = Time.now.to_i Graphics.update end + metrics = GameData::SpeciesMetrics.get_species_form(sp.species, sp.form) bitmap1 = GameData::Species.sprite_bitmap(sp.species, sp.form, nil, nil, nil, true) bitmap2 = GameData::Species.sprite_bitmap(sp.species, sp.form) if bitmap1 && bitmap1.bitmap # Player's y - sp.back_sprite_x = 0 - sp.back_sprite_y = (bitmap1.height - (findBottom(bitmap1.bitmap) + 1)) / 2 + metrics.back_sprite[0] = 0 + metrics.back_sprite[1] = (bitmap1.height - (findBottom(bitmap1.bitmap) + 1)) / 2 end if bitmap2 && bitmap2.bitmap # Foe's y - sp.front_sprite_x = 0 - sp.front_sprite_y = (bitmap2.height - (findBottom(bitmap2.bitmap) + 1)) / 2 - sp.front_sprite_y += 4 # Just because + metrics.front_sprite[0] = 0 + metrics.front_sprite[1] = (bitmap2.height - (findBottom(bitmap2.bitmap) + 1)) / 2 + metrics.front_sprite[1] += 4 # Just because end - sp.front_sprite_altitude = 0 # Shouldn't be used - sp.shadow_x = 0 - sp.shadow_size = 2 + metrics.front_sprite_altitude = 0 # Shouldn't be used + metrics.shadow_x = 0 + metrics.shadow_size = 2 bitmap1.dispose if bitmap1 bitmap2.dispose if bitmap2 end - GameData::Species.save - Compiler.write_pokemon - Compiler.write_pokemon_forms + GameData::SpeciesMetrics.save + Compiler.write_pokemon_metrics end #=============================================================================== @@ -81,7 +81,8 @@ class SpritePositioner @sprites["info"].viewport = @viewport @sprites["info"].visible = false @oldSpeciesIndex = 0 - @species = nil # This can be a species_form + @species = nil # This cannot be a species_form + @form = 0 @metricsChanged = false refresh @starting = true @@ -92,7 +93,7 @@ class SpritePositioner pbSaveMetrics @metricsChanged = false else - GameData::Species.load # Clear all changes to metrics + GameData::SpeciesMetrics.load # Clear all changes to metrics end pbFadeOutAndHide(@sprites) { update } pbDisposeSpriteHash(@sprites) @@ -100,9 +101,8 @@ class SpritePositioner end def pbSaveMetrics - GameData::Species.save - Compiler.write_pokemon - Compiler.write_pokemon_forms + GameData::SpeciesMetrics.save + Compiler.write_pokemon_metrics end def update @@ -116,12 +116,12 @@ class SpritePositioner @sprites["shadow_1"].visible = false return end - species_data = GameData::Species.get(@species) + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) for i in 0...2 pos = PokeBattle_SceneConstants.pbBattlerPosition(i, 1) @sprites["pokemon_#{i}"].x = pos[0] @sprites["pokemon_#{i}"].y = pos[1] - species_data.apply_metrics_to_sprite(@sprites["pokemon_#{i}"], i) + metrics_data.apply_metrics_to_sprite(@sprites["pokemon_#{i}"], i) @sprites["pokemon_#{i}"].visible = true if i == 1 @sprites["shadow_1"].x = pos[0] @@ -130,52 +130,51 @@ class SpritePositioner @sprites["shadow_1"].x -= @sprites["shadow_1"].bitmap.width / 2 @sprites["shadow_1"].y -= @sprites["shadow_1"].bitmap.height / 2 end - species_data.apply_metrics_to_sprite(@sprites["shadow_1"], i, true) + metrics_data.apply_metrics_to_sprite(@sprites["shadow_1"], i, true) @sprites["shadow_1"].visible = true end end end def pbAutoPosition - species_data = GameData::Species.get(@species) - old_back_y = species_data.back_sprite_y - old_front_y = species_data.front_sprite_y - old_front_altitude = species_data.front_sprite_altitude + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) + old_back_y = metrics_data.back_sprite[1] + old_front_y = metrics_data.front_sprite[1] + old_front_altitude = metrics_data.front_sprite_altitude bitmap1 = @sprites["pokemon_0"].bitmap bitmap2 = @sprites["pokemon_1"].bitmap new_back_y = (bitmap1.height - (findBottom(bitmap1) + 1)) / 2 new_front_y = (bitmap2.height - (findBottom(bitmap2) + 1)) / 2 new_front_y += 4 # Just because if new_back_y != old_back_y || new_front_y != old_front_y || old_front_altitude != 0 - species_data.back_sprite_y = new_back_y - species_data.front_sprite_y = new_front_y - species_data.front_sprite_altitude = 0 + metrics_data.back_sprite[1] = new_back_y + metrics_data.front_sprite[1] = new_front_y + metrics_data.front_sprite_altitude = 0 @metricsChanged = true refresh end end - def pbChangeSpecies(species) + def pbChangeSpecies(species, form) @species = species - species_data = GameData::Species.try_get(@species) + @form = form + species_data = GameData::Species.get_species_form(@species, @form) return if !species_data - spe = species_data.species - frm = species_data.form - @sprites["pokemon_0"].setSpeciesBitmap(spe, 0, frm, false, false, true) - @sprites["pokemon_1"].setSpeciesBitmap(spe, 0, frm) - @sprites["shadow_1"].setBitmap(GameData::Species.shadow_filename(spe, frm)) + @sprites["pokemon_0"].setSpeciesBitmap(@species, 0, @form, false, false, true) + @sprites["pokemon_1"].setSpeciesBitmap(@species, 0, @form) + @sprites["shadow_1"].setBitmap(GameData::Species.shadow_filename(@species, @form)) end def pbShadowSize - pbChangeSpecies(@species) + pbChangeSpecies(@species, @form) refresh - species_data = GameData::Species.get(@species) - if pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%s_%d", species_data.species, species_data.form)) || - pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%s", species_data.species)) + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) + if pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%s_%d", metrics_data.species, metrics_data.form)) || + pbResolveBitmap(sprintf("Graphics/Pokemon/Shadow/%s", metrics_data.species)) pbMessage("This species has its own shadow sprite in Graphics/Pokemon/Shadow/. The shadow size metric cannot be edited.") return false end - oldval = species_data.shadow_size + oldval = metrics_data.shadow_size cmdvals = [0] commands = [_INTL("None")] defindex = 0 @@ -200,17 +199,17 @@ class SpritePositioner self.update if cw.index != oldindex oldindex = cw.index - species_data.shadow_size = cmdvals[cw.index] - pbChangeSpecies(@species) + metrics_data.shadow_size = cmdvals[cw.index] + pbChangeSpecies(@species, @form) refresh end if Input.trigger?(Input::ACTION) # Cycle to next option pbPlayDecisionSE - @metricsChanged = true if species_data.shadow_size != oldval + @metricsChanged = true if metrics_data.shadow_size != oldval ret = true break elsif Input.trigger?(Input::BACK) - species_data.shadow_size = oldval + metrics_data.shadow_size = oldval pbPlayCancelSE break elsif Input.trigger?(Input::USE) @@ -229,19 +228,19 @@ class SpritePositioner pbAutoPosition return false end - species_data = GameData::Species.get(@species) + metrics_data = GameData::SpeciesMetrics.get_species_form(@species, @form) case param when 0 sprite = @sprites["pokemon_0"] - xpos = species_data.back_sprite_x - ypos = species_data.back_sprite_y + xpos = metrics_data.back_sprite[0] + ypos = metrics_data.back_sprite[1] when 1 sprite = @sprites["pokemon_1"] - xpos = species_data.front_sprite_x - ypos = species_data.front_sprite_y + xpos = metrics_data.front_sprite[0] + ypos = metrics_data.front_sprite[1] when 3 sprite = @sprites["shadow_1"] - xpos = species_data.shadow_x + xpos = metrics_data.shadow_x ypos = 0 end oldxpos = xpos @@ -261,17 +260,17 @@ class SpritePositioner if (Input.repeat?(Input::UP) || Input.repeat?(Input::DOWN)) && param != 3 ypos += (Input.repeat?(Input::DOWN)) ? 1 : -1 case param - when 0 then species_data.back_sprite_y = ypos - when 1 then species_data.front_sprite_y = ypos + when 0 then metrics_data.back_sprite[1] = ypos + when 1 then metrics_data.front_sprite[1] = ypos end refresh end if Input.repeat?(Input::LEFT) || Input.repeat?(Input::RIGHT) xpos += (Input.repeat?(Input::RIGHT)) ? 1 : -1 case param - when 0 then species_data.back_sprite_x = xpos - when 1 then species_data.front_sprite_x = xpos - when 3 then species_data.shadow_x = xpos + when 0 then metrics_data.back_sprite[0] = xpos + when 1 then metrics_data.front_sprite[0] = xpos + when 3 then metrics_data.shadow_x = xpos end refresh end @@ -283,13 +282,13 @@ class SpritePositioner elsif Input.repeat?(Input::BACK) case param when 0 - species_data.back_sprite_x = oldxpos - species_data.back_sprite_y = oldypos + metrics_data.back_sprite[0] = oldxpos + metrics_data.back_sprite[1] = oldypos when 1 - species_data.front_sprite_x = oldxpos - species_data.front_sprite_y = oldypos + metrics_data.front_sprite[0] = oldxpos + metrics_data.front_sprite[1] = oldypos when 3 - species_data.shadow_x = oldxpos + metrics_data.shadow_x = oldxpos end pbPlayCancelSE refresh @@ -305,8 +304,7 @@ class SpritePositioner return ret end - def pbMenu(species) - pbChangeSpecies(species) + def pbMenu refresh cw = Window_CommandPokemon.new([ _INTL("Set Ally Position"), @@ -350,14 +348,14 @@ class SpritePositioner allspecies = [] GameData::Species.each do |sp| name = (sp.form == 0) ? sp.name : _INTL("{1} (form {2})", sp.real_name, sp.form) - allspecies.push([sp.id, sp.species, name]) if name && !name.empty? + allspecies.push([sp.id, sp.species, sp.form, name]) if name && !name.empty? end - allspecies.sort! { |a, b| a[2] <=> b[2] } + allspecies.sort! { |a, b| a[3] <=> b[3] } commands = [] - allspecies.each { |sp| commands.push(sp[2]) } + allspecies.each { |sp| commands.push(sp[3]) } cw.commands = commands cw.index = @oldSpeciesIndex - ret = nil + ret = false oldindex = -1 loop do Graphics.update @@ -365,17 +363,17 @@ class SpritePositioner cw.update if cw.index != oldindex oldindex = cw.index - pbChangeSpecies(allspecies[cw.index][0]) + pbChangeSpecies(allspecies[cw.index][1], allspecies[cw.index][2]) refresh end self.update if Input.trigger?(Input::BACK) - pbChangeSpecies(nil) + pbChangeSpecies(nil, nil) refresh break elsif Input.trigger?(Input::USE) - pbChangeSpecies(allspecies[cw.index][0]) - ret = allspecies[cw.index][0] + pbChangeSpecies(allspecies[cw.index][1], allspecies[cw.index][2]) + ret = true break end end @@ -399,7 +397,7 @@ class SpritePositionerScreen species = @scene.pbChooseSpecies break if !species loop do - command = @scene.pbMenu(species) + command = @scene.pbMenu break if command < 0 loop do par = @scene.pbSetParameter(command) diff --git a/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb b/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb index 7492033d1..14b50dcde 100644 --- a/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb +++ b/Data/Scripts/020_Debug/003_Debug menus/002_Debug_MenuCommands.rb @@ -1137,6 +1137,7 @@ DebugMenuCommands.register("createpbs", { "phone.txt", "pokemon.txt", "pokemon_forms.txt", + "pokemon_metrics.txt", "regional_dexes.txt", "ribbons.txt", "shadow_movesets.txt", @@ -1161,13 +1162,14 @@ DebugMenuCommands.register("createpbs", { when 10 then Compiler.write_phone when 11 then Compiler.write_pokemon when 12 then Compiler.write_pokemon_forms - when 13 then Compiler.write_regional_dexes - when 14 then Compiler.write_ribbons - when 15 then Compiler.write_shadow_movesets - when 16 then Compiler.write_town_map - when 17 then Compiler.write_trainer_types - when 18 then Compiler.write_trainers - when 19 then Compiler.write_types + when 13 then Compiler.write_pokemon_metrics + when 14 then Compiler.write_regional_dexes + when 15 then Compiler.write_ribbons + when 16 then Compiler.write_shadow_movesets + when 17 then Compiler.write_town_map + when 18 then Compiler.write_trainer_types + when 19 then Compiler.write_trainers + when 20 then Compiler.write_types else break end pbMessage(_INTL("File written.")) diff --git a/Data/Scripts/021_Compiler/001_Compiler.rb b/Data/Scripts/021_Compiler/001_Compiler.rb index d11b10d35..192cfee73 100644 --- a/Data/Scripts/021_Compiler/001_Compiler.rb +++ b/Data/Scripts/021_Compiler/001_Compiler.rb @@ -724,6 +724,8 @@ module Compiler compile_pokemon # Depends on Move, Item, Type, Ability yield(_INTL("Compiling Pokémon forms data")) compile_pokemon_forms # Depends on Species, Move, Item, Type, Ability + yield(_INTL("Compiling Pokémon metrics data")) + compile_pokemon_metrics # Depends on Species yield(_INTL("Compiling shadow moveset data")) compile_shadow_movesets # Depends on Species, Move yield(_INTL("Compiling Regional Dexes")) @@ -774,6 +776,7 @@ module Compiler "ribbons.dat", "shadow_movesets.dat", "species.dat", + "species_metrics.dat", "town_map.dat", "trainer_lists.dat", "trainer_types.dat", @@ -793,6 +796,7 @@ module Compiler "phone.txt", "pokemon.txt", "pokemon_forms.txt", + "pokemon_metrics.txt", "regional_dexes.txt", "ribbons.txt", "shadow_movesets.txt", diff --git a/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb b/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb index 1508f17c7..9bd9d8f57 100644 --- a/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb +++ b/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb @@ -616,14 +616,7 @@ module Compiler :shape => contents["Shape"], :habitat => contents["Habitat"], :generation => contents["Generation"], - :flags => contents["Flags"], - :back_sprite_x => contents["BattlerPlayerX"], - :back_sprite_y => contents["BattlerPlayerY"], - :front_sprite_x => contents["BattlerEnemyX"], - :front_sprite_y => contents["BattlerEnemyY"], - :front_sprite_altitude => contents["BattlerAltitude"], - :shadow_x => contents["BattlerShadowX"], - :shadow_size => contents["BattlerShadowSize"] + :flags => contents["Flags"] } # Add species' data to records GameData::Species.register(species_hash) @@ -631,6 +624,21 @@ module Compiler species_form_names.push(species_hash[:form_name]) species_categories.push(species_hash[:category]) species_pokedex_entries.push(species_hash[:pokedex_entry]) + # Save metrics data if defined (backwards compatibility) + if contents["BattlerPlayerX"] || contents["BattlerPlayerY"] || + contents["BattlerEnemyX"] || contents["BattlerEnemyY"] || + contents["BattlerAltitude"] || contents["BattlerShadowX"] || + contents["BattlerShadowSize"] + metrics_hash = { + :id => contents["InternalName"].to_sym, + :back_sprite => [contents["BattlerPlayerX"] || 0, contents["BattlerPlayerY"] || 0], + :front_sprite => [contents["BattlerEnemyX"] || 0, contents["BattlerEnemyY"] || 0], + :front_sprite_altitude => contents["BattlerAltitude"] || 0, + :shadow_x => contents["BattlerShadowX"] || 0, + :shadow_size => contents["BattlerShadowSize"] || 2 + } + GameData::SpeciesMetrics.register(metrics_hash) + end } } # Enumerate all evolution species and parameters (this couldn't be done earlier) @@ -660,6 +668,7 @@ module Compiler end # Save all data GameData::Species.save + GameData::SpeciesMetrics.save MessageTypes.setMessagesAsHash(MessageTypes::Species, species_names) MessageTypes.setMessagesAsHash(MessageTypes::FormNames, species_form_names) MessageTypes.setMessagesAsHash(MessageTypes::Kinds, species_categories) @@ -688,7 +697,7 @@ module Compiler # Split section_name into a species number and form number split_section_name = section_name.split(/[-,\s]/) if split_section_name.length != 2 - raise _INTL("Section name {1} is invalid ({2}). Expected syntax like [XXX,Y] (XXX=species ID, Y=form number).", sectionName, path) + raise _INTL("Section name {1} is invalid ({2}). Expected syntax like [XXX,Y] (XXX=species ID, Y=form number).", section_name, path) end species_symbol = csvEnumField!(split_section_name[0], :Species, nil, nil) form = csvPosInt!(split_section_name[1]) @@ -797,14 +806,7 @@ module Compiler :mega_stone => contents["MegaStone"], :mega_move => contents["MegaMove"], :unmega_form => contents["UnmegaForm"], - :mega_message => contents["MegaMessage"], - :back_sprite_x => contents["BattlerPlayerX"] || base_data.back_sprite_x, - :back_sprite_y => contents["BattlerPlayerY"] || base_data.back_sprite_y, - :front_sprite_x => contents["BattlerEnemyX"] || base_data.front_sprite_x, - :front_sprite_y => contents["BattlerEnemyY"] || base_data.front_sprite_y, - :front_sprite_altitude => contents["BattlerAltitude"] || base_data.front_sprite_altitude, - :shadow_x => contents["BattlerShadowX"] || base_data.shadow_x, - :shadow_size => contents["BattlerShadowSize"] || base_data.shadow_size + :mega_message => contents["MegaMessage"] } # If form is single-typed, ensure it remains so if base species is dual-typed species_hash[:type2] = contents["Type1"] if contents["Type1"] && !contents["Type2"] @@ -820,6 +822,31 @@ module Compiler species_form_names.push(species_hash[:form_name]) species_categories.push(species_hash[:category]) species_pokedex_entries.push(species_hash[:pokedex_entry]) + # Save metrics data if defined (backwards compatibility) + if contents["BattlerPlayerX"] || contents["BattlerPlayerY"] || + contents["BattlerEnemyX"] || contents["BattlerEnemyY"] || + contents["BattlerAltitude"] || contents["BattlerShadowX"] || + contents["BattlerShadowSize"] + base_metrics = GameData::SpeciesMetrics.get_species_form(species_symbol, 0) + back_x = contents["BattlerPlayerX"] || base_metrics.back_sprite[0] + back_y = contents["BattlerPlayerY"] || base_metrics.back_sprite[1] + front_x = contents["BattlerEnemyX"] || base_metrics.front_sprite[0] + front_y = contents["BattlerEnemyY"] || base_metrics.front_sprite[1] + altitude = contents["BattlerAltitude"] || base_metrics.front_sprite_altitude + shadow_x = contents["BattlerShadowX"] || base_metrics.shadow_x + shadow_size = contents["BattlerShadowSize"] || base_metrics.shadow_size + metrics_hash = { + :id => form_symbol, + :species => species_symbol, + :form => form, + :back_sprite => [back_x, back_y], + :front_sprite => [front_x, front_y], + :front_sprite_altitude => altitude, + :shadow_x => shadow_x, + :shadow_size => shadow_size + } + GameData::SpeciesMetrics.register(metrics_hash) + end } } # Add prevolution "evolution" entry for all evolved forms that define their @@ -837,6 +864,7 @@ module Compiler end # Save all data GameData::Species.save + GameData::SpeciesMetrics.save MessageTypes.addMessagesAsHash(MessageTypes::Species, species_names) MessageTypes.addMessagesAsHash(MessageTypes::FormNames, species_form_names) MessageTypes.addMessagesAsHash(MessageTypes::Kinds, species_categories) @@ -844,6 +872,61 @@ module Compiler Graphics.update end + #============================================================================= + # Compile Pokémon metrics data + #============================================================================= + def compile_pokemon_metrics(path = "PBS/pokemon_metrics.txt") + return if !safeExists?(path) + schema = GameData::SpeciesMetrics::SCHEMA + # Read from PBS file + File.open(path, "rb") { |f| + FileLineData.file = path # For error reporting + # Read a whole section's lines at once, then run through this code. + # contents is a hash containing all the XXX=YYY lines in that section, where + # the keys are the XXX and the values are the YYY (as unprocessed strings). + pbEachFileSection(f) { |contents, section_name| + FileLineData.setSection(section_name, "header", nil) # For error reporting + # Split section_name into a species number and form number + split_section_name = section_name.split(/[-,\s]/) + if split_section_name.length == 0 || split_section_name.length > 2 + raise _INTL("Section name {1} is invalid ({2}). Expected syntax like [XXX] or [XXX,Y] (XXX=species ID, Y=form number).", section_name, path) + end + species_symbol = csvEnumField!(split_section_name[0], :Species, nil, nil) + form = (split_section_name[1]) ? csvPosInt!(split_section_name[1]) : 0 + # Go through schema hash of compilable data and compile this section + for key in schema.keys + # Skip empty properties (none are required) + if nil_or_empty?(contents[key]) + contents[key] = nil + next + end + FileLineData.setSection(section_name, key, contents[key]) # For error reporting + # Compile value for key + value = pbGetCsvRecord(contents[key], key, schema[key]) + value = nil if value.is_a?(Array) && value.length == 0 + contents[key] = value + end + # Construct species hash + form_symbol = (form > 0) ? sprintf("%s_%d", species_symbol.to_s, form).to_sym : species_symbol + species_hash = { + :id => form_symbol, + :species => species_symbol, + :form => form, + :back_sprite => contents["BackSprite"], + :front_sprite => contents["FrontSprite"], + :front_sprite_altitude => contents["FrontSpriteAltitude"], + :shadow_x => contents["ShadowX"], + :shadow_size => contents["ShadowSize"] + } + # Add form's data to records + GameData::SpeciesMetrics.register(species_hash) + } + } + # Save all data + GameData::SpeciesMetrics.save + Graphics.update + end + #============================================================================= # Compile Shadow movesets #============================================================================= diff --git a/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb b/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb index 9081df675..dd88c0197 100644 --- a/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb +++ b/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb @@ -308,13 +308,6 @@ module Compiler 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 - f.write(sprintf("BattlerPlayerX = %d\r\n", species.back_sprite_x)) - f.write(sprintf("BattlerPlayerY = %d\r\n", species.back_sprite_y)) - f.write(sprintf("BattlerEnemyX = %d\r\n", species.front_sprite_x)) - f.write(sprintf("BattlerEnemyY = %d\r\n", species.front_sprite_y)) - f.write(sprintf("BattlerAltitude = %d\r\n", species.front_sprite_altitude)) if species.front_sprite_altitude != 0 - f.write(sprintf("BattlerShadowX = %d\r\n", species.shadow_x)) - f.write(sprintf("BattlerShadowSize = %d\r\n", species.shadow_size)) if species.evolutions.any? { |evo| !evo[3] } f.write("Evolutions = ") need_comma = false @@ -415,13 +408,6 @@ module Compiler 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 end - f.write(sprintf("BattlerPlayerX = %d\r\n", species.back_sprite_x)) if species.back_sprite_x != base_species.back_sprite_x - f.write(sprintf("BattlerPlayerY = %d\r\n", species.back_sprite_y)) if species.back_sprite_y != base_species.back_sprite_y - f.write(sprintf("BattlerEnemyX = %d\r\n", species.front_sprite_x)) if species.front_sprite_x != base_species.front_sprite_x - f.write(sprintf("BattlerEnemyY = %d\r\n", species.front_sprite_y)) if species.front_sprite_y != base_species.front_sprite_y - f.write(sprintf("BattlerAltitude = %d\r\n", species.front_sprite_altitude)) if species.front_sprite_altitude != base_species.front_sprite_altitude - f.write(sprintf("BattlerShadowX = %d\r\n", species.shadow_x)) if species.shadow_x != base_species.shadow_x - f.write(sprintf("BattlerShadowSize = %d\r\n", species.shadow_size)) if species.shadow_size != base_species.shadow_size if species.evolutions != base_species.evolutions && species.evolutions.any? { |evo| !evo[3] } f.write("Evolutions = ") need_comma = false @@ -447,6 +433,59 @@ module Compiler Graphics.update end + #============================================================================= + # Write species metrics + #============================================================================= + def write_pokemon_metrics + echo _INTL("Writing species metrics...") + # Get in species order then in form order + sort_array = [] + dex_numbers = {} + i = 0 + GameData::SpeciesMetrics.each do |metrics| + dex_numbers[metrics.species] = i if !dex_numbers[metrics.species] + sort_array.push([dex_numbers[metrics.species], metrics.id, metrics.species, metrics.form]) + i += 1 + end + sort_array.sort! { |a, b| (a[0] == b[0]) ? a[3] <=> b[3] : a[0] <=> b[0] } + # Write file + File.open("PBS/pokemon_metrics.txt", "wb") { |f| + idx = 0 + add_PBS_header_to_file(f) + sort_array.each do |val| + echo "." if idx % 50 == 0 + idx += 1 + Graphics.update if idx % 100 == 0 + species = GameData::SpeciesMetrics.get(val[1]) + if species.form > 0 + base_species = GameData::SpeciesMetrics.get(val[2]) + next if species.back_sprite == base_species.back_sprite && + species.front_sprite == base_species.front_sprite && + species.front_sprite_altitude == base_species.front_sprite_altitude && + species.shadow_x == base_species.shadow_x && + species.shadow_size == base_species.shadow_size + else + next if species.back_sprite == [0, 0] && species.front_sprite == [0, 0] && + species.front_sprite_altitude == 0 && + species.shadow_x == 0 && species.shadow_size == 2 + end + f.write("\#-------------------------------\r\n") + if species.form > 0 + f.write(sprintf("[%s,%d]\r\n", species.species, species.form)) + else + f.write(sprintf("[%s]\r\n", species.species)) + end + f.write(sprintf("BackSprite = %s\r\n", species.back_sprite.join(","))) + f.write(sprintf("FrontSprite = %s\r\n", species.front_sprite.join(","))) + f.write(sprintf("FrontSpriteAltitude = %d\r\n", species.front_sprite_altitude)) if species.front_sprite_altitude != 0 + f.write(sprintf("ShadowX = %d\r\n", species.shadow_x)) + f.write(sprintf("ShadowSize = %d\r\n", species.shadow_size)) + end + } + echoln _INTL("done") + Graphics.update + end + #============================================================================= # Save Shadow movesets to PBS file #============================================================================= @@ -812,6 +851,7 @@ module Compiler write_berry_plants write_pokemon write_pokemon_forms + write_pokemon_metrics write_shadow_movesets write_regional_dexes write_ribbons diff --git a/Data/Scripts/021_Compiler/004_Compiler_MapsAndEvents.rb b/Data/Scripts/021_Compiler/004_Compiler_MapsAndEvents.rb index 788b115c1..3e1a6d3b1 100644 --- a/Data/Scripts/021_Compiler/004_Compiler_MapsAndEvents.rb +++ b/Data/Scripts/021_Compiler/004_Compiler_MapsAndEvents.rb @@ -1435,7 +1435,8 @@ module Compiler t = Time.now.to_i Graphics.update trainerChecker = TrainerChecker.new - echo _INTL("Processing {1} maps...", mapData.mapinfos.keys.length) + any_changed = false + echoln _INTL("Processing {1} maps...", mapData.mapinfos.keys.length) for id in mapData.mapinfos.keys.sort changed = false map = mapData.getMap(id) @@ -1469,10 +1470,10 @@ module Compiler end changed = true if check_counters(map,id,mapData) if changed + any_changed = true mapData.saveMap(id) mapData.saveTilesets - echoln "" - echo _INTL("Map {1}: '{2}' modified and saved.", id, mapData.mapinfos[id].name) + echoln _INTL("Map {1}: '{2}' modified and saved.", id, mapData.mapinfos[id].name) end end echoln "" @@ -1485,8 +1486,14 @@ module Compiler if newevent commonEvents[key] = newevent changed = true + any_changed = true end end save_data(commonEvents,"Data/CommonEvents.rxdata") if changed + echoln "" + if any_changed + echoln _INTL("!!! RMXP data was altered. Close RMXP now to ensure changes are applied. !!!") + echoln "" + end end end diff --git a/PBS/Gen 5/berry_plants.txt b/PBS/Gen 5/berry_plants.txt new file mode 100644 index 000000000..d7eaedec1 --- /dev/null +++ b/PBS/Gen 5/berry_plants.txt @@ -0,0 +1,66 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +CHERIBERRY = 3,15,2,5 +CHESTOBERRY = 3,15,2,5 +PECHABERRY = 3,15,2,5 +RAWSTBERRY = 3,15,2,5 +ASPEARBERRY = 3,15,2,5 +LEPPABERRY = 4,15,2,5 +ORANBERRY = 4,15,2,5 +PERSIMBERRY = 4,15,2,5 +LUMBERRY = 12,8,2,5 +SITRUSBERRY = 8,7,2,5 +FIGYBERRY = 5,10,1,5 +WIKIBERRY = 5,10,1,5 +MAGOBERRY = 5,10,1,5 +AGUAVBERRY = 5,10,1,5 +IAPAPABERRY = 5,10,1,5 +RAZZBERRY = 2,35,2,10 +BLUKBERRY = 2,35,2,10 +NANABBERRY = 2,35,2,10 +WEPEARBERRY = 2,35,2,10 +PINAPBERRY = 2,35,2,10 +POMEGBERRY = 8,8,1,5 +KELPSYBERRY = 8,8,1,5 +QUALOTBERRY = 8,8,1,5 +HONDEWBERRY = 8,8,1,5 +GREPABERRY = 8,8,1,5 +TAMATOBERRY = 8,8,1,5 +CORNNBERRY = 6,10,2,10 +MAGOSTBERRY = 6,10,2,10 +RABUTABERRY = 6,10,2,10 +NOMELBERRY = 6,10,2,10 +SPELONBERRY = 15,8,2,15 +PAMTREBERRY = 15,8,3,15 +WATMELBERRY = 15,8,2,15 +DURINBERRY = 15,8,3,15 +BELUEBERRY = 15,8,2,15 +OCCABERRY = 18,6,1,5 +PASSHOBERRY = 18,6,1,5 +WACANBERRY = 18,6,1,5 +RINDOBERRY = 18,6,1,5 +YACHEBERRY = 18,6,1,5 +CHOPLEBERRY = 18,6,1,5 +KEBIABERRY = 18,6,1,5 +SHUCABERRY = 18,6,1,5 +COBABERRY = 18,6,1,5 +PAYAPABERRY = 18,6,1,5 +TANGABERRY = 18,6,1,5 +CHARTIBERRY = 18,6,1,5 +KASIBBERRY = 18,6,1,5 +HABANBERRY = 18,6,1,5 +COLBURBERRY = 18,6,1,5 +BABIRIBERRY = 18,6,1,5 +CHILANBERRY = 18,6,1,5 +LIECHIBERRY = 24,4,1,5 +GANLONBERRY = 24,4,1,5 +SALACBERRY = 24,4,1,5 +PETAYABERRY = 24,4,1,5 +APICOTBERRY = 24,4,1,5 +LANSATBERRY = 24,4,1,5 +STARFBERRY = 24,4,1,5 +ENIGMABERRY = 24,7,1,5 +MICLEBERRY = 24,7,1,5 +CUSTAPBERRY = 24,7,1,5 +JABOCABERRY = 24,7,1,5 +ROWAPBERRY = 24,7,1,5 diff --git a/PBS/Gen 5/pokemon.txt b/PBS/Gen 5/pokemon.txt index 9908a1843..6a696d1d3 100644 --- a/PBS/Gen 5/pokemon.txt +++ b/PBS/Gen 5/pokemon.txt @@ -26,12 +26,6 @@ Habitat = Grassland Category = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = IVYSAUR,Level,16 #------------------------------- [IVYSAUR] @@ -59,12 +53,6 @@ Habitat = Grassland Category = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENUSAUR,Level,32 #------------------------------- [VENUSAUR] @@ -92,12 +80,6 @@ Habitat = Grassland Category = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHARMANDER] Name = Charmander @@ -124,12 +106,6 @@ Habitat = Mountain Category = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. Generation = 1 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHARMELEON,Level,16 #------------------------------- [CHARMELEON] @@ -156,12 +132,6 @@ Habitat = Mountain Category = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARIZARD,Level,36 #------------------------------- [CHARIZARD] @@ -189,12 +159,6 @@ Habitat = Mountain Category = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SQUIRTLE] Name = Squirtle @@ -221,12 +185,6 @@ Habitat = WatersEdge Category = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WARTORTLE,Level,16 #------------------------------- [WARTORTLE] @@ -253,12 +211,6 @@ Habitat = WatersEdge Category = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLASTOISE,Level,36 #------------------------------- [BLASTOISE] @@ -285,12 +237,6 @@ Habitat = WatersEdge Category = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CATERPIE] Name = Caterpie @@ -316,12 +262,6 @@ Habitat = Forest Category = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = METAPOD,Level,7 #------------------------------- [METAPOD] @@ -347,12 +287,6 @@ Habitat = Forest Category = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BUTTERFREE,Level,10 #------------------------------- [BUTTERFREE] @@ -381,12 +315,6 @@ Category = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. Generation = 1 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WEEDLE] Name = Weedle @@ -413,12 +341,6 @@ Habitat = Forest Category = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KAKUNA,Level,7 #------------------------------- [KAKUNA] @@ -445,12 +367,6 @@ Habitat = Forest Category = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEEDRILL,Level,10 #------------------------------- [BEEDRILL] @@ -479,12 +395,6 @@ Category = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDGEY] Name = Pidgey @@ -512,12 +422,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIDGEOTTO,Level,18 #------------------------------- [PIDGEOTTO] @@ -545,12 +449,6 @@ Habitat = Forest Category = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PIDGEOT,Level,36 #------------------------------- [PIDGEOT] @@ -578,12 +476,6 @@ Habitat = Forest Category = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RATTATA] Name = Rattata @@ -611,12 +503,6 @@ Category = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RATICATE,Level,20 #------------------------------- [RATICATE] @@ -644,12 +530,6 @@ Category = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPEAROW] Name = Spearow @@ -677,12 +557,6 @@ Habitat = RoughTerrain Category = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FEAROW,Level,20 #------------------------------- [FEAROW] @@ -711,12 +585,6 @@ Category = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EKANS] Name = Ekans @@ -743,12 +611,6 @@ Habitat = Grassland Category = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARBOK,Level,22 #------------------------------- [ARBOK] @@ -775,12 +637,6 @@ Habitat = Grassland Category = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIKACHU] Name = Pikachu @@ -807,12 +663,6 @@ Category = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. Generation = 1 WildItemUncommon = LIGHTBALL -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RAICHU,Item,THUNDERSTONE #------------------------------- [RAICHU] @@ -840,12 +690,6 @@ Category = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. Generation = 1 WildItemCommon = ORANBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SANDSHREW] Name = Sandshrew @@ -873,12 +717,6 @@ Category = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SANDSLASH,Level,22 #------------------------------- [SANDSLASH] @@ -906,12 +744,6 @@ Category = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANfE] Name = Nidoran @@ -938,12 +770,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINA,Level,16 #------------------------------- [NIDORINA] @@ -970,12 +796,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NIDOQUEEN,Item,MOONSTONE #------------------------------- [NIDOQUEEN] @@ -1003,12 +823,6 @@ Habitat = Grassland Category = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANmA] Name = Nidoran @@ -1035,12 +849,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINO,Level,16 #------------------------------- [NIDORINO] @@ -1067,12 +875,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = NIDOKING,Item,MOONSTONE #------------------------------- [NIDOKING] @@ -1100,12 +902,6 @@ Habitat = Grassland Category = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLEFAIRY] Name = Clefairy @@ -1134,12 +930,6 @@ Generation = 1 WildItemCommon = LEPPABERRY WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLEFABLE,Item,MOONSTONE #------------------------------- [CLEFABLE] @@ -1169,12 +959,6 @@ Generation = 1 WildItemCommon = LEPPABERRY WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VULPIX] Name = Vulpix @@ -1204,12 +988,6 @@ Generation = 1 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINETALES,Item,FIRESTONE #------------------------------- [NINETALES] @@ -1239,12 +1017,6 @@ Generation = 1 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JIGGLYPUFF] Name = Jigglypuff @@ -1270,12 +1042,6 @@ Habitat = Grassland Category = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WIGGLYTUFF,Item,MOONSTONE #------------------------------- [WIGGLYTUFF] @@ -1302,12 +1068,6 @@ Habitat = Grassland Category = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZUBAT] Name = Zubat @@ -1335,12 +1095,6 @@ Habitat = Cave Category = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLBAT,Level,22 #------------------------------- [GOLBAT] @@ -1368,12 +1122,6 @@ Habitat = Cave Category = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROBAT,Happiness, #------------------------------- [ODDISH] @@ -1402,12 +1150,6 @@ Habitat = Grassland Category = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GLOOM,Level,21 #------------------------------- [GLOOM] @@ -1435,12 +1177,6 @@ Habitat = Grassland Category = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VILEPLUME,Item,LEAFSTONE,BELLOSSOM,Item,SUNSTONE #------------------------------- [VILEPLUME] @@ -1468,12 +1204,6 @@ Habitat = Grassland Category = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PARAS] Name = Paras @@ -1504,12 +1234,6 @@ Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PARASECT,Level,24 #------------------------------- [PARASECT] @@ -1540,12 +1264,6 @@ Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VENONAT] Name = Venonat @@ -1573,12 +1291,6 @@ Habitat = Forest Category = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENOMOTH,Level,31 #------------------------------- [VENOMOTH] @@ -1607,12 +1319,6 @@ Category = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. Generation = 1 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIGLETT] Name = Diglett @@ -1640,12 +1346,6 @@ Category = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUGTRIO,Level,26 #------------------------------- [DUGTRIO] @@ -1673,12 +1373,6 @@ Category = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEOWTH] Name = Meowth @@ -1706,12 +1400,6 @@ Category = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PERSIAN,Level,28 #------------------------------- [PERSIAN] @@ -1739,12 +1427,6 @@ Category = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PSYDUCK] Name = Psyduck @@ -1771,12 +1453,6 @@ Habitat = WatersEdge Category = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLDUCK,Level,33 #------------------------------- [GOLDUCK] @@ -1803,12 +1479,6 @@ Habitat = WatersEdge Category = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MANKEY] Name = Mankey @@ -1836,12 +1506,6 @@ Category = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. Generation = 1 WildItemUncommon = PAYAPABERRY -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMEAPE,Level,28 #------------------------------- [PRIMEAPE] @@ -1869,12 +1533,6 @@ Category = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. Generation = 1 WildItemUncommon = PAYAPABERRY -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROWLITHE] Name = Growlithe @@ -1902,12 +1560,6 @@ Category = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. Generation = 1 WildItemCommon = RAWSTBERRY -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARCANINE,Item,FIRESTONE #------------------------------- [ARCANINE] @@ -1935,12 +1587,6 @@ Category = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. Generation = 1 WildItemCommon = RAWSTBERRY -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POLIWAG] Name = Poliwag @@ -1967,12 +1613,6 @@ Habitat = WatersEdge Category = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = POLIWHIRL,Level,25 #------------------------------- [POLIWHIRL] @@ -2000,12 +1640,6 @@ Category = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = POLIWRATH,Item,WATERSTONE,POLITOED,TradeItem,KINGSROCK #------------------------------- [POLIWRATH] @@ -2034,12 +1668,6 @@ Category = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ABRA] Name = Abra @@ -2067,12 +1695,6 @@ Category = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KADABRA,Level,16 #------------------------------- [KADABRA] @@ -2100,12 +1722,6 @@ Category = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ALAKAZAM,Trade, #------------------------------- [ALAKAZAM] @@ -2133,12 +1749,6 @@ Category = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MACHOP] Name = Machop @@ -2165,12 +1775,6 @@ Habitat = Mountain Category = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHOKE,Level,28 #------------------------------- [MACHOKE] @@ -2197,12 +1801,6 @@ Habitat = Mountain Category = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. Generation = 1 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHAMP,Trade, #------------------------------- [MACHAMP] @@ -2229,12 +1827,6 @@ Habitat = Mountain Category = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. Generation = 1 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELLSPROUT] Name = Bellsprout @@ -2262,12 +1854,6 @@ Habitat = Forest Category = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WEEPINBELL,Level,21 #------------------------------- [WEEPINBELL] @@ -2295,12 +1881,6 @@ Habitat = Forest Category = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VICTREEBEL,Item,LEAFSTONE #------------------------------- [VICTREEBEL] @@ -2328,12 +1908,6 @@ Habitat = Forest Category = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TENTACOOL] Name = Tentacool @@ -2362,12 +1936,6 @@ Category = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TENTACRUEL,Level,30 #------------------------------- [TENTACRUEL] @@ -2396,12 +1964,6 @@ Category = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GEODUDE] Name = Geodude @@ -2430,12 +1992,6 @@ Category = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRAVELER,Level,25 #------------------------------- [GRAVELER] @@ -2464,12 +2020,6 @@ Category = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GOLEM,Trade, #------------------------------- [GOLEM] @@ -2498,12 +2048,6 @@ Category = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PONYTA] Name = Ponyta @@ -2531,12 +2075,6 @@ Category = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. Generation = 1 WildItemUncommon = SHUCABERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAPIDASH,Level,40 #------------------------------- [RAPIDASH] @@ -2564,12 +2102,6 @@ Category = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. Generation = 1 WildItemUncommon = SHUCABERRY -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLOWPOKE] Name = Slowpoke @@ -2598,12 +2130,6 @@ Category = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SLOWBRO,Level,37,SLOWKING,TradeItem,KINGSROCK #------------------------------- [SLOWBRO] @@ -2632,12 +2158,6 @@ Category = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGNEMITE] Name = Magnemite @@ -2665,12 +2185,6 @@ Category = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGNETON,Level,30 #------------------------------- [MAGNETON] @@ -2699,12 +2213,6 @@ Category = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGNEZONE,LocationFlag,Magnetic #------------------------------- [FARFETCHD] @@ -2734,12 +2242,6 @@ Category = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. Generation = 1 WildItemUncommon = STICK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DODUO] Name = Doduo @@ -2768,12 +2270,6 @@ Category = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DODRIO,Level,31 #------------------------------- [DODRIO] @@ -2802,12 +2298,6 @@ Category = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEL] Name = Seel @@ -2834,12 +2324,6 @@ Habitat = Sea Category = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. Generation = 1 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DEWGONG,Level,34 #------------------------------- [DEWGONG] @@ -2867,12 +2351,6 @@ Habitat = Sea Category = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GRIMER] Name = Grimer @@ -2900,12 +2378,6 @@ Category = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. Generation = 1 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MUK,Level,38 #------------------------------- [MUK] @@ -2934,12 +2406,6 @@ Pokedex = It prefers warm and humid habitats. In the summertime, the toxic subst Generation = 1 WildItemCommon = BLACKSLUDGE WildItemRare = TOXICORB -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELLDER] Name = Shellder @@ -2968,12 +2434,6 @@ Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to m Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLOYSTER,Item,WATERSTONE #------------------------------- [CLOYSTER] @@ -3003,12 +2463,6 @@ Pokedex = It swims in the sea by swallowing water, then jetting it out toward th Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GASTLY] Name = Gastly @@ -3035,12 +2489,6 @@ Habitat = Cave Category = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAUNTER,Level,25 #------------------------------- [HAUNTER] @@ -3067,12 +2515,6 @@ Habitat = Cave Category = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GENGAR,Trade, #------------------------------- [GENGAR] @@ -3099,12 +2541,6 @@ Habitat = Cave Category = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ONIX] Name = Onix @@ -3132,12 +2568,6 @@ Habitat = Cave Category = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = STEELIX,TradeItem,METALCOAT #------------------------------- [DROWZEE] @@ -3165,12 +2595,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HYPNO,Level,26 #------------------------------- [HYPNO] @@ -3197,12 +2621,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KRABBY] Name = Krabby @@ -3229,12 +2647,6 @@ Habitat = WatersEdge Category = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KINGLER,Level,28 #------------------------------- [KINGLER] @@ -3261,12 +2673,6 @@ Habitat = WatersEdge Category = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VOLTORB] Name = Voltorb @@ -3292,12 +2698,6 @@ Habitat = Urban Category = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ELECTRODE,Level,30 #------------------------------- [ELECTRODE] @@ -3324,12 +2724,6 @@ Habitat = Urban Category = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EXEGGCUTE] Name = Exeggcute @@ -3357,12 +2751,6 @@ Habitat = Forest Category = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXEGGUTOR,Item,LEAFSTONE #------------------------------- [EXEGGUTOR] @@ -3390,12 +2778,6 @@ Habitat = Forest Category = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUBONE] Name = Cubone @@ -3423,12 +2805,6 @@ Category = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAROWAK,Level,28 #------------------------------- [MAROWAK] @@ -3456,12 +2832,6 @@ Category = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONLEE] Name = Hitmonlee @@ -3487,12 +2857,6 @@ Habitat = Urban Category = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONCHAN] Name = Hitmonchan @@ -3518,12 +2882,6 @@ Habitat = Urban Category = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LICKITUNG] Name = Lickitung @@ -3551,12 +2909,6 @@ Category = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = LICKILICKY,HasMove,ROLLOUT #------------------------------- [KOFFING] @@ -3584,12 +2936,6 @@ Category = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEEZING,Level,35 #------------------------------- [WEEZING] @@ -3616,12 +2962,6 @@ Category = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYHORN] Name = Rhyhorn @@ -3649,12 +2989,6 @@ Habitat = RoughTerrain Category = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYDON,Level,42 #------------------------------- [RHYDON] @@ -3682,12 +3016,6 @@ Habitat = RoughTerrain Category = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYPERIOR,TradeItem,PROTECTOR #------------------------------- [CHANSEY] @@ -3717,12 +3045,6 @@ Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so de Generation = 1 WildItemCommon = LUCKYPUNCH WildItemUncommon = LUCKYEGG -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLISSEY,Happiness, #------------------------------- [TANGELA] @@ -3750,12 +3072,6 @@ Habitat = Grassland Category = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TANGROWTH,HasMove,ANCIENTPOWER #------------------------------- [KANGASKHAN] @@ -3783,12 +3099,6 @@ Habitat = Grassland Category = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HORSEA] Name = Horsea @@ -3816,12 +3126,6 @@ Category = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SEADRA,Level,32 #------------------------------- [SEADRA] @@ -3849,12 +3153,6 @@ Category = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KINGDRA,TradeItem,DRAGONSCALE #------------------------------- [GOLDEEN] @@ -3882,12 +3180,6 @@ Habitat = WatersEdge Category = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEAKING,Level,33 #------------------------------- [SEAKING] @@ -3914,12 +3206,6 @@ Habitat = WatersEdge Category = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. Generation = 1 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STARYU] Name = Staryu @@ -3947,12 +3233,6 @@ Pokedex = It gathers with others in the night and makes its red core glow on and Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARMIE,Item,WATERSTONE #------------------------------- [STARMIE] @@ -3982,12 +3262,6 @@ Pokedex = People in ancient times imagined that Starmie were transformed from th Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MRMIME] Name = Mr. Mime @@ -4015,12 +3289,6 @@ Category = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. Generation = 1 WildItemUncommon = LEPPABERRY -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCYTHER] Name = Scyther @@ -4048,12 +3316,6 @@ Habitat = Grassland Category = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SCIZOR,TradeItem,METALCOAT #------------------------------- [JYNX] @@ -4084,12 +3346,6 @@ Generation = 1 WildItemCommon = ASPEARBERRY WildItemUncommon = ASPEARBERRY WildItemRare = ASPEARBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTABUZZ] Name = Electabuzz @@ -4116,12 +3372,6 @@ Category = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. Generation = 1 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ELECTIVIRE,TradeItem,ELECTIRIZER #------------------------------- [MAGMAR] @@ -4149,12 +3399,6 @@ Category = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. Generation = 1 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAGMORTAR,TradeItem,MAGMARIZER #------------------------------- [PINSIR] @@ -4182,12 +3426,6 @@ Habitat = Forest Category = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAUROS] Name = Tauros @@ -4213,12 +3451,6 @@ Habitat = Grassland Category = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGIKARP] Name = Magikarp @@ -4244,12 +3476,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GYARADOS,Level,20 #------------------------------- [GYARADOS] @@ -4277,12 +3503,6 @@ Habitat = WatersEdge Category = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LAPRAS] Name = Lapras @@ -4310,12 +3530,6 @@ Habitat = Sea Category = Transport Pokedex = People have driven Lapras almost to the point of extinction. In the evenings, it is said to sing plaintively as it seeks what few others of its kind still remain. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DITTO] Name = Ditto @@ -4342,12 +3556,6 @@ Pokedex = A Ditto rearranges its cell structure to transform itself. However, if Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EEVEE] Name = Eevee @@ -4374,12 +3582,6 @@ Habitat = Urban Category = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VAPOREON,Item,WATERSTONE,JOLTEON,Item,THUNDERSTONE,FLAREON,Item,FIRESTONE,LEAFEON,LocationFlag,MossRock,GLACEON,LocationFlag,IceRock,ESPEON,HappinessDay,,UMBREON,HappinessNight, #------------------------------- [VAPOREON] @@ -4406,12 +3608,6 @@ Habitat = Urban Category = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JOLTEON] Name = Jolteon @@ -4437,12 +3633,6 @@ Habitat = Urban Category = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLAREON] Name = Flareon @@ -4468,12 +3658,6 @@ Habitat = Urban Category = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PORYGON] Name = Porygon @@ -4499,12 +3683,6 @@ Habitat = Urban Category = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy- protected so it cannot be duplicated. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PORYGON2,TradeItem,UPGRADE #------------------------------- [OMANYTE] @@ -4533,12 +3711,6 @@ Habitat = Sea Category = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OMASTAR,Level,40 #------------------------------- [OMASTAR] @@ -4566,12 +3738,6 @@ Habitat = Sea Category = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KABUTO] Name = Kabuto @@ -4599,12 +3765,6 @@ Habitat = Sea Category = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KABUTOPS,Level,40 #------------------------------- [KABUTOPS] @@ -4632,12 +3792,6 @@ Habitat = Sea Category = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. Generation = 1 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AERODACTYL] Name = Aerodactyl @@ -4665,12 +3819,6 @@ Habitat = Mountain Category = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNORLAX] Name = Snorlax @@ -4700,12 +3848,6 @@ Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARTICUNO] Name = Articuno @@ -4732,12 +3874,6 @@ Habitat = Rare Category = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZAPDOS] Name = Zapdos @@ -4764,12 +3900,6 @@ Habitat = Rare Category = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MOLTRES] Name = Moltres @@ -4796,12 +3926,6 @@ Habitat = Rare Category = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRATINI] Name = Dratini @@ -4829,12 +3953,6 @@ Category = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGONAIR,Level,30 #------------------------------- [DRAGONAIR] @@ -4862,12 +3980,6 @@ Category = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DRAGONITE,Level,55 #------------------------------- [DRAGONITE] @@ -4896,12 +4008,6 @@ Category = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEWTWO] Name = Mewtwo @@ -4927,12 +4033,6 @@ Habitat = Rare Category = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. Generation = 1 -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MEW] Name = Mew @@ -4960,12 +4060,6 @@ Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CHIKORITA] Name = Chikorita @@ -4992,12 +4086,6 @@ Habitat = Grassland Category = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BAYLEEF,Level,16 #------------------------------- [BAYLEEF] @@ -5024,12 +4112,6 @@ Habitat = Grassland Category = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEGANIUM,Level,32 #------------------------------- [MEGANIUM] @@ -5056,12 +4138,6 @@ Habitat = Grassland Category = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CYNDAQUIL] Name = Cyndaquil @@ -5088,12 +4164,6 @@ Habitat = Grassland Category = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUILAVA,Level,14 #------------------------------- [QUILAVA] @@ -5120,12 +4190,6 @@ Habitat = Grassland Category = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TYPHLOSION,Level,36 #------------------------------- [TYPHLOSION] @@ -5152,12 +4216,6 @@ Habitat = Grassland Category = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOTODILE] Name = Totodile @@ -5184,12 +4242,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROCONAW,Level,18 #------------------------------- [CROCONAW] @@ -5216,12 +4268,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FERALIGATR,Level,30 #------------------------------- [FERALIGATR] @@ -5248,12 +4294,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SENTRET] Name = Sentret @@ -5281,12 +4321,6 @@ Category = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. Generation = 2 WildItemUncommon = ORANBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FURRET,Level,15 #------------------------------- [FURRET] @@ -5315,12 +4349,6 @@ Pokedex = A Furret has a very slim build. When under attack, it can squirm throu Generation = 2 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOTHOOT] Name = Hoothoot @@ -5348,12 +4376,6 @@ Habitat = Forest Category = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOCTOWL,Level,20 #------------------------------- [NOCTOWL] @@ -5381,12 +4403,6 @@ Habitat = Forest Category = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LEDYBA] Name = Ledyba @@ -5414,12 +4430,6 @@ Habitat = Forest Category = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEDIAN,Level,18 #------------------------------- [LEDIAN] @@ -5447,12 +4457,6 @@ Habitat = Forest Category = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPINARAK] Name = Spinarak @@ -5480,12 +4484,6 @@ Habitat = Forest Category = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARIADOS,Level,22 #------------------------------- [ARIADOS] @@ -5513,12 +4511,6 @@ Habitat = Forest Category = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROBAT] Name = Crobat @@ -5545,12 +4537,6 @@ Habitat = Cave Category = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHINCHOU] Name = Chinchou @@ -5579,12 +4565,6 @@ Category = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LANTURN,Level,27 #------------------------------- [LANTURN] @@ -5613,12 +4593,6 @@ Category = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PICHU] Name = Pichu @@ -5646,12 +4620,6 @@ Category = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. Generation = 2 WildItemCommon = ORANBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIKACHU,Happiness, #------------------------------- [CLEFFA] @@ -5682,12 +4650,6 @@ Generation = 2 WildItemCommon = LEPPABERRY WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLEFAIRY,Happiness, #------------------------------- [IGGLYBUFF] @@ -5715,12 +4677,6 @@ Habitat = Grassland Category = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JIGGLYPUFF,Happiness, #------------------------------- [TOGEPI] @@ -5748,12 +4704,6 @@ Habitat = Forest Category = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGETIC,Happiness, #------------------------------- [TOGETIC] @@ -5781,12 +4731,6 @@ Habitat = Forest Category = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGEKISS,Item,SHINYSTONE #------------------------------- [NATU] @@ -5815,12 +4759,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = XATU,Level,25 #------------------------------- [XATU] @@ -5848,12 +4786,6 @@ Habitat = Forest Category = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREEP] Name = Mareep @@ -5880,12 +4812,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLAAFFY,Level,15 #------------------------------- [FLAAFFY] @@ -5912,12 +4838,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AMPHAROS,Level,30 #------------------------------- [AMPHAROS] @@ -5944,12 +4864,6 @@ Habitat = Grassland Category = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BELLOSSOM] Name = Bellossom @@ -5975,12 +4889,6 @@ Habitat = Grassland Category = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARILL] Name = Marill @@ -6007,12 +4915,6 @@ Habitat = WatersEdge Category = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AZUMARILL,Level,18 #------------------------------- [AZUMARILL] @@ -6039,12 +4941,6 @@ Habitat = WatersEdge Category = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SUDOWOODO] Name = Sudowoodo @@ -6071,12 +4967,6 @@ Habitat = Forest Category = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [POLITOED] Name = Politoed @@ -6103,12 +4993,6 @@ Category = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOPPIP] Name = Hoppip @@ -6136,12 +5020,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. Generation = 2 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SKIPLOOM,Level,18 #------------------------------- [SKIPLOOM] @@ -6169,12 +5047,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = JUMPLUFF,Level,27 #------------------------------- [JUMPLUFF] @@ -6202,12 +5074,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AIPOM] Name = Aipom @@ -6234,12 +5100,6 @@ Habitat = Forest Category = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. Generation = 2 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMBIPOM,HasMove,DOUBLEHIT #------------------------------- [SUNKERN] @@ -6268,12 +5128,6 @@ Category = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. Generation = 2 WildItemUncommon = COBABERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUNFLORA,Item,SUNSTONE #------------------------------- [SUNFLORA] @@ -6300,12 +5154,6 @@ Habitat = Grassland Category = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [YANMA] Name = Yanma @@ -6334,12 +5182,6 @@ Category = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. Generation = 2 WildItemUncommon = WIDELENS -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = YANMEGA,HasMove,ANCIENTPOWER #------------------------------- [WOOPER] @@ -6368,12 +5210,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUAGSIRE,Level,20 #------------------------------- [QUAGSIRE] @@ -6401,12 +5237,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPEON] Name = Espeon @@ -6432,12 +5262,6 @@ Habitat = Urban Category = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [UMBREON] Name = Umbreon @@ -6463,12 +5287,6 @@ Habitat = Urban Category = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MURKROW] Name = Murkrow @@ -6496,12 +5314,6 @@ Habitat = Forest Category = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HONCHKROW,Item,DUSKSTONE #------------------------------- [SLOWKING] @@ -6530,12 +5342,6 @@ Category = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISDREAVUS] Name = Misdreavus @@ -6561,12 +5367,6 @@ Habitat = Cave Category = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MISMAGIUS,Item,DUSKSTONE #------------------------------- [UNOWN] @@ -6592,12 +5392,6 @@ Category = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = Anger Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [WOBBUFFET] Name = Wobbuffet @@ -6622,12 +5416,6 @@ Habitat = Cave Category = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIRAFARIG] Name = Girafarig @@ -6656,12 +5444,6 @@ Category = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. Generation = 2 WildItemUncommon = PERSIMBERRY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PINECO] Name = Pineco @@ -6688,12 +5470,6 @@ Habitat = Forest Category = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FORRETRESS,Level,31 #------------------------------- [FORRETRESS] @@ -6721,12 +5497,6 @@ Habitat = Forest Category = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUNSPARCE] Name = Dunsparce @@ -6753,12 +5523,6 @@ Habitat = Cave Category = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GLIGAR] Name = Gligar @@ -6786,12 +5550,6 @@ Habitat = Mountain Category = FlyScorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLISCOR,NightHoldItem,RAZORFANG #------------------------------- [STEELIX] @@ -6820,12 +5578,6 @@ Category = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SNUBBULL] Name = Snubbull @@ -6852,12 +5604,6 @@ Habitat = Urban Category = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRANBULL,Level,23 #------------------------------- [GRANBULL] @@ -6884,12 +5630,6 @@ Habitat = Urban Category = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [QWILFISH] Name = Qwilfish @@ -6918,12 +5658,6 @@ Category = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. Generation = 2 WildItemUncommon = POISONBARB -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCIZOR] Name = Scizor @@ -6950,12 +5684,6 @@ Habitat = Grassland Category = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHUCKLE] Name = Shuckle @@ -6986,12 +5714,6 @@ Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HERACROSS] Name = Heracross @@ -7019,12 +5741,6 @@ Habitat = Forest Category = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNEASEL] Name = Sneasel @@ -7054,12 +5770,6 @@ Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It Generation = 2 WildItemCommon = GRIPCLAW WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEAVILE,NightHoldItem,RAZORCLAW #------------------------------- [TEDDIURSA] @@ -7087,12 +5797,6 @@ Habitat = Mountain Category = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = URSARING,Level,30 #------------------------------- [URSARING] @@ -7119,12 +5823,6 @@ Habitat = Mountain Category = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLUGMA] Name = Slugma @@ -7151,12 +5849,6 @@ Habitat = Mountain Category = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGCARGO,Level,38 #------------------------------- [MAGCARGO] @@ -7184,12 +5876,6 @@ Habitat = Mountain Category = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWINUB] Name = Swinub @@ -7217,12 +5903,6 @@ Habitat = Cave Category = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PILOSWINE,Level,33 #------------------------------- [PILOSWINE] @@ -7250,12 +5930,6 @@ Habitat = Cave Category = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAMOSWINE,HasMove,ANCIENTPOWER #------------------------------- [CORSOLA] @@ -7285,12 +5959,6 @@ Category = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. Generation = 2 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [REMORAID] Name = Remoraid @@ -7317,12 +5985,6 @@ Habitat = Sea Category = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. Generation = 2 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OCTILLERY,Level,25 #------------------------------- [OCTILLERY] @@ -7349,12 +6011,6 @@ Habitat = Sea Category = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DELIBIRD] Name = Delibird @@ -7382,12 +6038,6 @@ Habitat = Mountain Category = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTINE] Name = Mantine @@ -7415,12 +6065,6 @@ Habitat = Sea Category = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKARMORY] Name = Skarmory @@ -7448,12 +6092,6 @@ Habitat = RoughTerrain Category = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOUNDOUR] Name = Houndour @@ -7481,12 +6119,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HOUNDOOM,Level,24 #------------------------------- [HOUNDOOM] @@ -7514,12 +6146,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KINGDRA] Name = Kingdra @@ -7547,12 +6173,6 @@ Category = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. Generation = 2 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANPY] Name = Phanpy @@ -7580,12 +6200,6 @@ Category = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. Generation = 2 WildItemUncommon = PASSHOBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DONPHAN,Level,25 #------------------------------- [DONPHAN] @@ -7613,12 +6227,6 @@ Category = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. Generation = 2 WildItemUncommon = PASSHOBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGON2] Name = Porygon2 @@ -7644,12 +6252,6 @@ Habitat = Urban Category = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PORYGONZ,TradeItem,DUBIOUSDISC #------------------------------- [STANTLER] @@ -7677,12 +6279,6 @@ Habitat = Forest Category = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMEARGLE] Name = Smeargle @@ -7707,12 +6303,6 @@ Habitat = Urban Category = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYROGUE] Name = Tyrogue @@ -7739,12 +6329,6 @@ Habitat = Urban Category = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HITMONLEE,AttackGreater,20,HITMONCHAN,DefenseGreater,20,HITMONTOP,AtkDefEqual,20 #------------------------------- [HITMONTOP] @@ -7771,12 +6355,6 @@ Habitat = Urban Category = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMOOCHUM] Name = Smoochum @@ -7807,12 +6385,6 @@ Generation = 2 WildItemCommon = ASPEARBERRY WildItemUncommon = ASPEARBERRY WildItemRare = ASPEARBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JYNX,Level,30 #------------------------------- [ELEKID] @@ -7841,12 +6413,6 @@ Category = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. Generation = 2 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ELECTABUZZ,Level,30 #------------------------------- [MAGBY] @@ -7875,12 +6441,6 @@ Category = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. Generation = 2 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGMAR,Level,30 #------------------------------- [MILTANK] @@ -7911,12 +6471,6 @@ Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLISSEY] Name = Blissey @@ -7945,12 +6499,6 @@ Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [RAIKOU] Name = Raikou @@ -7976,12 +6524,6 @@ Habitat = Grassland Category = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ENTEI] Name = Entei @@ -8007,12 +6549,6 @@ Habitat = Grassland Category = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SUICUNE] Name = Suicune @@ -8038,12 +6574,6 @@ Habitat = Grassland Category = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVITAR] Name = Larvitar @@ -8071,12 +6601,6 @@ Habitat = Mountain Category = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PUPITAR,Level,30 #------------------------------- [PUPITAR] @@ -8103,12 +6627,6 @@ Habitat = Mountain Category = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANITAR,Level,55 #------------------------------- [TYRANITAR] @@ -8136,12 +6654,6 @@ Habitat = Mountain Category = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUGIA] Name = Lugia @@ -8168,12 +6680,6 @@ Habitat = Rare Category = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOOH] Name = Ho-Oh @@ -8203,12 +6709,6 @@ Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELEBI] Name = Celebi @@ -8237,12 +6737,6 @@ Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TREECKO] Name = Treecko @@ -8269,12 +6763,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GROVYLE,Level,16 #------------------------------- [GROVYLE] @@ -8301,12 +6789,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCEPTILE,Level,36 #------------------------------- [SCEPTILE] @@ -8333,12 +6815,6 @@ Habitat = Forest Category = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORCHIC] Name = Torchic @@ -8365,12 +6841,6 @@ Habitat = Grassland Category = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COMBUSKEN,Level,16 #------------------------------- [COMBUSKEN] @@ -8398,12 +6868,6 @@ Habitat = Grassland Category = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. Generation = 3 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLAZIKEN,Level,36 #------------------------------- [BLAZIKEN] @@ -8431,12 +6895,6 @@ Habitat = Grassland Category = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. Generation = 3 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUDKIP] Name = Mudkip @@ -8463,12 +6921,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARSHTOMP,Level,16 #------------------------------- [MARSHTOMP] @@ -8496,12 +6948,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWAMPERT,Level,36 #------------------------------- [SWAMPERT] @@ -8529,12 +6975,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POOCHYENA] Name = Poochyena @@ -8562,12 +7002,6 @@ Category = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. Generation = 3 WildItemUncommon = PECHABERRY -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIGHTYENA,Level,18 #------------------------------- [MIGHTYENA] @@ -8595,12 +7029,6 @@ Category = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. Generation = 3 WildItemUncommon = PECHABERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZIGZAGOON] Name = Zigzagoon @@ -8628,12 +7056,6 @@ Category = TinyRaccoon Pokedex = Rubbing its nose against the ground, it always wanders about back and forth in search of something. It is distinguished by the zigzag footprints it leaves. Generation = 3 WildItemUncommon = ORANBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LINOONE,Level,20 #------------------------------- [LINOONE] @@ -8662,12 +7084,6 @@ Pokedex = It is exceedingly fast if it only has to run in a straight line. When Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WURMPLE] Name = Wurmple @@ -8693,12 +7109,6 @@ Habitat = Forest Category = Worm Pokedex = It sticks to tree branches and eats leaves. The thread it spits from its mouth becomes gooey when it touches air and slows the movement of its foes. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SILCOON,Silcoon,7,CASCOON,Cascoon,7 #------------------------------- [SILCOON] @@ -8724,12 +7134,6 @@ Habitat = Forest Category = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEAUTIFLY,Level,10 #------------------------------- [BEAUTIFLY] @@ -8758,12 +7162,6 @@ Category = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CASCOON] Name = Cascoon @@ -8788,12 +7186,6 @@ Habitat = Forest Category = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSTOX,Level,10 #------------------------------- [DUSTOX] @@ -8822,12 +7214,6 @@ Category = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LOTAD] Name = Lotad @@ -8855,12 +7241,6 @@ Habitat = WatersEdge Category = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LOMBRE,Level,14 #------------------------------- [LOMBRE] @@ -8888,12 +7268,6 @@ Habitat = WatersEdge Category = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUDICOLO,Item,WATERSTONE #------------------------------- [LUDICOLO] @@ -8921,12 +7295,6 @@ Habitat = WatersEdge Category = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEDOT] Name = Seedot @@ -8953,12 +7321,6 @@ Habitat = Forest Category = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NUZLEAF,Level,14 #------------------------------- [NUZLEAF] @@ -8986,12 +7348,6 @@ Habitat = Forest Category = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SHIFTRY,Item,LEAFSTONE #------------------------------- [SHIFTRY] @@ -9019,12 +7375,6 @@ Habitat = Forest Category = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAILLOW] Name = Taillow @@ -9053,12 +7403,6 @@ Category = TinySwallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. Generation = 3 WildItemUncommon = CHARTIBERRY -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWELLOW,Level,22 #------------------------------- [SWELLOW] @@ -9087,12 +7431,6 @@ Category = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. Generation = 3 WildItemUncommon = CHARTIBERRY -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WINGULL] Name = Wingull @@ -9120,12 +7458,6 @@ Habitat = Sea Category = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PELIPPER,Level,25 #------------------------------- [PELIPPER] @@ -9153,12 +7485,6 @@ Habitat = Sea Category = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RALTS] Name = Ralts @@ -9185,12 +7511,6 @@ Habitat = Urban Category = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KIRLIA,Level,20 #------------------------------- [KIRLIA] @@ -9217,12 +7537,6 @@ Habitat = Urban Category = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GARDEVOIR,Level,30,GALLADE,ItemMale,DAWNSTONE #------------------------------- [GARDEVOIR] @@ -9249,12 +7563,6 @@ Habitat = Urban Category = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SURSKIT] Name = Surskit @@ -9282,12 +7590,6 @@ Habitat = WatersEdge Category = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MASQUERAIN,Level,22 #------------------------------- [MASQUERAIN] @@ -9316,12 +7618,6 @@ Category = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. Generation = 3 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = -8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHROOMISH] Name = Shroomish @@ -9349,12 +7645,6 @@ Category = Mushroom Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest after a long rain, you can see many Shroomish feasting on composted soil. Generation = 3 WildItemUncommon = KEBIABERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRELOOM,Level,23 #------------------------------- [BRELOOM] @@ -9383,12 +7673,6 @@ Category = Mushroom Pokedex = It scatters spores from holes in the cap on its head. It loves warm and humid climates. It feeds on trees and plants in fields and forests. Generation = 3 WildItemUncommon = KEBIABERRY -BattlerPlayerX = -15 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SLAKOTH] Name = Slakoth @@ -9414,12 +7698,6 @@ Habitat = Forest Category = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = VIGOROTH,Level,18 #------------------------------- [VIGOROTH] @@ -9445,12 +7723,6 @@ Habitat = Forest Category = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLAKING,Level,36 #------------------------------- [SLAKING] @@ -9476,12 +7748,6 @@ Habitat = Forest Category = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NINCADA] Name = Nincada @@ -9509,12 +7775,6 @@ Habitat = Forest Category = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINJASK,Ninjask,20,SHEDINJA,Shedinja,20 #------------------------------- [NINJASK] @@ -9542,12 +7802,6 @@ Habitat = Forest Category = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHEDINJA] Name = Shedinja @@ -9573,12 +7827,6 @@ Habitat = Forest Category = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WHISMUR] Name = Whismur @@ -9606,12 +7854,6 @@ Category = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. Generation = 3 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOUDRED,Level,20 #------------------------------- [LOUDRED] @@ -9639,12 +7881,6 @@ Category = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. Generation = 3 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXPLOUD,Level,40 #------------------------------- [EXPLOUD] @@ -9672,12 +7908,6 @@ Category = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. Generation = 3 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAKUHITA] Name = Makuhita @@ -9704,12 +7934,6 @@ Habitat = Mountain Category = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HARIYAMA,Level,24 #------------------------------- [HARIYAMA] @@ -9737,12 +7961,6 @@ Category = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. Generation = 3 WildItemUncommon = KINGSROCK -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AZURILL] Name = Azurill @@ -9769,12 +7987,6 @@ Habitat = WatersEdge Category = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. Generation = 3 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 14 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARILL,Happiness, Incense = SEAINCENSE #------------------------------- @@ -9804,12 +8016,6 @@ Category = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PROBOPASS,LocationFlag,Magnetic #------------------------------- [SKITTY] @@ -9838,12 +8044,6 @@ Category = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. Generation = 3 WildItemCommon = PECHABERRY -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DELCATTY,Item,MOONSTONE #------------------------------- [DELCATTY] @@ -9871,12 +8071,6 @@ Category = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. Generation = 3 WildItemCommon = PECHABERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SABLEYE] Name = Sableye @@ -9904,12 +8098,6 @@ Habitat = Cave Category = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAWILE] Name = Mawile @@ -9937,12 +8125,6 @@ Category = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. Generation = 3 WildItemUncommon = OCCABERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARON] Name = Aron @@ -9971,12 +8153,6 @@ Category = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAIRON,Level,32 #------------------------------- [LAIRON] @@ -10005,12 +8181,6 @@ Category = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = AGGRON,Level,42 #------------------------------- [AGGRON] @@ -10039,12 +8209,6 @@ Category = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEDITITE] Name = Meditite @@ -10072,12 +8236,6 @@ Habitat = Mountain Category = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEDICHAM,Level,37 #------------------------------- [MEDICHAM] @@ -10105,12 +8263,6 @@ Habitat = Mountain Category = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ELECTRIKE] Name = Electrike @@ -10137,12 +8289,6 @@ Habitat = Grassland Category = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANECTRIC,Level,26 #------------------------------- [MANECTRIC] @@ -10169,12 +8315,6 @@ Habitat = Grassland Category = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PLUSLE] Name = Plusle @@ -10200,12 +8340,6 @@ Habitat = Grassland Category = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. Generation = 3 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MINUN] Name = Minun @@ -10231,12 +8365,6 @@ Habitat = Grassland Category = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VOLBEAT] Name = Volbeat @@ -10263,12 +8391,6 @@ Habitat = Forest Category = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ILLUMISE] Name = Illumise @@ -10295,12 +8417,6 @@ Habitat = Forest Category = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROSELIA] Name = Roselia @@ -10330,12 +8446,6 @@ Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovel Generation = 3 WildItemUncommon = POISONBARB WildItemRare = ABSORBBULB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSERADE,Item,SHINYSTONE #------------------------------- [GULPIN] @@ -10364,12 +8474,6 @@ Category = Stomach Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, it can swallow something that is as large as itself. Generation = 3 WildItemUncommon = BIGPEARL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWALOT,Level,26 #------------------------------- [SWALOT] @@ -10397,12 +8501,6 @@ Category = Poison Bag Pokedex = Its powerful stomach acid is capable of digesting almost anything. The one thing in the whole world a Swalot can't digest is its own stomach. Generation = 3 WildItemUncommon = BIGPEARL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CARVANHA] Name = Carvanha @@ -10431,12 +8529,6 @@ Category = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHARPEDO,Level,30 #------------------------------- [SHARPEDO] @@ -10465,12 +8557,6 @@ Category = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WAILMER] Name = Wailmer @@ -10497,12 +8583,6 @@ Habitat = Sea Category = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WAILORD,Level,40 #------------------------------- [WAILORD] @@ -10529,12 +8609,6 @@ Habitat = Sea Category = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NUMEL] Name = Numel @@ -10565,12 +8639,6 @@ Generation = 3 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CAMERUPT,Level,33 #------------------------------- [CAMERUPT] @@ -10601,12 +8669,6 @@ Generation = 3 WildItemCommon = RAWSTBERRY WildItemUncommon = RAWSTBERRY WildItemRare = RAWSTBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORKOAL] Name = Torkoal @@ -10633,12 +8695,6 @@ Habitat = Mountain Category = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPOINK] Name = Spoink @@ -10666,12 +8722,6 @@ Category = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. Generation = 3 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRUMPIG,Level,32 #------------------------------- [GRUMPIG] @@ -10699,12 +8749,6 @@ Category = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. Generation = 3 WildItemCommon = PERSIMBERRY -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPINDA] Name = Spinda @@ -10732,12 +8776,6 @@ Category = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. Generation = 3 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRAPINCH] Name = Trapinch @@ -10765,12 +8803,6 @@ Category = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIBRAVA,Level,35 #------------------------------- [VIBRAVA] @@ -10797,12 +8829,6 @@ Habitat = RoughTerrain Category = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. Generation = 3 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLYGON,Level,45 #------------------------------- [FLYGON] @@ -10829,12 +8855,6 @@ Habitat = RoughTerrain Category = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. Generation = 3 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CACNEA] Name = Cacnea @@ -10862,12 +8882,6 @@ Category = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CACTURNE,Level,32 #------------------------------- [CACTURNE] @@ -10896,12 +8910,6 @@ Category = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWABLU] Name = Swablu @@ -10929,12 +8937,6 @@ Habitat = Forest Category = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ALTARIA,Level,35 #------------------------------- [ALTARIA] @@ -10962,12 +8964,6 @@ Habitat = Forest Category = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZANGOOSE] Name = Zangoose @@ -10995,12 +8991,6 @@ Category = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. Generation = 3 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SEVIPER] Name = Seviper @@ -11027,12 +9017,6 @@ Habitat = Grassland Category = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUNATONE] Name = Lunatone @@ -11060,12 +9044,6 @@ Pokedex = It becomes very active on the night of a full moon. This Pokémon was Generation = 3 WildItemUncommon = MOONSTONE WildItemRare = COMETSHARD -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLROCK] Name = Solrock @@ -11093,12 +9071,6 @@ Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, gr Generation = 3 WildItemUncommon = SUNSTONE WildItemRare = COMETSHARD -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BARBOACH] Name = Barboach @@ -11126,12 +9098,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHISCASH,Level,30 #------------------------------- [WHISCASH] @@ -11159,12 +9125,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CORPHISH] Name = Corphish @@ -11191,12 +9151,6 @@ Habitat = WatersEdge Category = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRAWDAUNT,Level,30 #------------------------------- [CRAWDAUNT] @@ -11224,12 +9178,6 @@ Habitat = WatersEdge Category = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. Generation = 3 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BALTOY] Name = Baltoy @@ -11255,12 +9203,6 @@ Habitat = RoughTerrain Category = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLAYDOL,Level,36 #------------------------------- [CLAYDOL] @@ -11287,12 +9229,6 @@ Habitat = RoughTerrain Category = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LILEEP] Name = Lileep @@ -11321,12 +9257,6 @@ Category = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRADILY,Level,40 #------------------------------- [CRADILY] @@ -11355,12 +9285,6 @@ Category = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ANORITH] Name = Anorith @@ -11388,12 +9312,6 @@ Habitat = WatersEdge Category = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. Generation = 3 -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARMALDO,Level,40 #------------------------------- [ARMALDO] @@ -11421,12 +9339,6 @@ Habitat = WatersEdge Category = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FEEBAS] Name = Feebas @@ -11453,12 +9365,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MILOTIC,Beauty,170,MILOTIC,TradeItem,PRISMSCALE #------------------------------- [MILOTIC] @@ -11485,12 +9391,6 @@ Habitat = WatersEdge Category = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CASTFORM] Name = Castform @@ -11520,12 +9420,6 @@ Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [KECLEON] Name = Kecleon @@ -11552,12 +9446,6 @@ Category = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. Generation = 3 WildItemUncommon = PERSIMBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHUPPET] Name = Shuppet @@ -11585,12 +9473,6 @@ Category = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BANETTE,Level,37 #------------------------------- [BANETTE] @@ -11618,12 +9500,6 @@ Category = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DUSKULL] Name = Duskull @@ -11650,12 +9526,6 @@ Category = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. Generation = 3 WildItemUncommon = KASIBBERRY -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSCLOPS,Level,37 #------------------------------- [DUSCLOPS] @@ -11682,12 +9552,6 @@ Category = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. Generation = 3 WildItemUncommon = KASIBBERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DUSKNOIR,TradeItem,REAPERCLOTH #------------------------------- [TROPIUS] @@ -11716,12 +9580,6 @@ Habitat = Forest Category = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMECHO] Name = Chimecho @@ -11748,12 +9606,6 @@ Category = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. Generation = 3 WildItemUncommon = COLBURBERRY -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ABSOL] Name = Absol @@ -11780,12 +9632,6 @@ Habitat = Mountain Category = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WYNAUT] Name = Wynaut @@ -11810,12 +9656,6 @@ Habitat = Cave Category = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WOBBUFFET,Level,15 Incense = LAXINCENSE #------------------------------- @@ -11845,12 +9685,6 @@ Category = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. Generation = 3 WildItemUncommon = BABIRIBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLALIE,Level,42,FROSLASS,ItemFemale,DAWNSTONE #------------------------------- [GLALIE] @@ -11878,12 +9712,6 @@ Category = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. Generation = 3 WildItemUncommon = BABIRIBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPHEAL] Name = Spheal @@ -11911,12 +9739,6 @@ Habitat = Sea Category = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEALEO,Level,32 #------------------------------- [SEALEO] @@ -11944,12 +9766,6 @@ Habitat = Sea Category = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WALREIN,Level,44 #------------------------------- [WALREIN] @@ -11977,12 +9793,6 @@ Habitat = Sea Category = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLAMPERL] Name = Clamperl @@ -12010,12 +9820,6 @@ Category = Bivalve Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl it creates upon evolution is said to be infused with a mysterious energy. Generation = 3 WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HUNTAIL,TradeItem,DEEPSEATOOTH,GOREBYSS,TradeItem,DEEPSEASCALE #------------------------------- [HUNTAIL] @@ -12043,12 +9847,6 @@ Category = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOREBYSS] Name = Gorebyss @@ -12075,12 +9873,6 @@ Category = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RELICANTH] Name = Relicanth @@ -12109,12 +9901,6 @@ Category = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUVDISC] Name = Luvdisc @@ -12142,12 +9928,6 @@ Category = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. Generation = 3 WildItemCommon = HEARTSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BAGON] Name = Bagon @@ -12175,12 +9955,6 @@ Category = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHELGON,Level,30 #------------------------------- [SHELGON] @@ -12208,12 +9982,6 @@ Category = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SALAMENCE,Level,50 #------------------------------- [SALAMENCE] @@ -12242,12 +10010,6 @@ Category = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELDUM] Name = Beldum @@ -12275,12 +10037,6 @@ Category = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = METANG,Level,20 #------------------------------- [METANG] @@ -12309,12 +10065,6 @@ Category = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = METAGROSS,Level,45 #------------------------------- [METAGROSS] @@ -12343,12 +10093,6 @@ Category = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIROCK] Name = Regirock @@ -12374,12 +10118,6 @@ Habitat = Cave Category = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGICE] Name = Regice @@ -12405,12 +10143,6 @@ Habitat = Cave Category = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGISTEEL] Name = Registeel @@ -12436,12 +10168,6 @@ Habitat = Cave Category = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LATIAS] Name = Latias @@ -12467,12 +10193,6 @@ Habitat = WatersEdge Category = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LATIOS] Name = Latios @@ -12498,12 +10218,6 @@ Habitat = WatersEdge Category = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KYOGRE] Name = Kyogre @@ -12528,12 +10242,6 @@ Habitat = Sea Category = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROUDON] Name = Groudon @@ -12558,12 +10266,6 @@ Habitat = RoughTerrain Category = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RAYQUAZA] Name = Rayquaza @@ -12589,12 +10291,6 @@ Habitat = Rare Category = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [JIRACHI] Name = Jirachi @@ -12623,12 +10319,6 @@ Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DEOXYS] Name = Deoxys @@ -12654,12 +10344,6 @@ Category = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTWIG] Name = Turtwig @@ -12685,12 +10369,6 @@ Shape = Quadruped Category = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GROTLE,Level,18 #------------------------------- [GROTLE] @@ -12716,12 +10394,6 @@ Shape = Quadruped Category = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TORTERRA,Level,32 #------------------------------- [TORTERRA] @@ -12748,12 +10420,6 @@ Shape = Quadruped Category = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMCHAR] Name = Chimchar @@ -12779,12 +10445,6 @@ Shape = BipedalTail Category = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MONFERNO,Level,14 #------------------------------- [MONFERNO] @@ -12811,12 +10471,6 @@ Shape = BipedalTail Category = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 10 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INFERNAPE,Level,36 #------------------------------- [INFERNAPE] @@ -12843,12 +10497,6 @@ Shape = BipedalTail Category = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIPLUP] Name = Piplup @@ -12874,12 +10522,6 @@ Shape = Bipedal Category = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PRINPLUP,Level,16 #------------------------------- [PRINPLUP] @@ -12905,12 +10547,6 @@ Shape = BipedalTail Category = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMPOLEON,Level,36 #------------------------------- [EMPOLEON] @@ -12937,12 +10573,6 @@ Shape = BipedalTail Category = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [STARLY] Name = Starly @@ -12969,12 +10599,6 @@ Category = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. Generation = 4 WildItemUncommon = YACHEBERRY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = STARAVIA,Level,14 #------------------------------- [STARAVIA] @@ -13002,12 +10626,6 @@ Category = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. Generation = 4 WildItemUncommon = YACHEBERRY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARAPTOR,Level,34 #------------------------------- [STARAPTOR] @@ -13035,12 +10653,6 @@ Category = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. Generation = 4 WildItemUncommon = YACHEBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BIDOOF] Name = Bidoof @@ -13066,12 +10678,6 @@ Shape = Quadruped Category = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BIBAREL,Level,15 #------------------------------- [BIBAREL] @@ -13100,12 +10706,6 @@ Pokedex = It makes its nest by damming streams with bark and mud. It is known as Generation = 4 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KRICKETOT] Name = Kricketot @@ -13131,12 +10731,6 @@ Category = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KRICKETUNE,Level,10 #------------------------------- [KRICKETUNE] @@ -13163,12 +10757,6 @@ Category = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHINX] Name = Shinx @@ -13194,12 +10782,6 @@ Shape = Quadruped Category = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXIO,Level,15 #------------------------------- [LUXIO] @@ -13225,12 +10807,6 @@ Shape = Quadruped Category = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXRAY,Level,30 #------------------------------- [LUXRAY] @@ -13256,12 +10832,6 @@ Shape = Quadruped Category = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BUDEW] Name = Budew @@ -13289,12 +10859,6 @@ Category = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSELIA,HappinessDay, Incense = ROSEINCENSE #------------------------------- @@ -13324,12 +10888,6 @@ Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips h Generation = 4 WildItemUncommon = POISONBARB WildItemRare = ABSORBBULB -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRANIDOS] Name = Cranidos @@ -13355,12 +10913,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAMPARDOS,Level,30 #------------------------------- [RAMPARDOS] @@ -13386,12 +10938,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHIELDON] Name = Shieldon @@ -13418,12 +10964,6 @@ Shape = Quadruped Category = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BASTIODON,Level,30 #------------------------------- [BASTIODON] @@ -13450,12 +10990,6 @@ Shape = Quadruped Category = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BURMY] Name = Burmy @@ -13482,12 +11016,6 @@ Pokedex = To shelter itself from cold, wintry winds, it covers itself with a clo FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WORMADAM,LevelFemale,20,MOTHIM,LevelMale,20 #------------------------------- [WORMADAM] @@ -13517,12 +11045,6 @@ FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MOTHIM] Name = Mothim @@ -13549,12 +11071,6 @@ Category = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. Generation = 4 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 11 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [COMBEE] Name = Combee @@ -13581,12 +11097,6 @@ Category = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. Generation = 4 WildItemUncommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VESPIQUEN,LevelFemale,21 #------------------------------- [VESPIQUEN] @@ -13614,12 +11124,6 @@ Category = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PACHIRISU] Name = Pachirisu @@ -13645,12 +11149,6 @@ Shape = Quadruped Category = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BUIZEL] Name = Buizel @@ -13677,12 +11175,6 @@ Category = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. Generation = 4 WildItemUncommon = WACANBERRY -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOATZEL,Level,26 #------------------------------- [FLOATZEL] @@ -13709,12 +11201,6 @@ Category = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. Generation = 4 WildItemUncommon = WACANBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHERUBI] Name = Cherubi @@ -13740,12 +11226,6 @@ Category = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHERRIM,Level,25 #------------------------------- [CHERRIM] @@ -13772,12 +11252,6 @@ Pokedex = It blooms during times of strong sunlight. It tries to make up for eve FormName = Overcast Form Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHELLOS] Name = Shellos @@ -13805,12 +11279,6 @@ Pokedex = Its colors and shapes differ from region to region. In the Sinnoh regi FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GASTRODON,Level,30 #------------------------------- [GASTRODON] @@ -13839,12 +11307,6 @@ Pokedex = It has a pliable body without any bones. If any part of its body is to FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AMBIPOM] Name = Ambipom @@ -13869,12 +11331,6 @@ Shape = BipedalTail Category = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRIFLOON] Name = Drifloon @@ -13901,12 +11357,6 @@ Shape = HeadArms Category = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRIFBLIM,Level,28 #------------------------------- [DRIFBLIM] @@ -13934,12 +11384,6 @@ Category = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. Generation = 4 WildItemRare = AIRBALLOON -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNEARY] Name = Buneary @@ -13966,12 +11410,6 @@ Category = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. Generation = 4 WildItemCommon = PECHABERRY -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOPUNNY,Happiness, #------------------------------- [LOPUNNY] @@ -13998,12 +11436,6 @@ Category = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. Generation = 4 WildItemCommon = PECHABERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISMAGIUS] Name = Mismagius @@ -14027,12 +11459,6 @@ Shape = Head Category = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONCHKROW] Name = Honchkrow @@ -14058,12 +11484,6 @@ Shape = Winged Category = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLAMEOW] Name = Glameow @@ -14090,12 +11510,6 @@ Category = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. Generation = 4 WildItemUncommon = CHERIBERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PURUGLY,Level,38 #------------------------------- [PURUGLY] @@ -14122,12 +11536,6 @@ Category = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. Generation = 4 WildItemUncommon = CHERIBERRY -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHINGLING] Name = Chingling @@ -14153,12 +11561,6 @@ Category = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. Generation = 4 WildItemUncommon = COLBURBERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHIMECHO,HappinessNight, Incense = PUREINCENSE #------------------------------- @@ -14188,12 +11590,6 @@ Category = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. Generation = 4 WildItemUncommon = PECHABERRY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SKUNTANK,Level,34 #------------------------------- [SKUNTANK] @@ -14221,12 +11617,6 @@ Category = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. Generation = 4 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BRONZOR] Name = Bronzor @@ -14253,12 +11643,6 @@ Category = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRONZONG,Level,33 #------------------------------- [BRONZONG] @@ -14286,12 +11670,6 @@ Category = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BONSLY] Name = Bonsly @@ -14317,12 +11695,6 @@ Shape = HeadLegs Category = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUDOWOODO,HasMove,MIMIC Incense = ROCKINCENSE #------------------------------- @@ -14351,12 +11723,6 @@ Category = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. Generation = 4 WildItemUncommon = LEPPABERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MRMIME,HasMove,MIMIC Incense = ODDINCENSE #------------------------------- @@ -14386,12 +11752,6 @@ Pokedex = It loves round white things. It carries an egg-shaped rock in imitatio Generation = 4 WildItemCommon = OVALSTONE WildItemUncommon = LUCKYEGG -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANSEY,DayHoldItem,OVALSTONE Incense = LUCKINCENSE #------------------------------- @@ -14421,12 +11781,6 @@ Category = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPIRITOMB] Name = Spiritomb @@ -14453,12 +11807,6 @@ Shape = HeadBase Category = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIBLE] Name = Gible @@ -14486,12 +11834,6 @@ Category = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. Generation = 4 WildItemUncommon = HABANBERRY -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GABITE,Level,24 #------------------------------- [GABITE] @@ -14519,12 +11861,6 @@ Category = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. Generation = 4 WildItemUncommon = HABANBERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GARCHOMP,Level,48 #------------------------------- [GARCHOMP] @@ -14552,12 +11888,6 @@ Category = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. Generation = 4 WildItemUncommon = HABANBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUNCHLAX] Name = Munchlax @@ -14586,12 +11916,6 @@ Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SNORLAX,Happiness, Incense = FULLINCENSE #------------------------------- @@ -14619,12 +11943,6 @@ Shape = BipedalTail Category = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LUCARIO,HappinessDay, #------------------------------- [LUCARIO] @@ -14651,12 +11969,6 @@ Shape = BipedalTail Category = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HIPPOPOTAS] Name = Hippopotas @@ -14682,12 +11994,6 @@ Shape = Quadruped Category = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HIPPOWDON,Level,34 #------------------------------- [HIPPOWDON] @@ -14713,12 +12019,6 @@ Shape = Quadruped Category = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKORUPI] Name = Skorupi @@ -14746,12 +12046,6 @@ Category = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAPION,Level,40 #------------------------------- [DRAPION] @@ -14779,12 +12073,6 @@ Category = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -11 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROAGUNK] Name = Croagunk @@ -14812,12 +12100,6 @@ Category = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXICROAK,Level,37 #------------------------------- [TOXICROAK] @@ -14845,12 +12127,6 @@ Category = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARNIVINE] Name = Carnivine @@ -14875,12 +12151,6 @@ Shape = Multiped Category = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FINNEON] Name = Finneon @@ -14907,12 +12177,6 @@ Category = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. Generation = 4 WildItemUncommon = RINDOBERRY -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUMINEON,Level,31 #------------------------------- [LUMINEON] @@ -14939,12 +12203,6 @@ Category = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. Generation = 4 WildItemUncommon = RINDOBERRY -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTYKE] Name = Mantyke @@ -14971,12 +12229,6 @@ Shape = Winged Category = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANTINE,HasInParty,REMORAID Incense = WAVEINCENSE #------------------------------- @@ -15006,12 +12258,6 @@ Category = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ABOMASNOW,Level,40 #------------------------------- [ABOMASNOW] @@ -15039,12 +12285,6 @@ Category = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WEAVILE] Name = Weavile @@ -15072,12 +12312,6 @@ Pokedex = They live in cold regions, forming groups of four or five that hunt pr Generation = 4 WildItemCommon = GRIPCLAW WildItemUncommon = QUICKCLAW -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGNEZONE] Name = Magnezone @@ -15104,12 +12338,6 @@ Category = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LICKILICKY] Name = Lickilicky @@ -15135,12 +12363,6 @@ Category = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. Generation = 4 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYPERIOR] Name = Rhyperior @@ -15166,12 +12388,6 @@ Shape = BipedalTail Category = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TANGROWTH] Name = Tangrowth @@ -15196,12 +12412,6 @@ Shape = Bipedal Category = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTIVIRE] Name = Electivire @@ -15227,12 +12437,6 @@ Category = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. Generation = 4 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGMORTAR] Name = Magmortar @@ -15258,12 +12462,6 @@ Category = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. Generation = 4 WildItemUncommon = MAGMARIZER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOGEKISS] Name = Togekiss @@ -15289,12 +12487,6 @@ Shape = Winged Category = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YANMEGA] Name = Yanmega @@ -15321,12 +12513,6 @@ Category = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. Generation = 4 WildItemUncommon = WIDELENS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LEAFEON] Name = Leafeon @@ -15351,12 +12537,6 @@ Shape = Quadruped Category = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GLACEON] Name = Glaceon @@ -15381,12 +12561,6 @@ Shape = Quadruped Category = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLISCOR] Name = Gliscor @@ -15412,12 +12586,6 @@ Shape = Winged Category = Fang Scorp Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAMOSWINE] Name = Mamoswine @@ -15443,12 +12611,6 @@ Shape = Quadruped Category = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGONZ] Name = Porygon-Z @@ -15473,12 +12635,6 @@ Shape = HeadArms Category = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GALLADE] Name = Gallade @@ -15504,12 +12660,6 @@ Shape = Bipedal Category = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PROBOPASS] Name = Probopass @@ -15536,12 +12686,6 @@ Category = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. Generation = 4 WildItemUncommon = HARDSTONE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUSKNOIR] Name = Dusknoir @@ -15566,12 +12710,6 @@ Category = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. Generation = 4 WildItemUncommon = KASIBBERRY -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FROSLASS] Name = Froslass @@ -15598,12 +12736,6 @@ Category = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. Generation = 4 WildItemUncommon = BABIRIBERRY -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROTOM] Name = Rotom @@ -15629,12 +12761,6 @@ Category = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Normal Rotom Generation = 4 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [UXIE] Name = Uxie @@ -15658,12 +12784,6 @@ Shape = BipedalTail Category = Knowledge Pokedex = Known as "The Being of Knowledge." It is said that it can wipe out the memory of those who see its eyes. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MESPRIT] Name = Mesprit @@ -15687,12 +12807,6 @@ Shape = BipedalTail Category = Emotion Pokedex = Known as "The Being of Emotion." It taught humans the nobility of sorrow, pain, and joy. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AZELF] Name = Azelf @@ -15716,12 +12830,6 @@ Shape = BipedalTail Category = Willpower Pokedex = Known as "The Being of Willpower." It sleeps at the bottom of a lake to keep the world in balance. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DIALGA] Name = Dialga @@ -15747,12 +12855,6 @@ Shape = Quadruped Category = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PALKIA] Name = Palkia @@ -15778,12 +12880,6 @@ Shape = BipedalTail Category = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HEATRAN] Name = Heatran @@ -15809,12 +12905,6 @@ Shape = Quadruped Category = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIGIGAS] Name = Regigigas @@ -15838,12 +12928,6 @@ Shape = Bipedal Category = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GIRATINA] Name = Giratina @@ -15870,12 +12954,6 @@ Category = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRESSELIA] Name = Cresselia @@ -15899,12 +12977,6 @@ Shape = Serpentine Category = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHIONE] Name = Phione @@ -15928,12 +13000,6 @@ Shape = HeadArms Category = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MANAPHY] Name = Manaphy @@ -15957,12 +13023,6 @@ Shape = Bipedal Category = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DARKRAI] Name = Darkrai @@ -15986,12 +13046,6 @@ Shape = Bipedal Category = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHAYMIN] Name = Shaymin @@ -16019,12 +13073,6 @@ Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCEUS] Name = Arceus @@ -16049,12 +13097,6 @@ Category = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VICTINI] Name = Victini @@ -16079,12 +13121,6 @@ Shape = Bipedal Category = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNIVY] Name = Snivy @@ -16110,12 +13146,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SERVINE,Level,17 #------------------------------- [SERVINE] @@ -16141,12 +13171,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SERPERIOR,Level,36 #------------------------------- [SERPERIOR] @@ -16172,12 +13196,6 @@ Shape = Serpentine Category = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TEPIG] Name = Tepig @@ -16203,12 +13221,6 @@ Shape = Quadruped Category = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIGNITE,Level,17 #------------------------------- [PIGNITE] @@ -16235,12 +13247,6 @@ Shape = BipedalTail Category = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMBOAR,Level,36 #------------------------------- [EMBOAR] @@ -16267,12 +13273,6 @@ Shape = BipedalTail Category = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [OSHAWOTT] Name = Oshawott @@ -16298,12 +13298,6 @@ Shape = BipedalTail Category = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DEWOTT,Level,17 #------------------------------- [DEWOTT] @@ -16329,12 +13323,6 @@ Shape = BipedalTail Category = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SAMUROTT,Level,36 #------------------------------- [SAMUROTT] @@ -16360,12 +13348,6 @@ Shape = Quadruped Category = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PATRAT] Name = Patrat @@ -16391,12 +13373,6 @@ Shape = Quadruped Category = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WATCHOG,Level,20 #------------------------------- [WATCHOG] @@ -16422,12 +13398,6 @@ Shape = BipedalTail Category = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LILLIPUP] Name = Lillipup @@ -16453,12 +13423,6 @@ Shape = Quadruped Category = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HERDIER,Level,16 #------------------------------- [HERDIER] @@ -16484,12 +13448,6 @@ Shape = Quadruped Category = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STOUTLAND,Level,32 #------------------------------- [STOUTLAND] @@ -16515,12 +13473,6 @@ Shape = Quadruped Category = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PURRLOIN] Name = Purrloin @@ -16546,12 +13498,6 @@ Shape = Quadruped Category = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LIEPARD,Level,20 #------------------------------- [LIEPARD] @@ -16577,12 +13523,6 @@ Shape = Quadruped Category = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PANSAGE] Name = Pansage @@ -16610,12 +13550,6 @@ Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leav Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = OCCABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISAGE,Item,LEAFSTONE #------------------------------- [SIMISAGE] @@ -16643,12 +13577,6 @@ Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = OCCABERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANSEAR] Name = Pansear @@ -16676,12 +13604,6 @@ Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = PASSHOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISEAR,Item,FIRESTONE #------------------------------- [SIMISEAR] @@ -16709,12 +13631,6 @@ Pokedex = A flame burns inside its body. It scatters embers from its head and ta Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = PASSHOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANPOUR] Name = Panpour @@ -16742,12 +13658,6 @@ Pokedex = It does not thrive in dry environments. It keeps itself damp by shooti Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = RINDOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMIPOUR,Item,WATERSTONE #------------------------------- [SIMIPOUR] @@ -16775,12 +13685,6 @@ Pokedex = The high-pressure water expelled from its tail is so powerful, it can Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = RINDOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUNNA] Name = Munna @@ -16806,12 +13710,6 @@ Shape = Quadruped Category = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MUSHARNA,Item,MOONSTONE #------------------------------- [MUSHARNA] @@ -16837,12 +13735,6 @@ Shape = Bipedal Category = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. Generation = 5 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDOVE] Name = Pidove @@ -16869,12 +13761,6 @@ Shape = Winged Category = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TRANQUILL,Level,21 #------------------------------- [TRANQUILL] @@ -16901,12 +13787,6 @@ Shape = Winged Category = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = UNFEZANT,Level,32 #------------------------------- [UNFEZANT] @@ -16933,12 +13813,6 @@ Shape = Winged Category = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLITZLE] Name = Blitzle @@ -16965,12 +13839,6 @@ Category = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. Generation = 5 WildItemCommon = CHERIBERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZEBSTRIKA,Level,27 #------------------------------- [ZEBSTRIKA] @@ -16997,12 +13865,6 @@ Category = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. Generation = 5 WildItemCommon = CHERIBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ROGGENROLA] Name = Roggenrola @@ -17030,12 +13892,6 @@ Pokedex = They were discovered a hundred years ago in an earthquake fissure. Ins Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BOLDORE,Level,25 #------------------------------- [BOLDORE] @@ -17063,12 +13919,6 @@ Pokedex = Because its energy was too great to be contained, the energy leaked an Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GIGALITH,Trade, #------------------------------- [GIGALITH] @@ -17096,12 +13946,6 @@ Pokedex = The solar energy absorbed by its body's orange crystals is magnified i Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WOOBAT] Name = Woobat @@ -17128,12 +13972,6 @@ Shape = Winged Category = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWOOBAT,Happiness, #------------------------------- [SWOOBAT] @@ -17160,12 +13998,6 @@ Shape = Winged Category = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRILBUR] Name = Drilbur @@ -17191,12 +14023,6 @@ Shape = BipedalTail Category = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EXCADRILL,Level,31 #------------------------------- [EXCADRILL] @@ -17223,12 +14049,6 @@ Shape = Bipedal Category = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AUDINO] Name = Audino @@ -17256,12 +14076,6 @@ Pokedex = Its auditory sense is astounding. It has a radar-like ability to under Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TIMBURR] Name = Timburr @@ -17287,12 +14101,6 @@ Shape = Bipedal Category = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GURDURR,Level,25 #------------------------------- [GURDURR] @@ -17318,12 +14126,6 @@ Shape = Bipedal Category = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CONKELDURR,Trade, #------------------------------- [CONKELDURR] @@ -17349,12 +14151,6 @@ Shape = Bipedal Category = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYMPOLE] Name = Tympole @@ -17381,12 +14177,6 @@ Category = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. Generation = 5 WildItemCommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PALPITOAD,Level,25 #------------------------------- [PALPITOAD] @@ -17414,12 +14204,6 @@ Category = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. Generation = 5 WildItemCommon = PECHABERRY -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEISMITOAD,Level,36 #------------------------------- [SEISMITOAD] @@ -17447,12 +14231,6 @@ Category = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. Generation = 5 WildItemCommon = PECHABERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THROH] Name = Throh @@ -17479,12 +14257,6 @@ Pokedex = When they encounter foes bigger than themselves, they try to throw the Generation = 5 WildItemUncommon = BLACKBELT WildItemRare = EXPERTBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SAWK] Name = Sawk @@ -17511,12 +14283,6 @@ Pokedex = Tying their belts gets them pumped and makes their punches more destru Generation = 5 WildItemUncommon = BLACKBELT WildItemRare = EXPERTBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEWADDLE] Name = Sewaddle @@ -17544,12 +14310,6 @@ Category = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWADLOON,Level,20 #------------------------------- [SWADLOON] @@ -17577,12 +14337,6 @@ Category = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEAVANNY,Happiness, #------------------------------- [LEAVANNY] @@ -17610,12 +14364,6 @@ Category = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VENIPEDE] Name = Venipede @@ -17644,12 +14392,6 @@ Pokedex = It discovers what is going on around it by using the feelers on its he Generation = 5 WildItemCommon = PECHABERRY WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIRLIPEDE,Level,22 #------------------------------- [WHIRLIPEDE] @@ -17678,12 +14420,6 @@ Pokedex = It is usually motionless, but when attacked, it rotates at high speed Generation = 5 WildItemCommon = PECHABERRY WildItemUncommon = POISONBARB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCOLIPEDE,Level,30 #------------------------------- [SCOLIPEDE] @@ -17712,12 +14448,6 @@ Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opp Generation = 5 WildItemCommon = PECHABERRY WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COTTONEE] Name = Cottonee @@ -17743,12 +14473,6 @@ Shape = Head Category = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIMSICOTT,Item,SUNSTONE #------------------------------- [WHIMSICOTT] @@ -17774,12 +14498,6 @@ Shape = Bipedal Category = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PETILIL] Name = Petilil @@ -17805,12 +14523,6 @@ Shape = HeadBase Category = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LILLIGANT,Item,SUNSTONE #------------------------------- [LILLIGANT] @@ -17836,12 +14548,6 @@ Shape = HeadBase Category = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BASCULIN] Name = Basculin @@ -17870,12 +14576,6 @@ FormName = Red-Striped Generation = 5 Flags = InheritFormFromMother WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDILE] Name = Sandile @@ -17902,12 +14602,6 @@ Shape = Quadruped Category = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 37 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KROKOROK,Level,29 #------------------------------- [KROKOROK] @@ -17934,12 +14628,6 @@ Shape = Quadruped Category = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KROOKODILE,Level,40 #------------------------------- [KROOKODILE] @@ -17966,12 +14654,6 @@ Shape = BipedalTail Category = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DARUMAKA] Name = Darumaka @@ -17998,12 +14680,6 @@ Category = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. Generation = 5 WildItemCommon = RAWSTBERRY -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARMANITAN,Level,35 #------------------------------- [DARMANITAN] @@ -18031,12 +14707,6 @@ Pokedex = When weakened in battle, it transforms into a stone statue. Then it sh FormName = Standard Mode Generation = 5 WildItemCommon = RAWSTBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MARACTUS] Name = Maractus @@ -18063,12 +14733,6 @@ Category = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. Generation = 5 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DWEBBLE] Name = Dwebble @@ -18097,12 +14761,6 @@ Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon Generation = 5 WildItemUncommon = HARDSTONE WildItemRare = RAREBONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRUSTLE,Level,34 #------------------------------- [CRUSTLE] @@ -18131,12 +14789,6 @@ Pokedex = It possesses legs of enormous strength, enabling it to carry heavy sla Generation = 5 WildItemUncommon = HARDSTONE WildItemRare = RAREBONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SCRAGGY] Name = Scraggy @@ -18164,12 +14816,6 @@ Category = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SCRAFTY,Level,39 #------------------------------- [SCRAFTY] @@ -18197,12 +14843,6 @@ Category = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SIGILYPH] Name = Sigilyph @@ -18229,12 +14869,6 @@ Shape = Winged Category = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. Generation = 5 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YAMASK] Name = Yamask @@ -18260,12 +14894,6 @@ Category = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COFAGRIGUS,Level,34 #------------------------------- [COFAGRIGUS] @@ -18291,12 +14919,6 @@ Category = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TIRTOUGA] Name = Tirtouga @@ -18323,12 +14945,6 @@ Shape = Quadruped Category = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CARRACOSTA,Level,37 #------------------------------- [CARRACOSTA] @@ -18355,12 +14971,6 @@ Shape = BipedalTail Category = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARCHEN] Name = Archen @@ -18386,12 +14996,6 @@ Shape = Winged Category = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ARCHEOPS,Level,37 #------------------------------- [ARCHEOPS] @@ -18417,12 +15021,6 @@ Shape = Winged Category = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. Generation = 5 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRUBBISH] Name = Trubbish @@ -18450,12 +15048,6 @@ Pokedex = The combination of garbage bags and industrial waste caused the chemic Generation = 5 WildItemUncommon = BLACKSLUDGE WildItemRare = NUGGET -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GARBODOR,Level,36 #------------------------------- [GARBODOR] @@ -18484,12 +15076,6 @@ Generation = 5 WildItemCommon = BLACKSLUDGE WildItemUncommon = NUGGET WildItemRare = BIGNUGGET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZORUA] Name = Zorua @@ -18514,12 +15100,6 @@ Shape = Quadruped Category = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZOROARK,Level,30 #------------------------------- [ZOROARK] @@ -18544,12 +15124,6 @@ Shape = BipedalTail Category = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MINCCINO] Name = Minccino @@ -18576,12 +15150,6 @@ Category = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. Generation = 5 WildItemCommon = CHESTOBERRY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CINCCINO,Item,SHINYSTONE #------------------------------- [CINCCINO] @@ -18608,12 +15176,6 @@ Category = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. Generation = 5 WildItemCommon = CHESTOBERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOTHITA] Name = Gothita @@ -18640,12 +15202,6 @@ Category = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. Generation = 5 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHORITA,Level,32 #------------------------------- [GOTHORITA] @@ -18672,12 +15228,6 @@ Category = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. Generation = 5 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHITELLE,Level,41 #------------------------------- [GOTHITELLE] @@ -18704,12 +15254,6 @@ Category = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. Generation = 5 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLOSIS] Name = Solosis @@ -18736,12 +15280,6 @@ Category = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. Generation = 5 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DUOSION,Level,32 #------------------------------- [DUOSION] @@ -18768,12 +15306,6 @@ Category = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. Generation = 5 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = REUNICLUS,Level,41 #------------------------------- [REUNICLUS] @@ -18800,12 +15332,6 @@ Category = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. Generation = 5 WildItemCommon = PERSIMBERRY -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DUCKLETT] Name = Ducklett @@ -18832,12 +15358,6 @@ Shape = Winged Category = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWANNA,Level,35 #------------------------------- [SWANNA] @@ -18864,12 +15384,6 @@ Shape = Winged Category = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VANILLITE] Name = Vanillite @@ -18895,12 +15409,6 @@ Shape = HeadBase Category = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VANILLISH,Level,35 #------------------------------- [VANILLISH] @@ -18926,12 +15434,6 @@ Shape = HeadBase Category = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VANILLUXE,Level,47 #------------------------------- [VANILLUXE] @@ -18957,12 +15459,6 @@ Shape = MultiBody Category = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEERLING] Name = Deerling @@ -18990,12 +15486,6 @@ Category = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SAWSBUCK,Level,34 #------------------------------- [SAWSBUCK] @@ -19023,12 +15513,6 @@ Category = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EMOLGA] Name = Emolga @@ -19058,12 +15542,6 @@ Generation = 5 WildItemCommon = CHERIBERRY WildItemUncommon = CHERIBERRY WildItemRare = CHERIBERRY -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARRABLAST] Name = Karrablast @@ -19089,12 +15567,6 @@ Shape = Bipedal Category = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ESCAVALIER,TradeSpecies,SHELMET #------------------------------- [ESCAVALIER] @@ -19121,12 +15593,6 @@ Shape = HeadArms Category = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FOONGUS] Name = Foongus @@ -19156,12 +15622,6 @@ Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMOONGUSS,Level,39 #------------------------------- [AMOONGUSS] @@ -19191,12 +15651,6 @@ Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM WildItemRare = BALMMUSHROOM -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FRILLISH] Name = Frillish @@ -19223,12 +15677,6 @@ Shape = Multiped Category = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = JELLICENT,Level,40 #------------------------------- [JELLICENT] @@ -19255,12 +15703,6 @@ Shape = Multiped Category = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ALOMOMOLA] Name = Alomomola @@ -19286,12 +15728,6 @@ Shape = Finned Category = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [JOLTIK] Name = Joltik @@ -19318,12 +15754,6 @@ Shape = Insectoid Category = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GALVANTULA,Level,36 #------------------------------- [GALVANTULA] @@ -19350,12 +15780,6 @@ Shape = Insectoid Category = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FERROSEED] Name = Ferroseed @@ -19382,12 +15806,6 @@ Category = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FERROTHORN,Level,40 #------------------------------- [FERROTHORN] @@ -19414,12 +15832,6 @@ Category = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLINK] Name = Klink @@ -19444,12 +15856,6 @@ Shape = MultiBody Category = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KLANG,Level,38 #------------------------------- [KLANG] @@ -19475,12 +15881,6 @@ Shape = MultiBody Category = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KLINKLANG,Level,49 #------------------------------- [KLINKLANG] @@ -19506,12 +15906,6 @@ Shape = MultiBody Category = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYNAMO] Name = Tynamo @@ -19535,12 +15929,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTRIK,Level,39 #------------------------------- [EELEKTRIK] @@ -19565,12 +15953,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTROSS,Item,THUNDERSTONE #------------------------------- [EELEKTROSS] @@ -19595,12 +15977,6 @@ Shape = Finned Category = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELGYEM] Name = Elgyem @@ -19626,12 +16002,6 @@ Shape = BipedalTail Category = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEHEEYEM,Level,42 #------------------------------- [BEHEEYEM] @@ -19657,12 +16027,6 @@ Shape = Bipedal Category = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LITWICK] Name = Litwick @@ -19689,12 +16053,6 @@ Shape = HeadBase Category = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAMPENT,Level,41 #------------------------------- [LAMPENT] @@ -19721,12 +16079,6 @@ Shape = HeadArms Category = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANDELURE,Item,DUSKSTONE #------------------------------- [CHANDELURE] @@ -19753,12 +16105,6 @@ Shape = HeadArms Category = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AXEW] Name = Axew @@ -19784,12 +16130,6 @@ Shape = BipedalTail Category = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FRAXURE,Level,38 #------------------------------- [FRAXURE] @@ -19815,12 +16155,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HAXORUS,Level,48 #------------------------------- [HAXORUS] @@ -19846,12 +16180,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CUBCHOO] Name = Cubchoo @@ -19878,12 +16206,6 @@ Category = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. Generation = 5 WildItemCommon = ASPEARBERRY -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEARTIC,Level,37 #------------------------------- [BEARTIC] @@ -19910,12 +16232,6 @@ Category = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. Generation = 5 WildItemCommon = ASPEARBERRY -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRYOGONAL] Name = Cryogonal @@ -19940,12 +16256,6 @@ Category = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELMET] Name = Shelmet @@ -19971,12 +16281,6 @@ Shape = Head Category = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ACCELGOR,TradeSpecies,KARRABLAST #------------------------------- [ACCELGOR] @@ -20002,12 +16306,6 @@ Shape = HeadArms Category = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [STUNFISK] Name = Stunfisk @@ -20035,12 +16333,6 @@ Category = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. Generation = 5 WildItemUncommon = SOFTSAND -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIENFOO] Name = Mienfoo @@ -20066,12 +16358,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIENSHAO,Level,50 #------------------------------- [MIENSHAO] @@ -20097,12 +16383,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRUDDIGON] Name = Druddigon @@ -20129,12 +16409,6 @@ Category = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. Generation = 5 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOLETT] Name = Golett @@ -20161,12 +16435,6 @@ Category = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLURK,Level,43 #------------------------------- [GOLURK] @@ -20194,12 +16462,6 @@ Category = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PAWNIARD] Name = Pawniard @@ -20226,12 +16488,6 @@ Shape = Bipedal Category = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BISHARP,Level,52 #------------------------------- [BISHARP] @@ -20258,12 +16514,6 @@ Shape = Bipedal Category = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUFFALANT] Name = Bouffalant @@ -20289,12 +16539,6 @@ Shape = Quadruped Category = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RUFFLET] Name = Rufflet @@ -20320,12 +16564,6 @@ Shape = Winged Category = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRAVIARY,Level,54 #------------------------------- [BRAVIARY] @@ -20352,12 +16590,6 @@ Shape = Winged Category = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VULLABY] Name = Vullaby @@ -20384,12 +16616,6 @@ Shape = Winged Category = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANDIBUZZ,Level,54 #------------------------------- [MANDIBUZZ] @@ -20416,12 +16642,6 @@ Shape = Winged Category = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HEATMOR] Name = Heatmor @@ -20448,12 +16668,6 @@ Category = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. Generation = 5 WildItemRare = FLAMEORB -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DURANT] Name = Durant @@ -20480,12 +16694,6 @@ Shape = Insectoid Category = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEINO] Name = Deino @@ -20511,12 +16719,6 @@ Shape = Quadruped Category = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZWEILOUS,Level,50 #------------------------------- [ZWEILOUS] @@ -20542,12 +16744,6 @@ Shape = Quadruped Category = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HYDREIGON,Level,64 #------------------------------- [HYDREIGON] @@ -20573,12 +16769,6 @@ Shape = BipedalTail Category = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVESTA] Name = Larvesta @@ -20605,12 +16795,6 @@ Shape = Insectoid Category = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VOLCARONA,Level,59 #------------------------------- [VOLCARONA] @@ -20640,12 +16824,6 @@ Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COBALION] Name = Cobalion @@ -20670,12 +16848,6 @@ Shape = Quadruped Category = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TERRAKION] Name = Terrakion @@ -20700,12 +16872,6 @@ Shape = Quadruped Category = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VIRIZION] Name = Virizion @@ -20730,12 +16896,6 @@ Shape = Quadruped Category = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TORNADUS] Name = Tornadus @@ -20761,12 +16921,6 @@ Category = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THUNDURUS] Name = Thundurus @@ -20793,12 +16947,6 @@ Category = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RESHIRAM] Name = Reshiram @@ -20823,12 +16971,6 @@ Shape = Winged Category = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZEKROM] Name = Zekrom @@ -20853,12 +16995,6 @@ Shape = BipedalTail Category = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LANDORUS] Name = Landorus @@ -20885,12 +17021,6 @@ Category = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KYUREM] Name = Kyurem @@ -20915,12 +17045,6 @@ Shape = BipedalTail Category = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KELDEO] Name = Keldeo @@ -20946,12 +17070,6 @@ Category = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELOETTA] Name = Meloetta @@ -20980,12 +17098,6 @@ Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GENESECT] Name = Genesect @@ -21011,9 +17123,3 @@ Category = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 diff --git a/PBS/Gen 5/pokemon_forms.txt b/PBS/Gen 5/pokemon_forms.txt index 8837a3174..7f5947596 100644 --- a/PBS/Gen 5/pokemon_forms.txt +++ b/PBS/Gen 5/pokemon_forms.txt @@ -3,7 +3,6 @@ [PICHU,2] FormName = Spiky-Eared Generation = 4 -BattlerEnemyX = 3 Evolutions = PIKACHU,None, #------------------------------- [UNOWN,1] @@ -93,23 +92,16 @@ Generation = 3 FormName = Sunny Form Type1 = FIRE Color = Red -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,2] FormName = Rainy Form Type1 = WATER Color = Blue -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,3] FormName = Snowy Form Type1 = ICE Color = White -BattlerPlayerX = -1 -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [DEOXYS,1] FormName = Attack Forme @@ -117,10 +109,6 @@ BaseStats = 50,180,20,150,180,20 EVs = 0,2,0,0,1,0 Moves = 1,LEER,1,WRAP,9,NIGHTSHADE,17,TELEPORT,25,TAUNT,33,PURSUIT,41,PSYCHIC,49,SUPERPOWER,57,PSYCHOSHIFT,65,ZENHEADBUTT,73,COSMICPOWER,81,ZAPCANNON,89,PSYCHOBOOST,97,HYPERBEAM TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,CALMMIND,CHARGEBEAM,CUT,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASH,FLASHCANNON,FLING,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HEADBUTT,HIDDENPOWER,HYPERBEAM,ICEBEAM,LIGHTSCREEN,LOWKICK,LOWSWEEP,MUDSLAP,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKSMASH,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STRENGTH,SUBSTITUTE,SUNNYDAY,SUPERPOWER,SWAGGER,SWIFT,TAUNT,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 4 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,2] FormName = Defense Forme @@ -128,10 +116,6 @@ BaseStats = 50,70,160,90,70,160 EVs = 0,0,2,0,0,1 Moves = 1,LEER,1,WRAP,9,NIGHTSHADE,17,TELEPORT,25,KNOCKOFF,33,SPIKES,41,PSYCHIC,49,SNATCH,57,PSYCHOSHIFT,65,ZENHEADBUTT,73,IRONDEFENSE,73,AMNESIA,81,RECOVER,89,PSYCHOBOOST,97,COUNTER,97,MIRRORCOAT TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,CALMMIND,CHARGEBEAM,CUT,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASH,FLASHCANNON,FLING,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HEADBUTT,HIDDENPOWER,HYPERBEAM,ICEBEAM,IRONDEFENSE,KNOCKOFF,LIGHTSCREEN,LOWKICK,LOWSWEEP,MUDSLAP,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKSMASH,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,TAUNT,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 3 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,3] FormName = Speed Forme @@ -139,18 +123,12 @@ BaseStats = 50,95,90,180,95,90 EVs = 0,0,0,3,0,0 Moves = 1,LEER,1,WRAP,9,NIGHTSHADE,17,DOUBLETEAM,25,KNOCKOFF,33,PURSUIT,41,PSYCHIC,49,SWIFT,57,PSYCHOSHIFT,65,ZENHEADBUTT,73,AGILITY,81,RECOVER,89,PSYCHOBOOST,97,EXTREMESPEED TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,CALMMIND,CHARGEBEAM,CUT,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FIREPUNCH,FLASH,FLASHCANNON,FLING,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HEADBUTT,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICEPUNCH,KNOCKOFF,LIGHTSCREEN,LOWKICK,LOWSWEEP,MUDSLAP,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKSMASH,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,TAUNT,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = -4 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowSize = 3 #------------------------------- [BURMY,1] FormName = Sandy Cloak -Flags = InheritFormFromMother #------------------------------- [BURMY,2] FormName = Trash Cloak -Flags = InheritFormFromMother #------------------------------- [WORMADAM,1] FormName = Sandy Cloak @@ -161,7 +139,6 @@ EVs = 0,0,2,0,0,0 Moves = 1,TACKLE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,ROCKBLAST,29,HARDEN,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,FISSURE TutorMoves = ATTRACT,BUGBITE,BULLDOZE,DIG,DOUBLETEAM,DREAMEATER,EARTHPOWER,EARTHQUAKE,ELECTROWEB,ENDEAVOR,FACADE,FLASH,FRUSTRATION,GIGAIMPACT,HIDDENPOWER,HYPERBEAM,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,STRINGSHOT,STRUGGLEBUG,SUBSTITUTE,SUCKERPUNCH,SUNNYDAY,SWAGGER,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Brown -Flags = InheritFormFromMother #------------------------------- [WORMADAM,2] FormName = Trash Cloak @@ -172,65 +149,43 @@ EVs = 0,0,1,0,0,1 Moves = 1,TACKLE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,MIRRORSHOT,29,METALSOUND,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,IRONHEAD TutorMoves = ATTRACT,BUGBITE,DOUBLETEAM,DREAMEATER,ELECTROWEB,ENDEAVOR,FACADE,FLASH,FLASHCANNON,FRUSTRATION,GIGAIMPACT,GUNKSHOT,GYROBALL,HIDDENPOWER,HYPERBEAM,IRONDEFENSE,IRONHEAD,MAGNETRISE,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,STRINGSHOT,STRUGGLEBUG,SUBSTITUTE,SUCKERPUNCH,SUNNYDAY,SWAGGER,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Red -Flags = InheritFormFromMother #------------------------------- [CHERRIM,1] FormName = Sunshine Form Color = Pink -BattlerPlayerX = 2 -BattlerEnemyX = 2 -BattlerEnemyY = 21 #------------------------------- [SHELLOS,1] FormName = East Sea Color = Blue -Flags = InheritFormFromMother #------------------------------- [GASTRODON,1] FormName = East Sea Color = Blue -Flags = InheritFormFromMother #------------------------------- [ROTOM,1] FormName = Heat Rotom Type1 = ELECTRIC Type2 = FIRE -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,2] FormName = Wash Rotom Type1 = ELECTRIC Type2 = WATER -BattlerPlayerX = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,3] FormName = Frost Rotom Type1 = ELECTRIC Type2 = ICE -BattlerPlayerX = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -4 -BattlerShadowSize = 2 #------------------------------- [ROTOM,4] FormName = Fan Rotom Type1 = ELECTRIC Type2 = FLYING -BattlerPlayerX = -4 -BattlerEnemyX = -2 -BattlerEnemyY = 2 -BattlerShadowSize = 2 #------------------------------- [ROTOM,5] FormName = Mow Rotom Type1 = ELECTRIC Type2 = GRASS -BattlerPlayerX = 1 -BattlerEnemyY = 0 -BattlerShadowSize = 2 #------------------------------- [GIRATINA,1] FormName = Origin Forme @@ -241,8 +196,6 @@ TutorMoves = AERIALACE,AIRCUTTER,ANCIENTPOWER,AQUATAIL,BULLDOZE,CALMMIND,CHARGEB Height = 6.9 Weight = 650.0 Shape = Serpentine -BattlerEnemyX = -2 -BattlerEnemyY = -8 #------------------------------- [SHAYMIN,1] FormName = Sky Forme @@ -255,8 +208,6 @@ Moves = 1,GROWTH,10,MAGICALLEAF,19,LEECHSEED,28,QUICKATTACK,37,SWEETSCENT,46,NAT TutorMoves = AIRCUTTER,COVET,DOUBLETEAM,ENERGYBALL,FACADE,FLASH,FRUSTRATION,GIGADRAIN,GIGAIMPACT,GRASSKNOT,HEADBUTT,HIDDENPOWER,HYPERBEAM,LASTRESORT,MUDSLAP,OMINOUSWIND,PROTECT,PSYCHIC,PSYCHUP,REST,RETURN,ROUND,SAFEGUARD,SEEDBOMB,SLEEPTALK,SNORE,SOLARBEAM,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,SWORDSDANCE,SYNTHESIS,TAILWIND,TOXIC,WORRYSEED,ZENHEADBUTT Height = 0.4 Weight = 5.2 -BattlerEnemyY = 16 -BattlerShadowSize = 2 #------------------------------- [ARCEUS,1] FormName = Fighting Type @@ -331,7 +282,6 @@ Type1 = DARK FormName = Blue-Striped Abilities = ROCKHEAD,ADAPTABILITY WildItemUncommon = DEEPSEASCALE -Flags = InheritFormFromMother #------------------------------- [DARMANITAN,1] FormName = Zen Mode @@ -340,9 +290,6 @@ Type2 = PSYCHIC BaseStats = 105,30,105,55,140,105 EVs = 0,0,0,0,2,0 Color = Blue -BattlerPlayerX = 1 -BattlerEnemyY = 30 -BattlerShadowSize = 2 #------------------------------- [DEERLING,1] FormName = Summer Form @@ -370,9 +317,6 @@ Abilities = REGENERATOR HiddenAbilities = REGENERATOR Height = 1.4 Shape = Winged -BattlerPlayerX = -2 -BattlerEnemyX = 8 -BattlerEnemyY = 11 #------------------------------- [THUNDURUS,1] FormName = Therian Forme @@ -382,9 +326,6 @@ Abilities = VOLTABSORB HiddenAbilities = VOLTABSORB Height = 3.0 Shape = BipedalTail -BattlerPlayerX = -3 -BattlerEnemyX = 2 -BattlerEnemyY = 5 #------------------------------- [LANDORUS,1] FormName = Therian Forme @@ -394,9 +335,6 @@ Abilities = INTIMIDATE HiddenAbilities = INTIMIDATE Height = 1.3 Shape = Quadruped -BattlerPlayerX = -8 -BattlerEnemyX = 3 -BattlerEnemyY = 14 #------------------------------- [KYUREM,1] FormName = White Kyurem @@ -405,9 +343,6 @@ EVs = 0,0,0,0,3,0 Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,IMPRISON,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,2] FormName = Black Kyurem @@ -416,8 +351,6 @@ EVs = 0,3,0,0,0,0 Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,IMPRISON,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KYUREM,3] PokedexForm = 1 @@ -426,9 +359,6 @@ EVs = 0,0,0,0,3,0 Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,IMPRISON,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,4] PokedexForm = 2 @@ -437,15 +367,10 @@ EVs = 0,3,0,0,0,0 Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,IMPRISON,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KELDEO,1] FormName = Resolute Form TutorMoves = AERIALACE,AQUATAIL,BOUNCE,CALMMIND,COVET,CUT,DOUBLETEAM,ENDEAVOR,FACADE,FALSESWIPE,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,HAIL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICYWIND,LASTRESORT,POISONJAB,PROTECT,PSYCHUP,RAINDANCE,REFLECT,REST,RETALIATE,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SCALD,SLEEPTALK,SNORE,STONEEDGE,STRENGTH,SUBSTITUTE,SUPERPOWER,SURF,SWAGGER,SWORDSDANCE,TAUNT,TOXIC,WORKUP,XSCISSOR -BattlerPlayerX = 1 -BattlerEnemyX = 0 -BattlerEnemyY = 19 #------------------------------- [MELOETTA,1] FormName = Pirouette Forme @@ -453,8 +378,6 @@ Type1 = NORMAL Type2 = FIGHTING BaseStats = 100,128,90,128,77,77 EVs = 0,1,1,1,0,0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 #------------------------------- [GENESECT,1] FormName = Shock Drive diff --git a/PBS/Gen 5/pokemon_metrics.txt b/PBS/Gen 5/pokemon_metrics.txt new file mode 100644 index 000000000..242d70fa7 --- /dev/null +++ b/PBS/Gen 5/pokemon_metrics.txt @@ -0,0 +1,4045 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[BULBASAUR] +BackSprite = -4,0 +FrontSprite = -1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[IVYSAUR] +BackSprite = -9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENUSAUR] +BackSprite = 1,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHARMANDER] +BackSprite = -6,0 +FrontSprite = 4,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHARMELEON] +BackSprite = -3,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHARIZARD] +BackSprite = -2,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SQUIRTLE] +BackSprite = -3,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WARTORTLE] +BackSprite = -2,0 +FrontSprite = -4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLASTOISE] +BackSprite = -3,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CATERPIE] +BackSprite = -5,0 +FrontSprite = -3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[METAPOD] +BackSprite = -1,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUTTERFREE] +BackSprite = -10,0 +FrontSprite = 8,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEDLE] +BackSprite = 0,0 +FrontSprite = 3,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KAKUNA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEEDRILL] +BackSprite = 9,0 +FrontSprite = -8,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEY] +BackSprite = -9,0 +FrontSprite = 4,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIDGEOTTO] +BackSprite = -7,0 +FrontSprite = 8,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEOT] +BackSprite = 0,0 +FrontSprite = 7,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RATTATA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RATICATE] +BackSprite = -7,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPEAROW] +BackSprite = -5,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FEAROW] +BackSprite = 10,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EKANS] +BackSprite = -3,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARBOK] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIKACHU] +BackSprite = -5,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[RAICHU] +BackSprite = -5,0 +FrontSprite = 11,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SANDSHREW] +BackSprite = -5,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDSLASH] +BackSprite = 0,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANfE] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINA] +BackSprite = 3,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NIDOQUEEN] +BackSprite = 0,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANmA] +BackSprite = -1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINO] +BackSprite = 1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDOKING] +BackSprite = 4,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLEFAIRY] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLEFABLE] +BackSprite = 4,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VULPIX] +BackSprite = -6,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINETALES] +BackSprite = -3,0 +FrontSprite = 6,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JIGGLYPUFF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WIGGLYTUFF] +BackSprite = 0,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZUBAT] +BackSprite = 0,0 +FrontSprite = -2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLBAT] +BackSprite = 6,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ODDISH] +BackSprite = 2,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLOOM] +BackSprite = 1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VILEPLUME] +BackSprite = 0,0 +FrontSprite = 3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PARAS] +BackSprite = 5,0 +FrontSprite = -3,33 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PARASECT] +BackSprite = 1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VENONAT] +BackSprite = 6,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENOMOTH] +BackSprite = -4,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DIGLETT] +BackSprite = 0,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUGTRIO] +BackSprite = 1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEOWTH] +BackSprite = 3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PERSIAN] +BackSprite = -3,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PSYDUCK] +BackSprite = 0,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLDUCK] +BackSprite = -1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MANKEY] +BackSprite = -2,0 +FrontSprite = 3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PRIMEAPE] +BackSprite = 5,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROWLITHE] +BackSprite = -4,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCANINE] +BackSprite = -9,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWAG] +BackSprite = 0,0 +FrontSprite = 9,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLIWHIRL] +BackSprite = 10,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWRATH] +BackSprite = 1,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ABRA] +BackSprite = 3,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KADABRA] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALAKAZAM] +BackSprite = 4,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MACHOP] +BackSprite = 3,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHOKE] +BackSprite = 7,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHAMP] +BackSprite = 7,0 +FrontSprite = -9,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELLSPROUT] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WEEPINBELL] +BackSprite = 4,0 +FrontSprite = 5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VICTREEBEL] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TENTACOOL] +BackSprite = 9,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TENTACRUEL] +BackSprite = 0,0 +FrontSprite = 0,1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GEODUDE] +BackSprite = -6,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRAVELER] +BackSprite = -4,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLEM] +BackSprite = 0,0 +FrontSprite = -3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PONYTA] +BackSprite = 2,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAPIDASH] +BackSprite = -7,0 +FrontSprite = 5,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWPOKE] +BackSprite = -4,0 +FrontSprite = 3,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWBRO] +BackSprite = -7,0 +FrontSprite = 6,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGNEMITE] +BackSprite = 2,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MAGNETON] +BackSprite = -3,0 +FrontSprite = 0,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FARFETCHD] +BackSprite = 4,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODUO] +BackSprite = 14,0 +FrontSprite = -10,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODRIO] +BackSprite = 8,0 +FrontSprite = -2,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEL] +BackSprite = -8,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEWGONG] +BackSprite = -7,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GRIMER] +BackSprite = 3,0 +FrontSprite = -6,24 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUK] +BackSprite = -2,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELLDER] +BackSprite = -1,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLOYSTER] +BackSprite = 0,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GASTLY] +BackSprite = -1,0 +FrontSprite = 6,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HAUNTER] +BackSprite = -1,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GENGAR] +BackSprite = -3,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ONIX] +BackSprite = 3,0 +FrontSprite = -2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DROWZEE] +BackSprite = 4,0 +FrontSprite = -3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HYPNO] +BackSprite = 8,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KRABBY] +BackSprite = 4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KINGLER] +BackSprite = -2,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VOLTORB] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRODE] +BackSprite = 0,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXEGGCUTE] +BackSprite = 0,0 +FrontSprite = 0,28 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXEGGUTOR] +BackSprite = 0,0 +FrontSprite = -1,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CUBONE] +BackSprite = 2,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAROWAK] +BackSprite = -2,0 +FrontSprite = -8,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONLEE] +BackSprite = 8,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONCHAN] +BackSprite = 4,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LICKITUNG] +BackSprite = -2,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KOFFING] +BackSprite = -2,0 +FrontSprite = 1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEZING] +BackSprite = -2,0 +FrontSprite = -3,-2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYHORN] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYDON] +BackSprite = 5,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHANSEY] +BackSprite = -1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TANGELA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KANGASKHAN] +BackSprite = 3,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HORSEA] +BackSprite = 1,0 +FrontSprite = 3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SEADRA] +BackSprite = -3,0 +FrontSprite = 9,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOLDEEN] +BackSprite = -4,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEAKING] +BackSprite = -8,0 +FrontSprite = 8,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARYU] +BackSprite = 3,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARMIE] +BackSprite = 2,0 +FrontSprite = 2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MRMIME] +BackSprite = 5,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCYTHER] +BackSprite = -5,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JYNX] +BackSprite = 3,0 +FrontSprite = -5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTABUZZ] +BackSprite = 0,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMAR] +BackSprite = -1,0 +FrontSprite = -7,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PINSIR] +BackSprite = 5,0 +FrontSprite = -3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAUROS] +BackSprite = -1,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGIKARP] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GYARADOS] +BackSprite = 2,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LAPRAS] +BackSprite = 1,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DITTO] +BackSprite = 0,0 +FrontSprite = 0,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EEVEE] +BackSprite = -7,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VAPOREON] +BackSprite = 4,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JOLTEON] +BackSprite = -4,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAREON] +BackSprite = -7,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PORYGON] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMANYTE] +BackSprite = 0,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMASTAR] +BackSprite = 5,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTO] +BackSprite = 0,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTOPS] +BackSprite = 7,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AERODACTYL] +BackSprite = -4,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNORLAX] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARTICUNO] +BackSprite = 8,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZAPDOS] +BackSprite = 5,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MOLTRES] +BackSprite = 0,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRATINI] +BackSprite = -2,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAGONAIR] +BackSprite = 2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DRAGONITE] +BackSprite = 5,0 +FrontSprite = 6,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEWTWO] +BackSprite = 14,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEW] +BackSprite = -8,0 +FrontSprite = -9,-3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHIKORITA] +BackSprite = -8,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BAYLEEF] +BackSprite = -3,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEGANIUM] +BackSprite = 0,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CYNDAQUIL] +BackSprite = -8,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUILAVA] +BackSprite = -8,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYPHLOSION] +BackSprite = 0,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOTODILE] +BackSprite = -2,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CROCONAW] +BackSprite = -1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FERALIGATR] +BackSprite = 2,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SENTRET] +BackSprite = 3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FURRET] +BackSprite = -12,0 +FrontSprite = -2,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOOTHOOT] +BackSprite = 5,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NOCTOWL] +BackSprite = -2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDYBA] +BackSprite = 4,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDIAN] +BackSprite = 1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPINARAK] +BackSprite = 0,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARIADOS] +BackSprite = 5,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROBAT] +BackSprite = 4,0 +FrontSprite = 4,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHINCHOU] +BackSprite = 5,0 +FrontSprite = 3,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LANTURN] +BackSprite = 1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PICHU] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PICHU,2] +BackSprite = -5,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLEFFA] +BackSprite = 0,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[IGGLYBUFF] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGEPI] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGETIC] +BackSprite = -2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NATU] +BackSprite = -5,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[XATU] +BackSprite = -3,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAREEP] +BackSprite = -1,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAAFFY] +BackSprite = -3,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AMPHAROS] +BackSprite = 4,0 +FrontSprite = -5,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BELLOSSOM] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARILL] +BackSprite = -2,0 +FrontSprite = 6,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZUMARILL] +BackSprite = 1,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SUDOWOODO] +BackSprite = 5,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLITOED] +BackSprite = 4,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOPPIP] +BackSprite = 9,0 +FrontSprite = 3,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SKIPLOOM] +BackSprite = 2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JUMPLUFF] +BackSprite = -6,0 +FrontSprite = -1,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AIPOM] +BackSprite = -11,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNKERN] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNFLORA] +BackSprite = 0,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[YANMA] +BackSprite = -8,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WOOPER] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUAGSIRE] +BackSprite = 6,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ESPEON] +BackSprite = -4,0 +FrontSprite = -4,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UMBREON] +BackSprite = 0,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MURKROW] +BackSprite = 0,0 +FrontSprite = 1,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLOWKING] +BackSprite = 0,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISDREAVUS] +BackSprite = -4,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[UNOWN] +BackSprite = 0,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WOBBUFFET] +BackSprite = -3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIRAFARIG] +BackSprite = -3,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PINECO] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FORRETRESS] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUNSPARCE] +BackSprite = 0,0 +FrontSprite = 5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GLIGAR] +BackSprite = 2,0 +FrontSprite = -2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STEELIX] +BackSprite = 2,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SNUBBULL] +BackSprite = 1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRANBULL] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[QWILFISH] +BackSprite = -5,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCIZOR] +BackSprite = 6,0 +FrontSprite = -4,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHUCKLE] +BackSprite = 1,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERACROSS] +BackSprite = 0,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNEASEL] +BackSprite = -3,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TEDDIURSA] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[URSARING] +BackSprite = 1,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLUGMA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGCARGO] +BackSprite = -1,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWINUB] +BackSprite = 0,0 +FrontSprite = -1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PILOSWINE] +BackSprite = 0,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORSOLA] +BackSprite = -1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REMORAID] +BackSprite = -7,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OCTILLERY] +BackSprite = 4,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DELIBIRD] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTINE] +BackSprite = 0,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKARMORY] +BackSprite = 4,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOUNDOUR] +BackSprite = -1,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOUNDOOM] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KINGDRA] +BackSprite = -5,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHANPY] +BackSprite = 3,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DONPHAN] +BackSprite = 3,0 +FrontSprite = -10,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGON2] +BackSprite = 3,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STANTLER] +BackSprite = 3,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMEARGLE] +BackSprite = 5,0 +FrontSprite = -6,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYROGUE] +BackSprite = 4,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HITMONTOP] +BackSprite = 0,0 +FrontSprite = -2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMOOCHUM] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELEKID] +BackSprite = 9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGBY] +BackSprite = -1,0 +FrontSprite = 4,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MILTANK] +BackSprite = -3,0 +FrontSprite = 8,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLISSEY] +BackSprite = -2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAIKOU] +BackSprite = -4,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ENTEI] +BackSprite = -4,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SUICUNE] +BackSprite = 1,0 +FrontSprite = -1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVITAR] +BackSprite = -6,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PUPITAR] +BackSprite = -4,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYRANITAR] +BackSprite = -3,0 +FrontSprite = 7,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUGIA] +BackSprite = 5,0 +FrontSprite = -2,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOOH] +BackSprite = 3,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CELEBI] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TREECKO] +BackSprite = -2,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GROVYLE] +BackSprite = 1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCEPTILE] +BackSprite = 4,0 +FrontSprite = 1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORCHIC] +BackSprite = -2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBUSKEN] +BackSprite = 8,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLAZIKEN] +BackSprite = -6,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUDKIP] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MARSHTOMP] +BackSprite = -2,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWAMPERT] +BackSprite = 2,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POOCHYENA] +BackSprite = 5,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIGHTYENA] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZIGZAGOON] +BackSprite = -1,0 +FrontSprite = -5,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LINOONE] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WURMPLE] +BackSprite = -1,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SILCOON] +BackSprite = -2,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEAUTIFLY] +BackSprite = -10,0 +FrontSprite = 9,1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASCOON] +BackSprite = -2,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSTOX] +BackSprite = 6,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOTAD] +BackSprite = 0,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOMBRE] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUDICOLO] +BackSprite = 4,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEDOT] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NUZLEAF] +BackSprite = 2,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHIFTRY] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAILLOW] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWELLOW] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WINGULL] +BackSprite = 2,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PELIPPER] +BackSprite = 0,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RALTS] +BackSprite = 5,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KIRLIA] +BackSprite = 0,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GARDEVOIR] +BackSprite = -5,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SURSKIT] +BackSprite = 1,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MASQUERAIN] +BackSprite = 2,0 +FrontSprite = -4,-8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHROOMISH] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BRELOOM] +BackSprite = -15,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKOTH] +BackSprite = 5,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIGOROTH] +BackSprite = 4,0 +FrontSprite = -4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKING] +BackSprite = 2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NINCADA] +BackSprite = -1,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINJASK] +BackSprite = 0,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHEDINJA] +BackSprite = 0,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISMUR] +BackSprite = 7,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOUDRED] +BackSprite = 2,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXPLOUD] +BackSprite = 0,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAKUHITA] +BackSprite = 4,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HARIYAMA] +BackSprite = 3,0 +FrontSprite = -3,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AZURILL] +BackSprite = -12,0 +FrontSprite = 14,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NOSEPASS] +BackSprite = 5,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKITTY] +BackSprite = -10,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DELCATTY] +BackSprite = 3,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SABLEYE] +BackSprite = 0,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAWILE] +BackSprite = 2,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARON] +BackSprite = -1,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAIRON] +BackSprite = -1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AGGRON] +BackSprite = 7,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEDITITE] +BackSprite = -2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEDICHAM] +BackSprite = 2,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRIKE] +BackSprite = -2,0 +FrontSprite = -3,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANECTRIC] +BackSprite = 2,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PLUSLE] +BackSprite = -12,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MINUN] +BackSprite = -3,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VOLBEAT] +BackSprite = 0,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ILLUMISE] +BackSprite = 0,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSELIA] +BackSprite = 2,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GULPIN] +BackSprite = -1,0 +FrontSprite = 1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWALOT] +BackSprite = -1,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CARVANHA] +BackSprite = -1,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHARPEDO] +BackSprite = -2,0 +FrontSprite = 3,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WAILMER] +BackSprite = 0,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WAILORD] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NUMEL] +BackSprite = 2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CAMERUPT] +BackSprite = -1,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORKOAL] +BackSprite = -2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPOINK] +BackSprite = 1,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRUMPIG] +BackSprite = -4,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPINDA] +BackSprite = 0,0 +FrontSprite = 4,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRAPINCH] +BackSprite = 0,0 +FrontSprite = -2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VIBRAVA] +BackSprite = -11,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLYGON] +BackSprite = -7,0 +FrontSprite = 11,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CACNEA] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CACTURNE] +BackSprite = 7,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWABLU] +BackSprite = 4,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ALTARIA] +BackSprite = -10,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZANGOOSE] +BackSprite = -1,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEVIPER] +BackSprite = 4,0 +FrontSprite = 5,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUNATONE] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLROCK] +BackSprite = 2,0 +FrontSprite = 1,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BARBOACH] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISCASH] +BackSprite = -4,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORPHISH] +BackSprite = 2,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRAWDAUNT] +BackSprite = 9,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BALTOY] +BackSprite = 0,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLAYDOL] +BackSprite = 1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LILEEP] +BackSprite = 5,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRADILY] +BackSprite = 1,0 +FrontSprite = -3,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ANORITH] +BackSprite = 10,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARMALDO] +BackSprite = 0,0 +FrontSprite = 4,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FEEBAS] +BackSprite = -5,0 +FrontSprite = 1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MILOTIC] +BackSprite = -3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CASTFORM] +BackSprite = 1,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASTFORM,1] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,2] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,3] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KECLEON] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHUPPET] +BackSprite = -4,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BANETTE] +BackSprite = -6,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUSKULL] +BackSprite = 6,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSCLOPS] +BackSprite = 1,0 +FrontSprite = 7,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TROPIUS] +BackSprite = 4,0 +FrontSprite = 7,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMECHO] +BackSprite = 9,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ABSOL] +BackSprite = -5,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WYNAUT] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SNORUNT] +BackSprite = -1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLALIE] +BackSprite = -5,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPHEAL] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEALEO] +BackSprite = 1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WALREIN] +BackSprite = 0,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLAMPERL] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HUNTAIL] +BackSprite = -3,0 +FrontSprite = 0,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOREBYSS] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RELICANTH] +BackSprite = -7,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUVDISC] +BackSprite = -3,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BAGON] +BackSprite = 3,0 +FrontSprite = -5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHELGON] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SALAMENCE] +BackSprite = -1,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELDUM] +BackSprite = -6,0 +FrontSprite = 3,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[METANG] +BackSprite = 2,0 +FrontSprite = 3,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[METAGROSS] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIROCK] +BackSprite = 1,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGICE] +BackSprite = -3,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGISTEEL] +BackSprite = 1,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LATIAS] +BackSprite = 5,0 +FrontSprite = -2,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LATIOS] +BackSprite = 3,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KYOGRE] +BackSprite = 0,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROUDON] +BackSprite = -1,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RAYQUAZA] +BackSprite = 4,0 +FrontSprite = -3,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JIRACHI] +BackSprite = -1,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEOXYS] +BackSprite = 0,0 +FrontSprite = 2,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DEOXYS,1] +BackSprite = 4,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,2] +BackSprite = 3,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,3] +BackSprite = -4,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TURTWIG] +BackSprite = -3,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GROTLE] +BackSprite = -4,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORTERRA] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMCHAR] +BackSprite = 4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MONFERNO] +BackSprite = -6,0 +FrontSprite = 10,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[INFERNAPE] +BackSprite = 1,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIPLUP] +BackSprite = 0,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PRINPLUP] +BackSprite = 2,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMPOLEON] +BackSprite = 2,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[STARLY] +BackSprite = -3,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STARAVIA] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARAPTOR] +BackSprite = -5,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BIDOOF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BIBAREL] +BackSprite = -6,0 +FrontSprite = 7,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KRICKETOT] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KRICKETUNE] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHINX] +BackSprite = -9,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXIO] +BackSprite = 1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXRAY] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BUDEW] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSERADE] +BackSprite = 8,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRANIDOS] +BackSprite = 0,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAMPARDOS] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHIELDON] +BackSprite = 0,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASTIODON] +BackSprite = -4,0 +FrontSprite = -5,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BURMY] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WORMADAM] +BackSprite = 0,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MOTHIM] +BackSprite = 11,0 +FrontSprite = 4,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBEE] +BackSprite = 1,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VESPIQUEN] +BackSprite = -1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PACHIRISU] +BackSprite = -5,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BUIZEL] +BackSprite = -12,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLOATZEL] +BackSprite = 3,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHERUBI] +BackSprite = -3,0 +FrontSprite = 6,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM] +BackSprite = -1,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM,1] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHELLOS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GASTRODON] +BackSprite = -6,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AMBIPOM] +BackSprite = 8,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFLOON] +BackSprite = 2,0 +FrontSprite = 4,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFBLIM] +BackSprite = -1,0 +FrontSprite = 3,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUNEARY] +BackSprite = 8,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOPUNNY] +BackSprite = -6,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISMAGIUS] +BackSprite = -3,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HONCHKROW] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLAMEOW] +BackSprite = -6,0 +FrontSprite = 7,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PURUGLY] +BackSprite = 4,0 +FrontSprite = -4,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHINGLING] +BackSprite = 1,0 +FrontSprite = 3,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNKY] +BackSprite = -3,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKUNTANK] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BRONZOR] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRONZONG] +BackSprite = 5,0 +FrontSprite = -2,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BONSLY] +BackSprite = 3,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MIMEJR] +BackSprite = -1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HAPPINY] +BackSprite = -2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHATOT] +BackSprite = -6,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPIRITOMB] +BackSprite = 2,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIBLE] +BackSprite = -2,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GABITE] +BackSprite = -6,0 +FrontSprite = -2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GARCHOMP] +BackSprite = 0,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUNCHLAX] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RIOLU] +BackSprite = -9,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LUCARIO] +BackSprite = 8,0 +FrontSprite = 1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HIPPOPOTAS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HIPPOWDON] +BackSprite = 2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKORUPI] +BackSprite = -3,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAPION] +BackSprite = 7,0 +FrontSprite = -11,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROAGUNK] +BackSprite = -1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TOXICROAK] +BackSprite = 0,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARNIVINE] +BackSprite = -2,0 +FrontSprite = 3,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FINNEON] +BackSprite = -7,0 +FrontSprite = 4,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUMINEON] +BackSprite = -8,0 +FrontSprite = 5,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTYKE] +BackSprite = -1,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNOVER] +BackSprite = 1,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ABOMASNOW] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WEAVILE] +BackSprite = -4,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGNEZONE] +BackSprite = 0,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LICKILICKY] +BackSprite = 1,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYPERIOR] +BackSprite = 1,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TANGROWTH] +BackSprite = 0,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTIVIRE] +BackSprite = 0,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMORTAR] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOGEKISS] +BackSprite = -3,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YANMEGA] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LEAFEON] +BackSprite = -3,0 +FrontSprite = 5,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLACEON] +BackSprite = -3,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLISCOR] +BackSprite = 3,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAMOSWINE] +BackSprite = -1,0 +FrontSprite = -7,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGONZ] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GALLADE] +BackSprite = 1,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PROBOPASS] +BackSprite = 5,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUSKNOIR] +BackSprite = 5,0 +FrontSprite = -4,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FROSLASS] +BackSprite = 6,0 +FrontSprite = 4,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM] +BackSprite = 5,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM,1] +BackSprite = 5,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,2] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,3] +BackSprite = 0,0 +FrontSprite = 1,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,4] +BackSprite = -4,0 +FrontSprite = -2,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,5] +BackSprite = 1,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UXIE] +BackSprite = -1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MESPRIT] +BackSprite = 1,0 +FrontSprite = -3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZELF] +BackSprite = 0,0 +FrontSprite = 9,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DIALGA] +BackSprite = 1,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PALKIA] +BackSprite = 0,0 +FrontSprite = 4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HEATRAN] +BackSprite = 2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIGIGAS] +BackSprite = 0,0 +FrontSprite = -4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA] +BackSprite = -6,0 +FrontSprite = -3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA,1] +BackSprite = -6,0 +FrontSprite = -2,-8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRESSELIA] +BackSprite = -5,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHIONE] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MANAPHY] +BackSprite = -9,0 +FrontSprite = 7,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DARKRAI] +BackSprite = 0,0 +FrontSprite = -2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHAYMIN] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHAYMIN,1] +BackSprite = 0,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCEUS] +BackSprite = -4,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VICTINI] +BackSprite = 0,0 +FrontSprite = -3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNIVY] +BackSprite = -2,0 +FrontSprite = 3,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SERVINE] +BackSprite = 0,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SERPERIOR] +BackSprite = -3,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TEPIG] +BackSprite = -4,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIGNITE] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMBOAR] +BackSprite = 1,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[OSHAWOTT] +BackSprite = 0,0 +FrontSprite = 2,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEWOTT] +BackSprite = 2,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SAMUROTT] +BackSprite = -1,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PATRAT] +BackSprite = -1,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WATCHOG] +BackSprite = -2,0 +FrontSprite = 6,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIPUP] +BackSprite = 1,0 +FrontSprite = -2,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERDIER] +BackSprite = -3,0 +FrontSprite = -3,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STOUTLAND] +BackSprite = -1,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PURRLOIN] +BackSprite = 2,0 +FrontSprite = -2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LIEPARD] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PANSAGE] +BackSprite = 0,0 +FrontSprite = 6,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISAGE] +BackSprite = -1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANSEAR] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISEAR] +BackSprite = 0,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANPOUR] +BackSprite = 0,0 +FrontSprite = 8,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMIPOUR] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MUNNA] +BackSprite = 0,0 +FrontSprite = 0,33 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MUSHARNA] +BackSprite = 6,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDOVE] +BackSprite = -3,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRANQUILL] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UNFEZANT] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLITZLE] +BackSprite = -6,0 +FrontSprite = -4,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZEBSTRIKA] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ROGGENROLA] +BackSprite = 0,0 +FrontSprite = 0,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BOLDORE] +BackSprite = 2,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIGALITH] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WOOBAT] +BackSprite = 2,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWOOBAT] +BackSprite = -3,0 +FrontSprite = -1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRILBUR] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXCADRILL] +BackSprite = -1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AUDINO] +BackSprite = 2,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TIMBURR] +BackSprite = -1,0 +FrontSprite = 4,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GURDURR] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CONKELDURR] +BackSprite = 3,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYMPOLE] +BackSprite = 0,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PALPITOAD] +BackSprite = -6,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEISMITOAD] +BackSprite = 2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THROH] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SAWK] +BackSprite = 2,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEWADDLE] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWADLOON] +BackSprite = 1,0 +FrontSprite = 1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEAVANNY] +BackSprite = 0,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VENIPEDE] +BackSprite = -3,0 +FrontSprite = 2,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIRLIPEDE] +BackSprite = 4,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCOLIPEDE] +BackSprite = 2,0 +FrontSprite = -3,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COTTONEE] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIMSICOTT] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PETILIL] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIGANT] +BackSprite = 1,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASCULIN] +BackSprite = -7,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDILE] +BackSprite = -2,0 +FrontSprite = -1,37 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KROKOROK] +BackSprite = 3,0 +FrontSprite = 5,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KROOKODILE] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARUMAKA] +BackSprite = -2,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DARMANITAN] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARMANITAN,1] +BackSprite = 1,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARACTUS] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DWEBBLE] +BackSprite = 2,0 +FrontSprite = 0,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRUSTLE] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SCRAGGY] +BackSprite = 0,0 +FrontSprite = 7,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SCRAFTY] +BackSprite = 0,0 +FrontSprite = 6,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SIGILYPH] +BackSprite = 7,0 +FrontSprite = -6,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YAMASK] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COFAGRIGUS] +BackSprite = 1,0 +FrontSprite = -5,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TIRTOUGA] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARRACOSTA] +BackSprite = -1,0 +FrontSprite = -4,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARCHEN] +BackSprite = 0,0 +FrontSprite = 3,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ARCHEOPS] +BackSprite = 4,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRUBBISH] +BackSprite = -1,0 +FrontSprite = 4,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GARBODOR] +BackSprite = 5,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZORUA] +BackSprite = -1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZOROARK] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MINCCINO] +BackSprite = -3,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CINCCINO] +BackSprite = 1,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOTHITA] +BackSprite = 0,0 +FrontSprite = 0,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHORITA] +BackSprite = 0,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHITELLE] +BackSprite = 1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLOSIS] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUOSION] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REUNICLUS] +BackSprite = 3,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUCKLETT] +BackSprite = -4,0 +FrontSprite = 1,28 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWANNA] +BackSprite = -2,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLITE] +BackSprite = 1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VANILLISH] +BackSprite = 1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLUXE] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEERLING] +BackSprite = -3,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SAWSBUCK] +BackSprite = 1,0 +FrontSprite = -3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMOLGA] +BackSprite = -4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KARRABLAST] +BackSprite = 1,0 +FrontSprite = 2,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ESCAVALIER] +BackSprite = 3,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FOONGUS] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AMOONGUSS] +BackSprite = 7,0 +FrontSprite = 2,28 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRILLISH] +BackSprite = -1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JELLICENT] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALOMOMOLA] +BackSprite = -2,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[JOLTIK] +BackSprite = 0,0 +FrontSprite = 5,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GALVANTULA] +BackSprite = 0,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FERROSEED] +BackSprite = 0,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FERROTHORN] +BackSprite = 0,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLINK] +BackSprite = 2,0 +FrontSprite = -2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLANG] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KLINKLANG] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYNAMO] +BackSprite = -4,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTRIK] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTROSS] +BackSprite = -5,0 +FrontSprite = -7,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELGYEM] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEHEEYEM] +BackSprite = -2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LITWICK] +BackSprite = -1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAMPENT] +BackSprite = -1,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHANDELURE] +BackSprite = -2,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AXEW] +BackSprite = 1,0 +FrontSprite = -1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRAXURE] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HAXORUS] +BackSprite = -1,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CUBCHOO] +BackSprite = -2,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEARTIC] +BackSprite = -2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRYOGONAL] +BackSprite = -1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELMET] +BackSprite = -4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ACCELGOR] +BackSprite = -4,0 +FrontSprite = 4,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNFISK] +BackSprite = -3,0 +FrontSprite = 2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENFOO] +BackSprite = -1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENSHAO] +BackSprite = -3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRUDDIGON] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLETT] +BackSprite = 1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLURK] +BackSprite = 2,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PAWNIARD] +BackSprite = 2,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BISHARP] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BOUFFALANT] +BackSprite = -1,0 +FrontSprite = -10,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RUFFLET] +BackSprite = 1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRAVIARY] +BackSprite = -2,0 +FrontSprite = 5,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VULLABY] +BackSprite = 0,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANDIBUZZ] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HEATMOR] +BackSprite = 3,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DURANT] +BackSprite = 0,0 +FrontSprite = 1,34 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEINO] +BackSprite = 0,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZWEILOUS] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HYDREIGON] +BackSprite = -2,0 +FrontSprite = 1,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVESTA] +BackSprite = 0,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VOLCARONA] +BackSprite = 0,0 +FrontSprite = 3,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COBALION] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TERRAKION] +BackSprite = 0,0 +FrontSprite = -4,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIRIZION] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TORNADUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORNADUS,1] +BackSprite = -2,0 +FrontSprite = 8,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS,1] +BackSprite = -3,0 +FrontSprite = 2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RESHIRAM] +BackSprite = 2,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZEKROM] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS] +BackSprite = 0,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS,1] +BackSprite = -8,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM] +BackSprite = -3,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,1] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,2] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,3] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,4] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KELDEO] +BackSprite = -1,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KELDEO,1] +BackSprite = 1,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MELOETTA] +BackSprite = 0,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MELOETTA,1] +BackSprite = 0,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GENESECT] +BackSprite = 0,0 +FrontSprite = -3,18 +ShadowX = 0 +ShadowSize = 3 diff --git a/PBS/Gen 7/berry_plants.txt b/PBS/Gen 7/berry_plants.txt new file mode 100644 index 000000000..f4e543292 --- /dev/null +++ b/PBS/Gen 7/berry_plants.txt @@ -0,0 +1,69 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +CHERIBERRY = 3,15,2,5 +CHESTOBERRY = 3,15,2,5 +PECHABERRY = 3,15,2,5 +RAWSTBERRY = 3,15,2,5 +ASPEARBERRY = 3,15,2,5 +LEPPABERRY = 4,15,2,5 +ORANBERRY = 4,15,2,5 +PERSIMBERRY = 4,15,2,5 +LUMBERRY = 12,8,2,5 +SITRUSBERRY = 8,7,2,5 +FIGYBERRY = 5,10,1,5 +WIKIBERRY = 5,10,1,5 +MAGOBERRY = 5,10,1,5 +AGUAVBERRY = 5,10,1,5 +IAPAPABERRY = 5,10,1,5 +RAZZBERRY = 2,35,2,10 +BLUKBERRY = 2,35,2,10 +NANABBERRY = 2,35,2,10 +WEPEARBERRY = 2,35,2,10 +PINAPBERRY = 2,35,2,10 +POMEGBERRY = 8,8,1,5 +KELPSYBERRY = 8,8,1,5 +QUALOTBERRY = 8,8,1,5 +HONDEWBERRY = 8,8,1,5 +GREPABERRY = 8,8,1,5 +TAMATOBERRY = 8,8,1,5 +CORNNBERRY = 6,10,2,10 +MAGOSTBERRY = 6,10,2,10 +RABUTABERRY = 6,10,2,10 +NOMELBERRY = 6,10,2,10 +SPELONBERRY = 15,8,2,15 +PAMTREBERRY = 15,8,3,15 +WATMELBERRY = 15,8,2,15 +DURINBERRY = 15,8,3,15 +BELUEBERRY = 15,8,2,15 +OCCABERRY = 18,6,1,5 +PASSHOBERRY = 18,6,1,5 +WACANBERRY = 18,6,1,5 +RINDOBERRY = 18,6,1,5 +YACHEBERRY = 18,6,1,5 +CHOPLEBERRY = 18,6,1,5 +KEBIABERRY = 18,6,1,5 +SHUCABERRY = 18,6,1,5 +COBABERRY = 18,6,1,5 +PAYAPABERRY = 18,6,1,5 +TANGABERRY = 18,6,1,5 +CHARTIBERRY = 18,6,1,5 +KASIBBERRY = 18,6,1,5 +HABANBERRY = 18,6,1,5 +COLBURBERRY = 18,6,1,5 +BABIRIBERRY = 18,6,1,5 +CHILANBERRY = 18,6,1,5 +LIECHIBERRY = 24,4,1,5 +GANLONBERRY = 24,4,1,5 +SALACBERRY = 24,4,1,5 +PETAYABERRY = 24,4,1,5 +APICOTBERRY = 24,4,1,5 +LANSATBERRY = 24,4,1,5 +STARFBERRY = 24,4,1,5 +ENIGMABERRY = 24,7,1,5 +MICLEBERRY = 24,7,1,5 +CUSTAPBERRY = 24,7,1,5 +JABOCABERRY = 24,7,1,5 +ROWAPBERRY = 24,7,1,5 +ROSELIBERRY = 18,6,1,5 +KEEBERRY = 24,7,1,5 +MARANGABERRY = 24,7,1,5 diff --git a/PBS/Gen 7/pokemon.txt b/PBS/Gen 7/pokemon.txt index 674271405..931afca93 100644 --- a/PBS/Gen 7/pokemon.txt +++ b/PBS/Gen 7/pokemon.txt @@ -26,12 +26,6 @@ Habitat = Grassland Category = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = IVYSAUR,Level,16 #------------------------------- [IVYSAUR] @@ -59,12 +53,6 @@ Habitat = Grassland Category = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENUSAUR,Level,32 #------------------------------- [VENUSAUR] @@ -92,12 +80,6 @@ Habitat = Grassland Category = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHARMANDER] Name = Charmander @@ -124,12 +106,6 @@ Habitat = Mountain Category = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. Generation = 1 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHARMELEON,Level,16 #------------------------------- [CHARMELEON] @@ -156,12 +132,6 @@ Habitat = Mountain Category = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARIZARD,Level,36 #------------------------------- [CHARIZARD] @@ -189,12 +159,6 @@ Habitat = Mountain Category = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SQUIRTLE] Name = Squirtle @@ -221,12 +185,6 @@ Habitat = WatersEdge Category = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WARTORTLE,Level,16 #------------------------------- [WARTORTLE] @@ -253,12 +211,6 @@ Habitat = WatersEdge Category = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLASTOISE,Level,36 #------------------------------- [BLASTOISE] @@ -285,12 +237,6 @@ Habitat = WatersEdge Category = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CATERPIE] Name = Caterpie @@ -316,12 +262,6 @@ Habitat = Forest Category = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = METAPOD,Level,7 #------------------------------- [METAPOD] @@ -347,12 +287,6 @@ Habitat = Forest Category = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BUTTERFREE,Level,10 #------------------------------- [BUTTERFREE] @@ -381,12 +315,6 @@ Category = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. Generation = 1 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WEEDLE] Name = Weedle @@ -413,12 +341,6 @@ Habitat = Forest Category = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KAKUNA,Level,7 #------------------------------- [KAKUNA] @@ -445,12 +367,6 @@ Habitat = Forest Category = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEEDRILL,Level,10 #------------------------------- [BEEDRILL] @@ -479,12 +395,6 @@ Category = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDGEY] Name = Pidgey @@ -512,12 +422,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIDGEOTTO,Level,18 #------------------------------- [PIDGEOTTO] @@ -545,12 +449,6 @@ Habitat = Forest Category = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PIDGEOT,Level,36 #------------------------------- [PIDGEOT] @@ -578,12 +476,6 @@ Habitat = Forest Category = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RATTATA] Name = Rattata @@ -611,12 +503,6 @@ Category = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RATICATE,Level,20 #------------------------------- [RATICATE] @@ -644,12 +530,6 @@ Category = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPEAROW] Name = Spearow @@ -678,12 +558,6 @@ Category = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FEAROW,Level,20 #------------------------------- [FEAROW] @@ -712,12 +586,6 @@ Category = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EKANS] Name = Ekans @@ -744,12 +612,6 @@ Habitat = Grassland Category = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARBOK,Level,22 #------------------------------- [ARBOK] @@ -776,12 +638,6 @@ Habitat = Grassland Category = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIKACHU] Name = Pikachu @@ -808,12 +664,6 @@ Category = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. Generation = 1 WildItemUncommon = LIGHTBALL -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RAICHU,Item,THUNDERSTONE #------------------------------- [RAICHU] @@ -840,12 +690,6 @@ Habitat = Forest Category = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SANDSHREW] Name = Sandshrew @@ -873,12 +717,6 @@ Category = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. Generation = 1 WildItemUncommon = GRIPCLAW -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SANDSLASH,Level,22 #------------------------------- [SANDSLASH] @@ -906,12 +744,6 @@ Category = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. Generation = 1 WildItemUncommon = GRIPCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANfE] Name = Nidoran♀ @@ -938,12 +770,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINA,Level,16 #------------------------------- [NIDORINA] @@ -970,12 +796,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NIDOQUEEN,Item,MOONSTONE #------------------------------- [NIDOQUEEN] @@ -1003,12 +823,6 @@ Habitat = Grassland Category = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANmA] Name = Nidoran♂ @@ -1035,12 +849,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINO,Level,16 #------------------------------- [NIDORINO] @@ -1067,12 +875,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = NIDOKING,Item,MOONSTONE #------------------------------- [NIDOKING] @@ -1100,12 +902,6 @@ Habitat = Grassland Category = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLEFAIRY] Name = Clefairy @@ -1132,12 +928,6 @@ Category = Fairy Pokedex = On every night of a full moon, they come out to play. When dawn arrives, the tired Clefairy go to sleep nestled up against each other in deep and quiet mountains. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLEFABLE,Item,MOONSTONE #------------------------------- [CLEFABLE] @@ -1165,12 +955,6 @@ Category = Fairy Pokedex = A Clefable uses its wings to skip lightly as if it were flying. Its bouncy step lets it even walk on water. On quiet, moonlit nights, it strolls on lakes. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VULPIX] Name = Vulpix @@ -1198,12 +982,6 @@ Category = Fox Pokedex = It can freely control fire, making fiery orbs fly like will-o'-the-wisps. Just before evolution, its six tails grow hot as if on fire. Generation = 1 WildItemUncommon = CHARCOAL -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINETALES,Item,FIRESTONE #------------------------------- [NINETALES] @@ -1231,12 +1009,6 @@ Category = Fox Pokedex = It has long been said that each of the nine tails embody an enchanted power. A long-lived Ninetales will have fur that shines like gold. Generation = 1 WildItemUncommon = CHARCOAL -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JIGGLYPUFF] Name = Jigglypuff @@ -1264,12 +1036,6 @@ Category = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WIGGLYTUFF,Item,MOONSTONE #------------------------------- [WIGGLYTUFF] @@ -1298,12 +1064,6 @@ Category = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZUBAT] Name = Zubat @@ -1331,12 +1091,6 @@ Habitat = Cave Category = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLBAT,Level,22 #------------------------------- [GOLBAT] @@ -1364,12 +1118,6 @@ Habitat = Cave Category = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROBAT,Happiness, #------------------------------- [ODDISH] @@ -1399,12 +1147,6 @@ Category = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GLOOM,Level,21 #------------------------------- [GLOOM] @@ -1433,12 +1175,6 @@ Category = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VILEPLUME,Item,LEAFSTONE,BELLOSSOM,Item,SUNSTONE #------------------------------- [VILEPLUME] @@ -1467,12 +1203,6 @@ Category = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PARAS] Name = Paras @@ -1502,12 +1232,6 @@ Pokedex = A Paras has parasitic tochukaso mushrooms growing on its back. They gr Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PARASECT,Level,24 #------------------------------- [PARASECT] @@ -1537,12 +1261,6 @@ Pokedex = Parasect are known to infest the roots of large trees en masse and dra Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VENONAT] Name = Venonat @@ -1570,12 +1288,6 @@ Habitat = Forest Category = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENOMOTH,Level,31 #------------------------------- [VENOMOTH] @@ -1604,12 +1316,6 @@ Category = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. Generation = 1 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIGLETT] Name = Diglett @@ -1637,12 +1343,6 @@ Category = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUGTRIO,Level,26 #------------------------------- [DUGTRIO] @@ -1670,12 +1370,6 @@ Category = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEOWTH] Name = Meowth @@ -1703,12 +1397,6 @@ Category = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PERSIAN,Level,28 #------------------------------- [PERSIAN] @@ -1736,12 +1424,6 @@ Category = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PSYDUCK] Name = Psyduck @@ -1768,12 +1450,6 @@ Habitat = WatersEdge Category = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLDUCK,Level,33 #------------------------------- [GOLDUCK] @@ -1800,12 +1476,6 @@ Habitat = WatersEdge Category = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MANKEY] Name = Mankey @@ -1832,12 +1502,6 @@ Habitat = Mountain Category = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMEAPE,Level,28 #------------------------------- [PRIMEAPE] @@ -1864,12 +1528,6 @@ Habitat = Mountain Category = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROWLITHE] Name = Growlithe @@ -1896,12 +1554,6 @@ Habitat = Grassland Category = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARCANINE,Item,FIRESTONE #------------------------------- [ARCANINE] @@ -1928,12 +1580,6 @@ Habitat = Grassland Category = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POLIWAG] Name = Poliwag @@ -1960,12 +1606,6 @@ Habitat = WatersEdge Category = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = POLIWHIRL,Level,25 #------------------------------- [POLIWHIRL] @@ -1993,12 +1633,6 @@ Category = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = POLIWRATH,Item,WATERSTONE,POLITOED,TradeItem,KINGSROCK #------------------------------- [POLIWRATH] @@ -2027,12 +1661,6 @@ Category = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ABRA] Name = Abra @@ -2060,12 +1688,6 @@ Category = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KADABRA,Level,16 #------------------------------- [KADABRA] @@ -2093,12 +1715,6 @@ Category = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ALAKAZAM,Trade, #------------------------------- [ALAKAZAM] @@ -2126,12 +1742,6 @@ Category = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MACHOP] Name = Machop @@ -2159,12 +1769,6 @@ Category = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHOKE,Level,28 #------------------------------- [MACHOKE] @@ -2192,12 +1796,6 @@ Category = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHAMP,Trade, #------------------------------- [MACHAMP] @@ -2225,12 +1823,6 @@ Category = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELLSPROUT] Name = Bellsprout @@ -2258,12 +1850,6 @@ Habitat = Forest Category = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WEEPINBELL,Level,21 #------------------------------- [WEEPINBELL] @@ -2291,12 +1877,6 @@ Habitat = Forest Category = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VICTREEBEL,Item,LEAFSTONE #------------------------------- [VICTREEBEL] @@ -2324,12 +1904,6 @@ Habitat = Forest Category = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TENTACOOL] Name = Tentacool @@ -2358,12 +1932,6 @@ Category = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TENTACRUEL,Level,30 #------------------------------- [TENTACRUEL] @@ -2392,12 +1960,6 @@ Category = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GEODUDE] Name = Geodude @@ -2426,12 +1988,6 @@ Category = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRAVELER,Level,25 #------------------------------- [GRAVELER] @@ -2460,12 +2016,6 @@ Category = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GOLEM,Trade, #------------------------------- [GOLEM] @@ -2494,12 +2044,6 @@ Category = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PONYTA] Name = Ponyta @@ -2526,12 +2070,6 @@ Habitat = Grassland Category = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAPIDASH,Level,40 #------------------------------- [RAPIDASH] @@ -2558,12 +2096,6 @@ Habitat = Grassland Category = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLOWPOKE] Name = Slowpoke @@ -2592,12 +2124,6 @@ Category = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SLOWBRO,Level,37,SLOWKING,TradeItem,KINGSROCK #------------------------------- [SLOWBRO] @@ -2626,12 +2152,6 @@ Category = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGNEMITE] Name = Magnemite @@ -2659,12 +2179,6 @@ Category = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGNETON,Level,30 #------------------------------- [MAGNETON] @@ -2693,12 +2207,6 @@ Category = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGNEZONE,LocationFlag,Magnetic #------------------------------- [FARFETCHD] @@ -2728,12 +2236,6 @@ Category = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. Generation = 1 WildItemUncommon = STICK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DODUO] Name = Doduo @@ -2762,12 +2264,6 @@ Category = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DODRIO,Level,31 #------------------------------- [DODRIO] @@ -2796,12 +2292,6 @@ Category = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEL] Name = Seel @@ -2828,12 +2318,6 @@ Habitat = Sea Category = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. Generation = 1 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DEWGONG,Level,34 #------------------------------- [DEWGONG] @@ -2861,12 +2345,6 @@ Habitat = Sea Category = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GRIMER] Name = Grimer @@ -2894,12 +2372,6 @@ Category = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. Generation = 1 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MUK,Level,38 #------------------------------- [MUK] @@ -2927,12 +2399,6 @@ Category = Sludge Pokedex = It prefers warm and humid habitats. In the summertime, the toxic substances in its body intensify, making Muk reek like putrid kitchen garbage. Generation = 1 WildItemCommon = BLACKSLUDGE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELLDER] Name = Shellder @@ -2961,12 +2427,6 @@ Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to m Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLOYSTER,Item,WATERSTONE #------------------------------- [CLOYSTER] @@ -2996,12 +2456,6 @@ Pokedex = It swims in the sea by swallowing water, then jetting it out toward th Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GASTLY] Name = Gastly @@ -3028,12 +2482,6 @@ Habitat = Cave Category = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAUNTER,Level,25 #------------------------------- [HAUNTER] @@ -3060,12 +2508,6 @@ Habitat = Cave Category = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GENGAR,Trade, #------------------------------- [GENGAR] @@ -3092,12 +2534,6 @@ Habitat = Cave Category = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ONIX] Name = Onix @@ -3125,12 +2561,6 @@ Habitat = Cave Category = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = STEELIX,TradeItem,METALCOAT #------------------------------- [DROWZEE] @@ -3158,12 +2588,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HYPNO,Level,26 #------------------------------- [HYPNO] @@ -3190,12 +2614,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KRABBY] Name = Krabby @@ -3222,12 +2640,6 @@ Habitat = WatersEdge Category = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KINGLER,Level,28 #------------------------------- [KINGLER] @@ -3254,12 +2666,6 @@ Habitat = WatersEdge Category = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VOLTORB] Name = Voltorb @@ -3285,12 +2691,6 @@ Habitat = Urban Category = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ELECTRODE,Level,30 #------------------------------- [ELECTRODE] @@ -3317,12 +2717,6 @@ Habitat = Urban Category = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EXEGGCUTE] Name = Exeggcute @@ -3351,12 +2745,6 @@ Category = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. Generation = 1 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXEGGUTOR,Item,LEAFSTONE #------------------------------- [EXEGGUTOR] @@ -3384,12 +2772,6 @@ Habitat = Forest Category = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUBONE] Name = Cubone @@ -3417,12 +2799,6 @@ Category = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAROWAK,Level,28 #------------------------------- [MAROWAK] @@ -3450,12 +2826,6 @@ Category = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONLEE] Name = Hitmonlee @@ -3481,12 +2851,6 @@ Habitat = Urban Category = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONCHAN] Name = Hitmonchan @@ -3512,12 +2876,6 @@ Habitat = Urban Category = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LICKITUNG] Name = Lickitung @@ -3545,12 +2903,6 @@ Category = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = LICKILICKY,HasMove,ROLLOUT #------------------------------- [KOFFING] @@ -3578,12 +2930,6 @@ Category = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEEZING,Level,35 #------------------------------- [WEEZING] @@ -3610,12 +2956,6 @@ Category = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYHORN] Name = Rhyhorn @@ -3643,12 +2983,6 @@ Habitat = RoughTerrain Category = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYDON,Level,42 #------------------------------- [RHYDON] @@ -3676,12 +3010,6 @@ Habitat = RoughTerrain Category = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYPERIOR,TradeItem,PROTECTOR #------------------------------- [CHANSEY] @@ -3710,12 +3038,6 @@ Category = Egg Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so delicious, they are eagerly devoured by even those who have lost their appetite. Generation = 1 WildItemCommon = LUCKYPUNCH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLISSEY,Happiness, #------------------------------- [TANGELA] @@ -3743,12 +3065,6 @@ Habitat = Grassland Category = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TANGROWTH,HasMove,ANCIENTPOWER #------------------------------- [KANGASKHAN] @@ -3776,12 +3092,6 @@ Habitat = Grassland Category = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HORSEA] Name = Horsea @@ -3809,12 +3119,6 @@ Category = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SEADRA,Level,32 #------------------------------- [SEADRA] @@ -3842,12 +3146,6 @@ Category = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KINGDRA,TradeItem,DRAGONSCALE #------------------------------- [GOLDEEN] @@ -3876,12 +3174,6 @@ Category = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. Generation = 1 WildItemUncommon = MYSTICWATER -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEAKING,Level,33 #------------------------------- [SEAKING] @@ -3909,12 +3201,6 @@ Category = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. Generation = 1 WildItemUncommon = MYSTICWATER -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STARYU] Name = Staryu @@ -3942,12 +3228,6 @@ Pokedex = It gathers with others in the night and makes its red core glow on and Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARMIE,Item,WATERSTONE #------------------------------- [STARMIE] @@ -3977,12 +3257,6 @@ Pokedex = People in ancient times imagined that Starmie were transformed from th Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MRMIME] Name = Mr. Mime @@ -4010,12 +3284,6 @@ Habitat = Urban Category = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCYTHER] Name = Scyther @@ -4043,12 +3311,6 @@ Habitat = Grassland Category = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SCIZOR,TradeItem,METALCOAT #------------------------------- [JYNX] @@ -4076,12 +3338,6 @@ Habitat = Urban Category = Human Shape Pokedex = A Jynx sashays rhythmically as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without noticing. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTABUZZ] Name = Electabuzz @@ -4108,12 +3364,6 @@ Category = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. Generation = 1 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ELECTIVIRE,TradeItem,ELECTIRIZER #------------------------------- [MAGMAR] @@ -4141,12 +3391,6 @@ Category = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. Generation = 1 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAGMORTAR,TradeItem,MAGMARIZER #------------------------------- [PINSIR] @@ -4174,12 +3418,6 @@ Habitat = Forest Category = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAUROS] Name = Tauros @@ -4205,12 +3443,6 @@ Habitat = Grassland Category = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGIKARP] Name = Magikarp @@ -4236,12 +3468,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GYARADOS,Level,20 #------------------------------- [GYARADOS] @@ -4269,12 +3495,6 @@ Habitat = WatersEdge Category = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LAPRAS] Name = Lapras @@ -4305,12 +3525,6 @@ Generation = 1 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DITTO] Name = Ditto @@ -4337,12 +3551,6 @@ Pokedex = A Ditto rearranges its cell structure to transform itself. However, if Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EEVEE] Name = Eevee @@ -4369,12 +3577,6 @@ Habitat = Urban Category = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VAPOREON,Item,WATERSTONE,JOLTEON,Item,THUNDERSTONE,FLAREON,Item,FIRESTONE,LEAFEON,LocationFlag,MossRock,GLACEON,LocationFlag,IceRock,SYLVEON,HappinessMoveType,FAIRY,ESPEON,HappinessDay,,UMBREON,HappinessNight, #------------------------------- [VAPOREON] @@ -4401,12 +3603,6 @@ Habitat = Urban Category = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JOLTEON] Name = Jolteon @@ -4432,12 +3628,6 @@ Habitat = Urban Category = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLAREON] Name = Flareon @@ -4463,12 +3653,6 @@ Habitat = Urban Category = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PORYGON] Name = Porygon @@ -4494,12 +3678,6 @@ Habitat = Urban Category = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy-protected so it cannot be duplicated. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PORYGON2,TradeItem,UPGRADE #------------------------------- [OMANYTE] @@ -4528,12 +3706,6 @@ Habitat = Sea Category = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OMASTAR,Level,40 #------------------------------- [OMASTAR] @@ -4561,12 +3733,6 @@ Habitat = Sea Category = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KABUTO] Name = Kabuto @@ -4594,12 +3760,6 @@ Habitat = Sea Category = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KABUTOPS,Level,40 #------------------------------- [KABUTOPS] @@ -4627,12 +3787,6 @@ Habitat = Sea Category = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. Generation = 1 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AERODACTYL] Name = Aerodactyl @@ -4660,12 +3814,6 @@ Habitat = Mountain Category = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNORLAX] Name = Snorlax @@ -4695,12 +3843,6 @@ Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARTICUNO] Name = Articuno @@ -4727,12 +3869,6 @@ Habitat = Rare Category = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZAPDOS] Name = Zapdos @@ -4759,12 +3895,6 @@ Habitat = Rare Category = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MOLTRES] Name = Moltres @@ -4791,12 +3921,6 @@ Habitat = Rare Category = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRATINI] Name = Dratini @@ -4824,12 +3948,6 @@ Category = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGONAIR,Level,30 #------------------------------- [DRAGONAIR] @@ -4857,12 +3975,6 @@ Category = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DRAGONITE,Level,55 #------------------------------- [DRAGONITE] @@ -4891,12 +4003,6 @@ Category = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEWTWO] Name = Mewtwo @@ -4922,12 +4028,6 @@ Habitat = Rare Category = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. Generation = 1 -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MEW] Name = Mew @@ -4955,12 +4055,6 @@ Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CHIKORITA] Name = Chikorita @@ -4987,12 +4081,6 @@ Habitat = Grassland Category = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BAYLEEF,Level,16 #------------------------------- [BAYLEEF] @@ -5019,12 +4107,6 @@ Habitat = Grassland Category = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEGANIUM,Level,32 #------------------------------- [MEGANIUM] @@ -5051,12 +4133,6 @@ Habitat = Grassland Category = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CYNDAQUIL] Name = Cyndaquil @@ -5083,12 +4159,6 @@ Habitat = Grassland Category = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUILAVA,Level,14 #------------------------------- [QUILAVA] @@ -5115,12 +4185,6 @@ Habitat = Grassland Category = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TYPHLOSION,Level,36 #------------------------------- [TYPHLOSION] @@ -5147,12 +4211,6 @@ Habitat = Grassland Category = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOTODILE] Name = Totodile @@ -5179,12 +4237,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROCONAW,Level,18 #------------------------------- [CROCONAW] @@ -5211,12 +4263,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FERALIGATR,Level,30 #------------------------------- [FERALIGATR] @@ -5243,12 +4289,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SENTRET] Name = Sentret @@ -5275,12 +4315,6 @@ Habitat = Grassland Category = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FURRET,Level,15 #------------------------------- [FURRET] @@ -5307,12 +4341,6 @@ Habitat = Grassland Category = Long Body Pokedex = A Furret has a very slim build. When under attack, it can squirm through narrow spaces and get away. In spite of its short limbs, it is very nimble and fleet. Generation = 2 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOTHOOT] Name = Hoothoot @@ -5340,12 +4368,6 @@ Habitat = Forest Category = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOCTOWL,Level,20 #------------------------------- [NOCTOWL] @@ -5373,12 +4395,6 @@ Habitat = Forest Category = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LEDYBA] Name = Ledyba @@ -5406,12 +4422,6 @@ Habitat = Forest Category = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEDIAN,Level,18 #------------------------------- [LEDIAN] @@ -5439,12 +4449,6 @@ Habitat = Forest Category = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPINARAK] Name = Spinarak @@ -5472,12 +4476,6 @@ Habitat = Forest Category = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARIADOS,Level,22 #------------------------------- [ARIADOS] @@ -5505,12 +4503,6 @@ Habitat = Forest Category = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROBAT] Name = Crobat @@ -5537,12 +4529,6 @@ Habitat = Cave Category = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHINCHOU] Name = Chinchou @@ -5571,12 +4557,6 @@ Category = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LANTURN,Level,27 #------------------------------- [LANTURN] @@ -5605,12 +4585,6 @@ Category = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PICHU] Name = Pichu @@ -5637,12 +4611,6 @@ Habitat = Forest Category = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIKACHU,Happiness, #------------------------------- [CLEFFA] @@ -5671,12 +4639,6 @@ Category = Star Shape Pokedex = On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance until daybreak, when they quench their thirst with the morning dew. Generation = 2 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLEFAIRY,Happiness, #------------------------------- [IGGLYBUFF] @@ -5705,12 +4667,6 @@ Habitat = Grassland Category = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JIGGLYPUFF,Happiness, #------------------------------- [TOGEPI] @@ -5738,12 +4694,6 @@ Habitat = Forest Category = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGETIC,Happiness, #------------------------------- [TOGETIC] @@ -5771,12 +4721,6 @@ Habitat = Forest Category = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGEKISS,Item,SHINYSTONE #------------------------------- [NATU] @@ -5805,12 +4749,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = XATU,Level,25 #------------------------------- [XATU] @@ -5838,12 +4776,6 @@ Habitat = Forest Category = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREEP] Name = Mareep @@ -5870,12 +4802,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLAAFFY,Level,15 #------------------------------- [FLAAFFY] @@ -5902,12 +4828,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AMPHAROS,Level,30 #------------------------------- [AMPHAROS] @@ -5934,12 +4854,6 @@ Habitat = Grassland Category = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BELLOSSOM] Name = Bellossom @@ -5966,12 +4880,6 @@ Category = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. Generation = 2 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARILL] Name = Marill @@ -5999,12 +4907,6 @@ Habitat = WatersEdge Category = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AZUMARILL,Level,18 #------------------------------- [AZUMARILL] @@ -6032,12 +4934,6 @@ Habitat = WatersEdge Category = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SUDOWOODO] Name = Sudowoodo @@ -6064,12 +4960,6 @@ Habitat = Forest Category = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [POLITOED] Name = Politoed @@ -6096,12 +4986,6 @@ Category = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOPPIP] Name = Hoppip @@ -6129,12 +5013,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. Generation = 2 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SKIPLOOM,Level,18 #------------------------------- [SKIPLOOM] @@ -6162,12 +5040,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = JUMPLUFF,Level,27 #------------------------------- [JUMPLUFF] @@ -6195,12 +5067,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AIPOM] Name = Aipom @@ -6227,12 +5093,6 @@ Habitat = Forest Category = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. Generation = 2 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMBIPOM,HasMove,DOUBLEHIT #------------------------------- [SUNKERN] @@ -6260,12 +5120,6 @@ Habitat = Grassland Category = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUNFLORA,Item,SUNSTONE #------------------------------- [SUNFLORA] @@ -6292,12 +5146,6 @@ Habitat = Grassland Category = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [YANMA] Name = Yanma @@ -6326,12 +5174,6 @@ Category = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. Generation = 2 WildItemUncommon = WIDELENS -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = YANMEGA,HasMove,ANCIENTPOWER #------------------------------- [WOOPER] @@ -6360,12 +5202,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUAGSIRE,Level,20 #------------------------------- [QUAGSIRE] @@ -6393,12 +5229,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPEON] Name = Espeon @@ -6424,12 +5254,6 @@ Habitat = Urban Category = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [UMBREON] Name = Umbreon @@ -6455,12 +5279,6 @@ Habitat = Urban Category = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MURKROW] Name = Murkrow @@ -6488,12 +5306,6 @@ Habitat = Forest Category = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HONCHKROW,Item,DUSKSTONE #------------------------------- [SLOWKING] @@ -6522,12 +5334,6 @@ Category = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISDREAVUS] Name = Misdreavus @@ -6553,12 +5359,6 @@ Habitat = Cave Category = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MISMAGIUS,Item,DUSKSTONE #------------------------------- [UNOWN] @@ -6585,12 +5385,6 @@ Category = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = A Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [WOBBUFFET] Name = Wobbuffet @@ -6616,12 +5410,6 @@ Habitat = Cave Category = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIRAFARIG] Name = Girafarig @@ -6649,12 +5437,6 @@ Habitat = Grassland Category = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PINECO] Name = Pineco @@ -6681,12 +5463,6 @@ Habitat = Forest Category = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FORRETRESS,Level,31 #------------------------------- [FORRETRESS] @@ -6714,12 +5490,6 @@ Habitat = Forest Category = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUNSPARCE] Name = Dunsparce @@ -6746,12 +5516,6 @@ Habitat = Cave Category = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GLIGAR] Name = Gligar @@ -6779,12 +5543,6 @@ Habitat = Mountain Category = Fly Scorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLISCOR,NightHoldItem,RAZORFANG #------------------------------- [STEELIX] @@ -6813,12 +5571,6 @@ Category = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SNUBBULL] Name = Snubbull @@ -6845,12 +5597,6 @@ Habitat = Urban Category = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRANBULL,Level,23 #------------------------------- [GRANBULL] @@ -6877,12 +5623,6 @@ Habitat = Urban Category = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [QWILFISH] Name = Qwilfish @@ -6911,12 +5651,6 @@ Category = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. Generation = 2 WildItemUncommon = POISONBARB -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCIZOR] Name = Scizor @@ -6943,12 +5677,6 @@ Habitat = Grassland Category = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHUCKLE] Name = Shuckle @@ -6979,12 +5707,6 @@ Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HERACROSS] Name = Heracross @@ -7012,12 +5734,6 @@ Habitat = Forest Category = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNEASEL] Name = Sneasel @@ -7046,12 +5762,6 @@ Category = Sharp Claw Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It seeks out unguarded nests and steals eggs for food while the parents are away. Generation = 2 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEAVILE,NightHoldItem,RAZORCLAW #------------------------------- [TEDDIURSA] @@ -7079,12 +5789,6 @@ Habitat = Mountain Category = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = URSARING,Level,30 #------------------------------- [URSARING] @@ -7111,12 +5815,6 @@ Habitat = Mountain Category = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLUGMA] Name = Slugma @@ -7143,12 +5841,6 @@ Habitat = Mountain Category = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGCARGO,Level,38 #------------------------------- [MAGCARGO] @@ -7176,12 +5868,6 @@ Habitat = Mountain Category = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWINUB] Name = Swinub @@ -7209,12 +5895,6 @@ Habitat = Cave Category = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PILOSWINE,Level,33 #------------------------------- [PILOSWINE] @@ -7242,12 +5922,6 @@ Habitat = Cave Category = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAMOSWINE,HasMove,ANCIENTPOWER #------------------------------- [CORSOLA] @@ -7277,12 +5951,6 @@ Category = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. Generation = 2 WildItemUncommon = LUMINOUSMOSS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [REMORAID] Name = Remoraid @@ -7309,12 +5977,6 @@ Habitat = Sea Category = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. Generation = 2 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OCTILLERY,Level,25 #------------------------------- [OCTILLERY] @@ -7341,12 +6003,6 @@ Habitat = Sea Category = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DELIBIRD] Name = Delibird @@ -7374,12 +6030,6 @@ Habitat = Mountain Category = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTINE] Name = Mantine @@ -7407,12 +6057,6 @@ Habitat = Sea Category = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKARMORY] Name = Skarmory @@ -7441,12 +6085,6 @@ Category = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOUNDOUR] Name = Houndour @@ -7474,12 +6112,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HOUNDOOM,Level,24 #------------------------------- [HOUNDOOM] @@ -7507,12 +6139,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KINGDRA] Name = Kingdra @@ -7540,12 +6166,6 @@ Category = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. Generation = 2 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANPY] Name = Phanpy @@ -7572,12 +6192,6 @@ Habitat = RoughTerrain Category = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DONPHAN,Level,25 #------------------------------- [DONPHAN] @@ -7604,12 +6218,6 @@ Habitat = RoughTerrain Category = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGON2] Name = Porygon2 @@ -7635,12 +6243,6 @@ Habitat = Urban Category = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PORYGONZ,TradeItem,DUBIOUSDISC #------------------------------- [STANTLER] @@ -7668,12 +6270,6 @@ Habitat = Forest Category = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMEARGLE] Name = Smeargle @@ -7698,12 +6294,6 @@ Habitat = Urban Category = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYROGUE] Name = Tyrogue @@ -7730,12 +6320,6 @@ Habitat = Urban Category = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HITMONLEE,AttackGreater,20,HITMONCHAN,DefenseGreater,20,HITMONTOP,AtkDefEqual,20 #------------------------------- [HITMONTOP] @@ -7762,12 +6346,6 @@ Habitat = Urban Category = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMOOCHUM] Name = Smoochum @@ -7795,12 +6373,6 @@ Habitat = Urban Category = Kiss Pokedex = It actively runs about, but also falls often. Whenever it falls, it will check its reflection on a lake's surface to make sure its face hasn't become dirty. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JYNX,Level,30 #------------------------------- [ELEKID] @@ -7829,12 +6401,6 @@ Category = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. Generation = 2 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ELECTABUZZ,Level,30 #------------------------------- [MAGBY] @@ -7863,12 +6429,6 @@ Category = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. Generation = 2 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGMAR,Level,30 #------------------------------- [MILTANK] @@ -7899,12 +6459,6 @@ Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLISSEY] Name = Blissey @@ -7933,12 +6487,6 @@ Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [RAIKOU] Name = Raikou @@ -7964,12 +6512,6 @@ Habitat = Grassland Category = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ENTEI] Name = Entei @@ -7995,12 +6537,6 @@ Habitat = Grassland Category = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SUICUNE] Name = Suicune @@ -8026,12 +6562,6 @@ Habitat = Grassland Category = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVITAR] Name = Larvitar @@ -8059,12 +6589,6 @@ Habitat = Mountain Category = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PUPITAR,Level,30 #------------------------------- [PUPITAR] @@ -8091,12 +6615,6 @@ Habitat = Mountain Category = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANITAR,Level,55 #------------------------------- [TYRANITAR] @@ -8124,12 +6642,6 @@ Habitat = Mountain Category = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUGIA] Name = Lugia @@ -8156,12 +6668,6 @@ Habitat = Rare Category = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOOH] Name = Ho-Oh @@ -8191,12 +6697,6 @@ Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELEBI] Name = Celebi @@ -8225,12 +6725,6 @@ Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TREECKO] Name = Treecko @@ -8257,12 +6751,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GROVYLE,Level,16 #------------------------------- [GROVYLE] @@ -8289,12 +6777,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCEPTILE,Level,36 #------------------------------- [SCEPTILE] @@ -8321,12 +6803,6 @@ Habitat = Forest Category = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORCHIC] Name = Torchic @@ -8353,12 +6829,6 @@ Habitat = Grassland Category = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COMBUSKEN,Level,16 #------------------------------- [COMBUSKEN] @@ -8386,12 +6856,6 @@ Habitat = Grassland Category = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. Generation = 3 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLAZIKEN,Level,36 #------------------------------- [BLAZIKEN] @@ -8419,12 +6883,6 @@ Habitat = Grassland Category = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. Generation = 3 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUDKIP] Name = Mudkip @@ -8451,12 +6909,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARSHTOMP,Level,16 #------------------------------- [MARSHTOMP] @@ -8484,12 +6936,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWAMPERT,Level,36 #------------------------------- [SWAMPERT] @@ -8517,12 +6963,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POOCHYENA] Name = Poochyena @@ -8549,12 +6989,6 @@ Habitat = Grassland Category = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIGHTYENA,Level,18 #------------------------------- [MIGHTYENA] @@ -8581,12 +7015,6 @@ Habitat = Grassland Category = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZIGZAGOON] Name = Zigzagoon @@ -8615,12 +7043,6 @@ Pokedex = Rubbing its nose against the ground, it always wanders about back and Generation = 3 WildItemCommon = POTION WildItemUncommon = REVIVE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LINOONE,Level,20 #------------------------------- [LINOONE] @@ -8649,12 +7071,6 @@ Pokedex = It is exceedingly fast if it only has to run in a straight line. When Generation = 3 WildItemCommon = POTION WildItemUncommon = MAXREVIVE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WURMPLE] Name = Wurmple @@ -8682,12 +7098,6 @@ Pokedex = It sticks to tree branches and eats leaves. The thread it spits from i Generation = 3 WildItemCommon = PECHABERRY WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SILCOON,Silcoon,7,CASCOON,Cascoon,7 #------------------------------- [SILCOON] @@ -8713,12 +7123,6 @@ Habitat = Forest Category = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEAUTIFLY,Level,10 #------------------------------- [BEAUTIFLY] @@ -8747,12 +7151,6 @@ Category = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CASCOON] Name = Cascoon @@ -8777,12 +7175,6 @@ Habitat = Forest Category = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSTOX,Level,10 #------------------------------- [DUSTOX] @@ -8811,12 +7203,6 @@ Category = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LOTAD] Name = Lotad @@ -8845,12 +7231,6 @@ Category = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LOMBRE,Level,14 #------------------------------- [LOMBRE] @@ -8879,12 +7259,6 @@ Category = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUDICOLO,Item,WATERSTONE #------------------------------- [LUDICOLO] @@ -8913,12 +7287,6 @@ Category = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEDOT] Name = Seedot @@ -8946,12 +7314,6 @@ Category = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NUZLEAF,Level,14 #------------------------------- [NUZLEAF] @@ -8980,12 +7342,6 @@ Category = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SHIFTRY,Item,LEAFSTONE #------------------------------- [SHIFTRY] @@ -9014,12 +7370,6 @@ Category = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAILLOW] Name = Taillow @@ -9047,12 +7397,6 @@ Habitat = Grassland Category = Tiny Swallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. Generation = 3 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWELLOW,Level,22 #------------------------------- [SWELLOW] @@ -9080,12 +7424,6 @@ Habitat = Grassland Category = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WINGULL] Name = Wingull @@ -9114,12 +7452,6 @@ Category = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. Generation = 3 WildItemCommon = PRETTYWING -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PELIPPER,Level,25 #------------------------------- [PELIPPER] @@ -9148,12 +7480,6 @@ Category = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. Generation = 3 WildItemCommon = PRETTYWING -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RALTS] Name = Ralts @@ -9181,12 +7507,6 @@ Habitat = Urban Category = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KIRLIA,Level,20 #------------------------------- [KIRLIA] @@ -9214,12 +7534,6 @@ Habitat = Urban Category = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GARDEVOIR,Level,30,GALLADE,ItemMale,DAWNSTONE #------------------------------- [GARDEVOIR] @@ -9247,12 +7561,6 @@ Habitat = Urban Category = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SURSKIT] Name = Surskit @@ -9281,12 +7589,6 @@ Category = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. Generation = 3 WildItemCommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MASQUERAIN,Level,22 #------------------------------- [MASQUERAIN] @@ -9315,12 +7617,6 @@ Category = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. Generation = 3 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = -8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHROOMISH] Name = Shroomish @@ -9349,12 +7645,6 @@ Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRELOOM,Level,23 #------------------------------- [BRELOOM] @@ -9384,12 +7674,6 @@ Pokedex = It scatters spores from holes in the cap on its head. It loves warm an Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = -15 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SLAKOTH] Name = Slakoth @@ -9415,12 +7699,6 @@ Habitat = Forest Category = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = VIGOROTH,Level,18 #------------------------------- [VIGOROTH] @@ -9446,12 +7724,6 @@ Habitat = Forest Category = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLAKING,Level,36 #------------------------------- [SLAKING] @@ -9477,12 +7749,6 @@ Habitat = Forest Category = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NINCADA] Name = Nincada @@ -9511,12 +7777,6 @@ Category = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINJASK,Ninjask,20,SHEDINJA,Shedinja,20 #------------------------------- [NINJASK] @@ -9544,12 +7804,6 @@ Habitat = Forest Category = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHEDINJA] Name = Shedinja @@ -9575,12 +7829,6 @@ Habitat = Forest Category = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WHISMUR] Name = Whismur @@ -9607,12 +7855,6 @@ Habitat = Cave Category = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. Generation = 3 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOUDRED,Level,20 #------------------------------- [LOUDRED] @@ -9639,12 +7881,6 @@ Habitat = Cave Category = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXPLOUD,Level,40 #------------------------------- [EXPLOUD] @@ -9671,12 +7907,6 @@ Habitat = Cave Category = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAKUHITA] Name = Makuhita @@ -9704,12 +7934,6 @@ Category = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. Generation = 3 WildItemUncommon = BLACKBELT -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HARIYAMA,Level,24 #------------------------------- [HARIYAMA] @@ -9737,12 +7961,6 @@ Category = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. Generation = 3 WildItemUncommon = KINGSROCK -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AZURILL] Name = Azurill @@ -9770,12 +7988,6 @@ Habitat = WatersEdge Category = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. Generation = 3 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 14 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARILL,Happiness, Incense = SEAINCENSE #------------------------------- @@ -9805,12 +8017,6 @@ Category = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. Generation = 3 WildItemUncommon = MAGNET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PROBOPASS,LocationFlag,Magnetic #------------------------------- [SKITTY] @@ -9838,12 +8044,6 @@ Habitat = Forest Category = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DELCATTY,Item,MOONSTONE #------------------------------- [DELCATTY] @@ -9870,12 +8070,6 @@ Habitat = Forest Category = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SABLEYE] Name = Sableye @@ -9904,12 +8098,6 @@ Category = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. Generation = 3 WildItemUncommon = WIDELENS -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAWILE] Name = Mawile @@ -9938,12 +8126,6 @@ Category = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. Generation = 3 WildItemUncommon = IRONBALL -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARON] Name = Aron @@ -9972,12 +8154,6 @@ Category = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAIRON,Level,32 #------------------------------- [LAIRON] @@ -10006,12 +8182,6 @@ Category = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = AGGRON,Level,42 #------------------------------- [AGGRON] @@ -10040,12 +8210,6 @@ Category = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEDITITE] Name = Meditite @@ -10073,12 +8237,6 @@ Habitat = Mountain Category = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEDICHAM,Level,37 #------------------------------- [MEDICHAM] @@ -10106,12 +8264,6 @@ Habitat = Mountain Category = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ELECTRIKE] Name = Electrike @@ -10138,12 +8290,6 @@ Habitat = Grassland Category = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANECTRIC,Level,26 #------------------------------- [MANECTRIC] @@ -10170,12 +8316,6 @@ Habitat = Grassland Category = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PLUSLE] Name = Plusle @@ -10203,12 +8343,6 @@ Category = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. Generation = 3 WildItemUncommon = CELLBATTERY -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MINUN] Name = Minun @@ -10236,12 +8370,6 @@ Category = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. Generation = 3 WildItemUncommon = CELLBATTERY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VOLBEAT] Name = Volbeat @@ -10269,12 +8397,6 @@ Category = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. Generation = 3 WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ILLUMISE] Name = Illumise @@ -10302,12 +8424,6 @@ Category = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. Generation = 3 WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROSELIA] Name = Roselia @@ -10336,12 +8452,6 @@ Category = Thorn Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovely flowers. The fragrance of its flowers has the effect of making its foes careless. Generation = 3 WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSERADE,Item,SHINYSTONE #------------------------------- [GULPIN] @@ -10371,12 +8481,6 @@ Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWALOT,Level,26 #------------------------------- [SWALOT] @@ -10405,12 +8509,6 @@ Pokedex = Its powerful stomach acid is capable of digesting almost anything. The Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CARVANHA] Name = Carvanha @@ -10439,12 +8537,6 @@ Category = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHARPEDO,Level,30 #------------------------------- [SHARPEDO] @@ -10473,12 +8565,6 @@ Category = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WAILMER] Name = Wailmer @@ -10505,12 +8591,6 @@ Habitat = Sea Category = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WAILORD,Level,40 #------------------------------- [WAILORD] @@ -10537,12 +8617,6 @@ Habitat = Sea Category = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NUMEL] Name = Numel @@ -10570,12 +8644,6 @@ Habitat = Mountain Category = Numb Pokedex = A Numel stores boiling magma in the hump on its back. It is a hardy Pokémon that can transport a 220-pound load. It has served humans at work since long ago. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CAMERUPT,Level,33 #------------------------------- [CAMERUPT] @@ -10603,12 +8671,6 @@ Habitat = Mountain Category = Eruption Pokedex = A Pokémon that lives in the crater of a volcano. Every 10 years, the volcanoes on its back erupt violently. Research is under way on the cause of eruption. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORKOAL] Name = Torkoal @@ -10636,12 +8698,6 @@ Category = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. Generation = 3 WildItemUncommon = CHARCOAL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPOINK] Name = Spoink @@ -10668,12 +8724,6 @@ Habitat = Mountain Category = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRUMPIG,Level,32 #------------------------------- [GRUMPIG] @@ -10700,12 +8750,6 @@ Habitat = Mountain Category = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPINDA] Name = Spinda @@ -10732,12 +8776,6 @@ Habitat = Mountain Category = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRAPINCH] Name = Trapinch @@ -10765,12 +8803,6 @@ Category = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIBRAVA,Level,35 #------------------------------- [VIBRAVA] @@ -10797,12 +8829,6 @@ Habitat = RoughTerrain Category = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. Generation = 3 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLYGON,Level,45 #------------------------------- [FLYGON] @@ -10829,12 +8855,6 @@ Habitat = RoughTerrain Category = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. Generation = 3 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CACNEA] Name = Cacnea @@ -10862,12 +8882,6 @@ Category = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CACTURNE,Level,32 #------------------------------- [CACTURNE] @@ -10896,12 +8910,6 @@ Category = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWABLU] Name = Swablu @@ -10929,12 +8937,6 @@ Habitat = Forest Category = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ALTARIA,Level,35 #------------------------------- [ALTARIA] @@ -10962,12 +8964,6 @@ Habitat = Forest Category = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZANGOOSE] Name = Zangoose @@ -10995,12 +8991,6 @@ Category = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. Generation = 3 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SEVIPER] Name = Seviper @@ -11028,12 +9018,6 @@ Category = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUNATONE] Name = Lunatone @@ -11061,12 +9045,6 @@ Pokedex = It becomes very active on the night of a full moon. This Pokémon was Generation = 3 WildItemCommon = STARDUST WildItemUncommon = MOONSTONE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLROCK] Name = Solrock @@ -11094,12 +9072,6 @@ Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, gr Generation = 3 WildItemCommon = STARDUST WildItemUncommon = SUNSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BARBOACH] Name = Barboach @@ -11127,12 +9099,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHISCASH,Level,30 #------------------------------- [WHISCASH] @@ -11160,12 +9126,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CORPHISH] Name = Corphish @@ -11192,12 +9152,6 @@ Habitat = WatersEdge Category = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRAWDAUNT,Level,30 #------------------------------- [CRAWDAUNT] @@ -11225,12 +9179,6 @@ Habitat = WatersEdge Category = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. Generation = 3 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BALTOY] Name = Baltoy @@ -11257,12 +9205,6 @@ Category = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. Generation = 3 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLAYDOL,Level,36 #------------------------------- [CLAYDOL] @@ -11290,12 +9232,6 @@ Category = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. Generation = 3 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LILEEP] Name = Lileep @@ -11324,12 +9260,6 @@ Category = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRADILY,Level,40 #------------------------------- [CRADILY] @@ -11358,12 +9288,6 @@ Category = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ANORITH] Name = Anorith @@ -11391,12 +9315,6 @@ Habitat = WatersEdge Category = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. Generation = 3 -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARMALDO,Level,40 #------------------------------- [ARMALDO] @@ -11424,12 +9342,6 @@ Habitat = WatersEdge Category = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FEEBAS] Name = Feebas @@ -11456,12 +9368,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MILOTIC,Beauty,170,MILOTIC,TradeItem,PRISMSCALE #------------------------------- [MILOTIC] @@ -11488,12 +9394,6 @@ Habitat = WatersEdge Category = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CASTFORM] Name = Castform @@ -11523,12 +9423,6 @@ Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [KECLEON] Name = Kecleon @@ -11555,12 +9449,6 @@ Habitat = Forest Category = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHUPPET] Name = Shuppet @@ -11588,12 +9476,6 @@ Category = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BANETTE,Level,37 #------------------------------- [BANETTE] @@ -11621,12 +9503,6 @@ Category = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DUSKULL] Name = Duskull @@ -11654,12 +9530,6 @@ Category = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSCLOPS,Level,37 #------------------------------- [DUSCLOPS] @@ -11687,12 +9557,6 @@ Category = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DUSKNOIR,TradeItem,REAPERCLOTH #------------------------------- [TROPIUS] @@ -11721,12 +9585,6 @@ Habitat = Forest Category = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMECHO] Name = Chimecho @@ -11753,12 +9611,6 @@ Category = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. Generation = 3 WildItemUncommon = CLEANSETAG -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ABSOL] Name = Absol @@ -11785,12 +9637,6 @@ Habitat = Mountain Category = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WYNAUT] Name = Wynaut @@ -11816,12 +9662,6 @@ Habitat = Cave Category = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WOBBUFFET,Level,15 Incense = LAXINCENSE #------------------------------- @@ -11851,12 +9691,6 @@ Category = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. Generation = 3 WildItemUncommon = SNOWBALL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLALIE,Level,42,FROSLASS,ItemFemale,DAWNSTONE #------------------------------- [GLALIE] @@ -11883,12 +9717,6 @@ Habitat = Cave Category = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPHEAL] Name = Spheal @@ -11916,12 +9744,6 @@ Habitat = Sea Category = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEALEO,Level,32 #------------------------------- [SEALEO] @@ -11949,12 +9771,6 @@ Habitat = Sea Category = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WALREIN,Level,44 #------------------------------- [WALREIN] @@ -11982,12 +9798,6 @@ Habitat = Sea Category = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLAMPERL] Name = Clamperl @@ -12016,12 +9826,6 @@ Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl Generation = 3 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HUNTAIL,TradeItem,DEEPSEATOOTH,GOREBYSS,TradeItem,DEEPSEASCALE #------------------------------- [HUNTAIL] @@ -12049,12 +9853,6 @@ Category = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOREBYSS] Name = Gorebyss @@ -12081,12 +9879,6 @@ Category = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RELICANTH] Name = Relicanth @@ -12115,12 +9907,6 @@ Category = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUVDISC] Name = Luvdisc @@ -12148,12 +9934,6 @@ Category = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. Generation = 3 WildItemCommon = HEARTSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BAGON] Name = Bagon @@ -12181,12 +9961,6 @@ Category = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHELGON,Level,30 #------------------------------- [SHELGON] @@ -12214,12 +9988,6 @@ Category = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SALAMENCE,Level,50 #------------------------------- [SALAMENCE] @@ -12248,12 +10016,6 @@ Category = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELDUM] Name = Beldum @@ -12281,12 +10043,6 @@ Category = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = METANG,Level,20 #------------------------------- [METANG] @@ -12315,12 +10071,6 @@ Category = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = METAGROSS,Level,45 #------------------------------- [METAGROSS] @@ -12349,12 +10099,6 @@ Category = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIROCK] Name = Regirock @@ -12380,12 +10124,6 @@ Habitat = Cave Category = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGICE] Name = Regice @@ -12411,12 +10149,6 @@ Habitat = Cave Category = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGISTEEL] Name = Registeel @@ -12442,12 +10174,6 @@ Habitat = Cave Category = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LATIAS] Name = Latias @@ -12473,12 +10199,6 @@ Habitat = WatersEdge Category = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LATIOS] Name = Latios @@ -12504,12 +10224,6 @@ Habitat = WatersEdge Category = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KYOGRE] Name = Kyogre @@ -12534,12 +10248,6 @@ Habitat = Sea Category = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROUDON] Name = Groudon @@ -12564,12 +10272,6 @@ Habitat = RoughTerrain Category = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RAYQUAZA] Name = Rayquaza @@ -12595,12 +10297,6 @@ Habitat = Rare Category = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [JIRACHI] Name = Jirachi @@ -12629,12 +10325,6 @@ Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DEOXYS] Name = Deoxys @@ -12660,12 +10350,6 @@ Category = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTWIG] Name = Turtwig @@ -12691,12 +10375,6 @@ Shape = Quadruped Category = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GROTLE,Level,18 #------------------------------- [GROTLE] @@ -12722,12 +10400,6 @@ Shape = Quadruped Category = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TORTERRA,Level,32 #------------------------------- [TORTERRA] @@ -12754,12 +10426,6 @@ Shape = Quadruped Category = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMCHAR] Name = Chimchar @@ -12785,12 +10451,6 @@ Shape = BipedalTail Category = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MONFERNO,Level,14 #------------------------------- [MONFERNO] @@ -12817,12 +10477,6 @@ Shape = BipedalTail Category = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 10 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INFERNAPE,Level,36 #------------------------------- [INFERNAPE] @@ -12849,12 +10503,6 @@ Shape = BipedalTail Category = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIPLUP] Name = Piplup @@ -12880,12 +10528,6 @@ Shape = Bipedal Category = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PRINPLUP,Level,16 #------------------------------- [PRINPLUP] @@ -12911,12 +10553,6 @@ Shape = BipedalTail Category = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMPOLEON,Level,36 #------------------------------- [EMPOLEON] @@ -12943,12 +10579,6 @@ Shape = BipedalTail Category = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [STARLY] Name = Starly @@ -12975,12 +10605,6 @@ Shape = Winged Category = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = STARAVIA,Level,14 #------------------------------- [STARAVIA] @@ -13007,12 +10631,6 @@ Shape = Winged Category = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARAPTOR,Level,34 #------------------------------- [STARAPTOR] @@ -13039,12 +10657,6 @@ Shape = Winged Category = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BIDOOF] Name = Bidoof @@ -13070,12 +10682,6 @@ Shape = Quadruped Category = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BIBAREL,Level,15 #------------------------------- [BIBAREL] @@ -13102,12 +10708,6 @@ Shape = BipedalTail Category = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KRICKETOT] Name = Kricketot @@ -13133,12 +10733,6 @@ Category = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KRICKETUNE,Level,10 #------------------------------- [KRICKETUNE] @@ -13165,12 +10759,6 @@ Category = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHINX] Name = Shinx @@ -13196,12 +10784,6 @@ Shape = Quadruped Category = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXIO,Level,15 #------------------------------- [LUXIO] @@ -13227,12 +10809,6 @@ Shape = Quadruped Category = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXRAY,Level,30 #------------------------------- [LUXRAY] @@ -13258,12 +10834,6 @@ Shape = Quadruped Category = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BUDEW] Name = Budew @@ -13291,12 +10861,6 @@ Category = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSELIA,HappinessDay, Incense = ROSEINCENSE #------------------------------- @@ -13325,12 +10889,6 @@ Category = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRANIDOS] Name = Cranidos @@ -13356,12 +10914,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAMPARDOS,Level,30 #------------------------------- [RAMPARDOS] @@ -13387,12 +10939,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHIELDON] Name = Shieldon @@ -13419,12 +10965,6 @@ Shape = Quadruped Category = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BASTIODON,Level,30 #------------------------------- [BASTIODON] @@ -13451,12 +10991,6 @@ Shape = Quadruped Category = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BURMY] Name = Burmy @@ -13483,12 +11017,6 @@ Pokedex = To shelter itself from cold, wintry winds, it covers itself with a clo FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WORMADAM,LevelFemale,20,MOTHIM,LevelMale,20 #------------------------------- [WORMADAM] @@ -13518,12 +11046,6 @@ FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MOTHIM] Name = Mothim @@ -13550,12 +11072,6 @@ Category = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. Generation = 4 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 11 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [COMBEE] Name = Combee @@ -13582,12 +11098,6 @@ Category = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. Generation = 4 WildItemUncommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VESPIQUEN,LevelFemale,21 #------------------------------- [VESPIQUEN] @@ -13615,12 +11125,6 @@ Category = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PACHIRISU] Name = Pachirisu @@ -13646,12 +11150,6 @@ Shape = Quadruped Category = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BUIZEL] Name = Buizel @@ -13677,12 +11175,6 @@ Shape = Quadruped Category = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. Generation = 4 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOATZEL,Level,26 #------------------------------- [FLOATZEL] @@ -13708,12 +11200,6 @@ Shape = Quadruped Category = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHERUBI] Name = Cherubi @@ -13739,12 +11225,6 @@ Category = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHERRIM,Level,25 #------------------------------- [CHERRIM] @@ -13771,12 +11251,6 @@ Pokedex = It blooms during times of strong sunlight. It tries to make up for eve FormName = Overcast Form Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHELLOS] Name = Shellos @@ -13804,12 +11278,6 @@ Pokedex = Its colors and shapes differ from region to region. In the Sinnoh regi FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GASTRODON,Level,30 #------------------------------- [GASTRODON] @@ -13838,12 +11306,6 @@ Pokedex = It has a pliable body without any bones. If any part of its body is to FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AMBIPOM] Name = Ambipom @@ -13868,12 +11330,6 @@ Shape = BipedalTail Category = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRIFLOON] Name = Drifloon @@ -13900,12 +11356,6 @@ Shape = HeadArms Category = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRIFBLIM,Level,28 #------------------------------- [DRIFBLIM] @@ -13932,12 +11382,6 @@ Shape = HeadArms Category = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNEARY] Name = Buneary @@ -13963,12 +11407,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOPUNNY,Happiness, #------------------------------- [LOPUNNY] @@ -13994,12 +11432,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISMAGIUS] Name = Mismagius @@ -14023,12 +11455,6 @@ Shape = Head Category = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONCHKROW] Name = Honchkrow @@ -14054,12 +11480,6 @@ Shape = Winged Category = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLAMEOW] Name = Glameow @@ -14085,12 +11505,6 @@ Shape = Quadruped Category = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PURUGLY,Level,38 #------------------------------- [PURUGLY] @@ -14116,12 +11530,6 @@ Shape = Quadruped Category = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHINGLING] Name = Chingling @@ -14147,12 +11555,6 @@ Category = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. Generation = 4 WildItemUncommon = CLEANSETAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHIMECHO,HappinessNight, Incense = PUREINCENSE #------------------------------- @@ -14181,12 +11583,6 @@ Shape = Quadruped Category = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SKUNTANK,Level,34 #------------------------------- [SKUNTANK] @@ -14213,12 +11609,6 @@ Shape = Quadruped Category = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BRONZOR] Name = Bronzor @@ -14245,12 +11635,6 @@ Category = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRONZONG,Level,33 #------------------------------- [BRONZONG] @@ -14278,12 +11662,6 @@ Category = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BONSLY] Name = Bonsly @@ -14309,12 +11687,6 @@ Shape = HeadLegs Category = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUDOWOODO,HasMove,MIMIC Incense = ROCKINCENSE #------------------------------- @@ -14343,12 +11715,6 @@ Shape = Bipedal Category = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MRMIME,HasMove,MIMIC Incense = ODDINCENSE #------------------------------- @@ -14377,12 +11743,6 @@ Category = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. Generation = 4 WildItemCommon = OVALSTONE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANSEY,DayHoldItem,OVALSTONE Incense = LUCKINCENSE #------------------------------- @@ -14412,12 +11772,6 @@ Category = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPIRITOMB] Name = Spiritomb @@ -14444,12 +11798,6 @@ Shape = HeadBase Category = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIBLE] Name = Gible @@ -14476,12 +11824,6 @@ Shape = BipedalTail Category = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GABITE,Level,24 #------------------------------- [GABITE] @@ -14508,12 +11850,6 @@ Shape = BipedalTail Category = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GARCHOMP,Level,48 #------------------------------- [GARCHOMP] @@ -14540,12 +11876,6 @@ Shape = BipedalTail Category = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUNCHLAX] Name = Munchlax @@ -14574,12 +11904,6 @@ Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SNORLAX,Happiness, Incense = FULLINCENSE #------------------------------- @@ -14607,12 +11931,6 @@ Shape = BipedalTail Category = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LUCARIO,HappinessDay, #------------------------------- [LUCARIO] @@ -14639,12 +11957,6 @@ Shape = BipedalTail Category = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HIPPOPOTAS] Name = Hippopotas @@ -14670,12 +11982,6 @@ Shape = Quadruped Category = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HIPPOWDON,Level,34 #------------------------------- [HIPPOWDON] @@ -14701,12 +12007,6 @@ Shape = Quadruped Category = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKORUPI] Name = Skorupi @@ -14734,12 +12034,6 @@ Category = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAPION,Level,40 #------------------------------- [DRAPION] @@ -14767,12 +12061,6 @@ Category = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -11 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROAGUNK] Name = Croagunk @@ -14800,12 +12088,6 @@ Category = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXICROAK,Level,37 #------------------------------- [TOXICROAK] @@ -14833,12 +12115,6 @@ Category = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARNIVINE] Name = Carnivine @@ -14863,12 +12139,6 @@ Shape = Multiped Category = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FINNEON] Name = Finneon @@ -14894,12 +12164,6 @@ Shape = Finned Category = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. Generation = 4 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUMINEON,Level,31 #------------------------------- [LUMINEON] @@ -14925,12 +12189,6 @@ Shape = Finned Category = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. Generation = 4 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTYKE] Name = Mantyke @@ -14957,12 +12215,6 @@ Shape = Winged Category = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANTINE,HasInParty,REMORAID Incense = WAVEINCENSE #------------------------------- @@ -14992,12 +12244,6 @@ Category = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ABOMASNOW,Level,40 #------------------------------- [ABOMASNOW] @@ -15025,12 +12271,6 @@ Category = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WEAVILE] Name = Weavile @@ -15057,12 +12297,6 @@ Category = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. Generation = 4 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGNEZONE] Name = Magnezone @@ -15089,12 +12323,6 @@ Category = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LICKILICKY] Name = Lickilicky @@ -15120,12 +12348,6 @@ Category = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. Generation = 4 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYPERIOR] Name = Rhyperior @@ -15151,12 +12373,6 @@ Shape = BipedalTail Category = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TANGROWTH] Name = Tangrowth @@ -15181,12 +12397,6 @@ Shape = Bipedal Category = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTIVIRE] Name = Electivire @@ -15212,12 +12422,6 @@ Category = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. Generation = 4 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGMORTAR] Name = Magmortar @@ -15243,12 +12447,6 @@ Category = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. Generation = 4 WildItemUncommon = MAGMARIZER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOGEKISS] Name = Togekiss @@ -15274,12 +12472,6 @@ Shape = Winged Category = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YANMEGA] Name = Yanmega @@ -15306,12 +12498,6 @@ Category = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. Generation = 4 WildItemUncommon = WIDELENS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LEAFEON] Name = Leafeon @@ -15336,12 +12522,6 @@ Shape = Quadruped Category = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GLACEON] Name = Glaceon @@ -15366,12 +12546,6 @@ Shape = Quadruped Category = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLISCOR] Name = Gliscor @@ -15397,12 +12571,6 @@ Shape = Winged Category = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAMOSWINE] Name = Mamoswine @@ -15428,12 +12596,6 @@ Shape = Quadruped Category = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGONZ] Name = Porygon-Z @@ -15458,12 +12620,6 @@ Shape = HeadArms Category = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GALLADE] Name = Gallade @@ -15489,12 +12645,6 @@ Shape = Bipedal Category = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PROBOPASS] Name = Probopass @@ -15521,12 +12671,6 @@ Category = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. Generation = 4 WildItemUncommon = MAGNET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUSKNOIR] Name = Dusknoir @@ -15552,12 +12696,6 @@ Category = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. Generation = 4 WildItemUncommon = SPELLTAG -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FROSLASS] Name = Froslass @@ -15583,12 +12721,6 @@ Shape = HeadArms Category = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. Generation = 4 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROTOM] Name = Rotom @@ -15614,12 +12746,6 @@ Category = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom Generation = 4 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [UXIE] Name = Uxie @@ -15643,12 +12769,6 @@ Shape = BipedalTail Category = Knowledge Pokedex = Known as "The Being of Knowledge." It is said that it can wipe out the memory of those who see its eyes. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MESPRIT] Name = Mesprit @@ -15672,12 +12792,6 @@ Shape = BipedalTail Category = Emotion Pokedex = Known as "The Being of Emotion." It taught humans the nobility of sorrow, pain, and joy. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AZELF] Name = Azelf @@ -15701,12 +12815,6 @@ Shape = BipedalTail Category = Willpower Pokedex = Known as "The Being of Willpower." It sleeps at the bottom of a lake to keep the world in balance. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DIALGA] Name = Dialga @@ -15732,12 +12840,6 @@ Shape = Quadruped Category = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PALKIA] Name = Palkia @@ -15763,12 +12865,6 @@ Shape = BipedalTail Category = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HEATRAN] Name = Heatran @@ -15794,12 +12890,6 @@ Shape = Quadruped Category = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIGIGAS] Name = Regigigas @@ -15823,12 +12913,6 @@ Shape = Bipedal Category = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GIRATINA] Name = Giratina @@ -15855,12 +12939,6 @@ Category = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRESSELIA] Name = Cresselia @@ -15884,12 +12962,6 @@ Shape = Serpentine Category = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHIONE] Name = Phione @@ -15913,12 +12985,6 @@ Shape = HeadArms Category = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MANAPHY] Name = Manaphy @@ -15942,12 +13008,6 @@ Shape = Bipedal Category = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DARKRAI] Name = Darkrai @@ -15971,12 +13031,6 @@ Shape = Bipedal Category = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHAYMIN] Name = Shaymin @@ -16004,12 +13058,6 @@ Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCEUS] Name = Arceus @@ -16034,12 +13082,6 @@ Category = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VICTINI] Name = Victini @@ -16064,12 +13106,6 @@ Shape = Bipedal Category = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNIVY] Name = Snivy @@ -16095,12 +13131,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SERVINE,Level,17 #------------------------------- [SERVINE] @@ -16126,12 +13156,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SERPERIOR,Level,36 #------------------------------- [SERPERIOR] @@ -16157,12 +13181,6 @@ Shape = Serpentine Category = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TEPIG] Name = Tepig @@ -16188,12 +13206,6 @@ Shape = Quadruped Category = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIGNITE,Level,17 #------------------------------- [PIGNITE] @@ -16220,12 +13232,6 @@ Shape = BipedalTail Category = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMBOAR,Level,36 #------------------------------- [EMBOAR] @@ -16252,12 +13258,6 @@ Shape = BipedalTail Category = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [OSHAWOTT] Name = Oshawott @@ -16283,12 +13283,6 @@ Shape = BipedalTail Category = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DEWOTT,Level,17 #------------------------------- [DEWOTT] @@ -16314,12 +13308,6 @@ Shape = BipedalTail Category = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SAMUROTT,Level,36 #------------------------------- [SAMUROTT] @@ -16345,12 +13333,6 @@ Shape = Quadruped Category = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PATRAT] Name = Patrat @@ -16376,12 +13358,6 @@ Shape = Quadruped Category = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WATCHOG,Level,20 #------------------------------- [WATCHOG] @@ -16407,12 +13383,6 @@ Shape = BipedalTail Category = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LILLIPUP] Name = Lillipup @@ -16438,12 +13408,6 @@ Shape = Quadruped Category = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HERDIER,Level,16 #------------------------------- [HERDIER] @@ -16469,12 +13433,6 @@ Shape = Quadruped Category = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STOUTLAND,Level,32 #------------------------------- [STOUTLAND] @@ -16500,12 +13458,6 @@ Shape = Quadruped Category = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PURRLOIN] Name = Purrloin @@ -16531,12 +13483,6 @@ Shape = Quadruped Category = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LIEPARD,Level,20 #------------------------------- [LIEPARD] @@ -16562,12 +13508,6 @@ Shape = Quadruped Category = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PANSAGE] Name = Pansage @@ -16593,12 +13533,6 @@ Shape = BipedalTail Category = Grass Monkey Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leaves are known to relieve stress. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISAGE,Item,LEAFSTONE #------------------------------- [SIMISAGE] @@ -16624,12 +13558,6 @@ Shape = BipedalTail Category = Thorn Monkey Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANSEAR] Name = Pansear @@ -16655,12 +13583,6 @@ Shape = BipedalTail Category = High Temp Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600º F. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISEAR,Item,FIRESTONE #------------------------------- [SIMISEAR] @@ -16686,12 +13608,6 @@ Shape = BipedalTail Category = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANPOUR] Name = Panpour @@ -16717,12 +13633,6 @@ Shape = BipedalTail Category = Spray Pokedex = It does not thrive in dry environments. It keeps itself damp by shooting water stored in its head tuft from its tail. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMIPOUR,Item,WATERSTONE #------------------------------- [SIMIPOUR] @@ -16748,12 +13658,6 @@ Shape = BipedalTail Category = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUNNA] Name = Munna @@ -16779,12 +13683,6 @@ Shape = Quadruped Category = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MUSHARNA,Item,MOONSTONE #------------------------------- [MUSHARNA] @@ -16810,12 +13708,6 @@ Shape = Bipedal Category = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. Generation = 5 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDOVE] Name = Pidove @@ -16842,12 +13734,6 @@ Shape = Winged Category = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TRANQUILL,Level,21 #------------------------------- [TRANQUILL] @@ -16874,12 +13760,6 @@ Shape = Winged Category = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = UNFEZANT,Level,32 #------------------------------- [UNFEZANT] @@ -16906,12 +13786,6 @@ Shape = Winged Category = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLITZLE] Name = Blitzle @@ -16937,12 +13811,6 @@ Shape = Quadruped Category = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. Generation = 5 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZEBSTRIKA,Level,27 #------------------------------- [ZEBSTRIKA] @@ -16968,12 +13836,6 @@ Shape = Quadruped Category = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ROGGENROLA] Name = Roggenrola @@ -17001,12 +13863,6 @@ Pokedex = They were discovered a hundred years ago in an earthquake fissure. Ins Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BOLDORE,Level,25 #------------------------------- [BOLDORE] @@ -17034,12 +13890,6 @@ Pokedex = Because its energy was too great to be contained, the energy leaked an Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GIGALITH,Trade, #------------------------------- [GIGALITH] @@ -17067,12 +13917,6 @@ Pokedex = The solar energy absorbed by its body's orange crystals is magnified i Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WOOBAT] Name = Woobat @@ -17099,12 +13943,6 @@ Shape = Winged Category = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWOOBAT,Happiness, #------------------------------- [SWOOBAT] @@ -17131,12 +13969,6 @@ Shape = Winged Category = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRILBUR] Name = Drilbur @@ -17162,12 +13994,6 @@ Shape = BipedalTail Category = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EXCADRILL,Level,31 #------------------------------- [EXCADRILL] @@ -17194,12 +14020,6 @@ Shape = Bipedal Category = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AUDINO] Name = Audino @@ -17227,12 +14047,6 @@ Pokedex = Its auditory sense is astounding. It has a radar-like ability to under Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TIMBURR] Name = Timburr @@ -17258,12 +14072,6 @@ Shape = Bipedal Category = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GURDURR,Level,25 #------------------------------- [GURDURR] @@ -17289,12 +14097,6 @@ Shape = Bipedal Category = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CONKELDURR,Trade, #------------------------------- [CONKELDURR] @@ -17320,12 +14122,6 @@ Shape = Bipedal Category = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYMPOLE] Name = Tympole @@ -17351,12 +14147,6 @@ Shape = Finned Category = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PALPITOAD,Level,25 #------------------------------- [PALPITOAD] @@ -17383,12 +14173,6 @@ Shape = BipedalTail Category = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. Generation = 5 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEISMITOAD,Level,36 #------------------------------- [SEISMITOAD] @@ -17415,12 +14199,6 @@ Shape = Bipedal Category = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THROH] Name = Throh @@ -17446,12 +14224,6 @@ Category = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. Generation = 5 WildItemUncommon = BLACKBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SAWK] Name = Sawk @@ -17477,12 +14249,6 @@ Category = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. Generation = 5 WildItemUncommon = BLACKBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEWADDLE] Name = Sewaddle @@ -17510,12 +14276,6 @@ Category = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWADLOON,Level,20 #------------------------------- [SWADLOON] @@ -17543,12 +14303,6 @@ Category = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEAVANNY,Happiness, #------------------------------- [LEAVANNY] @@ -17576,12 +14330,6 @@ Category = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VENIPEDE] Name = Venipede @@ -17609,12 +14357,6 @@ Category = Centipede Pokedex = It discovers what is going on around it by using the feelers on its head and tail. It is brutally aggresive. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIRLIPEDE,Level,22 #------------------------------- [WHIRLIPEDE] @@ -17642,12 +14384,6 @@ Category = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCOLIPEDE,Level,30 #------------------------------- [SCOLIPEDE] @@ -17675,12 +14411,6 @@ Category = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COTTONEE] Name = Cottonee @@ -17708,12 +14438,6 @@ Category = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIMSICOTT,Item,SUNSTONE #------------------------------- [WHIMSICOTT] @@ -17741,12 +14465,6 @@ Category = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PETILIL] Name = Petilil @@ -17773,12 +14491,6 @@ Category = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LILLIGANT,Item,SUNSTONE #------------------------------- [LILLIGANT] @@ -17805,12 +14517,6 @@ Category = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BASCULIN] Name = Basculin @@ -17839,12 +14545,6 @@ FormName = Red-Striped Generation = 5 Flags = InheritFormFromMother WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDILE] Name = Sandile @@ -17872,12 +14572,6 @@ Category = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. Generation = 5 WildItemUncommon = BLACKGLASSES -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 37 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KROKOROK,Level,29 #------------------------------- [KROKOROK] @@ -17905,12 +14599,6 @@ Category = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. Generation = 5 WildItemUncommon = BLACKGLASSES -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KROOKODILE,Level,40 #------------------------------- [KROOKODILE] @@ -17938,12 +14626,6 @@ Category = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. Generation = 5 WildItemCommon = BLACKGLASSES -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DARUMAKA] Name = Darumaka @@ -17969,12 +14651,6 @@ Shape = Bipedal Category = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARMANITAN,Level,35 #------------------------------- [DARMANITAN] @@ -18001,12 +14677,6 @@ Category = Blazing Pokedex = When weakened in battle, it transforms into a stone statue. Then it sharpens its mind and fights on mentally. FormName = Standard Mode Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MARACTUS] Name = Maractus @@ -18033,12 +14703,6 @@ Category = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. Generation = 5 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DWEBBLE] Name = Dwebble @@ -18066,12 +14730,6 @@ Category = Rock Inn Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon remains agitated until it locates a replacement. Generation = 5 WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRUSTLE,Level,34 #------------------------------- [CRUSTLE] @@ -18099,12 +14757,6 @@ Category = Stone Home Pokedex = It possesses legs of enormous strength, enabling it to carry heavy slabs for many days, even when crossing arid land. Generation = 5 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SCRAGGY] Name = Scraggy @@ -18132,12 +14784,6 @@ Category = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SCRAFTY,Level,39 #------------------------------- [SCRAFTY] @@ -18165,12 +14811,6 @@ Category = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SIGILYPH] Name = Sigilyph @@ -18197,12 +14837,6 @@ Shape = Winged Category = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. Generation = 5 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YAMASK] Name = Yamask @@ -18228,12 +14862,6 @@ Category = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COFAGRIGUS,Level,34 #------------------------------- [COFAGRIGUS] @@ -18259,12 +14887,6 @@ Category = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TIRTOUGA] Name = Tirtouga @@ -18291,12 +14913,6 @@ Shape = Quadruped Category = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CARRACOSTA,Level,37 #------------------------------- [CARRACOSTA] @@ -18323,12 +14939,6 @@ Shape = BipedalTail Category = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARCHEN] Name = Archen @@ -18354,12 +14964,6 @@ Shape = Winged Category = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ARCHEOPS,Level,37 #------------------------------- [ARCHEOPS] @@ -18385,12 +14989,6 @@ Shape = Winged Category = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. Generation = 5 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRUBBISH] Name = Trubbish @@ -18417,12 +15015,6 @@ Category = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. Generation = 5 WildItemUncommon = SILKSCARF -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GARBODOR,Level,36 #------------------------------- [GARBODOR] @@ -18450,12 +15042,6 @@ Pokedex = They absorb garbage and make it part of their bodies. They shoot a poi Generation = 5 WildItemCommon = SILKSCARF WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZORUA] Name = Zorua @@ -18480,12 +15066,6 @@ Shape = Quadruped Category = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZOROARK,Level,30 #------------------------------- [ZOROARK] @@ -18510,12 +15090,6 @@ Shape = BipedalTail Category = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MINCCINO] Name = Minccino @@ -18541,12 +15115,6 @@ Shape = Quadruped Category = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CINCCINO,Item,SHINYSTONE #------------------------------- [CINCCINO] @@ -18572,12 +15140,6 @@ Shape = Quadruped Category = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOTHITA] Name = Gothita @@ -18603,12 +15165,6 @@ Shape = Bipedal Category = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHORITA,Level,32 #------------------------------- [GOTHORITA] @@ -18634,12 +15190,6 @@ Shape = Bipedal Category = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHITELLE,Level,41 #------------------------------- [GOTHITELLE] @@ -18665,12 +15215,6 @@ Shape = Bipedal Category = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLOSIS] Name = Solosis @@ -18696,12 +15240,6 @@ Shape = Head Category = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DUOSION,Level,32 #------------------------------- [DUOSION] @@ -18727,12 +15265,6 @@ Shape = Head Category = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = REUNICLUS,Level,41 #------------------------------- [REUNICLUS] @@ -18758,12 +15290,6 @@ Shape = HeadArms Category = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DUCKLETT] Name = Ducklett @@ -18790,12 +15316,6 @@ Shape = Winged Category = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWANNA,Level,35 #------------------------------- [SWANNA] @@ -18822,12 +15342,6 @@ Shape = Winged Category = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VANILLITE] Name = Vanillite @@ -18854,12 +15368,6 @@ Category = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VANILLISH,Level,35 #------------------------------- [VANILLISH] @@ -18886,12 +15394,6 @@ Category = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VANILLUXE,Level,47 #------------------------------- [VANILLUXE] @@ -18918,12 +15420,6 @@ Category = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. Generation = 5 WildItemCommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEERLING] Name = Deerling @@ -18951,12 +15447,6 @@ Category = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SAWSBUCK,Level,34 #------------------------------- [SAWSBUCK] @@ -18984,12 +15474,6 @@ Category = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EMOLGA] Name = Emolga @@ -19016,12 +15500,6 @@ Shape = Quadruped Category = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARRABLAST] Name = Karrablast @@ -19047,12 +15525,6 @@ Shape = Bipedal Category = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ESCAVALIER,TradeSpecies,SHELMET #------------------------------- [ESCAVALIER] @@ -19079,12 +15551,6 @@ Shape = HeadArms Category = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FOONGUS] Name = Foongus @@ -19113,12 +15579,6 @@ Pokedex = For some reason, this Pokémon resembles a Poké Ball. They release po Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMOONGUSS,Level,39 #------------------------------- [AMOONGUSS] @@ -19147,12 +15607,6 @@ Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémo Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FRILLISH] Name = Frillish @@ -19179,12 +15633,6 @@ Shape = Multiped Category = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = JELLICENT,Level,40 #------------------------------- [JELLICENT] @@ -19211,12 +15659,6 @@ Shape = Multiped Category = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ALOMOMOLA] Name = Alomomola @@ -19242,12 +15684,6 @@ Shape = Finned Category = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [JOLTIK] Name = Joltik @@ -19274,12 +15710,6 @@ Shape = Insectoid Category = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GALVANTULA,Level,36 #------------------------------- [GALVANTULA] @@ -19306,12 +15736,6 @@ Shape = Insectoid Category = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FERROSEED] Name = Ferroseed @@ -19338,12 +15762,6 @@ Category = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FERROTHORN,Level,40 #------------------------------- [FERROTHORN] @@ -19371,12 +15789,6 @@ Category = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLINK] Name = Klink @@ -19401,12 +15813,6 @@ Shape = MultiBody Category = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KLANG,Level,38 #------------------------------- [KLANG] @@ -19432,12 +15838,6 @@ Shape = MultiBody Category = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KLINKLANG,Level,49 #------------------------------- [KLINKLANG] @@ -19463,12 +15863,6 @@ Shape = MultiBody Category = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYNAMO] Name = Tynamo @@ -19492,12 +15886,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTRIK,Level,39 #------------------------------- [EELEKTRIK] @@ -19522,12 +15910,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTROSS,Item,THUNDERSTONE #------------------------------- [EELEKTROSS] @@ -19552,12 +15934,6 @@ Shape = Finned Category = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELGYEM] Name = Elgyem @@ -19583,12 +15959,6 @@ Shape = BipedalTail Category = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEHEEYEM,Level,42 #------------------------------- [BEHEEYEM] @@ -19614,12 +15984,6 @@ Shape = Bipedal Category = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LITWICK] Name = Litwick @@ -19646,12 +16010,6 @@ Shape = HeadBase Category = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAMPENT,Level,41 #------------------------------- [LAMPENT] @@ -19678,12 +16036,6 @@ Shape = HeadArms Category = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANDELURE,Item,DUSKSTONE #------------------------------- [CHANDELURE] @@ -19710,12 +16062,6 @@ Shape = HeadArms Category = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AXEW] Name = Axew @@ -19741,12 +16087,6 @@ Shape = BipedalTail Category = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FRAXURE,Level,38 #------------------------------- [FRAXURE] @@ -19772,12 +16112,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HAXORUS,Level,48 #------------------------------- [HAXORUS] @@ -19803,12 +16137,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CUBCHOO] Name = Cubchoo @@ -19834,12 +16162,6 @@ Shape = BipedalTail Category = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEARTIC,Level,37 #------------------------------- [BEARTIC] @@ -19865,12 +16187,6 @@ Shape = Quadruped Category = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRYOGONAL] Name = Cryogonal @@ -19895,12 +16211,6 @@ Category = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELMET] Name = Shelmet @@ -19926,12 +16236,6 @@ Shape = Head Category = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ACCELGOR,TradeSpecies,KARRABLAST #------------------------------- [ACCELGOR] @@ -19957,12 +16261,6 @@ Shape = HeadArms Category = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [STUNFISK] Name = Stunfisk @@ -19990,12 +16288,6 @@ Category = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. Generation = 5 WildItemUncommon = SOFTSAND -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIENFOO] Name = Mienfoo @@ -20021,12 +16313,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIENSHAO,Level,50 #------------------------------- [MIENSHAO] @@ -20052,12 +16338,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRUDDIGON] Name = Druddigon @@ -20084,12 +16364,6 @@ Category = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. Generation = 5 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOLETT] Name = Golett @@ -20116,12 +16390,6 @@ Category = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLURK,Level,43 #------------------------------- [GOLURK] @@ -20149,12 +16417,6 @@ Category = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PAWNIARD] Name = Pawniard @@ -20181,12 +16443,6 @@ Shape = Bipedal Category = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BISHARP,Level,52 #------------------------------- [BISHARP] @@ -20213,12 +16469,6 @@ Shape = Bipedal Category = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUFFALANT] Name = Bouffalant @@ -20244,12 +16494,6 @@ Shape = Quadruped Category = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RUFFLET] Name = Rufflet @@ -20275,12 +16519,6 @@ Shape = Winged Category = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRAVIARY,Level,54 #------------------------------- [BRAVIARY] @@ -20307,12 +16545,6 @@ Shape = Winged Category = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VULLABY] Name = Vullaby @@ -20339,12 +16571,6 @@ Shape = Winged Category = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANDIBUZZ,Level,54 #------------------------------- [MANDIBUZZ] @@ -20371,12 +16597,6 @@ Shape = Winged Category = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HEATMOR] Name = Heatmor @@ -20402,12 +16622,6 @@ Shape = BipedalTail Category = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DURANT] Name = Durant @@ -20434,12 +16648,6 @@ Shape = Insectoid Category = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEINO] Name = Deino @@ -20465,12 +16673,6 @@ Shape = Quadruped Category = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZWEILOUS,Level,50 #------------------------------- [ZWEILOUS] @@ -20496,12 +16698,6 @@ Shape = Quadruped Category = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HYDREIGON,Level,64 #------------------------------- [HYDREIGON] @@ -20527,12 +16723,6 @@ Shape = BipedalTail Category = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVESTA] Name = Larvesta @@ -20559,12 +16749,6 @@ Shape = Insectoid Category = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VOLCARONA,Level,59 #------------------------------- [VOLCARONA] @@ -20594,12 +16778,6 @@ Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COBALION] Name = Cobalion @@ -20624,12 +16802,6 @@ Shape = Quadruped Category = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TERRAKION] Name = Terrakion @@ -20654,12 +16826,6 @@ Shape = Quadruped Category = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VIRIZION] Name = Virizion @@ -20684,12 +16850,6 @@ Shape = Quadruped Category = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TORNADUS] Name = Tornadus @@ -20715,12 +16875,6 @@ Category = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THUNDURUS] Name = Thundurus @@ -20747,12 +16901,6 @@ Category = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RESHIRAM] Name = Reshiram @@ -20777,12 +16925,6 @@ Shape = Winged Category = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZEKROM] Name = Zekrom @@ -20807,12 +16949,6 @@ Shape = BipedalTail Category = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LANDORUS] Name = Landorus @@ -20839,12 +16975,6 @@ Category = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KYUREM] Name = Kyurem @@ -20869,12 +16999,6 @@ Shape = BipedalTail Category = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KELDEO] Name = Keldeo @@ -20900,12 +17024,6 @@ Category = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELOETTA] Name = Meloetta @@ -20934,12 +17052,6 @@ Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GENESECT] Name = Genesect @@ -20965,12 +17077,6 @@ Category = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHESPIN] Name = Chespin @@ -20996,12 +17102,6 @@ Shape = BipedalTail Category = Spiny Nut Pokedex = The quills on its head are usually soft. When it flexes them, the points become so hard and sharp that they can pierce rock. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = QUILLADIN,Level,16 #------------------------------- [QUILLADIN] @@ -21027,12 +17127,6 @@ Shape = BipedalTail Category = Spiny Armor Pokedex = They strengthen their lower bodies by running into one another. They are very kind and won't start fights. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHESNAUGHT,Level,36 #------------------------------- [CHESNAUGHT] @@ -21059,12 +17153,6 @@ Shape = BipedalTail Category = Spiny Armor Pokedex = Its Tackle is forceful enough to flip a 50-ton tank. It shields its allies from danger with its own body. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FENNEKIN] Name = Fennekin @@ -21090,12 +17178,6 @@ Shape = Quadruped Category = Fox Pokedex = As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRAIXEN,Level,16 #------------------------------- [BRAIXEN] @@ -21121,12 +17203,6 @@ Shape = BipedalTail Category = Fox Pokedex = When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DELPHOX,Level,36 #------------------------------- [DELPHOX] @@ -21153,12 +17229,6 @@ Shape = BipedalTail Category = Fox Pokedex = It gazes into the flame at the tip of its branch to achieve a focused state, which allows it to see into the future. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FROAKIE] Name = Froakie @@ -21184,12 +17254,6 @@ Shape = Quadruped Category = Bubble Frog Pokedex = It protects its skin by covering its body in delicate bubbles. Beneath its happy-go-lucky air, it keeps a watchful eye on its surroundings. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FROGADIER,Level,16 #------------------------------- [FROGADIER] @@ -21215,12 +17279,6 @@ Shape = Bipedal Category = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GRENINJA,Level,36 #------------------------------- [GRENINJA] @@ -21247,12 +17305,6 @@ Shape = Bipedal Category = Ninja Pokedex = It appears and vanishes with a ninja’s grace. It toys with its enemies using swift movements, while slicing them with throwing stars of sharpest water. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNNELBY] Name = Bunnelby @@ -21278,12 +17330,6 @@ Shape = BipedalTail Category = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DIGGERSBY,Level,20 #------------------------------- [DIGGERSBY] @@ -21310,12 +17356,6 @@ Shape = BipedalTail Category = Digging Pokedex = As powerful as an excavator, its ears can reduce dense bedrock to rubble. When it's finished digging, it lounges lazily. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLETCHLING] Name = Fletchling @@ -21342,12 +17382,6 @@ Shape = Winged Category = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLETCHINDER,Level,17 #------------------------------- [FLETCHINDER] @@ -21374,12 +17408,6 @@ Shape = Winged Category = Ember Pokedex = From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TALONFLAME,Level,35 #------------------------------- [TALONFLAME] @@ -21406,12 +17434,6 @@ Shape = Winged Category = Scorching Pokedex = In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCATTERBUG] Name = Scatterbug @@ -21437,12 +17459,6 @@ Shape = Insectoid Category = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SPEWPA,Level,9 #------------------------------- [SPEWPA] @@ -21468,12 +17484,6 @@ Shape = HeadBase Category = Scatterdust Pokedex = It lives hidden within thicket shadows. When predators attack, it quickly bristles the fur covering its body in an effort to threaten them. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIVILLON,Level,12 #------------------------------- [VIVILLON] @@ -21501,12 +17511,6 @@ Category = Scale Pokedex = Vivillon with many different patterns are found all over the world. These patterns are affected by the climate of their habitat. FormName = Archipelago Pattern Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LITLEO] Name = Litleo @@ -21533,12 +17537,6 @@ Shape = Quadruped Category = Lion Cub Pokedex = They set off on their own from their pride and live by themselves to become stronger. These hot-blooded Pokémon are quick to fight. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PYROAR,Level,35 #------------------------------- [PYROAR] @@ -21565,12 +17563,6 @@ Shape = Quadruped Category = Royal Pokedex = With fiery breath of more than 6,000 degrees Celsius, they viciously threaten any challenger. The females protect the pride’s cubs. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLABEBE] Name = Flabébé @@ -21598,12 +17590,6 @@ Pokedex = When it finds a flower it likes, it dwells on that flower its whole li FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOETTE,Level,19 #------------------------------- [FLOETTE] @@ -21631,12 +17617,6 @@ Pokedex = It flutters around fields of flowers and cares for flowers that are st FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLORGES,Item,SHINYSTONE #------------------------------- [FLORGES] @@ -21664,12 +17644,6 @@ Pokedex = It claims exquisite flower gardens as its territory, and it obtains po FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SKIDDO] Name = Skiddo @@ -21695,12 +17669,6 @@ Shape = Quadruped Category = Mount Pokedex = If it has sunshine and water, it doesn't need to eat, because it can generate energy from the leaves on its back. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOGOAT,Level,32 #------------------------------- [GOGOAT] @@ -21726,12 +17694,6 @@ Shape = Quadruped Category = Mount Pokedex = It can tell how its trainer is feeling by subtle shifts in the grip on its horns. This empathetic sense lets them run as if one being. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANCHAM] Name = Pancham @@ -21758,12 +17720,6 @@ Category = Playful Pokedex = It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark. Generation = 6 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PANGORO,LevelDarkInParty,32 #------------------------------- [PANGORO] @@ -21791,12 +17747,6 @@ Category = Daunting Pokedex = It charges ahead and bashes its opponents like a berserker, uncaring about any hits it might take. Its arms are mighty enough to snap a telephone pole. Generation = 6 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FURFROU] Name = Furfrou @@ -21822,12 +17772,6 @@ Category = Poodle Pokedex = Trimming its fluffy fur not only makes it more elegant but also increases the swiftness of its movements. FormName = Natural Form Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPURR] Name = Espurr @@ -21853,12 +17797,6 @@ Shape = BipedalTail Category = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEOWSTIC,Level,25 #------------------------------- [MEOWSTIC] @@ -21885,12 +17823,6 @@ Category = Constraint Pokedex = When in danger, it raises its ears and releases enough psychic power to grind a 10-ton truck to dust. FormName = Male Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONEDGE] Name = Honedge @@ -21916,12 +17848,6 @@ Shape = HeadBase Category = Sword Pokedex = Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DOUBLADE,Level,35 #------------------------------- [DOUBLADE] @@ -21947,12 +17873,6 @@ Shape = MultiBody Category = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AEGISLASH,Item,DUSKSTONE #------------------------------- [AEGISLASH] @@ -21979,12 +17899,6 @@ Category = Royal Sword Pokedex = Apparently, it can detect the innate qualities of leadership. According to legend, whoever it recognizes is destined to become king. FormName = Shield Forme Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPRITZEE] Name = Spritzee @@ -22010,12 +17924,6 @@ Shape = HeadArms Category = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AROMATISSE,TradeItem,SACHET #------------------------------- [AROMATISSE] @@ -22041,12 +17949,6 @@ Shape = Bipedal Category = Fragrance Pokedex = It devises various scents, pleasant and unpleasant, and emits scents that its enemies dislike in order to gain an edge in battle. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SWIRLIX] Name = Swirlix @@ -22072,12 +17974,6 @@ Shape = HeadLegs Category = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLURPUFF,TradeItem,WHIPPEDDREAM #------------------------------- [SLURPUFF] @@ -22103,12 +17999,6 @@ Shape = Bipedal Category = Meringue Pokedex = It can distinguish the faintest of scents. It puts its sensitive sense of smell to use by helping pastry chefs in their work. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [INKAY] Name = Inkay @@ -22135,12 +18025,6 @@ Shape = Multiped Category = Revolving Pokedex = It flashes the light-emitting spots on its body, which drains its opponent's will to fight. It takes the opportunity to scuttle away and hide. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MALAMAR,Level,30 #------------------------------- [MALAMAR] @@ -22167,12 +18051,6 @@ Shape = HeadBase Category = Overturning Pokedex = It lures prey close with hypnotic motions, then wraps its tentacles around it before finishing it off with digestive fluids. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BINACLE] Name = Binacle @@ -22199,12 +18077,6 @@ Shape = MultiBody Category = Two-Handed Pokedex = They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BARBARACLE,Level,39 #------------------------------- [BARBARACLE] @@ -22231,12 +18103,6 @@ Shape = MultiBody Category = Collective Pokedex = Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SKRELP] Name = Skrelp @@ -22263,12 +18129,6 @@ Shape = HeadBase Category = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGALGE,Level,48 #------------------------------- [DRAGALGE] @@ -22295,12 +18155,6 @@ Shape = HeadBase Category = Mock Kelp Pokedex = Their poison is strong enough to eat through the hull of a tanker, and they spit it indiscriminately at anything that enters their territory. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CLAUNCHER] Name = Clauncher @@ -22325,12 +18179,6 @@ Shape = Insectoid Category = Water Gun Pokedex = Through controlled expulsions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLAWITZER,Level,37 #------------------------------- [CLAWITZER] @@ -22355,12 +18203,6 @@ Shape = Serpentine Category = Howitzer Pokedex = By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HELIOPTILE] Name = Helioptile @@ -22387,12 +18229,6 @@ Shape = BipedalTail Category = Generator Pokedex = They make their home in deserts. They can generate their energy from basking in the sun, so eating food is not a requirement. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HELIOLISK,Item,SUNSTONE #------------------------------- [HELIOLISK] @@ -22419,12 +18255,6 @@ Shape = BipedalTail Category = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYRUNT] Name = Tyrunt @@ -22451,12 +18281,6 @@ Shape = BipedalTail Category = Royal Heir Pokedex = Its immense jaws have enough destructive force that it can chew up an automobile. It lived 100 million years ago. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANTRUM,LevelDay,39 #------------------------------- [TYRANTRUM] @@ -22483,12 +18307,6 @@ Shape = BipedalTail Category = Despot Pokedex = Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AMAURA] Name = Amaura @@ -22515,12 +18333,6 @@ Shape = Quadruped Category = Tundra Pokedex = This ancient Pokémon was restored from part of its body that had been frozen in ice for over 100 million years. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AURORUS,LevelNight,39 #------------------------------- [AURORUS] @@ -22547,12 +18359,6 @@ Shape = Quadruped Category = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SYLVEON] Name = Sylveon @@ -22577,12 +18383,6 @@ Shape = Quadruped Category = Intertwining Pokedex = Its ribbonlike feelers give off an aura that weakens hostility in its prey, causing them to let down their guard. Then it attacks. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HAWLUCHA] Name = Hawlucha @@ -22610,12 +18410,6 @@ Category = Wrestling Pokedex = With its wings, it controls its position in the air. It likes to attack from above, a maneuver that is difficult to defend against. Generation = 6 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DEDENNE] Name = Dedenne @@ -22642,12 +18436,6 @@ Shape = BipedalTail Category = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARBINK] Name = Carbink @@ -22673,12 +18461,6 @@ Shape = Head Category = Jewel Pokedex = Born from the high temperatures and pressures deep underground, it defends itself by firing beams from the jewel part of its body. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOOMY] Name = Goomy @@ -22705,12 +18487,6 @@ Category = Soft Tissue Pokedex = Its source of protection is its slimy, germ-laden mucous membrane. Anyone who touches it needs some thorough hand-washing. Generation = 6 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLIGGOO,Level,40 #------------------------------- [SLIGGOO] @@ -22737,12 +18513,6 @@ Category = Soft Tissue Pokedex = This Pokémon's mucous can dissolve anything. Toothless, it sprays mucous on its prey. Once they're nicely dissolved, it slurps them up. Generation = 6 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOODRA,LevelRain,50 #------------------------------- [GOODRA] @@ -22768,12 +18538,6 @@ Shape = BipedalTail Category = Dragon Pokedex = It gets picked on because it's meek. But then, whoever teased it gets to feel the full force of its horns and a good swatting from its thick tail. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLEFKI] Name = Klefki @@ -22800,12 +18564,6 @@ Shape = Head Category = Key Ring Pokedex = It never lets go of a key that it likes, so people give it the keys to vaults and safes as a way to prevent crime. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANTUMP] Name = Phantump @@ -22832,12 +18590,6 @@ Shape = HeadArms Category = Stump Pokedex = These Pokémon are stumps possessed by the spirits of children who died in the forest. Their cries sound like eerie screams. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TREVENANT,Trade, #------------------------------- [TREVENANT] @@ -22864,12 +18616,6 @@ Shape = Multiped Category = Elder Tree Pokedex = Through its roots, it exerts control over other trees. A deadly curse falls upon anyone cutting down trees in forests where Trevenant dwell. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PUMPKABOO] Name = Pumpkaboo @@ -22897,12 +18643,6 @@ Pokedex = The pumpkin body is inhabited by a spirit trapped in this world. As th FormName = Small Size Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOURGEIST,Trade, #------------------------------- [GOURGEIST] @@ -22930,12 +18670,6 @@ Pokedex = Singing in eerie voices, they wander town streets on the night of the FormName = Small Size Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BERGMITE] Name = Bergmite @@ -22961,12 +18695,6 @@ Shape = Quadruped Category = Ice Chunk Pokedex = It blocks opponents' attacks with the ice that shields its body. It uses cold air to repair any cracks with new ice. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AVALUGG,Level,37 #------------------------------- [AVALUGG] @@ -22992,12 +18720,6 @@ Shape = Quadruped Category = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NOIBAT] Name = Noibat @@ -23024,12 +18746,6 @@ Shape = Winged Category = Sound Wave Pokedex = Even a robust wrestler will become dizzy and unable to stand when exposed to its 200,000-hertz ultrasonic waves. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOIVERN,Level,48 #------------------------------- [NOIVERN] @@ -23056,12 +18772,6 @@ Shape = Winged Category = Sound Wave Pokedex = They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [XERNEAS] Name = Xerneas @@ -23086,12 +18796,6 @@ Category = Life Pokedex = Legends say it can share eternal life. It slept for a thousand years in the form of a tree before its revival. FormName = Neutral Mode Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YVELTAL] Name = Yveltal @@ -23116,12 +18820,6 @@ Shape = Winged Category = Destruction Pokedex = When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZYGARDE] Name = Zygarde @@ -23147,12 +18845,6 @@ Category = Order Pokedex = It's thought to be monitoring the ecosystem. There are rumors that even greater power lies hidden within it. FormName = 50% Forme Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIANCIE] Name = Diancie @@ -23177,12 +18869,6 @@ Shape = HeadArms Category = Jewel Pokedex = A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOPA] Name = Hoopa @@ -23208,12 +18894,6 @@ Category = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VOLCANION] Name = Volcanion @@ -23238,12 +18918,6 @@ Shape = Quadruped Category = Steam Pokedex = It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ROWLET] Name = Rowlet @@ -23270,12 +18944,6 @@ Shape = Winged Category = Grass Quill Pokedex = It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARTRIX,Level,17 #------------------------------- [DARTRIX] @@ -23302,12 +18970,6 @@ Shape = Winged Category = Blade Quill Pokedex = A bit of a dandy, it spends its free time preening its wings. Its preoccupation with any dirt on its plumage can leave it unable to battle. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DECIDUEYE,Level,34 #------------------------------- [DECIDUEYE] @@ -23334,12 +18996,6 @@ Shape = Winged Category = Arrow Quill Pokedex = It fires arrow quills from its wings with such precision, they can pierce a pebble at distances over a hundred yards. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LITTEN] Name = Litten @@ -23365,12 +19021,6 @@ Shape = Quadruped Category = Fire Cat Pokedex = Its coat regrows twice a year. When the time comes, Litten sets its own body on fire and burns away the old fur. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TORRACAT,Level,17 #------------------------------- [TORRACAT] @@ -23396,12 +19046,6 @@ Shape = Quadruped Category = Fire Cat Pokedex = It can act spoiled if it grows close to its Trainer. A powerful Pokémon, its sharp claws can leave its Trainer's whole body covered in scratches. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INCINEROAR,Level,34 #------------------------------- [INCINEROAR] @@ -23428,12 +19072,6 @@ Shape = BipedalTail Category = Heel Pokedex = Although it's rough mannered and egotistical, it finds beating down unworthy opponents boring. It gets motivated for stronger opponents. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [POPPLIO] Name = Popplio @@ -23459,12 +19097,6 @@ Shape = Finned Category = Sea Lion Pokedex = This Pokémon snorts body fluids from its nose, blowing balloons to smash into its foes. It's famous for being a hard worker. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRIONNE,Level,17 #------------------------------- [BRIONNE] @@ -23490,12 +19122,6 @@ Shape = Finned Category = Pop Star Pokedex = It gets excited when it sees a dance it doesn't know. This hard worker practices diligently until it can learn that dance. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMARINA,Level,34 #------------------------------- [PRIMARINA] @@ -23522,12 +19148,6 @@ Shape = Finned Category = Soloist Pokedex = It controls its water balloons with song. The melody is learned from others of its kind and is passed down from one generation to the next. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIKIPEK] Name = Pikipek @@ -23555,12 +19175,6 @@ Category = Woodpecker Pokedex = It pecks at trees with its hard beak. You can get some idea of its mood or condition from the rhythm of its pecking. Generation = 7 WildItemUncommon = ORANBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TRUMBEAK,Level,14 #------------------------------- [TRUMBEAK] @@ -23588,12 +19202,6 @@ Category = Bugle Beak Pokedex = It eats berries and stores their seeds in its beak. When it encounters enemies or prey, it fires off all the seeds in a burst. Generation = 7 WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOUCANNON,Level,28 #------------------------------- [TOUCANNON] @@ -23621,12 +19229,6 @@ Category = Cannon Pokedex = They smack beaks with others of their kind to communicate. The strength and number of hits tell each other how they feel. Generation = 7 WildItemUncommon = RAWSTBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YUNGOOS] Name = Yungoos @@ -23653,12 +19255,6 @@ Category = Loitering Pokedex = Its stomach takes up most of its long torso. It's a big eater, so the amount Trainers have to spend on its food is no laughing matter. Generation = 7 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GUMSHOOS,LevelDay,20 #------------------------------- [GUMSHOOS] @@ -23685,12 +19281,6 @@ Category = Stakeout Pokedex = When it finds a trace of its prey, it patiently stakes out the location... but it's always snoozing by nightfall. Generation = 7 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GRUBBIN] Name = Grubbin @@ -23715,12 +19305,6 @@ Shape = Insectoid Category = Larva Pokedex = It spits a sticky thread to stop opponents in their tracks, and then it grabs them in its sharp, sturdy mandibles to take them down. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARJABUG,Level,20 #------------------------------- [CHARJABUG] @@ -23747,12 +19331,6 @@ Category = Battery Pokedex = It buries itself in fallen leaves and barely moves, munching away on humus. If you accidentally step on one, you'll get a shock! Generation = 7 WildItemUncommon = CELLBATTERY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIKAVOLT,LocationFlag,Magnetic #------------------------------- [VIKAVOLT] @@ -23778,12 +19356,6 @@ Shape = Insectoid Category = Stag Beetle Pokedex = It zips around, on sharp lookout for an opening. It concentrates electrical energy within its large jaws and uses it to zap its enemies. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRABRAWLER] Name = Crabrawler @@ -23810,12 +19382,6 @@ Category = Boxing Pokedex = It punches so much, its pincers often come off from overuse, but they grow back quickly. What little meat they contain is rich and delicious. Generation = 7 WildItemUncommon = ASPEARBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRABOMINABLE,LocationFlag,IceRock #------------------------------- [CRABOMINABLE] @@ -23843,12 +19409,6 @@ Category = Woolly Crab Pokedex = It aimed for the top but got lost and ended up on a snowy mountain. Being forced to endure the cold, this Pokémon evolved and grew fur. Generation = 7 WildItemUncommon = CHERIBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ORICORIO] Name = Oricorio @@ -23877,12 +19437,6 @@ FormName = Baile Style Generation = 7 Flags = InheritFormFromMother WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUTIEFLY] Name = Cutiefly @@ -23910,12 +19464,6 @@ Category = Bee Fly Pokedex = It feeds on the nectar and pollen of flowers. Because it's able to sense auras, it can identify which flowers are about to bloom. Generation = 7 WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RIBOMBEE,Level,25 #------------------------------- [RIBOMBEE] @@ -23943,12 +19491,6 @@ Category = Bee Fly Pokedex = Rain makes pollen damp, so Ribombee hates rain. When it sees ominous clouds, it finds a hollow in a tree, where it waits stock-still. Generation = 7 WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ROCKRUFF] Name = Rockruff @@ -23974,12 +19516,6 @@ Shape = Quadruped Category = Puppy Pokedex = This Pokémon has lived with people since times long ago. It can sense when its Trainer is in the dumps and will stick close by its Trainer's side. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LYCANROC,Level,25 #------------------------------- [LYCANROC] @@ -24006,12 +19542,6 @@ Category = Wolf Pokedex = Its quick movements confuse its enemies. Well equipped with claws and fangs, it also uses the sharp rocks in its mane as weapons. FormName = Midday Form Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WISHIWASHI] Name = Wishiwashi @@ -24037,12 +19567,6 @@ Category = Small Fry Pokedex = It's awfully weak and notably tasty, so everyone is always out to get it. As it happens, anyone trying to bully it receives a painful lesson. FormName = Solo Form Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREANIE] Name = Mareanie @@ -24070,12 +19594,6 @@ Category = Brutal Star Pokedex = It plunges the poison spike on its head into its prey. When the prey has weakened, Mareanie deals the finishing blow with its 10 tentacles. Generation = 7 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXAPEX,Level,38 #------------------------------- [TOXAPEX] @@ -24103,12 +19621,6 @@ Category = Brutal Star Pokedex = Those attacked by Toxapex's poison will suffer intense pain for three days and three nights. Post-recovery, there will be some aftereffects. Generation = 7 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUDBRAY] Name = Mudbray @@ -24135,12 +19647,6 @@ Category = Donkey Pokedex = It loves playing in the mud. If it isn't showered with mud on a daily basis, it gets stressed out and stops listening to its Trainer. Generation = 7 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MUDSDALE,Level,30 #------------------------------- [MUDSDALE] @@ -24167,12 +19673,6 @@ Category = Draft Horse Pokedex = It remains calm and unmoving no matter the situation. It mixes dirt with the saliva in its mouth to make a special kind of mud. Generation = 7 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DEWPIDER] Name = Dewpider @@ -24200,12 +19700,6 @@ Category = Water Bubble Pokedex = When two Dewpider meet, they display their water bubbles to each other. Then the one with the smaller bubble gets out of the other's way. Generation = 7 WildItemUncommon = MYSTICWATER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARAQUANID,Level,22 #------------------------------- [ARAQUANID] @@ -24233,12 +19727,6 @@ Category = Water Bubble Pokedex = It delivers headbutts with the water bubble on its head. Small Pokémon get sucked into the bubble, where they drown. Generation = 7 WildItemUncommon = MYSTICWATER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FOMANTIS] Name = Fomantis @@ -24265,12 +19753,6 @@ Category = Sickle Grass Pokedex = When the sun rises, Fomantis spreads its four leaves and bathes in the sunlight. The tip of its head has a pleasant aroma. Generation = 7 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LURANTIS,LevelDay,34 #------------------------------- [LURANTIS] @@ -24297,12 +19779,6 @@ Category = Bloom Sickle Pokedex = It requires a lot of effort to maintain Lurantis's vivid coloring, but some collectors enjoy this work and treat it as their hobby. Generation = 7 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MORELULL] Name = Morelull @@ -24331,12 +19807,6 @@ Pokedex = It scatters its shining spores around itself. Even though they're dang Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHIINOTIC,Level,24 #------------------------------- [SHIINOTIC] @@ -24365,12 +19835,6 @@ Pokedex = It puts its prey to sleep and siphons off their vitality through the t Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SALANDIT] Name = Salandit @@ -24398,12 +19862,6 @@ Category = Toxic Lizard Pokedex = It burns its bodily fluids to create a poisonous gas. When its enemies become disoriented from inhaling the gas, it attacks them. Generation = 7 WildItemUncommon = SMOKEBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SALAZZLE,LevelFemale,33 #------------------------------- [SALAZZLE] @@ -24431,12 +19889,6 @@ Category = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. Generation = 7 WildItemUncommon = SMOKEBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STUFFUL] Name = Stufful @@ -24463,12 +19915,6 @@ Shape = Quadruped Category = Flailing Pokedex = Despite its adorable appearance, when it gets angry and flails about, its arms and legs could knock a pro wrestler sprawling. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEWEAR,Level,27 #------------------------------- [BEWEAR] @@ -24495,12 +19941,6 @@ Shape = BipedalTail Category = Strong Arm Pokedex = It waves its hands wildly in intimidation and warning. Life is over for anyone who doesn't run away as fast as possible. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUNSWEET] Name = Bounsweet @@ -24527,12 +19967,6 @@ Category = Fruit Pokedex = Because of its sweet, delicious aroma, bird Pokémon are always after it, but it's not intelligent enough to care. Generation = 7 WildItemUncommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STEENEE,Level,18 #------------------------------- [STEENEE] @@ -24559,12 +19993,6 @@ Category = Fruit Pokedex = It's protected by its hard sepals, so it plays with bird Pokémon without worry. They peck it relentlessly, but it doesn't care. Generation = 7 WildItemUncommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TSAREENA,HasMove,STOMP #------------------------------- [TSAREENA] @@ -24591,12 +20019,6 @@ Category = Fruit Pokedex = A Pokémon with an aggressive personality and a mastery of kicking, it cackles every time it kicks an opponent. Generation = 7 WildItemCommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [COMFEY] Name = Comfey @@ -24623,12 +20045,6 @@ Category = Posy Picker Pokedex = Baths prepared with the flowers from its vine have a relaxing effect, so this Pokémon is a hit with many people. Generation = 7 WildItemUncommon = MISTYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ORANGURU] Name = Oranguru @@ -24655,12 +20071,6 @@ Shape = Bipedal Category = Sage Pokedex = It normally spends its time meditating in the treetops. It throws Poké Balls and gives other Pokémon orders as it pleases. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PASSIMIAN] Name = Passimian @@ -24686,12 +20096,6 @@ Shape = BipedalTail Category = Teamwork Pokedex = Berries are its weapons as well as the staple of its diet. The one that can throw a berry the farthest is the boss of the troop. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WIMPOD] Name = Wimpod @@ -24717,12 +20121,6 @@ Shape = Multiped Category = Turn Tail Pokedex = This Pokémon is a coward. As it desperately dashes off, the flailing of its many legs leaves a sparkling clean path in its wake. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLISOPOD,Level,30 #------------------------------- [GOLISOPOD] @@ -24748,12 +20146,6 @@ Shape = Bipedal Category = Hard Scale Pokedex = It battles skillfully with its six arms, but spends most of its time peacefully meditating in caves deep beneath the sea. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDYGAST] Name = Sandygast @@ -24781,12 +20173,6 @@ Category = Sand Heap Pokedex = It likes the shovel on its head, so Sandygast will get serious and fight any children who come to take it back. Generation = 7 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PALOSSAND,Level,42 #------------------------------- [PALOSSAND] @@ -24814,12 +20200,6 @@ Category = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. Generation = 7 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PYUKUMUKU] Name = Pyukumuku @@ -24845,12 +20225,6 @@ Shape = Serpentine Category = Sea Cucumber Pokedex = It lives in shallow seas, such as areas near a beach. It can eject its internal organs, which it uses to engulf its prey or battle enemies. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYPENULL] Name = Type: Null @@ -24874,12 +20248,6 @@ Shape = Quadruped Category = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SILVALLY,Happiness, #------------------------------- [SILVALLY] @@ -24905,12 +20273,6 @@ Category = Synthetic Pokedex = Its trust in its partner is what awakens it. This Pokémon is capable of changing its type, a flexibility that is well displayed in battle. FormName = Type: Normal Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MINIOR] Name = Minior @@ -24937,12 +20299,6 @@ Pokedex = Originally making its home in the ozone layer, it hurtles to the groun FormName = Meteor Form Generation = 7 WildItemUncommon = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KOMALA] Name = Komala @@ -24967,12 +20323,6 @@ Shape = Bipedal Category = Drowsing Pokedex = It remains asleep from birth to death as a result of the sedative properties of the leaves that form its diet. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTONATOR] Name = Turtonator @@ -24999,12 +20349,6 @@ Category = Blast Turtle Pokedex = It lives in volcanoes and eats sulfur and other minerals. Materials from the food it eats form the basis of its explosive shell. Generation = 7 WildItemUncommon = CHARCOAL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TOGEDEMARU] Name = Togedemaru @@ -25032,12 +20376,6 @@ Category = Roly-Poly Pokedex = The long hairs on its back act as lightning rods. The bolts of lightning it attracts are stored as energy in its electric sac. Generation = 7 WildItemUncommon = ELECTRICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIMIKYU] Name = Mimikyu @@ -25065,12 +20403,6 @@ Pokedex = A lonely Pokémon, it conceals its terrifying appearance beneath an ol FormName = Disguised Form Generation = 7 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BRUXISH] Name = Bruxish @@ -25098,12 +20430,6 @@ Category = Gnash Teeth Pokedex = When it unleashes its psychic power from the protuberance on its head, the grating sound of grinding teeth echoes through the area. Generation = 7 WildItemUncommon = RAZORFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRAMPA] Name = Drampa @@ -25131,12 +20457,6 @@ Category = Placid Pokedex = This Pokémon is friendly to people and loves children most of all. It comes from deep in the mountains to play with children it likes in town. Generation = 7 WildItemUncommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DHELMISE] Name = Dhelmise @@ -25161,12 +20481,6 @@ Shape = HeadBase Category = Sea Creeper Pokedex = The soul of seaweed adrift in the waves became reborn as this Pokémon. It maintains itself with new infusions of seabed detritus and seaweed. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JANGMOO] Name = Jangmo-o @@ -25193,12 +20507,6 @@ Category = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. Generation = 7 WildItemUncommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAKAMOO,Level,35 #------------------------------- [HAKAMOO] @@ -25226,12 +20534,6 @@ Category = Scaly Pokedex = It sheds and regrows its scales on a continuous basis. The scales become harder and sharper each time they're regrown. Generation = 7 WildItemUncommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KOMMOO,Level,45 #------------------------------- [KOMMOO] @@ -25259,12 +20561,6 @@ Category = Scaly Pokedex = Its rigid scales function as offense and defense. In the past, its scales were processed and used to make weapons and other commodities. Generation = 7 WildItemCommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUKOKO] Name = Tapu Koko @@ -25290,12 +20586,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPULELE] Name = Tapu Lele @@ -25321,12 +20611,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = As it flutters about, it scatters its strangely glowing scales. Touching them is said to restore good health on the spot. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUBULU] Name = Tapu Bulu @@ -25352,12 +20636,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = It pulls large trees up by the roots and swings them around. It causes vegetation to grow, and then it absorbs energy from the growth. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUFINI] Name = Tapu Fini @@ -25383,12 +20661,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = The dense fog it creates brings the downfall and destruction of its confused enemies. Ocean currents are the source of its energy. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [COSMOG] Name = Cosmog @@ -25411,12 +20683,6 @@ Shape = Head Category = Nebula Pokedex = Whether or not it's a Pokémon from this world is a mystery. When it's in a jam, it warps away to a safe place to hide. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = COSMOEM,Level,43 #------------------------------- [COSMOEM] @@ -25440,12 +20706,6 @@ Shape = Head Category = Protostar Pokedex = Motionless as if dead, its body is faintly warm to the touch. In the distant past, it was called the cocoon of the stars. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SOLGALEO,LevelDay,53,LUNALA,LevelNight,53 #------------------------------- [SOLGALEO] @@ -25471,12 +20731,6 @@ Shape = Quadruped Category = Sunne Pokedex = It is said to live in another world. The intense light it radiates from the surface of its body can make the darkest of nights light up like midday. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LUNALA] Name = Lunala @@ -25501,12 +20755,6 @@ Shape = Winged Category = Moone Pokedex = Said to live in another world, this Pokémon devours light, drawing the moonless dark veil of night over the brightness of day. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NIHILEGO] Name = Nihilego @@ -25531,12 +20779,6 @@ Shape = Multiped Category = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUZZWOLE] Name = Buzzwole @@ -25561,12 +20803,6 @@ Shape = Multiped Category = Swollen Pokedex = This Ultra Beast appeared from another world. It shows off its body, but whether that display is a boast or a threat remains unclear. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHEROMOSA] Name = Pheromosa @@ -25591,12 +20827,6 @@ Shape = Bipedal Category = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [XURKITREE] Name = Xurkitree @@ -25620,12 +20850,6 @@ Shape = BipedalTail Category = Glowing Pokedex = One of the mysterious life-forms known as Ultra Beasts. Astonishing electric shocks emanate from its entire body, according to witnesses. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELESTEELA] Name = Celesteela @@ -25650,12 +20874,6 @@ Shape = Bipedal Category = Launch Pokedex = One kind of Ultra Beast. Witnesses have seen it burn down a forest by expelling gas from its two arms. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARTANA] Name = Kartana @@ -25680,12 +20898,6 @@ Shape = Bipedal Category = Drawn Sword Pokedex = One of the Ultra Beast life-forms, it was observed cutting down a gigantic steel tower with one stroke of its blade. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GUZZLORD] Name = Guzzlord @@ -25710,12 +20922,6 @@ Shape = BipedalTail Category = Junkivore Pokedex = A dangerous Ultra Beast, it appears to be eating constantly, but for some reason its droppings have never been found. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NECROZMA] Name = Necrozma @@ -25739,12 +20945,6 @@ Shape = HeadArms Category = Prism Pokedex = Light is apparently the source of its energy. It has an extraordinarily vicious disposition and is constantly firing off laser beams. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGEARNA] Name = Magearna @@ -25769,12 +20969,6 @@ Shape = Bipedal Category = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARSHADOW] Name = Marshadow @@ -25799,12 +20993,6 @@ Shape = Bipedal Category = Gloomdweller Pokedex = Able to conceal itself in shadows, it never appears before humans, so its very existence was the stuff of myth. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [POIPOLE] Name = Poipole @@ -25828,12 +21016,6 @@ Shape = BipedalTail Category = Poison Pin Pokedex = An Ultra Beast that lives in a different world, it cackles wildly as it sprays its opponents with poison from the needles on its head. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NAGANADEL,HasMove,DRAGONPULSE #------------------------------- [NAGANADEL] @@ -25859,12 +21041,6 @@ Shape = Winged Category = Poison Pin Pokedex = One kind of Ultra Beast, it fires a glowing, venomous liquid from its needles. This liquid is also immensely adhesive. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STAKATAKA] Name = Stakataka @@ -25889,12 +21065,6 @@ Shape = Quadruped Category = Rampart Pokedex = When stone walls started moving and attacking, the brute's true identity was this mysterious life-form, which brings to mind an Ultra Beast. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLACEPHALON] Name = Blacephalon @@ -25919,12 +21089,6 @@ Shape = Bipedal Category = Fireworks Pokedex = It slithers toward people. Then, without warning, it triggers the explosion of its own head. It's apparently one kind of Ultra Beast. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZERAORA] Name = Zeraora @@ -25948,12 +21112,6 @@ Shape = Bipedal Category = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELTAN] Name = Meltan @@ -25976,12 +21134,6 @@ Shape = Head Category = Hex Nut Pokedex = It melts particles of iron and other metals found in the subsoil, so it can absorb them into its body of molten steel. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MELMETAL,None, #------------------------------- [MELMETAL] @@ -26005,9 +21157,3 @@ Shape = Bipedal Category = Hex Nut Pokedex = Revered long ago for its capacity to create iron from nothing, for some reason it has come back to life after 3,000 years. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 diff --git a/PBS/Gen 7/pokemon_forms.txt b/PBS/Gen 7/pokemon_forms.txt index c85abbd1c..2386ff931 100644 --- a/PBS/Gen 7/pokemon_forms.txt +++ b/PBS/Gen 7/pokemon_forms.txt @@ -463,7 +463,6 @@ Generation = 6 [PICHU,2] FormName = Spiky-Eared Generation = 4 -BattlerEnemyX = 3 Evolutions = PIKACHU,None, #------------------------------- [AMPHAROS,1] @@ -755,25 +754,18 @@ FormName = Sunny Form Type1 = FIRE Color = Red Pokedex = This is the form Castform takes on the brightest of days. Its skin is unexpectedly hot to the touch, so approach with care. -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,2] FormName = Rainy Form Type1 = WATER Color = Blue Pokedex = This is the form Castform takes when soaked with rain. When its body is compressed, water will seep out as if from a sponge. -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,3] FormName = Snowy Form Type1 = ICE Color = White Pokedex = This is the form Castform takes when covered in snow. Its body becomes an ice-like material, with a temperature near -5 degrees Celsius. -BattlerPlayerX = -1 -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [BANETTE,1] FormName = Mega Banette @@ -892,10 +884,6 @@ BaseStats = 50,180,20,150,180,20 EVs = 0,2,0,0,1,0 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,TELEPORT,19,TAUNT,25,PURSUIT,31,PSYCHIC,37,SUPERPOWER,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,COSMICPOWER,61,ZAPCANNON,67,PSYCHOBOOST,73,HYPERBEAM TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SUPERPOWER,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 4 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,2] FormName = Defense Forme @@ -903,10 +891,6 @@ BaseStats = 50,70,160,90,70,160 EVs = 0,0,2,0,0,1 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,TELEPORT,19,KNOCKOFF,25,SPIKES,31,PSYCHIC,37,SNATCH,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,IRONDEFENSE,55,AMNESIA,61,RECOVER,67,PSYCHOBOOST,73,COUNTER,73,MIRRORCOAT TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,IRONDEFENSE,KNOCKOFF,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 3 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,3] FormName = Speed Forme @@ -914,20 +898,14 @@ BaseStats = 50,95,90,180,95,90 EVs = 0,0,0,3,0,0 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,DOUBLETEAM,19,KNOCKOFF,25,PURSUIT,31,PSYCHIC,37,SWIFT,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,AGILITY,61,RECOVER,67,PSYCHOBOOST,73,EXTREMESPEED TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FIREPUNCH,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICEPUNCH,KNOCKOFF,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = -4 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowSize = 3 #------------------------------- [BURMY,1] FormName = Sandy Cloak Color = Brown -Flags = InheritFormFromMother #------------------------------- [BURMY,2] FormName = Trash Cloak Color = Red -Flags = InheritFormFromMother #------------------------------- [WORMADAM,1] FormName = Sandy Cloak @@ -938,7 +916,6 @@ EVs = 0,0,2,0,0,0 Moves = 0,QUIVERDANCE,1,QUIVERDANCE,1,SUCKERPUNCH,1,TACKLE,1,PROTECT,1,BUGBITE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,ROCKBLAST,29,HARDEN,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,FISSURE,50,BUGBUZZ TutorMoves = ALLYSWITCH,ATTRACT,BUGBITE,BULLDOZE,CONFIDE,DOUBLETEAM,DREAMEATER,EARTHPOWER,EARTHQUAKE,ELECTROWEB,ENDEAVOR,FACADE,FRUSTRATION,GIGAIMPACT,HIDDENPOWER,HYPERBEAM,INFESTATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,SUBSTITUTE,SUNNYDAY,SWAGGER,TELEKINESIS,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Brown -Flags = InheritFormFromMother #------------------------------- [WORMADAM,2] FormName = Trash Cloak @@ -949,24 +926,18 @@ EVs = 0,0,1,0,0,1 Moves = 0,QUIVERDANCE,1,QUIVERDANCE,1,METALBURST,1,SUCKERPUNCH,1,TACKLE,1,PROTECT,1,BUGBITE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,MIRRORSHOT,29,METALSOUND,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,IRONHEAD,50,BUGBUZZ TutorMoves = ALLYSWITCH,ATTRACT,BUGBITE,CONFIDE,DOUBLETEAM,DREAMEATER,ELECTROWEB,ENDEAVOR,FACADE,FLASHCANNON,FRUSTRATION,GIGAIMPACT,GUNKSHOT,GYROBALL,HIDDENPOWER,HYPERBEAM,INFESTATION,IRONDEFENSE,IRONHEAD,MAGNETRISE,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,SUBSTITUTE,SUNNYDAY,SWAGGER,TELEKINESIS,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Red -Flags = InheritFormFromMother #------------------------------- [CHERRIM,1] FormName = Sunshine Form Color = Pink -BattlerPlayerX = 2 -BattlerEnemyX = 2 -BattlerEnemyY = 21 #------------------------------- [SHELLOS,1] FormName = East Sea Color = Blue -Flags = InheritFormFromMother #------------------------------- [GASTRODON,1] FormName = East Sea Color = Blue -Flags = InheritFormFromMother #------------------------------- [LOPUNNY,1] FormName = Mega Lopunny @@ -1031,9 +1002,6 @@ Type2 = FIRE BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This Rotom has possessed a convection microwave oven that uses a special motor. It also has a flair for manipulating flames. -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,2] FormName = Wash Rotom @@ -1042,8 +1010,6 @@ Type2 = WATER BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This form of Rotom enjoys coming up with water-based pranks. Be careful with it if you don't want your room flooded. -BattlerPlayerX = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,3] FormName = Frost Rotom @@ -1052,10 +1018,6 @@ Type2 = ICE BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = Rotom assumes this form when it takes over a refrigerator powered by a special motor. It battles by spewing cold air. -BattlerPlayerX = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -4 -BattlerShadowSize = 2 #------------------------------- [ROTOM,4] FormName = Fan Rotom @@ -1064,10 +1026,6 @@ Type2 = FLYING BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = In this form, Rotom applies its new power over wind to its love of pranks. It will happily blow away any important documents it can find. -BattlerPlayerX = -4 -BattlerEnemyX = -2 -BattlerEnemyY = 2 -BattlerShadowSize = 2 #------------------------------- [ROTOM,5] FormName = Mow Rotom @@ -1076,9 +1034,6 @@ Type2 = GRASS BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This is Rotom after it's seized control of a lawn mower that has a special motor. As it mows down grass, it scatters the clippings everywhere. -BattlerPlayerX = 1 -BattlerEnemyY = 0 -BattlerShadowSize = 2 #------------------------------- [GIRATINA,1] FormName = Origin Forme @@ -1089,8 +1044,6 @@ TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE Height = 6.9 Weight = 650.0 Shape = Serpentine -BattlerEnemyX = -2 -BattlerEnemyY = -8 #------------------------------- [SHAYMIN,1] FormName = Sky Forme @@ -1103,8 +1056,6 @@ Moves = 1,GROWTH,10,MAGICALLEAF,19,LEECHSEED,28,QUICKATTACK,37,SWEETSCENT,46,NAT TutorMoves = CONFIDE,COVET,DAZZLINGGLEAM,DOUBLETEAM,ENERGYBALL,FACADE,FRUSTRATION,GIGADRAIN,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,LASERFOCUS,LASTRESORT,NATUREPOWER,PROTECT,PSYCHIC,PSYCHUP,REST,RETURN,ROUND,SAFEGUARD,SEEDBOMB,SLEEPTALK,SNORE,SOLARBEAM,SUBSTITUTE,SUNNYDAY,SWAGGER,SWORDSDANCE,SYNTHESIS,TAILWIND,TOXIC,WORRYSEED,ZENHEADBUTT Height = 0.4 Weight = 5.2 -BattlerEnemyY = 16 -BattlerShadowSize = 2 #------------------------------- [ARCEUS,1] FormName = Fighting Type @@ -1199,7 +1150,6 @@ FormName = Blue-Striped Abilities = ROCKHEAD,ADAPTABILITY Pokedex = Even Basculin, which devours everything it can with its huge jaws, is nothing more than food to organisms stronger than itself. WildItemUncommon = DEEPSEASCALE -Flags = InheritFormFromMother #------------------------------- [DARMANITAN,1] FormName = Zen Mode @@ -1210,9 +1160,6 @@ BaseExp = 189 EVs = 0,0,0,0,2,0 Color = Blue Pokedex = When wounded, it stops moving. It goes as still as stone to meditate, sharpening its mind and spirit. -BattlerPlayerX = 1 -BattlerEnemyY = 30 -BattlerShadowSize = 2 #------------------------------- [DEERLING,1] FormName = Summer Form @@ -1243,9 +1190,6 @@ Abilities = REGENERATOR HiddenAbilities = REGENERATOR Height = 1.4 Shape = Winged -BattlerPlayerX = -2 -BattlerEnemyX = 8 -BattlerEnemyY = 11 #------------------------------- [THUNDURUS,1] FormName = Therian Forme @@ -1256,9 +1200,6 @@ HiddenAbilities = 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 = BipedalTail -BattlerPlayerX = -3 -BattlerEnemyX = 2 -BattlerEnemyY = 5 #------------------------------- [LANDORUS,1] FormName = Therian Forme @@ -1268,9 +1209,6 @@ Abilities = INTIMIDATE HiddenAbilities = INTIMIDATE Height = 1.3 Shape = Quadruped -BattlerPlayerX = -8 -BattlerEnemyX = 3 -BattlerEnemyY = 14 #------------------------------- [KYUREM,1] FormName = White Kyurem @@ -1281,9 +1219,6 @@ Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 Pokedex = It has foreseen that a world of truth will arrive for people and Pokémon. It strives to protect that future. -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,2] FormName = Black Kyurem @@ -1294,8 +1229,6 @@ Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 Pokedex = It's said that this Pokémon battles in order to protect the ideal world that will exist in the future for people and Pokémon. -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KYUREM,3] PokedexForm = 1 @@ -1305,9 +1238,6 @@ EVs = 0,0,0,0,3,0 Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,4] PokedexForm = 2 @@ -1317,16 +1247,11 @@ EVs = 0,3,0,0,0,0 Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KELDEO,1] FormName = Resolute Form TutorMoves = AERIALACE,AQUATAIL,BOUNCE,CALMMIND,CONFIDE,COVET,CUT,DOUBLETEAM,ENDEAVOR,FACADE,FALSESWIPE,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,HAIL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICYWIND,LASTRESORT,LIQUIDATION,LOWKICK,POISONJAB,PROTECT,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SCALD,SLEEPTALK,SNORE,STONEEDGE,STRENGTH,SUBSTITUTE,SUPERPOWER,SURF,SWAGGER,SWORDSDANCE,TAUNT,TOXIC,WATERPULSE,WORKUP,XSCISSOR Pokedex = The power that lay hidden in its body now covers its horn, turning it into a sword that can slice through anything. -BattlerPlayerX = 1 -BattlerEnemyX = 0 -BattlerEnemyY = 19 #------------------------------- [MELOETTA,1] FormName = Pirouette Forme @@ -1334,8 +1259,6 @@ Type1 = NORMAL Type2 = FIGHTING BaseStats = 100,128,90,128,77,77 EVs = 0,1,1,1,0,0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 #------------------------------- [GENESECT,1] FormName = Shock Drive @@ -1421,35 +1344,27 @@ FormName = Poké Ball Pattern #------------------------------- [FLABEBE,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,5] FormName = Eternal Flower @@ -1462,19 +1377,15 @@ Evolutions = FLORGES,None, #------------------------------- [FLORGES,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FURFROU,1] FormName = Heart Trim @@ -1520,14 +1431,12 @@ BaseStats = 49,66,70,51,44,55 HiddenAbilities = INSOMNIA Height = 0.4 Weight = 5.0 -Flags = InheritFormFromMother #------------------------------- [PUMPKABOO,2] FormName = Large Size BaseStats = 54,66,70,46,44,55 Height = 0.5 Weight = 7.5 -Flags = InheritFormFromMother #------------------------------- [PUMPKABOO,3] FormName = Super Size @@ -1538,7 +1447,6 @@ Weight = 15.0 WildItemCommon = MIRACLESEED WildItemUncommon = MIRACLESEED WildItemRare = MIRACLESEED -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,1] FormName = Average Size @@ -1546,14 +1454,12 @@ BaseStats = 65,90,122,84,58,75 HiddenAbilities = INSOMNIA Height = 0.9 Weight = 12.5 -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,2] FormName = Large Size BaseStats = 75,95,122,69,58,75 Height = 1.1 Weight = 14.0 -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,3] FormName = Super Size @@ -1564,7 +1470,6 @@ Weight = 39.0 WildItemCommon = MIRACLESEED WildItemUncommon = MIRACLESEED WildItemRare = MIRACLESEED -Flags = InheritFormFromMother #------------------------------- [XERNEAS,1] FormName = Active Mode @@ -1631,7 +1536,6 @@ Type1 = ELECTRIC Type2 = FLYING Color = Yellow Pokedex = It creates an electric charge by rubbing its feathers together. It dances over to its enemies and delivers shocking electrical punches. -Flags = InheritFormFromMother #------------------------------- [ORICORIO,2] FormName = Pa'u Style @@ -1639,7 +1543,6 @@ Type1 = PSYCHIC Type2 = FLYING Color = Pink Pokedex = This Oricorio relaxes by swaying gently. This increases its psychic energy, which it then fires at its enemies. -Flags = InheritFormFromMother #------------------------------- [ORICORIO,3] FormName = Sensu Style @@ -1647,7 +1550,6 @@ Type1 = GHOST Type2 = FLYING Color = Purple Pokedex = It summons the dead with its dreamy dancing. From their malice, it draws power with which to curse its enemies. -Flags = InheritFormFromMother #------------------------------- [ROCKRUFF,2] Abilities = OWNTEMPO diff --git a/PBS/Gen 7/pokemon_metrics.txt b/PBS/Gen 7/pokemon_metrics.txt new file mode 100644 index 000000000..242d70fa7 --- /dev/null +++ b/PBS/Gen 7/pokemon_metrics.txt @@ -0,0 +1,4045 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[BULBASAUR] +BackSprite = -4,0 +FrontSprite = -1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[IVYSAUR] +BackSprite = -9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENUSAUR] +BackSprite = 1,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHARMANDER] +BackSprite = -6,0 +FrontSprite = 4,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHARMELEON] +BackSprite = -3,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHARIZARD] +BackSprite = -2,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SQUIRTLE] +BackSprite = -3,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WARTORTLE] +BackSprite = -2,0 +FrontSprite = -4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLASTOISE] +BackSprite = -3,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CATERPIE] +BackSprite = -5,0 +FrontSprite = -3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[METAPOD] +BackSprite = -1,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUTTERFREE] +BackSprite = -10,0 +FrontSprite = 8,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEDLE] +BackSprite = 0,0 +FrontSprite = 3,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KAKUNA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEEDRILL] +BackSprite = 9,0 +FrontSprite = -8,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEY] +BackSprite = -9,0 +FrontSprite = 4,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIDGEOTTO] +BackSprite = -7,0 +FrontSprite = 8,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEOT] +BackSprite = 0,0 +FrontSprite = 7,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RATTATA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RATICATE] +BackSprite = -7,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPEAROW] +BackSprite = -5,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FEAROW] +BackSprite = 10,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EKANS] +BackSprite = -3,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARBOK] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIKACHU] +BackSprite = -5,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[RAICHU] +BackSprite = -5,0 +FrontSprite = 11,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SANDSHREW] +BackSprite = -5,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDSLASH] +BackSprite = 0,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANfE] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINA] +BackSprite = 3,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NIDOQUEEN] +BackSprite = 0,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANmA] +BackSprite = -1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINO] +BackSprite = 1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDOKING] +BackSprite = 4,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLEFAIRY] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLEFABLE] +BackSprite = 4,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VULPIX] +BackSprite = -6,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINETALES] +BackSprite = -3,0 +FrontSprite = 6,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JIGGLYPUFF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WIGGLYTUFF] +BackSprite = 0,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZUBAT] +BackSprite = 0,0 +FrontSprite = -2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLBAT] +BackSprite = 6,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ODDISH] +BackSprite = 2,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLOOM] +BackSprite = 1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VILEPLUME] +BackSprite = 0,0 +FrontSprite = 3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PARAS] +BackSprite = 5,0 +FrontSprite = -3,33 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PARASECT] +BackSprite = 1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VENONAT] +BackSprite = 6,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENOMOTH] +BackSprite = -4,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DIGLETT] +BackSprite = 0,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUGTRIO] +BackSprite = 1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEOWTH] +BackSprite = 3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PERSIAN] +BackSprite = -3,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PSYDUCK] +BackSprite = 0,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLDUCK] +BackSprite = -1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MANKEY] +BackSprite = -2,0 +FrontSprite = 3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PRIMEAPE] +BackSprite = 5,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROWLITHE] +BackSprite = -4,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCANINE] +BackSprite = -9,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWAG] +BackSprite = 0,0 +FrontSprite = 9,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLIWHIRL] +BackSprite = 10,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWRATH] +BackSprite = 1,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ABRA] +BackSprite = 3,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KADABRA] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALAKAZAM] +BackSprite = 4,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MACHOP] +BackSprite = 3,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHOKE] +BackSprite = 7,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHAMP] +BackSprite = 7,0 +FrontSprite = -9,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELLSPROUT] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WEEPINBELL] +BackSprite = 4,0 +FrontSprite = 5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VICTREEBEL] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TENTACOOL] +BackSprite = 9,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TENTACRUEL] +BackSprite = 0,0 +FrontSprite = 0,1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GEODUDE] +BackSprite = -6,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRAVELER] +BackSprite = -4,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLEM] +BackSprite = 0,0 +FrontSprite = -3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PONYTA] +BackSprite = 2,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAPIDASH] +BackSprite = -7,0 +FrontSprite = 5,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWPOKE] +BackSprite = -4,0 +FrontSprite = 3,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWBRO] +BackSprite = -7,0 +FrontSprite = 6,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGNEMITE] +BackSprite = 2,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MAGNETON] +BackSprite = -3,0 +FrontSprite = 0,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FARFETCHD] +BackSprite = 4,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODUO] +BackSprite = 14,0 +FrontSprite = -10,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODRIO] +BackSprite = 8,0 +FrontSprite = -2,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEL] +BackSprite = -8,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEWGONG] +BackSprite = -7,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GRIMER] +BackSprite = 3,0 +FrontSprite = -6,24 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUK] +BackSprite = -2,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELLDER] +BackSprite = -1,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLOYSTER] +BackSprite = 0,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GASTLY] +BackSprite = -1,0 +FrontSprite = 6,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HAUNTER] +BackSprite = -1,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GENGAR] +BackSprite = -3,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ONIX] +BackSprite = 3,0 +FrontSprite = -2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DROWZEE] +BackSprite = 4,0 +FrontSprite = -3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HYPNO] +BackSprite = 8,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KRABBY] +BackSprite = 4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KINGLER] +BackSprite = -2,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VOLTORB] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRODE] +BackSprite = 0,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXEGGCUTE] +BackSprite = 0,0 +FrontSprite = 0,28 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXEGGUTOR] +BackSprite = 0,0 +FrontSprite = -1,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CUBONE] +BackSprite = 2,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAROWAK] +BackSprite = -2,0 +FrontSprite = -8,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONLEE] +BackSprite = 8,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONCHAN] +BackSprite = 4,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LICKITUNG] +BackSprite = -2,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KOFFING] +BackSprite = -2,0 +FrontSprite = 1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEZING] +BackSprite = -2,0 +FrontSprite = -3,-2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYHORN] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYDON] +BackSprite = 5,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHANSEY] +BackSprite = -1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TANGELA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KANGASKHAN] +BackSprite = 3,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HORSEA] +BackSprite = 1,0 +FrontSprite = 3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SEADRA] +BackSprite = -3,0 +FrontSprite = 9,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOLDEEN] +BackSprite = -4,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEAKING] +BackSprite = -8,0 +FrontSprite = 8,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARYU] +BackSprite = 3,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARMIE] +BackSprite = 2,0 +FrontSprite = 2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MRMIME] +BackSprite = 5,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCYTHER] +BackSprite = -5,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JYNX] +BackSprite = 3,0 +FrontSprite = -5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTABUZZ] +BackSprite = 0,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMAR] +BackSprite = -1,0 +FrontSprite = -7,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PINSIR] +BackSprite = 5,0 +FrontSprite = -3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAUROS] +BackSprite = -1,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGIKARP] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GYARADOS] +BackSprite = 2,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LAPRAS] +BackSprite = 1,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DITTO] +BackSprite = 0,0 +FrontSprite = 0,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EEVEE] +BackSprite = -7,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VAPOREON] +BackSprite = 4,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JOLTEON] +BackSprite = -4,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAREON] +BackSprite = -7,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PORYGON] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMANYTE] +BackSprite = 0,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMASTAR] +BackSprite = 5,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTO] +BackSprite = 0,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTOPS] +BackSprite = 7,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AERODACTYL] +BackSprite = -4,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNORLAX] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARTICUNO] +BackSprite = 8,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZAPDOS] +BackSprite = 5,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MOLTRES] +BackSprite = 0,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRATINI] +BackSprite = -2,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAGONAIR] +BackSprite = 2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DRAGONITE] +BackSprite = 5,0 +FrontSprite = 6,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEWTWO] +BackSprite = 14,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEW] +BackSprite = -8,0 +FrontSprite = -9,-3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHIKORITA] +BackSprite = -8,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BAYLEEF] +BackSprite = -3,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEGANIUM] +BackSprite = 0,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CYNDAQUIL] +BackSprite = -8,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUILAVA] +BackSprite = -8,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYPHLOSION] +BackSprite = 0,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOTODILE] +BackSprite = -2,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CROCONAW] +BackSprite = -1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FERALIGATR] +BackSprite = 2,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SENTRET] +BackSprite = 3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FURRET] +BackSprite = -12,0 +FrontSprite = -2,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOOTHOOT] +BackSprite = 5,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NOCTOWL] +BackSprite = -2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDYBA] +BackSprite = 4,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDIAN] +BackSprite = 1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPINARAK] +BackSprite = 0,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARIADOS] +BackSprite = 5,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROBAT] +BackSprite = 4,0 +FrontSprite = 4,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHINCHOU] +BackSprite = 5,0 +FrontSprite = 3,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LANTURN] +BackSprite = 1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PICHU] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PICHU,2] +BackSprite = -5,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLEFFA] +BackSprite = 0,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[IGGLYBUFF] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGEPI] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGETIC] +BackSprite = -2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NATU] +BackSprite = -5,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[XATU] +BackSprite = -3,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAREEP] +BackSprite = -1,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAAFFY] +BackSprite = -3,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AMPHAROS] +BackSprite = 4,0 +FrontSprite = -5,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BELLOSSOM] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARILL] +BackSprite = -2,0 +FrontSprite = 6,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZUMARILL] +BackSprite = 1,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SUDOWOODO] +BackSprite = 5,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLITOED] +BackSprite = 4,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOPPIP] +BackSprite = 9,0 +FrontSprite = 3,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SKIPLOOM] +BackSprite = 2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JUMPLUFF] +BackSprite = -6,0 +FrontSprite = -1,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AIPOM] +BackSprite = -11,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNKERN] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNFLORA] +BackSprite = 0,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[YANMA] +BackSprite = -8,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WOOPER] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUAGSIRE] +BackSprite = 6,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ESPEON] +BackSprite = -4,0 +FrontSprite = -4,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UMBREON] +BackSprite = 0,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MURKROW] +BackSprite = 0,0 +FrontSprite = 1,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLOWKING] +BackSprite = 0,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISDREAVUS] +BackSprite = -4,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[UNOWN] +BackSprite = 0,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WOBBUFFET] +BackSprite = -3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIRAFARIG] +BackSprite = -3,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PINECO] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FORRETRESS] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUNSPARCE] +BackSprite = 0,0 +FrontSprite = 5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GLIGAR] +BackSprite = 2,0 +FrontSprite = -2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STEELIX] +BackSprite = 2,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SNUBBULL] +BackSprite = 1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRANBULL] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[QWILFISH] +BackSprite = -5,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCIZOR] +BackSprite = 6,0 +FrontSprite = -4,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHUCKLE] +BackSprite = 1,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERACROSS] +BackSprite = 0,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNEASEL] +BackSprite = -3,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TEDDIURSA] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[URSARING] +BackSprite = 1,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLUGMA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGCARGO] +BackSprite = -1,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWINUB] +BackSprite = 0,0 +FrontSprite = -1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PILOSWINE] +BackSprite = 0,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORSOLA] +BackSprite = -1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REMORAID] +BackSprite = -7,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OCTILLERY] +BackSprite = 4,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DELIBIRD] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTINE] +BackSprite = 0,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKARMORY] +BackSprite = 4,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOUNDOUR] +BackSprite = -1,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOUNDOOM] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KINGDRA] +BackSprite = -5,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHANPY] +BackSprite = 3,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DONPHAN] +BackSprite = 3,0 +FrontSprite = -10,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGON2] +BackSprite = 3,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STANTLER] +BackSprite = 3,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMEARGLE] +BackSprite = 5,0 +FrontSprite = -6,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYROGUE] +BackSprite = 4,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HITMONTOP] +BackSprite = 0,0 +FrontSprite = -2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMOOCHUM] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELEKID] +BackSprite = 9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGBY] +BackSprite = -1,0 +FrontSprite = 4,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MILTANK] +BackSprite = -3,0 +FrontSprite = 8,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLISSEY] +BackSprite = -2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAIKOU] +BackSprite = -4,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ENTEI] +BackSprite = -4,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SUICUNE] +BackSprite = 1,0 +FrontSprite = -1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVITAR] +BackSprite = -6,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PUPITAR] +BackSprite = -4,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYRANITAR] +BackSprite = -3,0 +FrontSprite = 7,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUGIA] +BackSprite = 5,0 +FrontSprite = -2,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOOH] +BackSprite = 3,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CELEBI] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TREECKO] +BackSprite = -2,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GROVYLE] +BackSprite = 1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCEPTILE] +BackSprite = 4,0 +FrontSprite = 1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORCHIC] +BackSprite = -2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBUSKEN] +BackSprite = 8,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLAZIKEN] +BackSprite = -6,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUDKIP] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MARSHTOMP] +BackSprite = -2,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWAMPERT] +BackSprite = 2,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POOCHYENA] +BackSprite = 5,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIGHTYENA] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZIGZAGOON] +BackSprite = -1,0 +FrontSprite = -5,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LINOONE] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WURMPLE] +BackSprite = -1,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SILCOON] +BackSprite = -2,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEAUTIFLY] +BackSprite = -10,0 +FrontSprite = 9,1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASCOON] +BackSprite = -2,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSTOX] +BackSprite = 6,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOTAD] +BackSprite = 0,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOMBRE] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUDICOLO] +BackSprite = 4,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEDOT] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NUZLEAF] +BackSprite = 2,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHIFTRY] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAILLOW] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWELLOW] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WINGULL] +BackSprite = 2,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PELIPPER] +BackSprite = 0,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RALTS] +BackSprite = 5,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KIRLIA] +BackSprite = 0,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GARDEVOIR] +BackSprite = -5,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SURSKIT] +BackSprite = 1,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MASQUERAIN] +BackSprite = 2,0 +FrontSprite = -4,-8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHROOMISH] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BRELOOM] +BackSprite = -15,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKOTH] +BackSprite = 5,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIGOROTH] +BackSprite = 4,0 +FrontSprite = -4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKING] +BackSprite = 2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NINCADA] +BackSprite = -1,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINJASK] +BackSprite = 0,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHEDINJA] +BackSprite = 0,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISMUR] +BackSprite = 7,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOUDRED] +BackSprite = 2,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXPLOUD] +BackSprite = 0,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAKUHITA] +BackSprite = 4,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HARIYAMA] +BackSprite = 3,0 +FrontSprite = -3,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AZURILL] +BackSprite = -12,0 +FrontSprite = 14,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NOSEPASS] +BackSprite = 5,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKITTY] +BackSprite = -10,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DELCATTY] +BackSprite = 3,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SABLEYE] +BackSprite = 0,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAWILE] +BackSprite = 2,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARON] +BackSprite = -1,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAIRON] +BackSprite = -1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AGGRON] +BackSprite = 7,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEDITITE] +BackSprite = -2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEDICHAM] +BackSprite = 2,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRIKE] +BackSprite = -2,0 +FrontSprite = -3,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANECTRIC] +BackSprite = 2,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PLUSLE] +BackSprite = -12,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MINUN] +BackSprite = -3,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VOLBEAT] +BackSprite = 0,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ILLUMISE] +BackSprite = 0,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSELIA] +BackSprite = 2,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GULPIN] +BackSprite = -1,0 +FrontSprite = 1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWALOT] +BackSprite = -1,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CARVANHA] +BackSprite = -1,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHARPEDO] +BackSprite = -2,0 +FrontSprite = 3,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WAILMER] +BackSprite = 0,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WAILORD] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NUMEL] +BackSprite = 2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CAMERUPT] +BackSprite = -1,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORKOAL] +BackSprite = -2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPOINK] +BackSprite = 1,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRUMPIG] +BackSprite = -4,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPINDA] +BackSprite = 0,0 +FrontSprite = 4,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRAPINCH] +BackSprite = 0,0 +FrontSprite = -2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VIBRAVA] +BackSprite = -11,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLYGON] +BackSprite = -7,0 +FrontSprite = 11,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CACNEA] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CACTURNE] +BackSprite = 7,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWABLU] +BackSprite = 4,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ALTARIA] +BackSprite = -10,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZANGOOSE] +BackSprite = -1,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEVIPER] +BackSprite = 4,0 +FrontSprite = 5,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUNATONE] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLROCK] +BackSprite = 2,0 +FrontSprite = 1,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BARBOACH] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISCASH] +BackSprite = -4,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORPHISH] +BackSprite = 2,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRAWDAUNT] +BackSprite = 9,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BALTOY] +BackSprite = 0,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLAYDOL] +BackSprite = 1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LILEEP] +BackSprite = 5,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRADILY] +BackSprite = 1,0 +FrontSprite = -3,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ANORITH] +BackSprite = 10,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARMALDO] +BackSprite = 0,0 +FrontSprite = 4,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FEEBAS] +BackSprite = -5,0 +FrontSprite = 1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MILOTIC] +BackSprite = -3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CASTFORM] +BackSprite = 1,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASTFORM,1] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,2] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,3] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KECLEON] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHUPPET] +BackSprite = -4,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BANETTE] +BackSprite = -6,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUSKULL] +BackSprite = 6,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSCLOPS] +BackSprite = 1,0 +FrontSprite = 7,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TROPIUS] +BackSprite = 4,0 +FrontSprite = 7,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMECHO] +BackSprite = 9,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ABSOL] +BackSprite = -5,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WYNAUT] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SNORUNT] +BackSprite = -1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLALIE] +BackSprite = -5,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPHEAL] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEALEO] +BackSprite = 1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WALREIN] +BackSprite = 0,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLAMPERL] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HUNTAIL] +BackSprite = -3,0 +FrontSprite = 0,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOREBYSS] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RELICANTH] +BackSprite = -7,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUVDISC] +BackSprite = -3,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BAGON] +BackSprite = 3,0 +FrontSprite = -5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHELGON] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SALAMENCE] +BackSprite = -1,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELDUM] +BackSprite = -6,0 +FrontSprite = 3,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[METANG] +BackSprite = 2,0 +FrontSprite = 3,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[METAGROSS] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIROCK] +BackSprite = 1,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGICE] +BackSprite = -3,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGISTEEL] +BackSprite = 1,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LATIAS] +BackSprite = 5,0 +FrontSprite = -2,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LATIOS] +BackSprite = 3,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KYOGRE] +BackSprite = 0,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROUDON] +BackSprite = -1,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RAYQUAZA] +BackSprite = 4,0 +FrontSprite = -3,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JIRACHI] +BackSprite = -1,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEOXYS] +BackSprite = 0,0 +FrontSprite = 2,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DEOXYS,1] +BackSprite = 4,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,2] +BackSprite = 3,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,3] +BackSprite = -4,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TURTWIG] +BackSprite = -3,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GROTLE] +BackSprite = -4,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORTERRA] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMCHAR] +BackSprite = 4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MONFERNO] +BackSprite = -6,0 +FrontSprite = 10,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[INFERNAPE] +BackSprite = 1,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIPLUP] +BackSprite = 0,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PRINPLUP] +BackSprite = 2,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMPOLEON] +BackSprite = 2,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[STARLY] +BackSprite = -3,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STARAVIA] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARAPTOR] +BackSprite = -5,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BIDOOF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BIBAREL] +BackSprite = -6,0 +FrontSprite = 7,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KRICKETOT] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KRICKETUNE] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHINX] +BackSprite = -9,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXIO] +BackSprite = 1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXRAY] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BUDEW] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSERADE] +BackSprite = 8,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRANIDOS] +BackSprite = 0,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAMPARDOS] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHIELDON] +BackSprite = 0,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASTIODON] +BackSprite = -4,0 +FrontSprite = -5,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BURMY] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WORMADAM] +BackSprite = 0,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MOTHIM] +BackSprite = 11,0 +FrontSprite = 4,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBEE] +BackSprite = 1,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VESPIQUEN] +BackSprite = -1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PACHIRISU] +BackSprite = -5,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BUIZEL] +BackSprite = -12,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLOATZEL] +BackSprite = 3,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHERUBI] +BackSprite = -3,0 +FrontSprite = 6,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM] +BackSprite = -1,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM,1] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHELLOS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GASTRODON] +BackSprite = -6,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AMBIPOM] +BackSprite = 8,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFLOON] +BackSprite = 2,0 +FrontSprite = 4,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFBLIM] +BackSprite = -1,0 +FrontSprite = 3,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUNEARY] +BackSprite = 8,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOPUNNY] +BackSprite = -6,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISMAGIUS] +BackSprite = -3,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HONCHKROW] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLAMEOW] +BackSprite = -6,0 +FrontSprite = 7,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PURUGLY] +BackSprite = 4,0 +FrontSprite = -4,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHINGLING] +BackSprite = 1,0 +FrontSprite = 3,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNKY] +BackSprite = -3,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKUNTANK] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BRONZOR] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRONZONG] +BackSprite = 5,0 +FrontSprite = -2,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BONSLY] +BackSprite = 3,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MIMEJR] +BackSprite = -1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HAPPINY] +BackSprite = -2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHATOT] +BackSprite = -6,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPIRITOMB] +BackSprite = 2,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIBLE] +BackSprite = -2,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GABITE] +BackSprite = -6,0 +FrontSprite = -2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GARCHOMP] +BackSprite = 0,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUNCHLAX] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RIOLU] +BackSprite = -9,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LUCARIO] +BackSprite = 8,0 +FrontSprite = 1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HIPPOPOTAS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HIPPOWDON] +BackSprite = 2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKORUPI] +BackSprite = -3,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAPION] +BackSprite = 7,0 +FrontSprite = -11,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROAGUNK] +BackSprite = -1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TOXICROAK] +BackSprite = 0,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARNIVINE] +BackSprite = -2,0 +FrontSprite = 3,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FINNEON] +BackSprite = -7,0 +FrontSprite = 4,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUMINEON] +BackSprite = -8,0 +FrontSprite = 5,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTYKE] +BackSprite = -1,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNOVER] +BackSprite = 1,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ABOMASNOW] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WEAVILE] +BackSprite = -4,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGNEZONE] +BackSprite = 0,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LICKILICKY] +BackSprite = 1,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYPERIOR] +BackSprite = 1,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TANGROWTH] +BackSprite = 0,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTIVIRE] +BackSprite = 0,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMORTAR] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOGEKISS] +BackSprite = -3,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YANMEGA] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LEAFEON] +BackSprite = -3,0 +FrontSprite = 5,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLACEON] +BackSprite = -3,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLISCOR] +BackSprite = 3,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAMOSWINE] +BackSprite = -1,0 +FrontSprite = -7,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGONZ] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GALLADE] +BackSprite = 1,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PROBOPASS] +BackSprite = 5,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUSKNOIR] +BackSprite = 5,0 +FrontSprite = -4,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FROSLASS] +BackSprite = 6,0 +FrontSprite = 4,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM] +BackSprite = 5,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM,1] +BackSprite = 5,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,2] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,3] +BackSprite = 0,0 +FrontSprite = 1,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,4] +BackSprite = -4,0 +FrontSprite = -2,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,5] +BackSprite = 1,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UXIE] +BackSprite = -1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MESPRIT] +BackSprite = 1,0 +FrontSprite = -3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZELF] +BackSprite = 0,0 +FrontSprite = 9,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DIALGA] +BackSprite = 1,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PALKIA] +BackSprite = 0,0 +FrontSprite = 4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HEATRAN] +BackSprite = 2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIGIGAS] +BackSprite = 0,0 +FrontSprite = -4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA] +BackSprite = -6,0 +FrontSprite = -3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA,1] +BackSprite = -6,0 +FrontSprite = -2,-8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRESSELIA] +BackSprite = -5,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHIONE] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MANAPHY] +BackSprite = -9,0 +FrontSprite = 7,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DARKRAI] +BackSprite = 0,0 +FrontSprite = -2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHAYMIN] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHAYMIN,1] +BackSprite = 0,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCEUS] +BackSprite = -4,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VICTINI] +BackSprite = 0,0 +FrontSprite = -3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNIVY] +BackSprite = -2,0 +FrontSprite = 3,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SERVINE] +BackSprite = 0,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SERPERIOR] +BackSprite = -3,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TEPIG] +BackSprite = -4,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIGNITE] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMBOAR] +BackSprite = 1,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[OSHAWOTT] +BackSprite = 0,0 +FrontSprite = 2,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEWOTT] +BackSprite = 2,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SAMUROTT] +BackSprite = -1,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PATRAT] +BackSprite = -1,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WATCHOG] +BackSprite = -2,0 +FrontSprite = 6,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIPUP] +BackSprite = 1,0 +FrontSprite = -2,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERDIER] +BackSprite = -3,0 +FrontSprite = -3,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STOUTLAND] +BackSprite = -1,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PURRLOIN] +BackSprite = 2,0 +FrontSprite = -2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LIEPARD] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PANSAGE] +BackSprite = 0,0 +FrontSprite = 6,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISAGE] +BackSprite = -1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANSEAR] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISEAR] +BackSprite = 0,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANPOUR] +BackSprite = 0,0 +FrontSprite = 8,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMIPOUR] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MUNNA] +BackSprite = 0,0 +FrontSprite = 0,33 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MUSHARNA] +BackSprite = 6,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDOVE] +BackSprite = -3,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRANQUILL] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UNFEZANT] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLITZLE] +BackSprite = -6,0 +FrontSprite = -4,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZEBSTRIKA] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ROGGENROLA] +BackSprite = 0,0 +FrontSprite = 0,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BOLDORE] +BackSprite = 2,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIGALITH] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WOOBAT] +BackSprite = 2,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWOOBAT] +BackSprite = -3,0 +FrontSprite = -1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRILBUR] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXCADRILL] +BackSprite = -1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AUDINO] +BackSprite = 2,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TIMBURR] +BackSprite = -1,0 +FrontSprite = 4,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GURDURR] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CONKELDURR] +BackSprite = 3,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYMPOLE] +BackSprite = 0,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PALPITOAD] +BackSprite = -6,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEISMITOAD] +BackSprite = 2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THROH] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SAWK] +BackSprite = 2,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEWADDLE] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWADLOON] +BackSprite = 1,0 +FrontSprite = 1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEAVANNY] +BackSprite = 0,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VENIPEDE] +BackSprite = -3,0 +FrontSprite = 2,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIRLIPEDE] +BackSprite = 4,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCOLIPEDE] +BackSprite = 2,0 +FrontSprite = -3,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COTTONEE] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIMSICOTT] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PETILIL] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIGANT] +BackSprite = 1,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASCULIN] +BackSprite = -7,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDILE] +BackSprite = -2,0 +FrontSprite = -1,37 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KROKOROK] +BackSprite = 3,0 +FrontSprite = 5,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KROOKODILE] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARUMAKA] +BackSprite = -2,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DARMANITAN] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARMANITAN,1] +BackSprite = 1,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARACTUS] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DWEBBLE] +BackSprite = 2,0 +FrontSprite = 0,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRUSTLE] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SCRAGGY] +BackSprite = 0,0 +FrontSprite = 7,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SCRAFTY] +BackSprite = 0,0 +FrontSprite = 6,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SIGILYPH] +BackSprite = 7,0 +FrontSprite = -6,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YAMASK] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COFAGRIGUS] +BackSprite = 1,0 +FrontSprite = -5,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TIRTOUGA] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARRACOSTA] +BackSprite = -1,0 +FrontSprite = -4,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARCHEN] +BackSprite = 0,0 +FrontSprite = 3,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ARCHEOPS] +BackSprite = 4,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRUBBISH] +BackSprite = -1,0 +FrontSprite = 4,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GARBODOR] +BackSprite = 5,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZORUA] +BackSprite = -1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZOROARK] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MINCCINO] +BackSprite = -3,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CINCCINO] +BackSprite = 1,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOTHITA] +BackSprite = 0,0 +FrontSprite = 0,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHORITA] +BackSprite = 0,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHITELLE] +BackSprite = 1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLOSIS] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUOSION] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REUNICLUS] +BackSprite = 3,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUCKLETT] +BackSprite = -4,0 +FrontSprite = 1,28 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWANNA] +BackSprite = -2,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLITE] +BackSprite = 1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VANILLISH] +BackSprite = 1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLUXE] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEERLING] +BackSprite = -3,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SAWSBUCK] +BackSprite = 1,0 +FrontSprite = -3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMOLGA] +BackSprite = -4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KARRABLAST] +BackSprite = 1,0 +FrontSprite = 2,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ESCAVALIER] +BackSprite = 3,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FOONGUS] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AMOONGUSS] +BackSprite = 7,0 +FrontSprite = 2,28 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRILLISH] +BackSprite = -1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JELLICENT] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALOMOMOLA] +BackSprite = -2,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[JOLTIK] +BackSprite = 0,0 +FrontSprite = 5,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GALVANTULA] +BackSprite = 0,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FERROSEED] +BackSprite = 0,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FERROTHORN] +BackSprite = 0,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLINK] +BackSprite = 2,0 +FrontSprite = -2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLANG] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KLINKLANG] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYNAMO] +BackSprite = -4,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTRIK] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTROSS] +BackSprite = -5,0 +FrontSprite = -7,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELGYEM] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEHEEYEM] +BackSprite = -2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LITWICK] +BackSprite = -1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAMPENT] +BackSprite = -1,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHANDELURE] +BackSprite = -2,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AXEW] +BackSprite = 1,0 +FrontSprite = -1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRAXURE] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HAXORUS] +BackSprite = -1,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CUBCHOO] +BackSprite = -2,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEARTIC] +BackSprite = -2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRYOGONAL] +BackSprite = -1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELMET] +BackSprite = -4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ACCELGOR] +BackSprite = -4,0 +FrontSprite = 4,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNFISK] +BackSprite = -3,0 +FrontSprite = 2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENFOO] +BackSprite = -1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENSHAO] +BackSprite = -3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRUDDIGON] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLETT] +BackSprite = 1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLURK] +BackSprite = 2,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PAWNIARD] +BackSprite = 2,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BISHARP] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BOUFFALANT] +BackSprite = -1,0 +FrontSprite = -10,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RUFFLET] +BackSprite = 1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRAVIARY] +BackSprite = -2,0 +FrontSprite = 5,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VULLABY] +BackSprite = 0,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANDIBUZZ] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HEATMOR] +BackSprite = 3,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DURANT] +BackSprite = 0,0 +FrontSprite = 1,34 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEINO] +BackSprite = 0,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZWEILOUS] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HYDREIGON] +BackSprite = -2,0 +FrontSprite = 1,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVESTA] +BackSprite = 0,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VOLCARONA] +BackSprite = 0,0 +FrontSprite = 3,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COBALION] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TERRAKION] +BackSprite = 0,0 +FrontSprite = -4,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIRIZION] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TORNADUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORNADUS,1] +BackSprite = -2,0 +FrontSprite = 8,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS,1] +BackSprite = -3,0 +FrontSprite = 2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RESHIRAM] +BackSprite = 2,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZEKROM] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS] +BackSprite = 0,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS,1] +BackSprite = -8,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM] +BackSprite = -3,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,1] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,2] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,3] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,4] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KELDEO] +BackSprite = -1,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KELDEO,1] +BackSprite = 1,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MELOETTA] +BackSprite = 0,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MELOETTA,1] +BackSprite = 0,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GENESECT] +BackSprite = 0,0 +FrontSprite = -3,18 +ShadowX = 0 +ShadowSize = 3 diff --git a/PBS/Gen 8/berry_plants.txt b/PBS/Gen 8/berry_plants.txt new file mode 100644 index 000000000..f4e543292 --- /dev/null +++ b/PBS/Gen 8/berry_plants.txt @@ -0,0 +1,69 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +CHERIBERRY = 3,15,2,5 +CHESTOBERRY = 3,15,2,5 +PECHABERRY = 3,15,2,5 +RAWSTBERRY = 3,15,2,5 +ASPEARBERRY = 3,15,2,5 +LEPPABERRY = 4,15,2,5 +ORANBERRY = 4,15,2,5 +PERSIMBERRY = 4,15,2,5 +LUMBERRY = 12,8,2,5 +SITRUSBERRY = 8,7,2,5 +FIGYBERRY = 5,10,1,5 +WIKIBERRY = 5,10,1,5 +MAGOBERRY = 5,10,1,5 +AGUAVBERRY = 5,10,1,5 +IAPAPABERRY = 5,10,1,5 +RAZZBERRY = 2,35,2,10 +BLUKBERRY = 2,35,2,10 +NANABBERRY = 2,35,2,10 +WEPEARBERRY = 2,35,2,10 +PINAPBERRY = 2,35,2,10 +POMEGBERRY = 8,8,1,5 +KELPSYBERRY = 8,8,1,5 +QUALOTBERRY = 8,8,1,5 +HONDEWBERRY = 8,8,1,5 +GREPABERRY = 8,8,1,5 +TAMATOBERRY = 8,8,1,5 +CORNNBERRY = 6,10,2,10 +MAGOSTBERRY = 6,10,2,10 +RABUTABERRY = 6,10,2,10 +NOMELBERRY = 6,10,2,10 +SPELONBERRY = 15,8,2,15 +PAMTREBERRY = 15,8,3,15 +WATMELBERRY = 15,8,2,15 +DURINBERRY = 15,8,3,15 +BELUEBERRY = 15,8,2,15 +OCCABERRY = 18,6,1,5 +PASSHOBERRY = 18,6,1,5 +WACANBERRY = 18,6,1,5 +RINDOBERRY = 18,6,1,5 +YACHEBERRY = 18,6,1,5 +CHOPLEBERRY = 18,6,1,5 +KEBIABERRY = 18,6,1,5 +SHUCABERRY = 18,6,1,5 +COBABERRY = 18,6,1,5 +PAYAPABERRY = 18,6,1,5 +TANGABERRY = 18,6,1,5 +CHARTIBERRY = 18,6,1,5 +KASIBBERRY = 18,6,1,5 +HABANBERRY = 18,6,1,5 +COLBURBERRY = 18,6,1,5 +BABIRIBERRY = 18,6,1,5 +CHILANBERRY = 18,6,1,5 +LIECHIBERRY = 24,4,1,5 +GANLONBERRY = 24,4,1,5 +SALACBERRY = 24,4,1,5 +PETAYABERRY = 24,4,1,5 +APICOTBERRY = 24,4,1,5 +LANSATBERRY = 24,4,1,5 +STARFBERRY = 24,4,1,5 +ENIGMABERRY = 24,7,1,5 +MICLEBERRY = 24,7,1,5 +CUSTAPBERRY = 24,7,1,5 +JABOCABERRY = 24,7,1,5 +ROWAPBERRY = 24,7,1,5 +ROSELIBERRY = 18,6,1,5 +KEEBERRY = 24,7,1,5 +MARANGABERRY = 24,7,1,5 diff --git a/PBS/Gen 8/pokemon.txt b/PBS/Gen 8/pokemon.txt index c568e4ceb..0f6783516 100644 --- a/PBS/Gen 8/pokemon.txt +++ b/PBS/Gen 8/pokemon.txt @@ -26,12 +26,6 @@ Habitat = Grassland Category = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = IVYSAUR,Level,16 #------------------------------- [IVYSAUR] @@ -59,12 +53,6 @@ Habitat = Grassland Category = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENUSAUR,Level,32 #------------------------------- [VENUSAUR] @@ -92,12 +80,6 @@ Habitat = Grassland Category = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHARMANDER] Name = Charmander @@ -124,12 +106,6 @@ Habitat = Mountain Category = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. Generation = 1 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHARMELEON,Level,16 #------------------------------- [CHARMELEON] @@ -156,12 +132,6 @@ Habitat = Mountain Category = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARIZARD,Level,36 #------------------------------- [CHARIZARD] @@ -189,12 +159,6 @@ Habitat = Mountain Category = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SQUIRTLE] Name = Squirtle @@ -221,12 +185,6 @@ Habitat = WatersEdge Category = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WARTORTLE,Level,16 #------------------------------- [WARTORTLE] @@ -253,12 +211,6 @@ Habitat = WatersEdge Category = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLASTOISE,Level,36 #------------------------------- [BLASTOISE] @@ -285,12 +237,6 @@ Habitat = WatersEdge Category = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CATERPIE] Name = Caterpie @@ -316,12 +262,6 @@ Habitat = Forest Category = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = METAPOD,Level,7 #------------------------------- [METAPOD] @@ -347,12 +287,6 @@ Habitat = Forest Category = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BUTTERFREE,Level,10 #------------------------------- [BUTTERFREE] @@ -381,12 +315,6 @@ Category = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. Generation = 1 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WEEDLE] Name = Weedle @@ -413,12 +341,6 @@ Habitat = Forest Category = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KAKUNA,Level,7 #------------------------------- [KAKUNA] @@ -445,12 +367,6 @@ Habitat = Forest Category = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEEDRILL,Level,10 #------------------------------- [BEEDRILL] @@ -479,12 +395,6 @@ Category = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDGEY] Name = Pidgey @@ -512,12 +422,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIDGEOTTO,Level,18 #------------------------------- [PIDGEOTTO] @@ -545,12 +449,6 @@ Habitat = Forest Category = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PIDGEOT,Level,36 #------------------------------- [PIDGEOT] @@ -578,12 +476,6 @@ Habitat = Forest Category = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RATTATA] Name = Rattata @@ -611,12 +503,6 @@ Category = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RATICATE,Level,20 #------------------------------- [RATICATE] @@ -644,12 +530,6 @@ Category = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPEAROW] Name = Spearow @@ -678,12 +558,6 @@ Category = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FEAROW,Level,20 #------------------------------- [FEAROW] @@ -712,12 +586,6 @@ Category = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EKANS] Name = Ekans @@ -744,12 +612,6 @@ Habitat = Grassland Category = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARBOK,Level,22 #------------------------------- [ARBOK] @@ -776,12 +638,6 @@ Habitat = Grassland Category = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIKACHU] Name = Pikachu @@ -808,12 +664,6 @@ Category = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. Generation = 1 WildItemUncommon = LIGHTBALL -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RAICHU,Item,THUNDERSTONE #------------------------------- [RAICHU] @@ -840,12 +690,6 @@ Habitat = Forest Category = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SANDSHREW] Name = Sandshrew @@ -873,12 +717,6 @@ Category = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. Generation = 1 WildItemUncommon = GRIPCLAW -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SANDSLASH,Level,22 #------------------------------- [SANDSLASH] @@ -906,12 +744,6 @@ Category = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. Generation = 1 WildItemUncommon = GRIPCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANfE] Name = Nidoran♀ @@ -938,12 +770,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINA,Level,16 #------------------------------- [NIDORINA] @@ -970,12 +796,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NIDOQUEEN,Item,MOONSTONE #------------------------------- [NIDOQUEEN] @@ -1003,12 +823,6 @@ Habitat = Grassland Category = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANmA] Name = Nidoran♂ @@ -1035,12 +849,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINO,Level,16 #------------------------------- [NIDORINO] @@ -1067,12 +875,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = NIDOKING,Item,MOONSTONE #------------------------------- [NIDOKING] @@ -1100,12 +902,6 @@ Habitat = Grassland Category = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLEFAIRY] Name = Clefairy @@ -1132,12 +928,6 @@ Category = Fairy Pokedex = On every night of a full moon, they come out to play. When dawn arrives, the tired Clefairy go to sleep nestled up against each other in deep and quiet mountains. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLEFABLE,Item,MOONSTONE #------------------------------- [CLEFABLE] @@ -1165,12 +955,6 @@ Category = Fairy Pokedex = A Clefable uses its wings to skip lightly as if it were flying. Its bouncy step lets it even walk on water. On quiet, moonlit nights, it strolls on lakes. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VULPIX] Name = Vulpix @@ -1198,12 +982,6 @@ Category = Fox Pokedex = It can freely control fire, making fiery orbs fly like will-o'-the-wisps. Just before evolution, its six tails grow hot as if on fire. Generation = 1 WildItemUncommon = CHARCOAL -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINETALES,Item,FIRESTONE #------------------------------- [NINETALES] @@ -1231,12 +1009,6 @@ Category = Fox Pokedex = It has long been said that each of the nine tails embody an enchanted power. A long-lived Ninetales will have fur that shines like gold. Generation = 1 WildItemUncommon = CHARCOAL -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JIGGLYPUFF] Name = Jigglypuff @@ -1264,12 +1036,6 @@ Category = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WIGGLYTUFF,Item,MOONSTONE #------------------------------- [WIGGLYTUFF] @@ -1298,12 +1064,6 @@ Category = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZUBAT] Name = Zubat @@ -1331,12 +1091,6 @@ Habitat = Cave Category = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLBAT,Level,22 #------------------------------- [GOLBAT] @@ -1364,12 +1118,6 @@ Habitat = Cave Category = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROBAT,Happiness, #------------------------------- [ODDISH] @@ -1399,12 +1147,6 @@ Category = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GLOOM,Level,21 #------------------------------- [GLOOM] @@ -1433,12 +1175,6 @@ Category = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VILEPLUME,Item,LEAFSTONE,BELLOSSOM,Item,SUNSTONE #------------------------------- [VILEPLUME] @@ -1467,12 +1203,6 @@ Category = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PARAS] Name = Paras @@ -1502,12 +1232,6 @@ Pokedex = A Paras has parasitic tochukaso mushrooms growing on its back. They gr Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PARASECT,Level,24 #------------------------------- [PARASECT] @@ -1537,12 +1261,6 @@ Pokedex = Parasect are known to infest the roots of large trees en masse and dra Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VENONAT] Name = Venonat @@ -1570,12 +1288,6 @@ Habitat = Forest Category = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENOMOTH,Level,31 #------------------------------- [VENOMOTH] @@ -1604,12 +1316,6 @@ Category = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. Generation = 1 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIGLETT] Name = Diglett @@ -1637,12 +1343,6 @@ Category = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUGTRIO,Level,26 #------------------------------- [DUGTRIO] @@ -1670,12 +1370,6 @@ Category = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEOWTH] Name = Meowth @@ -1703,12 +1397,6 @@ Category = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PERSIAN,Level,28 #------------------------------- [PERSIAN] @@ -1736,12 +1424,6 @@ Category = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PSYDUCK] Name = Psyduck @@ -1768,12 +1450,6 @@ Habitat = WatersEdge Category = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLDUCK,Level,33 #------------------------------- [GOLDUCK] @@ -1800,12 +1476,6 @@ Habitat = WatersEdge Category = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MANKEY] Name = Mankey @@ -1832,12 +1502,6 @@ Habitat = Mountain Category = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMEAPE,Level,28 #------------------------------- [PRIMEAPE] @@ -1864,12 +1528,6 @@ Habitat = Mountain Category = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROWLITHE] Name = Growlithe @@ -1896,12 +1554,6 @@ Habitat = Grassland Category = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARCANINE,Item,FIRESTONE #------------------------------- [ARCANINE] @@ -1928,12 +1580,6 @@ Habitat = Grassland Category = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POLIWAG] Name = Poliwag @@ -1960,12 +1606,6 @@ Habitat = WatersEdge Category = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = POLIWHIRL,Level,25 #------------------------------- [POLIWHIRL] @@ -1993,12 +1633,6 @@ Category = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = POLIWRATH,Item,WATERSTONE,POLITOED,TradeItem,KINGSROCK #------------------------------- [POLIWRATH] @@ -2027,12 +1661,6 @@ Category = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ABRA] Name = Abra @@ -2060,12 +1688,6 @@ Category = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KADABRA,Level,16 #------------------------------- [KADABRA] @@ -2093,12 +1715,6 @@ Category = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ALAKAZAM,Trade, #------------------------------- [ALAKAZAM] @@ -2126,12 +1742,6 @@ Category = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MACHOP] Name = Machop @@ -2159,12 +1769,6 @@ Category = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHOKE,Level,28 #------------------------------- [MACHOKE] @@ -2192,12 +1796,6 @@ Category = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHAMP,Trade, #------------------------------- [MACHAMP] @@ -2225,12 +1823,6 @@ Category = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELLSPROUT] Name = Bellsprout @@ -2258,12 +1850,6 @@ Habitat = Forest Category = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WEEPINBELL,Level,21 #------------------------------- [WEEPINBELL] @@ -2291,12 +1877,6 @@ Habitat = Forest Category = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VICTREEBEL,Item,LEAFSTONE #------------------------------- [VICTREEBEL] @@ -2324,12 +1904,6 @@ Habitat = Forest Category = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TENTACOOL] Name = Tentacool @@ -2358,12 +1932,6 @@ Category = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TENTACRUEL,Level,30 #------------------------------- [TENTACRUEL] @@ -2392,12 +1960,6 @@ Category = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GEODUDE] Name = Geodude @@ -2426,12 +1988,6 @@ Category = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRAVELER,Level,25 #------------------------------- [GRAVELER] @@ -2460,12 +2016,6 @@ Category = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GOLEM,Trade, #------------------------------- [GOLEM] @@ -2494,12 +2044,6 @@ Category = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PONYTA] Name = Ponyta @@ -2526,12 +2070,6 @@ Habitat = Grassland Category = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAPIDASH,Level,40 #------------------------------- [RAPIDASH] @@ -2558,12 +2096,6 @@ Habitat = Grassland Category = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLOWPOKE] Name = Slowpoke @@ -2592,12 +2124,6 @@ Category = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SLOWBRO,Level,37,SLOWKING,TradeItem,KINGSROCK #------------------------------- [SLOWBRO] @@ -2626,12 +2152,6 @@ Category = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGNEMITE] Name = Magnemite @@ -2659,12 +2179,6 @@ Category = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGNETON,Level,30 #------------------------------- [MAGNETON] @@ -2693,12 +2207,6 @@ Category = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGNEZONE,Item,THUNDERSTONE #------------------------------- [FARFETCHD] @@ -2728,12 +2236,6 @@ Category = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. Generation = 1 WildItemUncommon = LEEK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DODUO] Name = Doduo @@ -2762,12 +2264,6 @@ Category = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DODRIO,Level,31 #------------------------------- [DODRIO] @@ -2796,12 +2292,6 @@ Category = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEL] Name = Seel @@ -2828,12 +2318,6 @@ Habitat = Sea Category = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. Generation = 1 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DEWGONG,Level,34 #------------------------------- [DEWGONG] @@ -2861,12 +2345,6 @@ Habitat = Sea Category = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GRIMER] Name = Grimer @@ -2894,12 +2372,6 @@ Category = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. Generation = 1 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MUK,Level,38 #------------------------------- [MUK] @@ -2927,12 +2399,6 @@ Category = Sludge Pokedex = It prefers warm and humid habitats. In the summertime, the toxic substances in its body intensify, making Muk reek like putrid kitchen garbage. Generation = 1 WildItemCommon = BLACKSLUDGE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELLDER] Name = Shellder @@ -2961,12 +2427,6 @@ Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to m Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLOYSTER,Item,WATERSTONE #------------------------------- [CLOYSTER] @@ -2996,12 +2456,6 @@ Pokedex = It swims in the sea by swallowing water, then jetting it out toward th Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GASTLY] Name = Gastly @@ -3028,12 +2482,6 @@ Habitat = Cave Category = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAUNTER,Level,25 #------------------------------- [HAUNTER] @@ -3060,12 +2508,6 @@ Habitat = Cave Category = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GENGAR,Trade, #------------------------------- [GENGAR] @@ -3092,12 +2534,6 @@ Habitat = Cave Category = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ONIX] Name = Onix @@ -3125,12 +2561,6 @@ Habitat = Cave Category = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = STEELIX,TradeItem,METALCOAT #------------------------------- [DROWZEE] @@ -3158,12 +2588,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HYPNO,Level,26 #------------------------------- [HYPNO] @@ -3190,12 +2614,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KRABBY] Name = Krabby @@ -3222,12 +2640,6 @@ Habitat = WatersEdge Category = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KINGLER,Level,28 #------------------------------- [KINGLER] @@ -3254,12 +2666,6 @@ Habitat = WatersEdge Category = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VOLTORB] Name = Voltorb @@ -3285,12 +2691,6 @@ Habitat = Urban Category = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ELECTRODE,Level,30 #------------------------------- [ELECTRODE] @@ -3317,12 +2717,6 @@ Habitat = Urban Category = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EXEGGCUTE] Name = Exeggcute @@ -3351,12 +2745,6 @@ Category = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. Generation = 1 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXEGGUTOR,Item,LEAFSTONE #------------------------------- [EXEGGUTOR] @@ -3384,12 +2772,6 @@ Habitat = Forest Category = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUBONE] Name = Cubone @@ -3417,12 +2799,6 @@ Category = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAROWAK,Level,28 #------------------------------- [MAROWAK] @@ -3450,12 +2826,6 @@ Category = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONLEE] Name = Hitmonlee @@ -3481,12 +2851,6 @@ Habitat = Urban Category = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONCHAN] Name = Hitmonchan @@ -3512,12 +2876,6 @@ Habitat = Urban Category = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LICKITUNG] Name = Lickitung @@ -3545,12 +2903,6 @@ Category = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = LICKILICKY,HasMove,ROLLOUT #------------------------------- [KOFFING] @@ -3579,12 +2931,6 @@ Category = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEEZING,Level,35 #------------------------------- [WEEZING] @@ -3612,12 +2958,6 @@ Category = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYHORN] Name = Rhyhorn @@ -3645,12 +2985,6 @@ Habitat = RoughTerrain Category = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYDON,Level,42 #------------------------------- [RHYDON] @@ -3678,12 +3012,6 @@ Habitat = RoughTerrain Category = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYPERIOR,TradeItem,PROTECTOR #------------------------------- [CHANSEY] @@ -3712,12 +3040,6 @@ Category = Egg Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so delicious, they are eagerly devoured by even those who have lost their appetite. Generation = 1 WildItemCommon = LUCKYPUNCH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLISSEY,Happiness, #------------------------------- [TANGELA] @@ -3745,12 +3067,6 @@ Habitat = Grassland Category = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TANGROWTH,HasMove,ANCIENTPOWER #------------------------------- [KANGASKHAN] @@ -3778,12 +3094,6 @@ Habitat = Grassland Category = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HORSEA] Name = Horsea @@ -3811,12 +3121,6 @@ Category = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SEADRA,Level,32 #------------------------------- [SEADRA] @@ -3844,12 +3148,6 @@ Category = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KINGDRA,TradeItem,DRAGONSCALE #------------------------------- [GOLDEEN] @@ -3878,12 +3176,6 @@ Category = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. Generation = 1 WildItemUncommon = MYSTICWATER -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEAKING,Level,33 #------------------------------- [SEAKING] @@ -3911,12 +3203,6 @@ Category = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. Generation = 1 WildItemUncommon = MYSTICWATER -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STARYU] Name = Staryu @@ -3944,12 +3230,6 @@ Pokedex = It gathers with others in the night and makes its red core glow on and Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARMIE,Item,WATERSTONE #------------------------------- [STARMIE] @@ -3979,12 +3259,6 @@ Pokedex = People in ancient times imagined that Starmie were transformed from th Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MRMIME] Name = Mr. Mime @@ -4012,12 +3286,6 @@ Habitat = Urban Category = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCYTHER] Name = Scyther @@ -4045,12 +3313,6 @@ Habitat = Grassland Category = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SCIZOR,TradeItem,METALCOAT #------------------------------- [JYNX] @@ -4078,12 +3340,6 @@ Habitat = Urban Category = Human Shape Pokedex = A Jynx sashays rhythmically as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without noticing. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTABUZZ] Name = Electabuzz @@ -4110,12 +3366,6 @@ Category = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. Generation = 1 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ELECTIVIRE,TradeItem,ELECTIRIZER #------------------------------- [MAGMAR] @@ -4143,12 +3393,6 @@ Category = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. Generation = 1 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAGMORTAR,TradeItem,MAGMARIZER #------------------------------- [PINSIR] @@ -4176,12 +3420,6 @@ Habitat = Forest Category = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAUROS] Name = Tauros @@ -4207,12 +3445,6 @@ Habitat = Grassland Category = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGIKARP] Name = Magikarp @@ -4238,12 +3470,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GYARADOS,Level,20 #------------------------------- [GYARADOS] @@ -4271,12 +3497,6 @@ Habitat = WatersEdge Category = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LAPRAS] Name = Lapras @@ -4307,12 +3527,6 @@ Generation = 1 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DITTO] Name = Ditto @@ -4339,12 +3553,6 @@ Pokedex = A Ditto rearranges its cell structure to transform itself. However, if Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EEVEE] Name = Eevee @@ -4371,12 +3579,6 @@ Habitat = Urban Category = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VAPOREON,Item,WATERSTONE,JOLTEON,Item,THUNDERSTONE,FLAREON,Item,FIRESTONE,LEAFEON,Item,LEAFSTONE,GLACEON,Item,ICESTONE,SYLVEON,HappinessMoveType,FAIRY,ESPEON,HappinessDay,,UMBREON,HappinessNight, #------------------------------- [VAPOREON] @@ -4403,12 +3605,6 @@ Habitat = Urban Category = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JOLTEON] Name = Jolteon @@ -4434,12 +3630,6 @@ Habitat = Urban Category = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLAREON] Name = Flareon @@ -4465,12 +3655,6 @@ Habitat = Urban Category = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PORYGON] Name = Porygon @@ -4496,12 +3680,6 @@ Habitat = Urban Category = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy-protected so it cannot be duplicated. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PORYGON2,TradeItem,UPGRADE #------------------------------- [OMANYTE] @@ -4530,12 +3708,6 @@ Habitat = Sea Category = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OMASTAR,Level,40 #------------------------------- [OMASTAR] @@ -4563,12 +3735,6 @@ Habitat = Sea Category = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KABUTO] Name = Kabuto @@ -4596,12 +3762,6 @@ Habitat = Sea Category = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KABUTOPS,Level,40 #------------------------------- [KABUTOPS] @@ -4629,12 +3789,6 @@ Habitat = Sea Category = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. Generation = 1 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AERODACTYL] Name = Aerodactyl @@ -4662,12 +3816,6 @@ Habitat = Mountain Category = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNORLAX] Name = Snorlax @@ -4697,12 +3845,6 @@ Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARTICUNO] Name = Articuno @@ -4729,12 +3871,6 @@ Habitat = Rare Category = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZAPDOS] Name = Zapdos @@ -4761,12 +3897,6 @@ Habitat = Rare Category = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MOLTRES] Name = Moltres @@ -4793,12 +3923,6 @@ Habitat = Rare Category = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRATINI] Name = Dratini @@ -4826,12 +3950,6 @@ Category = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGONAIR,Level,30 #------------------------------- [DRAGONAIR] @@ -4859,12 +3977,6 @@ Category = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DRAGONITE,Level,55 #------------------------------- [DRAGONITE] @@ -4893,12 +4005,6 @@ Category = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEWTWO] Name = Mewtwo @@ -4924,12 +4030,6 @@ Habitat = Rare Category = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. Generation = 1 -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MEW] Name = Mew @@ -4957,12 +4057,6 @@ Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CHIKORITA] Name = Chikorita @@ -4989,12 +4083,6 @@ Habitat = Grassland Category = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BAYLEEF,Level,16 #------------------------------- [BAYLEEF] @@ -5021,12 +4109,6 @@ Habitat = Grassland Category = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEGANIUM,Level,32 #------------------------------- [MEGANIUM] @@ -5053,12 +4135,6 @@ Habitat = Grassland Category = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CYNDAQUIL] Name = Cyndaquil @@ -5085,12 +4161,6 @@ Habitat = Grassland Category = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUILAVA,Level,14 #------------------------------- [QUILAVA] @@ -5117,12 +4187,6 @@ Habitat = Grassland Category = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TYPHLOSION,Level,36 #------------------------------- [TYPHLOSION] @@ -5149,12 +4213,6 @@ Habitat = Grassland Category = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOTODILE] Name = Totodile @@ -5181,12 +4239,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROCONAW,Level,18 #------------------------------- [CROCONAW] @@ -5213,12 +4265,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FERALIGATR,Level,30 #------------------------------- [FERALIGATR] @@ -5245,12 +4291,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SENTRET] Name = Sentret @@ -5277,12 +4317,6 @@ Habitat = Grassland Category = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FURRET,Level,15 #------------------------------- [FURRET] @@ -5309,12 +4343,6 @@ Habitat = Grassland Category = Long Body Pokedex = A Furret has a very slim build. When under attack, it can squirm through narrow spaces and get away. In spite of its short limbs, it is very nimble and fleet. Generation = 2 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOTHOOT] Name = Hoothoot @@ -5342,12 +4370,6 @@ Habitat = Forest Category = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOCTOWL,Level,20 #------------------------------- [NOCTOWL] @@ -5375,12 +4397,6 @@ Habitat = Forest Category = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LEDYBA] Name = Ledyba @@ -5408,12 +4424,6 @@ Habitat = Forest Category = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEDIAN,Level,18 #------------------------------- [LEDIAN] @@ -5441,12 +4451,6 @@ Habitat = Forest Category = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPINARAK] Name = Spinarak @@ -5474,12 +4478,6 @@ Habitat = Forest Category = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARIADOS,Level,22 #------------------------------- [ARIADOS] @@ -5507,12 +4505,6 @@ Habitat = Forest Category = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROBAT] Name = Crobat @@ -5539,12 +4531,6 @@ Habitat = Cave Category = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHINCHOU] Name = Chinchou @@ -5573,12 +4559,6 @@ Category = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LANTURN,Level,27 #------------------------------- [LANTURN] @@ -5607,12 +4587,6 @@ Category = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PICHU] Name = Pichu @@ -5639,12 +4613,6 @@ Habitat = Forest Category = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIKACHU,Happiness, #------------------------------- [CLEFFA] @@ -5673,12 +4641,6 @@ Category = Star Shape Pokedex = On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance until daybreak, when they quench their thirst with the morning dew. Generation = 2 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLEFAIRY,Happiness, #------------------------------- [IGGLYBUFF] @@ -5707,12 +4669,6 @@ Habitat = Grassland Category = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JIGGLYPUFF,Happiness, #------------------------------- [TOGEPI] @@ -5740,12 +4696,6 @@ Habitat = Forest Category = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGETIC,Happiness, #------------------------------- [TOGETIC] @@ -5773,12 +4723,6 @@ Habitat = Forest Category = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGEKISS,Item,SHINYSTONE #------------------------------- [NATU] @@ -5807,12 +4751,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = XATU,Level,25 #------------------------------- [XATU] @@ -5840,12 +4778,6 @@ Habitat = Forest Category = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREEP] Name = Mareep @@ -5872,12 +4804,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLAAFFY,Level,15 #------------------------------- [FLAAFFY] @@ -5904,12 +4830,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AMPHAROS,Level,30 #------------------------------- [AMPHAROS] @@ -5936,12 +4856,6 @@ Habitat = Grassland Category = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BELLOSSOM] Name = Bellossom @@ -5968,12 +4882,6 @@ Category = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. Generation = 2 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARILL] Name = Marill @@ -6001,12 +4909,6 @@ Habitat = WatersEdge Category = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AZUMARILL,Level,18 #------------------------------- [AZUMARILL] @@ -6034,12 +4936,6 @@ Habitat = WatersEdge Category = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SUDOWOODO] Name = Sudowoodo @@ -6066,12 +4962,6 @@ Habitat = Forest Category = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [POLITOED] Name = Politoed @@ -6098,12 +4988,6 @@ Category = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOPPIP] Name = Hoppip @@ -6131,12 +5015,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. Generation = 2 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SKIPLOOM,Level,18 #------------------------------- [SKIPLOOM] @@ -6164,12 +5042,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = JUMPLUFF,Level,27 #------------------------------- [JUMPLUFF] @@ -6197,12 +5069,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AIPOM] Name = Aipom @@ -6229,12 +5095,6 @@ Habitat = Forest Category = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. Generation = 2 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMBIPOM,HasMove,DOUBLEHIT #------------------------------- [SUNKERN] @@ -6262,12 +5122,6 @@ Habitat = Grassland Category = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUNFLORA,Item,SUNSTONE #------------------------------- [SUNFLORA] @@ -6294,12 +5148,6 @@ Habitat = Grassland Category = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [YANMA] Name = Yanma @@ -6328,12 +5176,6 @@ Category = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. Generation = 2 WildItemUncommon = WIDELENS -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = YANMEGA,HasMove,ANCIENTPOWER #------------------------------- [WOOPER] @@ -6362,12 +5204,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUAGSIRE,Level,20 #------------------------------- [QUAGSIRE] @@ -6395,12 +5231,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPEON] Name = Espeon @@ -6426,12 +5256,6 @@ Habitat = Urban Category = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [UMBREON] Name = Umbreon @@ -6457,12 +5281,6 @@ Habitat = Urban Category = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MURKROW] Name = Murkrow @@ -6490,12 +5308,6 @@ Habitat = Forest Category = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HONCHKROW,Item,DUSKSTONE #------------------------------- [SLOWKING] @@ -6524,12 +5336,6 @@ Category = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISDREAVUS] Name = Misdreavus @@ -6555,12 +5361,6 @@ Habitat = Cave Category = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MISMAGIUS,Item,DUSKSTONE #------------------------------- [UNOWN] @@ -6587,12 +5387,6 @@ Category = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = A Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [WOBBUFFET] Name = Wobbuffet @@ -6618,12 +5412,6 @@ Habitat = Cave Category = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIRAFARIG] Name = Girafarig @@ -6651,12 +5439,6 @@ Habitat = Grassland Category = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PINECO] Name = Pineco @@ -6683,12 +5465,6 @@ Habitat = Forest Category = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FORRETRESS,Level,31 #------------------------------- [FORRETRESS] @@ -6716,12 +5492,6 @@ Habitat = Forest Category = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUNSPARCE] Name = Dunsparce @@ -6748,12 +5518,6 @@ Habitat = Cave Category = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GLIGAR] Name = Gligar @@ -6781,12 +5545,6 @@ Habitat = Mountain Category = Fly Scorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLISCOR,NightHoldItem,RAZORFANG #------------------------------- [STEELIX] @@ -6815,12 +5573,6 @@ Category = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SNUBBULL] Name = Snubbull @@ -6847,12 +5599,6 @@ Habitat = Urban Category = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRANBULL,Level,23 #------------------------------- [GRANBULL] @@ -6879,12 +5625,6 @@ Habitat = Urban Category = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [QWILFISH] Name = Qwilfish @@ -6913,12 +5653,6 @@ Category = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. Generation = 2 WildItemUncommon = POISONBARB -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCIZOR] Name = Scizor @@ -6945,12 +5679,6 @@ Habitat = Grassland Category = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHUCKLE] Name = Shuckle @@ -6981,12 +5709,6 @@ Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HERACROSS] Name = Heracross @@ -7014,12 +5736,6 @@ Habitat = Forest Category = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNEASEL] Name = Sneasel @@ -7048,12 +5764,6 @@ Category = Sharp Claw Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It seeks out unguarded nests and steals eggs for food while the parents are away. Generation = 2 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEAVILE,NightHoldItem,RAZORCLAW #------------------------------- [TEDDIURSA] @@ -7081,12 +5791,6 @@ Habitat = Mountain Category = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = URSARING,Level,30 #------------------------------- [URSARING] @@ -7113,12 +5817,6 @@ Habitat = Mountain Category = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLUGMA] Name = Slugma @@ -7145,12 +5843,6 @@ Habitat = Mountain Category = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGCARGO,Level,38 #------------------------------- [MAGCARGO] @@ -7178,12 +5870,6 @@ Habitat = Mountain Category = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWINUB] Name = Swinub @@ -7211,12 +5897,6 @@ Habitat = Cave Category = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PILOSWINE,Level,33 #------------------------------- [PILOSWINE] @@ -7244,12 +5924,6 @@ Habitat = Cave Category = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAMOSWINE,HasMove,ANCIENTPOWER #------------------------------- [CORSOLA] @@ -7279,12 +5953,6 @@ Category = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. Generation = 2 WildItemUncommon = LUMINOUSMOSS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [REMORAID] Name = Remoraid @@ -7311,12 +5979,6 @@ Habitat = Sea Category = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. Generation = 2 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OCTILLERY,Level,25 #------------------------------- [OCTILLERY] @@ -7343,12 +6005,6 @@ Habitat = Sea Category = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DELIBIRD] Name = Delibird @@ -7376,12 +6032,6 @@ Habitat = Mountain Category = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTINE] Name = Mantine @@ -7409,12 +6059,6 @@ Habitat = Sea Category = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKARMORY] Name = Skarmory @@ -7443,12 +6087,6 @@ Category = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOUNDOUR] Name = Houndour @@ -7476,12 +6114,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HOUNDOOM,Level,24 #------------------------------- [HOUNDOOM] @@ -7509,12 +6141,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KINGDRA] Name = Kingdra @@ -7542,12 +6168,6 @@ Category = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. Generation = 2 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANPY] Name = Phanpy @@ -7574,12 +6194,6 @@ Habitat = RoughTerrain Category = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DONPHAN,Level,25 #------------------------------- [DONPHAN] @@ -7606,12 +6220,6 @@ Habitat = RoughTerrain Category = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGON2] Name = Porygon2 @@ -7637,12 +6245,6 @@ Habitat = Urban Category = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PORYGONZ,TradeItem,DUBIOUSDISC #------------------------------- [STANTLER] @@ -7670,12 +6272,6 @@ Habitat = Forest Category = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMEARGLE] Name = Smeargle @@ -7700,12 +6296,6 @@ Habitat = Urban Category = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYROGUE] Name = Tyrogue @@ -7732,12 +6322,6 @@ Habitat = Urban Category = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HITMONLEE,AttackGreater,20,HITMONCHAN,DefenseGreater,20,HITMONTOP,AtkDefEqual,20 #------------------------------- [HITMONTOP] @@ -7764,12 +6348,6 @@ Habitat = Urban Category = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMOOCHUM] Name = Smoochum @@ -7797,12 +6375,6 @@ Habitat = Urban Category = Kiss Pokedex = It actively runs about, but also falls often. Whenever it falls, it will check its reflection on a lake's surface to make sure its face hasn't become dirty. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JYNX,Level,30 #------------------------------- [ELEKID] @@ -7831,12 +6403,6 @@ Category = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. Generation = 2 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ELECTABUZZ,Level,30 #------------------------------- [MAGBY] @@ -7865,12 +6431,6 @@ Category = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. Generation = 2 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGMAR,Level,30 #------------------------------- [MILTANK] @@ -7901,12 +6461,6 @@ Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLISSEY] Name = Blissey @@ -7935,12 +6489,6 @@ Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [RAIKOU] Name = Raikou @@ -7966,12 +6514,6 @@ Habitat = Grassland Category = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ENTEI] Name = Entei @@ -7997,12 +6539,6 @@ Habitat = Grassland Category = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SUICUNE] Name = Suicune @@ -8028,12 +6564,6 @@ Habitat = Grassland Category = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVITAR] Name = Larvitar @@ -8061,12 +6591,6 @@ Habitat = Mountain Category = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PUPITAR,Level,30 #------------------------------- [PUPITAR] @@ -8093,12 +6617,6 @@ Habitat = Mountain Category = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANITAR,Level,55 #------------------------------- [TYRANITAR] @@ -8126,12 +6644,6 @@ Habitat = Mountain Category = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUGIA] Name = Lugia @@ -8158,12 +6670,6 @@ Habitat = Rare Category = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOOH] Name = Ho-Oh @@ -8193,12 +6699,6 @@ Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELEBI] Name = Celebi @@ -8227,12 +6727,6 @@ Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TREECKO] Name = Treecko @@ -8259,12 +6753,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GROVYLE,Level,16 #------------------------------- [GROVYLE] @@ -8291,12 +6779,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCEPTILE,Level,36 #------------------------------- [SCEPTILE] @@ -8323,12 +6805,6 @@ Habitat = Forest Category = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORCHIC] Name = Torchic @@ -8355,12 +6831,6 @@ Habitat = Grassland Category = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COMBUSKEN,Level,16 #------------------------------- [COMBUSKEN] @@ -8388,12 +6858,6 @@ Habitat = Grassland Category = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. Generation = 3 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLAZIKEN,Level,36 #------------------------------- [BLAZIKEN] @@ -8421,12 +6885,6 @@ Habitat = Grassland Category = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. Generation = 3 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUDKIP] Name = Mudkip @@ -8453,12 +6911,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARSHTOMP,Level,16 #------------------------------- [MARSHTOMP] @@ -8486,12 +6938,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWAMPERT,Level,36 #------------------------------- [SWAMPERT] @@ -8519,12 +6965,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POOCHYENA] Name = Poochyena @@ -8551,12 +6991,6 @@ Habitat = Grassland Category = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIGHTYENA,Level,18 #------------------------------- [MIGHTYENA] @@ -8583,12 +7017,6 @@ Habitat = Grassland Category = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZIGZAGOON] Name = Zigzagoon @@ -8617,12 +7045,6 @@ Pokedex = Rubbing its nose against the ground, it always wanders about back and Generation = 3 WildItemCommon = POTION WildItemUncommon = REVIVE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LINOONE,Level,20 #------------------------------- [LINOONE] @@ -8651,12 +7073,6 @@ Pokedex = It is exceedingly fast if it only has to run in a straight line. When Generation = 3 WildItemCommon = POTION WildItemUncommon = MAXREVIVE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WURMPLE] Name = Wurmple @@ -8684,12 +7100,6 @@ Pokedex = It sticks to tree branches and eats leaves. The thread it spits from i Generation = 3 WildItemCommon = PECHABERRY WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SILCOON,Silcoon,7,CASCOON,Cascoon,7 #------------------------------- [SILCOON] @@ -8715,12 +7125,6 @@ Habitat = Forest Category = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEAUTIFLY,Level,10 #------------------------------- [BEAUTIFLY] @@ -8749,12 +7153,6 @@ Category = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CASCOON] Name = Cascoon @@ -8779,12 +7177,6 @@ Habitat = Forest Category = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSTOX,Level,10 #------------------------------- [DUSTOX] @@ -8813,12 +7205,6 @@ Category = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LOTAD] Name = Lotad @@ -8847,12 +7233,6 @@ Category = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LOMBRE,Level,14 #------------------------------- [LOMBRE] @@ -8881,12 +7261,6 @@ Category = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUDICOLO,Item,WATERSTONE #------------------------------- [LUDICOLO] @@ -8915,12 +7289,6 @@ Category = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEDOT] Name = Seedot @@ -8948,12 +7316,6 @@ Category = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NUZLEAF,Level,14 #------------------------------- [NUZLEAF] @@ -8982,12 +7344,6 @@ Category = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SHIFTRY,Item,LEAFSTONE #------------------------------- [SHIFTRY] @@ -9016,12 +7372,6 @@ Category = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAILLOW] Name = Taillow @@ -9049,12 +7399,6 @@ Habitat = Grassland Category = Tiny Swallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. Generation = 3 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWELLOW,Level,22 #------------------------------- [SWELLOW] @@ -9082,12 +7426,6 @@ Habitat = Grassland Category = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WINGULL] Name = Wingull @@ -9116,12 +7454,6 @@ Category = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. Generation = 3 WildItemCommon = PRETTYFEATHER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PELIPPER,Level,25 #------------------------------- [PELIPPER] @@ -9150,12 +7482,6 @@ Category = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. Generation = 3 WildItemCommon = PRETTYFEATHER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RALTS] Name = Ralts @@ -9183,12 +7509,6 @@ Habitat = Urban Category = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KIRLIA,Level,20 #------------------------------- [KIRLIA] @@ -9216,12 +7536,6 @@ Habitat = Urban Category = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GARDEVOIR,Level,30,GALLADE,ItemMale,DAWNSTONE #------------------------------- [GARDEVOIR] @@ -9249,12 +7563,6 @@ Habitat = Urban Category = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SURSKIT] Name = Surskit @@ -9283,12 +7591,6 @@ Category = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. Generation = 3 WildItemCommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MASQUERAIN,Level,22 #------------------------------- [MASQUERAIN] @@ -9317,12 +7619,6 @@ Category = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. Generation = 3 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = -8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHROOMISH] Name = Shroomish @@ -9351,12 +7647,6 @@ Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRELOOM,Level,23 #------------------------------- [BRELOOM] @@ -9386,12 +7676,6 @@ Pokedex = It scatters spores from holes in the cap on its head. It loves warm an Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = -15 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SLAKOTH] Name = Slakoth @@ -9417,12 +7701,6 @@ Habitat = Forest Category = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = VIGOROTH,Level,18 #------------------------------- [VIGOROTH] @@ -9448,12 +7726,6 @@ Habitat = Forest Category = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLAKING,Level,36 #------------------------------- [SLAKING] @@ -9479,12 +7751,6 @@ Habitat = Forest Category = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NINCADA] Name = Nincada @@ -9513,12 +7779,6 @@ Category = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINJASK,Ninjask,20,SHEDINJA,Shedinja,20 #------------------------------- [NINJASK] @@ -9546,12 +7806,6 @@ Habitat = Forest Category = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHEDINJA] Name = Shedinja @@ -9577,12 +7831,6 @@ Habitat = Forest Category = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WHISMUR] Name = Whismur @@ -9609,12 +7857,6 @@ Habitat = Cave Category = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. Generation = 3 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOUDRED,Level,20 #------------------------------- [LOUDRED] @@ -9641,12 +7883,6 @@ Habitat = Cave Category = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXPLOUD,Level,40 #------------------------------- [EXPLOUD] @@ -9673,12 +7909,6 @@ Habitat = Cave Category = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAKUHITA] Name = Makuhita @@ -9706,12 +7936,6 @@ Category = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. Generation = 3 WildItemUncommon = BLACKBELT -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HARIYAMA,Level,24 #------------------------------- [HARIYAMA] @@ -9739,12 +7963,6 @@ Category = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. Generation = 3 WildItemUncommon = KINGSROCK -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AZURILL] Name = Azurill @@ -9772,12 +7990,6 @@ Habitat = WatersEdge Category = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. Generation = 3 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 14 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARILL,Happiness, Incense = SEAINCENSE #------------------------------- @@ -9807,12 +8019,6 @@ Category = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. Generation = 3 WildItemUncommon = MAGNET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PROBOPASS,Item,THUNDERSTONE #------------------------------- [SKITTY] @@ -9840,12 +8046,6 @@ Habitat = Forest Category = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DELCATTY,Item,MOONSTONE #------------------------------- [DELCATTY] @@ -9872,12 +8072,6 @@ Habitat = Forest Category = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SABLEYE] Name = Sableye @@ -9906,12 +8100,6 @@ Category = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. Generation = 3 WildItemUncommon = WIDELENS -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAWILE] Name = Mawile @@ -9940,12 +8128,6 @@ Category = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. Generation = 3 WildItemUncommon = IRONBALL -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARON] Name = Aron @@ -9974,12 +8156,6 @@ Category = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAIRON,Level,32 #------------------------------- [LAIRON] @@ -10008,12 +8184,6 @@ Category = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = AGGRON,Level,42 #------------------------------- [AGGRON] @@ -10042,12 +8212,6 @@ Category = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEDITITE] Name = Meditite @@ -10075,12 +8239,6 @@ Habitat = Mountain Category = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEDICHAM,Level,37 #------------------------------- [MEDICHAM] @@ -10108,12 +8266,6 @@ Habitat = Mountain Category = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ELECTRIKE] Name = Electrike @@ -10140,12 +8292,6 @@ Habitat = Grassland Category = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANECTRIC,Level,26 #------------------------------- [MANECTRIC] @@ -10172,12 +8318,6 @@ Habitat = Grassland Category = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PLUSLE] Name = Plusle @@ -10205,12 +8345,6 @@ Category = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. Generation = 3 WildItemUncommon = CELLBATTERY -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MINUN] Name = Minun @@ -10238,12 +8372,6 @@ Category = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. Generation = 3 WildItemUncommon = CELLBATTERY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VOLBEAT] Name = Volbeat @@ -10271,12 +8399,6 @@ Category = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. Generation = 3 WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ILLUMISE] Name = Illumise @@ -10304,12 +8426,6 @@ Category = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. Generation = 3 WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROSELIA] Name = Roselia @@ -10338,12 +8454,6 @@ Category = Thorn Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovely flowers. The fragrance of its flowers has the effect of making its foes careless. Generation = 3 WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSERADE,Item,SHINYSTONE #------------------------------- [GULPIN] @@ -10373,12 +8483,6 @@ Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWALOT,Level,26 #------------------------------- [SWALOT] @@ -10407,12 +8511,6 @@ Pokedex = Its powerful stomach acid is capable of digesting almost anything. The Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CARVANHA] Name = Carvanha @@ -10441,12 +8539,6 @@ Category = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHARPEDO,Level,30 #------------------------------- [SHARPEDO] @@ -10475,12 +8567,6 @@ Category = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WAILMER] Name = Wailmer @@ -10507,12 +8593,6 @@ Habitat = Sea Category = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WAILORD,Level,40 #------------------------------- [WAILORD] @@ -10539,12 +8619,6 @@ Habitat = Sea Category = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NUMEL] Name = Numel @@ -10572,12 +8646,6 @@ Habitat = Mountain Category = Numb Pokedex = A Numel stores boiling magma in the hump on its back. It is a hardy Pokémon that can transport a 220-pound load. It has served humans at work since long ago. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CAMERUPT,Level,33 #------------------------------- [CAMERUPT] @@ -10605,12 +8673,6 @@ Habitat = Mountain Category = Eruption Pokedex = A Pokémon that lives in the crater of a volcano. Every 10 years, the volcanoes on its back erupt violently. Research is under way on the cause of eruption. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORKOAL] Name = Torkoal @@ -10638,12 +8700,6 @@ Category = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. Generation = 3 WildItemUncommon = CHARCOAL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPOINK] Name = Spoink @@ -10670,12 +8726,6 @@ Habitat = Mountain Category = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRUMPIG,Level,32 #------------------------------- [GRUMPIG] @@ -10702,12 +8752,6 @@ Habitat = Mountain Category = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPINDA] Name = Spinda @@ -10734,12 +8778,6 @@ Habitat = Mountain Category = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRAPINCH] Name = Trapinch @@ -10767,12 +8805,6 @@ Category = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIBRAVA,Level,35 #------------------------------- [VIBRAVA] @@ -10799,12 +8831,6 @@ Habitat = RoughTerrain Category = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. Generation = 3 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLYGON,Level,45 #------------------------------- [FLYGON] @@ -10831,12 +8857,6 @@ Habitat = RoughTerrain Category = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. Generation = 3 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CACNEA] Name = Cacnea @@ -10864,12 +8884,6 @@ Category = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CACTURNE,Level,32 #------------------------------- [CACTURNE] @@ -10898,12 +8912,6 @@ Category = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWABLU] Name = Swablu @@ -10931,12 +8939,6 @@ Habitat = Forest Category = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ALTARIA,Level,35 #------------------------------- [ALTARIA] @@ -10964,12 +8966,6 @@ Habitat = Forest Category = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZANGOOSE] Name = Zangoose @@ -10997,12 +8993,6 @@ Category = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. Generation = 3 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SEVIPER] Name = Seviper @@ -11030,12 +9020,6 @@ Category = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUNATONE] Name = Lunatone @@ -11063,12 +9047,6 @@ Pokedex = It becomes very active on the night of a full moon. This Pokémon was Generation = 3 WildItemCommon = STARDUST WildItemUncommon = MOONSTONE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLROCK] Name = Solrock @@ -11096,12 +9074,6 @@ Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, gr Generation = 3 WildItemCommon = STARDUST WildItemUncommon = SUNSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BARBOACH] Name = Barboach @@ -11129,12 +9101,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHISCASH,Level,30 #------------------------------- [WHISCASH] @@ -11162,12 +9128,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CORPHISH] Name = Corphish @@ -11194,12 +9154,6 @@ Habitat = WatersEdge Category = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRAWDAUNT,Level,30 #------------------------------- [CRAWDAUNT] @@ -11227,12 +9181,6 @@ Habitat = WatersEdge Category = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. Generation = 3 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BALTOY] Name = Baltoy @@ -11259,12 +9207,6 @@ Category = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. Generation = 3 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLAYDOL,Level,36 #------------------------------- [CLAYDOL] @@ -11292,12 +9234,6 @@ Category = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. Generation = 3 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LILEEP] Name = Lileep @@ -11326,12 +9262,6 @@ Category = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRADILY,Level,40 #------------------------------- [CRADILY] @@ -11360,12 +9290,6 @@ Category = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ANORITH] Name = Anorith @@ -11393,12 +9317,6 @@ Habitat = WatersEdge Category = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. Generation = 3 -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARMALDO,Level,40 #------------------------------- [ARMALDO] @@ -11426,12 +9344,6 @@ Habitat = WatersEdge Category = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FEEBAS] Name = Feebas @@ -11458,12 +9370,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MILOTIC,Beauty,170,MILOTIC,TradeItem,PRISMSCALE #------------------------------- [MILOTIC] @@ -11490,12 +9396,6 @@ Habitat = WatersEdge Category = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CASTFORM] Name = Castform @@ -11525,12 +9425,6 @@ Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [KECLEON] Name = Kecleon @@ -11557,12 +9451,6 @@ Habitat = Forest Category = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHUPPET] Name = Shuppet @@ -11590,12 +9478,6 @@ Category = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BANETTE,Level,37 #------------------------------- [BANETTE] @@ -11623,12 +9505,6 @@ Category = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DUSKULL] Name = Duskull @@ -11656,12 +9532,6 @@ Category = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSCLOPS,Level,37 #------------------------------- [DUSCLOPS] @@ -11689,12 +9559,6 @@ Category = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DUSKNOIR,TradeItem,REAPERCLOTH #------------------------------- [TROPIUS] @@ -11723,12 +9587,6 @@ Habitat = Forest Category = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMECHO] Name = Chimecho @@ -11755,12 +9613,6 @@ Category = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. Generation = 3 WildItemUncommon = CLEANSETAG -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ABSOL] Name = Absol @@ -11787,12 +9639,6 @@ Habitat = Mountain Category = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WYNAUT] Name = Wynaut @@ -11818,12 +9664,6 @@ Habitat = Cave Category = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WOBBUFFET,Level,15 Incense = LAXINCENSE #------------------------------- @@ -11853,12 +9693,6 @@ Category = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. Generation = 3 WildItemUncommon = SNOWBALL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLALIE,Level,42,FROSLASS,ItemFemale,DAWNSTONE #------------------------------- [GLALIE] @@ -11885,12 +9719,6 @@ Habitat = Cave Category = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPHEAL] Name = Spheal @@ -11918,12 +9746,6 @@ Habitat = Sea Category = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEALEO,Level,32 #------------------------------- [SEALEO] @@ -11951,12 +9773,6 @@ Habitat = Sea Category = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WALREIN,Level,44 #------------------------------- [WALREIN] @@ -11984,12 +9800,6 @@ Habitat = Sea Category = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLAMPERL] Name = Clamperl @@ -12018,12 +9828,6 @@ Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl Generation = 3 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HUNTAIL,TradeItem,DEEPSEATOOTH,GOREBYSS,TradeItem,DEEPSEASCALE #------------------------------- [HUNTAIL] @@ -12051,12 +9855,6 @@ Category = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOREBYSS] Name = Gorebyss @@ -12083,12 +9881,6 @@ Category = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RELICANTH] Name = Relicanth @@ -12117,12 +9909,6 @@ Category = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUVDISC] Name = Luvdisc @@ -12150,12 +9936,6 @@ Category = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. Generation = 3 WildItemCommon = HEARTSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BAGON] Name = Bagon @@ -12183,12 +9963,6 @@ Category = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHELGON,Level,30 #------------------------------- [SHELGON] @@ -12216,12 +9990,6 @@ Category = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SALAMENCE,Level,50 #------------------------------- [SALAMENCE] @@ -12250,12 +10018,6 @@ Category = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELDUM] Name = Beldum @@ -12283,12 +10045,6 @@ Category = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = METANG,Level,20 #------------------------------- [METANG] @@ -12317,12 +10073,6 @@ Category = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = METAGROSS,Level,45 #------------------------------- [METAGROSS] @@ -12351,12 +10101,6 @@ Category = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIROCK] Name = Regirock @@ -12382,12 +10126,6 @@ Habitat = Cave Category = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGICE] Name = Regice @@ -12413,12 +10151,6 @@ Habitat = Cave Category = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGISTEEL] Name = Registeel @@ -12444,12 +10176,6 @@ Habitat = Cave Category = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LATIAS] Name = Latias @@ -12475,12 +10201,6 @@ Habitat = WatersEdge Category = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LATIOS] Name = Latios @@ -12506,12 +10226,6 @@ Habitat = WatersEdge Category = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KYOGRE] Name = Kyogre @@ -12536,12 +10250,6 @@ Habitat = Sea Category = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROUDON] Name = Groudon @@ -12566,12 +10274,6 @@ Habitat = RoughTerrain Category = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RAYQUAZA] Name = Rayquaza @@ -12597,12 +10299,6 @@ Habitat = Rare Category = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [JIRACHI] Name = Jirachi @@ -12631,12 +10327,6 @@ Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DEOXYS] Name = Deoxys @@ -12662,12 +10352,6 @@ Category = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTWIG] Name = Turtwig @@ -12693,12 +10377,6 @@ Shape = Quadruped Category = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GROTLE,Level,18 #------------------------------- [GROTLE] @@ -12724,12 +10402,6 @@ Shape = Quadruped Category = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TORTERRA,Level,32 #------------------------------- [TORTERRA] @@ -12756,12 +10428,6 @@ Shape = Quadruped Category = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMCHAR] Name = Chimchar @@ -12787,12 +10453,6 @@ Shape = BipedalTail Category = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MONFERNO,Level,14 #------------------------------- [MONFERNO] @@ -12819,12 +10479,6 @@ Shape = BipedalTail Category = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 10 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INFERNAPE,Level,36 #------------------------------- [INFERNAPE] @@ -12851,12 +10505,6 @@ Shape = BipedalTail Category = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIPLUP] Name = Piplup @@ -12882,12 +10530,6 @@ Shape = Bipedal Category = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PRINPLUP,Level,16 #------------------------------- [PRINPLUP] @@ -12913,12 +10555,6 @@ Shape = BipedalTail Category = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMPOLEON,Level,36 #------------------------------- [EMPOLEON] @@ -12945,12 +10581,6 @@ Shape = BipedalTail Category = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [STARLY] Name = Starly @@ -12977,12 +10607,6 @@ Shape = Winged Category = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = STARAVIA,Level,14 #------------------------------- [STARAVIA] @@ -13009,12 +10633,6 @@ Shape = Winged Category = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARAPTOR,Level,34 #------------------------------- [STARAPTOR] @@ -13041,12 +10659,6 @@ Shape = Winged Category = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BIDOOF] Name = Bidoof @@ -13072,12 +10684,6 @@ Shape = Quadruped Category = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BIBAREL,Level,15 #------------------------------- [BIBAREL] @@ -13104,12 +10710,6 @@ Shape = BipedalTail Category = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KRICKETOT] Name = Kricketot @@ -13135,12 +10735,6 @@ Category = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KRICKETUNE,Level,10 #------------------------------- [KRICKETUNE] @@ -13167,12 +10761,6 @@ Category = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHINX] Name = Shinx @@ -13198,12 +10786,6 @@ Shape = Quadruped Category = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXIO,Level,15 #------------------------------- [LUXIO] @@ -13229,12 +10811,6 @@ Shape = Quadruped Category = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXRAY,Level,30 #------------------------------- [LUXRAY] @@ -13260,12 +10836,6 @@ Shape = Quadruped Category = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BUDEW] Name = Budew @@ -13293,12 +10863,6 @@ Category = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSELIA,HappinessDay, Incense = ROSEINCENSE #------------------------------- @@ -13327,12 +10891,6 @@ Category = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRANIDOS] Name = Cranidos @@ -13358,12 +10916,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAMPARDOS,Level,30 #------------------------------- [RAMPARDOS] @@ -13389,12 +10941,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHIELDON] Name = Shieldon @@ -13421,12 +10967,6 @@ Shape = Quadruped Category = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BASTIODON,Level,30 #------------------------------- [BASTIODON] @@ -13453,12 +10993,6 @@ Shape = Quadruped Category = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BURMY] Name = Burmy @@ -13485,12 +11019,6 @@ Pokedex = To shelter itself from cold, wintry winds, it covers itself with a clo FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WORMADAM,LevelFemale,20,MOTHIM,LevelMale,20 #------------------------------- [WORMADAM] @@ -13520,12 +11048,6 @@ FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MOTHIM] Name = Mothim @@ -13552,12 +11074,6 @@ Category = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. Generation = 4 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 11 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [COMBEE] Name = Combee @@ -13584,12 +11100,6 @@ Category = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. Generation = 4 WildItemUncommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VESPIQUEN,LevelFemale,21 #------------------------------- [VESPIQUEN] @@ -13617,12 +11127,6 @@ Category = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PACHIRISU] Name = Pachirisu @@ -13648,12 +11152,6 @@ Shape = Quadruped Category = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BUIZEL] Name = Buizel @@ -13679,12 +11177,6 @@ Shape = Quadruped Category = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. Generation = 4 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOATZEL,Level,26 #------------------------------- [FLOATZEL] @@ -13710,12 +11202,6 @@ Shape = Quadruped Category = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHERUBI] Name = Cherubi @@ -13741,12 +11227,6 @@ Category = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHERRIM,Level,25 #------------------------------- [CHERRIM] @@ -13773,12 +11253,6 @@ Pokedex = Its folded petals are pretty tough. Bird Pokémon can peck at them all FormName = Overcast Form Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHELLOS] Name = Shellos @@ -13806,12 +11280,6 @@ Pokedex = This Pokémon's habitat shapes its physique. According to some theorie FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GASTRODON,Level,30 #------------------------------- [GASTRODON] @@ -13840,12 +11308,6 @@ Pokedex = Its search for food sometimes leads it onto land, where it leaves behi FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AMBIPOM] Name = Ambipom @@ -13870,12 +11332,6 @@ Shape = BipedalTail Category = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRIFLOON] Name = Drifloon @@ -13902,12 +11358,6 @@ Shape = HeadArms Category = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRIFBLIM,Level,28 #------------------------------- [DRIFBLIM] @@ -13934,12 +11384,6 @@ Shape = HeadArms Category = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNEARY] Name = Buneary @@ -13965,12 +11409,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOPUNNY,Happiness, #------------------------------- [LOPUNNY] @@ -13996,12 +11434,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISMAGIUS] Name = Mismagius @@ -14025,12 +11457,6 @@ Shape = Head Category = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONCHKROW] Name = Honchkrow @@ -14056,12 +11482,6 @@ Shape = Winged Category = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLAMEOW] Name = Glameow @@ -14087,12 +11507,6 @@ Shape = Quadruped Category = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PURUGLY,Level,38 #------------------------------- [PURUGLY] @@ -14118,12 +11532,6 @@ Shape = Quadruped Category = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHINGLING] Name = Chingling @@ -14149,12 +11557,6 @@ Category = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. Generation = 4 WildItemUncommon = CLEANSETAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHIMECHO,HappinessNight, Incense = PUREINCENSE #------------------------------- @@ -14183,12 +11585,6 @@ Shape = Quadruped Category = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SKUNTANK,Level,34 #------------------------------- [SKUNTANK] @@ -14215,12 +11611,6 @@ Shape = Quadruped Category = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BRONZOR] Name = Bronzor @@ -14247,12 +11637,6 @@ Category = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRONZONG,Level,33 #------------------------------- [BRONZONG] @@ -14280,12 +11664,6 @@ Category = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BONSLY] Name = Bonsly @@ -14311,12 +11689,6 @@ Shape = HeadLegs Category = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUDOWOODO,HasMove,MIMIC Incense = ROCKINCENSE #------------------------------- @@ -14345,12 +11717,6 @@ Shape = Bipedal Category = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MRMIME,HasMove,MIMIC Incense = ODDINCENSE #------------------------------- @@ -14379,12 +11745,6 @@ Category = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. Generation = 4 WildItemCommon = OVALSTONE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANSEY,DayHoldItem,OVALSTONE Incense = LUCKINCENSE #------------------------------- @@ -14414,12 +11774,6 @@ Category = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPIRITOMB] Name = Spiritomb @@ -14446,12 +11800,6 @@ Shape = HeadBase Category = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIBLE] Name = Gible @@ -14478,12 +11826,6 @@ Shape = BipedalTail Category = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GABITE,Level,24 #------------------------------- [GABITE] @@ -14510,12 +11852,6 @@ Shape = BipedalTail Category = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GARCHOMP,Level,48 #------------------------------- [GARCHOMP] @@ -14542,12 +11878,6 @@ Shape = BipedalTail Category = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUNCHLAX] Name = Munchlax @@ -14576,12 +11906,6 @@ Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SNORLAX,Happiness, Incense = FULLINCENSE #------------------------------- @@ -14609,12 +11933,6 @@ Shape = BipedalTail Category = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LUCARIO,HappinessDay, #------------------------------- [LUCARIO] @@ -14641,12 +11959,6 @@ Shape = BipedalTail Category = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HIPPOPOTAS] Name = Hippopotas @@ -14672,12 +11984,6 @@ Shape = Quadruped Category = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HIPPOWDON,Level,34 #------------------------------- [HIPPOWDON] @@ -14703,12 +12009,6 @@ Shape = Quadruped Category = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKORUPI] Name = Skorupi @@ -14736,12 +12036,6 @@ Category = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAPION,Level,40 #------------------------------- [DRAPION] @@ -14769,12 +12063,6 @@ Category = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -11 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROAGUNK] Name = Croagunk @@ -14802,12 +12090,6 @@ Category = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXICROAK,Level,37 #------------------------------- [TOXICROAK] @@ -14835,12 +12117,6 @@ Category = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARNIVINE] Name = Carnivine @@ -14865,12 +12141,6 @@ Shape = Multiped Category = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FINNEON] Name = Finneon @@ -14896,12 +12166,6 @@ Shape = Finned Category = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. Generation = 4 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUMINEON,Level,31 #------------------------------- [LUMINEON] @@ -14927,12 +12191,6 @@ Shape = Finned Category = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. Generation = 4 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTYKE] Name = Mantyke @@ -14959,12 +12217,6 @@ Shape = Winged Category = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANTINE,HasInParty,REMORAID Incense = WAVEINCENSE #------------------------------- @@ -14994,12 +12246,6 @@ Category = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ABOMASNOW,Level,40 #------------------------------- [ABOMASNOW] @@ -15027,12 +12273,6 @@ Category = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WEAVILE] Name = Weavile @@ -15059,12 +12299,6 @@ Category = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. Generation = 4 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGNEZONE] Name = Magnezone @@ -15091,12 +12325,6 @@ Category = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LICKILICKY] Name = Lickilicky @@ -15122,12 +12350,6 @@ Category = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. Generation = 4 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYPERIOR] Name = Rhyperior @@ -15153,12 +12375,6 @@ Shape = BipedalTail Category = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TANGROWTH] Name = Tangrowth @@ -15183,12 +12399,6 @@ Shape = Bipedal Category = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTIVIRE] Name = Electivire @@ -15214,12 +12424,6 @@ Category = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. Generation = 4 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGMORTAR] Name = Magmortar @@ -15245,12 +12449,6 @@ Category = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. Generation = 4 WildItemUncommon = MAGMARIZER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOGEKISS] Name = Togekiss @@ -15276,12 +12474,6 @@ Shape = Winged Category = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YANMEGA] Name = Yanmega @@ -15308,12 +12500,6 @@ Category = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. Generation = 4 WildItemUncommon = WIDELENS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LEAFEON] Name = Leafeon @@ -15338,12 +12524,6 @@ Shape = Quadruped Category = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GLACEON] Name = Glaceon @@ -15368,12 +12548,6 @@ Shape = Quadruped Category = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLISCOR] Name = Gliscor @@ -15399,12 +12573,6 @@ Shape = Winged Category = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAMOSWINE] Name = Mamoswine @@ -15430,12 +12598,6 @@ Shape = Quadruped Category = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGONZ] Name = Porygon-Z @@ -15460,12 +12622,6 @@ Shape = HeadArms Category = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GALLADE] Name = Gallade @@ -15491,12 +12647,6 @@ Shape = Bipedal Category = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PROBOPASS] Name = Probopass @@ -15523,12 +12673,6 @@ Category = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. Generation = 4 WildItemUncommon = MAGNET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUSKNOIR] Name = Dusknoir @@ -15554,12 +12698,6 @@ Category = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. Generation = 4 WildItemUncommon = SPELLTAG -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FROSLASS] Name = Froslass @@ -15585,12 +12723,6 @@ Shape = HeadArms Category = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. Generation = 4 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROTOM] Name = Rotom @@ -15616,12 +12748,6 @@ Category = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom Generation = 4 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [UXIE] Name = Uxie @@ -15645,12 +12771,6 @@ Shape = BipedalTail Category = Knowledge Pokedex = Known as "The Being of Knowledge." It is said that it can wipe out the memory of those who see its eyes. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MESPRIT] Name = Mesprit @@ -15674,12 +12794,6 @@ Shape = BipedalTail Category = Emotion Pokedex = Known as "The Being of Emotion." It taught humans the nobility of sorrow, pain, and joy. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AZELF] Name = Azelf @@ -15703,12 +12817,6 @@ Shape = BipedalTail Category = Willpower Pokedex = Known as "The Being of Willpower." It sleeps at the bottom of a lake to keep the world in balance. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DIALGA] Name = Dialga @@ -15734,12 +12842,6 @@ Shape = Quadruped Category = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PALKIA] Name = Palkia @@ -15765,12 +12867,6 @@ Shape = BipedalTail Category = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HEATRAN] Name = Heatran @@ -15796,12 +12892,6 @@ Shape = Quadruped Category = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIGIGAS] Name = Regigigas @@ -15825,12 +12915,6 @@ Shape = Bipedal Category = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GIRATINA] Name = Giratina @@ -15857,12 +12941,6 @@ Category = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRESSELIA] Name = Cresselia @@ -15886,12 +12964,6 @@ Shape = Serpentine Category = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHIONE] Name = Phione @@ -15915,12 +12987,6 @@ Shape = HeadArms Category = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MANAPHY] Name = Manaphy @@ -15944,12 +13010,6 @@ Shape = Bipedal Category = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DARKRAI] Name = Darkrai @@ -15973,12 +13033,6 @@ Shape = Bipedal Category = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHAYMIN] Name = Shaymin @@ -16006,12 +13060,6 @@ Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCEUS] Name = Arceus @@ -16036,12 +13084,6 @@ Category = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VICTINI] Name = Victini @@ -16066,12 +13108,6 @@ Shape = Bipedal Category = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNIVY] Name = Snivy @@ -16097,12 +13133,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SERVINE,Level,17 #------------------------------- [SERVINE] @@ -16128,12 +13158,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SERPERIOR,Level,36 #------------------------------- [SERPERIOR] @@ -16159,12 +13183,6 @@ Shape = Serpentine Category = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TEPIG] Name = Tepig @@ -16190,12 +13208,6 @@ Shape = Quadruped Category = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIGNITE,Level,17 #------------------------------- [PIGNITE] @@ -16222,12 +13234,6 @@ Shape = BipedalTail Category = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMBOAR,Level,36 #------------------------------- [EMBOAR] @@ -16254,12 +13260,6 @@ Shape = BipedalTail Category = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [OSHAWOTT] Name = Oshawott @@ -16285,12 +13285,6 @@ Shape = BipedalTail Category = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DEWOTT,Level,17 #------------------------------- [DEWOTT] @@ -16316,12 +13310,6 @@ Shape = BipedalTail Category = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SAMUROTT,Level,36 #------------------------------- [SAMUROTT] @@ -16347,12 +13335,6 @@ Shape = Quadruped Category = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PATRAT] Name = Patrat @@ -16378,12 +13360,6 @@ Shape = Quadruped Category = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WATCHOG,Level,20 #------------------------------- [WATCHOG] @@ -16409,12 +13385,6 @@ Shape = BipedalTail Category = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LILLIPUP] Name = Lillipup @@ -16440,12 +13410,6 @@ Shape = Quadruped Category = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HERDIER,Level,16 #------------------------------- [HERDIER] @@ -16471,12 +13435,6 @@ Shape = Quadruped Category = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STOUTLAND,Level,32 #------------------------------- [STOUTLAND] @@ -16502,12 +13460,6 @@ Shape = Quadruped Category = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PURRLOIN] Name = Purrloin @@ -16533,12 +13485,6 @@ Shape = Quadruped Category = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LIEPARD,Level,20 #------------------------------- [LIEPARD] @@ -16564,12 +13510,6 @@ Shape = Quadruped Category = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PANSAGE] Name = Pansage @@ -16595,12 +13535,6 @@ Shape = BipedalTail Category = Grass Monkey Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leaves are known to relieve stress. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISAGE,Item,LEAFSTONE #------------------------------- [SIMISAGE] @@ -16626,12 +13560,6 @@ Shape = BipedalTail Category = Thorn Monkey Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANSEAR] Name = Pansear @@ -16657,12 +13585,6 @@ Shape = BipedalTail Category = High Temp Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600º F. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISEAR,Item,FIRESTONE #------------------------------- [SIMISEAR] @@ -16688,12 +13610,6 @@ Shape = BipedalTail Category = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANPOUR] Name = Panpour @@ -16719,12 +13635,6 @@ Shape = BipedalTail Category = Spray Pokedex = It does not thrive in dry environments. It keeps itself damp by shooting water stored in its head tuft from its tail. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMIPOUR,Item,WATERSTONE #------------------------------- [SIMIPOUR] @@ -16750,12 +13660,6 @@ Shape = BipedalTail Category = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUNNA] Name = Munna @@ -16781,12 +13685,6 @@ Shape = Quadruped Category = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MUSHARNA,Item,MOONSTONE #------------------------------- [MUSHARNA] @@ -16812,12 +13710,6 @@ Shape = Bipedal Category = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. Generation = 5 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDOVE] Name = Pidove @@ -16844,12 +13736,6 @@ Shape = Winged Category = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TRANQUILL,Level,21 #------------------------------- [TRANQUILL] @@ -16876,12 +13762,6 @@ Shape = Winged Category = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = UNFEZANT,Level,32 #------------------------------- [UNFEZANT] @@ -16908,12 +13788,6 @@ Shape = Winged Category = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLITZLE] Name = Blitzle @@ -16939,12 +13813,6 @@ Shape = Quadruped Category = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. Generation = 5 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZEBSTRIKA,Level,27 #------------------------------- [ZEBSTRIKA] @@ -16970,12 +13838,6 @@ Shape = Quadruped Category = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ROGGENROLA] Name = Roggenrola @@ -17003,12 +13865,6 @@ Pokedex = They were discovered a hundred years ago in an earthquake fissure. Ins Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BOLDORE,Level,25 #------------------------------- [BOLDORE] @@ -17036,12 +13892,6 @@ Pokedex = Because its energy was too great to be contained, the energy leaked an Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GIGALITH,Trade, #------------------------------- [GIGALITH] @@ -17069,12 +13919,6 @@ Pokedex = The solar energy absorbed by its body's orange crystals is magnified i Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WOOBAT] Name = Woobat @@ -17101,12 +13945,6 @@ Shape = Winged Category = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWOOBAT,Happiness, #------------------------------- [SWOOBAT] @@ -17133,12 +13971,6 @@ Shape = Winged Category = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRILBUR] Name = Drilbur @@ -17164,12 +13996,6 @@ Shape = BipedalTail Category = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EXCADRILL,Level,31 #------------------------------- [EXCADRILL] @@ -17196,12 +14022,6 @@ Shape = Bipedal Category = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AUDINO] Name = Audino @@ -17229,12 +14049,6 @@ Pokedex = Its auditory sense is astounding. It has a radar-like ability to under Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TIMBURR] Name = Timburr @@ -17260,12 +14074,6 @@ Shape = Bipedal Category = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GURDURR,Level,25 #------------------------------- [GURDURR] @@ -17291,12 +14099,6 @@ Shape = Bipedal Category = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CONKELDURR,Trade, #------------------------------- [CONKELDURR] @@ -17322,12 +14124,6 @@ Shape = Bipedal Category = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYMPOLE] Name = Tympole @@ -17353,12 +14149,6 @@ Shape = Finned Category = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PALPITOAD,Level,25 #------------------------------- [PALPITOAD] @@ -17385,12 +14175,6 @@ Shape = BipedalTail Category = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. Generation = 5 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEISMITOAD,Level,36 #------------------------------- [SEISMITOAD] @@ -17417,12 +14201,6 @@ Shape = Bipedal Category = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THROH] Name = Throh @@ -17448,12 +14226,6 @@ Category = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. Generation = 5 WildItemUncommon = BLACKBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SAWK] Name = Sawk @@ -17479,12 +14251,6 @@ Category = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. Generation = 5 WildItemUncommon = BLACKBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEWADDLE] Name = Sewaddle @@ -17512,12 +14278,6 @@ Category = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWADLOON,Level,20 #------------------------------- [SWADLOON] @@ -17545,12 +14305,6 @@ Category = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEAVANNY,Happiness, #------------------------------- [LEAVANNY] @@ -17578,12 +14332,6 @@ Category = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VENIPEDE] Name = Venipede @@ -17611,12 +14359,6 @@ Category = Centipede Pokedex = It discovers what is going on around it by using the feelers on its head and tail. It is brutally aggresive. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIRLIPEDE,Level,22 #------------------------------- [WHIRLIPEDE] @@ -17644,12 +14386,6 @@ Category = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCOLIPEDE,Level,30 #------------------------------- [SCOLIPEDE] @@ -17677,12 +14413,6 @@ Category = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COTTONEE] Name = Cottonee @@ -17710,12 +14440,6 @@ Category = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIMSICOTT,Item,SUNSTONE #------------------------------- [WHIMSICOTT] @@ -17743,12 +14467,6 @@ Category = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PETILIL] Name = Petilil @@ -17775,12 +14493,6 @@ Category = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LILLIGANT,Item,SUNSTONE #------------------------------- [LILLIGANT] @@ -17807,12 +14519,6 @@ Category = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BASCULIN] Name = Basculin @@ -17841,12 +14547,6 @@ FormName = Red-Striped Generation = 5 Flags = InheritFormFromMother WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDILE] Name = Sandile @@ -17874,12 +14574,6 @@ Category = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. Generation = 5 WildItemUncommon = BLACKGLASSES -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 37 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KROKOROK,Level,29 #------------------------------- [KROKOROK] @@ -17907,12 +14601,6 @@ Category = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. Generation = 5 WildItemUncommon = BLACKGLASSES -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KROOKODILE,Level,40 #------------------------------- [KROOKODILE] @@ -17940,12 +14628,6 @@ Category = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. Generation = 5 WildItemCommon = BLACKGLASSES -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DARUMAKA] Name = Darumaka @@ -17971,12 +14653,6 @@ Shape = Bipedal Category = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARMANITAN,Level,35 #------------------------------- [DARMANITAN] @@ -18003,12 +14679,6 @@ Category = Blazing Pokedex = When weakened in battle, it transforms into a stone statue. Then it sharpens its mind and fights on mentally. FormName = Standard Mode Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MARACTUS] Name = Maractus @@ -18035,12 +14705,6 @@ Category = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. Generation = 5 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DWEBBLE] Name = Dwebble @@ -18068,12 +14732,6 @@ Category = Rock Inn Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon remains agitated until it locates a replacement. Generation = 5 WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRUSTLE,Level,34 #------------------------------- [CRUSTLE] @@ -18101,12 +14759,6 @@ Category = Stone Home Pokedex = It possesses legs of enormous strength, enabling it to carry heavy slabs for many days, even when crossing arid land. Generation = 5 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SCRAGGY] Name = Scraggy @@ -18134,12 +14786,6 @@ Category = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SCRAFTY,Level,39 #------------------------------- [SCRAFTY] @@ -18167,12 +14813,6 @@ Category = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SIGILYPH] Name = Sigilyph @@ -18199,12 +14839,6 @@ Shape = Winged Category = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. Generation = 5 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YAMASK] Name = Yamask @@ -18230,12 +14864,6 @@ Category = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COFAGRIGUS,Level,34 #------------------------------- [COFAGRIGUS] @@ -18261,12 +14889,6 @@ Category = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TIRTOUGA] Name = Tirtouga @@ -18293,12 +14915,6 @@ Shape = Quadruped Category = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CARRACOSTA,Level,37 #------------------------------- [CARRACOSTA] @@ -18325,12 +14941,6 @@ Shape = BipedalTail Category = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARCHEN] Name = Archen @@ -18356,12 +14966,6 @@ Shape = Winged Category = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ARCHEOPS,Level,37 #------------------------------- [ARCHEOPS] @@ -18387,12 +14991,6 @@ Shape = Winged Category = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. Generation = 5 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRUBBISH] Name = Trubbish @@ -18419,12 +15017,6 @@ Category = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. Generation = 5 WildItemUncommon = SILKSCARF -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GARBODOR,Level,36 #------------------------------- [GARBODOR] @@ -18452,12 +15044,6 @@ Pokedex = They absorb garbage and make it part of their bodies. They shoot a poi Generation = 5 WildItemCommon = SILKSCARF WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZORUA] Name = Zorua @@ -18482,12 +15068,6 @@ Shape = Quadruped Category = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZOROARK,Level,30 #------------------------------- [ZOROARK] @@ -18512,12 +15092,6 @@ Shape = BipedalTail Category = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MINCCINO] Name = Minccino @@ -18543,12 +15117,6 @@ Shape = Quadruped Category = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CINCCINO,Item,SHINYSTONE #------------------------------- [CINCCINO] @@ -18574,12 +15142,6 @@ Shape = Quadruped Category = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOTHITA] Name = Gothita @@ -18605,12 +15167,6 @@ Shape = Bipedal Category = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHORITA,Level,32 #------------------------------- [GOTHORITA] @@ -18636,12 +15192,6 @@ Shape = Bipedal Category = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHITELLE,Level,41 #------------------------------- [GOTHITELLE] @@ -18667,12 +15217,6 @@ Shape = Bipedal Category = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLOSIS] Name = Solosis @@ -18698,12 +15242,6 @@ Shape = Head Category = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DUOSION,Level,32 #------------------------------- [DUOSION] @@ -18729,12 +15267,6 @@ Shape = Head Category = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = REUNICLUS,Level,41 #------------------------------- [REUNICLUS] @@ -18760,12 +15292,6 @@ Shape = HeadArms Category = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DUCKLETT] Name = Ducklett @@ -18792,12 +15318,6 @@ Shape = Winged Category = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWANNA,Level,35 #------------------------------- [SWANNA] @@ -18824,12 +15344,6 @@ Shape = Winged Category = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VANILLITE] Name = Vanillite @@ -18856,12 +15370,6 @@ Category = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VANILLISH,Level,35 #------------------------------- [VANILLISH] @@ -18888,12 +15396,6 @@ Category = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VANILLUXE,Level,47 #------------------------------- [VANILLUXE] @@ -18920,12 +15422,6 @@ Category = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. Generation = 5 WildItemCommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEERLING] Name = Deerling @@ -18953,12 +15449,6 @@ Category = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SAWSBUCK,Level,34 #------------------------------- [SAWSBUCK] @@ -18986,12 +15476,6 @@ Category = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EMOLGA] Name = Emolga @@ -19018,12 +15502,6 @@ Shape = Quadruped Category = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARRABLAST] Name = Karrablast @@ -19049,12 +15527,6 @@ Shape = Bipedal Category = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ESCAVALIER,TradeSpecies,SHELMET #------------------------------- [ESCAVALIER] @@ -19081,12 +15553,6 @@ Shape = HeadArms Category = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FOONGUS] Name = Foongus @@ -19115,12 +15581,6 @@ Pokedex = For some reason, this Pokémon resembles a Poké Ball. They release po Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMOONGUSS,Level,39 #------------------------------- [AMOONGUSS] @@ -19149,12 +15609,6 @@ Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémo Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FRILLISH] Name = Frillish @@ -19181,12 +15635,6 @@ Shape = Multiped Category = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = JELLICENT,Level,40 #------------------------------- [JELLICENT] @@ -19213,12 +15661,6 @@ Shape = Multiped Category = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ALOMOMOLA] Name = Alomomola @@ -19244,12 +15686,6 @@ Shape = Finned Category = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [JOLTIK] Name = Joltik @@ -19276,12 +15712,6 @@ Shape = Insectoid Category = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GALVANTULA,Level,36 #------------------------------- [GALVANTULA] @@ -19308,12 +15738,6 @@ Shape = Insectoid Category = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FERROSEED] Name = Ferroseed @@ -19340,12 +15764,6 @@ Category = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FERROTHORN,Level,40 #------------------------------- [FERROTHORN] @@ -19373,12 +15791,6 @@ Category = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLINK] Name = Klink @@ -19403,12 +15815,6 @@ Shape = MultiBody Category = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KLANG,Level,38 #------------------------------- [KLANG] @@ -19434,12 +15840,6 @@ Shape = MultiBody Category = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KLINKLANG,Level,49 #------------------------------- [KLINKLANG] @@ -19465,12 +15865,6 @@ Shape = MultiBody Category = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYNAMO] Name = Tynamo @@ -19494,12 +15888,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTRIK,Level,39 #------------------------------- [EELEKTRIK] @@ -19524,12 +15912,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTROSS,Item,THUNDERSTONE #------------------------------- [EELEKTROSS] @@ -19554,12 +15936,6 @@ Shape = Finned Category = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELGYEM] Name = Elgyem @@ -19585,12 +15961,6 @@ Shape = BipedalTail Category = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEHEEYEM,Level,42 #------------------------------- [BEHEEYEM] @@ -19616,12 +15986,6 @@ Shape = Bipedal Category = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LITWICK] Name = Litwick @@ -19648,12 +16012,6 @@ Shape = HeadBase Category = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAMPENT,Level,41 #------------------------------- [LAMPENT] @@ -19680,12 +16038,6 @@ Shape = HeadArms Category = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANDELURE,Item,DUSKSTONE #------------------------------- [CHANDELURE] @@ -19712,12 +16064,6 @@ Shape = HeadArms Category = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AXEW] Name = Axew @@ -19743,12 +16089,6 @@ Shape = BipedalTail Category = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FRAXURE,Level,38 #------------------------------- [FRAXURE] @@ -19774,12 +16114,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HAXORUS,Level,48 #------------------------------- [HAXORUS] @@ -19805,12 +16139,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CUBCHOO] Name = Cubchoo @@ -19836,12 +16164,6 @@ Shape = BipedalTail Category = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEARTIC,Level,37 #------------------------------- [BEARTIC] @@ -19867,12 +16189,6 @@ Shape = Quadruped Category = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRYOGONAL] Name = Cryogonal @@ -19897,12 +16213,6 @@ Category = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELMET] Name = Shelmet @@ -19928,12 +16238,6 @@ Shape = Head Category = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ACCELGOR,TradeSpecies,KARRABLAST #------------------------------- [ACCELGOR] @@ -19959,12 +16263,6 @@ Shape = HeadArms Category = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [STUNFISK] Name = Stunfisk @@ -19992,12 +16290,6 @@ Category = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. Generation = 5 WildItemUncommon = SOFTSAND -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIENFOO] Name = Mienfoo @@ -20023,12 +16315,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIENSHAO,Level,50 #------------------------------- [MIENSHAO] @@ -20054,12 +16340,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRUDDIGON] Name = Druddigon @@ -20086,12 +16366,6 @@ Category = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. Generation = 5 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOLETT] Name = Golett @@ -20118,12 +16392,6 @@ Category = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLURK,Level,43 #------------------------------- [GOLURK] @@ -20151,12 +16419,6 @@ Category = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PAWNIARD] Name = Pawniard @@ -20183,12 +16445,6 @@ Shape = Bipedal Category = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BISHARP,Level,52 #------------------------------- [BISHARP] @@ -20215,12 +16471,6 @@ Shape = Bipedal Category = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUFFALANT] Name = Bouffalant @@ -20246,12 +16496,6 @@ Shape = Quadruped Category = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RUFFLET] Name = Rufflet @@ -20277,12 +16521,6 @@ Shape = Winged Category = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRAVIARY,Level,54 #------------------------------- [BRAVIARY] @@ -20309,12 +16547,6 @@ Shape = Winged Category = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VULLABY] Name = Vullaby @@ -20341,12 +16573,6 @@ Shape = Winged Category = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANDIBUZZ,Level,54 #------------------------------- [MANDIBUZZ] @@ -20373,12 +16599,6 @@ Shape = Winged Category = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HEATMOR] Name = Heatmor @@ -20404,12 +16624,6 @@ Shape = BipedalTail Category = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DURANT] Name = Durant @@ -20436,12 +16650,6 @@ Shape = Insectoid Category = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEINO] Name = Deino @@ -20467,12 +16675,6 @@ Shape = Quadruped Category = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZWEILOUS,Level,50 #------------------------------- [ZWEILOUS] @@ -20498,12 +16700,6 @@ Shape = Quadruped Category = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HYDREIGON,Level,64 #------------------------------- [HYDREIGON] @@ -20529,12 +16725,6 @@ Shape = BipedalTail Category = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVESTA] Name = Larvesta @@ -20561,12 +16751,6 @@ Shape = Insectoid Category = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VOLCARONA,Level,59 #------------------------------- [VOLCARONA] @@ -20596,12 +16780,6 @@ Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COBALION] Name = Cobalion @@ -20626,12 +16804,6 @@ Shape = Quadruped Category = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TERRAKION] Name = Terrakion @@ -20656,12 +16828,6 @@ Shape = Quadruped Category = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VIRIZION] Name = Virizion @@ -20686,12 +16852,6 @@ Shape = Quadruped Category = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TORNADUS] Name = Tornadus @@ -20717,12 +16877,6 @@ Category = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THUNDURUS] Name = Thundurus @@ -20749,12 +16903,6 @@ Category = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RESHIRAM] Name = Reshiram @@ -20779,12 +16927,6 @@ Shape = Winged Category = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZEKROM] Name = Zekrom @@ -20809,12 +16951,6 @@ Shape = BipedalTail Category = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LANDORUS] Name = Landorus @@ -20841,12 +16977,6 @@ Category = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KYUREM] Name = Kyurem @@ -20871,12 +17001,6 @@ Shape = BipedalTail Category = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KELDEO] Name = Keldeo @@ -20902,12 +17026,6 @@ Category = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELOETTA] Name = Meloetta @@ -20936,12 +17054,6 @@ Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GENESECT] Name = Genesect @@ -20967,12 +17079,6 @@ Category = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHESPIN] Name = Chespin @@ -20998,12 +17104,6 @@ Shape = BipedalTail Category = Spiny Nut Pokedex = The quills on its head are usually soft. When it flexes them, the points become so hard and sharp that they can pierce rock. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = QUILLADIN,Level,16 #------------------------------- [QUILLADIN] @@ -21029,12 +17129,6 @@ Shape = BipedalTail Category = Spiny Armor Pokedex = They strengthen their lower bodies by running into one another. They are very kind and won't start fights. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHESNAUGHT,Level,36 #------------------------------- [CHESNAUGHT] @@ -21061,12 +17155,6 @@ Shape = BipedalTail Category = Spiny Armor Pokedex = Its Tackle is forceful enough to flip a 50-ton tank. It shields its allies from danger with its own body. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FENNEKIN] Name = Fennekin @@ -21092,12 +17180,6 @@ Shape = Quadruped Category = Fox Pokedex = As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRAIXEN,Level,16 #------------------------------- [BRAIXEN] @@ -21123,12 +17205,6 @@ Shape = BipedalTail Category = Fox Pokedex = When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DELPHOX,Level,36 #------------------------------- [DELPHOX] @@ -21155,12 +17231,6 @@ Shape = BipedalTail Category = Fox Pokedex = It gazes into the flame at the tip of its branch to achieve a focused state, which allows it to see into the future. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FROAKIE] Name = Froakie @@ -21186,12 +17256,6 @@ Shape = Quadruped Category = Bubble Frog Pokedex = It protects its skin by covering its body in delicate bubbles. Beneath its happy-go-lucky air, it keeps a watchful eye on its surroundings. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FROGADIER,Level,16 #------------------------------- [FROGADIER] @@ -21217,12 +17281,6 @@ Shape = Bipedal Category = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GRENINJA,Level,36 #------------------------------- [GRENINJA] @@ -21249,12 +17307,6 @@ Shape = Bipedal Category = Ninja Pokedex = It appears and vanishes with a ninja’s grace. It toys with its enemies using swift movements, while slicing them with throwing stars of sharpest water. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNNELBY] Name = Bunnelby @@ -21280,12 +17332,6 @@ Shape = BipedalTail Category = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DIGGERSBY,Level,20 #------------------------------- [DIGGERSBY] @@ -21312,12 +17358,6 @@ Shape = BipedalTail Category = Digging Pokedex = As powerful as an excavator, its ears can reduce dense bedrock to rubble. When it's finished digging, it lounges lazily. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLETCHLING] Name = Fletchling @@ -21344,12 +17384,6 @@ Shape = Winged Category = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLETCHINDER,Level,17 #------------------------------- [FLETCHINDER] @@ -21376,12 +17410,6 @@ Shape = Winged Category = Ember Pokedex = From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TALONFLAME,Level,35 #------------------------------- [TALONFLAME] @@ -21408,12 +17436,6 @@ Shape = Winged Category = Scorching Pokedex = In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCATTERBUG] Name = Scatterbug @@ -21439,12 +17461,6 @@ Shape = Insectoid Category = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SPEWPA,Level,9 #------------------------------- [SPEWPA] @@ -21470,12 +17486,6 @@ Shape = HeadBase Category = Scatterdust Pokedex = It lives hidden within thicket shadows. When predators attack, it quickly bristles the fur covering its body in an effort to threaten them. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIVILLON,Level,12 #------------------------------- [VIVILLON] @@ -21503,12 +17513,6 @@ Category = Scale Pokedex = Vivillon with many different patterns are found all over the world. These patterns are affected by the climate of their habitat. FormName = Archipelago Pattern Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LITLEO] Name = Litleo @@ -21535,12 +17539,6 @@ Shape = Quadruped Category = Lion Cub Pokedex = They set off on their own from their pride and live by themselves to become stronger. These hot-blooded Pokémon are quick to fight. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PYROAR,Level,35 #------------------------------- [PYROAR] @@ -21567,12 +17565,6 @@ Shape = Quadruped Category = Royal Pokedex = With fiery breath of more than 6,000 degrees Celsius, they viciously threaten any challenger. The females protect the pride’s cubs. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLABEBE] Name = Flabébé @@ -21600,12 +17592,6 @@ Pokedex = When it finds a flower it likes, it dwells on that flower its whole li FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOETTE,Level,19 #------------------------------- [FLOETTE] @@ -21633,12 +17619,6 @@ Pokedex = It flutters around fields of flowers and cares for flowers that are st FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLORGES,Item,SHINYSTONE #------------------------------- [FLORGES] @@ -21666,12 +17646,6 @@ Pokedex = It claims exquisite flower gardens as its territory, and it obtains po FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SKIDDO] Name = Skiddo @@ -21697,12 +17671,6 @@ Shape = Quadruped Category = Mount Pokedex = If it has sunshine and water, it doesn't need to eat, because it can generate energy from the leaves on its back. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOGOAT,Level,32 #------------------------------- [GOGOAT] @@ -21728,12 +17696,6 @@ Shape = Quadruped Category = Mount Pokedex = It can tell how its trainer is feeling by subtle shifts in the grip on its horns. This empathetic sense lets them run as if one being. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANCHAM] Name = Pancham @@ -21760,12 +17722,6 @@ Category = Playful Pokedex = It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark. Generation = 6 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PANGORO,LevelDarkInParty,32 #------------------------------- [PANGORO] @@ -21793,12 +17749,6 @@ Category = Daunting Pokedex = It charges ahead and bashes its opponents like a berserker, uncaring about any hits it might take. Its arms are mighty enough to snap a telephone pole. Generation = 6 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FURFROU] Name = Furfrou @@ -21824,12 +17774,6 @@ Category = Poodle Pokedex = Trimming its fluffy fur not only makes it more elegant but also increases the swiftness of its movements. FormName = Natural Form Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPURR] Name = Espurr @@ -21855,12 +17799,6 @@ Shape = BipedalTail Category = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEOWSTIC,Level,25 #------------------------------- [MEOWSTIC] @@ -21887,12 +17825,6 @@ Category = Constraint Pokedex = Revealing the eyelike patterns on the insides of its ears will unleash its psychic powers. It normally keeps the patterns hidden, however. FormName = Male Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONEDGE] Name = Honedge @@ -21918,12 +17850,6 @@ Shape = HeadBase Category = Sword Pokedex = Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DOUBLADE,Level,35 #------------------------------- [DOUBLADE] @@ -21949,12 +17875,6 @@ Shape = MultiBody Category = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AEGISLASH,Item,DUSKSTONE #------------------------------- [AEGISLASH] @@ -21981,12 +17901,6 @@ Category = Royal Sword Pokedex = In this defensive stance, Aegislash uses its steel body and a force field of spectral power to reduce the damage of any attack. FormName = Shield Forme Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPRITZEE] Name = Spritzee @@ -22012,12 +17926,6 @@ Shape = HeadArms Category = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AROMATISSE,TradeItem,SACHET #------------------------------- [AROMATISSE] @@ -22043,12 +17951,6 @@ Shape = Bipedal Category = Fragrance Pokedex = It devises various scents, pleasant and unpleasant, and emits scents that its enemies dislike in order to gain an edge in battle. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SWIRLIX] Name = Swirlix @@ -22074,12 +17976,6 @@ Shape = HeadLegs Category = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLURPUFF,TradeItem,WHIPPEDDREAM #------------------------------- [SLURPUFF] @@ -22105,12 +18001,6 @@ Shape = Bipedal Category = Meringue Pokedex = It can distinguish the faintest of scents. It puts its sensitive sense of smell to use by helping pastry chefs in their work. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [INKAY] Name = Inkay @@ -22137,12 +18027,6 @@ Shape = Multiped Category = Revolving Pokedex = It flashes the light-emitting spots on its body, which drains its opponent's will to fight. It takes the opportunity to scuttle away and hide. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MALAMAR,Level,30 #------------------------------- [MALAMAR] @@ -22169,12 +18053,6 @@ Shape = HeadBase Category = Overturning Pokedex = It lures prey close with hypnotic motions, then wraps its tentacles around it before finishing it off with digestive fluids. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BINACLE] Name = Binacle @@ -22201,12 +18079,6 @@ Shape = MultiBody Category = Two-Handed Pokedex = They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BARBARACLE,Level,39 #------------------------------- [BARBARACLE] @@ -22233,12 +18105,6 @@ Shape = MultiBody Category = Collective Pokedex = Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SKRELP] Name = Skrelp @@ -22265,12 +18131,6 @@ Shape = HeadBase Category = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGALGE,Level,48 #------------------------------- [DRAGALGE] @@ -22297,12 +18157,6 @@ Shape = HeadBase Category = Mock Kelp Pokedex = Their poison is strong enough to eat through the hull of a tanker, and they spit it indiscriminately at anything that enters their territory. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CLAUNCHER] Name = Clauncher @@ -22327,12 +18181,6 @@ Shape = Insectoid Category = Water Gun Pokedex = Through controlled expulsions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLAWITZER,Level,37 #------------------------------- [CLAWITZER] @@ -22357,12 +18205,6 @@ Shape = Serpentine Category = Howitzer Pokedex = By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HELIOPTILE] Name = Helioptile @@ -22389,12 +18231,6 @@ Shape = BipedalTail Category = Generator Pokedex = They make their home in deserts. They can generate their energy from basking in the sun, so eating food is not a requirement. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HELIOLISK,Item,SUNSTONE #------------------------------- [HELIOLISK] @@ -22421,12 +18257,6 @@ Shape = BipedalTail Category = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYRUNT] Name = Tyrunt @@ -22453,12 +18283,6 @@ Shape = BipedalTail Category = Royal Heir Pokedex = Its immense jaws have enough destructive force that it can chew up an automobile. It lived 100 million years ago. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANTRUM,LevelDay,39 #------------------------------- [TYRANTRUM] @@ -22485,12 +18309,6 @@ Shape = BipedalTail Category = Despot Pokedex = Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AMAURA] Name = Amaura @@ -22517,12 +18335,6 @@ Shape = Quadruped Category = Tundra Pokedex = This ancient Pokémon was restored from part of its body that had been frozen in ice for over 100 million years. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AURORUS,LevelNight,39 #------------------------------- [AURORUS] @@ -22549,12 +18361,6 @@ Shape = Quadruped Category = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SYLVEON] Name = Sylveon @@ -22579,12 +18385,6 @@ Shape = Quadruped Category = Intertwining Pokedex = Its ribbonlike feelers give off an aura that weakens hostility in its prey, causing them to let down their guard. Then it attacks. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HAWLUCHA] Name = Hawlucha @@ -22612,12 +18412,6 @@ Category = Wrestling Pokedex = With its wings, it controls its position in the air. It likes to attack from above, a maneuver that is difficult to defend against. Generation = 6 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DEDENNE] Name = Dedenne @@ -22644,12 +18438,6 @@ Shape = BipedalTail Category = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARBINK] Name = Carbink @@ -22675,12 +18463,6 @@ Shape = Head Category = Jewel Pokedex = Born from the high temperatures and pressures deep underground, it defends itself by firing beams from the jewel part of its body. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOOMY] Name = Goomy @@ -22707,12 +18489,6 @@ Category = Soft Tissue Pokedex = Its source of protection is its slimy, germ-laden mucous membrane. Anyone who touches it needs some thorough hand-washing. Generation = 6 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLIGGOO,Level,40 #------------------------------- [SLIGGOO] @@ -22739,12 +18515,6 @@ Category = Soft Tissue Pokedex = This Pokémon's mucous can dissolve anything. Toothless, it sprays mucous on its prey. Once they're nicely dissolved, it slurps them up. Generation = 6 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOODRA,LevelRain,50 #------------------------------- [GOODRA] @@ -22770,12 +18540,6 @@ Shape = BipedalTail Category = Dragon Pokedex = It gets picked on because it's meek. But then, whoever teased it gets to feel the full force of its horns and a good swatting from its thick tail. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLEFKI] Name = Klefki @@ -22802,12 +18566,6 @@ Shape = Head Category = Key Ring Pokedex = It never lets go of a key that it likes, so people give it the keys to vaults and safes as a way to prevent crime. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANTUMP] Name = Phantump @@ -22834,12 +18592,6 @@ Shape = HeadArms Category = Stump Pokedex = These Pokémon are stumps possessed by the spirits of children who died in the forest. Their cries sound like eerie screams. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TREVENANT,Trade, #------------------------------- [TREVENANT] @@ -22866,12 +18618,6 @@ Shape = Multiped Category = Elder Tree Pokedex = Through its roots, it exerts control over other trees. A deadly curse falls upon anyone cutting down trees in forests where Trevenant dwell. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PUMPKABOO] Name = Pumpkaboo @@ -22899,12 +18645,6 @@ Pokedex = When taking spirits to the afterlife, small Pumpkaboo prefer the spiri FormName = Small Size Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOURGEIST,Trade, #------------------------------- [GOURGEIST] @@ -22932,12 +18672,6 @@ Pokedex = Small Gourgeist pretend to be children to fool adults. Anyone who fall FormName = Small Size Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BERGMITE] Name = Bergmite @@ -22963,12 +18697,6 @@ Shape = Quadruped Category = Ice Chunk Pokedex = It blocks opponents' attacks with the ice that shields its body. It uses cold air to repair any cracks with new ice. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AVALUGG,Level,37 #------------------------------- [AVALUGG] @@ -22994,12 +18722,6 @@ Shape = Quadruped Category = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NOIBAT] Name = Noibat @@ -23026,12 +18748,6 @@ Shape = Winged Category = Sound Wave Pokedex = Even a robust wrestler will become dizzy and unable to stand when exposed to its 200,000-hertz ultrasonic waves. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOIVERN,Level,48 #------------------------------- [NOIVERN] @@ -23058,12 +18774,6 @@ Shape = Winged Category = Sound Wave Pokedex = They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [XERNEAS] Name = Xerneas @@ -23088,12 +18798,6 @@ Category = Life Pokedex = Legends say it can share eternal life. It slept for a thousand years in the form of a tree before its revival. FormName = Neutral Mode Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YVELTAL] Name = Yveltal @@ -23118,12 +18822,6 @@ Shape = Winged Category = Destruction Pokedex = When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZYGARDE] Name = Zygarde @@ -23149,12 +18847,6 @@ Category = Order Pokedex = It's thought to be monitoring the ecosystem. There are rumors that even greater power lies hidden within it. FormName = 50% Forme Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIANCIE] Name = Diancie @@ -23179,12 +18871,6 @@ Shape = HeadArms Category = Jewel Pokedex = A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOPA] Name = Hoopa @@ -23210,12 +18896,6 @@ Category = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VOLCANION] Name = Volcanion @@ -23240,12 +18920,6 @@ Shape = Quadruped Category = Steam Pokedex = It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ROWLET] Name = Rowlet @@ -23272,12 +18946,6 @@ Shape = Winged Category = Grass Quill Pokedex = It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARTRIX,Level,17 #------------------------------- [DARTRIX] @@ -23304,12 +18972,6 @@ Shape = Winged Category = Blade Quill Pokedex = A bit of a dandy, it spends its free time preening its wings. Its preoccupation with any dirt on its plumage can leave it unable to battle. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DECIDUEYE,Level,34 #------------------------------- [DECIDUEYE] @@ -23336,12 +18998,6 @@ Shape = Winged Category = Arrow Quill Pokedex = It fires arrow quills from its wings with such precision, they can pierce a pebble at distances over a hundred yards. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LITTEN] Name = Litten @@ -23367,12 +19023,6 @@ Shape = Quadruped Category = Fire Cat Pokedex = Its coat regrows twice a year. When the time comes, Litten sets its own body on fire and burns away the old fur. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TORRACAT,Level,17 #------------------------------- [TORRACAT] @@ -23398,12 +19048,6 @@ Shape = Quadruped Category = Fire Cat Pokedex = It can act spoiled if it grows close to its Trainer. A powerful Pokémon, its sharp claws can leave its Trainer's whole body covered in scratches. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INCINEROAR,Level,34 #------------------------------- [INCINEROAR] @@ -23430,12 +19074,6 @@ Shape = BipedalTail Category = Heel Pokedex = Although it's rough mannered and egotistical, it finds beating down unworthy opponents boring. It gets motivated for stronger opponents. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [POPPLIO] Name = Popplio @@ -23461,12 +19099,6 @@ Shape = Finned Category = Sea Lion Pokedex = This Pokémon snorts body fluids from its nose, blowing balloons to smash into its foes. It's famous for being a hard worker. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRIONNE,Level,17 #------------------------------- [BRIONNE] @@ -23492,12 +19124,6 @@ Shape = Finned Category = Pop Star Pokedex = It gets excited when it sees a dance it doesn't know. This hard worker practices diligently until it can learn that dance. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMARINA,Level,34 #------------------------------- [PRIMARINA] @@ -23524,12 +19150,6 @@ Shape = Finned Category = Soloist Pokedex = It controls its water balloons with song. The melody is learned from others of its kind and is passed down from one generation to the next. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIKIPEK] Name = Pikipek @@ -23557,12 +19177,6 @@ Category = Woodpecker Pokedex = It pecks at trees with its hard beak. You can get some idea of its mood or condition from the rhythm of its pecking. Generation = 7 WildItemUncommon = ORANBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TRUMBEAK,Level,14 #------------------------------- [TRUMBEAK] @@ -23590,12 +19204,6 @@ Category = Bugle Beak Pokedex = It eats berries and stores their seeds in its beak. When it encounters enemies or prey, it fires off all the seeds in a burst. Generation = 7 WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOUCANNON,Level,28 #------------------------------- [TOUCANNON] @@ -23623,12 +19231,6 @@ Category = Cannon Pokedex = They smack beaks with others of their kind to communicate. The strength and number of hits tell each other how they feel. Generation = 7 WildItemUncommon = RAWSTBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YUNGOOS] Name = Yungoos @@ -23655,12 +19257,6 @@ Category = Loitering Pokedex = Its stomach takes up most of its long torso. It's a big eater, so the amount Trainers have to spend on its food is no laughing matter. Generation = 7 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GUMSHOOS,LevelDay,20 #------------------------------- [GUMSHOOS] @@ -23687,12 +19283,6 @@ Category = Stakeout Pokedex = When it finds a trace of its prey, it patiently stakes out the location... but it's always snoozing by nightfall. Generation = 7 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GRUBBIN] Name = Grubbin @@ -23717,12 +19307,6 @@ Shape = Insectoid Category = Larva Pokedex = It spits a sticky thread to stop opponents in their tracks, and then it grabs them in its sharp, sturdy mandibles to take them down. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARJABUG,Level,20 #------------------------------- [CHARJABUG] @@ -23749,12 +19333,6 @@ Category = Battery Pokedex = It buries itself in fallen leaves and barely moves, munching away on humus. If you accidentally step on one, you'll get a shock! Generation = 7 WildItemUncommon = CELLBATTERY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIKAVOLT,Item,THUNDERSTONE #------------------------------- [VIKAVOLT] @@ -23780,12 +19358,6 @@ Shape = Insectoid Category = Stag Beetle Pokedex = It zips around, on sharp lookout for an opening. It concentrates electrical energy within its large jaws and uses it to zap its enemies. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRABRAWLER] Name = Crabrawler @@ -23812,12 +19384,6 @@ Category = Boxing Pokedex = It punches so much, its pincers often come off from overuse, but they grow back quickly. What little meat they contain is rich and delicious. Generation = 7 WildItemUncommon = ASPEARBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRABOMINABLE,LocationFlag,IceRock #------------------------------- [CRABOMINABLE] @@ -23845,12 +19411,6 @@ Category = Woolly Crab Pokedex = It aimed for the top but got lost and ended up on a snowy mountain. Being forced to endure the cold, this Pokémon evolved and grew fur. Generation = 7 WildItemUncommon = CHERIBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ORICORIO] Name = Oricorio @@ -23879,12 +19439,6 @@ FormName = Baile Style Generation = 7 Flags = InheritFormFromMother WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUTIEFLY] Name = Cutiefly @@ -23912,12 +19466,6 @@ Category = Bee Fly Pokedex = It feeds on the nectar and pollen of flowers. Because it's able to sense auras, it can identify which flowers are about to bloom. Generation = 7 WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RIBOMBEE,Level,25 #------------------------------- [RIBOMBEE] @@ -23945,12 +19493,6 @@ Category = Bee Fly Pokedex = Rain makes pollen damp, so Ribombee hates rain. When it sees ominous clouds, it finds a hollow in a tree, where it waits stock-still. Generation = 7 WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ROCKRUFF] Name = Rockruff @@ -23976,12 +19518,6 @@ Shape = Quadruped Category = Puppy Pokedex = This Pokémon has lived with people since times long ago. It can sense when its Trainer is in the dumps and will stick close by its Trainer's side. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LYCANROC,Level,25 #------------------------------- [LYCANROC] @@ -24008,12 +19544,6 @@ Category = Wolf Pokedex = Its quick movements confuse its enemies. Well equipped with claws and fangs, it also uses the sharp rocks in its mane as weapons. FormName = Midday Form Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WISHIWASHI] Name = Wishiwashi @@ -24039,12 +19569,6 @@ Category = Small Fry Pokedex = It's awfully weak and notably tasty, so everyone is always out to get it. As it happens, anyone trying to bully it receives a painful lesson. FormName = Solo Form Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREANIE] Name = Mareanie @@ -24072,12 +19596,6 @@ Category = Brutal Star Pokedex = It plunges the poison spike on its head into its prey. When the prey has weakened, Mareanie deals the finishing blow with its 10 tentacles. Generation = 7 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXAPEX,Level,38 #------------------------------- [TOXAPEX] @@ -24105,12 +19623,6 @@ Category = Brutal Star Pokedex = Those attacked by Toxapex's poison will suffer intense pain for three days and three nights. Post-recovery, there will be some aftereffects. Generation = 7 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUDBRAY] Name = Mudbray @@ -24137,12 +19649,6 @@ Category = Donkey Pokedex = It loves playing in the mud. If it isn't showered with mud on a daily basis, it gets stressed out and stops listening to its Trainer. Generation = 7 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MUDSDALE,Level,30 #------------------------------- [MUDSDALE] @@ -24169,12 +19675,6 @@ Category = Draft Horse Pokedex = It remains calm and unmoving no matter the situation. It mixes dirt with the saliva in its mouth to make a special kind of mud. Generation = 7 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DEWPIDER] Name = Dewpider @@ -24202,12 +19702,6 @@ Category = Water Bubble Pokedex = When two Dewpider meet, they display their water bubbles to each other. Then the one with the smaller bubble gets out of the other's way. Generation = 7 WildItemUncommon = MYSTICWATER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARAQUANID,Level,22 #------------------------------- [ARAQUANID] @@ -24235,12 +19729,6 @@ Category = Water Bubble Pokedex = It delivers headbutts with the water bubble on its head. Small Pokémon get sucked into the bubble, where they drown. Generation = 7 WildItemUncommon = MYSTICWATER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FOMANTIS] Name = Fomantis @@ -24267,12 +19755,6 @@ Category = Sickle Grass Pokedex = When the sun rises, Fomantis spreads its four leaves and bathes in the sunlight. The tip of its head has a pleasant aroma. Generation = 7 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LURANTIS,LevelDay,34 #------------------------------- [LURANTIS] @@ -24299,12 +19781,6 @@ Category = Bloom Sickle Pokedex = It requires a lot of effort to maintain Lurantis's vivid coloring, but some collectors enjoy this work and treat it as their hobby. Generation = 7 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MORELULL] Name = Morelull @@ -24333,12 +19809,6 @@ Pokedex = It scatters its shining spores around itself. Even though they're dang Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHIINOTIC,Level,24 #------------------------------- [SHIINOTIC] @@ -24367,12 +19837,6 @@ Pokedex = It puts its prey to sleep and siphons off their vitality through the t Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SALANDIT] Name = Salandit @@ -24400,12 +19864,6 @@ Category = Toxic Lizard Pokedex = It burns its bodily fluids to create a poisonous gas. When its enemies become disoriented from inhaling the gas, it attacks them. Generation = 7 WildItemUncommon = SMOKEBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SALAZZLE,LevelFemale,33 #------------------------------- [SALAZZLE] @@ -24433,12 +19891,6 @@ Category = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. Generation = 7 WildItemUncommon = SMOKEBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STUFFUL] Name = Stufful @@ -24465,12 +19917,6 @@ Shape = Quadruped Category = Flailing Pokedex = Despite its adorable appearance, when it gets angry and flails about, its arms and legs could knock a pro wrestler sprawling. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEWEAR,Level,27 #------------------------------- [BEWEAR] @@ -24497,12 +19943,6 @@ Shape = BipedalTail Category = Strong Arm Pokedex = It waves its hands wildly in intimidation and warning. Life is over for anyone who doesn't run away as fast as possible. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUNSWEET] Name = Bounsweet @@ -24529,12 +19969,6 @@ Category = Fruit Pokedex = Because of its sweet, delicious aroma, bird Pokémon are always after it, but it's not intelligent enough to care. Generation = 7 WildItemUncommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STEENEE,Level,18 #------------------------------- [STEENEE] @@ -24561,12 +19995,6 @@ Category = Fruit Pokedex = It's protected by its hard sepals, so it plays with bird Pokémon without worry. They peck it relentlessly, but it doesn't care. Generation = 7 WildItemUncommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TSAREENA,HasMove,STOMP #------------------------------- [TSAREENA] @@ -24593,12 +20021,6 @@ Category = Fruit Pokedex = A Pokémon with an aggressive personality and a mastery of kicking, it cackles every time it kicks an opponent. Generation = 7 WildItemCommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [COMFEY] Name = Comfey @@ -24625,12 +20047,6 @@ Category = Posy Picker Pokedex = Baths prepared with the flowers from its vine have a relaxing effect, so this Pokémon is a hit with many people. Generation = 7 WildItemUncommon = MISTYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ORANGURU] Name = Oranguru @@ -24657,12 +20073,6 @@ Shape = Bipedal Category = Sage Pokedex = It normally spends its time meditating in the treetops. It throws Poké Balls and gives other Pokémon orders as it pleases. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PASSIMIAN] Name = Passimian @@ -24688,12 +20098,6 @@ Shape = BipedalTail Category = Teamwork Pokedex = Berries are its weapons as well as the staple of its diet. The one that can throw a berry the farthest is the boss of the troop. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WIMPOD] Name = Wimpod @@ -24719,12 +20123,6 @@ Shape = Multiped Category = Turn Tail Pokedex = This Pokémon is a coward. As it desperately dashes off, the flailing of its many legs leaves a sparkling clean path in its wake. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLISOPOD,Level,30 #------------------------------- [GOLISOPOD] @@ -24750,12 +20148,6 @@ Shape = Bipedal Category = Hard Scale Pokedex = It battles skillfully with its six arms, but spends most of its time peacefully meditating in caves deep beneath the sea. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDYGAST] Name = Sandygast @@ -24783,12 +20175,6 @@ Category = Sand Heap Pokedex = It likes the shovel on its head, so Sandygast will get serious and fight any children who come to take it back. Generation = 7 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PALOSSAND,Level,42 #------------------------------- [PALOSSAND] @@ -24816,12 +20202,6 @@ Category = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. Generation = 7 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PYUKUMUKU] Name = Pyukumuku @@ -24847,12 +20227,6 @@ Shape = Serpentine Category = Sea Cucumber Pokedex = It lives in shallow seas, such as areas near a beach. It can eject its internal organs, which it uses to engulf its prey or battle enemies. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYPENULL] Name = Type: Null @@ -24876,12 +20250,6 @@ Shape = Quadruped Category = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SILVALLY,Happiness, #------------------------------- [SILVALLY] @@ -24907,12 +20275,6 @@ Category = Synthetic Pokedex = Its trust in its partner is what awakens it. This Pokémon is capable of changing its type, a flexibility that is well displayed in battle. FormName = Type: Normal Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MINIOR] Name = Minior @@ -24939,12 +20301,6 @@ Pokedex = Originally making its home in the ozone layer, it hurtles to the groun FormName = Meteor Form Generation = 7 WildItemUncommon = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KOMALA] Name = Komala @@ -24969,12 +20325,6 @@ Shape = Bipedal Category = Drowsing Pokedex = It remains asleep from birth to death as a result of the sedative properties of the leaves that form its diet. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTONATOR] Name = Turtonator @@ -25001,12 +20351,6 @@ Category = Blast Turtle Pokedex = It lives in volcanoes and eats sulfur and other minerals. Materials from the food it eats form the basis of its explosive shell. Generation = 7 WildItemUncommon = CHARCOAL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TOGEDEMARU] Name = Togedemaru @@ -25034,12 +20378,6 @@ Category = Roly-Poly Pokedex = The long hairs on its back act as lightning rods. The bolts of lightning it attracts are stored as energy in its electric sac. Generation = 7 WildItemUncommon = ELECTRICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIMIKYU] Name = Mimikyu @@ -25067,12 +20405,6 @@ Pokedex = A lonely Pokémon, it conceals its terrifying appearance beneath an ol FormName = Disguised Form Generation = 7 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BRUXISH] Name = Bruxish @@ -25100,12 +20432,6 @@ Category = Gnash Teeth Pokedex = When it unleashes its psychic power from the protuberance on its head, the grating sound of grinding teeth echoes through the area. Generation = 7 WildItemUncommon = RAZORFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRAMPA] Name = Drampa @@ -25133,12 +20459,6 @@ Category = Placid Pokedex = This Pokémon is friendly to people and loves children most of all. It comes from deep in the mountains to play with children it likes in town. Generation = 7 WildItemUncommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DHELMISE] Name = Dhelmise @@ -25163,12 +20483,6 @@ Shape = HeadBase Category = Sea Creeper Pokedex = The soul of seaweed adrift in the waves became reborn as this Pokémon. It maintains itself with new infusions of seabed detritus and seaweed. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JANGMOO] Name = Jangmo-o @@ -25195,12 +20509,6 @@ Category = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. Generation = 7 WildItemUncommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAKAMOO,Level,35 #------------------------------- [HAKAMOO] @@ -25228,12 +20536,6 @@ Category = Scaly Pokedex = It sheds and regrows its scales on a continuous basis. The scales become harder and sharper each time they're regrown. Generation = 7 WildItemUncommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KOMMOO,Level,45 #------------------------------- [KOMMOO] @@ -25261,12 +20563,6 @@ Category = Scaly Pokedex = Its rigid scales function as offense and defense. In the past, its scales were processed and used to make weapons and other commodities. Generation = 7 WildItemCommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUKOKO] Name = Tapu Koko @@ -25292,12 +20588,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPULELE] Name = Tapu Lele @@ -25323,12 +20613,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = As it flutters about, it scatters its strangely glowing scales. Touching them is said to restore good health on the spot. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUBULU] Name = Tapu Bulu @@ -25354,12 +20638,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = It pulls large trees up by the roots and swings them around. It causes vegetation to grow, and then it absorbs energy from the growth. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUFINI] Name = Tapu Fini @@ -25385,12 +20663,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = The dense fog it creates brings the downfall and destruction of its confused enemies. Ocean currents are the source of its energy. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [COSMOG] Name = Cosmog @@ -25413,12 +20685,6 @@ Shape = Head Category = Nebula Pokedex = Whether or not it's a Pokémon from this world is a mystery. When it's in a jam, it warps away to a safe place to hide. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = COSMOEM,Level,43 #------------------------------- [COSMOEM] @@ -25443,12 +20709,6 @@ Shape = Head Category = Protostar Pokedex = Motionless as if dead, its body is faintly warm to the touch. In the distant past, it was called the cocoon of the stars. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SOLGALEO,LevelDay,53,LUNALA,LevelNight,53 #------------------------------- [SOLGALEO] @@ -25474,12 +20734,6 @@ Shape = Quadruped Category = Sunne Pokedex = It is said to live in another world. The intense light it radiates from the surface of its body can make the darkest of nights light up like midday. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LUNALA] Name = Lunala @@ -25504,12 +20758,6 @@ Shape = Winged Category = Moone Pokedex = Said to live in another world, this Pokémon devours light, drawing the moonless dark veil of night over the brightness of day. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NIHILEGO] Name = Nihilego @@ -25534,12 +20782,6 @@ Shape = Multiped Category = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUZZWOLE] Name = Buzzwole @@ -25564,12 +20806,6 @@ Shape = Multiped Category = Swollen Pokedex = This Ultra Beast appeared from another world. It shows off its body, but whether that display is a boast or a threat remains unclear. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHEROMOSA] Name = Pheromosa @@ -25594,12 +20830,6 @@ Shape = Bipedal Category = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [XURKITREE] Name = Xurkitree @@ -25623,12 +20853,6 @@ Shape = BipedalTail Category = Glowing Pokedex = One of the mysterious life-forms known as Ultra Beasts. Astonishing electric shocks emanate from its entire body, according to witnesses. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELESTEELA] Name = Celesteela @@ -25653,12 +20877,6 @@ Shape = Bipedal Category = Launch Pokedex = One kind of Ultra Beast. Witnesses have seen it burn down a forest by expelling gas from its two arms. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARTANA] Name = Kartana @@ -25683,12 +20901,6 @@ Shape = Bipedal Category = Drawn Sword Pokedex = One of the Ultra Beast life-forms, it was observed cutting down a gigantic steel tower with one stroke of its blade. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GUZZLORD] Name = Guzzlord @@ -25713,12 +20925,6 @@ Shape = BipedalTail Category = Junkivore Pokedex = A dangerous Ultra Beast, it appears to be eating constantly, but for some reason its droppings have never been found. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NECROZMA] Name = Necrozma @@ -25742,12 +20948,6 @@ Shape = HeadArms Category = Prism Pokedex = Light is apparently the source of its energy. It has an extraordinarily vicious disposition and is constantly firing off laser beams. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGEARNA] Name = Magearna @@ -25772,12 +20972,6 @@ Shape = Bipedal Category = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARSHADOW] Name = Marshadow @@ -25802,12 +20996,6 @@ Shape = Bipedal Category = Gloomdweller Pokedex = Able to conceal itself in shadows, it never appears before humans, so its very existence was the stuff of myth. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [POIPOLE] Name = Poipole @@ -25831,12 +21019,6 @@ Shape = BipedalTail Category = Poison Pin Pokedex = An Ultra Beast that lives in a different world, it cackles wildly as it sprays its opponents with poison from the needles on its head. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NAGANADEL,HasMove,DRAGONPULSE #------------------------------- [NAGANADEL] @@ -25862,12 +21044,6 @@ Shape = Winged Category = Poison Pin Pokedex = One kind of Ultra Beast, it fires a glowing, venomous liquid from its needles. This liquid is also immensely adhesive. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STAKATAKA] Name = Stakataka @@ -25892,12 +21068,6 @@ Shape = Quadruped Category = Rampart Pokedex = When stone walls started moving and attacking, the brute's true identity was this mysterious life-form, which brings to mind an Ultra Beast. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLACEPHALON] Name = Blacephalon @@ -25922,12 +21092,6 @@ Shape = Bipedal Category = Fireworks Pokedex = It slithers toward people. Then, without warning, it triggers the explosion of its own head. It's apparently one kind of Ultra Beast. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZERAORA] Name = Zeraora @@ -25951,12 +21115,6 @@ Shape = Bipedal Category = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELTAN] Name = Meltan @@ -25980,12 +21138,6 @@ Shape = Head Category = Hex Nut Pokedex = It melts particles of iron and other metals found in the subsoil, so it can absorb them into its body of molten steel. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MELMETAL,Level,45 #------------------------------- [MELMETAL] @@ -26010,12 +21162,6 @@ Shape = Bipedal Category = Hex Nut Pokedex = Revered long ago for its capacity to create iron from nothing, for some reason it has come back to life after 3,000 years. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GROOKEY] Name = Grookey @@ -26041,12 +21187,6 @@ Shape = BipedalTail Category = Chimp Pokedex = When it uses its special stick to strike up a beat, the sound waves produced carry revitalizing energy to the plants and flowers in the area. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = THWACKEY,Level,16 #------------------------------- [THWACKEY] @@ -26072,12 +21212,6 @@ Shape = BipedalTail Category = Beat Pokedex = When it's drumming out rapid beats in battle, it gets so caught up in the rhythm that it won't even notice that it's already knocked out its opponent. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RILLABOOM,Level,35 #------------------------------- [RILLABOOM] @@ -26103,12 +21237,6 @@ Shape = Bipedal Category = Drummer Pokedex = By drumming, it taps into the power of its special tree stump. The roots of the stump follow its direction in battle. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SCORBUNNY] Name = Scorbunny @@ -26134,12 +21262,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = A warm-up of running around gets fire energy coursing through this Pokémon's body. Once that happens, it's ready to fight at full power. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RABOOT,Level,16 #------------------------------- [RABOOT] @@ -26165,12 +21287,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = It kicks berries right off the branches of trees and then juggles them with its feet, practicing its footwork. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CINDERACE,Level,35 #------------------------------- [CINDERACE] @@ -26196,12 +21312,6 @@ Shape = BipedalTail Category = Striker Pokedex = It juggles a pebble with its feet, turning it into a burning soccer ball. Its shots strike opponents hard and leave them scorched. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SOBBLE] Name = Sobble @@ -26227,12 +21337,6 @@ Shape = Quadruped Category = Water Lizard Pokedex = When scared, this Pokémon cries. Its tears pack the chemical punch of 100 onions, and attackers won't be able to resist weeping. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRIZZILE,Level,16 #------------------------------- [DRIZZILE] @@ -26258,12 +21362,6 @@ Shape = BipedalTail Category = Water Lizard Pokedex = A clever combatant, this Pokémon battles using water balloons created with moisture secreted from its palms. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = INTELEON,Level,35 #------------------------------- [INTELEON] @@ -26289,12 +21387,6 @@ Shape = BipedalTail Category = Secret Agent Pokedex = It has many hidden capabilities, such as fingertips that can shoot water and a membrane on its back that it can use to glide through the air. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SKWOVET] Name = Skwovet @@ -26321,12 +21413,6 @@ Category = Cheeky Pokedex = It eats berries nonstop—a habit that has made it more resilient than it looks. It'll show up on farms, searching for yet more berries. Generation = 8 WildItemUncommon = ORANBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GREEDENT,Level,24 #------------------------------- [GREEDENT] @@ -26353,12 +21439,6 @@ Category = Greedy Pokedex = It stashes berries in its tail - so many berries that they fall out constantly. But this Pokémon is a bit slow-witted, so it doesn't notice the loss. Generation = 8 WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROOKIDEE] Name = Rookidee @@ -26384,12 +21464,6 @@ Shape = Winged Category = Tiny Bird Pokedex = Jumping nimbly about, this small-bodied Pokémon takes advantage of even the slightest opportunity to disorient larger opponents. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CORVISQUIRE,Level,18 #------------------------------- [CORVISQUIRE] @@ -26415,12 +21489,6 @@ Shape = Winged Category = Raven Pokedex = Smart enough to use tools in battle, these Pokémon have been seen picking up rocks and flinging them or using ropes to wrap up enemies. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CORVIKNIGHT,Level,38 #------------------------------- [CORVIKNIGHT] @@ -26447,12 +21515,6 @@ Shape = Winged Category = Raven Pokedex = This Pokémon reigns supreme in the skies. The black luster of its steel body could drive terror into the heart of any foe. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BLIPBUG] Name = Blipbug @@ -26477,12 +21539,6 @@ Shape = Insectoid Category = Larva Pokedex = Often found in gardens, this Pokémon has hairs on its body that it uses to assess its surroundings. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DOTTLER,Level,10 #------------------------------- [DOTTLER] @@ -26510,12 +21566,6 @@ Category = Radome Pokedex = It barely moves, but it's still alive. Hiding in its shell without food or water seems to have awakened its psychic powers. Generation = 8 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ORBEETLE,Level,30 #------------------------------- [ORBEETLE] @@ -26543,12 +21593,6 @@ Category = Seven Spot Pokedex = It's famous for its high level of intelligence, and the large size of its brain is proof that it also possesses immense psychic power. Generation = 8 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [NICKIT] Name = Nickit @@ -26574,12 +21618,6 @@ Shape = Quadruped Category = Fox Pokedex = Aided by the soft pads on its feet, it silently raids the food stores of other Pokémon. It survives off its ill-gotten gains. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = THIEVUL,Level,18 #------------------------------- [THIEVUL] @@ -26605,12 +21643,6 @@ Shape = Quadruped Category = Fox Pokedex = It secretly marks potential targets with a scent. By following the scent, it stalks its targets and steals from them when they least expect it. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GOSSIFLEUR] Name = Gossifleur @@ -26636,12 +21668,6 @@ Shape = HeadBase Category = Flowering Pokedex = It anchors itself in the ground with its single leg, then basks in the sun. After absorbing enough sunlight, its petals spread as it blooms brilliantly. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ELDEGOSS,Level,20 #------------------------------- [ELDEGOSS] @@ -26667,12 +21693,6 @@ Shape = HeadBase Category = Cotton Bloom Pokedex = The seeds attached to its cotton fluff are full of nutrients. It spreads them on the wind so that plants and other Pokémon can benefit from them. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [WOOLOO] Name = Wooloo @@ -26698,12 +21718,6 @@ Shape = Quadruped Category = Sheep Pokedex = Its curly fleece is such an effective cushion that this Pokémon could fall off a cliff and stand right back up at the bottom, unharmed. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DUBWOOL,Level,24 #------------------------------- [DUBWOOL] @@ -26729,12 +21743,6 @@ Shape = Quadruped Category = Sheep Pokedex = Its majestic horns are meant only to impress the opposite gender. They never see use in battle. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CHEWTLE] Name = Chewtle @@ -26760,12 +21768,6 @@ Shape = Quadruped Category = Snapping Pokedex = It starts off battles by attacking with its rock-hard horn, but as soon as the opponent flinches, this Pokémon bites down and never lets go. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DREDNAW,Level,22 #------------------------------- [DREDNAW] @@ -26792,12 +21794,6 @@ Shape = Quadruped Category = Bite Pokedex = With jaws that can shear through steel rods, this highly aggressive Pokémon chomps down on its unfortunate prey. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [YAMPER] Name = Yamper @@ -26823,12 +21819,6 @@ Shape = Quadruped Category = Puppy Pokedex = This gluttonous Pokémon only assists people with their work because it wants treats. As it runs, it crackles with electricity. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BOLTUND,Level,25 #------------------------------- [BOLTUND] @@ -26854,12 +21844,6 @@ Shape = Quadruped Category = Dog Pokedex = This Pokémon generates electricity and channels it into its legs to keep them going strong. Boltund can run nonstop for three full days. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROLYCOLY] Name = Rolycoly @@ -26885,12 +21869,6 @@ Shape = Head Category = Coal Pokedex = Most of its body has the same composition as coal. Fittingly, this Pokémon was first discovered in coal mines about 400 years ago. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CARKOL,Level,18 #------------------------------- [CARKOL] @@ -26917,12 +21895,6 @@ Shape = HeadLegs Category = Coal Pokedex = By rapidly rolling its legs, it can travel at over 18 mph. The temperature of the flames it breathes exceeds 1,000 degrees Celsius. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COALOSSAL,Level,34 #------------------------------- [COALOSSAL] @@ -26949,12 +21921,6 @@ Shape = Bipedal Category = Coal Pokedex = While it's engaged in battle, its mountain of coal will burn bright red, sending off sparks that scorch the surrounding area. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [APPLIN] Name = Applin @@ -26981,12 +21947,6 @@ Shape = Serpentine Category = Apple Core Pokedex = It spends its entire life inside an apple. It hides from its natural enemies, bird Pokémon, by pretending it's just an apple and nothing more. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FLAPPLE,Item,TARTAPPLE,APPLETUN,Item,SWEETAPPLE #------------------------------- [FLAPPLE] @@ -27013,12 +21973,6 @@ Shape = Winged Category = Apple Wing Pokedex = It ate a sour apple, and that induced its evolution. In its cheeks, it stores an acid capable of causing chemical burns. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [APPLETUN] Name = Appletun @@ -27044,12 +21998,6 @@ Shape = Quadruped Category = Apple Nectar Pokedex = Its body is covered in sweet nectar, and the skin on its back is especially yummy. Children used to have it as a snack. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SILICOBRA] Name = Silicobra @@ -27075,12 +22023,6 @@ Shape = Serpentine Category = Sand Snake Pokedex = It spews sand from its nostrils. While the enemy is blinded, it burrows into the ground to hide. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SANDACONDA,Level,36 #------------------------------- [SANDACONDA] @@ -27106,12 +22048,6 @@ Shape = Serpentine Category = Sand Snake Pokedex = Its unique style of coiling allows it to blast sand out of its sand sac more efficiently. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CRAMORANT] Name = Cramorant @@ -27137,12 +22073,6 @@ Shape = Winged Category = Gulp Pokedex = It's so strong that it can knock out some opponents in a single hit, but it also may forget what it's battling midfight. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARROKUDA] Name = Arrokuda @@ -27168,12 +22098,6 @@ Shape = Finned Category = Rush Pokedex = If it sees any movement around it, this Pokémon charges for it straightaway, leading with its sharply pointed jaw. It's very proud of that jaw. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BARRASKEWDA,Level,26 #------------------------------- [BARRASKEWDA] @@ -27199,12 +22123,6 @@ Shape = Finned Category = Skewer Pokedex = This Pokémon has a jaw that's as sharp as a spear and as strong as steel. Apparently Barraskewda's flesh is surprisingly tasty, too. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TOXEL] Name = Toxel @@ -27231,12 +22149,6 @@ Shape = BipedalTail Category = Baby Pokedex = It manipulates the chemical makeup of its poison to produce electricity. The voltage is weak, but it can cause a tingling paralysis. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOXTRICITY,Level,30 #------------------------------- [TOXTRICITY] @@ -27264,12 +22176,6 @@ Category = Punk Pokedex = When this Pokémon sounds as if it's strumming a guitar, it's actually clawing at the protrusions on its chest to generate electricity. FormName = Amped Form Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SIZZLIPEDE] Name = Sizzlipede @@ -27296,12 +22202,6 @@ Shape = Multiped Category = Radiator Pokedex = It stores flammable gas in its body and uses it to generate heat. The yellow sections on its belly get particularly hot. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CENTISKORCH,Level,28 #------------------------------- [CENTISKORCH] @@ -27328,12 +22228,6 @@ Shape = Multiped Category = Radiator Pokedex = While its burning body is already dangerous on its own, this excessively hostile Pokémon also has large and very sharp fangs. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CLOBBOPUS] Name = Clobbopus @@ -27359,12 +22253,6 @@ Shape = Multiped Category = Tantrum Pokedex = It's very curious, but its means of investigating things is to try to punch them with its tentacles. The search for food is what brings it onto land. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRAPPLOCT,HasMove,TAUNT #------------------------------- [GRAPPLOCT] @@ -27390,12 +22278,6 @@ Shape = Multiped Category = Jujitsu Pokedex = A body made up of nothing but muscle makes the grappling moves this Pokémon performs with its tentacles tremendously powerful. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SINISTEA] Name = Sinistea @@ -27421,12 +22303,6 @@ Category = Black Tea Pokedex = The teacup in which this Pokémon makes its home is a famous piece of antique tableware. Many forgeries are in circulation. FormName = Phony Form Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = POLTEAGEIST,Item,CRACKEDPOT #------------------------------- [POLTEAGEIST] @@ -27453,12 +22329,6 @@ Category = Black Tea Pokedex = This species lives in antique teapots. Most pots are forgeries, but on rare occasions, an authentic work is found. FormName = Phony Form Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [HATENNA] Name = Hatenna @@ -27484,12 +22354,6 @@ Shape = HeadLegs Category = Calm Pokedex = Via the protrusion on its head, it senses other creatures' emotions. If you don't have a calm disposition, it will never warm up to you. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HATTREM,Level,32 #------------------------------- [HATTREM] @@ -27515,12 +22379,6 @@ Shape = Bipedal Category = Serene Pokedex = Using the braids on its head, it pummels foes to get them to quiet down. One blow from those braids would knock out a professional boxer. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HATTERENE,Level,42 #------------------------------- [HATTERENE] @@ -27547,12 +22405,6 @@ Shape = HeadBase Category = Silent Pokedex = It emits psychic power strong enough to cause headaches as a deterrent to the approach of others. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [IMPIDIMP] Name = Impidimp @@ -27578,12 +22430,6 @@ Shape = Bipedal Category = Wily Pokedex = Through its nose, it sucks in the emanations produced by people and Pokémon when they feel annoyed. It thrives off this negative energy. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MORGREM,Level,32 #------------------------------- [MORGREM] @@ -27610,12 +22456,6 @@ Shape = Bipedal Category = Devious Pokedex = With sly cunning, it tries to lure people into the woods. Some believe it to have the power to make crops grow. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRIMMSNARL,Level,42 #------------------------------- [GRIMMSNARL] @@ -27642,12 +22482,6 @@ Shape = Bipedal Category = Bulk Up Pokedex = Its hairs work like muscle fibers. When its hairs unfurl, they latch on to opponents, ensnaring them as tentacles would. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [OBSTAGOON] Name = Obstagoon @@ -27675,12 +22509,6 @@ Category = Blocking Pokedex = It evolved after experiencing numerous fights. While crossing its arms, it lets out a shout that would make any opponent flinch. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [PERRSERKER] Name = Perrserker @@ -27707,12 +22535,6 @@ Category = Viking Pokedex = What appears to be an iron helmet is actually hardened hair. This Pokémon lives for the thrill of battle. Generation = 8 Flags = DefaultForm2,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CURSOLA] Name = Cursola @@ -27739,12 +22561,6 @@ Category = Coral Pokedex = Its shell is overflowing with its heightened otherworldly energy. The ectoplasm serves as protection for this Pokémon's core spirit. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SIRFETCHD] Name = Sirfetch'd @@ -27772,12 +22588,6 @@ Pokedex = After deflecting attacks with its hard leaf shield, it strikes back wi Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone WildItemUncommon = LEEK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MRRIME] Name = Mr. Rime @@ -27805,12 +22615,6 @@ Category = Comedian Pokedex = Its amusing movements make it very popular. It releases its psychic power from the pattern on its belly. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [RUNERIGUS] Name = Runerigus @@ -27837,12 +22641,6 @@ Category = Grudge Pokedex = A powerful curse was woven into an ancient painting. After absorbing the spirit of a Yamask, the painting began to move. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MILCERY] Name = Milcery @@ -27868,12 +22666,6 @@ Shape = Head Category = Cream Pokedex = This Pokémon was born from sweet-smelling particles in the air. Its body is made of cream. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ALCREMIE,HoldItem,STRAWBERRYSWEET,ALCREMIE,HoldItem,BERRYSWEET,ALCREMIE,HoldItem,LOVESWEET,ALCREMIE,HoldItem,STARSWEET,ALCREMIE,HoldItem,CLOVERSWEET,ALCREMIE,HoldItem,FLOWERSWEET,ALCREMIE,HoldItem,RIBBONSWEET #------------------------------- [ALCREMIE] @@ -27900,12 +22692,6 @@ Category = Cream Pokedex = When Alcremie is content, the cream it secretes from its hands becomes sweeter and richer. FormName = Vanilla Cream Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [FALINKS] Name = Falinks @@ -27930,12 +22716,6 @@ Shape = MultiBody Category = Formation Pokedex = The six of them work together as one Pokémon. Teamwork is also their battle strategy, and they constantly change their formation as they fight. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [PINCURCHIN] Name = Pincurchin @@ -27961,12 +22741,6 @@ Shape = Multiped Category = Sea Urchin Pokedex = It stores electricity in each spine. Even if one gets broken off, it still continues to emit electricity for at least three hours. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SNOM] Name = Snom @@ -27994,12 +22768,6 @@ Category = Worm Pokedex = It spits out thread imbued with a frigid sort of energy and uses it to tie its body to branches, disguising itself as an icicle while it sleeps. Generation = 8 WildItemUncommon = SNOWBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FROSMOTH,HappinessNight, #------------------------------- [FROSMOTH] @@ -28026,12 +22794,6 @@ Shape = MultiWinged Category = Frost Moth Pokedex = It shows no mercy to any who desecrate fields and mountains. It will fly around on its icy wings, causing a blizzard to chase offenders away. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [STONJOURNER] Name = Stonjourner @@ -28056,12 +22818,6 @@ Shape = HeadLegs Category = Big Rock Pokedex = Once a year, on a specific date and at a specific time, they gather out of nowhere and form up in a circle. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [EISCUE] Name = Eiscue @@ -28087,12 +22843,6 @@ Category = Penguin Pokedex = It drifted in on the flow of ocean waters from a frigid place. It keeps its head iced constantly to make sure it stays nice and cold. FormName = Ice Face Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [INDEEDEE] Name = Indeedee @@ -28120,12 +22870,6 @@ Category = Emotion Pokedex = It uses the horns on its head to sense the emotions of others. Males will act as valets for those they serve, looking after their every need. FormName = Male Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MORPEKO] Name = Morpeko @@ -28152,12 +22896,6 @@ Category = Two-Sided Pokedex = As it eats the seeds stored up in its pocket-like pouches, this Pokémon is not just satisfying its constant hunger. It's also generating electricity. FormName = Full Belly Mode Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CUFANT] Name = Cufant @@ -28184,12 +22922,6 @@ Category = Copperderm Pokedex = It digs up the ground with its trunk. It's also very strong, being able to carry loads of over five tons without any problem at all. Generation = 8 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COPPERAJAH,Level,34 #------------------------------- [COPPERAJAH] @@ -28216,12 +22948,6 @@ Category = Copperderm Pokedex = These Pokémon live in herds. Their trunks have incredible grip strength, strong enough to crush giant rocks into powder. Generation = 8 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRACOZOLT] Name = Dracozolt @@ -28247,12 +22973,6 @@ Shape = BipedalTail Category = Fossil Pokedex = In ancient times, it was unbeatable thanks to its powerful lower body, but it went extinct anyway after it depleted all its plant-based food sources. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCTOZOLT] Name = Arctozolt @@ -28278,12 +22998,6 @@ Shape = BipedalTail Category = Fossil Pokedex = The shaking of its freezing upper half is what generates its electricity. It has a hard time walking around. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRACOVISH] Name = Dracovish @@ -28309,12 +23023,6 @@ Shape = HeadLegs Category = Fossil Pokedex = Powerful legs and jaws made it the apex predator of its time. Its own overhunting of its prey was what drove it to extinction. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCTOVISH] Name = Arctovish @@ -28340,12 +23048,6 @@ Shape = Finned Category = Fossil Pokedex = Though it's able to capture prey by freezing its surroundings, it has trouble eating the prey afterward because its mouth is on top of its head. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DURALUDON] Name = Duraludon @@ -28372,12 +23074,6 @@ Shape = BipedalTail Category = Alloy Pokedex = Its body resembles polished metal, and it's both lightweight and strong. The only drawback is that it rusts easily. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DREEPY] Name = Dreepy @@ -28404,12 +23100,6 @@ Shape = Serpentine Category = Lingering Pokedex = After being reborn as a ghost Pokémon, Dreepy wanders the areas it used to inhabit back when it was alive in prehistoric seas. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRAKLOAK,Level,50 #------------------------------- [DRAKLOAK] @@ -28436,12 +23126,6 @@ Shape = HeadArms Category = Caretaker Pokedex = It's capable of flying faster than 120 mph. It battles alongside Dreepy and dotes on them until they successfully evolve. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRAGAPULT,Level,60 #------------------------------- [DRAGAPULT] @@ -28468,12 +23152,6 @@ Shape = BipedalTail Category = Stealth Pokedex = When it isn't battling, it keeps Dreepy in the holes on its horns. Once a fight starts, it launches the Dreepy like supersonic missiles. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ZACIAN] Name = Zacian @@ -28501,12 +23179,6 @@ Generation = 8 WildItemCommon = RUSTEDSWORD WildItemUncommon = RUSTEDSWORD WildItemRare = RUSTEDSWORD -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ZAMAZENTA] Name = Zamazenta @@ -28534,12 +23206,6 @@ Generation = 8 WildItemCommon = RUSTEDSHIELD WildItemUncommon = RUSTEDSHIELD WildItemRare = RUSTEDSHIELD -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ETERNATUS] Name = Eternatus @@ -28564,12 +23230,6 @@ Shape = Winged Category = Gigantic Pokedex = The core on its chest absorbs energy emanating from the lands of the Galar region. This energy is what allows Eternatus to stay active. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [KUBFU] Name = Kubfu @@ -28593,12 +23253,6 @@ Shape = BipedalTail Category = Wushu Pokedex = Kubfu trains hard to perfect its moves. The moves it masters will determine which form it takes when it evolves. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = URSHIFU,Event, #------------------------------- [URSHIFU] @@ -28625,12 +23279,6 @@ Category = Wushu Pokedex = Inhabiting the mountains of a distant region, this Pokémon races across sheer cliffs, training its legs and refining its moves. FormName = Single Strike Style Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ZARUDE] Name = Zarude @@ -28655,12 +23303,6 @@ Shape = BipedalTail Category = Rogue Monkey Pokedex = Once the vines on Zarude's body tear off, they become nutrients in the soil. This helps the plants of the forest grow. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [REGIELEKI] Name = Regieleki @@ -28684,12 +23326,6 @@ Shape = Bipedal Category = Electron Pokedex = This Pokémon is a cluster of electrical energy. It's said that removing the rings on Regieleki's body will unleash the Pokémon's latent power. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [REGIDRAGO] Name = Regidrago @@ -28713,12 +23349,6 @@ Shape = Bipedal Category = Dragon Orb Pokedex = Its body is composed of crystallized dragon energy. Regidrago is said to have the powers of every dragon Pokémon. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GLASTRIER] Name = Glastrier @@ -28742,12 +23372,6 @@ Shape = Quadruped Category = Wild Horse Pokedex = Glastrier has tremendous physical strength, and the mask of ice covering its face is 100 times harder than diamond. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPECTRIER] Name = Spectrier @@ -28771,12 +23395,6 @@ Shape = Quadruped Category = Swift Horse Pokedex = As it dashes through the night, Spectrier absorbs the life-force of sleeping creatures. It craves silence and solitude. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CALYREX] Name = Calyrex @@ -28801,9 +23419,3 @@ Shape = Bipedal Category = King Pokedex = Calyrex is a merciful Pokémon, capable of providing healing and blessings. It reigned over the Galar region in times of yore. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 diff --git a/PBS/Gen 8/pokemon_forms.txt b/PBS/Gen 8/pokemon_forms.txt index c22c601d5..26c1e2a9e 100644 --- a/PBS/Gen 8/pokemon_forms.txt +++ b/PBS/Gen 8/pokemon_forms.txt @@ -629,7 +629,6 @@ Generation = 6 [PICHU,2] FormName = Spiky-Eared Generation = 4 -BattlerEnemyX = 3 Evolutions = PIKACHU,None, #------------------------------- [AMPHAROS,1] @@ -973,25 +972,18 @@ FormName = Sunny Form Type1 = FIRE Color = Red Pokedex = This is the form Castform takes on the brightest of days. Its skin is unexpectedly hot to the touch, so approach with care. -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,2] FormName = Rainy Form Type1 = WATER Color = Blue Pokedex = This is the form Castform takes when soaked with rain. When its body is compressed, water will seep out as if from a sponge. -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,3] FormName = Snowy Form Type1 = ICE Color = White Pokedex = This is the form Castform takes when covered in snow. Its body becomes an ice-like material, with a temperature near -5 degrees Celsius. -BattlerPlayerX = -1 -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [BANETTE,1] FormName = Mega Banette @@ -1110,10 +1102,6 @@ BaseStats = 50,180,20,150,180,20 EVs = 0,2,0,0,1,0 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,TELEPORT,19,TAUNT,25,PURSUIT,31,PSYCHIC,37,SUPERPOWER,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,COSMICPOWER,61,ZAPCANNON,67,PSYCHOBOOST,73,HYPERBEAM TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SUPERPOWER,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 4 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,2] FormName = Defense Forme @@ -1121,10 +1109,6 @@ BaseStats = 50,70,160,90,70,160 EVs = 0,0,2,0,0,1 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,TELEPORT,19,KNOCKOFF,25,SPIKES,31,PSYCHIC,37,SNATCH,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,IRONDEFENSE,55,AMNESIA,61,RECOVER,67,PSYCHOBOOST,73,COUNTER,73,MIRRORCOAT TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,IRONDEFENSE,KNOCKOFF,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 3 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,3] FormName = Speed Forme @@ -1132,20 +1116,14 @@ BaseStats = 50,95,90,180,95,90 EVs = 0,0,0,3,0,0 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,DOUBLETEAM,19,KNOCKOFF,25,PURSUIT,31,PSYCHIC,37,SWIFT,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,AGILITY,61,RECOVER,67,PSYCHOBOOST,73,EXTREMESPEED TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FIREPUNCH,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICEPUNCH,KNOCKOFF,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = -4 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowSize = 3 #------------------------------- [BURMY,1] FormName = Sandy Cloak Color = Brown -Flags = InheritFormFromMother #------------------------------- [BURMY,2] FormName = Trash Cloak Color = Red -Flags = InheritFormFromMother #------------------------------- [WORMADAM,1] FormName = Sandy Cloak @@ -1156,7 +1134,6 @@ EVs = 0,0,2,0,0,0 Moves = 0,QUIVERDANCE,1,QUIVERDANCE,1,SUCKERPUNCH,1,TACKLE,1,PROTECT,1,BUGBITE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,ROCKBLAST,29,HARDEN,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,FISSURE,50,BUGBUZZ TutorMoves = ALLYSWITCH,ATTRACT,BUGBITE,BULLDOZE,CONFIDE,DOUBLETEAM,DREAMEATER,EARTHPOWER,EARTHQUAKE,ELECTROWEB,ENDEAVOR,FACADE,FRUSTRATION,GIGAIMPACT,HIDDENPOWER,HYPERBEAM,INFESTATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,SUBSTITUTE,SUNNYDAY,SWAGGER,TELEKINESIS,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Brown -Flags = InheritFormFromMother #------------------------------- [WORMADAM,2] FormName = Trash Cloak @@ -1167,27 +1144,21 @@ EVs = 0,0,1,0,0,1 Moves = 0,QUIVERDANCE,1,QUIVERDANCE,1,METALBURST,1,SUCKERPUNCH,1,TACKLE,1,PROTECT,1,BUGBITE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,MIRRORSHOT,29,METALSOUND,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,IRONHEAD,50,BUGBUZZ TutorMoves = ALLYSWITCH,ATTRACT,BUGBITE,CONFIDE,DOUBLETEAM,DREAMEATER,ELECTROWEB,ENDEAVOR,FACADE,FLASHCANNON,FRUSTRATION,GIGAIMPACT,GUNKSHOT,GYROBALL,HIDDENPOWER,HYPERBEAM,INFESTATION,IRONDEFENSE,IRONHEAD,MAGNETRISE,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,SUBSTITUTE,SUNNYDAY,SWAGGER,TELEKINESIS,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Red -Flags = InheritFormFromMother #------------------------------- [CHERRIM,1] FormName = Sunshine Form Color = Pink Pokedex = After absorbing plenty of sunlight, Cherrim takes this form. It's full of energy while it's like this, and its liveliness will go on until sundown. -BattlerPlayerX = 2 -BattlerEnemyX = 2 -BattlerEnemyY = 21 #------------------------------- [SHELLOS,1] FormName = East Sea Color = Blue Pokedex = Its appearance changes depending on the environment. One theory suggests that living in cold seas causes Shellos to take on this form. -Flags = InheritFormFromMother #------------------------------- [GASTRODON,1] FormName = East Sea Color = Blue Pokedex = Its body is covered in a sticky slime. It's very susceptible to dehydration, so it can't spend too much time on land. -Flags = InheritFormFromMother #------------------------------- [LOPUNNY,1] FormName = Mega Lopunny @@ -1252,9 +1223,6 @@ Type2 = FIRE BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This Rotom has possessed a convection microwave oven that uses a special motor. It also has a flair for manipulating flames. -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,2] FormName = Wash Rotom @@ -1263,8 +1231,6 @@ Type2 = WATER BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This form of Rotom enjoys coming up with water-based pranks. Be careful with it if you don't want your room flooded. -BattlerPlayerX = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,3] FormName = Frost Rotom @@ -1273,10 +1239,6 @@ Type2 = ICE BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = Rotom assumes this form when it takes over a refrigerator powered by a special motor. It battles by spewing cold air. -BattlerPlayerX = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -4 -BattlerShadowSize = 2 #------------------------------- [ROTOM,4] FormName = Fan Rotom @@ -1285,10 +1247,6 @@ Type2 = FLYING BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = In this form, Rotom applies its new power over wind to its love of pranks. It will happily blow away any important documents it can find. -BattlerPlayerX = -4 -BattlerEnemyX = -2 -BattlerEnemyY = 2 -BattlerShadowSize = 2 #------------------------------- [ROTOM,5] FormName = Mow Rotom @@ -1297,9 +1255,6 @@ Type2 = GRASS BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This is Rotom after it's seized control of a lawn mower that has a special motor. As it mows down grass, it scatters the clippings everywhere. -BattlerPlayerX = 1 -BattlerEnemyY = 0 -BattlerShadowSize = 2 #------------------------------- [GIRATINA,1] FormName = Origin Forme @@ -1310,8 +1265,6 @@ TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE Height = 6.9 Weight = 650.0 Shape = Serpentine -BattlerEnemyX = -2 -BattlerEnemyY = -8 #------------------------------- [SHAYMIN,1] FormName = Sky Forme @@ -1324,8 +1277,6 @@ Moves = 1,GROWTH,10,MAGICALLEAF,19,LEECHSEED,28,QUICKATTACK,37,SWEETSCENT,46,NAT TutorMoves = CONFIDE,COVET,DAZZLINGGLEAM,DOUBLETEAM,ENERGYBALL,FACADE,FRUSTRATION,GIGADRAIN,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,LASERFOCUS,LASTRESORT,NATUREPOWER,PROTECT,PSYCHIC,PSYCHUP,REST,RETURN,ROUND,SAFEGUARD,SEEDBOMB,SLEEPTALK,SNORE,SOLARBEAM,SUBSTITUTE,SUNNYDAY,SWAGGER,SWORDSDANCE,SYNTHESIS,TAILWIND,TOXIC,WORRYSEED,ZENHEADBUTT Height = 0.4 Weight = 5.2 -BattlerEnemyY = 16 -BattlerShadowSize = 2 #------------------------------- [ARCEUS,1] FormName = Fighting Type @@ -1420,7 +1371,6 @@ FormName = Blue-Striped Abilities = ROCKHEAD,ADAPTABILITY Pokedex = Even Basculin, which devours everything it can with its huge jaws, is nothing more than food to organisms stronger than itself. WildItemUncommon = DEEPSEASCALE -Flags = InheritFormFromMother #------------------------------- [DARUMAKA,2] FormName = Galarian @@ -1445,9 +1395,6 @@ BaseExp = 189 EVs = 0,0,0,0,2,0 Color = Blue Pokedex = When wounded, it stops moving. It goes as still as stone to meditate, sharpening its mind and spirit. -BattlerPlayerX = 1 -BattlerEnemyY = 30 -BattlerShadowSize = 2 #------------------------------- [DARMANITAN,2] FormName = Galarian Standard Mode @@ -1538,9 +1485,6 @@ Abilities = REGENERATOR HiddenAbilities = REGENERATOR Height = 1.4 Shape = Winged -BattlerPlayerX = -2 -BattlerEnemyX = 8 -BattlerEnemyY = 11 #------------------------------- [THUNDURUS,1] FormName = Therian Forme @@ -1551,9 +1495,6 @@ HiddenAbilities = 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 = BipedalTail -BattlerPlayerX = -3 -BattlerEnemyX = 2 -BattlerEnemyY = 5 #------------------------------- [LANDORUS,1] FormName = Therian Forme @@ -1563,9 +1504,6 @@ Abilities = INTIMIDATE HiddenAbilities = INTIMIDATE Height = 1.3 Shape = Quadruped -BattlerPlayerX = -8 -BattlerEnemyX = 3 -BattlerEnemyY = 14 #------------------------------- [KYUREM,1] FormName = White Kyurem @@ -1576,9 +1514,6 @@ Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 Pokedex = It has foreseen that a world of truth will arrive for people and Pokémon. It strives to protect that future. -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,2] FormName = Black Kyurem @@ -1589,8 +1524,6 @@ Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 Pokedex = It's said that this Pokémon battles in order to protect the ideal world that will exist in the future for people and Pokémon. -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KYUREM,3] PokedexForm = 1 @@ -1600,9 +1533,6 @@ EVs = 0,0,0,0,3,0 Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,4] PokedexForm = 2 @@ -1612,16 +1542,11 @@ EVs = 0,3,0,0,0,0 Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KELDEO,1] FormName = Resolute Form TutorMoves = AERIALACE,AQUATAIL,BOUNCE,CALMMIND,CONFIDE,COVET,CUT,DOUBLETEAM,ENDEAVOR,FACADE,FALSESWIPE,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,HAIL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICYWIND,LASTRESORT,LIQUIDATION,LOWKICK,POISONJAB,PROTECT,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SCALD,SLEEPTALK,SNORE,STONEEDGE,STRENGTH,SUBSTITUTE,SUPERPOWER,SURF,SWAGGER,SWORDSDANCE,TAUNT,TOXIC,WATERPULSE,WORKUP,XSCISSOR Pokedex = The power that lay hidden in its body now covers its horn, turning it into a sword that can slice through anything. -BattlerPlayerX = 1 -BattlerEnemyX = 0 -BattlerEnemyY = 19 #------------------------------- [MELOETTA,1] FormName = Pirouette Forme @@ -1629,8 +1554,6 @@ Type1 = NORMAL Type2 = FIGHTING BaseStats = 100,128,90,128,77,77 EVs = 0,1,1,1,0,0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 #------------------------------- [GENESECT,1] FormName = Shock Drive @@ -1716,35 +1639,27 @@ FormName = Poké Ball Pattern #------------------------------- [FLABEBE,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,5] FormName = Eternal Flower @@ -1757,19 +1672,15 @@ Evolutions = FLORGES,None, #------------------------------- [FLORGES,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FURFROU,1] FormName = Heart Trim @@ -1818,7 +1729,6 @@ HiddenAbilities = INSOMNIA Height = 0.4 Weight = 5.0 Pokedex = Spirits that wander this world are placed into Pumpkaboo's body. They're then moved on to the afterlife. -Flags = InheritFormFromMother #------------------------------- [PUMPKABOO,2] FormName = Large Size @@ -1826,7 +1736,6 @@ BaseStats = 54,66,70,46,44,55 Height = 0.5 Weight = 7.5 Pokedex = When taking spirits to the afterlife, large Pumpkaboo prefer the spirits of adults to those of children. -Flags = InheritFormFromMother #------------------------------- [PUMPKABOO,3] FormName = Super Size @@ -1838,7 +1747,6 @@ Pokedex = Massive Pumpkaboo are said to be the product of areas where a great nu WildItemCommon = MIRACLESEED WildItemUncommon = MIRACLESEED WildItemRare = MIRACLESEED -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,1] FormName = Average Size @@ -1847,7 +1755,6 @@ HiddenAbilities = INSOMNIA Height = 0.9 Weight = 12.5 Pokedex = Eerie cries emanate from its body in the dead of night. The sounds are said to be the wails of spirits who are suffering in the afterlife. -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,2] FormName = Large Size @@ -1855,7 +1762,6 @@ BaseStats = 75,95,122,69,58,75 Height = 1.1 Weight = 14.0 Pokedex = Large Gourgeist put on the guise of adults, taking the hands of children to lead them to the afterlife. -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,3] FormName = Super Size @@ -1867,7 +1773,6 @@ Pokedex = Supersized Gourgeist aren't picky. They will forcefully drag anyone of WildItemCommon = MIRACLESEED WildItemUncommon = MIRACLESEED WildItemRare = MIRACLESEED -Flags = InheritFormFromMother #------------------------------- [XERNEAS,1] FormName = Active Mode @@ -1934,7 +1839,6 @@ Type1 = ELECTRIC Type2 = FLYING Color = Yellow Pokedex = It creates an electric charge by rubbing its feathers together. It dances over to its enemies and delivers shocking electrical punches. -Flags = InheritFormFromMother #------------------------------- [ORICORIO,2] FormName = Pa'u Style @@ -1942,7 +1846,6 @@ Type1 = PSYCHIC Type2 = FLYING Color = Pink Pokedex = This Oricorio relaxes by swaying gently. This increases its psychic energy, which it then fires at its enemies. -Flags = InheritFormFromMother #------------------------------- [ORICORIO,3] FormName = Sensu Style @@ -1950,7 +1853,6 @@ Type1 = GHOST Type2 = FLYING Color = Purple Pokedex = It summons the dead with its dreamy dancing. From their malice, it draws power with which to curse its enemies. -Flags = InheritFormFromMother #------------------------------- [ROCKRUFF,2] Abilities = OWNTEMPO diff --git a/PBS/Gen 8/pokemon_metrics.txt b/PBS/Gen 8/pokemon_metrics.txt new file mode 100644 index 000000000..242d70fa7 --- /dev/null +++ b/PBS/Gen 8/pokemon_metrics.txt @@ -0,0 +1,4045 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[BULBASAUR] +BackSprite = -4,0 +FrontSprite = -1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[IVYSAUR] +BackSprite = -9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENUSAUR] +BackSprite = 1,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHARMANDER] +BackSprite = -6,0 +FrontSprite = 4,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHARMELEON] +BackSprite = -3,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHARIZARD] +BackSprite = -2,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SQUIRTLE] +BackSprite = -3,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WARTORTLE] +BackSprite = -2,0 +FrontSprite = -4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLASTOISE] +BackSprite = -3,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CATERPIE] +BackSprite = -5,0 +FrontSprite = -3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[METAPOD] +BackSprite = -1,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUTTERFREE] +BackSprite = -10,0 +FrontSprite = 8,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEDLE] +BackSprite = 0,0 +FrontSprite = 3,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KAKUNA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEEDRILL] +BackSprite = 9,0 +FrontSprite = -8,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEY] +BackSprite = -9,0 +FrontSprite = 4,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIDGEOTTO] +BackSprite = -7,0 +FrontSprite = 8,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEOT] +BackSprite = 0,0 +FrontSprite = 7,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RATTATA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RATICATE] +BackSprite = -7,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPEAROW] +BackSprite = -5,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FEAROW] +BackSprite = 10,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EKANS] +BackSprite = -3,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARBOK] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIKACHU] +BackSprite = -5,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[RAICHU] +BackSprite = -5,0 +FrontSprite = 11,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SANDSHREW] +BackSprite = -5,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDSLASH] +BackSprite = 0,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANfE] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINA] +BackSprite = 3,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NIDOQUEEN] +BackSprite = 0,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANmA] +BackSprite = -1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINO] +BackSprite = 1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDOKING] +BackSprite = 4,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLEFAIRY] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLEFABLE] +BackSprite = 4,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VULPIX] +BackSprite = -6,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINETALES] +BackSprite = -3,0 +FrontSprite = 6,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JIGGLYPUFF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WIGGLYTUFF] +BackSprite = 0,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZUBAT] +BackSprite = 0,0 +FrontSprite = -2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLBAT] +BackSprite = 6,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ODDISH] +BackSprite = 2,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLOOM] +BackSprite = 1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VILEPLUME] +BackSprite = 0,0 +FrontSprite = 3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PARAS] +BackSprite = 5,0 +FrontSprite = -3,33 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PARASECT] +BackSprite = 1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VENONAT] +BackSprite = 6,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENOMOTH] +BackSprite = -4,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DIGLETT] +BackSprite = 0,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUGTRIO] +BackSprite = 1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEOWTH] +BackSprite = 3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PERSIAN] +BackSprite = -3,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PSYDUCK] +BackSprite = 0,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLDUCK] +BackSprite = -1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MANKEY] +BackSprite = -2,0 +FrontSprite = 3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PRIMEAPE] +BackSprite = 5,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROWLITHE] +BackSprite = -4,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCANINE] +BackSprite = -9,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWAG] +BackSprite = 0,0 +FrontSprite = 9,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLIWHIRL] +BackSprite = 10,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWRATH] +BackSprite = 1,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ABRA] +BackSprite = 3,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KADABRA] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALAKAZAM] +BackSprite = 4,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MACHOP] +BackSprite = 3,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHOKE] +BackSprite = 7,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHAMP] +BackSprite = 7,0 +FrontSprite = -9,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELLSPROUT] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WEEPINBELL] +BackSprite = 4,0 +FrontSprite = 5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VICTREEBEL] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TENTACOOL] +BackSprite = 9,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TENTACRUEL] +BackSprite = 0,0 +FrontSprite = 0,1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GEODUDE] +BackSprite = -6,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRAVELER] +BackSprite = -4,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLEM] +BackSprite = 0,0 +FrontSprite = -3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PONYTA] +BackSprite = 2,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAPIDASH] +BackSprite = -7,0 +FrontSprite = 5,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWPOKE] +BackSprite = -4,0 +FrontSprite = 3,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWBRO] +BackSprite = -7,0 +FrontSprite = 6,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGNEMITE] +BackSprite = 2,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MAGNETON] +BackSprite = -3,0 +FrontSprite = 0,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FARFETCHD] +BackSprite = 4,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODUO] +BackSprite = 14,0 +FrontSprite = -10,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODRIO] +BackSprite = 8,0 +FrontSprite = -2,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEL] +BackSprite = -8,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEWGONG] +BackSprite = -7,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GRIMER] +BackSprite = 3,0 +FrontSprite = -6,24 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUK] +BackSprite = -2,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELLDER] +BackSprite = -1,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLOYSTER] +BackSprite = 0,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GASTLY] +BackSprite = -1,0 +FrontSprite = 6,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HAUNTER] +BackSprite = -1,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GENGAR] +BackSprite = -3,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ONIX] +BackSprite = 3,0 +FrontSprite = -2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DROWZEE] +BackSprite = 4,0 +FrontSprite = -3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HYPNO] +BackSprite = 8,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KRABBY] +BackSprite = 4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KINGLER] +BackSprite = -2,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VOLTORB] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRODE] +BackSprite = 0,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXEGGCUTE] +BackSprite = 0,0 +FrontSprite = 0,28 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXEGGUTOR] +BackSprite = 0,0 +FrontSprite = -1,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CUBONE] +BackSprite = 2,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAROWAK] +BackSprite = -2,0 +FrontSprite = -8,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONLEE] +BackSprite = 8,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONCHAN] +BackSprite = 4,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LICKITUNG] +BackSprite = -2,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KOFFING] +BackSprite = -2,0 +FrontSprite = 1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEZING] +BackSprite = -2,0 +FrontSprite = -3,-2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYHORN] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYDON] +BackSprite = 5,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHANSEY] +BackSprite = -1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TANGELA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KANGASKHAN] +BackSprite = 3,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HORSEA] +BackSprite = 1,0 +FrontSprite = 3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SEADRA] +BackSprite = -3,0 +FrontSprite = 9,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOLDEEN] +BackSprite = -4,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEAKING] +BackSprite = -8,0 +FrontSprite = 8,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARYU] +BackSprite = 3,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARMIE] +BackSprite = 2,0 +FrontSprite = 2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MRMIME] +BackSprite = 5,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCYTHER] +BackSprite = -5,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JYNX] +BackSprite = 3,0 +FrontSprite = -5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTABUZZ] +BackSprite = 0,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMAR] +BackSprite = -1,0 +FrontSprite = -7,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PINSIR] +BackSprite = 5,0 +FrontSprite = -3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAUROS] +BackSprite = -1,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGIKARP] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GYARADOS] +BackSprite = 2,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LAPRAS] +BackSprite = 1,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DITTO] +BackSprite = 0,0 +FrontSprite = 0,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EEVEE] +BackSprite = -7,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VAPOREON] +BackSprite = 4,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JOLTEON] +BackSprite = -4,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAREON] +BackSprite = -7,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PORYGON] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMANYTE] +BackSprite = 0,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMASTAR] +BackSprite = 5,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTO] +BackSprite = 0,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTOPS] +BackSprite = 7,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AERODACTYL] +BackSprite = -4,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNORLAX] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARTICUNO] +BackSprite = 8,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZAPDOS] +BackSprite = 5,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MOLTRES] +BackSprite = 0,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRATINI] +BackSprite = -2,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAGONAIR] +BackSprite = 2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DRAGONITE] +BackSprite = 5,0 +FrontSprite = 6,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEWTWO] +BackSprite = 14,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEW] +BackSprite = -8,0 +FrontSprite = -9,-3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHIKORITA] +BackSprite = -8,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BAYLEEF] +BackSprite = -3,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEGANIUM] +BackSprite = 0,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CYNDAQUIL] +BackSprite = -8,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUILAVA] +BackSprite = -8,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYPHLOSION] +BackSprite = 0,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOTODILE] +BackSprite = -2,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CROCONAW] +BackSprite = -1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FERALIGATR] +BackSprite = 2,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SENTRET] +BackSprite = 3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FURRET] +BackSprite = -12,0 +FrontSprite = -2,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOOTHOOT] +BackSprite = 5,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NOCTOWL] +BackSprite = -2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDYBA] +BackSprite = 4,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDIAN] +BackSprite = 1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPINARAK] +BackSprite = 0,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARIADOS] +BackSprite = 5,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROBAT] +BackSprite = 4,0 +FrontSprite = 4,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHINCHOU] +BackSprite = 5,0 +FrontSprite = 3,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LANTURN] +BackSprite = 1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PICHU] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PICHU,2] +BackSprite = -5,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLEFFA] +BackSprite = 0,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[IGGLYBUFF] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGEPI] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGETIC] +BackSprite = -2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NATU] +BackSprite = -5,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[XATU] +BackSprite = -3,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAREEP] +BackSprite = -1,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAAFFY] +BackSprite = -3,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AMPHAROS] +BackSprite = 4,0 +FrontSprite = -5,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BELLOSSOM] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARILL] +BackSprite = -2,0 +FrontSprite = 6,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZUMARILL] +BackSprite = 1,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SUDOWOODO] +BackSprite = 5,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLITOED] +BackSprite = 4,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOPPIP] +BackSprite = 9,0 +FrontSprite = 3,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SKIPLOOM] +BackSprite = 2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JUMPLUFF] +BackSprite = -6,0 +FrontSprite = -1,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AIPOM] +BackSprite = -11,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNKERN] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNFLORA] +BackSprite = 0,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[YANMA] +BackSprite = -8,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WOOPER] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUAGSIRE] +BackSprite = 6,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ESPEON] +BackSprite = -4,0 +FrontSprite = -4,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UMBREON] +BackSprite = 0,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MURKROW] +BackSprite = 0,0 +FrontSprite = 1,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLOWKING] +BackSprite = 0,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISDREAVUS] +BackSprite = -4,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[UNOWN] +BackSprite = 0,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WOBBUFFET] +BackSprite = -3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIRAFARIG] +BackSprite = -3,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PINECO] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FORRETRESS] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUNSPARCE] +BackSprite = 0,0 +FrontSprite = 5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GLIGAR] +BackSprite = 2,0 +FrontSprite = -2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STEELIX] +BackSprite = 2,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SNUBBULL] +BackSprite = 1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRANBULL] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[QWILFISH] +BackSprite = -5,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCIZOR] +BackSprite = 6,0 +FrontSprite = -4,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHUCKLE] +BackSprite = 1,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERACROSS] +BackSprite = 0,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNEASEL] +BackSprite = -3,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TEDDIURSA] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[URSARING] +BackSprite = 1,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLUGMA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGCARGO] +BackSprite = -1,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWINUB] +BackSprite = 0,0 +FrontSprite = -1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PILOSWINE] +BackSprite = 0,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORSOLA] +BackSprite = -1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REMORAID] +BackSprite = -7,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OCTILLERY] +BackSprite = 4,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DELIBIRD] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTINE] +BackSprite = 0,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKARMORY] +BackSprite = 4,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOUNDOUR] +BackSprite = -1,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOUNDOOM] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KINGDRA] +BackSprite = -5,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHANPY] +BackSprite = 3,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DONPHAN] +BackSprite = 3,0 +FrontSprite = -10,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGON2] +BackSprite = 3,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STANTLER] +BackSprite = 3,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMEARGLE] +BackSprite = 5,0 +FrontSprite = -6,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYROGUE] +BackSprite = 4,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HITMONTOP] +BackSprite = 0,0 +FrontSprite = -2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMOOCHUM] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELEKID] +BackSprite = 9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGBY] +BackSprite = -1,0 +FrontSprite = 4,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MILTANK] +BackSprite = -3,0 +FrontSprite = 8,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLISSEY] +BackSprite = -2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAIKOU] +BackSprite = -4,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ENTEI] +BackSprite = -4,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SUICUNE] +BackSprite = 1,0 +FrontSprite = -1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVITAR] +BackSprite = -6,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PUPITAR] +BackSprite = -4,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYRANITAR] +BackSprite = -3,0 +FrontSprite = 7,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUGIA] +BackSprite = 5,0 +FrontSprite = -2,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOOH] +BackSprite = 3,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CELEBI] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TREECKO] +BackSprite = -2,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GROVYLE] +BackSprite = 1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCEPTILE] +BackSprite = 4,0 +FrontSprite = 1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORCHIC] +BackSprite = -2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBUSKEN] +BackSprite = 8,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLAZIKEN] +BackSprite = -6,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUDKIP] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MARSHTOMP] +BackSprite = -2,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWAMPERT] +BackSprite = 2,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POOCHYENA] +BackSprite = 5,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIGHTYENA] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZIGZAGOON] +BackSprite = -1,0 +FrontSprite = -5,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LINOONE] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WURMPLE] +BackSprite = -1,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SILCOON] +BackSprite = -2,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEAUTIFLY] +BackSprite = -10,0 +FrontSprite = 9,1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASCOON] +BackSprite = -2,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSTOX] +BackSprite = 6,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOTAD] +BackSprite = 0,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOMBRE] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUDICOLO] +BackSprite = 4,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEDOT] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NUZLEAF] +BackSprite = 2,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHIFTRY] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAILLOW] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWELLOW] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WINGULL] +BackSprite = 2,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PELIPPER] +BackSprite = 0,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RALTS] +BackSprite = 5,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KIRLIA] +BackSprite = 0,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GARDEVOIR] +BackSprite = -5,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SURSKIT] +BackSprite = 1,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MASQUERAIN] +BackSprite = 2,0 +FrontSprite = -4,-8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHROOMISH] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BRELOOM] +BackSprite = -15,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKOTH] +BackSprite = 5,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIGOROTH] +BackSprite = 4,0 +FrontSprite = -4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKING] +BackSprite = 2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NINCADA] +BackSprite = -1,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINJASK] +BackSprite = 0,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHEDINJA] +BackSprite = 0,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISMUR] +BackSprite = 7,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOUDRED] +BackSprite = 2,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXPLOUD] +BackSprite = 0,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAKUHITA] +BackSprite = 4,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HARIYAMA] +BackSprite = 3,0 +FrontSprite = -3,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AZURILL] +BackSprite = -12,0 +FrontSprite = 14,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NOSEPASS] +BackSprite = 5,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKITTY] +BackSprite = -10,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DELCATTY] +BackSprite = 3,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SABLEYE] +BackSprite = 0,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAWILE] +BackSprite = 2,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARON] +BackSprite = -1,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAIRON] +BackSprite = -1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AGGRON] +BackSprite = 7,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEDITITE] +BackSprite = -2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEDICHAM] +BackSprite = 2,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRIKE] +BackSprite = -2,0 +FrontSprite = -3,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANECTRIC] +BackSprite = 2,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PLUSLE] +BackSprite = -12,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MINUN] +BackSprite = -3,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VOLBEAT] +BackSprite = 0,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ILLUMISE] +BackSprite = 0,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSELIA] +BackSprite = 2,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GULPIN] +BackSprite = -1,0 +FrontSprite = 1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWALOT] +BackSprite = -1,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CARVANHA] +BackSprite = -1,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHARPEDO] +BackSprite = -2,0 +FrontSprite = 3,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WAILMER] +BackSprite = 0,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WAILORD] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NUMEL] +BackSprite = 2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CAMERUPT] +BackSprite = -1,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORKOAL] +BackSprite = -2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPOINK] +BackSprite = 1,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRUMPIG] +BackSprite = -4,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPINDA] +BackSprite = 0,0 +FrontSprite = 4,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRAPINCH] +BackSprite = 0,0 +FrontSprite = -2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VIBRAVA] +BackSprite = -11,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLYGON] +BackSprite = -7,0 +FrontSprite = 11,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CACNEA] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CACTURNE] +BackSprite = 7,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWABLU] +BackSprite = 4,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ALTARIA] +BackSprite = -10,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZANGOOSE] +BackSprite = -1,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEVIPER] +BackSprite = 4,0 +FrontSprite = 5,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUNATONE] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLROCK] +BackSprite = 2,0 +FrontSprite = 1,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BARBOACH] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISCASH] +BackSprite = -4,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORPHISH] +BackSprite = 2,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRAWDAUNT] +BackSprite = 9,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BALTOY] +BackSprite = 0,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLAYDOL] +BackSprite = 1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LILEEP] +BackSprite = 5,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRADILY] +BackSprite = 1,0 +FrontSprite = -3,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ANORITH] +BackSprite = 10,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARMALDO] +BackSprite = 0,0 +FrontSprite = 4,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FEEBAS] +BackSprite = -5,0 +FrontSprite = 1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MILOTIC] +BackSprite = -3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CASTFORM] +BackSprite = 1,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASTFORM,1] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,2] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,3] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KECLEON] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHUPPET] +BackSprite = -4,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BANETTE] +BackSprite = -6,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUSKULL] +BackSprite = 6,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSCLOPS] +BackSprite = 1,0 +FrontSprite = 7,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TROPIUS] +BackSprite = 4,0 +FrontSprite = 7,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMECHO] +BackSprite = 9,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ABSOL] +BackSprite = -5,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WYNAUT] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SNORUNT] +BackSprite = -1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLALIE] +BackSprite = -5,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPHEAL] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEALEO] +BackSprite = 1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WALREIN] +BackSprite = 0,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLAMPERL] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HUNTAIL] +BackSprite = -3,0 +FrontSprite = 0,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOREBYSS] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RELICANTH] +BackSprite = -7,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUVDISC] +BackSprite = -3,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BAGON] +BackSprite = 3,0 +FrontSprite = -5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHELGON] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SALAMENCE] +BackSprite = -1,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELDUM] +BackSprite = -6,0 +FrontSprite = 3,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[METANG] +BackSprite = 2,0 +FrontSprite = 3,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[METAGROSS] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIROCK] +BackSprite = 1,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGICE] +BackSprite = -3,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGISTEEL] +BackSprite = 1,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LATIAS] +BackSprite = 5,0 +FrontSprite = -2,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LATIOS] +BackSprite = 3,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KYOGRE] +BackSprite = 0,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROUDON] +BackSprite = -1,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RAYQUAZA] +BackSprite = 4,0 +FrontSprite = -3,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JIRACHI] +BackSprite = -1,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEOXYS] +BackSprite = 0,0 +FrontSprite = 2,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DEOXYS,1] +BackSprite = 4,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,2] +BackSprite = 3,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,3] +BackSprite = -4,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TURTWIG] +BackSprite = -3,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GROTLE] +BackSprite = -4,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORTERRA] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMCHAR] +BackSprite = 4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MONFERNO] +BackSprite = -6,0 +FrontSprite = 10,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[INFERNAPE] +BackSprite = 1,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIPLUP] +BackSprite = 0,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PRINPLUP] +BackSprite = 2,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMPOLEON] +BackSprite = 2,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[STARLY] +BackSprite = -3,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STARAVIA] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARAPTOR] +BackSprite = -5,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BIDOOF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BIBAREL] +BackSprite = -6,0 +FrontSprite = 7,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KRICKETOT] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KRICKETUNE] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHINX] +BackSprite = -9,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXIO] +BackSprite = 1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXRAY] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BUDEW] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSERADE] +BackSprite = 8,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRANIDOS] +BackSprite = 0,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAMPARDOS] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHIELDON] +BackSprite = 0,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASTIODON] +BackSprite = -4,0 +FrontSprite = -5,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BURMY] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WORMADAM] +BackSprite = 0,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MOTHIM] +BackSprite = 11,0 +FrontSprite = 4,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBEE] +BackSprite = 1,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VESPIQUEN] +BackSprite = -1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PACHIRISU] +BackSprite = -5,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BUIZEL] +BackSprite = -12,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLOATZEL] +BackSprite = 3,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHERUBI] +BackSprite = -3,0 +FrontSprite = 6,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM] +BackSprite = -1,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM,1] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHELLOS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GASTRODON] +BackSprite = -6,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AMBIPOM] +BackSprite = 8,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFLOON] +BackSprite = 2,0 +FrontSprite = 4,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFBLIM] +BackSprite = -1,0 +FrontSprite = 3,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUNEARY] +BackSprite = 8,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOPUNNY] +BackSprite = -6,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISMAGIUS] +BackSprite = -3,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HONCHKROW] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLAMEOW] +BackSprite = -6,0 +FrontSprite = 7,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PURUGLY] +BackSprite = 4,0 +FrontSprite = -4,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHINGLING] +BackSprite = 1,0 +FrontSprite = 3,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNKY] +BackSprite = -3,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKUNTANK] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BRONZOR] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRONZONG] +BackSprite = 5,0 +FrontSprite = -2,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BONSLY] +BackSprite = 3,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MIMEJR] +BackSprite = -1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HAPPINY] +BackSprite = -2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHATOT] +BackSprite = -6,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPIRITOMB] +BackSprite = 2,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIBLE] +BackSprite = -2,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GABITE] +BackSprite = -6,0 +FrontSprite = -2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GARCHOMP] +BackSprite = 0,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUNCHLAX] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RIOLU] +BackSprite = -9,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LUCARIO] +BackSprite = 8,0 +FrontSprite = 1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HIPPOPOTAS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HIPPOWDON] +BackSprite = 2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKORUPI] +BackSprite = -3,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAPION] +BackSprite = 7,0 +FrontSprite = -11,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROAGUNK] +BackSprite = -1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TOXICROAK] +BackSprite = 0,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARNIVINE] +BackSprite = -2,0 +FrontSprite = 3,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FINNEON] +BackSprite = -7,0 +FrontSprite = 4,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUMINEON] +BackSprite = -8,0 +FrontSprite = 5,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTYKE] +BackSprite = -1,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNOVER] +BackSprite = 1,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ABOMASNOW] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WEAVILE] +BackSprite = -4,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGNEZONE] +BackSprite = 0,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LICKILICKY] +BackSprite = 1,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYPERIOR] +BackSprite = 1,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TANGROWTH] +BackSprite = 0,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTIVIRE] +BackSprite = 0,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMORTAR] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOGEKISS] +BackSprite = -3,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YANMEGA] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LEAFEON] +BackSprite = -3,0 +FrontSprite = 5,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLACEON] +BackSprite = -3,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLISCOR] +BackSprite = 3,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAMOSWINE] +BackSprite = -1,0 +FrontSprite = -7,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGONZ] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GALLADE] +BackSprite = 1,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PROBOPASS] +BackSprite = 5,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUSKNOIR] +BackSprite = 5,0 +FrontSprite = -4,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FROSLASS] +BackSprite = 6,0 +FrontSprite = 4,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM] +BackSprite = 5,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM,1] +BackSprite = 5,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,2] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,3] +BackSprite = 0,0 +FrontSprite = 1,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,4] +BackSprite = -4,0 +FrontSprite = -2,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,5] +BackSprite = 1,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UXIE] +BackSprite = -1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MESPRIT] +BackSprite = 1,0 +FrontSprite = -3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZELF] +BackSprite = 0,0 +FrontSprite = 9,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DIALGA] +BackSprite = 1,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PALKIA] +BackSprite = 0,0 +FrontSprite = 4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HEATRAN] +BackSprite = 2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIGIGAS] +BackSprite = 0,0 +FrontSprite = -4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA] +BackSprite = -6,0 +FrontSprite = -3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA,1] +BackSprite = -6,0 +FrontSprite = -2,-8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRESSELIA] +BackSprite = -5,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHIONE] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MANAPHY] +BackSprite = -9,0 +FrontSprite = 7,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DARKRAI] +BackSprite = 0,0 +FrontSprite = -2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHAYMIN] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHAYMIN,1] +BackSprite = 0,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCEUS] +BackSprite = -4,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VICTINI] +BackSprite = 0,0 +FrontSprite = -3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNIVY] +BackSprite = -2,0 +FrontSprite = 3,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SERVINE] +BackSprite = 0,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SERPERIOR] +BackSprite = -3,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TEPIG] +BackSprite = -4,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIGNITE] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMBOAR] +BackSprite = 1,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[OSHAWOTT] +BackSprite = 0,0 +FrontSprite = 2,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEWOTT] +BackSprite = 2,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SAMUROTT] +BackSprite = -1,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PATRAT] +BackSprite = -1,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WATCHOG] +BackSprite = -2,0 +FrontSprite = 6,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIPUP] +BackSprite = 1,0 +FrontSprite = -2,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERDIER] +BackSprite = -3,0 +FrontSprite = -3,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STOUTLAND] +BackSprite = -1,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PURRLOIN] +BackSprite = 2,0 +FrontSprite = -2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LIEPARD] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PANSAGE] +BackSprite = 0,0 +FrontSprite = 6,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISAGE] +BackSprite = -1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANSEAR] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISEAR] +BackSprite = 0,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANPOUR] +BackSprite = 0,0 +FrontSprite = 8,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMIPOUR] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MUNNA] +BackSprite = 0,0 +FrontSprite = 0,33 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MUSHARNA] +BackSprite = 6,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDOVE] +BackSprite = -3,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRANQUILL] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UNFEZANT] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLITZLE] +BackSprite = -6,0 +FrontSprite = -4,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZEBSTRIKA] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ROGGENROLA] +BackSprite = 0,0 +FrontSprite = 0,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BOLDORE] +BackSprite = 2,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIGALITH] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WOOBAT] +BackSprite = 2,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWOOBAT] +BackSprite = -3,0 +FrontSprite = -1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRILBUR] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXCADRILL] +BackSprite = -1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AUDINO] +BackSprite = 2,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TIMBURR] +BackSprite = -1,0 +FrontSprite = 4,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GURDURR] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CONKELDURR] +BackSprite = 3,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYMPOLE] +BackSprite = 0,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PALPITOAD] +BackSprite = -6,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEISMITOAD] +BackSprite = 2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THROH] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SAWK] +BackSprite = 2,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEWADDLE] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWADLOON] +BackSprite = 1,0 +FrontSprite = 1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEAVANNY] +BackSprite = 0,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VENIPEDE] +BackSprite = -3,0 +FrontSprite = 2,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIRLIPEDE] +BackSprite = 4,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCOLIPEDE] +BackSprite = 2,0 +FrontSprite = -3,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COTTONEE] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIMSICOTT] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PETILIL] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIGANT] +BackSprite = 1,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASCULIN] +BackSprite = -7,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDILE] +BackSprite = -2,0 +FrontSprite = -1,37 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KROKOROK] +BackSprite = 3,0 +FrontSprite = 5,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KROOKODILE] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARUMAKA] +BackSprite = -2,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DARMANITAN] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARMANITAN,1] +BackSprite = 1,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARACTUS] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DWEBBLE] +BackSprite = 2,0 +FrontSprite = 0,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRUSTLE] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SCRAGGY] +BackSprite = 0,0 +FrontSprite = 7,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SCRAFTY] +BackSprite = 0,0 +FrontSprite = 6,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SIGILYPH] +BackSprite = 7,0 +FrontSprite = -6,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YAMASK] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COFAGRIGUS] +BackSprite = 1,0 +FrontSprite = -5,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TIRTOUGA] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARRACOSTA] +BackSprite = -1,0 +FrontSprite = -4,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARCHEN] +BackSprite = 0,0 +FrontSprite = 3,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ARCHEOPS] +BackSprite = 4,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRUBBISH] +BackSprite = -1,0 +FrontSprite = 4,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GARBODOR] +BackSprite = 5,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZORUA] +BackSprite = -1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZOROARK] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MINCCINO] +BackSprite = -3,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CINCCINO] +BackSprite = 1,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOTHITA] +BackSprite = 0,0 +FrontSprite = 0,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHORITA] +BackSprite = 0,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHITELLE] +BackSprite = 1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLOSIS] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUOSION] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REUNICLUS] +BackSprite = 3,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUCKLETT] +BackSprite = -4,0 +FrontSprite = 1,28 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWANNA] +BackSprite = -2,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLITE] +BackSprite = 1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VANILLISH] +BackSprite = 1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLUXE] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEERLING] +BackSprite = -3,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SAWSBUCK] +BackSprite = 1,0 +FrontSprite = -3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMOLGA] +BackSprite = -4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KARRABLAST] +BackSprite = 1,0 +FrontSprite = 2,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ESCAVALIER] +BackSprite = 3,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FOONGUS] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AMOONGUSS] +BackSprite = 7,0 +FrontSprite = 2,28 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRILLISH] +BackSprite = -1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JELLICENT] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALOMOMOLA] +BackSprite = -2,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[JOLTIK] +BackSprite = 0,0 +FrontSprite = 5,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GALVANTULA] +BackSprite = 0,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FERROSEED] +BackSprite = 0,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FERROTHORN] +BackSprite = 0,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLINK] +BackSprite = 2,0 +FrontSprite = -2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLANG] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KLINKLANG] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYNAMO] +BackSprite = -4,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTRIK] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTROSS] +BackSprite = -5,0 +FrontSprite = -7,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELGYEM] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEHEEYEM] +BackSprite = -2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LITWICK] +BackSprite = -1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAMPENT] +BackSprite = -1,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHANDELURE] +BackSprite = -2,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AXEW] +BackSprite = 1,0 +FrontSprite = -1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRAXURE] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HAXORUS] +BackSprite = -1,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CUBCHOO] +BackSprite = -2,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEARTIC] +BackSprite = -2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRYOGONAL] +BackSprite = -1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELMET] +BackSprite = -4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ACCELGOR] +BackSprite = -4,0 +FrontSprite = 4,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNFISK] +BackSprite = -3,0 +FrontSprite = 2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENFOO] +BackSprite = -1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENSHAO] +BackSprite = -3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRUDDIGON] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLETT] +BackSprite = 1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLURK] +BackSprite = 2,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PAWNIARD] +BackSprite = 2,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BISHARP] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BOUFFALANT] +BackSprite = -1,0 +FrontSprite = -10,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RUFFLET] +BackSprite = 1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRAVIARY] +BackSprite = -2,0 +FrontSprite = 5,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VULLABY] +BackSprite = 0,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANDIBUZZ] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HEATMOR] +BackSprite = 3,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DURANT] +BackSprite = 0,0 +FrontSprite = 1,34 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEINO] +BackSprite = 0,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZWEILOUS] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HYDREIGON] +BackSprite = -2,0 +FrontSprite = 1,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVESTA] +BackSprite = 0,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VOLCARONA] +BackSprite = 0,0 +FrontSprite = 3,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COBALION] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TERRAKION] +BackSprite = 0,0 +FrontSprite = -4,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIRIZION] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TORNADUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORNADUS,1] +BackSprite = -2,0 +FrontSprite = 8,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS,1] +BackSprite = -3,0 +FrontSprite = 2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RESHIRAM] +BackSprite = 2,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZEKROM] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS] +BackSprite = 0,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS,1] +BackSprite = -8,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM] +BackSprite = -3,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,1] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,2] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,3] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,4] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KELDEO] +BackSprite = -1,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KELDEO,1] +BackSprite = 1,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MELOETTA] +BackSprite = 0,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MELOETTA,1] +BackSprite = 0,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GENESECT] +BackSprite = 0,0 +FrontSprite = -3,18 +ShadowX = 0 +ShadowSize = 3 diff --git a/PBS/pokemon.txt b/PBS/pokemon.txt index c568e4ceb..0f6783516 100644 --- a/PBS/pokemon.txt +++ b/PBS/pokemon.txt @@ -26,12 +26,6 @@ Habitat = Grassland Category = Seed Pokedex = Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = IVYSAUR,Level,16 #------------------------------- [IVYSAUR] @@ -59,12 +53,6 @@ Habitat = Grassland Category = Seed Pokedex = To support its bulb, Ivysaur's legs grow sturdy. If it spends more time lying in the sunlight, the bud will soon bloom into a large flower. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENUSAUR,Level,32 #------------------------------- [VENUSAUR] @@ -92,12 +80,6 @@ Habitat = Grassland Category = Seed Pokedex = Venusaur's flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHARMANDER] Name = Charmander @@ -124,12 +106,6 @@ Habitat = Mountain Category = Lizard Pokedex = The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is happy, and blazes when it is enraged. Generation = 1 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHARMELEON,Level,16 #------------------------------- [CHARMELEON] @@ -156,12 +132,6 @@ Habitat = Mountain Category = Flame Pokedex = Without pity, its sharp claws destroy foes. If it encounters a strong enemy, it becomes agitated, and the flame on its tail flares with a bluish white color. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARIZARD,Level,36 #------------------------------- [CHARIZARD] @@ -189,12 +159,6 @@ Habitat = Mountain Category = Flame Pokedex = A Charizard flies about in search of strong opponents. It breathes intense flames that can melt any material. However, it will never torch a weaker foe. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SQUIRTLE] Name = Squirtle @@ -221,12 +185,6 @@ Habitat = WatersEdge Category = Tiny Turtle Pokedex = Its shell is not just for protection. Its rounded shape and the grooves on its surface minimize resistance in water, enabling Squirtle to swim at high speeds. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WARTORTLE,Level,16 #------------------------------- [WARTORTLE] @@ -253,12 +211,6 @@ Habitat = WatersEdge Category = Turtle Pokedex = Its large tail is covered with rich, thick fur that deepens in color with age. The scratches on its shell are evidence of this Pokémon's toughness in battle. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLASTOISE,Level,36 #------------------------------- [BLASTOISE] @@ -285,12 +237,6 @@ Habitat = WatersEdge Category = Shellfish Pokedex = The waterspouts that protrude from its shell are highly accurate. Their bullets of water can precisely nail tin cans from a distance of over 160 feet. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CATERPIE] Name = Caterpie @@ -316,12 +262,6 @@ Habitat = Forest Category = Worm Pokedex = Its voracious appetite compels it to devour leaves bigger than itself without hesitation. It releases a terribly strong odor from its antennae. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = METAPOD,Level,7 #------------------------------- [METAPOD] @@ -347,12 +287,6 @@ Habitat = Forest Category = Cocoon Pokedex = Its shell is as hard as an iron slab. A Metapod does not move very much because it is preparing its soft innards for evolution inside the shell. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BUTTERFREE,Level,10 #------------------------------- [BUTTERFREE] @@ -381,12 +315,6 @@ Category = Butterfly Pokedex = It has a superior ability to search for delicious honey from flowers. It can seek, extract, and carry honey from flowers blooming over six miles away. Generation = 1 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WEEDLE] Name = Weedle @@ -413,12 +341,6 @@ Habitat = Forest Category = Hairy Bug Pokedex = A Weedle has an extremely acute sense of smell. It distinguishes its favorite kinds of leaves from those it dislikes by sniffing with its big red proboscis (nose). Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KAKUNA,Level,7 #------------------------------- [KAKUNA] @@ -445,12 +367,6 @@ Habitat = Forest Category = Cocoon Pokedex = It remains virtually immobile while it clings to a tree. However, on the inside, it busily prepares for evolution. This is evident from how hot its shell becomes. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEEDRILL,Level,10 #------------------------------- [BEEDRILL] @@ -479,12 +395,6 @@ Category = Poison Bee Pokedex = A Beedrill is extremely territorial. For safety reasons, no one should ever approach its nest. If angered, they will attack in a swarm. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDGEY] Name = Pidgey @@ -512,12 +422,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It has an extremely sharp sense of direction. It can unerringly return home to its nest, however far it may be removed from its familiar surroundings. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIDGEOTTO,Level,18 #------------------------------- [PIDGEOTTO] @@ -545,12 +449,6 @@ Habitat = Forest Category = Bird Pokedex = This Pokémon flies around, patrolling its large territory. If its living space is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PIDGEOT,Level,36 #------------------------------- [PIDGEOT] @@ -578,12 +476,6 @@ Habitat = Forest Category = Bird Pokedex = Pidgeot has gorgeous, glossy feathers. Many trainers are so captivated by the beautiful feathers on its head that they choose Pidgeot as their Pokémon. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RATTATA] Name = Rattata @@ -611,12 +503,6 @@ Category = Mouse Pokedex = A Rattata is cautious in the extreme. Even while it is asleep, it constantly moves its ears and listens for danger. It will make its nest anywhere. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RATICATE,Level,20 #------------------------------- [RATICATE] @@ -644,12 +530,6 @@ Category = Mouse Pokedex = A Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses. Generation = 1 WildItemUncommon = CHILANBERRY -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPEAROW] Name = Spearow @@ -678,12 +558,6 @@ Category = Tiny Bird Pokedex = Its loud cry can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FEAROW,Level,20 #------------------------------- [FEAROW] @@ -712,12 +586,6 @@ Category = Beak Pokedex = Its long neck and elongated beak are ideal for catching prey in soil or water. It deftly moves this extended and skinny beak to pluck prey. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EKANS] Name = Ekans @@ -744,12 +612,6 @@ Habitat = Grassland Category = Snake Pokedex = An Ekans curls itself up in a spiral while it rests. This position allows it to quickly respond to an enemy from any direction with a threat from its upraised head. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARBOK,Level,22 #------------------------------- [ARBOK] @@ -776,12 +638,6 @@ Habitat = Grassland Category = Cobra Pokedex = This Pokémon has a terrifically strong constricting power. It can even flatten steel oil drums. Once it wraps its body around its foe, escaping is impossible. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIKACHU] Name = Pikachu @@ -808,12 +664,6 @@ Category = Mouse Pokedex = It stores electricity in the electric sacs on its cheeks. When it releases pent-up energy in a burst, the electric power is equal to a lightning bolt. Generation = 1 WildItemUncommon = LIGHTBALL -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RAICHU,Item,THUNDERSTONE #------------------------------- [RAICHU] @@ -840,12 +690,6 @@ Habitat = Forest Category = Mouse Pokedex = If it stores too much electricity, its behavior turns aggressive. To avoid this, it occasionally discharges excess energy and calms itself down. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SANDSHREW] Name = Sandshrew @@ -873,12 +717,6 @@ Category = Mouse Pokedex = When it curls up in a ball, it can make any attack bounce off harmlessly. Its hide has turned tough and solid as a result of living in the desert. Generation = 1 WildItemUncommon = GRIPCLAW -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SANDSLASH,Level,22 #------------------------------- [SANDSLASH] @@ -906,12 +744,6 @@ Category = Mouse Pokedex = It curls up in a ball to protect itself from enemy attacks. It also curls up to prevent heatstroke during the daytime when temperatures rise sharply. Generation = 1 WildItemUncommon = GRIPCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANfE] Name = Nidoran♀ @@ -938,12 +770,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its highly toxic barbs are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINA,Level,16 #------------------------------- [NIDORINA] @@ -970,12 +796,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = When it is with its friends or family, its barbs are tucked away to prevent injury. It appears to become nervous if separated from the others. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NIDOQUEEN,Item,MOONSTONE #------------------------------- [NIDOQUEEN] @@ -1003,12 +823,6 @@ Habitat = Grassland Category = Drill Pokedex = It is adept at sending foes flying with harsh tackles using its tough, scaly body. This Pokémon is at its strongest when it is defending its young. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NIDORANmA] Name = Nidoran♂ @@ -1035,12 +849,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = The male Nidoran has developed muscles that freely move its ears in any direction. Even the slightest sound does not escape this Pokémon's notice. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NIDORINO,Level,16 #------------------------------- [NIDORINO] @@ -1067,12 +875,6 @@ Habitat = Grassland Category = Poison Pin Pokedex = Its horn is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might. Generation = 1 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = NIDOKING,Item,MOONSTONE #------------------------------- [NIDOKING] @@ -1100,12 +902,6 @@ Habitat = Grassland Category = Drill Pokedex = A Nidoking's thick tail packs enormously destructive power capable of toppling a metal transmission tower. Once it goes on a rampage, there is no stopping it. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLEFAIRY] Name = Clefairy @@ -1132,12 +928,6 @@ Category = Fairy Pokedex = On every night of a full moon, they come out to play. When dawn arrives, the tired Clefairy go to sleep nestled up against each other in deep and quiet mountains. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLEFABLE,Item,MOONSTONE #------------------------------- [CLEFABLE] @@ -1165,12 +955,6 @@ Category = Fairy Pokedex = A Clefable uses its wings to skip lightly as if it were flying. Its bouncy step lets it even walk on water. On quiet, moonlit nights, it strolls on lakes. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VULPIX] Name = Vulpix @@ -1198,12 +982,6 @@ Category = Fox Pokedex = It can freely control fire, making fiery orbs fly like will-o'-the-wisps. Just before evolution, its six tails grow hot as if on fire. Generation = 1 WildItemUncommon = CHARCOAL -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINETALES,Item,FIRESTONE #------------------------------- [NINETALES] @@ -1231,12 +1009,6 @@ Category = Fox Pokedex = It has long been said that each of the nine tails embody an enchanted power. A long-lived Ninetales will have fur that shines like gold. Generation = 1 WildItemUncommon = CHARCOAL -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JIGGLYPUFF] Name = Jigglypuff @@ -1264,12 +1036,6 @@ Category = Balloon Pokedex = Nothing can avoid falling asleep hearing a Jigglypuff's song. The sound waves of its singing voice match the brain waves of someone in a deep sleep. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WIGGLYTUFF,Item,MOONSTONE #------------------------------- [WIGGLYTUFF] @@ -1298,12 +1064,6 @@ Category = Balloon Pokedex = Its fur is the ultimate in luxuriousness. Sleeping alongside a Wigglytuff is simply divine. Its body expands seemingly without end when it inhales. Generation = 1 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZUBAT] Name = Zubat @@ -1331,12 +1091,6 @@ Habitat = Cave Category = Bat Pokedex = While living in pitch-black caverns, their eyes gradually grew shut and deprived them of vision. They use ultrasonic waves to detect obstacles. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLBAT,Level,22 #------------------------------- [GOLBAT] @@ -1364,12 +1118,6 @@ Habitat = Cave Category = Bat Pokedex = Its fangs easily puncture even thick animal hide. It loves to feast on the blood of people and Pokémon. It flits about in darkness and strikes from behind. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROBAT,Happiness, #------------------------------- [ODDISH] @@ -1399,12 +1147,6 @@ Category = Weed Pokedex = It grows by absorbing moonlight. During the daytime, it buries itself in the ground, leaving only its leaves exposed to avoid detection by its enemies. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GLOOM,Level,21 #------------------------------- [GLOOM] @@ -1433,12 +1175,6 @@ Category = Weed Pokedex = A horribly noxious honey drools from its mouth. One whiff of the honey can result in memory loss. Some fans are said to enjoy this overwhelming stink, however. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VILEPLUME,Item,LEAFSTONE,BELLOSSOM,Item,SUNSTONE #------------------------------- [VILEPLUME] @@ -1467,12 +1203,6 @@ Category = Flower Pokedex = In seasons when it produces more pollen, the air around a Vileplume turns yellow with the powder as it walks. The pollen is highly toxic and causes paralysis. Generation = 1 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PARAS] Name = Paras @@ -1502,12 +1232,6 @@ Pokedex = A Paras has parasitic tochukaso mushrooms growing on its back. They gr Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PARASECT,Level,24 #------------------------------- [PARASECT] @@ -1537,12 +1261,6 @@ Pokedex = Parasect are known to infest the roots of large trees en masse and dra Generation = 1 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VENONAT] Name = Venonat @@ -1570,12 +1288,6 @@ Habitat = Forest Category = Insect Pokedex = Its coat of thin, stiff hair that covers its entire body is said to have evolved for protection. Its large eyes never fail to spot even miniscule prey. Generation = 1 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VENOMOTH,Level,31 #------------------------------- [VENOMOTH] @@ -1604,12 +1316,6 @@ Category = Poison Moth Pokedex = Venomoth are nocturnal--they only are active at night. Their favorite prey are insects that gather around streetlights, attracted by the light in the darkness. Generation = 1 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIGLETT] Name = Diglett @@ -1637,12 +1343,6 @@ Category = Mole Pokedex = Diglett are raised in most farms. The reason is simple--wherever they burrow, the soil is left perfectly tilled for growing delicious crops. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUGTRIO,Level,26 #------------------------------- [DUGTRIO] @@ -1670,12 +1370,6 @@ Category = Mole Pokedex = Because the triplets originally split from one body, they think exactly alike. They work cooperatively to burrow endlessly through the ground. Generation = 1 WildItemUncommon = SOFTSAND -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEOWTH] Name = Meowth @@ -1703,12 +1397,6 @@ Category = Scratch Cat Pokedex = Meowth withdraw their sharp claws into their paws to silently sneak about. For some reason, this Pokémon loves shiny coins that glitter with light. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PERSIAN,Level,28 #------------------------------- [PERSIAN] @@ -1736,12 +1424,6 @@ Category = Classy Cat Pokedex = A Persian's six bold whiskers sense air movements to determine what is in its vicinity. It becomes docile if grabbed by the whiskers. Generation = 1 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PSYDUCK] Name = Psyduck @@ -1768,12 +1450,6 @@ Habitat = WatersEdge Category = Duck Pokedex = When its headache intensifies, it starts using strange powers. However, it has no recollection of its powers, so it always looks befuddled and bewildered. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLDUCK,Level,33 #------------------------------- [GOLDUCK] @@ -1800,12 +1476,6 @@ Habitat = WatersEdge Category = Duck Pokedex = A Golduck is an adept swimmer. It sometimes joins competitive swimmers in training. It uses psychic powers when its forehead shimmers with light. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MANKEY] Name = Mankey @@ -1832,12 +1502,6 @@ Habitat = Mountain Category = Pig Monkey Pokedex = When it starts shaking and its nasal breathing turns rough, it's a sure sign of anger. However, since this happens instantly, there is no time to flee. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMEAPE,Level,28 #------------------------------- [PRIMEAPE] @@ -1864,12 +1528,6 @@ Habitat = Mountain Category = Pig Monkey Pokedex = When it becomes furious, its blood circulation becomes more robust, and its muscles are made stronger. But it also becomes much less intelligent. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROWLITHE] Name = Growlithe @@ -1896,12 +1554,6 @@ Habitat = Grassland Category = Puppy Pokedex = Its superb sense of smell ensures that this Pokémon won't forget any scent, no matter what. It uses its sense of smell to detect the emotions of others. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARCANINE,Item,FIRESTONE #------------------------------- [ARCANINE] @@ -1928,12 +1580,6 @@ Habitat = Grassland Category = Legendary Pokedex = This fleet-footed Pokémon is said to run over 6,200 miles in a single day and night. The fire that blazes wildly within its body is its source of power. Generation = 1 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POLIWAG] Name = Poliwag @@ -1960,12 +1606,6 @@ Habitat = WatersEdge Category = Tadpole Pokedex = It is possible to see this Pokémon's spiral innards right through its thin skin. However, the skin is also very flexible. Even sharp fangs bounce right off it. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = POLIWHIRL,Level,25 #------------------------------- [POLIWHIRL] @@ -1993,12 +1633,6 @@ Category = Tadpole Pokedex = Its body surface is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = POLIWRATH,Item,WATERSTONE,POLITOED,TradeItem,KINGSROCK #------------------------------- [POLIWRATH] @@ -2027,12 +1661,6 @@ Category = Tadpole Pokedex = Its highly developed muscles never grow fatigued, however much it exercises. This Pokémon can swim back and forth across the Pacific Ocean without effort. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ABRA] Name = Abra @@ -2060,12 +1688,6 @@ Category = Psi Pokedex = A Pokémon that sleeps 18 hours a day. Observation revealed that it uses Teleport to change its location once every hour. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KADABRA,Level,16 #------------------------------- [KADABRA] @@ -2093,12 +1715,6 @@ Category = Psi Pokedex = It is rumored that a boy with psychic abilities suddenly transformed into Kadabra while he was assisting research into extrasensory powers. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ALAKAZAM,Trade, #------------------------------- [ALAKAZAM] @@ -2126,12 +1742,6 @@ Category = Psi Pokedex = While it has strong psychic abilities and high intelligence, an Alakazam's muscles are very weak. It uses psychic power to move its body. Generation = 1 WildItemUncommon = TWISTEDSPOON -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MACHOP] Name = Machop @@ -2159,12 +1769,6 @@ Category = Superpower Pokedex = It continually undertakes strenuous training to master all forms of martial arts. Its strength lets it easily hoist a sumo wrestler onto its shoulders. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHOKE,Level,28 #------------------------------- [MACHOKE] @@ -2192,12 +1796,6 @@ Category = Superpower Pokedex = A belt is worn by a Machoke to keep its overwhelming power under control. Because it is so dangerous, no one has ever removed the belt. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MACHAMP,Trade, #------------------------------- [MACHAMP] @@ -2225,12 +1823,6 @@ Category = Superpower Pokedex = It is impossible to defend against punches and chops doled out by its four arms. Its fighting spirit flares up when it faces a tough opponent. Generation = 1 WildItemUncommon = FOCUSBAND -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELLSPROUT] Name = Bellsprout @@ -2258,12 +1850,6 @@ Habitat = Forest Category = Flower Pokedex = A Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, it leaks a fluid that melts even iron. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WEEPINBELL,Level,21 #------------------------------- [WEEPINBELL] @@ -2291,12 +1877,6 @@ Habitat = Forest Category = Flycatcher Pokedex = At night, a Weepinbell hangs on to a tree branch with its hooked rear and sleeps. If it moves around in its sleep, it may wake up to find itself on the ground. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VICTREEBEL,Item,LEAFSTONE #------------------------------- [VICTREEBEL] @@ -2324,12 +1904,6 @@ Habitat = Forest Category = Flycatcher Pokedex = The long vine extending from its head is waved about as if it were a living thing to attract prey. When an unsuspecting victim approaches, it is swallowed whole. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TENTACOOL] Name = Tentacool @@ -2358,12 +1932,6 @@ Category = Jellyfish Pokedex = Its body is almost entirely composed of water. It ensnares its foe with its two long tentacles, then stabs with the poison stingers at their tips. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TENTACRUEL,Level,30 #------------------------------- [TENTACRUEL] @@ -2392,12 +1960,6 @@ Category = Jellyfish Pokedex = It lives in complex rock formations on the ocean floor and traps prey using its 80 tentacles. Its red orbs glow when it grows excited or agitated. Generation = 1 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GEODUDE] Name = Geodude @@ -2426,12 +1988,6 @@ Category = Rock Pokedex = It climbs mountain paths using only the power of its arms. Because they look just like boulders lining paths, hikers may step on them without noticing. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRAVELER,Level,25 #------------------------------- [GRAVELER] @@ -2460,12 +2016,6 @@ Category = Rock Pokedex = They descend from mountains by tumbling down steep slopes. They are so brutal, they smash aside obstructing trees and huge boulders with thunderous tackles. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GOLEM,Trade, #------------------------------- [GOLEM] @@ -2494,12 +2044,6 @@ Category = Megaton Pokedex = It is said to live in volcanic craters on mountain peaks. Once a year, it sheds its hide and grows larger. The shed hide crumbles and returns to the soil. Generation = 1 WildItemUncommon = EVERSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PONYTA] Name = Ponyta @@ -2526,12 +2070,6 @@ Habitat = Grassland Category = Fire Horse Pokedex = A Ponyta is very weak at birth. It can barely stand up. Its legs become stronger as it stumbles and falls while trying to keep up with its parent. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAPIDASH,Level,40 #------------------------------- [RAPIDASH] @@ -2558,12 +2096,6 @@ Habitat = Grassland Category = Fire Horse Pokedex = It usually canters casually in the fields and plains. But once a Rapidash turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLOWPOKE] Name = Slowpoke @@ -2592,12 +2124,6 @@ Category = Dopey Pokedex = It catches prey by dipping its tail in water at the side of a river. But it often forgets what it is doing and spends whole days just loafing at the water's edge. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SLOWBRO,Level,37,SLOWKING,TradeItem,KINGSROCK #------------------------------- [SLOWBRO] @@ -2626,12 +2152,6 @@ Category = Hermit Crab Pokedex = Its tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This forces it to reluctantly swim and catch prey. Generation = 1 WildItemUncommon = KINGSROCK -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGNEMITE] Name = Magnemite @@ -2659,12 +2179,6 @@ Category = Magnet Pokedex = The units at its sides are extremely powerful magnets. They generate enough magnetism to draw in iron objects from over 300 feet away. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGNETON,Level,30 #------------------------------- [MAGNETON] @@ -2693,12 +2207,6 @@ Category = Magnet Pokedex = It is actually three Magnemite linked by magnetism. It generates powerful radio waves that raise temperatures by 3.6 degrees F within a 3,300-foot radius. Generation = 1 WildItemUncommon = METALCOAT -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGNEZONE,Item,THUNDERSTONE #------------------------------- [FARFETCHD] @@ -2728,12 +2236,6 @@ Category = Wild Duck Pokedex = It is always seen with a stick from a plant. Apparently, there are good sticks and bad sticks. This Pokémon occasionally fights with others over choice sticks. Generation = 1 WildItemUncommon = LEEK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DODUO] Name = Doduo @@ -2762,12 +2264,6 @@ Category = Twin Bird Pokedex = Even while eating or sleeping, one of the heads remains always vigilant for any sign of danger. When threatened, it flees at over 60 miles per hour. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DODRIO,Level,31 #------------------------------- [DODRIO] @@ -2796,12 +2292,6 @@ Category = Triple Bird Pokedex = A peculiar Pokémon species with three heads. It vigorously races across grassy plains even in arid seasons with little rainfall. Generation = 1 WildItemUncommon = SHARPBEAK -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEL] Name = Seel @@ -2828,12 +2318,6 @@ Habitat = Sea Category = Sea Lion Pokedex = Seel hunt for prey in frigid, ice-covered seas. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head. Generation = 1 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DEWGONG,Level,34 #------------------------------- [DEWGONG] @@ -2861,12 +2345,6 @@ Habitat = Sea Category = Sea Lion Pokedex = It loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GRIMER] Name = Grimer @@ -2894,12 +2372,6 @@ Category = Sludge Pokedex = Born from polluted sludge in the sea, Grimer's favorite food is anything filthy. They feed on wastewater pumped out from factories. Generation = 1 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MUK,Level,38 #------------------------------- [MUK] @@ -2927,12 +2399,6 @@ Category = Sludge Pokedex = It prefers warm and humid habitats. In the summertime, the toxic substances in its body intensify, making Muk reek like putrid kitchen garbage. Generation = 1 WildItemCommon = BLACKSLUDGE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELLDER] Name = Shellder @@ -2961,12 +2427,6 @@ Pokedex = At night, it burrows a hole in the seafloor with its broad tongue to m Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLOYSTER,Item,WATERSTONE #------------------------------- [CLOYSTER] @@ -2996,12 +2456,6 @@ Pokedex = It swims in the sea by swallowing water, then jetting it out toward th Generation = 1 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GASTLY] Name = Gastly @@ -3028,12 +2482,6 @@ Habitat = Cave Category = Gas Pokedex = When exposed to a strong wind, a Gastly's gaseous body quickly dwindles away. They cluster under the eaves of houses to escape the ravages of wind. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAUNTER,Level,25 #------------------------------- [HAUNTER] @@ -3060,12 +2508,6 @@ Habitat = Cave Category = Gas Pokedex = If a Haunter beckons you while it is floating in darkness, don't approach it. This Pokémon will try to lick you with its tongue and steal your life away. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GENGAR,Trade, #------------------------------- [GENGAR] @@ -3092,12 +2534,6 @@ Habitat = Cave Category = Shadow Pokedex = Deep in the night, your shadow cast by a streetlight may suddenly overtake you. It is actually a Gengar running past you, pretending to be your shadow. Generation = 1 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ONIX] Name = Onix @@ -3125,12 +2561,6 @@ Habitat = Cave Category = Rock Snake Pokedex = There is a magnet in its brain that prevents an Onix from losing direction while tunneling. As it grows older, its body becomes steadily rounder and smoother. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = STEELIX,TradeItem,METALCOAT #------------------------------- [DROWZEE] @@ -3158,12 +2588,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = If your nose becomes itchy while you are sleeping, it's a sure sign that a Drowzee is standing above your pillow and trying to eat your dream through your nostrils. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HYPNO,Level,26 #------------------------------- [HYPNO] @@ -3190,12 +2614,6 @@ Habitat = Grassland Category = Hypnosis Pokedex = The arcing movement and glitter of the pendulum in a Hypno's hand lull the foe into deep hypnosis. While searching for prey, it polishes the pendulum. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KRABBY] Name = Krabby @@ -3222,12 +2640,6 @@ Habitat = WatersEdge Category = River Crab Pokedex = Krabby live in holes dug into beaches. On sandy shores with little in the way of food, they can be seen squabbling with each other over territory. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KINGLER,Level,28 #------------------------------- [KINGLER] @@ -3254,12 +2666,6 @@ Habitat = WatersEdge Category = Pincer Pokedex = It waves its huge, oversized claw in the air to communicate with others. But since the claw is so heavy, this Pokémon quickly tires. Generation = 1 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VOLTORB] Name = Voltorb @@ -3285,12 +2691,6 @@ Habitat = Urban Category = Ball Pokedex = It bears an uncanny and unexplained resemblance to a Poké Ball. Because it explodes at the slightest shock, even veteran trainers treat it with caution. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ELECTRODE,Level,30 #------------------------------- [ELECTRODE] @@ -3317,12 +2717,6 @@ Habitat = Urban Category = Ball Pokedex = They appear in great numbers at electric power plants. Because they feed on electricity, they cause massive and chaotic blackouts in nearby cities. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EXEGGCUTE] Name = Exeggcute @@ -3351,12 +2745,6 @@ Category = Egg Pokedex = It consists of six eggs that care for each other. The eggs attract each other and spin around. When cracks increasingly appear, it is close to evolution. Generation = 1 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXEGGUTOR,Item,LEAFSTONE #------------------------------- [EXEGGUTOR] @@ -3384,12 +2772,6 @@ Habitat = Forest Category = Coconut Pokedex = Originally from the tropics, Exeggutor's heads grow larger with exposure to bright sunlight. It is said that when the heads fall, they group to form an Exeggcute. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUBONE] Name = Cubone @@ -3417,12 +2799,6 @@ Category = Lonely Pokedex = It pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull it wears are from its tears. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAROWAK,Level,28 #------------------------------- [MAROWAK] @@ -3450,12 +2826,6 @@ Category = Bone Keeper Pokedex = A Marowak is the evolved form of a Cubone that has grown tough by overcoming the grief of losing its mother. Its tempered and hardened spirit is not easily broken. Generation = 1 WildItemUncommon = THICKCLUB -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -8 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONLEE] Name = Hitmonlee @@ -3481,12 +2851,6 @@ Habitat = Urban Category = Kicking Pokedex = Its legs freely stretch and contract. Using these springlike limbs, it bowls over foes with devastating kicks. After battle, it rubs down its tired legs. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HITMONCHAN] Name = Hitmonchan @@ -3512,12 +2876,6 @@ Habitat = Urban Category = Punching Pokedex = A Hitmonchan is said to possess the spirit of a boxer who aimed to become the world champion. Having an indomitable spirit means that it will never give up. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LICKITUNG] Name = Lickitung @@ -3545,12 +2903,6 @@ Category = Licking Pokedex = Whenever it sees something unfamiliar, it always licks the object because it memorizes things by texture and taste. It is somewhat put off by sour things. Generation = 1 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = LICKILICKY,HasMove,ROLLOUT #------------------------------- [KOFFING] @@ -3579,12 +2931,6 @@ Category = Poison Gas Pokedex = Getting up close to a Koffing will give you a chance to observe, through its thin skin, the toxic gases swirling inside. It blows up at the slightest stimulation. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEEZING,Level,35 #------------------------------- [WEEZING] @@ -3612,12 +2958,6 @@ Category = Poison Gas Pokedex = By diluting its toxic gases with a special process, the highest grade of perfume can be made. To Weezing, gases emanating from garbage are the ultimate feast. Generation = 1 WildItemUncommon = SMOKEBALL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYHORN] Name = Rhyhorn @@ -3645,12 +2985,6 @@ Habitat = RoughTerrain Category = Spikes Pokedex = Once it starts running, it doesn't stop. Its tiny brain makes it so stupid that it can't remember why it started running in the first place. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYDON,Level,42 #------------------------------- [RHYDON] @@ -3678,12 +3012,6 @@ Habitat = RoughTerrain Category = Drill Pokedex = Its horn, which rotates like a drill, destroys tall buildings with one strike. It stands on its hind legs, and its brain is well developed. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = RHYPERIOR,TradeItem,PROTECTOR #------------------------------- [CHANSEY] @@ -3712,12 +3040,6 @@ Category = Egg Pokedex = Chansey lay nutritionally excellent eggs every day. The eggs are so delicious, they are eagerly devoured by even those who have lost their appetite. Generation = 1 WildItemCommon = LUCKYPUNCH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLISSEY,Happiness, #------------------------------- [TANGELA] @@ -3745,12 +3067,6 @@ Habitat = Grassland Category = Vine Pokedex = Its vines snap off easily and painlessly if they are grabbed, allowing it to make a quick getaway. The lost vines are replaced by new growth the very next day. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TANGROWTH,HasMove,ANCIENTPOWER #------------------------------- [KANGASKHAN] @@ -3778,12 +3094,6 @@ Habitat = Grassland Category = Parent Pokedex = If you come across a young Kangaskhan playing by itself, never try to catch it. The baby's parent is sure to be in the area, and it will become violently enraged. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HORSEA] Name = Horsea @@ -3811,12 +3121,6 @@ Category = Dragon Pokedex = By cleverly flicking the fins on its back side to side, it moves in any direction while facing forward. It spits ink to escape if it senses danger. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SEADRA,Level,32 #------------------------------- [SEADRA] @@ -3844,12 +3148,6 @@ Category = Dragon Pokedex = The poisonous barbs all over its body are highly valued as ingredients for making traditional herbal medicine. It shows no mercy to anything approaching its nest. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KINGDRA,TradeItem,DRAGONSCALE #------------------------------- [GOLDEEN] @@ -3878,12 +3176,6 @@ Category = Goldfish Pokedex = In the springtime, schools of Goldeen can be seen swimming up falls and rivers. It metes out staggering damage with its single horn. Generation = 1 WildItemUncommon = MYSTICWATER -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEAKING,Level,33 #------------------------------- [SEAKING] @@ -3911,12 +3203,6 @@ Category = Goldfish Pokedex = It punches holes in boulders on stream- beds. This is a clever innovation that prevents its eggs from being attacked or washed away by the current. Generation = 1 WildItemUncommon = MYSTICWATER -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STARYU] Name = Staryu @@ -3944,12 +3230,6 @@ Pokedex = It gathers with others in the night and makes its red core glow on and Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARMIE,Item,WATERSTONE #------------------------------- [STARMIE] @@ -3979,12 +3259,6 @@ Pokedex = People in ancient times imagined that Starmie were transformed from th Generation = 1 WildItemCommon = STARDUST WildItemUncommon = STARPIECE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MRMIME] Name = Mr. Mime @@ -4012,12 +3286,6 @@ Habitat = Urban Category = Barrier Pokedex = A Mr. Mime is a master of pantomime. It can convince others that something unseeable actually exists. Once believed, the imaginary object does become real. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCYTHER] Name = Scyther @@ -4045,12 +3313,6 @@ Habitat = Grassland Category = Mantis Pokedex = Its blindingly fast speed adds to the sharpness of its twin forearm scythes. The scythes can slice through thick logs in one wicked stroke. Generation = 1 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SCIZOR,TradeItem,METALCOAT #------------------------------- [JYNX] @@ -4078,12 +3340,6 @@ Habitat = Urban Category = Human Shape Pokedex = A Jynx sashays rhythmically as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without noticing. Generation = 1 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTABUZZ] Name = Electabuzz @@ -4110,12 +3366,6 @@ Category = Electric Pokedex = When a storm approaches, it competes with others to scale heights that are likely to be stricken by lightning. Some towns use Electabuzz as lightning rods. Generation = 1 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = ELECTIVIRE,TradeItem,ELECTIRIZER #------------------------------- [MAGMAR] @@ -4143,12 +3393,6 @@ Category = Spitfire Pokedex = In battle, it blows out intense flames from all over its body to intimidate its foe. These fiery bursts create heat waves that ignite grass and trees. Generation = 1 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAGMORTAR,TradeItem,MAGMARIZER #------------------------------- [PINSIR] @@ -4176,12 +3420,6 @@ Habitat = Forest Category = Stag Beetle Pokedex = Their pincers are strong enough to shatter thick logs. Because they dislike cold, Pinsir burrow and sleep under the ground on chilly nights. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAUROS] Name = Tauros @@ -4207,12 +3445,6 @@ Habitat = Grassland Category = Wild Bull Pokedex = It is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGIKARP] Name = Magikarp @@ -4238,12 +3470,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Its swimming muscles are weak, so it is easily washed away by currents. In places where water pools, you can see many Magikarp deposited there by the flow. Generation = 1 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GYARADOS,Level,20 #------------------------------- [GYARADOS] @@ -4271,12 +3497,6 @@ Habitat = WatersEdge Category = Atrocious Pokedex = It is an extremely vicious and violent Pokémon. When humans begin to fight, it will appear and burn everything to the ground with intensely hot flames. Generation = 1 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LAPRAS] Name = Lapras @@ -4307,12 +3527,6 @@ Generation = 1 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DITTO] Name = Ditto @@ -4339,12 +3553,6 @@ Pokedex = A Ditto rearranges its cell structure to transform itself. However, if Generation = 1 WildItemCommon = QUICKPOWDER WildItemUncommon = METALPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EEVEE] Name = Eevee @@ -4371,12 +3579,6 @@ Habitat = Urban Category = Evolution Pokedex = An Eevee has an unstable genetic makeup that suddenly mutates due to its environment. Radiation from various stones causes this Pokémon to evolve. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VAPOREON,Item,WATERSTONE,JOLTEON,Item,THUNDERSTONE,FLAREON,Item,FIRESTONE,LEAFEON,Item,LEAFSTONE,GLACEON,Item,ICESTONE,SYLVEON,HappinessMoveType,FAIRY,ESPEON,HappinessDay,,UMBREON,HappinessNight, #------------------------------- [VAPOREON] @@ -4403,12 +3605,6 @@ Habitat = Urban Category = Bubble Jet Pokedex = Vaporeon underwent a spontaneous mutation and grew fins and gills that allow them to live underwater. They have the ability to freely control water. Generation = 1 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JOLTEON] Name = Jolteon @@ -4434,12 +3630,6 @@ Habitat = Urban Category = Lightning Pokedex = Its cells generate weak power that is amplified by its fur's static electricity to drop thunderbolts. The bristling fur is made of electrically charged needles. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLAREON] Name = Flareon @@ -4465,12 +3655,6 @@ Habitat = Urban Category = Flame Pokedex = Flareon's fluffy fur releases heat into the air so that its body does not get excessively hot. Its body temperature can rise to a maximum of 1,650 degrees F. Generation = 1 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PORYGON] Name = Porygon @@ -4496,12 +3680,6 @@ Habitat = Urban Category = Virtual Pokedex = It is capable of reverting itself entirely back to program data in order to enter cyberspace. A Porygon is copy-protected so it cannot be duplicated. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PORYGON2,TradeItem,UPGRADE #------------------------------- [OMANYTE] @@ -4530,12 +3708,6 @@ Habitat = Sea Category = Spiral Pokedex = One of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by humans. If attacked, it withdraws into its hard shell. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OMASTAR,Level,40 #------------------------------- [OMASTAR] @@ -4563,12 +3735,6 @@ Habitat = Sea Category = Spiral Pokedex = An Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large, making its movements slow and ponderous. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KABUTO] Name = Kabuto @@ -4596,12 +3762,6 @@ Habitat = Sea Category = Shellfish Pokedex = This Pokémon has been regenerated from a fossil. However, in rare cases, living examples have been discovered. Kabuto have not changed for 300 million years. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KABUTOPS,Level,40 #------------------------------- [KABUTOPS] @@ -4629,12 +3789,6 @@ Habitat = Sea Category = Shellfish Pokedex = Kabutops once swam underwater to hunt for prey. It was apparently evolving from being a water dweller to living on land as evident from changes in its gills and legs. Generation = 1 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AERODACTYL] Name = Aerodactyl @@ -4662,12 +3816,6 @@ Habitat = Mountain Category = Fossil Pokedex = Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from DNA extracted from amber. It is imagined to have been the king of the skies. Generation = 1 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNORLAX] Name = Snorlax @@ -4697,12 +3845,6 @@ Generation = 1 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARTICUNO] Name = Articuno @@ -4729,12 +3871,6 @@ Habitat = Rare Category = Freeze Pokedex = Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall. Generation = 1 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZAPDOS] Name = Zapdos @@ -4761,12 +3897,6 @@ Habitat = Rare Category = Electric Pokedex = Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. It gains power if it is stricken by lightning bolts. Generation = 1 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MOLTRES] Name = Moltres @@ -4793,12 +3923,6 @@ Habitat = Rare Category = Flame Pokedex = Moltres is a legendary bird Pokémon that can control fire. If injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself. Generation = 1 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRATINI] Name = Dratini @@ -4826,12 +3950,6 @@ Category = Dragon Pokedex = A Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGONAIR,Level,30 #------------------------------- [DRAGONAIR] @@ -4859,12 +3977,6 @@ Category = Dragon Pokedex = A Dragonair stores an enormous amount of energy inside its body. It is said to alter the weather around it by loosing energy from the crystals on its neck and tail. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DRAGONITE,Level,55 #------------------------------- [DRAGONITE] @@ -4893,12 +4005,6 @@ Category = Dragon Pokedex = It can circle the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land. Generation = 1 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEWTWO] Name = Mewtwo @@ -4924,12 +4030,6 @@ Habitat = Rare Category = Genetic Pokedex = A Pokémon that was created by genetic manipulation. However, even though the scientific power of humans made its body, they failed to give it a warm heart. Generation = 1 -BattlerPlayerX = 14 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MEW] Name = Mew @@ -4957,12 +4057,6 @@ Generation = 1 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CHIKORITA] Name = Chikorita @@ -4989,12 +4083,6 @@ Habitat = Grassland Category = Leaf Pokedex = It waves its leaf around to keep foes at bay. However, a sweet fragrance also wafts from the leaf, creating a friendly atmosphere that becalms the battlers. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BAYLEEF,Level,16 #------------------------------- [BAYLEEF] @@ -5021,12 +4109,6 @@ Habitat = Grassland Category = Leaf Pokedex = A Bayleef's neck is ringed by curled-up leaves. Inside each leaf is a small tree shoot. The fragrance of this shoot makes people peppy. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEGANIUM,Level,32 #------------------------------- [MEGANIUM] @@ -5053,12 +4135,6 @@ Habitat = Grassland Category = Herb Pokedex = The fragrance of a Meganium's flower soothes and calms emotions. In battle, it gives off more of its becalming scent to blunt the foe's fighting spirit. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CYNDAQUIL] Name = Cyndaquil @@ -5085,12 +4161,6 @@ Habitat = Grassland Category = Fire Mouse Pokedex = It flares flames from its back to protect itself. The fire burns vigorously if the Pokémon is angry. When it is tired, it sputters with incomplete combustion. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUILAVA,Level,14 #------------------------------- [QUILAVA] @@ -5117,12 +4187,6 @@ Habitat = Grassland Category = Volcano Pokedex = It intimidates foes with intense gusts of flames and superheated air. Its quick nimbleness lets it dodge attacks even while scorching an enemy. Generation = 2 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TYPHLOSION,Level,36 #------------------------------- [TYPHLOSION] @@ -5149,12 +4213,6 @@ Habitat = Grassland Category = Volcano Pokedex = It can hide behind a shimmering heat haze that it creates using its intense flames. Typhlosion create blazing explosive blasts that burn everything to cinders. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOTODILE] Name = Totodile @@ -5181,12 +4239,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Despite its small body, Totodile's jaws are very powerful. While it may think it is just playfully nipping, its bite has enough strength to cause serious injury. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CROCONAW,Level,18 #------------------------------- [CROCONAW] @@ -5213,12 +4265,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = Once its jaws clamp down on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like fishhooks, they become irremovably embedded. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FERALIGATR,Level,30 #------------------------------- [FERALIGATR] @@ -5245,12 +4291,6 @@ Habitat = WatersEdge Category = Big Jaw Pokedex = It opens its huge mouth to intimidate enemies. In battle, it runs using its thick and powerful hind legs to charge the foe with incredible speed. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SENTRET] Name = Sentret @@ -5277,12 +4317,6 @@ Habitat = Grassland Category = Scout Pokedex = They take turns standing guard when it is time to sleep. The sentry awakens the others if it senses danger. If one gets separated, it turns sleepless with fear. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FURRET,Level,15 #------------------------------- [FURRET] @@ -5309,12 +4343,6 @@ Habitat = Grassland Category = Long Body Pokedex = A Furret has a very slim build. When under attack, it can squirm through narrow spaces and get away. In spite of its short limbs, it is very nimble and fleet. Generation = 2 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOTHOOT] Name = Hoothoot @@ -5342,12 +4370,6 @@ Habitat = Forest Category = Owl Pokedex = It has an internal organ that senses the earth's rotation. Using this special organ, a Hoothoot begins hooting at precisely the same time every day. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOCTOWL,Level,20 #------------------------------- [NOCTOWL] @@ -5375,12 +4397,6 @@ Habitat = Forest Category = Owl Pokedex = It unfailingly catches prey in darkness. Noctowl owe their success to superior vision that allows them to see in minimal light, and to their supple and silent wings. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LEDYBA] Name = Ledyba @@ -5408,12 +4424,6 @@ Habitat = Forest Category = Five Star Pokedex = Ledyba communicate using a fluid that they secrete from where the legs join the body. They are said to convey feelings to others by altering the fluid's scent. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEDIAN,Level,18 #------------------------------- [LEDIAN] @@ -5441,12 +4451,6 @@ Habitat = Forest Category = Five Star Pokedex = It is said that in lands with clean air, where the stars fill the sky, there live many Ledian. For good reason, they use the light of the stars as energy. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPINARAK] Name = Spinarak @@ -5474,12 +4478,6 @@ Habitat = Forest Category = String Spit Pokedex = The web it spins can be considered its second nervous system. It is said that a Spinarak determines its prey by the tiny vibrations it feels through the web. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARIADOS,Level,22 #------------------------------- [ARIADOS] @@ -5507,12 +4505,6 @@ Habitat = Forest Category = Long Leg Pokedex = Its feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. It constricts its foe with thin and strong silk webbing. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROBAT] Name = Crobat @@ -5539,12 +4531,6 @@ Habitat = Cave Category = Bat Pokedex = Over the course of evolution, its hind legs turned into wings. By alternately resting its front and rear wings, it can fly all day without having to stop. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHINCHOU] Name = Chinchou @@ -5573,12 +4559,6 @@ Category = Angler Pokedex = When it senses danger, it discharges positive and negative electricity from its two antennae. It lives in depths beyond sunlight's reach. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LANTURN,Level,27 #------------------------------- [LANTURN] @@ -5607,12 +4587,6 @@ Category = Light Pokedex = The light-emitting orbs on its back are very bright. They are formed from a part of its dorsal fin. This Pokémon illuminates the inky darkness of deep seas. Generation = 2 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PICHU] Name = Pichu @@ -5639,12 +4613,6 @@ Habitat = Forest Category = Tiny Mouse Pokedex = It is still inept at retaining electricity. When it is startled, it discharges power accidentally. It gets better at holding power as it grows older. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIKACHU,Happiness, #------------------------------- [CLEFFA] @@ -5673,12 +4641,6 @@ Category = Star Shape Pokedex = On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance until daybreak, when they quench their thirst with the morning dew. Generation = 2 WildItemUncommon = MOONSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLEFAIRY,Happiness, #------------------------------- [IGGLYBUFF] @@ -5707,12 +4669,6 @@ Habitat = Grassland Category = Balloon Pokedex = Its soft and pliable body is very bouncy. When it sings continuously with all its might, its body steadily turns a deepening pink color. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JIGGLYPUFF,Happiness, #------------------------------- [TOGEPI] @@ -5740,12 +4696,6 @@ Habitat = Forest Category = Spike Ball Pokedex = As its energy, it uses the feelings of compassion and pleasure exuded by people and Pokémon. It stores up happy feelings in its shell, then shares them out. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGETIC,Happiness, #------------------------------- [TOGETIC] @@ -5773,12 +4723,6 @@ Habitat = Forest Category = Happiness Pokedex = It is said to be a Pokémon that brings good fortune. When it spots someone who is pure of heart, a Togetic appears and shares its happiness with that person. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOGEKISS,Item,SHINYSTONE #------------------------------- [NATU] @@ -5807,12 +4751,6 @@ Habitat = Forest Category = Tiny Bird Pokedex = It runs up short trees that grow on the savanna to peck at new shoots. A Natu's eyes look as if they are always observing something. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = XATU,Level,25 #------------------------------- [XATU] @@ -5840,12 +4778,6 @@ Habitat = Forest Category = Mystic Pokedex = It has the enigmatic power of foreseeing the future. Some people in different lands have long believed that Xatu are emissaries from another world. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREEP] Name = Mareep @@ -5872,12 +4804,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fluffy wool rubs together and builds a static charge. The more energy is charged, the more brightly the lightbulb at the tip of its tail glows. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLAAFFY,Level,15 #------------------------------- [FLAAFFY] @@ -5904,12 +4830,6 @@ Habitat = Grassland Category = Wool Pokedex = Its fleece quality changes to generate strong static electricity with a small amount of wool. The bare, slick parts of its hide are shielded against electricity. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AMPHAROS,Level,30 #------------------------------- [AMPHAROS] @@ -5936,12 +4856,6 @@ Habitat = Grassland Category = Light Pokedex = It gives off so much light that it can be seen even from space. People in the old days used its light to send signals back and forth with others far away. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BELLOSSOM] Name = Bellossom @@ -5968,12 +4882,6 @@ Category = Flower Pokedex = Its flower petals deepen in color through exposure to sunlight. When cloudy weather persists, it does a dance that is thought to be a sun-summoning ritual. Generation = 2 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARILL] Name = Marill @@ -6001,12 +4909,6 @@ Habitat = WatersEdge Category = Aqua Mouse Pokedex = Its body is covered with water-repellent fur. Because of the fur, it can swim through water at high speed without being slowed by the water's resistance. Generation = 2 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AZUMARILL,Level,18 #------------------------------- [AZUMARILL] @@ -6034,12 +4936,6 @@ Habitat = WatersEdge Category = Aqua Rabbit Pokedex = It lives in water virtually all day long. Its body color and pattern act as camouflage that makes it tough for enemies to spot in water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SUDOWOODO] Name = Sudowoodo @@ -6066,12 +4962,6 @@ Habitat = Forest Category = Imitation Pokedex = It mimics a tree to avoid being attacked by enemies. But since its forelegs remain green throughout the year, it is easily identified as a fake in the winter. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [POLITOED] Name = Politoed @@ -6098,12 +4988,6 @@ Category = Frog Pokedex = The curled hair on its head proves its status as a king. It is said that the longer and curlier the hair, the more respect it earns from its peers. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOPPIP] Name = Hoppip @@ -6131,12 +5015,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, a Hoppip links leaves with others to prepare against being blown away. Generation = 2 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SKIPLOOM,Level,18 #------------------------------- [SKIPLOOM] @@ -6164,12 +5042,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = It blossoms when the temperature rises above 64 degrees F. Because its flower's blooming changes with the temperature, it is sometimes used as a thermometer. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = JUMPLUFF,Level,27 #------------------------------- [JUMPLUFF] @@ -6197,12 +5069,6 @@ Habitat = Grassland Category = Cottonweed Pokedex = Jumpluff ride warm southern winds to cross the sea and fly to foreign lands. This Pokémon lands when it encounters cold air while it is floating. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AIPOM] Name = Aipom @@ -6229,12 +5095,6 @@ Habitat = Forest Category = Long Tail Pokedex = Its tail ends with a dexterous, handlike appendage. However, because it uses the tail so much, Aipom's real hands have become rather clumsy. Generation = 2 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMBIPOM,HasMove,DOUBLEHIT #------------------------------- [SUNKERN] @@ -6262,12 +5122,6 @@ Habitat = Grassland Category = Seed Pokedex = Sunkern try to minimize movement to conserve the nutrients they have stored in their bodies for evolution. They will not eat, subsisting only on morning dew. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUNFLORA,Item,SUNSTONE #------------------------------- [SUNFLORA] @@ -6294,12 +5148,6 @@ Habitat = Grassland Category = Sun Pokedex = Sunflora convert solar energy into nutrition. They are highly active in the warm daytime but suddenly stop moving as soon as the sun sets. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [YANMA] Name = Yanma @@ -6328,12 +5176,6 @@ Category = Clear Wing Pokedex = It can see 360 degrees without moving its eyes. It is a great flier capable of making sudden stops and turning midair to quickly chase down targeted prey. Generation = 2 WildItemUncommon = WIDELENS -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = YANMEGA,HasMove,ANCIENTPOWER #------------------------------- [WOOPER] @@ -6362,12 +5204,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = Wooper usually live in water but come out onto land seeking food occasionally. On land, they coat their bodies with a gooey, toxic film. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = QUAGSIRE,Level,20 #------------------------------- [QUAGSIRE] @@ -6395,12 +5231,6 @@ Habitat = WatersEdge Category = Water Fish Pokedex = A Quagsire hunts by leaving its mouth wide open in water and waiting for its prey to blunder in. Because it doesn't move, it does not get very hungry. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPEON] Name = Espeon @@ -6426,12 +5256,6 @@ Habitat = Urban Category = Sun Pokedex = An Espeon is extremely loyal to any trainer it considers to be worthy. It is said to have developed precognitive powers to protect its trainer from harm. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [UMBREON] Name = Umbreon @@ -6457,12 +5281,6 @@ Habitat = Urban Category = Moonlight Pokedex = Umbreon evolved from exposure to the moon's energy pulses. It lurks in darkness and waits for its foes to move. The rings on its body glow when it leaps to attack. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MURKROW] Name = Murkrow @@ -6490,12 +5308,6 @@ Habitat = Forest Category = Darkness Pokedex = Murkrow were feared as the alleged bearers of ill fortune. It shows strong interest in anything that sparkles. It will even try to steal rings from women. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HONCHKROW,Item,DUSKSTONE #------------------------------- [SLOWKING] @@ -6524,12 +5336,6 @@ Category = Royal Pokedex = It undertakes research every day to solve the mysteries of the world. However, it apparently forgets everything if the Shellder on its head comes off. Generation = 2 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISDREAVUS] Name = Misdreavus @@ -6555,12 +5361,6 @@ Habitat = Cave Category = Screech Pokedex = A Misdreavus frightens people with a creepy, sobbing cry. It apparently uses its red spheres to absorb the fear of foes as its nutrition. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MISMAGIUS,Item,DUSKSTONE #------------------------------- [UNOWN] @@ -6587,12 +5387,6 @@ Category = Symbol Pokedex = This Pokémon is shaped like ancient text characters. Although research is ongoing, it is a mystery as to which came first, the ancient writings or the various Unown. FormName = A Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [WOBBUFFET] Name = Wobbuffet @@ -6618,12 +5412,6 @@ Habitat = Cave Category = Patient Pokedex = Usually docile, a Wobbuffet strikes back ferociously if its black tail is attacked. It makes its lair in caves where it waits for nightfall. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIRAFARIG] Name = Girafarig @@ -6651,12 +5439,6 @@ Habitat = Grassland Category = Long Neck Pokedex = A Girafarig is an herbivore--it eats grass and tree shoots. While it is eating, its tail makes chewing and swallowing motions as if it were also eating. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PINECO] Name = Pineco @@ -6683,12 +5465,6 @@ Habitat = Forest Category = Bagworm Pokedex = A Pineco hangs from a tree branch and waits for prey. While eating, if it is disturbed by someone shaking its tree, it falls on the ground and explodes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FORRETRESS,Level,31 #------------------------------- [FORRETRESS] @@ -6716,12 +5492,6 @@ Habitat = Forest Category = Bagworm Pokedex = It keeps itself inside its steel shell. The shell is opened when it is catching prey, but it is so quick that the shell's inside cannot be seen. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUNSPARCE] Name = Dunsparce @@ -6748,12 +5518,6 @@ Habitat = Cave Category = Land Snake Pokedex = Its drill-tipped tail is used to burrow into the ground backwards. This Pokémon is known to make its nest in complex shapes deep under the ground. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GLIGAR] Name = Gligar @@ -6781,12 +5545,6 @@ Habitat = Mountain Category = Fly Scorpion Pokedex = It glides without making a single sound. It grasps the face of its foe using its hind and large front claws, then stabs with its poison barb. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLISCOR,NightHoldItem,RAZORFANG #------------------------------- [STEELIX] @@ -6815,12 +5573,6 @@ Category = Iron Snake Pokedex = Steelix live even further underground than Onix. This Pokémon is known to dig toward the earth's core, reaching a depth of over six-tenths of a mile underground. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SNUBBULL] Name = Snubbull @@ -6847,12 +5599,6 @@ Habitat = Urban Category = Fairy Pokedex = By baring its fangs and making a scary face, it sends smaller Pokémon scurrying in terror. The Snubbull does seem a little sad at making its foes flee. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRANBULL,Level,23 #------------------------------- [GRANBULL] @@ -6879,12 +5625,6 @@ Habitat = Urban Category = Fairy Pokedex = It has a particularly well-developed lower jaw. The huge fangs are heavy, causing it to tilt its head. Unless it is startled, it will not try to bite. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [QWILFISH] Name = Qwilfish @@ -6913,12 +5653,6 @@ Category = Balloon Pokedex = A Qwilfish uses the pressure of water it swallows to shoot toxic quills all at once from all over its body. It finds swimming to be somewhat challenging. Generation = 2 WildItemUncommon = POISONBARB -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCIZOR] Name = Scizor @@ -6945,12 +5679,6 @@ Habitat = Grassland Category = Pincer Pokedex = A Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. It flaps its wings to regulate its body temperature. Generation = 2 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHUCKLE] Name = Shuckle @@ -6981,12 +5709,6 @@ Generation = 2 WildItemCommon = BERRYJUICE WildItemUncommon = BERRYJUICE WildItemRare = BERRYJUICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HERACROSS] Name = Heracross @@ -7014,12 +5736,6 @@ Habitat = Forest Category = Single Horn Pokedex = They gather in forests seeking the sweet sap of trees. It is completely clad in a steel-hard shell. It is proud of its horn, which it uses to fling foes. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNEASEL] Name = Sneasel @@ -7048,12 +5764,6 @@ Category = Sharp Claw Pokedex = A Sneasel scales trees by punching its hooked claws into the bark. It seeks out unguarded nests and steals eggs for food while the parents are away. Generation = 2 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WEAVILE,NightHoldItem,RAZORCLAW #------------------------------- [TEDDIURSA] @@ -7081,12 +5791,6 @@ Habitat = Mountain Category = Little Bear Pokedex = It licks its palms that are sweetened by being soaked in honey. A Teddiursa makes its own honey by blending fruits and pollen collected by Beedrill. Generation = 2 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = URSARING,Level,30 #------------------------------- [URSARING] @@ -7113,12 +5817,6 @@ Habitat = Mountain Category = Hibernator Pokedex = In forests, it is said that there are many streams and towering trees where an Ursaring gathers food. It walks through its forest collecting food every day. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SLUGMA] Name = Slugma @@ -7145,12 +5843,6 @@ Habitat = Mountain Category = Lava Pokedex = It is a species of Pokémon that lives in volcanic areas. If its body cools, its skin hardens and immobilizes it. To avoid that, it sleeps near magma. Generation = 2 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MAGCARGO,Level,38 #------------------------------- [MAGCARGO] @@ -7178,12 +5870,6 @@ Habitat = Mountain Category = Lava Pokedex = The shell on its back is made of hardened magma. Tens of thousands of years spent living in volcanic craters have turned Magcargo's bodies into magma. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWINUB] Name = Swinub @@ -7211,12 +5897,6 @@ Habitat = Cave Category = Pig Pokedex = It roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under dried grass. It occasionally roots out hot springs. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PILOSWINE,Level,33 #------------------------------- [PILOSWINE] @@ -7244,12 +5924,6 @@ Habitat = Cave Category = Swine Pokedex = A Piloswine is covered by a thick coat of long hair for enduring freezing cold. It uses its tusks to dig up food that has been buried under ice. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = MAMOSWINE,HasMove,ANCIENTPOWER #------------------------------- [CORSOLA] @@ -7279,12 +5953,6 @@ Category = Coral Pokedex = Corsola live in warm southern seas. If the sea becomes polluted, the beautiful coral stalks become discolored and crumble away in tatters. Generation = 2 WildItemUncommon = LUMINOUSMOSS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [REMORAID] Name = Remoraid @@ -7311,12 +5979,6 @@ Habitat = Sea Category = Jet Pokedex = A Remoraid uses its abdominal muscles to forcefully expel swallowed water, then shoot down flying prey. When evolution approaches, it travels down rivers. Generation = 2 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = OCTILLERY,Level,25 #------------------------------- [OCTILLERY] @@ -7343,12 +6005,6 @@ Habitat = Sea Category = Jet Pokedex = It ensnares its foe with its suction- cupped tentacles before delivering the finishing blow. If the foe turns out to be too strong, it spews ink to escape. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DELIBIRD] Name = Delibird @@ -7376,12 +6032,6 @@ Habitat = Mountain Category = Delivery Pokedex = It carries food bundled up in its tail. There was a famous explorer who managed to scale Mt. Everest thanks to a Delibird sharing its food. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTINE] Name = Mantine @@ -7409,12 +6059,6 @@ Habitat = Sea Category = Kite Pokedex = On sunny days, schools of Mantine can be seen elegantly leaping over the waves. It is not bothered by the Remoraid that hitches rides. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKARMORY] Name = Skarmory @@ -7443,12 +6087,6 @@ Category = Armor Bird Pokedex = A Pokémon that has a body and wings of steel. People in the past used feathers fallen from Skarmory to make swords and knives. Generation = 2 WildItemUncommon = METALCOAT -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOUNDOUR] Name = Houndour @@ -7476,12 +6114,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = Houndour communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is simply unparalleled. Generation = 2 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HOUNDOOM,Level,24 #------------------------------- [HOUNDOOM] @@ -7509,12 +6141,6 @@ Habitat = RoughTerrain Category = Dark Pokedex = In a Houndoom pack, the one with its horns raked sharply back serves a leadership role. They choose their leader by fighting among themselves. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KINGDRA] Name = Kingdra @@ -7542,12 +6168,6 @@ Category = Dragon Pokedex = It sleeps quietly, deep on the seafloor. When it comes up to the surface, it creates a huge whirlpool that can swallow even ships. Generation = 2 WildItemUncommon = DRAGONSCALE -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANPY] Name = Phanpy @@ -7574,12 +6194,6 @@ Habitat = RoughTerrain Category = Long Nose Pokedex = Phanpy's big ears serve as broad fans. When it becomes hot, it flaps the ears busily to cool down. Even the young are very strong. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DONPHAN,Level,25 #------------------------------- [DONPHAN] @@ -7606,12 +6220,6 @@ Habitat = RoughTerrain Category = Armor Pokedex = A Donphan is so strong it can easily haul a dump truck. Its hide has toughened to a rock-hard state. An ordinary sort of attack won't even leave a scratch. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGON2] Name = Porygon2 @@ -7637,12 +6245,6 @@ Habitat = Urban Category = Virtual Pokedex = It was created by humans using the power of science. It has been given artificial intelligence that enables it to learn new gestures and emotions on its own. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PORYGONZ,TradeItem,DUBIOUSDISC #------------------------------- [STANTLER] @@ -7670,12 +6272,6 @@ Habitat = Forest Category = Big Horn Pokedex = Stantler's magnificent antlers were once traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction. Generation = 2 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMEARGLE] Name = Smeargle @@ -7700,12 +6296,6 @@ Habitat = Urban Category = Painter Pokedex = A Smeargle marks its territory using a fluid that leaks out from the tip of its tail. About 5,000 different marks left by this Pokémon have been found. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYROGUE] Name = Tyrogue @@ -7732,12 +6322,6 @@ Habitat = Urban Category = Scuffle Pokedex = Tyrogue become stressed out if they do not get to train every day. When raising this Pokémon, the trainer must establish a regular training schedule. Generation = 2 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HITMONLEE,AttackGreater,20,HITMONCHAN,DefenseGreater,20,HITMONTOP,AtkDefEqual,20 #------------------------------- [HITMONTOP] @@ -7764,12 +6348,6 @@ Habitat = Urban Category = Handstand Pokedex = Its technique of kicking while spinning is a remarkable mix of both offense and defense. Hitmontop travel faster spinning than they do walking. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SMOOCHUM] Name = Smoochum @@ -7797,12 +6375,6 @@ Habitat = Urban Category = Kiss Pokedex = It actively runs about, but also falls often. Whenever it falls, it will check its reflection on a lake's surface to make sure its face hasn't become dirty. Generation = 2 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = JYNX,Level,30 #------------------------------- [ELEKID] @@ -7831,12 +6403,6 @@ Category = Electric Pokedex = If it touches metal and discharges the electricity it has stored in its body, an Elekid begins swinging its arms in circles to recharge itself. Generation = 2 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ELECTABUZZ,Level,30 #------------------------------- [MAGBY] @@ -7865,12 +6431,6 @@ Category = Live Coal Pokedex = If a Magby is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames. Generation = 2 WildItemUncommon = MAGMARIZER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MAGMAR,Level,30 #------------------------------- [MILTANK] @@ -7901,12 +6461,6 @@ Generation = 2 WildItemCommon = MOOMOOMILK WildItemUncommon = MOOMOOMILK WildItemRare = MOOMOOMILK -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLISSEY] Name = Blissey @@ -7935,12 +6489,6 @@ Generation = 2 WildItemCommon = LUCKYEGG WildItemUncommon = LUCKYEGG WildItemRare = LUCKYEGG -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [RAIKOU] Name = Raikou @@ -7966,12 +6514,6 @@ Habitat = Grassland Category = Thunder Pokedex = Raikou embodies the speed of lightning. Its roars send shock waves shuddering through the air and ground as if lightning bolts were crashing down. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ENTEI] Name = Entei @@ -7997,12 +6539,6 @@ Habitat = Grassland Category = Volcano Pokedex = Entei embodies the passion of magma. It is thought to have been born in the eruption of a volcano. It blasts fire that consumes all that it touches. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SUICUNE] Name = Suicune @@ -8028,12 +6564,6 @@ Habitat = Grassland Category = Aurora Pokedex = Suicune embodies the compassion of a pure spring of water. It runs across the land with gliding elegance. It has the power to purify dirty water. Generation = 2 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVITAR] Name = Larvitar @@ -8061,12 +6591,6 @@ Habitat = Mountain Category = Rock Skin Pokedex = A Larvitar is born deep under the ground. It must eat its way through the soil above and reach the surface for it to see its parents' faces. Generation = 2 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PUPITAR,Level,30 #------------------------------- [PUPITAR] @@ -8093,12 +6617,6 @@ Habitat = Mountain Category = Hard Shell Pokedex = A Pupitar creates a gas inside its body that it ejects under compression to propel itself like a jet. Its body can withstand a collision with solid steel. Generation = 2 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANITAR,Level,55 #------------------------------- [TYRANITAR] @@ -8126,12 +6644,6 @@ Habitat = Mountain Category = Armor Pokedex = A Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. It roams in mountains seeking new opponents to fight. Generation = 2 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUGIA] Name = Lugia @@ -8158,12 +6670,6 @@ Habitat = Rare Category = Diving Pokedex = Lugia is so powerful even a light fluttering of its wings can blow apart houses. As a result, it chooses to live out of sight deep under the sea. Generation = 2 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HOOH] Name = Ho-Oh @@ -8193,12 +6699,6 @@ Generation = 2 WildItemCommon = SACREDASH WildItemUncommon = SACREDASH WildItemRare = SACREDASH -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELEBI] Name = Celebi @@ -8227,12 +6727,6 @@ Generation = 2 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TREECKO] Name = Treecko @@ -8259,12 +6753,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = It makes its nest in a giant tree in the forest. It ferociously guards against anything nearing its territory. It is said to be the protector of the trees. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GROVYLE,Level,16 #------------------------------- [GROVYLE] @@ -8291,12 +6779,6 @@ Habitat = Forest Category = Wood Gecko Pokedex = Leaves grow out of this Pokémon's body. They help obscure a Grovyle from the eyes of its enemies while it is in a thickly overgrown forest. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCEPTILE,Level,36 #------------------------------- [SCEPTILE] @@ -8323,12 +6805,6 @@ Habitat = Forest Category = Forest Pokedex = In the jungle, its power is without equal. This Pokémon carefully grows trees and plants. It regulates its body temperature by basking in sunlight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORCHIC] Name = Torchic @@ -8355,12 +6831,6 @@ Habitat = Grassland Category = Chick Pokedex = If attacked, it strikes back by spitting balls of fire it forms in its stomach. A Torchic dislikes darkness because it can't see its surroundings. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COMBUSKEN,Level,16 #------------------------------- [COMBUSKEN] @@ -8388,12 +6858,6 @@ Habitat = Grassland Category = Young Fowl Pokedex = It lashes out with 10 kicks per second. Its strong fighting instinct compels it to keep up its offensive until the opponent gives up. Generation = 3 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BLAZIKEN,Level,36 #------------------------------- [BLAZIKEN] @@ -8421,12 +6885,6 @@ Habitat = Grassland Category = Blaze Pokedex = It learns martial arts that use punches and kicks. Every several years, its old feathers burn off, and new, supple feathers grow back in their place. Generation = 3 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUDKIP] Name = Mudkip @@ -8453,12 +6911,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = On land, it can powerfully lift large boulders by planting its four feet and heaving. It sleeps by burying itself in soil at the water's edge. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARSHTOMP,Level,16 #------------------------------- [MARSHTOMP] @@ -8486,12 +6938,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = Its toughened hind legs enable it to stand upright. Because it weakens if its skin dries out, it replenishes fluids by playing in mud. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWAMPERT,Level,36 #------------------------------- [SWAMPERT] @@ -8519,12 +6965,6 @@ Habitat = WatersEdge Category = Mud Fish Pokedex = If it senses the approach of a storm and a tidal wave, it protects its seaside nest by piling up boulders. It swims as fast as a jet ski. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [POOCHYENA] Name = Poochyena @@ -8551,12 +6991,6 @@ Habitat = Grassland Category = Bite Pokedex = It savagely threatens foes with bared fangs. It chases after fleeing targets tenaciously. It turns tail and runs, however, if the foe strikes back. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIGHTYENA,Level,18 #------------------------------- [MIGHTYENA] @@ -8583,12 +7017,6 @@ Habitat = Grassland Category = Bite Pokedex = In the wild, Mightyena live in a pack. They never defy their leader's orders. They defeat foes with perfectly coordinated teamwork. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZIGZAGOON] Name = Zigzagoon @@ -8617,12 +7045,6 @@ Pokedex = Rubbing its nose against the ground, it always wanders about back and Generation = 3 WildItemCommon = POTION WildItemUncommon = REVIVE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LINOONE,Level,20 #------------------------------- [LINOONE] @@ -8651,12 +7073,6 @@ Pokedex = It is exceedingly fast if it only has to run in a straight line. When Generation = 3 WildItemCommon = POTION WildItemUncommon = MAXREVIVE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WURMPLE] Name = Wurmple @@ -8684,12 +7100,6 @@ Pokedex = It sticks to tree branches and eats leaves. The thread it spits from i Generation = 3 WildItemCommon = PECHABERRY WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SILCOON,Silcoon,7,CASCOON,Cascoon,7 #------------------------------- [SILCOON] @@ -8715,12 +7125,6 @@ Habitat = Forest Category = Cocoon Pokedex = It prepares for evolution using the energy it stored while it was a Wurmple. It keeps watch over the surroundings with its two eyes. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEAUTIFLY,Level,10 #------------------------------- [BEAUTIFLY] @@ -8749,12 +7153,6 @@ Category = Butterfly Pokedex = Its colorfully patterned wings are its most prominent feature. It flies through flower-covered fields collecting pollen. It attacks ferociously when angered. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CASCOON] Name = Cascoon @@ -8779,12 +7177,6 @@ Habitat = Forest Category = Cocoon Pokedex = To avoid detection by its enemies, it hides motionlessly beneath large leaves and in the gaps of branches. It also attaches dead leaves to its body for camouflage. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSTOX,Level,10 #------------------------------- [DUSTOX] @@ -8813,12 +7205,6 @@ Category = Poison Moth Pokedex = It is a nocturnal Pokémon that flies from fields and mountains to the attraction of streetlights at night. It looses highly toxic powder from its wings. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LOTAD] Name = Lotad @@ -8847,12 +7233,6 @@ Category = Water Weed Pokedex = This Pokémon lives in ponds with clean water. It is known to ferry small Pokémon across ponds by carrying them on the broad leaf on its head. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LOMBRE,Level,14 #------------------------------- [LOMBRE] @@ -8881,12 +7261,6 @@ Category = Jolly Pokedex = In the evening, it takes great delight in popping out of rivers and startling people. It feeds on aquatic moss that grows on rocks in the riverbed. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUDICOLO,Item,WATERSTONE #------------------------------- [LUDICOLO] @@ -8915,12 +7289,6 @@ Category = Carefree Pokedex = When it hears festive music, all the cells in its body become stimulated, and it begins moving in rhythm. It does not quail even when it faces a tough opponent. Generation = 3 WildItemUncommon = MENTALHERB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEEDOT] Name = Seedot @@ -8948,12 +7316,6 @@ Category = Acorn Pokedex = It hangs off branches and absorbs nutrients. When it finishes eating, its body becomes so heavy that it drops to the ground with a thump. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = NUZLEAF,Level,14 #------------------------------- [NUZLEAF] @@ -8982,12 +7344,6 @@ Category = Wily Pokedex = A forest-dwelling Pokémon that is skilled at climbing trees. Its long and pointed nose is its weak point. It loses power if the nose is gripped. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SHIFTRY,Item,LEAFSTONE #------------------------------- [SHIFTRY] @@ -9016,12 +7372,6 @@ Category = Wicked Pokedex = It is said to arrive on chilly, wintry winds. Feared from long ago as the guardian of forests, this Pokémon lives in a deep forest where people do not venture. Generation = 3 WildItemUncommon = POWERHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TAILLOW] Name = Taillow @@ -9049,12 +7399,6 @@ Habitat = Grassland Category = Tiny Swallow Pokedex = Although it is small, it is very courageous. It will take on a larger Skarmory on an equal footing. However, its will weakens if it becomes hungry. Generation = 3 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWELLOW,Level,22 #------------------------------- [SWELLOW] @@ -9082,12 +7426,6 @@ Habitat = Grassland Category = Swallow Pokedex = A Swellow dives upon prey from far above. It never misses its targets. It takes to the skies in search of lands with a warm climate. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WINGULL] Name = Wingull @@ -9116,12 +7454,6 @@ Category = Seagull Pokedex = It makes its nest on a sheer cliff at the edge of the sea. It has trouble keeping its wings flapping in flight. Instead, it soars on updrafts. Generation = 3 WildItemCommon = PRETTYFEATHER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PELIPPER,Level,25 #------------------------------- [PELIPPER] @@ -9150,12 +7482,6 @@ Category = Water Bird Pokedex = It skims the tops of waves as it flies. When it spots prey, it uses its large beak to scoop up the victim with water. It protects its eggs in its beak. Generation = 3 WildItemCommon = PRETTYFEATHER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RALTS] Name = Ralts @@ -9183,12 +7509,6 @@ Habitat = Urban Category = Feeling Pokedex = A Ralts has the power to sense the emotions of people and Pokémon with the horns on its head. It takes cover if it senses any hostility. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KIRLIA,Level,20 #------------------------------- [KIRLIA] @@ -9216,12 +7536,6 @@ Habitat = Urban Category = Emotion Pokedex = A Kirlia has the psychic power to create a rip in the dimensions and see into the future. It is said to dance with pleasure on sunny mornings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GARDEVOIR,Level,30,GALLADE,ItemMale,DAWNSTONE #------------------------------- [GARDEVOIR] @@ -9249,12 +7563,6 @@ Habitat = Urban Category = Embrace Pokedex = It apparently does not feel the pull of gravity because it supports itself with psychic power. It will give its life to protect its trainer. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SURSKIT] Name = Surskit @@ -9283,12 +7591,6 @@ Category = Pond Skater Pokedex = They gather on puddles after evening downpours, gliding across the surface of water as if sliding. It secretes honey with a sweet aroma from its head. Generation = 3 WildItemCommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MASQUERAIN,Level,22 #------------------------------- [MASQUERAIN] @@ -9317,12 +7619,6 @@ Category = Eyeball Pokedex = It intimidates foes with the large eyelike patterns on its antennae. Because it can't fly if its wings get wet, it shelters from rain under large trees and eaves. Generation = 3 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = -8 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHROOMISH] Name = Shroomish @@ -9351,12 +7647,6 @@ Pokedex = It loves to eat damp, composted soil in forests. If you enter a forest Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRELOOM,Level,23 #------------------------------- [BRELOOM] @@ -9386,12 +7676,6 @@ Pokedex = It scatters spores from holes in the cap on its head. It loves warm an Generation = 3 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = -15 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SLAKOTH] Name = Slakoth @@ -9417,12 +7701,6 @@ Habitat = Forest Category = Slacker Pokedex = It sleeps virtually all day and night long. It doesn't change its nest its entire life, but it sometimes travels great distances by swimming in rivers. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = VIGOROTH,Level,18 #------------------------------- [VIGOROTH] @@ -9448,12 +7726,6 @@ Habitat = Forest Category = Wild Monkey Pokedex = It can't keep still because its blood boils with energy. It runs through the fields and mountains all day to calm itself. If it doesn't, it can't sleep at night. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLAKING,Level,36 #------------------------------- [SLAKING] @@ -9479,12 +7751,6 @@ Habitat = Forest Category = Lazy Pokedex = Hordes of Slaking gather around trees when fruits come into season. They wait around patiently for ripened fruits to fall out of the trees. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NINCADA] Name = Nincada @@ -9513,12 +7779,6 @@ Category = Trainee Pokedex = It makes its nest at the roots of a mighty tree. Using its whiskerlike antennae, it probes its surroundings in the pitch-black darkness of soil. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NINJASK,Ninjask,20,SHEDINJA,Shedinja,20 #------------------------------- [NINJASK] @@ -9546,12 +7806,6 @@ Habitat = Forest Category = Ninja Pokedex = Because it darts about vigorously at high speed, it is very difficult to see. Hearing its distinctive cries for too long induces a headache. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHEDINJA] Name = Shedinja @@ -9577,12 +7831,6 @@ Habitat = Forest Category = Shed Pokedex = A peculiar Pokémon that floats in air even though its wings remain completely still. The inside of its body is hollow and utterly dark. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WHISMUR] Name = Whismur @@ -9609,12 +7857,6 @@ Habitat = Cave Category = Whisper Pokedex = Its cries equal a jet plane in volume. It inhales through its ear canals. Because of this system, it can cry continually without having to catch its breath. Generation = 3 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOUDRED,Level,20 #------------------------------- [LOUDRED] @@ -9641,12 +7883,6 @@ Habitat = Cave Category = Big Voice Pokedex = It positions the round speakers on its head to assail foes with ultrasonic waves at massive volume. It builds power by stomping the ground. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = EXPLOUD,Level,40 #------------------------------- [EXPLOUD] @@ -9673,12 +7909,6 @@ Habitat = Cave Category = Loud Noise Pokedex = It has sound-generating organs all over its body. It communicates with others by adjusting the tone and volume of the cries it emits. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAKUHITA] Name = Makuhita @@ -9706,12 +7936,6 @@ Category = Guts Pokedex = It loves to toughen up its body above all else. If you hear quaking rumbles in a cave, it is the sound of Makuhita undertaking strenuous training. Generation = 3 WildItemUncommon = BLACKBELT -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HARIYAMA,Level,24 #------------------------------- [HARIYAMA] @@ -9739,12 +7963,6 @@ Category = Arm Thrust Pokedex = It has the habit of challenging others without hesitation to tests of strength. It's been known to stand on train tracks and stop trains using forearm thrusts. Generation = 3 WildItemUncommon = KINGSROCK -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AZURILL] Name = Azurill @@ -9772,12 +7990,6 @@ Habitat = WatersEdge Category = Polka Dot Pokedex = Its tail, which is packed with nutrition, is very bouncy like a rubber ball. On sunny days they gather at the edge of water and splash about for fun. Generation = 3 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 14 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MARILL,Happiness, Incense = SEAINCENSE #------------------------------- @@ -9807,12 +8019,6 @@ Category = Compass Pokedex = Its body emits a powerful magnetism. It feeds on prey that is pulled in by the force. Its magnetism is stronger in cold seasons. Generation = 3 WildItemUncommon = MAGNET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PROBOPASS,Item,THUNDERSTONE #------------------------------- [SKITTY] @@ -9840,12 +8046,6 @@ Habitat = Forest Category = Kitten Pokedex = A Skitty's adorably cute behavior makes it highly popular. In battle, it makes its tail puff out. It threatens foes with a sharp growl. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DELCATTY,Item,MOONSTONE #------------------------------- [DELCATTY] @@ -9872,12 +8072,6 @@ Habitat = Forest Category = Prim Pokedex = Rather than keeping a permanent lair, it habitually seeks comfortable spots and sleeps there. It is nocturnal and becomes active at dusk. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SABLEYE] Name = Sableye @@ -9906,12 +8100,6 @@ Category = Darkness Pokedex = It digs branching holes in caves using its sharp claws in search of food--raw gems. A Sableye lurks in darkness and is seen only rarely. Generation = 3 WildItemUncommon = WIDELENS -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAWILE] Name = Mawile @@ -9940,12 +8128,6 @@ Category = Deceiver Pokedex = Its giant jaws are actually steel horns that transformed. It fools foes into complacency with its adorable gestures, then chomps them with its huge jaws. Generation = 3 WildItemUncommon = IRONBALL -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARON] Name = Aron @@ -9974,12 +8156,6 @@ Category = Iron Armor Pokedex = A Pokémon that is clad in steel armor. A new suit of armor is made when it evolves. The old, discarded armor is salvaged as metal for making iron products. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAIRON,Level,32 #------------------------------- [LAIRON] @@ -10008,12 +8184,6 @@ Category = Iron Armor Pokedex = When two Lairon meet in the wild, they fight for territory by bashing into each other with their steel bodies. The sound of their collision carries for miles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = AGGRON,Level,42 #------------------------------- [AGGRON] @@ -10042,12 +8212,6 @@ Category = Iron Armor Pokedex = Its iron horns grow longer a little at a time. They are used to determine the Aggron's age. The gouges in its armor are worn with pride as mementos from battles. Generation = 3 WildItemUncommon = HARDSTONE -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MEDITITE] Name = Meditite @@ -10075,12 +8239,6 @@ Habitat = Mountain Category = Meditate Pokedex = It continually meditates for hours every day. As a result of rigorous and dedicated yoga training, it has tempered its spiritual power so much it can fly. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEDICHAM,Level,37 #------------------------------- [MEDICHAM] @@ -10108,12 +8266,6 @@ Habitat = Mountain Category = Meditate Pokedex = Through crushingly harsh yoga training, it gained the power to foretell its foe's actions. It battles with elegant, dance- like movement. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ELECTRIKE] Name = Electrike @@ -10140,12 +8292,6 @@ Habitat = Grassland Category = Lightning Pokedex = It generates electricity using friction from the atmosphere. In seasons with especially arid air, its entire body blazes with violent showers of sparks. Generation = 3 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANECTRIC,Level,26 #------------------------------- [MANECTRIC] @@ -10172,12 +8318,6 @@ Habitat = Grassland Category = Discharge Pokedex = Because lightning falls in their vicinities, Manectric were thought to have been born from lightning. In battle, they create thunderclouds. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PLUSLE] Name = Plusle @@ -10205,12 +8345,6 @@ Category = Cheering Pokedex = It has the trait of cheering on its fellow Pokémon. By shorting out the electricity it releases from its paws, it creates pom-poms for cheering. Generation = 3 WildItemUncommon = CELLBATTERY -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MINUN] Name = Minun @@ -10238,12 +8372,6 @@ Category = Cheering Pokedex = At a meeting of Pokémon academics, it was announced that simultaneous exposure to electricity from a Plusle and Minun will promote circulation and boost vitality. Generation = 3 WildItemUncommon = CELLBATTERY -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VOLBEAT] Name = Volbeat @@ -10271,12 +8399,6 @@ Category = Firefly Pokedex = With their taillights lit, Volbeat fly in a swarm, drawing geometric designs in the night sky. They move their nests if their pond water becomes dirty. Generation = 3 WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ILLUMISE] Name = Illumise @@ -10304,12 +8426,6 @@ Category = Firefly Pokedex = A nocturnal Pokémon that becomes active upon nightfall. It leads a Volbeat swarm to draw patterns in the night sky. Over 200 different patterns have been seen. Generation = 3 WildItemUncommon = BRIGHTPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROSELIA] Name = Roselia @@ -10338,12 +8454,6 @@ Category = Thorn Pokedex = A Roselia that drinks nutritionally rich springwater blooms with lovely flowers. The fragrance of its flowers has the effect of making its foes careless. Generation = 3 WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSERADE,Item,SHINYSTONE #------------------------------- [GULPIN] @@ -10373,12 +8483,6 @@ Pokedex = This Pokémon's stomach fluid can even digest scrap iron. In one gulp, Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWALOT,Level,26 #------------------------------- [SWALOT] @@ -10407,12 +8511,6 @@ Pokedex = Its powerful stomach acid is capable of digesting almost anything. The Generation = 3 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CARVANHA] Name = Carvanha @@ -10441,12 +8539,6 @@ Category = Savage Pokedex = Carvanha attack ships in swarms, making them sink. Although it is said to be a very vicious Pokémon, it timidly flees as soon as it finds itself alone. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHARPEDO,Level,30 #------------------------------- [SHARPEDO] @@ -10475,12 +8567,6 @@ Category = Brutal Pokedex = The vicious and sly gangster of the sea. Its skin is specially textured to minimize drag in water. Its speed tops out at over 75 miles per hour. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WAILMER] Name = Wailmer @@ -10507,12 +8593,6 @@ Habitat = Sea Category = Ball Whale Pokedex = While this Pokémon usually lives in the sea, it can survive on land, although not too long. It loses vitality if its body becomes dried out. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WAILORD,Level,40 #------------------------------- [WAILORD] @@ -10539,12 +8619,6 @@ Habitat = Sea Category = Float Whale Pokedex = It breathes through nostrils that it raises above the sea. By inhaling to its maximum capacity, a Wailord can dive close to 10,000 feet beneath the waves. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [NUMEL] Name = Numel @@ -10572,12 +8646,6 @@ Habitat = Mountain Category = Numb Pokedex = A Numel stores boiling magma in the hump on its back. It is a hardy Pokémon that can transport a 220-pound load. It has served humans at work since long ago. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CAMERUPT,Level,33 #------------------------------- [CAMERUPT] @@ -10605,12 +8673,6 @@ Habitat = Mountain Category = Eruption Pokedex = A Pokémon that lives in the crater of a volcano. Every 10 years, the volcanoes on its back erupt violently. Research is under way on the cause of eruption. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TORKOAL] Name = Torkoal @@ -10638,12 +8700,6 @@ Category = Coal Pokedex = It battles using energy it gets from burning coal. When loosing smoke from its nostrils, it lets off a sound that is similar to a locomotive's horn. Generation = 3 WildItemUncommon = CHARCOAL -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SPOINK] Name = Spoink @@ -10670,12 +8726,6 @@ Habitat = Mountain Category = Bounce Pokedex = A Pokémon that manipulates psychic power at will. It doesn't stop bouncing even when it is asleep. It loves eating mushrooms that grow underground. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRUMPIG,Level,32 #------------------------------- [GRUMPIG] @@ -10702,12 +8752,6 @@ Habitat = Mountain Category = Manipulate Pokedex = It stores power in the black pearls on its forehead. When it uses psychic power, it performs an odd dance step. Its style of dancing became hugely popular overseas. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPINDA] Name = Spinda @@ -10734,12 +8778,6 @@ Habitat = Mountain Category = Spot Panda Pokedex = It is distinguished by a pattern of spots that is always different. Its unsteady, tottering walk has the effect of fouling its foe's aim. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRAPINCH] Name = Trapinch @@ -10767,12 +8805,6 @@ Category = Ant Pit Pokedex = Its big jaws crunch through boulders. Because its head is so big, it has a hard time getting back upright if it tips over onto its back. Generation = 3 WildItemUncommon = SOFTSAND -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIBRAVA,Level,35 #------------------------------- [VIBRAVA] @@ -10799,12 +8831,6 @@ Habitat = RoughTerrain Category = Vibration Pokedex = It looses ultrasonic waves by rubbing its wings together. Since a Vibrava's wings are still in the process of growing, it can only fly short distances. Generation = 3 -BattlerPlayerX = -11 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLYGON,Level,45 #------------------------------- [FLYGON] @@ -10831,12 +8857,6 @@ Habitat = RoughTerrain Category = Mystic Pokedex = The flapping of its wings sounds like singing. To prevent detection by enemies, it hides itself by flapping up a cloud of desert sand. Generation = 3 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 11 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CACNEA] Name = Cacnea @@ -10864,12 +8884,6 @@ Category = Cactus Pokedex = Cacnea live in deserts with virtually no rainfall. It battles by swinging its thick, spiked arms. Once a year, a yellow flower blooms. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CACTURNE,Level,32 #------------------------------- [CACTURNE] @@ -10898,12 +8912,6 @@ Category = Scarecrow Pokedex = After spending thousands of years in harsh deserts, its blood transformed into the same substances as sand. It is nocturnal, so it hunts at night. Generation = 3 WildItemUncommon = STICKYBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SWABLU] Name = Swablu @@ -10931,12 +8939,6 @@ Habitat = Forest Category = Cotton Bird Pokedex = A Pokémon that has wings like cottony clouds. After enduring winter, in which little food is available, Swablu flocks move closer to towns in the spring. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ALTARIA,Level,35 #------------------------------- [ALTARIA] @@ -10964,12 +8966,6 @@ Habitat = Forest Category = Humming Pokedex = It hums in a beautiful soprano voice. It flies among white clouds in the blue sky. It launches intensely hot fireballs from its mouth. Generation = 3 -BattlerPlayerX = -10 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZANGOOSE] Name = Zangoose @@ -10997,12 +8993,6 @@ Category = Cat Ferret Pokedex = When it battles, it stands on its hind legs and attacks with its sharply clawed forelegs. Its fur bristles if it encounters any Seviper. Generation = 3 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SEVIPER] Name = Seviper @@ -11030,12 +9020,6 @@ Category = Fang Snake Pokedex = Seviper and Zangoose are eternal rivals. It counters a Zangoose's dazzling agility with its swordlike tail, which also oozes a horrible poison. Generation = 3 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUNATONE] Name = Lunatone @@ -11063,12 +9047,6 @@ Pokedex = It becomes very active on the night of a full moon. This Pokémon was Generation = 3 WildItemCommon = STARDUST WildItemUncommon = MOONSTONE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLROCK] Name = Solrock @@ -11096,12 +9074,6 @@ Pokedex = Solar energy is the source of this Pokémon's power. On sunny days, gr Generation = 3 WildItemCommon = STARDUST WildItemUncommon = SUNSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BARBOACH] Name = Barboach @@ -11129,12 +9101,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Its body is covered with a slimy film. The film acts as a barrier to prevent germs in muddy water from entering the Barboach's body. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHISCASH,Level,30 #------------------------------- [WHISCASH] @@ -11162,12 +9128,6 @@ Habitat = WatersEdge Category = Whiskers Pokedex = Mysteriously, it can foretell earthquakes. In the daytime, it sleeps in mud at the bottom of a pond. When it awakens, it continually feeds throughout the night. Generation = 3 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CORPHISH] Name = Corphish @@ -11194,12 +9154,6 @@ Habitat = WatersEdge Category = Ruffian Pokedex = Once it grips prey with its large pincers, it will never let go, no matter what. It is a hardy Pokémon that can thrive in any environment. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRAWDAUNT,Level,30 #------------------------------- [CRAWDAUNT] @@ -11227,12 +9181,6 @@ Habitat = WatersEdge Category = Rogue Pokedex = A brutish Pokémon that loves to battle. A veteran Crawdaunt that has prevailed in hundreds of battles has giant pincers marked with countless scars. Generation = 3 -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BALTOY] Name = Baltoy @@ -11259,12 +9207,6 @@ Category = Clay Doll Pokedex = A Baltoy moves by spinning on its single foot. It has been depicted in murals adorning the walls of a once-bustling city in an ancient age. Generation = 3 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CLAYDOL,Level,36 #------------------------------- [CLAYDOL] @@ -11292,12 +9234,6 @@ Category = Clay Doll Pokedex = A Claydol sleeps while hovering in midair. Its arms are separate from its body. They are kept floating by the Pokémon's manipulation of psychic power. Generation = 3 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LILEEP] Name = Lileep @@ -11326,12 +9262,6 @@ Category = Sea Lily Pokedex = It disguises itself as seaweed by making its tentacles sway. Unsuspecting prey that come too close are swallowed whole. It became extinct 100 million years ago. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRADILY,Level,40 #------------------------------- [CRADILY] @@ -11360,12 +9290,6 @@ Category = Barnacle Pokedex = It drags its heavy body along the seafloor. It makes its nest in the shallows of warm seas. Cradily can be seen on beaches when the tide goes out. Generation = 3 WildItemUncommon = BIGROOT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ANORITH] Name = Anorith @@ -11393,12 +9317,6 @@ Habitat = WatersEdge Category = Old Shrimp Pokedex = It was resurrected from a fossil using the power of science. It swims by undulating the wings at its sides. They were feet that adapted to life in the sea. Generation = 3 -BattlerPlayerX = 10 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARMALDO,Level,40 #------------------------------- [ARMALDO] @@ -11426,12 +9344,6 @@ Habitat = WatersEdge Category = Plate Pokedex = Armaldo usually lives on land. However, when it hunts for prey, it dives beneath the ocean. It swims around using its two large wings. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FEEBAS] Name = Feebas @@ -11458,12 +9370,6 @@ Habitat = WatersEdge Category = Fish Pokedex = Feebas live in ponds that are heavily infested with weeds. Because of its hopelessly shabby appearance, it seems as if few trainers raise it. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MILOTIC,Beauty,170,MILOTIC,TradeItem,PRISMSCALE #------------------------------- [MILOTIC] @@ -11490,12 +9396,6 @@ Habitat = WatersEdge Category = Tender Pokedex = It is said to live at the bottom of large lakes. Considered to be the most beautiful of all Pokémon, it has been depicted in paintings and statues. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CASTFORM] Name = Castform @@ -11525,12 +9425,6 @@ Generation = 3 WildItemCommon = MYSTICWATER WildItemUncommon = MYSTICWATER WildItemRare = MYSTICWATER -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [KECLEON] Name = Kecleon @@ -11557,12 +9451,6 @@ Habitat = Forest Category = Color Swap Pokedex = A Pokémon that has the ability to alter its body colors to match its surroundings. A Kecleon reverts to its original colors if it is startled. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHUPPET] Name = Shuppet @@ -11590,12 +9478,6 @@ Category = Puppet Pokedex = This Pokémon roams about deep in the night seeking such negative emotions as grudges and envy. It retreats to its nest when the sun begins to rise. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BANETTE,Level,37 #------------------------------- [BANETTE] @@ -11623,12 +9505,6 @@ Category = Marionette Pokedex = An abandoned plush doll became this Pokémon. They are said to live in garbage dumps and wander about in search of the children that threw them away. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DUSKULL] Name = Duskull @@ -11656,12 +9532,6 @@ Category = Requiem Pokedex = A glare from its single scarlet eye makes even burly grown-ups freeze in utter fear. It is a nocturnal Pokémon that roams about under the cloak of darkness. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DUSCLOPS,Level,37 #------------------------------- [DUSCLOPS] @@ -11689,12 +9559,6 @@ Category = Beckon Pokedex = It is thought that its body is hollow with only a spectral ball of fire burning inside. However, no one has been able to confirm this theory as fact. Generation = 3 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = DUSKNOIR,TradeItem,REAPERCLOTH #------------------------------- [TROPIUS] @@ -11723,12 +9587,6 @@ Habitat = Forest Category = Fruit Pokedex = It flies by flapping its broad leaves. The bunch of fruit that grows around its neck is deliciously sweet. In the spring, it scatters pollen from its neck. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMECHO] Name = Chimecho @@ -11755,12 +9613,6 @@ Category = Wind Chime Pokedex = They fly about very actively when the hot season arrives. They communicate among themselves using seven different and distinguishing cries. Generation = 3 WildItemUncommon = CLEANSETAG -BattlerPlayerX = 9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ABSOL] Name = Absol @@ -11787,12 +9639,6 @@ Habitat = Mountain Category = Disaster Pokedex = It sharply senses even subtle changes in the sky and the land to predict natural disasters. It is a long-lived Pokémon that has a life-span of 100 years. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WYNAUT] Name = Wynaut @@ -11818,12 +9664,6 @@ Habitat = Cave Category = Bright Pokedex = A Wynaut loves to eat sweet fruits. It cleverly picks fruits using its earlike arms. They gather in fruit gardens, drawn by the fragrance. Generation = 3 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WOBBUFFET,Level,15 Incense = LAXINCENSE #------------------------------- @@ -11853,12 +9693,6 @@ Category = Snow Hat Pokedex = They tend to move about in groups of around five Snorunt. In snowy regions, it is said that when they are seen late at night, snowfall will arrive by morning. Generation = 3 WildItemUncommon = SNOWBALL -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GLALIE,Level,42,FROSLASS,ItemFemale,DAWNSTONE #------------------------------- [GLALIE] @@ -11885,12 +9719,6 @@ Habitat = Cave Category = Face Pokedex = A Glalie has the power to instantaneously freeze moisture in the atmosphere. A dazzling cloud of diamondlike ice crystals forms around its body. Generation = 3 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPHEAL] Name = Spheal @@ -11918,12 +9746,6 @@ Habitat = Sea Category = Clap Pokedex = It is completely covered with plushy fur. As a result, it never feels the cold even when it is rolling about on ice floes or diving in the sea. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEALEO,Level,32 #------------------------------- [SEALEO] @@ -11951,12 +9773,6 @@ Habitat = Sea Category = Ball Roll Pokedex = Sealeo live in herds on ice floes. Using its powerful flippers, it shatters ice. It dives into the sea to hunt prey five times a day. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = WALREIN,Level,44 #------------------------------- [WALREIN] @@ -11984,12 +9800,6 @@ Habitat = Sea Category = Ice Break Pokedex = To protect its herd, the leader battles anything that invades its territory, even at the cost of its life. Its tusks may snap off in battle. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CLAMPERL] Name = Clamperl @@ -12018,12 +9828,6 @@ Pokedex = A Clamperl slams its shell closed on prey to prevent escape. The pearl Generation = 3 WildItemCommon = PEARL WildItemUncommon = BIGPEARL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HUNTAIL,TradeItem,DEEPSEATOOTH,GOREBYSS,TradeItem,DEEPSEASCALE #------------------------------- [HUNTAIL] @@ -12051,12 +9855,6 @@ Category = Deep Sea Pokedex = To withstand the crushing water pressure deep under the sea, its spine is very thick and sturdy. Its tail, which is shaped like a small fish, has eyes that light up. Generation = 3 WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOREBYSS] Name = Gorebyss @@ -12083,12 +9881,6 @@ Category = South Sea Pokedex = A Gorebyss siphons the body fluids of prey through its thin, tubular mouth. Its light pink body color turns vivid when it finishes feeding. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RELICANTH] Name = Relicanth @@ -12117,12 +9909,6 @@ Category = Longevity Pokedex = A Pokémon that was once believed to be extinct. The species has not changed its form for 100 million years. It walks on the seafloor using its pectoral fins. Generation = 3 WildItemUncommon = DEEPSEASCALE -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LUVDISC] Name = Luvdisc @@ -12150,12 +9936,6 @@ Category = Rendezvous Pokedex = Luvdisc make the branches of Corsola their nests. There is a custom from long ago of giving a Luvdisc as a gift to express one's feelings of love. Generation = 3 WildItemCommon = HEARTSCALE -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BAGON] Name = Bagon @@ -12183,12 +9963,6 @@ Category = Rock Head Pokedex = Although it is small, this Pokémon is very powerful because its body is a bundle of muscles. It launches head-butts with its ironlike skull. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHELGON,Level,30 #------------------------------- [SHELGON] @@ -12216,12 +9990,6 @@ Category = Endurance Pokedex = It hardly eats while it awaits evolution. It becomes hardier by enduring hunger. Its shell peels off the instant it begins to evolve. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = SALAMENCE,Level,50 #------------------------------- [SALAMENCE] @@ -12250,12 +10018,6 @@ Category = Dragon Pokedex = After many long years, its cellular structure underwent a sudden mutation to grow wings. When angered, it loses all thought and rampages out of control. Generation = 3 WildItemUncommon = DRAGONFANG -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BELDUM] Name = Beldum @@ -12283,12 +10045,6 @@ Category = Iron Ball Pokedex = When Beldum gather in a swarm, they move in perfect unison as if they were but one Pokémon. They communicate with each other using brain waves. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = METANG,Level,20 #------------------------------- [METANG] @@ -12317,12 +10073,6 @@ Category = Iron Claw Pokedex = The claws tipping its arms pack the destructive power to tear through thick iron sheets as if they were silk. It flies at over 60 miles per hour. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = METAGROSS,Level,45 #------------------------------- [METAGROSS] @@ -12351,12 +10101,6 @@ Category = Iron Leg Pokedex = Metagross has four brains that are joined by a complex neural network. As a result of integration, this Pokémon is smarter than a supercomputer. Generation = 3 WildItemUncommon = METALCOAT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIROCK] Name = Regirock @@ -12382,12 +10126,6 @@ Habitat = Cave Category = Rock Peak Pokedex = A Pokémon that is made entirely of rocks and boulders. If parts of its body chip off in battle, Regirock repairs itself by adding new rocks. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGICE] Name = Regice @@ -12413,12 +10151,6 @@ Habitat = Cave Category = Iceberg Pokedex = Its entire body is made of Antarctic ice. After extensive studies, researchers believe the ice was formed during an ice age. Generation = 3 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGISTEEL] Name = Registeel @@ -12444,12 +10176,6 @@ Habitat = Cave Category = Iron Pokedex = Its body is harder than any other kind of metal. The body metal is composed of a mysterious substance. Not only is it hard, it shrinks and stretches flexibly. Generation = 3 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LATIAS] Name = Latias @@ -12475,12 +10201,6 @@ Habitat = WatersEdge Category = Eon Pokedex = They make a small herd of only several members. They rarely make contact with people or other Pokémon. They disappear if they sense enemies. Generation = 3 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = -9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LATIOS] Name = Latios @@ -12506,12 +10226,6 @@ Habitat = WatersEdge Category = Eon Pokedex = Even in hiding, it can detect the locations of others and sense their emotions since it has telepathy. Its intelligence allows it to understand human languages. Generation = 3 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KYOGRE] Name = Kyogre @@ -12536,12 +10250,6 @@ Habitat = Sea Category = Sea Basin Pokedex = Kyogre has appeared in mythology as the creator of the sea. After long years of feuding with Groudon, it took to sleep at the bottom of the sea. Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GROUDON] Name = Groudon @@ -12566,12 +10274,6 @@ Habitat = RoughTerrain Category = Continent Pokedex = Groudon has appeared in mythology as the creator of the land. It sleeps in magma underground and is said to make volcanoes erupt on awakening. Generation = 3 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RAYQUAZA] Name = Rayquaza @@ -12597,12 +10299,6 @@ Habitat = Rare Category = Sky High Pokedex = A Pokémon that flies endlessly in the ozone layer. It is said it would descend to the ground if Kyogre and Groudon were to fight. Generation = 3 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [JIRACHI] Name = Jirachi @@ -12631,12 +10327,6 @@ Generation = 3 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DEOXYS] Name = Deoxys @@ -12662,12 +10352,6 @@ Category = DNA Pokedex = A Pokémon that mutated from an extraterrestrial virus exposed to a laser beam. Its body is configured for superior agility and speed. FormName = Normal Forme Generation = 3 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTWIG] Name = Turtwig @@ -12693,12 +10377,6 @@ Shape = Quadruped Category = Tiny Leaf Pokedex = Made from soil, the shell on its back hardens when it drinks water. It lives along lakes. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GROTLE,Level,18 #------------------------------- [GROTLE] @@ -12724,12 +10402,6 @@ Shape = Quadruped Category = Grove Pokedex = It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = TORTERRA,Level,32 #------------------------------- [TORTERRA] @@ -12756,12 +10428,6 @@ Shape = Quadruped Category = Continent Pokedex = Small Pokémon occasionally gather on its unmoving back to begin building their nests. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHIMCHAR] Name = Chimchar @@ -12787,12 +10453,6 @@ Shape = BipedalTail Category = Chimp Pokedex = It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MONFERNO,Level,14 #------------------------------- [MONFERNO] @@ -12819,12 +10479,6 @@ Shape = BipedalTail Category = Playful Pokedex = To intimidate attackers, it stretches the fire on its tail to make itself appear bigger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 10 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INFERNAPE,Level,36 #------------------------------- [INFERNAPE] @@ -12851,12 +10505,6 @@ Shape = BipedalTail Category = Flame Pokedex = It uses a special kind of martial arts involving all its limbs. Its fire never goes out. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PIPLUP] Name = Piplup @@ -12882,12 +10530,6 @@ Shape = Bipedal Category = Penguin Pokedex = Because it is very proud, it hates accepting food from people. Its thick down guards it from cold. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PRINPLUP,Level,16 #------------------------------- [PRINPLUP] @@ -12913,12 +10555,6 @@ Shape = BipedalTail Category = Penguin Pokedex = It lives alone, away from others. Apparently, every one of them believes it is the most important. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMPOLEON,Level,36 #------------------------------- [EMPOLEON] @@ -12945,12 +10581,6 @@ Shape = BipedalTail Category = Emperor Pokedex = The three horns that extend from its beak attest to its power. The leader has the biggest horns. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [STARLY] Name = Starly @@ -12977,12 +10607,6 @@ Shape = Winged Category = Starling Pokedex = They flock in great numbers. Though small, they flap their wings with great power. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = STARAVIA,Level,14 #------------------------------- [STARAVIA] @@ -13009,12 +10633,6 @@ Shape = Winged Category = Starling Pokedex = It flies around forests and fields in search of bug Pokémon. It stays within a huge flock. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STARAPTOR,Level,34 #------------------------------- [STARAPTOR] @@ -13041,12 +10659,6 @@ Shape = Winged Category = Predator Pokedex = It has a savage nature. It will courageously challenge foes that are much larger. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BIDOOF] Name = Bidoof @@ -13072,12 +10684,6 @@ Shape = Quadruped Category = Plump Mouse Pokedex = With nerves of steel, nothing can perturb it. It is more agile and active than it appears. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BIBAREL,Level,15 #------------------------------- [BIBAREL] @@ -13104,12 +10710,6 @@ Shape = BipedalTail Category = Beaver Pokedex = It makes its nest by damming streams with bark and mud. It is known as an industrious worker. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KRICKETOT] Name = Kricketot @@ -13135,12 +10735,6 @@ Category = Cricket Pokedex = It shakes its head back to front, causing its antennae to hit each other and sound like a xylophone. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = KRICKETUNE,Level,10 #------------------------------- [KRICKETUNE] @@ -13167,12 +10761,6 @@ Category = Cricket Pokedex = It crosses its knifelike arms in front of its chest when it cries. It can compose melodies ad lib. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHINX] Name = Shinx @@ -13198,12 +10786,6 @@ Shape = Quadruped Category = Flash Pokedex = All of its fur dazzles if danger is sensed. It flees while the foe is momentarily blinded. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXIO,Level,15 #------------------------------- [LUXIO] @@ -13229,12 +10811,6 @@ Shape = Quadruped Category = Spark Pokedex = Its claws loose electricity with enough amperage to cause fainting. They live in small groups. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUXRAY,Level,30 #------------------------------- [LUXRAY] @@ -13260,12 +10836,6 @@ Shape = Quadruped Category = Gleam Eyes Pokedex = It has eyes that can see through anything. It spots and captures prey hiding behind objects. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BUDEW] Name = Budew @@ -13293,12 +10863,6 @@ Category = Bud Pokedex = Over the winter, it closes its bud and endures the cold. In spring, the bud opens and releases pollen. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ROSELIA,HappinessDay, Incense = ROSEINCENSE #------------------------------- @@ -13327,12 +10891,6 @@ Category = Bouquet Pokedex = It attracts prey with a sweet aroma, then downs it with thorny whips hidden in its arms. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRANIDOS] Name = Cranidos @@ -13358,12 +10916,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = It lived in jungles around 100 million years ago. Its skull is as hard as iron. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RAMPARDOS,Level,30 #------------------------------- [RAMPARDOS] @@ -13389,12 +10941,6 @@ Shape = BipedalTail Category = Head Butt Pokedex = Its powerful head butt has enough power to shatter even the most durable things upon impact. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHIELDON] Name = Shieldon @@ -13421,12 +10967,6 @@ Shape = Quadruped Category = Shield Pokedex = A Pokémon that lived in jungles around 100 million years ago. Its facial hide is extremely hard. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BASTIODON,Level,30 #------------------------------- [BASTIODON] @@ -13453,12 +10993,6 @@ Shape = Quadruped Category = Shield Pokedex = Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries. Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BURMY] Name = Burmy @@ -13485,12 +11019,6 @@ Pokedex = To shelter itself from cold, wintry winds, it covers itself with a clo FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WORMADAM,LevelFemale,20,MOTHIM,LevelMale,20 #------------------------------- [WORMADAM] @@ -13520,12 +11048,6 @@ FormName = Plant Cloak Generation = 4 Flags = InheritFormFromMother WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MOTHIM] Name = Mothim @@ -13552,12 +11074,6 @@ Category = Moth Pokedex = It loves the honey of flowers and steals honey collected by Combee. Generation = 4 WildItemUncommon = SILVERPOWDER -BattlerPlayerX = 11 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [COMBEE] Name = Combee @@ -13584,12 +11100,6 @@ Category = Tiny Bee Pokedex = A Pokémon formed by three others. It busily carries sweet floral honey to Vespiquen. Generation = 4 WildItemUncommon = HONEY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VESPIQUEN,LevelFemale,21 #------------------------------- [VESPIQUEN] @@ -13617,12 +11127,6 @@ Category = Beehive Pokedex = Its abdomen is a honeycomb for grubs. It raises its grubs on honey collected by Combee. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PACHIRISU] Name = Pachirisu @@ -13648,12 +11152,6 @@ Shape = Quadruped Category = EleSquirrel Pokedex = It makes fur balls that crackle with static electricity. It stores them with berries in tree holes. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BUIZEL] Name = Buizel @@ -13679,12 +11177,6 @@ Shape = Quadruped Category = Sea Weasel Pokedex = It has a flotation sac that is like an inflatable collar. It floats on water with its head out. Generation = 4 -BattlerPlayerX = -12 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOATZEL,Level,26 #------------------------------- [FLOATZEL] @@ -13710,12 +11202,6 @@ Shape = Quadruped Category = Sea Weasel Pokedex = It floats using its well-developed flotation sac. It assists in the rescues of drowning people. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CHERUBI] Name = Cherubi @@ -13741,12 +11227,6 @@ Category = Cherry Pokedex = The small ball holds the nutrients needed for evolution. Apparently, it is very sweet and tasty. Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHERRIM,Level,25 #------------------------------- [CHERRIM] @@ -13773,12 +11253,6 @@ Pokedex = Its folded petals are pretty tough. Bird Pokémon can peck at them all FormName = Overcast Form Generation = 4 WildItemUncommon = MIRACLESEED -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SHELLOS] Name = Shellos @@ -13806,12 +11280,6 @@ Pokedex = This Pokémon's habitat shapes its physique. According to some theorie FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GASTRODON,Level,30 #------------------------------- [GASTRODON] @@ -13840,12 +11308,6 @@ Pokedex = Its search for food sometimes leads it onto land, where it leaves behi FormName = West Sea Generation = 4 Flags = InheritFormFromMother -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AMBIPOM] Name = Ambipom @@ -13870,12 +11332,6 @@ Shape = BipedalTail Category = Long Tail Pokedex = To eat, it deftly shucks nuts with its two tails. It rarely uses its arms now. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRIFLOON] Name = Drifloon @@ -13902,12 +11358,6 @@ Shape = HeadArms Category = Balloon Pokedex = A Pokémon formed by the spirits of people and Pokémon. It loves damp, humid seasons. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRIFBLIM,Level,28 #------------------------------- [DRIFBLIM] @@ -13934,12 +11384,6 @@ Shape = HeadArms Category = Blimp Pokedex = It's drowzy in daytime, but flies off in the evening in big groups. No one knows where they go. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNEARY] Name = Buneary @@ -13965,12 +11409,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = It slams foes by sharply uncoiling its rolled ears. It stings enough to make a grown-up cry in pain. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LOPUNNY,Happiness, #------------------------------- [LOPUNNY] @@ -13996,12 +11434,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = An extremely cautious Pokémon. It cloaks its body with its fluffy ear fur when it senses danger. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MISMAGIUS] Name = Mismagius @@ -14025,12 +11457,6 @@ Shape = Head Category = Magical Pokedex = Its cries sound like incantations. Those hearing it are tormented by headaches and hallucinations. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONCHKROW] Name = Honchkrow @@ -14056,12 +11482,6 @@ Shape = Winged Category = Big Boss Pokedex = Becoming active at night, it is known to swarm with numerous Murkrow in tow. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLAMEOW] Name = Glameow @@ -14087,12 +11507,6 @@ Shape = Quadruped Category = Catty Pokedex = It claws if displeased and purrs when affectionate. Its fickleness is very popular among some. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PURUGLY,Level,38 #------------------------------- [PURUGLY] @@ -14118,12 +11532,6 @@ Shape = Quadruped Category = Tiger Cat Pokedex = It is a brazen brute that barges its way into another Pokémon's nest and claims it as its own. Generation = 4 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHINGLING] Name = Chingling @@ -14149,12 +11557,6 @@ Category = Bell Pokedex = It emits cries by agitating an orb at the back of its throat. It moves with flouncing hops. Generation = 4 WildItemUncommon = CLEANSETAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHIMECHO,HappinessNight, Incense = PUREINCENSE #------------------------------- @@ -14183,12 +11585,6 @@ Shape = Quadruped Category = Skunk Pokedex = It protects itself by spraying a noxious fluid from its rear. The stench lingers for 24 hours. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SKUNTANK,Level,34 #------------------------------- [SKUNTANK] @@ -14215,12 +11611,6 @@ Shape = Quadruped Category = Skunk Pokedex = It sprays a vile-smelling fluid from the tip of its tail to attack. Its range is over 160 feet. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BRONZOR] Name = Bronzor @@ -14247,12 +11637,6 @@ Category = Bronze Pokedex = Implements shaped like it were discovered in ancient tombs. It is unknown if they are related. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRONZONG,Level,33 #------------------------------- [BRONZONG] @@ -14280,12 +11664,6 @@ Category = Bronze Bell Pokedex = One caused a news sensation when it was dug up at a construction site after a 2,000-year sleep. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [BONSLY] Name = Bonsly @@ -14311,12 +11689,6 @@ Shape = HeadLegs Category = Bonsai Pokedex = It looks as if it is always crying. It is actually adjusting its body's fluid levels by eliminating excess. Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SUDOWOODO,HasMove,MIMIC Incense = ROCKINCENSE #------------------------------- @@ -14345,12 +11717,6 @@ Shape = Bipedal Category = Mime Pokedex = It habitually mimics foes. Once mimicked, the foe cannot take its eyes off this Pokémon. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MRMIME,HasMove,MIMIC Incense = ODDINCENSE #------------------------------- @@ -14379,12 +11745,6 @@ Category = Playhouse Pokedex = It loves round white things. It carries an egg-shaped rock in imitation of Chansey. Generation = 4 WildItemCommon = OVALSTONE -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANSEY,DayHoldItem,OVALSTONE Incense = LUCKINCENSE #------------------------------- @@ -14414,12 +11774,6 @@ Category = Music Note Pokedex = It can learn and speak human words. If they gather, they all learn the same saying. Generation = 4 WildItemUncommon = METRONOME -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPIRITOMB] Name = Spiritomb @@ -14446,12 +11800,6 @@ Shape = HeadBase Category = Forbidden Pokedex = A Pokémon that was formed by 108 spirits. It is bound to a fissure in an odd keystone. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GIBLE] Name = Gible @@ -14478,12 +11826,6 @@ Shape = BipedalTail Category = Land Shark Pokedex = It nests in small, horizontal holes in cave walls. It pounces to catch prey that stray too close. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GABITE,Level,24 #------------------------------- [GABITE] @@ -14510,12 +11852,6 @@ Shape = BipedalTail Category = Cave Pokedex = There is a long-held belief that medicine made from its scales will heal even incurable illnesses. Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GARCHOMP,Level,48 #------------------------------- [GARCHOMP] @@ -14542,12 +11878,6 @@ Shape = BipedalTail Category = Mach Pokedex = When it folds up its body and extends its wings, it looks like a jet plane. It flies at sonic speed. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MUNCHLAX] Name = Munchlax @@ -14576,12 +11906,6 @@ Generation = 4 WildItemCommon = LEFTOVERS WildItemUncommon = LEFTOVERS WildItemRare = LEFTOVERS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SNORLAX,Happiness, Incense = FULLINCENSE #------------------------------- @@ -14609,12 +11933,6 @@ Shape = BipedalTail Category = Emanation Pokedex = The aura that emanates from its body intensifies to alert others if it is afraid or sad. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LUCARIO,HappinessDay, #------------------------------- [LUCARIO] @@ -14641,12 +11959,6 @@ Shape = BipedalTail Category = Aura Pokedex = It has the ability to sense the auras of all things. It understands human speech. Generation = 4 -BattlerPlayerX = 8 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HIPPOPOTAS] Name = Hippopotas @@ -14672,12 +11984,6 @@ Shape = Quadruped Category = Hippo Pokedex = It lives in arid places. Instead of perspiration, it expels grainy sand from its body. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HIPPOWDON,Level,34 #------------------------------- [HIPPOWDON] @@ -14703,12 +12009,6 @@ Shape = Quadruped Category = Heavyweight Pokedex = It blasts internally stored sand from ports on its body to create a towering twister for attack. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SKORUPI] Name = Skorupi @@ -14736,12 +12036,6 @@ Category = Scorpion Pokedex = It grips prey with its tail claws and injects poison. It tenaciously hangs on until the poison takes. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAPION,Level,40 #------------------------------- [DRAPION] @@ -14769,12 +12063,6 @@ Category = Ogre Scorpion Pokedex = It has the power in its clawed arms to make scrap of a car. The tips of its claws release poison. Generation = 4 WildItemUncommon = POISONBARB -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -11 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CROAGUNK] Name = Croagunk @@ -14802,12 +12090,6 @@ Category = Toxic Mouth Pokedex = Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXICROAK,Level,37 #------------------------------- [TOXICROAK] @@ -14835,12 +12117,6 @@ Category = Toxic Mouth Pokedex = Its knuckle claws secrete a toxin so vile that even a scratch could prove fatal. Generation = 4 WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARNIVINE] Name = Carnivine @@ -14865,12 +12141,6 @@ Shape = Multiped Category = Bug Catcher Pokedex = It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey. Generation = 4 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FINNEON] Name = Finneon @@ -14896,12 +12166,6 @@ Shape = Finned Category = Wing Fish Pokedex = After long exposure to sunlight, the patterns on its tail fins shine vividly when darkness arrives. Generation = 4 -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LUMINEON,Level,31 #------------------------------- [LUMINEON] @@ -14927,12 +12191,6 @@ Shape = Finned Category = Neon Pokedex = It lives on the deep-sea floor. It attracts prey by flashing the patterns on its four tail fins. Generation = 4 -BattlerPlayerX = -8 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = -4 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MANTYKE] Name = Mantyke @@ -14959,12 +12217,6 @@ Shape = Winged Category = Kite Pokedex = A friendly Pokémon that captures the subtle flows of seawater using its two antennae. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -3 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANTINE,HasInParty,REMORAID Incense = WAVEINCENSE #------------------------------- @@ -14994,12 +12246,6 @@ Category = Frost Tree Pokedex = It lives on snowy mountains. Having had little contact with humans, it is boldly inquisitive. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ABOMASNOW,Level,40 #------------------------------- [ABOMASNOW] @@ -15027,12 +12273,6 @@ Category = Frost Tree Pokedex = It whips up blizzards in mountains that are always buried in snow. It is the abominable snowman. Generation = 4 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WEAVILE] Name = Weavile @@ -15059,12 +12299,6 @@ Category = Sharp Claw Pokedex = They live in cold regions, forming groups of four or five that hunt prey with impressive coordination. Generation = 4 WildItemUncommon = QUICKCLAW -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGNEZONE] Name = Magnezone @@ -15091,12 +12325,6 @@ Category = Magnet Area Pokedex = It evolved from exposure to a special magnetic field. Three units generate magnetism. Generation = 4 WildItemUncommon = METALCOAT -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LICKILICKY] Name = Lickilicky @@ -15122,12 +12350,6 @@ Category = Licking Pokedex = It wraps things with its extensible tongue. Getting too close to it will leave you soaked with drool. Generation = 4 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RHYPERIOR] Name = Rhyperior @@ -15153,12 +12375,6 @@ Shape = BipedalTail Category = Drill Pokedex = It puts rocks in holes in its palms and uses its muscles to shoot them. Geodude are shot at rare times. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TANGROWTH] Name = Tangrowth @@ -15183,12 +12399,6 @@ Shape = Bipedal Category = Vine Pokedex = It ensnares prey by extending arms made of vines. Losing arms to predators does not trouble it. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELECTIVIRE] Name = Electivire @@ -15214,12 +12424,6 @@ Category = Thunderbolt Pokedex = It pushes the tips of its two tails against the foe, then lets loose with over 20,000 volts of power. Generation = 4 WildItemUncommon = ELECTIRIZER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MAGMORTAR] Name = Magmortar @@ -15245,12 +12449,6 @@ Category = Blast Pokedex = It blasts fireballs of over 3,600 degrees F from the ends of its arms. It lives in volcanic craters. Generation = 4 WildItemUncommon = MAGMARIZER -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TOGEKISS] Name = Togekiss @@ -15276,12 +12474,6 @@ Shape = Winged Category = Jubilee Pokedex = It will never appear where there is strife. Its sightings have become rare recently. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YANMEGA] Name = Yanmega @@ -15308,12 +12500,6 @@ Category = Ogre Darner Pokedex = By churning its wings, it creates shock waves that inflict critical internal injuries to foes. Generation = 4 WildItemUncommon = WIDELENS -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LEAFEON] Name = Leafeon @@ -15338,12 +12524,6 @@ Shape = Quadruped Category = Verdant Pokedex = Just like a plant, it uses photosynthesis. As a result, it is always enveloped in clear air. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GLACEON] Name = Glaceon @@ -15368,12 +12548,6 @@ Shape = Quadruped Category = Fresh Snow Pokedex = As a protective technique, it can completely freeze its fur to make its hairs stand like needles. Generation = 4 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GLISCOR] Name = Gliscor @@ -15399,12 +12573,6 @@ Shape = Winged Category = Fang Scorpion Pokedex = It observes prey while hanging inverted from branches. When the chance presents itself, it swoops! Generation = 4 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAMOSWINE] Name = Mamoswine @@ -15430,12 +12598,6 @@ Shape = Quadruped Category = Twin Tusk Pokedex = Its impressive tusks are made of ice. The population thinned when it turned warm after the ice age. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PORYGONZ] Name = Porygon-Z @@ -15460,12 +12622,6 @@ Shape = HeadArms Category = Virtual Pokedex = Additional software was installed to make it a better Pokémon. It began acting oddly, however. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GALLADE] Name = Gallade @@ -15491,12 +12647,6 @@ Shape = Bipedal Category = Blade Pokedex = A master of courtesy and swordsmanship, it fights using extending swords on its elbows. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PROBOPASS] Name = Probopass @@ -15523,12 +12673,6 @@ Category = Compass Pokedex = It exudes strong magnetism from all over. It controls three small units called Mini-Noses. Generation = 4 WildItemUncommon = MAGNET -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DUSKNOIR] Name = Dusknoir @@ -15554,12 +12698,6 @@ Category = Gripper Pokedex = The antenna on its head captures radio waves from the world of spirits that command it to take people there. Generation = 4 WildItemUncommon = SPELLTAG -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FROSLASS] Name = Froslass @@ -15585,12 +12723,6 @@ Shape = HeadArms Category = Snow Land Pokedex = It freezes foes with an icy breath nearly -60 degrees F. What seems to be its body is actually hollow. Generation = 4 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROTOM] Name = Rotom @@ -15616,12 +12748,6 @@ Category = Plasma Pokedex = Its body is composed of plasma. It is known to infiltrate electronic devices and wreak havoc. FormName = Rotom Generation = 4 -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = -1 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [UXIE] Name = Uxie @@ -15645,12 +12771,6 @@ Shape = BipedalTail Category = Knowledge Pokedex = Known as "The Being of Knowledge." It is said that it can wipe out the memory of those who see its eyes. Generation = 4 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MESPRIT] Name = Mesprit @@ -15674,12 +12794,6 @@ Shape = BipedalTail Category = Emotion Pokedex = Known as "The Being of Emotion." It taught humans the nobility of sorrow, pain, and joy. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [AZELF] Name = Azelf @@ -15703,12 +12817,6 @@ Shape = BipedalTail Category = Willpower Pokedex = Known as "The Being of Willpower." It sleeps at the bottom of a lake to keep the world in balance. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DIALGA] Name = Dialga @@ -15734,12 +12842,6 @@ Shape = Quadruped Category = Temporal Pokedex = It has the power to control time. It appears in Sinnoh-region myths as an ancient deity. Generation = 4 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PALKIA] Name = Palkia @@ -15765,12 +12867,6 @@ Shape = BipedalTail Category = Spatial Pokedex = It has the ability to distort space. It is described as a deity in Sinnoh-region mythology. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [HEATRAN] Name = Heatran @@ -15796,12 +12892,6 @@ Shape = Quadruped Category = Lava Dome Pokedex = It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls. Generation = 4 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [REGIGIGAS] Name = Regigigas @@ -15825,12 +12915,6 @@ Shape = Bipedal Category = Colossal Pokedex = There is an enduring legend that states this Pokémon towed continents with ropes. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GIRATINA] Name = Giratina @@ -15857,12 +12941,6 @@ Category = Renegade Pokedex = A Pokémon that is said to live in a world on the reverse side of ours. It appears in an ancient cemetery. FormName = Altered Forme Generation = 4 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRESSELIA] Name = Cresselia @@ -15886,12 +12964,6 @@ Shape = Serpentine Category = Lunar Pokedex = Shiny particles are released from its wings like a veil. It is said to represent the crescent moon. Generation = 4 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = -5 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHIONE] Name = Phione @@ -15915,12 +12987,6 @@ Shape = HeadArms Category = Sea Drifter Pokedex = A Pokémon that lives in warm seas. It inflates the flotation sac on its head to drift and search for food. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MANAPHY] Name = Manaphy @@ -15944,12 +13010,6 @@ Shape = Bipedal Category = Seafaring Pokedex = Born on a cold seafloor, it will swim great distances to return to its birthplace. Generation = 4 -BattlerPlayerX = -9 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DARKRAI] Name = Darkrai @@ -15973,12 +13033,6 @@ Shape = Bipedal Category = Pitch-Black Pokedex = It can lull people to sleep and make them dream. It is active during nights of the new moon. Generation = 4 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 1 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SHAYMIN] Name = Shaymin @@ -16006,12 +13060,6 @@ Generation = 4 WildItemCommon = LUMBERRY WildItemUncommon = LUMBERRY WildItemRare = LUMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCEUS] Name = Arceus @@ -16036,12 +13084,6 @@ Category = Alpha Pokedex = It is described in mythology as the Pokémon that shaped the universe with its 1,000 arms. FormName = Normal Type Generation = 4 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VICTINI] Name = Victini @@ -16066,12 +13108,6 @@ Shape = Bipedal Category = Victory Pokedex = This Pokémon brings victory. It is said that Trainers with Victini always win, regardless of the type of encounter. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SNIVY] Name = Snivy @@ -16097,12 +13133,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They photosynthesize by bathing their tails in sunlight. When they are not feeling well, their tails droop. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SERVINE,Level,17 #------------------------------- [SERVINE] @@ -16128,12 +13158,6 @@ Shape = BipedalTail Category = Grass Snake Pokedex = They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SERPERIOR,Level,36 #------------------------------- [SERPERIOR] @@ -16159,12 +13183,6 @@ Shape = Serpentine Category = Regal Pokedex = They raise their heads to intimidate opponents, but only give it their all when fighting a powerful opponent. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TEPIG] Name = Tepig @@ -16190,12 +13208,6 @@ Shape = Quadruped Category = Fire Pig Pokedex = It blows fire through its nose. When it catches a cold, the fire becomes pitch-black smoke instead. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PIGNITE,Level,17 #------------------------------- [PIGNITE] @@ -16222,12 +13234,6 @@ Shape = BipedalTail Category = Fire Pig Pokedex = Whatever it eats becomes fuel for the flame in its stomach. When it is angered, the intensity of the flame increases. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EMBOAR,Level,36 #------------------------------- [EMBOAR] @@ -16254,12 +13260,6 @@ Shape = BipedalTail Category = Mega Fire Pig Pokedex = It can throw a fire punch by setting its fists on fire with its fiery chin. It cares deeply about its friends. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [OSHAWOTT] Name = Oshawott @@ -16285,12 +13285,6 @@ Shape = BipedalTail Category = Sea Otter Pokedex = The scalchop on its stomach is made from the same elements as claws. It detaches the scalchop for use as a blade. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DEWOTT,Level,17 #------------------------------- [DEWOTT] @@ -16316,12 +13310,6 @@ Shape = BipedalTail Category = Discipline Pokedex = Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SAMUROTT,Level,36 #------------------------------- [SAMUROTT] @@ -16347,12 +13335,6 @@ Shape = Quadruped Category = Formidable Pokedex = Part of the armor on its anterior legs becomes a giant sword. Its cry alone is enough to intimidate most enemies. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PATRAT] Name = Patrat @@ -16378,12 +13360,6 @@ Shape = Quadruped Category = Scout Pokedex = Extremely cautious, they take shifts to maintain a constant watch of their nest. They feel insecure without a lookout. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = WATCHOG,Level,20 #------------------------------- [WATCHOG] @@ -16409,12 +13385,6 @@ Shape = BipedalTail Category = Lookout Pokedex = They make the patterns on their bodies shine in order to threaten predators. Keen eyesight lets them see in the dark. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LILLIPUP] Name = Lillipup @@ -16440,12 +13410,6 @@ Shape = Quadruped Category = Puppy Pokedex = The long hair around its face provides an amazing radar that lets it sense subtle changes in its surroundings. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HERDIER,Level,16 #------------------------------- [HERDIER] @@ -16471,12 +13435,6 @@ Shape = Quadruped Category = Loyal Dog Pokedex = It loyally follows its Trainer's orders. For ages, they have helped Trainers raise Pokémon. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STOUTLAND,Level,32 #------------------------------- [STOUTLAND] @@ -16502,12 +13460,6 @@ Shape = Quadruped Category = Big-Hearted Pokedex = This extremely wise Pokémon excels at rescuing people stranded at sea or in the mountains. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PURRLOIN] Name = Purrloin @@ -16533,12 +13485,6 @@ Shape = Quadruped Category = Devious Pokedex = Its cute act is a ruse. When victims let down their guard, they find their items taken. It attacks with sharp claws. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LIEPARD,Level,20 #------------------------------- [LIEPARD] @@ -16564,12 +13510,6 @@ Shape = Quadruped Category = Cruel Pokedex = Stealthily, it sneaks up on its target, striking from behind before its victim has a chance to react. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PANSAGE] Name = Pansage @@ -16595,12 +13535,6 @@ Shape = BipedalTail Category = Grass Monkey Pokedex = It shares the leaf on its head with weary-looking Pokémon. These leaves are known to relieve stress. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISAGE,Item,LEAFSTONE #------------------------------- [SIMISAGE] @@ -16626,12 +13560,6 @@ Shape = BipedalTail Category = Thorn Monkey Pokedex = Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANSEAR] Name = Pansear @@ -16657,12 +13585,6 @@ Shape = BipedalTail Category = High Temp Pokedex = This Pokémon lives in caves in volcanoes. The fire within the tuft on its head can reach 600º F. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMISEAR,Item,FIRESTONE #------------------------------- [SIMISEAR] @@ -16688,12 +13610,6 @@ Shape = BipedalTail Category = Ember Pokedex = A flame burns inside its body. It scatters embers from its head and tail to sear its opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANPOUR] Name = Panpour @@ -16719,12 +13635,6 @@ Shape = BipedalTail Category = Spray Pokedex = It does not thrive in dry environments. It keeps itself damp by shooting water stored in its head tuft from its tail. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 8 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SIMIPOUR,Item,WATERSTONE #------------------------------- [SIMIPOUR] @@ -16750,12 +13660,6 @@ Shape = BipedalTail Category = Geyser Pokedex = The high-pressure water expelled from its tail is so powerful, it can destroy a concrete wall. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUNNA] Name = Munna @@ -16781,12 +13685,6 @@ Shape = Quadruped Category = Dream Eater Pokedex = It eats the dreams of people and Pokémon. When it eats a pleasant dreams, it expels pink-colored mist. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 33 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MUSHARNA,Item,MOONSTONE #------------------------------- [MUSHARNA] @@ -16812,12 +13710,6 @@ Shape = Bipedal Category = Drowsing Pokedex = With the mist from its forehead, it can create shapes of things from dreams it has eaten. Generation = 5 -BattlerPlayerX = 6 -BattlerPlayerY = 0 -BattlerEnemyX = -9 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIDOVE] Name = Pidove @@ -16844,12 +13736,6 @@ Shape = Winged Category = Tiny Pigeon Pokedex = These Pokémon live in cities. They are accustomed to people. Flocks often gather in parks and plazas. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TRANQUILL,Level,21 #------------------------------- [TRANQUILL] @@ -16876,12 +13762,6 @@ Shape = Winged Category = Wild Pigeon Pokedex = Many people believe that, deep in the forest where Tranquill live, there is a peaceful place where there is no war. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = UNFEZANT,Level,32 #------------------------------- [UNFEZANT] @@ -16908,12 +13788,6 @@ Shape = Winged Category = Proud Pokedex = Males have plumage on their heads. They will never let themselves feel close to anyone other than their Trainers. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLITZLE] Name = Blitzle @@ -16939,12 +13813,6 @@ Shape = Quadruped Category = Electrified Pokedex = When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity. Generation = 5 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZEBSTRIKA,Level,27 #------------------------------- [ZEBSTRIKA] @@ -16970,12 +13838,6 @@ Shape = Quadruped Category = Thunderbolt Pokedex = This ill-tempered Pokémon is dangerous because when it's angry, it shoots lightning from its mane in all directions. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ROGGENROLA] Name = Roggenrola @@ -17003,12 +13865,6 @@ Pokedex = They were discovered a hundred years ago in an earthquake fissure. Ins Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BOLDORE,Level,25 #------------------------------- [BOLDORE] @@ -17036,12 +13892,6 @@ Pokedex = Because its energy was too great to be contained, the energy leaked an Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = GIGALITH,Trade, #------------------------------- [GIGALITH] @@ -17069,12 +13919,6 @@ Pokedex = The solar energy absorbed by its body's orange crystals is magnified i Generation = 5 WildItemCommon = EVERSTONE WildItemUncommon = HARDSTONE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [WOOBAT] Name = Woobat @@ -17101,12 +13945,6 @@ Shape = Winged Category = Bat Pokedex = Suction from its nostrils enables it to stick to cave walls during sleep. It leaves a heart-shaped mark behind. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SWOOBAT,Happiness, #------------------------------- [SWOOBAT] @@ -17133,12 +13971,6 @@ Shape = Winged Category = Courting Pokedex = Anyone who comes into contact with the ultrasonic waves emitted by a courting male experiences a positive mood shift. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRILBUR] Name = Drilbur @@ -17164,12 +13996,6 @@ Shape = BipedalTail Category = Mole Pokedex = It makes its way swiftly through the soil by putting both claws together and rotating at high speed. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EXCADRILL,Level,31 #------------------------------- [EXCADRILL] @@ -17196,12 +14022,6 @@ Shape = Bipedal Category = Subterrene Pokedex = More than 300 feet below the surface, they build mazelike nests. Their activity can be destructive to subway tunnels. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [AUDINO] Name = Audino @@ -17229,12 +14049,6 @@ Pokedex = Its auditory sense is astounding. It has a radar-like ability to under Generation = 5 WildItemCommon = ORANBERRY WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TIMBURR] Name = Timburr @@ -17260,12 +14074,6 @@ Shape = Bipedal Category = Muscular Pokedex = These Pokémon appear at building sites and help out with construction. They always carry squared logs. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GURDURR,Level,25 #------------------------------- [GURDURR] @@ -17291,12 +14099,6 @@ Shape = Bipedal Category = Muscular Pokedex = They strengthen their bodies by carrying steel beams. They show off their big muscles to their friends. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CONKELDURR,Trade, #------------------------------- [CONKELDURR] @@ -17322,12 +14124,6 @@ Shape = Bipedal Category = Muscular Pokedex = They use concrete pillars as walking canes. They know moves that enable them to swing the pillars freely in battle. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYMPOLE] Name = Tympole @@ -17353,12 +14149,6 @@ Shape = Finned Category = Tadpole Pokedex = By vibrating its cheeks, it emits sound waves imperceptible to humans. It uses the rhythm of these sounds to talk. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = PALPITOAD,Level,25 #------------------------------- [PALPITOAD] @@ -17385,12 +14175,6 @@ Shape = BipedalTail Category = Vibration Pokedex = It lives in the water and on land. It uses its long, sticky tongue to capture prey. Generation = 5 -BattlerPlayerX = -6 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SEISMITOAD,Level,36 #------------------------------- [SEISMITOAD] @@ -17417,12 +14201,6 @@ Shape = Bipedal Category = Vibration Pokedex = It increases the power of its punches by vibrating the bumps on its fists. It can turn a boulder to rubble with one punch. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THROH] Name = Throh @@ -17448,12 +14226,6 @@ Category = Judo Pokedex = When they encounter foes bigger than themselves, they try to throw them. They always travel in packs of five. Generation = 5 WildItemUncommon = BLACKBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SAWK] Name = Sawk @@ -17479,12 +14251,6 @@ Category = Karate Pokedex = Tying their belts gets them pumped and makes their punches more destructive. Disturbing their training angers them. Generation = 5 WildItemUncommon = BLACKBELT -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SEWADDLE] Name = Sewaddle @@ -17512,12 +14278,6 @@ Category = Sewing Pokedex = This Pokémon makes clothes for itself. It chews up leaves and sews them with sticky thread extruded from its mouth. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWADLOON,Level,20 #------------------------------- [SWADLOON] @@ -17545,12 +14305,6 @@ Category = Leaf-Wrapped Pokedex = It protects itself from the cold by wrapping up in leaves. It stays on the move, eating leaves in forests. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LEAVANNY,Happiness, #------------------------------- [LEAVANNY] @@ -17578,12 +14332,6 @@ Category = Nurturing Pokedex = It keeps its eggs warm with heat from fermenting leaves. It also uses leaves to make warm wrappings for Sewaddle. Generation = 5 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 7 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [VENIPEDE] Name = Venipede @@ -17611,12 +14359,6 @@ Category = Centipede Pokedex = It discovers what is going on around it by using the feelers on its head and tail. It is brutally aggresive. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIRLIPEDE,Level,22 #------------------------------- [WHIRLIPEDE] @@ -17644,12 +14386,6 @@ Category = Curlipede Pokedex = It is usually motionless, but when attacked, it rotates at high speed and then crashes into its opponent. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SCOLIPEDE,Level,30 #------------------------------- [SCOLIPEDE] @@ -17677,12 +14413,6 @@ Category = Megapede Pokedex = Highly aggressive, it uses the claws near its neck to dig into its opponents and poison them. Generation = 5 WildItemUncommon = POISONBARB -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COTTONEE] Name = Cottonee @@ -17710,12 +14440,6 @@ Category = Cotton Puff Pokedex = They go wherever the wind takes them. On rainy days, their bodies are heavier, so they take shelter beneath big trees. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = WHIMSICOTT,Item,SUNSTONE #------------------------------- [WHIMSICOTT] @@ -17743,12 +14467,6 @@ Category = Windveiled Pokedex = Riding whirlwinds, they appear. These Pokémon sneak through gaps into houses and cause all sorts of mischief. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PETILIL] Name = Petilil @@ -17775,12 +14493,6 @@ Category = Bulb Pokedex = Since they prefer moist, nutrient-rich soil, the areas where Petilil live are known to be good for growing plants. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LILLIGANT,Item,SUNSTONE #------------------------------- [LILLIGANT] @@ -17807,12 +14519,6 @@ Category = Flowering Pokedex = The fragrance of the garland on its head has a relaxing effect. It withers if a Trainer does not take good care of it. Generation = 5 WildItemUncommon = ABSORBBULB -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BASCULIN] Name = Basculin @@ -17841,12 +14547,6 @@ FormName = Red-Striped Generation = 5 Flags = InheritFormFromMother WildItemUncommon = DEEPSEATOOTH -BattlerPlayerX = -7 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDILE] Name = Sandile @@ -17874,12 +14574,6 @@ Category = Desert Croc Pokedex = It moves along below the sand's surface, except for its nose and eyes. A dark membrane shields its eyes from the sun. Generation = 5 WildItemUncommon = BLACKGLASSES -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 37 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KROKOROK,Level,29 #------------------------------- [KROKOROK] @@ -17907,12 +14601,6 @@ Category = Desert Croc Pokedex = The special membrane covering its eyes can sense the heat of objects, so it can see its surroundings, even in darkness. Generation = 5 WildItemUncommon = BLACKGLASSES -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KROOKODILE,Level,40 #------------------------------- [KROOKODILE] @@ -17940,12 +14628,6 @@ Category = Intimidation Pokedex = It can expand the focus of its eyes, enabling it to see objects in the far distance as if it were using binoculars. Generation = 5 WildItemCommon = BLACKGLASSES -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DARUMAKA] Name = Darumaka @@ -17971,12 +14653,6 @@ Shape = Bipedal Category = Zen Charm Pokedex = Darumaka's droppings are hot, so people used to put them in their clothes to keep themselves warm. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARMANITAN,Level,35 #------------------------------- [DARMANITAN] @@ -18003,12 +14679,6 @@ Category = Blazing Pokedex = When weakened in battle, it transforms into a stone statue. Then it sharpens its mind and fights on mentally. FormName = Standard Mode Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MARACTUS] Name = Maractus @@ -18035,12 +14705,6 @@ Category = Cactus Pokedex = Arid regions are their habitat. They move rhythmically, making a sound similar to maracas. Generation = 5 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DWEBBLE] Name = Dwebble @@ -18068,12 +14732,6 @@ Category = Rock Inn Pokedex = It makes a hole in a suitable rock. If that rock breaks, the Pokémon remains agitated until it locates a replacement. Generation = 5 WildItemUncommon = HARDSTONE -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRUSTLE,Level,34 #------------------------------- [CRUSTLE] @@ -18101,12 +14759,6 @@ Category = Stone Home Pokedex = It possesses legs of enormous strength, enabling it to carry heavy slabs for many days, even when crossing arid land. Generation = 5 WildItemUncommon = HARDSTONE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SCRAGGY] Name = Scraggy @@ -18134,12 +14786,6 @@ Category = Shedding Pokedex = It immediately headbutts anyone that makes eye contact with it. Its skull is massively thick. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 7 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SCRAFTY,Level,39 #------------------------------- [SCRAFTY] @@ -18167,12 +14813,6 @@ Category = Hoodlum Pokedex = It can smash concrete blocks with its kicking attacks. The one with the biggest crest is the group leader. Generation = 5 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SIGILYPH] Name = Sigilyph @@ -18199,12 +14839,6 @@ Shape = Winged Category = Avianoid Pokedex = The guardians of an ancient city, they use their psychic power to attack enemies that invade their territory. Generation = 5 -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = -6 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YAMASK] Name = Yamask @@ -18230,12 +14864,6 @@ Category = Spirit Pokedex = These Pokémon arose from the spirits of people interred in graves in past ages. Each retains memories of its former life. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COFAGRIGUS,Level,34 #------------------------------- [COFAGRIGUS] @@ -18261,12 +14889,6 @@ Category = Coffin Pokedex = They pretend to be elaborate coffins to teach lessons to grave robbers. Their bodies are covered in pure gold. Generation = 5 WildItemUncommon = SPELLTAG -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -5 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TIRTOUGA] Name = Tirtouga @@ -18293,12 +14915,6 @@ Shape = Quadruped Category = Prototurtle Pokedex = About 100 million years ago, these Pokémon swam in oceans. It is thought they also went on land to attack prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CARRACOSTA,Level,37 #------------------------------- [CARRACOSTA] @@ -18325,12 +14941,6 @@ Shape = BipedalTail Category = Prototurtle Pokedex = Incredible jaw strength enables them to chew up steel beams and rocks along with their prey. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ARCHEN] Name = Archen @@ -18356,12 +14966,6 @@ Shape = Winged Category = First Bird Pokedex = Revived from a fossil, this Pokémon is thought to be the ancestor of all bird Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ARCHEOPS,Level,37 #------------------------------- [ARCHEOPS] @@ -18387,12 +14991,6 @@ Shape = Winged Category = First Bird Pokedex = It runs better than it flies. It catches prey by running at speeds comparable to those of an automobile. Generation = 5 -BattlerPlayerX = 4 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TRUBBISH] Name = Trubbish @@ -18419,12 +15017,6 @@ Category = Trash Bag Pokedex = The combination of garbage bags and industrial waste caused the chemical reaction that crated this Pokémon. Generation = 5 WildItemUncommon = SILKSCARF -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 31 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GARBODOR,Level,36 #------------------------------- [GARBODOR] @@ -18452,12 +15044,6 @@ Pokedex = They absorb garbage and make it part of their bodies. They shoot a poi Generation = 5 WildItemCommon = SILKSCARF WildItemUncommon = BLACKSLUDGE -BattlerPlayerX = 5 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 16 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZORUA] Name = Zorua @@ -18482,12 +15068,6 @@ Shape = Quadruped Category = Tricky Fox Pokedex = To protect themselves from danger, they hide their true identities by transforming into people and Pokémon. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZOROARK,Level,30 #------------------------------- [ZOROARK] @@ -18512,12 +15092,6 @@ Shape = BipedalTail Category = Illusion Fox Pokedex = Each has the ability to fool a large group of people simultaneously. They protect their lair with illusory scenery. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [MINCCINO] Name = Minccino @@ -18543,12 +15117,6 @@ Shape = Quadruped Category = Chinchilla Pokedex = These Pokémon prefer a tidy habitat. They are always sweeping and dusting, using their tails as brooms. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CINCCINO,Item,SHINYSTONE #------------------------------- [CINCCINO] @@ -18574,12 +15142,6 @@ Shape = Quadruped Category = Scarf Pokedex = Their white fur feels amazing to touch. Their fur repels dust and prevents static electricity from building up. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOTHITA] Name = Gothita @@ -18605,12 +15167,6 @@ Shape = Bipedal Category = Fixation Pokedex = They intently observe both Trainers and Pokémon. Apparently, they are looking at something that only Gothita can see. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHORITA,Level,32 #------------------------------- [GOTHORITA] @@ -18636,12 +15192,6 @@ Shape = Bipedal Category = Manipulate Pokedex = Starlight is the source of their power. At night, they mark star positions by using psychic power to float stones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 24 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GOTHITELLE,Level,41 #------------------------------- [GOTHITELLE] @@ -18667,12 +15217,6 @@ Shape = Bipedal Category = Astral Body Pokedex = They can predict the future from the placement and movement of the stars. They can see Trainers' life spans. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SOLOSIS] Name = Solosis @@ -18698,12 +15242,6 @@ Shape = Head Category = Cell Pokedex = Because their bodies are enveloped in a special liquid, they can survive in any environment. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DUOSION,Level,32 #------------------------------- [DUOSION] @@ -18729,12 +15267,6 @@ Shape = Head Category = Mitosis Pokedex = When their brains, now divided in two, are thinking the same thoughts, these Pokémon exhibit their maximum power. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = REUNICLUS,Level,41 #------------------------------- [REUNICLUS] @@ -18760,12 +15292,6 @@ Shape = HeadArms Category = Multiplying Pokedex = These remarkably intelligent Pokémon fight by controlling arms that can grip with rock-crushing power. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DUCKLETT] Name = Ducklett @@ -18792,12 +15318,6 @@ Shape = Winged Category = Water Bird Pokedex = When attacked, it uses its feathers to splash water, escaping under cover of the spray. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SWANNA,Level,35 #------------------------------- [SWANNA] @@ -18824,12 +15344,6 @@ Shape = Winged Category = White Bird Pokedex = It administers sharp, powerful pecks with its bill. It whips its long neck to deliver forceful repeated strikes. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VANILLITE] Name = Vanillite @@ -18856,12 +15370,6 @@ Category = Fresh Snow Pokedex = This Pokémon formed from icicles bathed in energy from the morning sun. It sleeps buried in snow. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = VANILLISH,Level,35 #------------------------------- [VANILLISH] @@ -18888,12 +15396,6 @@ Category = Icy Snow Pokedex = It conceals itself from enemy eyes by creating many small ice particles and hiding among them. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VANILLUXE,Level,47 #------------------------------- [VANILLUXE] @@ -18920,12 +15422,6 @@ Category = Snowstorm Pokedex = If both heads get angry simultaneously, this Pokémon expels a blizzard, burying everything in snow. Generation = 5 WildItemCommon = NEVERMELTICE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEERLING] Name = Deerling @@ -18953,12 +15449,6 @@ Category = Season Pokedex = The turning of the seasons changes the color and scent of this Pokémon's fur. People use it to mark the seasons. FormName = Spring Form Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SAWSBUCK,Level,34 #------------------------------- [SAWSBUCK] @@ -18986,12 +15476,6 @@ Category = Season Pokedex = The plants growing on its horns change according to the season. The leaders of the herd possess magnificent horns. FormName = Spring Form Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [EMOLGA] Name = Emolga @@ -19018,12 +15502,6 @@ Shape = Quadruped Category = Sky Squirrel Pokedex = They live on treetops and glide using the inside of a cape-like membrane while discharging electricity. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARRABLAST] Name = Karrablast @@ -19049,12 +15527,6 @@ Shape = Bipedal Category = Clamping Pokedex = When they feel threatened, they spit an acidic liquid to drive attackers away. This Pokémon targets Shelmet. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ESCAVALIER,TradeSpecies,SHELMET #------------------------------- [ESCAVALIER] @@ -19081,12 +15553,6 @@ Shape = HeadArms Category = Cavalry Pokedex = These Pokémon evolve by wearing the shell covering of a Shelmet. The steel armor protects their whole body. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FOONGUS] Name = Foongus @@ -19115,12 +15581,6 @@ Pokedex = For some reason, this Pokémon resembles a Poké Ball. They release po Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = AMOONGUSS,Level,39 #------------------------------- [AMOONGUSS] @@ -19149,12 +15609,6 @@ Pokedex = They show off their Poké Ball caps to lure prey, but very few Pokémo Generation = 5 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 7 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 28 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FRILLISH] Name = Frillish @@ -19181,12 +15635,6 @@ Shape = Multiped Category = Floating Pokedex = They paralyze prey with poison, then drag them down to their lairs, five miles below the surface. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 5 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = JELLICENT,Level,40 #------------------------------- [JELLICENT] @@ -19213,12 +15661,6 @@ Shape = Multiped Category = Floating Pokedex = They propel themselves by expelling absorbed seawater from their bodies. Their favorite food is life energy. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ALOMOMOLA] Name = Alomomola @@ -19244,12 +15686,6 @@ Shape = Finned Category = Caring Pokedex = Floating in the open sea is how they live. When they find a wounded Pokémon, they embrace it and bring it to shore. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [JOLTIK] Name = Joltik @@ -19276,12 +15712,6 @@ Shape = Insectoid Category = Attaching Pokedex = They attach themselves to large-bodied Pokémon and absorb static electricity, which they store in an electric pouch. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GALVANTULA,Level,36 #------------------------------- [GALVANTULA] @@ -19308,12 +15738,6 @@ Shape = Insectoid Category = EleSpider Pokedex = They employ an electrically charged web to trap their prey. While it is immobilized by shock, they leisurely consume it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [FERROSEED] Name = Ferroseed @@ -19340,12 +15764,6 @@ Category = Thorn Seed Pokedex = They stick their spikes into cave walls and absorb the minerals they find in the rock. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FERROTHORN,Level,40 #------------------------------- [FERROTHORN] @@ -19373,12 +15791,6 @@ Category = Thorn Pod Pokedex = They attach themselves to cave ceilings, firing steel spikes at targets passing beneath them. Generation = 5 WildItemUncommon = STICKYBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLINK] Name = Klink @@ -19403,12 +15815,6 @@ Shape = MultiBody Category = Gear Pokedex = Interlocking two bodies and spinning around generates the energy they need to live. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KLANG,Level,38 #------------------------------- [KLANG] @@ -19434,12 +15840,6 @@ Shape = MultiBody Category = Gear Pokedex = Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don't return. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = KLINKLANG,Level,49 #------------------------------- [KLINKLANG] @@ -19465,12 +15865,6 @@ Shape = MultiBody Category = Gear Pokedex = The gear with the red core is rotated at high speed for a rapid energy charge. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TYNAMO] Name = Tynamo @@ -19494,12 +15888,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon move in schools. They have an electricity-generating organ, so they discharge electricity if in danger. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 19 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTRIK,Level,39 #------------------------------- [EELEKTRIK] @@ -19524,12 +15912,6 @@ Shape = Finned Category = EleFish Pokedex = These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = EELEKTROSS,Item,THUNDERSTONE #------------------------------- [EELEKTROSS] @@ -19554,12 +15936,6 @@ Shape = Finned Category = EleFish Pokedex = With their sucker mouths, they suck in prey. Then they use their fangs to shock the prey with electricity. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = -7 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ELGYEM] Name = Elgyem @@ -19585,12 +15961,6 @@ Shape = BipedalTail Category = Cerebral Pokedex = This Pokémon had never been seen until it appeared from far in the desert 50 years ago. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 27 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEHEEYEM,Level,42 #------------------------------- [BEHEEYEM] @@ -19616,12 +15986,6 @@ Shape = Bipedal Category = Cerebral Pokedex = It uses psychic power to control an opponent's brain and tamper with its memories. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 17 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [LITWICK] Name = Litwick @@ -19648,12 +16012,6 @@ Shape = HeadBase Category = Candle Pokedex = While shining a light and pretending to be a guide, it leeches off the life force of any who follow it. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = LAMPENT,Level,41 #------------------------------- [LAMPENT] @@ -19680,12 +16038,6 @@ Shape = HeadArms Category = Lamp Pokedex = It arrives near the moment of death and steals spirit from the body. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 13 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CHANDELURE,Item,DUSKSTONE #------------------------------- [CHANDELURE] @@ -19712,12 +16064,6 @@ Shape = HeadArms Category = Luring Pokedex = Being consumed in Chandelure's flame burns up the spirit, leaving the body behind. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AXEW] Name = Axew @@ -19743,12 +16089,6 @@ Shape = BipedalTail Category = Tusk Pokedex = They mark their territory by leaving gashes in trees with their tusks. If a tusk breaks, a new one grows in quickly. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 30 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FRAXURE,Level,38 #------------------------------- [FRAXURE] @@ -19774,12 +16114,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their tusks can shatter rocks. Territory battles between Fraxure can be intensely violent. Generation = 5 -BattlerPlayerX = -5 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HAXORUS,Level,48 #------------------------------- [HAXORUS] @@ -19805,12 +16139,6 @@ Shape = BipedalTail Category = Axe Jaw Pokedex = Their sturdy tusks will stay sharp even if used to cut steel beams. These Pokémon are covered in hard armor. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 9 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CUBCHOO] Name = Cubchoo @@ -19836,12 +16164,6 @@ Shape = BipedalTail Category = Chill Pokedex = Its nose is always running. It sniffs the snot back up because the mucus provides the raw material for its moves. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 32 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BEARTIC,Level,37 #------------------------------- [BEARTIC] @@ -19867,12 +16189,6 @@ Shape = Quadruped Category = Freezing Pokedex = It freezes its breath to create fangs and claws of ice to fight with. Cold northern areas are its habitat. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CRYOGONAL] Name = Cryogonal @@ -19897,12 +16213,6 @@ Category = Crystallizing Pokedex = They are born in snow clouds. They use chains made of ice crystals to capture prey. Generation = 5 WildItemUncommon = NEVERMELTICE -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 8 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [SHELMET] Name = Shelmet @@ -19928,12 +16238,6 @@ Shape = Head Category = Snail Pokedex = It evolves when bathed in an electric-like energy along with Karrablast. The reason is still unknown. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ACCELGOR,TradeSpecies,KARRABLAST #------------------------------- [ACCELGOR] @@ -19959,12 +16263,6 @@ Shape = HeadArms Category = Shell Out Pokedex = Having removed its heavy shell, it becomes very light and can fight with ninja-like movements. Generation = 5 -BattlerPlayerX = -4 -BattlerPlayerY = 0 -BattlerEnemyX = 4 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [STUNFISK] Name = Stunfisk @@ -19992,12 +16290,6 @@ Category = Trap Pokedex = It conceals itself in the mud of the seashore. Then it waits. When prey touch it, it delivers a jolt of energy. Generation = 5 WildItemUncommon = SOFTSAND -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIENFOO] Name = Mienfoo @@ -20023,12 +16315,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They have mastered elegant combos. As they concentrate, their battle moves become swifter and more precise. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 25 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MIENSHAO,Level,50 #------------------------------- [MIENSHAO] @@ -20054,12 +16340,6 @@ Shape = BipedalTail Category = Martial Arts Pokedex = They use the long fur on their arms as a whip to strike their opponents. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRUDDIGON] Name = Druddigon @@ -20086,12 +16366,6 @@ Category = Cave Pokedex = It races through narrow caves, using its sharp claws to catch prey. Then skin on its face is harder than a rock. Generation = 5 WildItemUncommon = DRAGONFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [GOLETT] Name = Golett @@ -20118,12 +16392,6 @@ Category = Automaton Pokedex = These Pokémon are thought to have been created by the science of an ancient and mysterious civilization. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLURK,Level,43 #------------------------------- [GOLURK] @@ -20151,12 +16419,6 @@ Category = Automaton Pokedex = It is said that Golurk were ordered to protect people and Pokémon by the ancient people who made them. Generation = 5 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 10 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [PAWNIARD] Name = Pawniard @@ -20183,12 +16445,6 @@ Shape = Bipedal Category = Sharp Blade Pokedex = They fight at Bisharp's command. They cling to their prey and inflict damage by sinking their blades into it. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BISHARP,Level,52 #------------------------------- [BISHARP] @@ -20215,12 +16471,6 @@ Shape = Bipedal Category = Sword Blade Pokedex = Bisharp pursues prey in the company of a large group of Pawniard. Then Bisharp finishes off the prey. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 15 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUFFALANT] Name = Bouffalant @@ -20246,12 +16496,6 @@ Shape = Quadruped Category = Bash Buffalo Pokedex = They charge wildly and headbutt everything. They headbutts have enough destructive force to derail a train. Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = -10 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RUFFLET] Name = Rufflet @@ -20277,12 +16521,6 @@ Shape = Winged Category = Eaglet Pokedex = They will challenge anything, even strong opponents, without fear. Their frequent fights help them become stronger. Generation = 5 -BattlerPlayerX = 1 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BRAVIARY,Level,54 #------------------------------- [BRAVIARY] @@ -20309,12 +16547,6 @@ Shape = Winged Category = Valiant Pokedex = The more scars they have, the more respect these brave soldiers of the sky get from their peers. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 3 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VULLABY] Name = Vullaby @@ -20341,12 +16573,6 @@ Shape = Winged Category = Diapered Pokedex = They tend to guard their posteriors with suitable bones they have found. They pursue weak Pokémon. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 26 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MANDIBUZZ,Level,54 #------------------------------- [MANDIBUZZ] @@ -20373,12 +16599,6 @@ Shape = Winged Category = Bone Vulture Pokedex = Watching from the sky, they swoop to strike weakened Pokémon on the ground. They decorate themselves with bones. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HEATMOR] Name = Heatmor @@ -20404,12 +16624,6 @@ Shape = BipedalTail Category = Anteater Pokedex = Using their very hot, flame-covered tongues, they burn through Durant's steel bodies and consume their insides. Generation = 5 -BattlerPlayerX = 3 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DURANT] Name = Durant @@ -20436,12 +16650,6 @@ Shape = Insectoid Category = Iron Ant Pokedex = Durant dig nests in mountains. They build their complicated, interconnected tunnels in mazes. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 34 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [DEINO] Name = Deino @@ -20467,12 +16675,6 @@ Shape = Quadruped Category = Irate Pokedex = They cannot see, so they tackle and bite to learn about their surroundings. Their bodies are covered in wounds. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ZWEILOUS,Level,50 #------------------------------- [ZWEILOUS] @@ -20498,12 +16700,6 @@ Shape = Quadruped Category = Hostile Pokedex = Since their two heads do not get along and compete with each other for food, they always eat too much. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 20 -BattlerShadowX = 0 -BattlerShadowSize = 3 Evolutions = HYDREIGON,Level,64 #------------------------------- [HYDREIGON] @@ -20529,12 +16725,6 @@ Shape = BipedalTail Category = Brutal Pokedex = The heads on their arms do not have brains. They use all three heads to consume and destroy everything. Generation = 5 -BattlerPlayerX = -2 -BattlerPlayerY = 0 -BattlerEnemyX = 1 -BattlerEnemyY = 4 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LARVESTA] Name = Larvesta @@ -20561,12 +16751,6 @@ Shape = Insectoid Category = Torch Pokedex = The base of volcanoes is where they make their homes. They shoot fire from their five horns to repel attacking enemies. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -2 -BattlerEnemyY = 29 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VOLCARONA,Level,59 #------------------------------- [VOLCARONA] @@ -20596,12 +16780,6 @@ Generation = 5 WildItemCommon = SILVERPOWDER WildItemUncommon = SILVERPOWDER WildItemRare = SILVERPOWDER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 2 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [COBALION] Name = Cobalion @@ -20626,12 +16804,6 @@ Shape = Quadruped Category = Iron Will Pokedex = It has a body and heart of steel. Its glare is sufficient to make even an unruly Pokémon obey it. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [TERRAKION] Name = Terrakion @@ -20656,12 +16828,6 @@ Shape = Quadruped Category = Cavern Pokedex = Its charge is strong enough to break through a giant castle wall in one blow. This Pokémon is spoken of in legends. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -4 -BattlerEnemyY = 22 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [VIRIZION] Name = Virizion @@ -20686,12 +16852,6 @@ Shape = Quadruped Category = Grassland Pokedex = Its head sprouts horns as sharp as blades. Using whirlwind-like movements, it confounds and swiftly cuts opponents. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 14 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TORNADUS] Name = Tornadus @@ -20717,12 +16877,6 @@ Category = Cyclone Pokedex = Tornadus expels massive energy from its tail, causing severe storms. Its power is great enough to blow houses away. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [THUNDURUS] Name = Thundurus @@ -20749,12 +16903,6 @@ Category = Bolt Strike Pokedex = The spikes on its tail discharge immense bolts of lightning. It flies around the Unova region firing off lightning bolts. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [RESHIRAM] Name = Reshiram @@ -20779,12 +16927,6 @@ Shape = Winged Category = Vast White Pokedex = When Reshiram's tail flares, the heat energy moves the atmosphere and changes the world's weather. Generation = 5 -BattlerPlayerX = 2 -BattlerPlayerY = 0 -BattlerEnemyX = 6 -BattlerEnemyY = 11 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [ZEKROM] Name = Zekrom @@ -20809,12 +16951,6 @@ Shape = BipedalTail Category = Deep Black Pokedex = This Pokémon appears in legends. In its tail, it has a giant generator that creates electricity. Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 3 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [LANDORUS] Name = Landorus @@ -20841,12 +16977,6 @@ Category = Abundance Pokedex = The energy that comes pouring from its tail increases the nutrition in the soil, making crops grow to great size. FormName = Incarnate Forme Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 6 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KYUREM] Name = Kyurem @@ -20871,12 +17001,6 @@ Shape = BipedalTail Category = Boundary Pokedex = It generates a powerful, freezing energy inside itself, but its body became frozen when the energy leaked out. Generation = 5 -BattlerPlayerX = -3 -BattlerPlayerY = 0 -BattlerEnemyX = -1 -BattlerEnemyY = 23 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [KELDEO] Name = Keldeo @@ -20902,12 +17026,6 @@ Category = Colt Pokedex = It crosses the world, running over the surfaces of oceans and rivers. It appears at scenic waterfronts. FormName = Ordinary Form Generation = 5 -BattlerPlayerX = -1 -BattlerPlayerY = 0 -BattlerEnemyX = 2 -BattlerEnemyY = 21 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELOETTA] Name = Meloetta @@ -20936,12 +17054,6 @@ Generation = 5 WildItemCommon = STARPIECE WildItemUncommon = STARPIECE WildItemRare = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 5 -BattlerEnemyY = 12 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GENESECT] Name = Genesect @@ -20967,12 +17079,6 @@ Category = Paleozoic Pokedex = This ancient bug Pokémon was altered by Team Plasma. They upgraded the cannon on its back. FormName = Normal Generation = 5 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = -3 -BattlerEnemyY = 18 -BattlerShadowX = 0 -BattlerShadowSize = 3 #------------------------------- [CHESPIN] Name = Chespin @@ -20998,12 +17104,6 @@ Shape = BipedalTail Category = Spiny Nut Pokedex = The quills on its head are usually soft. When it flexes them, the points become so hard and sharp that they can pierce rock. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = QUILLADIN,Level,16 #------------------------------- [QUILLADIN] @@ -21029,12 +17129,6 @@ Shape = BipedalTail Category = Spiny Armor Pokedex = They strengthen their lower bodies by running into one another. They are very kind and won't start fights. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHESNAUGHT,Level,36 #------------------------------- [CHESNAUGHT] @@ -21061,12 +17155,6 @@ Shape = BipedalTail Category = Spiny Armor Pokedex = Its Tackle is forceful enough to flip a 50-ton tank. It shields its allies from danger with its own body. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FENNEKIN] Name = Fennekin @@ -21092,12 +17180,6 @@ Shape = Quadruped Category = Fox Pokedex = As it walks, it munches on a twig in place of a snack. It intimidates opponents by puffing hot air out of its ears. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRAIXEN,Level,16 #------------------------------- [BRAIXEN] @@ -21123,12 +17205,6 @@ Shape = BipedalTail Category = Fox Pokedex = When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DELPHOX,Level,36 #------------------------------- [DELPHOX] @@ -21155,12 +17231,6 @@ Shape = BipedalTail Category = Fox Pokedex = It gazes into the flame at the tip of its branch to achieve a focused state, which allows it to see into the future. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FROAKIE] Name = Froakie @@ -21186,12 +17256,6 @@ Shape = Quadruped Category = Bubble Frog Pokedex = It protects its skin by covering its body in delicate bubbles. Beneath its happy-go-lucky air, it keeps a watchful eye on its surroundings. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FROGADIER,Level,16 #------------------------------- [FROGADIER] @@ -21217,12 +17281,6 @@ Shape = Bipedal Category = Bubble Frog Pokedex = It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GRENINJA,Level,36 #------------------------------- [GRENINJA] @@ -21249,12 +17307,6 @@ Shape = Bipedal Category = Ninja Pokedex = It appears and vanishes with a ninja’s grace. It toys with its enemies using swift movements, while slicing them with throwing stars of sharpest water. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUNNELBY] Name = Bunnelby @@ -21280,12 +17332,6 @@ Shape = BipedalTail Category = Digging Pokedex = It has ears like shovels. Digging holes strengthens its ears so much that they can sever thick roots effortlessly. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DIGGERSBY,Level,20 #------------------------------- [DIGGERSBY] @@ -21312,12 +17358,6 @@ Shape = BipedalTail Category = Digging Pokedex = As powerful as an excavator, its ears can reduce dense bedrock to rubble. When it's finished digging, it lounges lazily. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLETCHLING] Name = Fletchling @@ -21344,12 +17384,6 @@ Shape = Winged Category = Tiny Robin Pokedex = These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLETCHINDER,Level,17 #------------------------------- [FLETCHINDER] @@ -21376,12 +17410,6 @@ Shape = Winged Category = Ember Pokedex = From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TALONFLAME,Level,35 #------------------------------- [TALONFLAME] @@ -21408,12 +17436,6 @@ Shape = Winged Category = Scorching Pokedex = In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SCATTERBUG] Name = Scatterbug @@ -21439,12 +17461,6 @@ Shape = Insectoid Category = Scatterdust Pokedex = When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SPEWPA,Level,9 #------------------------------- [SPEWPA] @@ -21470,12 +17486,6 @@ Shape = HeadBase Category = Scatterdust Pokedex = It lives hidden within thicket shadows. When predators attack, it quickly bristles the fur covering its body in an effort to threaten them. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIVILLON,Level,12 #------------------------------- [VIVILLON] @@ -21503,12 +17513,6 @@ Category = Scale Pokedex = Vivillon with many different patterns are found all over the world. These patterns are affected by the climate of their habitat. FormName = Archipelago Pattern Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LITLEO] Name = Litleo @@ -21535,12 +17539,6 @@ Shape = Quadruped Category = Lion Cub Pokedex = They set off on their own from their pride and live by themselves to become stronger. These hot-blooded Pokémon are quick to fight. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PYROAR,Level,35 #------------------------------- [PYROAR] @@ -21567,12 +17565,6 @@ Shape = Quadruped Category = Royal Pokedex = With fiery breath of more than 6,000 degrees Celsius, they viciously threaten any challenger. The females protect the pride’s cubs. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FLABEBE] Name = Flabébé @@ -21600,12 +17592,6 @@ Pokedex = When it finds a flower it likes, it dwells on that flower its whole li FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLOETTE,Level,19 #------------------------------- [FLOETTE] @@ -21633,12 +17619,6 @@ Pokedex = It flutters around fields of flowers and cares for flowers that are st FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = FLORGES,Item,SHINYSTONE #------------------------------- [FLORGES] @@ -21666,12 +17646,6 @@ Pokedex = It claims exquisite flower gardens as its territory, and it obtains po FormName = Red Flower Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SKIDDO] Name = Skiddo @@ -21697,12 +17671,6 @@ Shape = Quadruped Category = Mount Pokedex = If it has sunshine and water, it doesn't need to eat, because it can generate energy from the leaves on its back. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOGOAT,Level,32 #------------------------------- [GOGOAT] @@ -21728,12 +17696,6 @@ Shape = Quadruped Category = Mount Pokedex = It can tell how its trainer is feeling by subtle shifts in the grip on its horns. This empathetic sense lets them run as if one being. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PANCHAM] Name = Pancham @@ -21760,12 +17722,6 @@ Category = Playful Pokedex = It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark. Generation = 6 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PANGORO,LevelDarkInParty,32 #------------------------------- [PANGORO] @@ -21793,12 +17749,6 @@ Category = Daunting Pokedex = It charges ahead and bashes its opponents like a berserker, uncaring about any hits it might take. Its arms are mighty enough to snap a telephone pole. Generation = 6 WildItemUncommon = MENTALHERB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FURFROU] Name = Furfrou @@ -21824,12 +17774,6 @@ Category = Poodle Pokedex = Trimming its fluffy fur not only makes it more elegant but also increases the swiftness of its movements. FormName = Natural Form Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ESPURR] Name = Espurr @@ -21855,12 +17799,6 @@ Shape = BipedalTail Category = Restraint Pokedex = The organ that emits its intense psychic power is sheltered by its ears to keep power from leaking out. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MEOWSTIC,Level,25 #------------------------------- [MEOWSTIC] @@ -21887,12 +17825,6 @@ Category = Constraint Pokedex = Revealing the eyelike patterns on the insides of its ears will unleash its psychic powers. It normally keeps the patterns hidden, however. FormName = Male Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HONEDGE] Name = Honedge @@ -21918,12 +17850,6 @@ Shape = HeadBase Category = Sword Pokedex = Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DOUBLADE,Level,35 #------------------------------- [DOUBLADE] @@ -21949,12 +17875,6 @@ Shape = MultiBody Category = Sword Pokedex = The complex attack patterns of its two swords are unstoppable, even for an opponent greatly accomplished at swordplay. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AEGISLASH,Item,DUSKSTONE #------------------------------- [AEGISLASH] @@ -21981,12 +17901,6 @@ Category = Royal Sword Pokedex = In this defensive stance, Aegislash uses its steel body and a force field of spectral power to reduce the damage of any attack. FormName = Shield Forme Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SPRITZEE] Name = Spritzee @@ -22012,12 +17926,6 @@ Shape = HeadArms Category = Perfume Pokedex = It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AROMATISSE,TradeItem,SACHET #------------------------------- [AROMATISSE] @@ -22043,12 +17951,6 @@ Shape = Bipedal Category = Fragrance Pokedex = It devises various scents, pleasant and unpleasant, and emits scents that its enemies dislike in order to gain an edge in battle. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SWIRLIX] Name = Swirlix @@ -22074,12 +17976,6 @@ Shape = HeadLegs Category = Cotton Candy Pokedex = To entangle its opponents in battle, it extrudes white threads as sweet and sticky as cotton candy. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLURPUFF,TradeItem,WHIPPEDDREAM #------------------------------- [SLURPUFF] @@ -22105,12 +18001,6 @@ Shape = Bipedal Category = Meringue Pokedex = It can distinguish the faintest of scents. It puts its sensitive sense of smell to use by helping pastry chefs in their work. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [INKAY] Name = Inkay @@ -22137,12 +18027,6 @@ Shape = Multiped Category = Revolving Pokedex = It flashes the light-emitting spots on its body, which drains its opponent's will to fight. It takes the opportunity to scuttle away and hide. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MALAMAR,Level,30 #------------------------------- [MALAMAR] @@ -22169,12 +18053,6 @@ Shape = HeadBase Category = Overturning Pokedex = It lures prey close with hypnotic motions, then wraps its tentacles around it before finishing it off with digestive fluids. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BINACLE] Name = Binacle @@ -22201,12 +18079,6 @@ Shape = MultiBody Category = Two-Handed Pokedex = They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BARBARACLE,Level,39 #------------------------------- [BARBARACLE] @@ -22233,12 +18105,6 @@ Shape = MultiBody Category = Collective Pokedex = Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SKRELP] Name = Skrelp @@ -22265,12 +18131,6 @@ Shape = HeadBase Category = Mock Kelp Pokedex = Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DRAGALGE,Level,48 #------------------------------- [DRAGALGE] @@ -22297,12 +18157,6 @@ Shape = HeadBase Category = Mock Kelp Pokedex = Their poison is strong enough to eat through the hull of a tanker, and they spit it indiscriminately at anything that enters their territory. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CLAUNCHER] Name = Clauncher @@ -22327,12 +18181,6 @@ Shape = Insectoid Category = Water Gun Pokedex = Through controlled expulsions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CLAWITZER,Level,37 #------------------------------- [CLAWITZER] @@ -22357,12 +18205,6 @@ Shape = Serpentine Category = Howitzer Pokedex = By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HELIOPTILE] Name = Helioptile @@ -22389,12 +18231,6 @@ Shape = BipedalTail Category = Generator Pokedex = They make their home in deserts. They can generate their energy from basking in the sun, so eating food is not a requirement. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HELIOLISK,Item,SUNSTONE #------------------------------- [HELIOLISK] @@ -22421,12 +18257,6 @@ Shape = BipedalTail Category = Generator Pokedex = They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYRUNT] Name = Tyrunt @@ -22453,12 +18283,6 @@ Shape = BipedalTail Category = Royal Heir Pokedex = Its immense jaws have enough destructive force that it can chew up an automobile. It lived 100 million years ago. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TYRANTRUM,LevelDay,39 #------------------------------- [TYRANTRUM] @@ -22485,12 +18309,6 @@ Shape = BipedalTail Category = Despot Pokedex = Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [AMAURA] Name = Amaura @@ -22517,12 +18335,6 @@ Shape = Quadruped Category = Tundra Pokedex = This ancient Pokémon was restored from part of its body that had been frozen in ice for over 100 million years. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AURORUS,LevelNight,39 #------------------------------- [AURORUS] @@ -22549,12 +18361,6 @@ Shape = Quadruped Category = Tundra Pokedex = Using its diamond-shaped crystals, it can instantly create a wall of ice to block an opponent's attack. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SYLVEON] Name = Sylveon @@ -22579,12 +18385,6 @@ Shape = Quadruped Category = Intertwining Pokedex = Its ribbonlike feelers give off an aura that weakens hostility in its prey, causing them to let down their guard. Then it attacks. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HAWLUCHA] Name = Hawlucha @@ -22612,12 +18412,6 @@ Category = Wrestling Pokedex = With its wings, it controls its position in the air. It likes to attack from above, a maneuver that is difficult to defend against. Generation = 6 WildItemUncommon = KINGSROCK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DEDENNE] Name = Dedenne @@ -22644,12 +18438,6 @@ Shape = BipedalTail Category = Antenna Pokedex = Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CARBINK] Name = Carbink @@ -22675,12 +18463,6 @@ Shape = Head Category = Jewel Pokedex = Born from the high temperatures and pressures deep underground, it defends itself by firing beams from the jewel part of its body. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GOOMY] Name = Goomy @@ -22707,12 +18489,6 @@ Category = Soft Tissue Pokedex = Its source of protection is its slimy, germ-laden mucous membrane. Anyone who touches it needs some thorough hand-washing. Generation = 6 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SLIGGOO,Level,40 #------------------------------- [SLIGGOO] @@ -22739,12 +18515,6 @@ Category = Soft Tissue Pokedex = This Pokémon's mucous can dissolve anything. Toothless, it sprays mucous on its prey. Once they're nicely dissolved, it slurps them up. Generation = 6 WildItemUncommon = SHEDSHELL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOODRA,LevelRain,50 #------------------------------- [GOODRA] @@ -22770,12 +18540,6 @@ Shape = BipedalTail Category = Dragon Pokedex = It gets picked on because it's meek. But then, whoever teased it gets to feel the full force of its horns and a good swatting from its thick tail. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KLEFKI] Name = Klefki @@ -22802,12 +18566,6 @@ Shape = Head Category = Key Ring Pokedex = It never lets go of a key that it likes, so people give it the keys to vaults and safes as a way to prevent crime. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHANTUMP] Name = Phantump @@ -22834,12 +18592,6 @@ Shape = HeadArms Category = Stump Pokedex = These Pokémon are stumps possessed by the spirits of children who died in the forest. Their cries sound like eerie screams. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TREVENANT,Trade, #------------------------------- [TREVENANT] @@ -22866,12 +18618,6 @@ Shape = Multiped Category = Elder Tree Pokedex = Through its roots, it exerts control over other trees. A deadly curse falls upon anyone cutting down trees in forests where Trevenant dwell. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PUMPKABOO] Name = Pumpkaboo @@ -22899,12 +18645,6 @@ Pokedex = When taking spirits to the afterlife, small Pumpkaboo prefer the spiri FormName = Small Size Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOURGEIST,Trade, #------------------------------- [GOURGEIST] @@ -22932,12 +18672,6 @@ Pokedex = Small Gourgeist pretend to be children to fool adults. Anyone who fall FormName = Small Size Generation = 6 Flags = InheritFormFromMother -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BERGMITE] Name = Bergmite @@ -22963,12 +18697,6 @@ Shape = Quadruped Category = Ice Chunk Pokedex = It blocks opponents' attacks with the ice that shields its body. It uses cold air to repair any cracks with new ice. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = AVALUGG,Level,37 #------------------------------- [AVALUGG] @@ -22994,12 +18722,6 @@ Shape = Quadruped Category = Iceberg Pokedex = Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NOIBAT] Name = Noibat @@ -23026,12 +18748,6 @@ Shape = Winged Category = Sound Wave Pokedex = Even a robust wrestler will become dizzy and unable to stand when exposed to its 200,000-hertz ultrasonic waves. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NOIVERN,Level,48 #------------------------------- [NOIVERN] @@ -23058,12 +18774,6 @@ Shape = Winged Category = Sound Wave Pokedex = They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [XERNEAS] Name = Xerneas @@ -23088,12 +18798,6 @@ Category = Life Pokedex = Legends say it can share eternal life. It slept for a thousand years in the form of a tree before its revival. FormName = Neutral Mode Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YVELTAL] Name = Yveltal @@ -23118,12 +18822,6 @@ Shape = Winged Category = Destruction Pokedex = When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZYGARDE] Name = Zygarde @@ -23149,12 +18847,6 @@ Category = Order Pokedex = It's thought to be monitoring the ecosystem. There are rumors that even greater power lies hidden within it. FormName = 50% Forme Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DIANCIE] Name = Diancie @@ -23179,12 +18871,6 @@ Shape = HeadArms Category = Jewel Pokedex = A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [HOOPA] Name = Hoopa @@ -23210,12 +18896,6 @@ Category = Mischief Pokedex = This troublemaker sends anything and everything to faraway places using its loop, which can warp space. FormName = Hoopa Confined Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [VOLCANION] Name = Volcanion @@ -23240,12 +18920,6 @@ Shape = Quadruped Category = Steam Pokedex = It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread. Generation = 6 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ROWLET] Name = Rowlet @@ -23272,12 +18946,6 @@ Shape = Winged Category = Grass Quill Pokedex = It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DARTRIX,Level,17 #------------------------------- [DARTRIX] @@ -23304,12 +18972,6 @@ Shape = Winged Category = Blade Quill Pokedex = A bit of a dandy, it spends its free time preening its wings. Its preoccupation with any dirt on its plumage can leave it unable to battle. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = DECIDUEYE,Level,34 #------------------------------- [DECIDUEYE] @@ -23336,12 +18998,6 @@ Shape = Winged Category = Arrow Quill Pokedex = It fires arrow quills from its wings with such precision, they can pierce a pebble at distances over a hundred yards. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LITTEN] Name = Litten @@ -23367,12 +19023,6 @@ Shape = Quadruped Category = Fire Cat Pokedex = Its coat regrows twice a year. When the time comes, Litten sets its own body on fire and burns away the old fur. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TORRACAT,Level,17 #------------------------------- [TORRACAT] @@ -23398,12 +19048,6 @@ Shape = Quadruped Category = Fire Cat Pokedex = It can act spoiled if it grows close to its Trainer. A powerful Pokémon, its sharp claws can leave its Trainer's whole body covered in scratches. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = INCINEROAR,Level,34 #------------------------------- [INCINEROAR] @@ -23430,12 +19074,6 @@ Shape = BipedalTail Category = Heel Pokedex = Although it's rough mannered and egotistical, it finds beating down unworthy opponents boring. It gets motivated for stronger opponents. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [POPPLIO] Name = Popplio @@ -23461,12 +19099,6 @@ Shape = Finned Category = Sea Lion Pokedex = This Pokémon snorts body fluids from its nose, blowing balloons to smash into its foes. It's famous for being a hard worker. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BRIONNE,Level,17 #------------------------------- [BRIONNE] @@ -23492,12 +19124,6 @@ Shape = Finned Category = Pop Star Pokedex = It gets excited when it sees a dance it doesn't know. This hard worker practices diligently until it can learn that dance. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PRIMARINA,Level,34 #------------------------------- [PRIMARINA] @@ -23524,12 +19150,6 @@ Shape = Finned Category = Soloist Pokedex = It controls its water balloons with song. The melody is learned from others of its kind and is passed down from one generation to the next. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PIKIPEK] Name = Pikipek @@ -23557,12 +19177,6 @@ Category = Woodpecker Pokedex = It pecks at trees with its hard beak. You can get some idea of its mood or condition from the rhythm of its pecking. Generation = 7 WildItemUncommon = ORANBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TRUMBEAK,Level,14 #------------------------------- [TRUMBEAK] @@ -23590,12 +19204,6 @@ Category = Bugle Beak Pokedex = It eats berries and stores their seeds in its beak. When it encounters enemies or prey, it fires off all the seeds in a burst. Generation = 7 WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOUCANNON,Level,28 #------------------------------- [TOUCANNON] @@ -23623,12 +19231,6 @@ Category = Cannon Pokedex = They smack beaks with others of their kind to communicate. The strength and number of hits tell each other how they feel. Generation = 7 WildItemUncommon = RAWSTBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [YUNGOOS] Name = Yungoos @@ -23655,12 +19257,6 @@ Category = Loitering Pokedex = Its stomach takes up most of its long torso. It's a big eater, so the amount Trainers have to spend on its food is no laughing matter. Generation = 7 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GUMSHOOS,LevelDay,20 #------------------------------- [GUMSHOOS] @@ -23687,12 +19283,6 @@ Category = Stakeout Pokedex = When it finds a trace of its prey, it patiently stakes out the location... but it's always snoozing by nightfall. Generation = 7 WildItemUncommon = PECHABERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GRUBBIN] Name = Grubbin @@ -23717,12 +19307,6 @@ Shape = Insectoid Category = Larva Pokedex = It spits a sticky thread to stop opponents in their tracks, and then it grabs them in its sharp, sturdy mandibles to take them down. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CHARJABUG,Level,20 #------------------------------- [CHARJABUG] @@ -23749,12 +19333,6 @@ Category = Battery Pokedex = It buries itself in fallen leaves and barely moves, munching away on humus. If you accidentally step on one, you'll get a shock! Generation = 7 WildItemUncommon = CELLBATTERY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = VIKAVOLT,Item,THUNDERSTONE #------------------------------- [VIKAVOLT] @@ -23780,12 +19358,6 @@ Shape = Insectoid Category = Stag Beetle Pokedex = It zips around, on sharp lookout for an opening. It concentrates electrical energy within its large jaws and uses it to zap its enemies. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CRABRAWLER] Name = Crabrawler @@ -23812,12 +19384,6 @@ Category = Boxing Pokedex = It punches so much, its pincers often come off from overuse, but they grow back quickly. What little meat they contain is rich and delicious. Generation = 7 WildItemUncommon = ASPEARBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = CRABOMINABLE,LocationFlag,IceRock #------------------------------- [CRABOMINABLE] @@ -23845,12 +19411,6 @@ Category = Woolly Crab Pokedex = It aimed for the top but got lost and ended up on a snowy mountain. Being forced to endure the cold, this Pokémon evolved and grew fur. Generation = 7 WildItemUncommon = CHERIBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ORICORIO] Name = Oricorio @@ -23879,12 +19439,6 @@ FormName = Baile Style Generation = 7 Flags = InheritFormFromMother WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CUTIEFLY] Name = Cutiefly @@ -23912,12 +19466,6 @@ Category = Bee Fly Pokedex = It feeds on the nectar and pollen of flowers. Because it's able to sense auras, it can identify which flowers are about to bloom. Generation = 7 WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = RIBOMBEE,Level,25 #------------------------------- [RIBOMBEE] @@ -23945,12 +19493,6 @@ Category = Bee Fly Pokedex = Rain makes pollen damp, so Ribombee hates rain. When it sees ominous clouds, it finds a hollow in a tree, where it waits stock-still. Generation = 7 WildItemUncommon = HONEY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ROCKRUFF] Name = Rockruff @@ -23976,12 +19518,6 @@ Shape = Quadruped Category = Puppy Pokedex = This Pokémon has lived with people since times long ago. It can sense when its Trainer is in the dumps and will stick close by its Trainer's side. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LYCANROC,Level,25 #------------------------------- [LYCANROC] @@ -24008,12 +19544,6 @@ Category = Wolf Pokedex = Its quick movements confuse its enemies. Well equipped with claws and fangs, it also uses the sharp rocks in its mane as weapons. FormName = Midday Form Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WISHIWASHI] Name = Wishiwashi @@ -24039,12 +19569,6 @@ Category = Small Fry Pokedex = It's awfully weak and notably tasty, so everyone is always out to get it. As it happens, anyone trying to bully it receives a painful lesson. FormName = Solo Form Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAREANIE] Name = Mareanie @@ -24072,12 +19596,6 @@ Category = Brutal Star Pokedex = It plunges the poison spike on its head into its prey. When the prey has weakened, Mareanie deals the finishing blow with its 10 tentacles. Generation = 7 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TOXAPEX,Level,38 #------------------------------- [TOXAPEX] @@ -24105,12 +19623,6 @@ Category = Brutal Star Pokedex = Those attacked by Toxapex's poison will suffer intense pain for three days and three nights. Post-recovery, there will be some aftereffects. Generation = 7 WildItemUncommon = POISONBARB -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MUDBRAY] Name = Mudbray @@ -24137,12 +19649,6 @@ Category = Donkey Pokedex = It loves playing in the mud. If it isn't showered with mud on a daily basis, it gets stressed out and stops listening to its Trainer. Generation = 7 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MUDSDALE,Level,30 #------------------------------- [MUDSDALE] @@ -24169,12 +19675,6 @@ Category = Draft Horse Pokedex = It remains calm and unmoving no matter the situation. It mixes dirt with the saliva in its mouth to make a special kind of mud. Generation = 7 WildItemUncommon = LIGHTCLAY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DEWPIDER] Name = Dewpider @@ -24202,12 +19702,6 @@ Category = Water Bubble Pokedex = When two Dewpider meet, they display their water bubbles to each other. Then the one with the smaller bubble gets out of the other's way. Generation = 7 WildItemUncommon = MYSTICWATER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = ARAQUANID,Level,22 #------------------------------- [ARAQUANID] @@ -24235,12 +19729,6 @@ Category = Water Bubble Pokedex = It delivers headbutts with the water bubble on its head. Small Pokémon get sucked into the bubble, where they drown. Generation = 7 WildItemUncommon = MYSTICWATER -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [FOMANTIS] Name = Fomantis @@ -24267,12 +19755,6 @@ Category = Sickle Grass Pokedex = When the sun rises, Fomantis spreads its four leaves and bathes in the sunlight. The tip of its head has a pleasant aroma. Generation = 7 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = LURANTIS,LevelDay,34 #------------------------------- [LURANTIS] @@ -24299,12 +19781,6 @@ Category = Bloom Sickle Pokedex = It requires a lot of effort to maintain Lurantis's vivid coloring, but some collectors enjoy this work and treat it as their hobby. Generation = 7 WildItemUncommon = MIRACLESEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MORELULL] Name = Morelull @@ -24333,12 +19809,6 @@ Pokedex = It scatters its shining spores around itself. Even though they're dang Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SHIINOTIC,Level,24 #------------------------------- [SHIINOTIC] @@ -24367,12 +19837,6 @@ Pokedex = It puts its prey to sleep and siphons off their vitality through the t Generation = 7 WildItemCommon = TINYMUSHROOM WildItemUncommon = BIGMUSHROOM -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SALANDIT] Name = Salandit @@ -24400,12 +19864,6 @@ Category = Toxic Lizard Pokedex = It burns its bodily fluids to create a poisonous gas. When its enemies become disoriented from inhaling the gas, it attacks them. Generation = 7 WildItemUncommon = SMOKEBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SALAZZLE,LevelFemale,33 #------------------------------- [SALAZZLE] @@ -24433,12 +19891,6 @@ Category = Toxic Lizard Pokedex = Filled with pheromones, its poisonous gas can be diluted to use in the production of luscious perfumes. Generation = 7 WildItemUncommon = SMOKEBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STUFFUL] Name = Stufful @@ -24465,12 +19917,6 @@ Shape = Quadruped Category = Flailing Pokedex = Despite its adorable appearance, when it gets angry and flails about, its arms and legs could knock a pro wrestler sprawling. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = BEWEAR,Level,27 #------------------------------- [BEWEAR] @@ -24497,12 +19943,6 @@ Shape = BipedalTail Category = Strong Arm Pokedex = It waves its hands wildly in intimidation and warning. Life is over for anyone who doesn't run away as fast as possible. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BOUNSWEET] Name = Bounsweet @@ -24529,12 +19969,6 @@ Category = Fruit Pokedex = Because of its sweet, delicious aroma, bird Pokémon are always after it, but it's not intelligent enough to care. Generation = 7 WildItemUncommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = STEENEE,Level,18 #------------------------------- [STEENEE] @@ -24561,12 +19995,6 @@ Category = Fruit Pokedex = It's protected by its hard sepals, so it plays with bird Pokémon without worry. They peck it relentlessly, but it doesn't care. Generation = 7 WildItemUncommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = TSAREENA,HasMove,STOMP #------------------------------- [TSAREENA] @@ -24593,12 +20021,6 @@ Category = Fruit Pokedex = A Pokémon with an aggressive personality and a mastery of kicking, it cackles every time it kicks an opponent. Generation = 7 WildItemCommon = GRASSYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [COMFEY] Name = Comfey @@ -24625,12 +20047,6 @@ Category = Posy Picker Pokedex = Baths prepared with the flowers from its vine have a relaxing effect, so this Pokémon is a hit with many people. Generation = 7 WildItemUncommon = MISTYSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ORANGURU] Name = Oranguru @@ -24657,12 +20073,6 @@ Shape = Bipedal Category = Sage Pokedex = It normally spends its time meditating in the treetops. It throws Poké Balls and gives other Pokémon orders as it pleases. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PASSIMIAN] Name = Passimian @@ -24688,12 +20098,6 @@ Shape = BipedalTail Category = Teamwork Pokedex = Berries are its weapons as well as the staple of its diet. The one that can throw a berry the farthest is the boss of the troop. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [WIMPOD] Name = Wimpod @@ -24719,12 +20123,6 @@ Shape = Multiped Category = Turn Tail Pokedex = This Pokémon is a coward. As it desperately dashes off, the flailing of its many legs leaves a sparkling clean path in its wake. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = GOLISOPOD,Level,30 #------------------------------- [GOLISOPOD] @@ -24750,12 +20148,6 @@ Shape = Bipedal Category = Hard Scale Pokedex = It battles skillfully with its six arms, but spends most of its time peacefully meditating in caves deep beneath the sea. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [SANDYGAST] Name = Sandygast @@ -24783,12 +20175,6 @@ Category = Sand Heap Pokedex = It likes the shovel on its head, so Sandygast will get serious and fight any children who come to take it back. Generation = 7 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = PALOSSAND,Level,42 #------------------------------- [PALOSSAND] @@ -24816,12 +20202,6 @@ Category = Sand Castle Pokedex = Buried beneath the castle are masses of dried-up bones from those whose vitality it has drained. Generation = 7 WildItemUncommon = SPELLTAG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PYUKUMUKU] Name = Pyukumuku @@ -24847,12 +20227,6 @@ Shape = Serpentine Category = Sea Cucumber Pokedex = It lives in shallow seas, such as areas near a beach. It can eject its internal organs, which it uses to engulf its prey or battle enemies. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TYPENULL] Name = Type: Null @@ -24876,12 +20250,6 @@ Shape = Quadruped Category = Synthetic Pokedex = The heavy control mask it wears suppresses its intrinsic capabilities. This Pokémon has some hidden special power. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SILVALLY,Happiness, #------------------------------- [SILVALLY] @@ -24907,12 +20275,6 @@ Category = Synthetic Pokedex = Its trust in its partner is what awakens it. This Pokémon is capable of changing its type, a flexibility that is well displayed in battle. FormName = Type: Normal Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MINIOR] Name = Minior @@ -24939,12 +20301,6 @@ Pokedex = Originally making its home in the ozone layer, it hurtles to the groun FormName = Meteor Form Generation = 7 WildItemUncommon = STARPIECE -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KOMALA] Name = Komala @@ -24969,12 +20325,6 @@ Shape = Bipedal Category = Drowsing Pokedex = It remains asleep from birth to death as a result of the sedative properties of the leaves that form its diet. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TURTONATOR] Name = Turtonator @@ -25001,12 +20351,6 @@ Category = Blast Turtle Pokedex = It lives in volcanoes and eats sulfur and other minerals. Materials from the food it eats form the basis of its explosive shell. Generation = 7 WildItemUncommon = CHARCOAL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TOGEDEMARU] Name = Togedemaru @@ -25034,12 +20378,6 @@ Category = Roly-Poly Pokedex = The long hairs on its back act as lightning rods. The bolts of lightning it attracts are stored as energy in its electric sac. Generation = 7 WildItemUncommon = ELECTRICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MIMIKYU] Name = Mimikyu @@ -25067,12 +20405,6 @@ Pokedex = A lonely Pokémon, it conceals its terrifying appearance beneath an ol FormName = Disguised Form Generation = 7 WildItemUncommon = CHESTOBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BRUXISH] Name = Bruxish @@ -25100,12 +20432,6 @@ Category = Gnash Teeth Pokedex = When it unleashes its psychic power from the protuberance on its head, the grating sound of grinding teeth echoes through the area. Generation = 7 WildItemUncommon = RAZORFANG -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DRAMPA] Name = Drampa @@ -25133,12 +20459,6 @@ Category = Placid Pokedex = This Pokémon is friendly to people and loves children most of all. It comes from deep in the mountains to play with children it likes in town. Generation = 7 WildItemUncommon = PERSIMBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [DHELMISE] Name = Dhelmise @@ -25163,12 +20483,6 @@ Shape = HeadBase Category = Sea Creeper Pokedex = The soul of seaweed adrift in the waves became reborn as this Pokémon. It maintains itself with new infusions of seabed detritus and seaweed. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [JANGMOO] Name = Jangmo-o @@ -25195,12 +20509,6 @@ Category = Scaly Pokedex = It expresses its feelings by smacking its scales. Metallic sounds echo through the tall mountains where Jangmo-o lives. Generation = 7 WildItemUncommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = HAKAMOO,Level,35 #------------------------------- [HAKAMOO] @@ -25228,12 +20536,6 @@ Category = Scaly Pokedex = It sheds and regrows its scales on a continuous basis. The scales become harder and sharper each time they're regrown. Generation = 7 WildItemUncommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = KOMMOO,Level,45 #------------------------------- [KOMMOO] @@ -25261,12 +20563,6 @@ Category = Scaly Pokedex = Its rigid scales function as offense and defense. In the past, its scales were processed and used to make weapons and other commodities. Generation = 7 WildItemCommon = RAZORCLAW -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUKOKO] Name = Tapu Koko @@ -25292,12 +20588,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPULELE] Name = Tapu Lele @@ -25323,12 +20613,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = As it flutters about, it scatters its strangely glowing scales. Touching them is said to restore good health on the spot. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUBULU] Name = Tapu Bulu @@ -25354,12 +20638,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = It pulls large trees up by the roots and swings them around. It causes vegetation to grow, and then it absorbs energy from the growth. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [TAPUFINI] Name = Tapu Fini @@ -25385,12 +20663,6 @@ Shape = HeadArms Category = Land Spirit Pokedex = The dense fog it creates brings the downfall and destruction of its confused enemies. Ocean currents are the source of its energy. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [COSMOG] Name = Cosmog @@ -25413,12 +20685,6 @@ Shape = Head Category = Nebula Pokedex = Whether or not it's a Pokémon from this world is a mystery. When it's in a jam, it warps away to a safe place to hide. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = COSMOEM,Level,43 #------------------------------- [COSMOEM] @@ -25443,12 +20709,6 @@ Shape = Head Category = Protostar Pokedex = Motionless as if dead, its body is faintly warm to the touch. In the distant past, it was called the cocoon of the stars. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = SOLGALEO,LevelDay,53,LUNALA,LevelNight,53 #------------------------------- [SOLGALEO] @@ -25474,12 +20734,6 @@ Shape = Quadruped Category = Sunne Pokedex = It is said to live in another world. The intense light it radiates from the surface of its body can make the darkest of nights light up like midday. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [LUNALA] Name = Lunala @@ -25504,12 +20758,6 @@ Shape = Winged Category = Moone Pokedex = Said to live in another world, this Pokémon devours light, drawing the moonless dark veil of night over the brightness of day. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NIHILEGO] Name = Nihilego @@ -25534,12 +20782,6 @@ Shape = Multiped Category = Parasite Pokedex = One of several mysterious Ultra Beasts. People on the street report observing those infested by it suddenly becoming violent. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BUZZWOLE] Name = Buzzwole @@ -25564,12 +20806,6 @@ Shape = Multiped Category = Swollen Pokedex = This Ultra Beast appeared from another world. It shows off its body, but whether that display is a boast or a threat remains unclear. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [PHEROMOSA] Name = Pheromosa @@ -25594,12 +20830,6 @@ Shape = Bipedal Category = Lissome Pokedex = One of the Ultra Beasts. It refuses to touch anything, perhaps because it senses some uncleanness in this world. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [XURKITREE] Name = Xurkitree @@ -25623,12 +20853,6 @@ Shape = BipedalTail Category = Glowing Pokedex = One of the mysterious life-forms known as Ultra Beasts. Astonishing electric shocks emanate from its entire body, according to witnesses. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [CELESTEELA] Name = Celesteela @@ -25653,12 +20877,6 @@ Shape = Bipedal Category = Launch Pokedex = One kind of Ultra Beast. Witnesses have seen it burn down a forest by expelling gas from its two arms. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [KARTANA] Name = Kartana @@ -25683,12 +20901,6 @@ Shape = Bipedal Category = Drawn Sword Pokedex = One of the Ultra Beast life-forms, it was observed cutting down a gigantic steel tower with one stroke of its blade. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GUZZLORD] Name = Guzzlord @@ -25713,12 +20925,6 @@ Shape = BipedalTail Category = Junkivore Pokedex = A dangerous Ultra Beast, it appears to be eating constantly, but for some reason its droppings have never been found. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [NECROZMA] Name = Necrozma @@ -25742,12 +20948,6 @@ Shape = HeadArms Category = Prism Pokedex = Light is apparently the source of its energy. It has an extraordinarily vicious disposition and is constantly firing off laser beams. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MAGEARNA] Name = Magearna @@ -25772,12 +20972,6 @@ Shape = Bipedal Category = Artificial Pokedex = This artificial Pokémon, constructed more than 500 years ago, can understand human speech but cannot itself speak. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MARSHADOW] Name = Marshadow @@ -25802,12 +20996,6 @@ Shape = Bipedal Category = Gloomdweller Pokedex = Able to conceal itself in shadows, it never appears before humans, so its very existence was the stuff of myth. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [POIPOLE] Name = Poipole @@ -25831,12 +21019,6 @@ Shape = BipedalTail Category = Poison Pin Pokedex = An Ultra Beast that lives in a different world, it cackles wildly as it sprays its opponents with poison from the needles on its head. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = NAGANADEL,HasMove,DRAGONPULSE #------------------------------- [NAGANADEL] @@ -25862,12 +21044,6 @@ Shape = Winged Category = Poison Pin Pokedex = One kind of Ultra Beast, it fires a glowing, venomous liquid from its needles. This liquid is also immensely adhesive. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [STAKATAKA] Name = Stakataka @@ -25892,12 +21068,6 @@ Shape = Quadruped Category = Rampart Pokedex = When stone walls started moving and attacking, the brute's true identity was this mysterious life-form, which brings to mind an Ultra Beast. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [BLACEPHALON] Name = Blacephalon @@ -25922,12 +21092,6 @@ Shape = Bipedal Category = Fireworks Pokedex = It slithers toward people. Then, without warning, it triggers the explosion of its own head. It's apparently one kind of Ultra Beast. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [ZERAORA] Name = Zeraora @@ -25951,12 +21115,6 @@ Shape = Bipedal Category = Thunderclap Pokedex = It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [MELTAN] Name = Meltan @@ -25980,12 +21138,6 @@ Shape = Head Category = Hex Nut Pokedex = It melts particles of iron and other metals found in the subsoil, so it can absorb them into its body of molten steel. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 Evolutions = MELMETAL,Level,45 #------------------------------- [MELMETAL] @@ -26010,12 +21162,6 @@ Shape = Bipedal Category = Hex Nut Pokedex = Revered long ago for its capacity to create iron from nothing, for some reason it has come back to life after 3,000 years. Generation = 7 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 2 #------------------------------- [GROOKEY] Name = Grookey @@ -26041,12 +21187,6 @@ Shape = BipedalTail Category = Chimp Pokedex = When it uses its special stick to strike up a beat, the sound waves produced carry revitalizing energy to the plants and flowers in the area. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = THWACKEY,Level,16 #------------------------------- [THWACKEY] @@ -26072,12 +21212,6 @@ Shape = BipedalTail Category = Beat Pokedex = When it's drumming out rapid beats in battle, it gets so caught up in the rhythm that it won't even notice that it's already knocked out its opponent. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RILLABOOM,Level,35 #------------------------------- [RILLABOOM] @@ -26103,12 +21237,6 @@ Shape = Bipedal Category = Drummer Pokedex = By drumming, it taps into the power of its special tree stump. The roots of the stump follow its direction in battle. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SCORBUNNY] Name = Scorbunny @@ -26134,12 +21262,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = A warm-up of running around gets fire energy coursing through this Pokémon's body. Once that happens, it's ready to fight at full power. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = RABOOT,Level,16 #------------------------------- [RABOOT] @@ -26165,12 +21287,6 @@ Shape = BipedalTail Category = Rabbit Pokedex = It kicks berries right off the branches of trees and then juggles them with its feet, practicing its footwork. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CINDERACE,Level,35 #------------------------------- [CINDERACE] @@ -26196,12 +21312,6 @@ Shape = BipedalTail Category = Striker Pokedex = It juggles a pebble with its feet, turning it into a burning soccer ball. Its shots strike opponents hard and leave them scorched. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SOBBLE] Name = Sobble @@ -26227,12 +21337,6 @@ Shape = Quadruped Category = Water Lizard Pokedex = When scared, this Pokémon cries. Its tears pack the chemical punch of 100 onions, and attackers won't be able to resist weeping. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRIZZILE,Level,16 #------------------------------- [DRIZZILE] @@ -26258,12 +21362,6 @@ Shape = BipedalTail Category = Water Lizard Pokedex = A clever combatant, this Pokémon battles using water balloons created with moisture secreted from its palms. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = INTELEON,Level,35 #------------------------------- [INTELEON] @@ -26289,12 +21387,6 @@ Shape = BipedalTail Category = Secret Agent Pokedex = It has many hidden capabilities, such as fingertips that can shoot water and a membrane on its back that it can use to glide through the air. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SKWOVET] Name = Skwovet @@ -26321,12 +21413,6 @@ Category = Cheeky Pokedex = It eats berries nonstop—a habit that has made it more resilient than it looks. It'll show up on farms, searching for yet more berries. Generation = 8 WildItemUncommon = ORANBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GREEDENT,Level,24 #------------------------------- [GREEDENT] @@ -26353,12 +21439,6 @@ Category = Greedy Pokedex = It stashes berries in its tail - so many berries that they fall out constantly. But this Pokémon is a bit slow-witted, so it doesn't notice the loss. Generation = 8 WildItemUncommon = SITRUSBERRY -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROOKIDEE] Name = Rookidee @@ -26384,12 +21464,6 @@ Shape = Winged Category = Tiny Bird Pokedex = Jumping nimbly about, this small-bodied Pokémon takes advantage of even the slightest opportunity to disorient larger opponents. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CORVISQUIRE,Level,18 #------------------------------- [CORVISQUIRE] @@ -26415,12 +21489,6 @@ Shape = Winged Category = Raven Pokedex = Smart enough to use tools in battle, these Pokémon have been seen picking up rocks and flinging them or using ropes to wrap up enemies. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CORVIKNIGHT,Level,38 #------------------------------- [CORVIKNIGHT] @@ -26447,12 +21515,6 @@ Shape = Winged Category = Raven Pokedex = This Pokémon reigns supreme in the skies. The black luster of its steel body could drive terror into the heart of any foe. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [BLIPBUG] Name = Blipbug @@ -26477,12 +21539,6 @@ Shape = Insectoid Category = Larva Pokedex = Often found in gardens, this Pokémon has hairs on its body that it uses to assess its surroundings. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DOTTLER,Level,10 #------------------------------- [DOTTLER] @@ -26510,12 +21566,6 @@ Category = Radome Pokedex = It barely moves, but it's still alive. Hiding in its shell without food or water seems to have awakened its psychic powers. Generation = 8 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ORBEETLE,Level,30 #------------------------------- [ORBEETLE] @@ -26543,12 +21593,6 @@ Category = Seven Spot Pokedex = It's famous for its high level of intelligence, and the large size of its brain is proof that it also possesses immense psychic power. Generation = 8 WildItemUncommon = PSYCHICSEED -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [NICKIT] Name = Nickit @@ -26574,12 +21618,6 @@ Shape = Quadruped Category = Fox Pokedex = Aided by the soft pads on its feet, it silently raids the food stores of other Pokémon. It survives off its ill-gotten gains. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = THIEVUL,Level,18 #------------------------------- [THIEVUL] @@ -26605,12 +21643,6 @@ Shape = Quadruped Category = Fox Pokedex = It secretly marks potential targets with a scent. By following the scent, it stalks its targets and steals from them when they least expect it. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GOSSIFLEUR] Name = Gossifleur @@ -26636,12 +21668,6 @@ Shape = HeadBase Category = Flowering Pokedex = It anchors itself in the ground with its single leg, then basks in the sun. After absorbing enough sunlight, its petals spread as it blooms brilliantly. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ELDEGOSS,Level,20 #------------------------------- [ELDEGOSS] @@ -26667,12 +21693,6 @@ Shape = HeadBase Category = Cotton Bloom Pokedex = The seeds attached to its cotton fluff are full of nutrients. It spreads them on the wind so that plants and other Pokémon can benefit from them. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [WOOLOO] Name = Wooloo @@ -26698,12 +21718,6 @@ Shape = Quadruped Category = Sheep Pokedex = Its curly fleece is such an effective cushion that this Pokémon could fall off a cliff and stand right back up at the bottom, unharmed. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DUBWOOL,Level,24 #------------------------------- [DUBWOOL] @@ -26729,12 +21743,6 @@ Shape = Quadruped Category = Sheep Pokedex = Its majestic horns are meant only to impress the opposite gender. They never see use in battle. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CHEWTLE] Name = Chewtle @@ -26760,12 +21768,6 @@ Shape = Quadruped Category = Snapping Pokedex = It starts off battles by attacking with its rock-hard horn, but as soon as the opponent flinches, this Pokémon bites down and never lets go. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DREDNAW,Level,22 #------------------------------- [DREDNAW] @@ -26792,12 +21794,6 @@ Shape = Quadruped Category = Bite Pokedex = With jaws that can shear through steel rods, this highly aggressive Pokémon chomps down on its unfortunate prey. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [YAMPER] Name = Yamper @@ -26823,12 +21819,6 @@ Shape = Quadruped Category = Puppy Pokedex = This gluttonous Pokémon only assists people with their work because it wants treats. As it runs, it crackles with electricity. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BOLTUND,Level,25 #------------------------------- [BOLTUND] @@ -26854,12 +21844,6 @@ Shape = Quadruped Category = Dog Pokedex = This Pokémon generates electricity and channels it into its legs to keep them going strong. Boltund can run nonstop for three full days. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ROLYCOLY] Name = Rolycoly @@ -26885,12 +21869,6 @@ Shape = Head Category = Coal Pokedex = Most of its body has the same composition as coal. Fittingly, this Pokémon was first discovered in coal mines about 400 years ago. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CARKOL,Level,18 #------------------------------- [CARKOL] @@ -26917,12 +21895,6 @@ Shape = HeadLegs Category = Coal Pokedex = By rapidly rolling its legs, it can travel at over 18 mph. The temperature of the flames it breathes exceeds 1,000 degrees Celsius. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COALOSSAL,Level,34 #------------------------------- [COALOSSAL] @@ -26949,12 +21921,6 @@ Shape = Bipedal Category = Coal Pokedex = While it's engaged in battle, its mountain of coal will burn bright red, sending off sparks that scorch the surrounding area. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [APPLIN] Name = Applin @@ -26981,12 +21947,6 @@ Shape = Serpentine Category = Apple Core Pokedex = It spends its entire life inside an apple. It hides from its natural enemies, bird Pokémon, by pretending it's just an apple and nothing more. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FLAPPLE,Item,TARTAPPLE,APPLETUN,Item,SWEETAPPLE #------------------------------- [FLAPPLE] @@ -27013,12 +21973,6 @@ Shape = Winged Category = Apple Wing Pokedex = It ate a sour apple, and that induced its evolution. In its cheeks, it stores an acid capable of causing chemical burns. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [APPLETUN] Name = Appletun @@ -27044,12 +21998,6 @@ Shape = Quadruped Category = Apple Nectar Pokedex = Its body is covered in sweet nectar, and the skin on its back is especially yummy. Children used to have it as a snack. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SILICOBRA] Name = Silicobra @@ -27075,12 +22023,6 @@ Shape = Serpentine Category = Sand Snake Pokedex = It spews sand from its nostrils. While the enemy is blinded, it burrows into the ground to hide. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = SANDACONDA,Level,36 #------------------------------- [SANDACONDA] @@ -27106,12 +22048,6 @@ Shape = Serpentine Category = Sand Snake Pokedex = Its unique style of coiling allows it to blast sand out of its sand sac more efficiently. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CRAMORANT] Name = Cramorant @@ -27137,12 +22073,6 @@ Shape = Winged Category = Gulp Pokedex = It's so strong that it can knock out some opponents in a single hit, but it also may forget what it's battling midfight. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARROKUDA] Name = Arrokuda @@ -27168,12 +22098,6 @@ Shape = Finned Category = Rush Pokedex = If it sees any movement around it, this Pokémon charges for it straightaway, leading with its sharply pointed jaw. It's very proud of that jaw. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = BARRASKEWDA,Level,26 #------------------------------- [BARRASKEWDA] @@ -27199,12 +22123,6 @@ Shape = Finned Category = Skewer Pokedex = This Pokémon has a jaw that's as sharp as a spear and as strong as steel. Apparently Barraskewda's flesh is surprisingly tasty, too. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [TOXEL] Name = Toxel @@ -27231,12 +22149,6 @@ Shape = BipedalTail Category = Baby Pokedex = It manipulates the chemical makeup of its poison to produce electricity. The voltage is weak, but it can cause a tingling paralysis. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = TOXTRICITY,Level,30 #------------------------------- [TOXTRICITY] @@ -27264,12 +22176,6 @@ Category = Punk Pokedex = When this Pokémon sounds as if it's strumming a guitar, it's actually clawing at the protrusions on its chest to generate electricity. FormName = Amped Form Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SIZZLIPEDE] Name = Sizzlipede @@ -27296,12 +22202,6 @@ Shape = Multiped Category = Radiator Pokedex = It stores flammable gas in its body and uses it to generate heat. The yellow sections on its belly get particularly hot. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = CENTISKORCH,Level,28 #------------------------------- [CENTISKORCH] @@ -27328,12 +22228,6 @@ Shape = Multiped Category = Radiator Pokedex = While its burning body is already dangerous on its own, this excessively hostile Pokémon also has large and very sharp fangs. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CLOBBOPUS] Name = Clobbopus @@ -27359,12 +22253,6 @@ Shape = Multiped Category = Tantrum Pokedex = It's very curious, but its means of investigating things is to try to punch them with its tentacles. The search for food is what brings it onto land. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRAPPLOCT,HasMove,TAUNT #------------------------------- [GRAPPLOCT] @@ -27390,12 +22278,6 @@ Shape = Multiped Category = Jujitsu Pokedex = A body made up of nothing but muscle makes the grappling moves this Pokémon performs with its tentacles tremendously powerful. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SINISTEA] Name = Sinistea @@ -27421,12 +22303,6 @@ Category = Black Tea Pokedex = The teacup in which this Pokémon makes its home is a famous piece of antique tableware. Many forgeries are in circulation. FormName = Phony Form Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = POLTEAGEIST,Item,CRACKEDPOT #------------------------------- [POLTEAGEIST] @@ -27453,12 +22329,6 @@ Category = Black Tea Pokedex = This species lives in antique teapots. Most pots are forgeries, but on rare occasions, an authentic work is found. FormName = Phony Form Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [HATENNA] Name = Hatenna @@ -27484,12 +22354,6 @@ Shape = HeadLegs Category = Calm Pokedex = Via the protrusion on its head, it senses other creatures' emotions. If you don't have a calm disposition, it will never warm up to you. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HATTREM,Level,32 #------------------------------- [HATTREM] @@ -27515,12 +22379,6 @@ Shape = Bipedal Category = Serene Pokedex = Using the braids on its head, it pummels foes to get them to quiet down. One blow from those braids would knock out a professional boxer. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = HATTERENE,Level,42 #------------------------------- [HATTERENE] @@ -27547,12 +22405,6 @@ Shape = HeadBase Category = Silent Pokedex = It emits psychic power strong enough to cause headaches as a deterrent to the approach of others. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [IMPIDIMP] Name = Impidimp @@ -27578,12 +22430,6 @@ Shape = Bipedal Category = Wily Pokedex = Through its nose, it sucks in the emanations produced by people and Pokémon when they feel annoyed. It thrives off this negative energy. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = MORGREM,Level,32 #------------------------------- [MORGREM] @@ -27610,12 +22456,6 @@ Shape = Bipedal Category = Devious Pokedex = With sly cunning, it tries to lure people into the woods. Some believe it to have the power to make crops grow. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = GRIMMSNARL,Level,42 #------------------------------- [GRIMMSNARL] @@ -27642,12 +22482,6 @@ Shape = Bipedal Category = Bulk Up Pokedex = Its hairs work like muscle fibers. When its hairs unfurl, they latch on to opponents, ensnaring them as tentacles would. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [OBSTAGOON] Name = Obstagoon @@ -27675,12 +22509,6 @@ Category = Blocking Pokedex = It evolved after experiencing numerous fights. While crossing its arms, it lets out a shout that would make any opponent flinch. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [PERRSERKER] Name = Perrserker @@ -27707,12 +22535,6 @@ Category = Viking Pokedex = What appears to be an iron helmet is actually hardened hair. This Pokémon lives for the thrill of battle. Generation = 8 Flags = DefaultForm2,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CURSOLA] Name = Cursola @@ -27739,12 +22561,6 @@ Category = Coral Pokedex = Its shell is overflowing with its heightened otherworldly energy. The ectoplasm serves as protection for this Pokémon's core spirit. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SIRFETCHD] Name = Sirfetch'd @@ -27772,12 +22588,6 @@ Pokedex = After deflecting attacks with its hard leaf shield, it strikes back wi Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone WildItemUncommon = LEEK -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MRRIME] Name = Mr. Rime @@ -27805,12 +22615,6 @@ Category = Comedian Pokedex = Its amusing movements make it very popular. It releases its psychic power from the pattern on its belly. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [RUNERIGUS] Name = Runerigus @@ -27837,12 +22641,6 @@ Category = Grudge Pokedex = A powerful curse was woven into an ancient painting. After absorbing the spirit of a Yamask, the painting began to move. Generation = 8 Flags = DefaultForm1,InheritFormWithEverStone -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MILCERY] Name = Milcery @@ -27868,12 +22666,6 @@ Shape = Head Category = Cream Pokedex = This Pokémon was born from sweet-smelling particles in the air. Its body is made of cream. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = ALCREMIE,HoldItem,STRAWBERRYSWEET,ALCREMIE,HoldItem,BERRYSWEET,ALCREMIE,HoldItem,LOVESWEET,ALCREMIE,HoldItem,STARSWEET,ALCREMIE,HoldItem,CLOVERSWEET,ALCREMIE,HoldItem,FLOWERSWEET,ALCREMIE,HoldItem,RIBBONSWEET #------------------------------- [ALCREMIE] @@ -27900,12 +22692,6 @@ Category = Cream Pokedex = When Alcremie is content, the cream it secretes from its hands becomes sweeter and richer. FormName = Vanilla Cream Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [FALINKS] Name = Falinks @@ -27930,12 +22716,6 @@ Shape = MultiBody Category = Formation Pokedex = The six of them work together as one Pokémon. Teamwork is also their battle strategy, and they constantly change their formation as they fight. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [PINCURCHIN] Name = Pincurchin @@ -27961,12 +22741,6 @@ Shape = Multiped Category = Sea Urchin Pokedex = It stores electricity in each spine. Even if one gets broken off, it still continues to emit electricity for at least three hours. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SNOM] Name = Snom @@ -27994,12 +22768,6 @@ Category = Worm Pokedex = It spits out thread imbued with a frigid sort of energy and uses it to tie its body to branches, disguising itself as an icicle while it sleeps. Generation = 8 WildItemUncommon = SNOWBALL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = FROSMOTH,HappinessNight, #------------------------------- [FROSMOTH] @@ -28026,12 +22794,6 @@ Shape = MultiWinged Category = Frost Moth Pokedex = It shows no mercy to any who desecrate fields and mountains. It will fly around on its icy wings, causing a blizzard to chase offenders away. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [STONJOURNER] Name = Stonjourner @@ -28056,12 +22818,6 @@ Shape = HeadLegs Category = Big Rock Pokedex = Once a year, on a specific date and at a specific time, they gather out of nowhere and form up in a circle. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [EISCUE] Name = Eiscue @@ -28087,12 +22843,6 @@ Category = Penguin Pokedex = It drifted in on the flow of ocean waters from a frigid place. It keeps its head iced constantly to make sure it stays nice and cold. FormName = Ice Face Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [INDEEDEE] Name = Indeedee @@ -28120,12 +22870,6 @@ Category = Emotion Pokedex = It uses the horns on its head to sense the emotions of others. Males will act as valets for those they serve, looking after their every need. FormName = Male Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [MORPEKO] Name = Morpeko @@ -28152,12 +22896,6 @@ Category = Two-Sided Pokedex = As it eats the seeds stored up in its pocket-like pouches, this Pokémon is not just satisfying its constant hunger. It's also generating electricity. FormName = Full Belly Mode Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CUFANT] Name = Cufant @@ -28184,12 +22922,6 @@ Category = Copperderm Pokedex = It digs up the ground with its trunk. It's also very strong, being able to carry loads of over five tons without any problem at all. Generation = 8 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = COPPERAJAH,Level,34 #------------------------------- [COPPERAJAH] @@ -28216,12 +22948,6 @@ Category = Copperderm Pokedex = These Pokémon live in herds. Their trunks have incredible grip strength, strong enough to crush giant rocks into powder. Generation = 8 WildItemUncommon = LAGGINGTAIL -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRACOZOLT] Name = Dracozolt @@ -28247,12 +22973,6 @@ Shape = BipedalTail Category = Fossil Pokedex = In ancient times, it was unbeatable thanks to its powerful lower body, but it went extinct anyway after it depleted all its plant-based food sources. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCTOZOLT] Name = Arctozolt @@ -28278,12 +22998,6 @@ Shape = BipedalTail Category = Fossil Pokedex = The shaking of its freezing upper half is what generates its electricity. It has a hard time walking around. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DRACOVISH] Name = Dracovish @@ -28309,12 +23023,6 @@ Shape = HeadLegs Category = Fossil Pokedex = Powerful legs and jaws made it the apex predator of its time. Its own overhunting of its prey was what drove it to extinction. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ARCTOVISH] Name = Arctovish @@ -28340,12 +23048,6 @@ Shape = Finned Category = Fossil Pokedex = Though it's able to capture prey by freezing its surroundings, it has trouble eating the prey afterward because its mouth is on top of its head. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DURALUDON] Name = Duraludon @@ -28372,12 +23074,6 @@ Shape = BipedalTail Category = Alloy Pokedex = Its body resembles polished metal, and it's both lightweight and strong. The only drawback is that it rusts easily. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [DREEPY] Name = Dreepy @@ -28404,12 +23100,6 @@ Shape = Serpentine Category = Lingering Pokedex = After being reborn as a ghost Pokémon, Dreepy wanders the areas it used to inhabit back when it was alive in prehistoric seas. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRAKLOAK,Level,50 #------------------------------- [DRAKLOAK] @@ -28436,12 +23126,6 @@ Shape = HeadArms Category = Caretaker Pokedex = It's capable of flying faster than 120 mph. It battles alongside Dreepy and dotes on them until they successfully evolve. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = DRAGAPULT,Level,60 #------------------------------- [DRAGAPULT] @@ -28468,12 +23152,6 @@ Shape = BipedalTail Category = Stealth Pokedex = When it isn't battling, it keeps Dreepy in the holes on its horns. Once a fight starts, it launches the Dreepy like supersonic missiles. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ZACIAN] Name = Zacian @@ -28501,12 +23179,6 @@ Generation = 8 WildItemCommon = RUSTEDSWORD WildItemUncommon = RUSTEDSWORD WildItemRare = RUSTEDSWORD -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ZAMAZENTA] Name = Zamazenta @@ -28534,12 +23206,6 @@ Generation = 8 WildItemCommon = RUSTEDSHIELD WildItemUncommon = RUSTEDSHIELD WildItemRare = RUSTEDSHIELD -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ETERNATUS] Name = Eternatus @@ -28564,12 +23230,6 @@ Shape = Winged Category = Gigantic Pokedex = The core on its chest absorbs energy emanating from the lands of the Galar region. This energy is what allows Eternatus to stay active. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [KUBFU] Name = Kubfu @@ -28593,12 +23253,6 @@ Shape = BipedalTail Category = Wushu Pokedex = Kubfu trains hard to perfect its moves. The moves it masters will determine which form it takes when it evolves. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 Evolutions = URSHIFU,Event, #------------------------------- [URSHIFU] @@ -28625,12 +23279,6 @@ Category = Wushu Pokedex = Inhabiting the mountains of a distant region, this Pokémon races across sheer cliffs, training its legs and refining its moves. FormName = Single Strike Style Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [ZARUDE] Name = Zarude @@ -28655,12 +23303,6 @@ Shape = BipedalTail Category = Rogue Monkey Pokedex = Once the vines on Zarude's body tear off, they become nutrients in the soil. This helps the plants of the forest grow. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [REGIELEKI] Name = Regieleki @@ -28684,12 +23326,6 @@ Shape = Bipedal Category = Electron Pokedex = This Pokémon is a cluster of electrical energy. It's said that removing the rings on Regieleki's body will unleash the Pokémon's latent power. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [REGIDRAGO] Name = Regidrago @@ -28713,12 +23349,6 @@ Shape = Bipedal Category = Dragon Orb Pokedex = Its body is composed of crystallized dragon energy. Regidrago is said to have the powers of every dragon Pokémon. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [GLASTRIER] Name = Glastrier @@ -28742,12 +23372,6 @@ Shape = Quadruped Category = Wild Horse Pokedex = Glastrier has tremendous physical strength, and the mask of ice covering its face is 100 times harder than diamond. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [SPECTRIER] Name = Spectrier @@ -28771,12 +23395,6 @@ Shape = Quadruped Category = Swift Horse Pokedex = As it dashes through the night, Spectrier absorbs the life-force of sleeping creatures. It craves silence and solitude. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 #------------------------------- [CALYREX] Name = Calyrex @@ -28801,9 +23419,3 @@ Shape = Bipedal Category = King Pokedex = Calyrex is a merciful Pokémon, capable of providing healing and blessings. It reigned over the Galar region in times of yore. Generation = 8 -BattlerPlayerX = 0 -BattlerPlayerY = 0 -BattlerEnemyX = 0 -BattlerEnemyY = 0 -BattlerShadowX = 0 -BattlerShadowSize = 1 diff --git a/PBS/pokemon_forms.txt b/PBS/pokemon_forms.txt index c22c601d5..26c1e2a9e 100644 --- a/PBS/pokemon_forms.txt +++ b/PBS/pokemon_forms.txt @@ -629,7 +629,6 @@ Generation = 6 [PICHU,2] FormName = Spiky-Eared Generation = 4 -BattlerEnemyX = 3 Evolutions = PIKACHU,None, #------------------------------- [AMPHAROS,1] @@ -973,25 +972,18 @@ FormName = Sunny Form Type1 = FIRE Color = Red Pokedex = This is the form Castform takes on the brightest of days. Its skin is unexpectedly hot to the touch, so approach with care. -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,2] FormName = Rainy Form Type1 = WATER Color = Blue Pokedex = This is the form Castform takes when soaked with rain. When its body is compressed, water will seep out as if from a sponge. -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [CASTFORM,3] FormName = Snowy Form Type1 = ICE Color = White Pokedex = This is the form Castform takes when covered in snow. Its body becomes an ice-like material, with a temperature near -5 degrees Celsius. -BattlerPlayerX = -1 -BattlerEnemyX = 0 -BattlerShadowSize = 2 #------------------------------- [BANETTE,1] FormName = Mega Banette @@ -1110,10 +1102,6 @@ BaseStats = 50,180,20,150,180,20 EVs = 0,2,0,0,1,0 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,TELEPORT,19,TAUNT,25,PURSUIT,31,PSYCHIC,37,SUPERPOWER,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,COSMICPOWER,61,ZAPCANNON,67,PSYCHOBOOST,73,HYPERBEAM TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SUPERPOWER,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 4 -BattlerEnemyX = 1 -BattlerEnemyY = 5 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,2] FormName = Defense Forme @@ -1121,10 +1109,6 @@ BaseStats = 50,70,160,90,70,160 EVs = 0,0,2,0,0,1 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,TELEPORT,19,KNOCKOFF,25,SPIKES,31,PSYCHIC,37,SNATCH,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,IRONDEFENSE,55,AMNESIA,61,RECOVER,67,PSYCHOBOOST,73,COUNTER,73,MIRRORCOAT TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,IRONDEFENSE,KNOCKOFF,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = 3 -BattlerEnemyX = -2 -BattlerEnemyY = 6 -BattlerShadowSize = 3 #------------------------------- [DEOXYS,3] FormName = Speed Forme @@ -1132,20 +1116,14 @@ BaseStats = 50,95,90,180,95,90 EVs = 0,0,0,3,0,0 Moves = 1,LEER,1,WRAP,7,NIGHTSHADE,13,DOUBLETEAM,19,KNOCKOFF,25,PURSUIT,31,PSYCHIC,37,SWIFT,43,PSYCHOSHIFT,49,ZENHEADBUTT,55,AGILITY,61,RECOVER,67,PSYCHOBOOST,73,EXTREMESPEED TutorMoves = AERIALACE,ALLYSWITCH,BIND,BRICKBREAK,BRUTALSWING,CALMMIND,CHARGEBEAM,CONFIDE,DARKPULSE,DOUBLETEAM,DRAINPUNCH,DREAMEATER,ENERGYBALL,FACADE,FIREPUNCH,FLASHCANNON,FLING,FOCUSBLAST,FOCUSPUNCH,FRUSTRATION,GIGAIMPACT,GRASSKNOT,GRAVITY,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICEPUNCH,KNOCKOFF,LASERFOCUS,LIGHTSCREEN,LOWKICK,LOWSWEEP,MAGICCOAT,POISONJAB,PROTECT,PSYCHIC,PSYCHUP,PSYSHOCK,RAINDANCE,RECYCLE,REFLECT,REST,RETURN,ROCKSLIDE,ROCKTOMB,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHOCKWAVE,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNATCH,SNORE,SOLARBEAM,STEALTHROCK,STOMPINGTANTRUM,SUBSTITUTE,SUNNYDAY,SWAGGER,TAUNT,TELEKINESIS,THROATCHOP,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,TRICK,TRICKROOM,WATERPULSE,WONDERROOM,ZENHEADBUTT -BattlerPlayerX = -4 -BattlerEnemyX = -4 -BattlerEnemyY = 4 -BattlerShadowSize = 3 #------------------------------- [BURMY,1] FormName = Sandy Cloak Color = Brown -Flags = InheritFormFromMother #------------------------------- [BURMY,2] FormName = Trash Cloak Color = Red -Flags = InheritFormFromMother #------------------------------- [WORMADAM,1] FormName = Sandy Cloak @@ -1156,7 +1134,6 @@ EVs = 0,0,2,0,0,0 Moves = 0,QUIVERDANCE,1,QUIVERDANCE,1,SUCKERPUNCH,1,TACKLE,1,PROTECT,1,BUGBITE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,ROCKBLAST,29,HARDEN,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,FISSURE,50,BUGBUZZ TutorMoves = ALLYSWITCH,ATTRACT,BUGBITE,BULLDOZE,CONFIDE,DOUBLETEAM,DREAMEATER,EARTHPOWER,EARTHQUAKE,ELECTROWEB,ENDEAVOR,FACADE,FRUSTRATION,GIGAIMPACT,HIDDENPOWER,HYPERBEAM,INFESTATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROCKTOMB,ROUND,SAFEGUARD,SANDSTORM,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,SUBSTITUTE,SUNNYDAY,SWAGGER,TELEKINESIS,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Brown -Flags = InheritFormFromMother #------------------------------- [WORMADAM,2] FormName = Trash Cloak @@ -1167,27 +1144,21 @@ EVs = 0,0,1,0,0,1 Moves = 0,QUIVERDANCE,1,QUIVERDANCE,1,METALBURST,1,SUCKERPUNCH,1,TACKLE,1,PROTECT,1,BUGBITE,10,PROTECT,15,BUGBITE,20,HIDDENPOWER,23,CONFUSION,26,MIRRORSHOT,29,METALSOUND,32,PSYBEAM,35,CAPTIVATE,38,FLAIL,41,ATTRACT,44,PSYCHIC,47,IRONHEAD,50,BUGBUZZ TutorMoves = ALLYSWITCH,ATTRACT,BUGBITE,CONFIDE,DOUBLETEAM,DREAMEATER,ELECTROWEB,ENDEAVOR,FACADE,FLASHCANNON,FRUSTRATION,GIGAIMPACT,GUNKSHOT,GYROBALL,HIDDENPOWER,HYPERBEAM,INFESTATION,IRONDEFENSE,IRONHEAD,MAGNETRISE,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROUND,SAFEGUARD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,STEALTHROCK,SUBSTITUTE,SUNNYDAY,SWAGGER,TELEKINESIS,THIEF,TOXIC,UPROAR,VENOSHOCK Color = Red -Flags = InheritFormFromMother #------------------------------- [CHERRIM,1] FormName = Sunshine Form Color = Pink Pokedex = After absorbing plenty of sunlight, Cherrim takes this form. It's full of energy while it's like this, and its liveliness will go on until sundown. -BattlerPlayerX = 2 -BattlerEnemyX = 2 -BattlerEnemyY = 21 #------------------------------- [SHELLOS,1] FormName = East Sea Color = Blue Pokedex = Its appearance changes depending on the environment. One theory suggests that living in cold seas causes Shellos to take on this form. -Flags = InheritFormFromMother #------------------------------- [GASTRODON,1] FormName = East Sea Color = Blue Pokedex = Its body is covered in a sticky slime. It's very susceptible to dehydration, so it can't spend too much time on land. -Flags = InheritFormFromMother #------------------------------- [LOPUNNY,1] FormName = Mega Lopunny @@ -1252,9 +1223,6 @@ Type2 = FIRE BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This Rotom has possessed a convection microwave oven that uses a special motor. It also has a flair for manipulating flames. -BattlerEnemyX = 2 -BattlerEnemyY = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,2] FormName = Wash Rotom @@ -1263,8 +1231,6 @@ Type2 = WATER BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This form of Rotom enjoys coming up with water-based pranks. Be careful with it if you don't want your room flooded. -BattlerPlayerX = 1 -BattlerShadowSize = 2 #------------------------------- [ROTOM,3] FormName = Frost Rotom @@ -1273,10 +1239,6 @@ Type2 = ICE BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = Rotom assumes this form when it takes over a refrigerator powered by a special motor. It battles by spewing cold air. -BattlerPlayerX = 0 -BattlerEnemyX = 1 -BattlerEnemyY = -4 -BattlerShadowSize = 2 #------------------------------- [ROTOM,4] FormName = Fan Rotom @@ -1285,10 +1247,6 @@ Type2 = FLYING BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = In this form, Rotom applies its new power over wind to its love of pranks. It will happily blow away any important documents it can find. -BattlerPlayerX = -4 -BattlerEnemyX = -2 -BattlerEnemyY = 2 -BattlerShadowSize = 2 #------------------------------- [ROTOM,5] FormName = Mow Rotom @@ -1297,9 +1255,6 @@ Type2 = GRASS BaseStats = 50,65,107,86,105,107 BaseExp = 182 Pokedex = This is Rotom after it's seized control of a lawn mower that has a special motor. As it mows down grass, it scatters the clippings everywhere. -BattlerPlayerX = 1 -BattlerEnemyY = 0 -BattlerShadowSize = 2 #------------------------------- [GIRATINA,1] FormName = Origin Forme @@ -1310,8 +1265,6 @@ TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE Height = 6.9 Weight = 650.0 Shape = Serpentine -BattlerEnemyX = -2 -BattlerEnemyY = -8 #------------------------------- [SHAYMIN,1] FormName = Sky Forme @@ -1324,8 +1277,6 @@ Moves = 1,GROWTH,10,MAGICALLEAF,19,LEECHSEED,28,QUICKATTACK,37,SWEETSCENT,46,NAT TutorMoves = CONFIDE,COVET,DAZZLINGGLEAM,DOUBLETEAM,ENERGYBALL,FACADE,FRUSTRATION,GIGADRAIN,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,LASERFOCUS,LASTRESORT,NATUREPOWER,PROTECT,PSYCHIC,PSYCHUP,REST,RETURN,ROUND,SAFEGUARD,SEEDBOMB,SLEEPTALK,SNORE,SOLARBEAM,SUBSTITUTE,SUNNYDAY,SWAGGER,SWORDSDANCE,SYNTHESIS,TAILWIND,TOXIC,WORRYSEED,ZENHEADBUTT Height = 0.4 Weight = 5.2 -BattlerEnemyY = 16 -BattlerShadowSize = 2 #------------------------------- [ARCEUS,1] FormName = Fighting Type @@ -1420,7 +1371,6 @@ FormName = Blue-Striped Abilities = ROCKHEAD,ADAPTABILITY Pokedex = Even Basculin, which devours everything it can with its huge jaws, is nothing more than food to organisms stronger than itself. WildItemUncommon = DEEPSEASCALE -Flags = InheritFormFromMother #------------------------------- [DARUMAKA,2] FormName = Galarian @@ -1445,9 +1395,6 @@ BaseExp = 189 EVs = 0,0,0,0,2,0 Color = Blue Pokedex = When wounded, it stops moving. It goes as still as stone to meditate, sharpening its mind and spirit. -BattlerPlayerX = 1 -BattlerEnemyY = 30 -BattlerShadowSize = 2 #------------------------------- [DARMANITAN,2] FormName = Galarian Standard Mode @@ -1538,9 +1485,6 @@ Abilities = REGENERATOR HiddenAbilities = REGENERATOR Height = 1.4 Shape = Winged -BattlerPlayerX = -2 -BattlerEnemyX = 8 -BattlerEnemyY = 11 #------------------------------- [THUNDURUS,1] FormName = Therian Forme @@ -1551,9 +1495,6 @@ HiddenAbilities = 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 = BipedalTail -BattlerPlayerX = -3 -BattlerEnemyX = 2 -BattlerEnemyY = 5 #------------------------------- [LANDORUS,1] FormName = Therian Forme @@ -1563,9 +1504,6 @@ Abilities = INTIMIDATE HiddenAbilities = INTIMIDATE Height = 1.3 Shape = Quadruped -BattlerPlayerX = -8 -BattlerEnemyX = 3 -BattlerEnemyY = 14 #------------------------------- [KYUREM,1] FormName = White Kyurem @@ -1576,9 +1514,6 @@ Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 Pokedex = It has foreseen that a world of truth will arrive for people and Pokémon. It strives to protect that future. -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,2] FormName = Black Kyurem @@ -1589,8 +1524,6 @@ Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 Pokedex = It's said that this Pokémon battles in order to protect the ideal world that will exist in the future for people and Pokémon. -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KYUREM,3] PokedexForm = 1 @@ -1600,9 +1533,6 @@ EVs = 0,0,0,0,3,0 Abilities = TURBOBLAZE Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONFLARE,50,ICEBURN,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.6 -BattlerPlayerX = 0 -BattlerEnemyX = 9 -BattlerEnemyY = 7 #------------------------------- [KYUREM,4] PokedexForm = 2 @@ -1612,16 +1542,11 @@ EVs = 0,3,0,0,0,0 Abilities = TERAVOLT Moves = 1,ICYWIND,1,DRAGONRAGE,8,IMPRISON,15,ANCIENTPOWER,22,ICEBEAM,29,DRAGONBREATH,36,SLASH,43,FUSIONBOLT,50,FREEZESHOCK,57,DRAGONPULSE,64,NOBLEROAR,71,ENDEAVOR,78,BLIZZARD,85,OUTRAGE,92,HYPERVOICE Height = 3.3 -BattlerEnemyX = 5 -BattlerEnemyY = 4 #------------------------------- [KELDEO,1] FormName = Resolute Form TutorMoves = AERIALACE,AQUATAIL,BOUNCE,CALMMIND,CONFIDE,COVET,CUT,DOUBLETEAM,ENDEAVOR,FACADE,FALSESWIPE,FOCUSBLAST,FRUSTRATION,GIGAIMPACT,HAIL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICYWIND,LASTRESORT,LIQUIDATION,LOWKICK,POISONJAB,PROTECT,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SCALD,SLEEPTALK,SNORE,STONEEDGE,STRENGTH,SUBSTITUTE,SUPERPOWER,SURF,SWAGGER,SWORDSDANCE,TAUNT,TOXIC,WATERPULSE,WORKUP,XSCISSOR Pokedex = The power that lay hidden in its body now covers its horn, turning it into a sword that can slice through anything. -BattlerPlayerX = 1 -BattlerEnemyX = 0 -BattlerEnemyY = 19 #------------------------------- [MELOETTA,1] FormName = Pirouette Forme @@ -1629,8 +1554,6 @@ Type1 = NORMAL Type2 = FIGHTING BaseStats = 100,128,90,128,77,77 EVs = 0,1,1,1,0,0 -BattlerEnemyX = 1 -BattlerEnemyY = 15 #------------------------------- [GENESECT,1] FormName = Shock Drive @@ -1716,35 +1639,27 @@ FormName = Poké Ball Pattern #------------------------------- [FLABEBE,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLABEBE,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FLOETTE,5] FormName = Eternal Flower @@ -1757,19 +1672,15 @@ Evolutions = FLORGES,None, #------------------------------- [FLORGES,1] FormName = Yellow Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,2] FormName = Orange Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,3] FormName = Blue Flower -Flags = InheritFormFromMother #------------------------------- [FLORGES,4] FormName = White Flower -Flags = InheritFormFromMother #------------------------------- [FURFROU,1] FormName = Heart Trim @@ -1818,7 +1729,6 @@ HiddenAbilities = INSOMNIA Height = 0.4 Weight = 5.0 Pokedex = Spirits that wander this world are placed into Pumpkaboo's body. They're then moved on to the afterlife. -Flags = InheritFormFromMother #------------------------------- [PUMPKABOO,2] FormName = Large Size @@ -1826,7 +1736,6 @@ BaseStats = 54,66,70,46,44,55 Height = 0.5 Weight = 7.5 Pokedex = When taking spirits to the afterlife, large Pumpkaboo prefer the spirits of adults to those of children. -Flags = InheritFormFromMother #------------------------------- [PUMPKABOO,3] FormName = Super Size @@ -1838,7 +1747,6 @@ Pokedex = Massive Pumpkaboo are said to be the product of areas where a great nu WildItemCommon = MIRACLESEED WildItemUncommon = MIRACLESEED WildItemRare = MIRACLESEED -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,1] FormName = Average Size @@ -1847,7 +1755,6 @@ HiddenAbilities = INSOMNIA Height = 0.9 Weight = 12.5 Pokedex = Eerie cries emanate from its body in the dead of night. The sounds are said to be the wails of spirits who are suffering in the afterlife. -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,2] FormName = Large Size @@ -1855,7 +1762,6 @@ BaseStats = 75,95,122,69,58,75 Height = 1.1 Weight = 14.0 Pokedex = Large Gourgeist put on the guise of adults, taking the hands of children to lead them to the afterlife. -Flags = InheritFormFromMother #------------------------------- [GOURGEIST,3] FormName = Super Size @@ -1867,7 +1773,6 @@ Pokedex = Supersized Gourgeist aren't picky. They will forcefully drag anyone of WildItemCommon = MIRACLESEED WildItemUncommon = MIRACLESEED WildItemRare = MIRACLESEED -Flags = InheritFormFromMother #------------------------------- [XERNEAS,1] FormName = Active Mode @@ -1934,7 +1839,6 @@ Type1 = ELECTRIC Type2 = FLYING Color = Yellow Pokedex = It creates an electric charge by rubbing its feathers together. It dances over to its enemies and delivers shocking electrical punches. -Flags = InheritFormFromMother #------------------------------- [ORICORIO,2] FormName = Pa'u Style @@ -1942,7 +1846,6 @@ Type1 = PSYCHIC Type2 = FLYING Color = Pink Pokedex = This Oricorio relaxes by swaying gently. This increases its psychic energy, which it then fires at its enemies. -Flags = InheritFormFromMother #------------------------------- [ORICORIO,3] FormName = Sensu Style @@ -1950,7 +1853,6 @@ Type1 = GHOST Type2 = FLYING Color = Purple Pokedex = It summons the dead with its dreamy dancing. From their malice, it draws power with which to curse its enemies. -Flags = InheritFormFromMother #------------------------------- [ROCKRUFF,2] Abilities = OWNTEMPO diff --git a/PBS/pokemon_metrics.txt b/PBS/pokemon_metrics.txt new file mode 100644 index 000000000..242d70fa7 --- /dev/null +++ b/PBS/pokemon_metrics.txt @@ -0,0 +1,4045 @@ +# See the documentation on the wiki to learn how to edit this file. +#------------------------------- +[BULBASAUR] +BackSprite = -4,0 +FrontSprite = -1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[IVYSAUR] +BackSprite = -9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENUSAUR] +BackSprite = 1,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHARMANDER] +BackSprite = -6,0 +FrontSprite = 4,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHARMELEON] +BackSprite = -3,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHARIZARD] +BackSprite = -2,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SQUIRTLE] +BackSprite = -3,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WARTORTLE] +BackSprite = -2,0 +FrontSprite = -4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLASTOISE] +BackSprite = -3,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CATERPIE] +BackSprite = -5,0 +FrontSprite = -3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[METAPOD] +BackSprite = -1,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUTTERFREE] +BackSprite = -10,0 +FrontSprite = 8,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEDLE] +BackSprite = 0,0 +FrontSprite = 3,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KAKUNA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEEDRILL] +BackSprite = 9,0 +FrontSprite = -8,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEY] +BackSprite = -9,0 +FrontSprite = 4,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIDGEOTTO] +BackSprite = -7,0 +FrontSprite = 8,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDGEOT] +BackSprite = 0,0 +FrontSprite = 7,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RATTATA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RATICATE] +BackSprite = -7,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPEAROW] +BackSprite = -5,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FEAROW] +BackSprite = 10,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EKANS] +BackSprite = -3,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARBOK] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIKACHU] +BackSprite = -5,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[RAICHU] +BackSprite = -5,0 +FrontSprite = 11,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SANDSHREW] +BackSprite = -5,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDSLASH] +BackSprite = 0,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANfE] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINA] +BackSprite = 3,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NIDOQUEEN] +BackSprite = 0,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDORANmA] +BackSprite = -1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NIDORINO] +BackSprite = 1,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NIDOKING] +BackSprite = 4,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLEFAIRY] +BackSprite = 0,0 +FrontSprite = -2,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLEFABLE] +BackSprite = 4,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VULPIX] +BackSprite = -6,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINETALES] +BackSprite = -3,0 +FrontSprite = 6,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JIGGLYPUFF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WIGGLYTUFF] +BackSprite = 0,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZUBAT] +BackSprite = 0,0 +FrontSprite = -2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLBAT] +BackSprite = 6,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ODDISH] +BackSprite = 2,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLOOM] +BackSprite = 1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VILEPLUME] +BackSprite = 0,0 +FrontSprite = 3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PARAS] +BackSprite = 5,0 +FrontSprite = -3,33 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PARASECT] +BackSprite = 1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VENONAT] +BackSprite = 6,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VENOMOTH] +BackSprite = -4,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DIGLETT] +BackSprite = 0,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUGTRIO] +BackSprite = 1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEOWTH] +BackSprite = 3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PERSIAN] +BackSprite = -3,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PSYDUCK] +BackSprite = 0,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLDUCK] +BackSprite = -1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MANKEY] +BackSprite = -2,0 +FrontSprite = 3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PRIMEAPE] +BackSprite = 5,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROWLITHE] +BackSprite = -4,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCANINE] +BackSprite = -9,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWAG] +BackSprite = 0,0 +FrontSprite = 9,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLIWHIRL] +BackSprite = 10,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POLIWRATH] +BackSprite = 1,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ABRA] +BackSprite = 3,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KADABRA] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALAKAZAM] +BackSprite = 4,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MACHOP] +BackSprite = 3,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHOKE] +BackSprite = 7,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MACHAMP] +BackSprite = 7,0 +FrontSprite = -9,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELLSPROUT] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WEEPINBELL] +BackSprite = 4,0 +FrontSprite = 5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VICTREEBEL] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TENTACOOL] +BackSprite = 9,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TENTACRUEL] +BackSprite = 0,0 +FrontSprite = 0,1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GEODUDE] +BackSprite = -6,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRAVELER] +BackSprite = -4,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLEM] +BackSprite = 0,0 +FrontSprite = -3,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PONYTA] +BackSprite = 2,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAPIDASH] +BackSprite = -7,0 +FrontSprite = 5,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWPOKE] +BackSprite = -4,0 +FrontSprite = 3,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLOWBRO] +BackSprite = -7,0 +FrontSprite = 6,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGNEMITE] +BackSprite = 2,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MAGNETON] +BackSprite = -3,0 +FrontSprite = 0,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FARFETCHD] +BackSprite = 4,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODUO] +BackSprite = 14,0 +FrontSprite = -10,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DODRIO] +BackSprite = 8,0 +FrontSprite = -2,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEL] +BackSprite = -8,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEWGONG] +BackSprite = -7,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GRIMER] +BackSprite = 3,0 +FrontSprite = -6,24 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUK] +BackSprite = -2,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELLDER] +BackSprite = -1,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CLOYSTER] +BackSprite = 0,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GASTLY] +BackSprite = -1,0 +FrontSprite = 6,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HAUNTER] +BackSprite = -1,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GENGAR] +BackSprite = -3,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ONIX] +BackSprite = 3,0 +FrontSprite = -2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DROWZEE] +BackSprite = 4,0 +FrontSprite = -3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HYPNO] +BackSprite = 8,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KRABBY] +BackSprite = 4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KINGLER] +BackSprite = -2,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VOLTORB] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRODE] +BackSprite = 0,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXEGGCUTE] +BackSprite = 0,0 +FrontSprite = 0,28 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXEGGUTOR] +BackSprite = 0,0 +FrontSprite = -1,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CUBONE] +BackSprite = 2,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAROWAK] +BackSprite = -2,0 +FrontSprite = -8,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONLEE] +BackSprite = 8,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HITMONCHAN] +BackSprite = 4,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LICKITUNG] +BackSprite = -2,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KOFFING] +BackSprite = -2,0 +FrontSprite = 1,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WEEZING] +BackSprite = -2,0 +FrontSprite = -3,-2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYHORN] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYDON] +BackSprite = 5,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHANSEY] +BackSprite = -1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TANGELA] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KANGASKHAN] +BackSprite = 3,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HORSEA] +BackSprite = 1,0 +FrontSprite = 3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SEADRA] +BackSprite = -3,0 +FrontSprite = 9,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOLDEEN] +BackSprite = -4,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEAKING] +BackSprite = -8,0 +FrontSprite = 8,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARYU] +BackSprite = 3,0 +FrontSprite = 4,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARMIE] +BackSprite = 2,0 +FrontSprite = 2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MRMIME] +BackSprite = 5,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCYTHER] +BackSprite = -5,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JYNX] +BackSprite = 3,0 +FrontSprite = -5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTABUZZ] +BackSprite = 0,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMAR] +BackSprite = -1,0 +FrontSprite = -7,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PINSIR] +BackSprite = 5,0 +FrontSprite = -3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAUROS] +BackSprite = -1,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGIKARP] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GYARADOS] +BackSprite = 2,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LAPRAS] +BackSprite = 1,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DITTO] +BackSprite = 0,0 +FrontSprite = 0,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EEVEE] +BackSprite = -7,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VAPOREON] +BackSprite = 4,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JOLTEON] +BackSprite = -4,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAREON] +BackSprite = -7,0 +FrontSprite = 4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PORYGON] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMANYTE] +BackSprite = 0,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OMASTAR] +BackSprite = 5,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTO] +BackSprite = 0,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KABUTOPS] +BackSprite = 7,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AERODACTYL] +BackSprite = -4,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNORLAX] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARTICUNO] +BackSprite = 8,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZAPDOS] +BackSprite = 5,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MOLTRES] +BackSprite = 0,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRATINI] +BackSprite = -2,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAGONAIR] +BackSprite = 2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DRAGONITE] +BackSprite = 5,0 +FrontSprite = 6,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEWTWO] +BackSprite = 14,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEW] +BackSprite = -8,0 +FrontSprite = -9,-3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHIKORITA] +BackSprite = -8,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BAYLEEF] +BackSprite = -3,0 +FrontSprite = 1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEGANIUM] +BackSprite = 0,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CYNDAQUIL] +BackSprite = -8,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUILAVA] +BackSprite = -8,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYPHLOSION] +BackSprite = 0,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOTODILE] +BackSprite = -2,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CROCONAW] +BackSprite = -1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FERALIGATR] +BackSprite = 2,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SENTRET] +BackSprite = 3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FURRET] +BackSprite = -12,0 +FrontSprite = -2,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOOTHOOT] +BackSprite = 5,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NOCTOWL] +BackSprite = -2,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDYBA] +BackSprite = 4,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEDIAN] +BackSprite = 1,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPINARAK] +BackSprite = 0,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARIADOS] +BackSprite = 5,0 +FrontSprite = -2,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROBAT] +BackSprite = 4,0 +FrontSprite = 4,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHINCHOU] +BackSprite = 5,0 +FrontSprite = 3,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LANTURN] +BackSprite = 1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PICHU] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PICHU,2] +BackSprite = -5,0 +FrontSprite = 3,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLEFFA] +BackSprite = 0,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[IGGLYBUFF] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGEPI] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TOGETIC] +BackSprite = -2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NATU] +BackSprite = -5,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[XATU] +BackSprite = -3,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAREEP] +BackSprite = -1,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLAAFFY] +BackSprite = -3,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AMPHAROS] +BackSprite = 4,0 +FrontSprite = -5,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BELLOSSOM] +BackSprite = 0,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARILL] +BackSprite = -2,0 +FrontSprite = 6,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZUMARILL] +BackSprite = 1,0 +FrontSprite = 4,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SUDOWOODO] +BackSprite = 5,0 +FrontSprite = 5,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[POLITOED] +BackSprite = 4,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOPPIP] +BackSprite = 9,0 +FrontSprite = 3,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SKIPLOOM] +BackSprite = 2,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[JUMPLUFF] +BackSprite = -6,0 +FrontSprite = -1,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AIPOM] +BackSprite = -11,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNKERN] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SUNFLORA] +BackSprite = 0,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[YANMA] +BackSprite = -8,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WOOPER] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[QUAGSIRE] +BackSprite = 6,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ESPEON] +BackSprite = -4,0 +FrontSprite = -4,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UMBREON] +BackSprite = 0,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MURKROW] +BackSprite = 0,0 +FrontSprite = 1,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLOWKING] +BackSprite = 0,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISDREAVUS] +BackSprite = -4,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[UNOWN] +BackSprite = 0,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WOBBUFFET] +BackSprite = -3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIRAFARIG] +BackSprite = -3,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PINECO] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FORRETRESS] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUNSPARCE] +BackSprite = 0,0 +FrontSprite = 5,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GLIGAR] +BackSprite = 2,0 +FrontSprite = -2,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STEELIX] +BackSprite = 2,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SNUBBULL] +BackSprite = 1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRANBULL] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[QWILFISH] +BackSprite = -5,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCIZOR] +BackSprite = 6,0 +FrontSprite = -4,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHUCKLE] +BackSprite = 1,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERACROSS] +BackSprite = 0,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNEASEL] +BackSprite = -3,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TEDDIURSA] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[URSARING] +BackSprite = 1,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SLUGMA] +BackSprite = -5,0 +FrontSprite = -1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGCARGO] +BackSprite = -1,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWINUB] +BackSprite = 0,0 +FrontSprite = -1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PILOSWINE] +BackSprite = 0,0 +FrontSprite = 1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORSOLA] +BackSprite = -1,0 +FrontSprite = 3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REMORAID] +BackSprite = -7,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[OCTILLERY] +BackSprite = 4,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DELIBIRD] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTINE] +BackSprite = 0,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKARMORY] +BackSprite = 4,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOUNDOUR] +BackSprite = -1,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HOUNDOOM] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KINGDRA] +BackSprite = -5,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHANPY] +BackSprite = 3,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DONPHAN] +BackSprite = 3,0 +FrontSprite = -10,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGON2] +BackSprite = 3,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STANTLER] +BackSprite = 3,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMEARGLE] +BackSprite = 5,0 +FrontSprite = -6,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYROGUE] +BackSprite = 4,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HITMONTOP] +BackSprite = 0,0 +FrontSprite = -2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SMOOCHUM] +BackSprite = 0,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELEKID] +BackSprite = 9,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGBY] +BackSprite = -1,0 +FrontSprite = 4,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MILTANK] +BackSprite = -3,0 +FrontSprite = 8,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLISSEY] +BackSprite = -2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAIKOU] +BackSprite = -4,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ENTEI] +BackSprite = -4,0 +FrontSprite = 4,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SUICUNE] +BackSprite = 1,0 +FrontSprite = -1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVITAR] +BackSprite = -6,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PUPITAR] +BackSprite = -4,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TYRANITAR] +BackSprite = -3,0 +FrontSprite = 7,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUGIA] +BackSprite = 5,0 +FrontSprite = -2,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HOOH] +BackSprite = 3,0 +FrontSprite = 0,-7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CELEBI] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TREECKO] +BackSprite = -2,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GROVYLE] +BackSprite = 1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCEPTILE] +BackSprite = 4,0 +FrontSprite = 1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORCHIC] +BackSprite = -2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBUSKEN] +BackSprite = 8,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLAZIKEN] +BackSprite = -6,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUDKIP] +BackSprite = -2,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MARSHTOMP] +BackSprite = -2,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWAMPERT] +BackSprite = 2,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[POOCHYENA] +BackSprite = 5,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIGHTYENA] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZIGZAGOON] +BackSprite = -1,0 +FrontSprite = -5,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LINOONE] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WURMPLE] +BackSprite = -1,0 +FrontSprite = -2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SILCOON] +BackSprite = -2,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEAUTIFLY] +BackSprite = -10,0 +FrontSprite = 9,1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASCOON] +BackSprite = -2,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSTOX] +BackSprite = 6,0 +FrontSprite = 1,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOTAD] +BackSprite = 0,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LOMBRE] +BackSprite = 0,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUDICOLO] +BackSprite = 4,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEEDOT] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NUZLEAF] +BackSprite = 2,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHIFTRY] +BackSprite = 1,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TAILLOW] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWELLOW] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WINGULL] +BackSprite = 2,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PELIPPER] +BackSprite = 0,0 +FrontSprite = 0,-6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RALTS] +BackSprite = 5,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KIRLIA] +BackSprite = 0,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GARDEVOIR] +BackSprite = -5,0 +FrontSprite = 0,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SURSKIT] +BackSprite = 1,0 +FrontSprite = -1,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MASQUERAIN] +BackSprite = 2,0 +FrontSprite = -4,-8 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHROOMISH] +BackSprite = 1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BRELOOM] +BackSprite = -15,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKOTH] +BackSprite = 5,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIGOROTH] +BackSprite = 4,0 +FrontSprite = -4,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SLAKING] +BackSprite = 2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NINCADA] +BackSprite = -1,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[NINJASK] +BackSprite = 0,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHEDINJA] +BackSprite = 0,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISMUR] +BackSprite = 7,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOUDRED] +BackSprite = 2,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[EXPLOUD] +BackSprite = 0,0 +FrontSprite = 0,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAKUHITA] +BackSprite = 4,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HARIYAMA] +BackSprite = 3,0 +FrontSprite = -3,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AZURILL] +BackSprite = -12,0 +FrontSprite = 14,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[NOSEPASS] +BackSprite = 5,0 +FrontSprite = -2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKITTY] +BackSprite = -10,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DELCATTY] +BackSprite = 3,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SABLEYE] +BackSprite = 0,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAWILE] +BackSprite = 2,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARON] +BackSprite = -1,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAIRON] +BackSprite = -1,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AGGRON] +BackSprite = 7,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MEDITITE] +BackSprite = -2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MEDICHAM] +BackSprite = 2,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ELECTRIKE] +BackSprite = -2,0 +FrontSprite = -3,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANECTRIC] +BackSprite = 2,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PLUSLE] +BackSprite = -12,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MINUN] +BackSprite = -3,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VOLBEAT] +BackSprite = 0,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ILLUMISE] +BackSprite = 0,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSELIA] +BackSprite = 2,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GULPIN] +BackSprite = -1,0 +FrontSprite = 1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWALOT] +BackSprite = -1,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CARVANHA] +BackSprite = -1,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHARPEDO] +BackSprite = -2,0 +FrontSprite = 3,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WAILMER] +BackSprite = 0,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WAILORD] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[NUMEL] +BackSprite = 2,0 +FrontSprite = 2,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CAMERUPT] +BackSprite = -1,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORKOAL] +BackSprite = -2,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SPOINK] +BackSprite = 1,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GRUMPIG] +BackSprite = -4,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPINDA] +BackSprite = 0,0 +FrontSprite = 4,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRAPINCH] +BackSprite = 0,0 +FrontSprite = -2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VIBRAVA] +BackSprite = -11,0 +FrontSprite = -1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLYGON] +BackSprite = -7,0 +FrontSprite = 11,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CACNEA] +BackSprite = 0,0 +FrontSprite = -1,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CACTURNE] +BackSprite = 7,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SWABLU] +BackSprite = 4,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ALTARIA] +BackSprite = -10,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZANGOOSE] +BackSprite = -1,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEVIPER] +BackSprite = 4,0 +FrontSprite = 5,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUNATONE] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLROCK] +BackSprite = 2,0 +FrontSprite = 1,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BARBOACH] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHISCASH] +BackSprite = -4,0 +FrontSprite = -1,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CORPHISH] +BackSprite = 2,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRAWDAUNT] +BackSprite = 9,0 +FrontSprite = -1,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BALTOY] +BackSprite = 0,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CLAYDOL] +BackSprite = 1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LILEEP] +BackSprite = 5,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRADILY] +BackSprite = 1,0 +FrontSprite = -3,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ANORITH] +BackSprite = 10,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARMALDO] +BackSprite = 0,0 +FrontSprite = 4,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FEEBAS] +BackSprite = -5,0 +FrontSprite = 1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MILOTIC] +BackSprite = -3,0 +FrontSprite = 1,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CASTFORM] +BackSprite = 1,0 +FrontSprite = -2,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CASTFORM,1] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,2] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CASTFORM,3] +BackSprite = -1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KECLEON] +BackSprite = 3,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHUPPET] +BackSprite = -4,0 +FrontSprite = 2,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BANETTE] +BackSprite = -6,0 +FrontSprite = 3,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUSKULL] +BackSprite = 6,0 +FrontSprite = -1,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUSCLOPS] +BackSprite = 1,0 +FrontSprite = 7,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TROPIUS] +BackSprite = 4,0 +FrontSprite = 7,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMECHO] +BackSprite = 9,0 +FrontSprite = 1,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ABSOL] +BackSprite = -5,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WYNAUT] +BackSprite = 2,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SNORUNT] +BackSprite = -1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLALIE] +BackSprite = -5,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SPHEAL] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEALEO] +BackSprite = 1,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WALREIN] +BackSprite = 0,0 +FrontSprite = 1,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CLAMPERL] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HUNTAIL] +BackSprite = -3,0 +FrontSprite = 0,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOREBYSS] +BackSprite = -4,0 +FrontSprite = 5,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RELICANTH] +BackSprite = -7,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LUVDISC] +BackSprite = -3,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BAGON] +BackSprite = 3,0 +FrontSprite = -5,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHELGON] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SALAMENCE] +BackSprite = -1,0 +FrontSprite = -2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BELDUM] +BackSprite = -6,0 +FrontSprite = 3,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[METANG] +BackSprite = 2,0 +FrontSprite = 3,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[METAGROSS] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIROCK] +BackSprite = 1,0 +FrontSprite = -6,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGICE] +BackSprite = -3,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGISTEEL] +BackSprite = 1,0 +FrontSprite = -1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LATIAS] +BackSprite = 5,0 +FrontSprite = -2,-9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LATIOS] +BackSprite = 3,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KYOGRE] +BackSprite = 0,0 +FrontSprite = 4,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GROUDON] +BackSprite = -1,0 +FrontSprite = 2,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RAYQUAZA] +BackSprite = 4,0 +FrontSprite = -3,-3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JIRACHI] +BackSprite = -1,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEOXYS] +BackSprite = 0,0 +FrontSprite = 2,7 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DEOXYS,1] +BackSprite = 4,0 +FrontSprite = 1,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,2] +BackSprite = 3,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEOXYS,3] +BackSprite = -4,0 +FrontSprite = -4,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TURTWIG] +BackSprite = -3,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GROTLE] +BackSprite = -4,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORTERRA] +BackSprite = 0,0 +FrontSprite = 1,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHIMCHAR] +BackSprite = 4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MONFERNO] +BackSprite = -6,0 +FrontSprite = 10,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[INFERNAPE] +BackSprite = 1,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PIPLUP] +BackSprite = 0,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PRINPLUP] +BackSprite = 2,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMPOLEON] +BackSprite = 2,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[STARLY] +BackSprite = -3,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STARAVIA] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STARAPTOR] +BackSprite = -5,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BIDOOF] +BackSprite = 0,0 +FrontSprite = -1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BIBAREL] +BackSprite = -6,0 +FrontSprite = 7,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KRICKETOT] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[KRICKETUNE] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHINX] +BackSprite = -9,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXIO] +BackSprite = 1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUXRAY] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BUDEW] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROSERADE] +BackSprite = 8,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRANIDOS] +BackSprite = 0,0 +FrontSprite = -4,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RAMPARDOS] +BackSprite = 0,0 +FrontSprite = 0,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHIELDON] +BackSprite = 0,0 +FrontSprite = 2,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASTIODON] +BackSprite = -4,0 +FrontSprite = -5,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BURMY] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WORMADAM] +BackSprite = 0,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MOTHIM] +BackSprite = 11,0 +FrontSprite = 4,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COMBEE] +BackSprite = 1,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VESPIQUEN] +BackSprite = -1,0 +FrontSprite = 0,-4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PACHIRISU] +BackSprite = -5,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BUIZEL] +BackSprite = -12,0 +FrontSprite = 4,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FLOATZEL] +BackSprite = 3,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CHERUBI] +BackSprite = -3,0 +FrontSprite = 6,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM] +BackSprite = -1,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHERRIM,1] +BackSprite = 2,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHELLOS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GASTRODON] +BackSprite = -6,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AMBIPOM] +BackSprite = 8,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFLOON] +BackSprite = 2,0 +FrontSprite = 4,-5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DRIFBLIM] +BackSprite = -1,0 +FrontSprite = 3,-6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BUNEARY] +BackSprite = 8,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LOPUNNY] +BackSprite = -6,0 +FrontSprite = -1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MISMAGIUS] +BackSprite = -3,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HONCHKROW] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLAMEOW] +BackSprite = -6,0 +FrontSprite = 7,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PURUGLY] +BackSprite = 4,0 +FrontSprite = -4,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CHINGLING] +BackSprite = 1,0 +FrontSprite = 3,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNKY] +BackSprite = -3,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SKUNTANK] +BackSprite = 0,0 +FrontSprite = -3,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BRONZOR] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRONZONG] +BackSprite = 5,0 +FrontSprite = -2,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[BONSLY] +BackSprite = 3,0 +FrontSprite = -3,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MIMEJR] +BackSprite = -1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[HAPPINY] +BackSprite = -2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHATOT] +BackSprite = -6,0 +FrontSprite = 0,20 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SPIRITOMB] +BackSprite = 2,0 +FrontSprite = 2,-2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GIBLE] +BackSprite = -2,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GABITE] +BackSprite = -6,0 +FrontSprite = -2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GARCHOMP] +BackSprite = 0,0 +FrontSprite = -3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MUNCHLAX] +BackSprite = -1,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[RIOLU] +BackSprite = -9,0 +FrontSprite = -2,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LUCARIO] +BackSprite = 8,0 +FrontSprite = 1,10 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HIPPOPOTAS] +BackSprite = 0,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HIPPOWDON] +BackSprite = 2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SKORUPI] +BackSprite = -3,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRAPION] +BackSprite = 7,0 +FrontSprite = -11,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CROAGUNK] +BackSprite = -1,0 +FrontSprite = -3,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TOXICROAK] +BackSprite = 0,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARNIVINE] +BackSprite = -2,0 +FrontSprite = 3,4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FINNEON] +BackSprite = -7,0 +FrontSprite = 4,5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LUMINEON] +BackSprite = -8,0 +FrontSprite = 5,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANTYKE] +BackSprite = -1,0 +FrontSprite = 1,-3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNOVER] +BackSprite = 1,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ABOMASNOW] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WEAVILE] +BackSprite = -4,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAGNEZONE] +BackSprite = 0,0 +FrontSprite = 0,-5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LICKILICKY] +BackSprite = 1,0 +FrontSprite = 2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RHYPERIOR] +BackSprite = 1,0 +FrontSprite = 6,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TANGROWTH] +BackSprite = 0,0 +FrontSprite = 3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELECTIVIRE] +BackSprite = 0,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MAGMORTAR] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TOGEKISS] +BackSprite = -3,0 +FrontSprite = 3,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YANMEGA] +BackSprite = -1,0 +FrontSprite = 2,-1 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LEAFEON] +BackSprite = -3,0 +FrontSprite = 5,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GLACEON] +BackSprite = -3,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GLISCOR] +BackSprite = 3,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MAMOSWINE] +BackSprite = -1,0 +FrontSprite = -7,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PORYGONZ] +BackSprite = 2,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GALLADE] +BackSprite = 1,0 +FrontSprite = -2,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PROBOPASS] +BackSprite = 5,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DUSKNOIR] +BackSprite = 5,0 +FrontSprite = -4,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FROSLASS] +BackSprite = 6,0 +FrontSprite = 4,2 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM] +BackSprite = 5,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ROTOM,1] +BackSprite = 5,0 +FrontSprite = 2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,2] +BackSprite = 1,0 +FrontSprite = 0,-1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,3] +BackSprite = 0,0 +FrontSprite = 1,-4 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,4] +BackSprite = -4,0 +FrontSprite = -2,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ROTOM,5] +BackSprite = 1,0 +FrontSprite = 0,0 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UXIE] +BackSprite = -1,0 +FrontSprite = 0,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MESPRIT] +BackSprite = 1,0 +FrontSprite = -3,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AZELF] +BackSprite = 0,0 +FrontSprite = 9,5 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DIALGA] +BackSprite = 1,0 +FrontSprite = -2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PALKIA] +BackSprite = 0,0 +FrontSprite = 4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HEATRAN] +BackSprite = 2,0 +FrontSprite = -1,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[REGIGIGAS] +BackSprite = 0,0 +FrontSprite = -4,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA] +BackSprite = -6,0 +FrontSprite = -3,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIRATINA,1] +BackSprite = -6,0 +FrontSprite = -2,-8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRESSELIA] +BackSprite = -5,0 +FrontSprite = 3,-5 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PHIONE] +BackSprite = -9,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MANAPHY] +BackSprite = -9,0 +FrontSprite = 7,3 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DARKRAI] +BackSprite = 0,0 +FrontSprite = -2,1 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SHAYMIN] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SHAYMIN,1] +BackSprite = 0,0 +FrontSprite = 0,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ARCEUS] +BackSprite = -4,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VICTINI] +BackSprite = 0,0 +FrontSprite = -3,22 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SNIVY] +BackSprite = -2,0 +FrontSprite = 3,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SERVINE] +BackSprite = 0,0 +FrontSprite = 4,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SERPERIOR] +BackSprite = -3,0 +FrontSprite = -1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TEPIG] +BackSprite = -4,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PIGNITE] +BackSprite = -1,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMBOAR] +BackSprite = 1,0 +FrontSprite = 2,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[OSHAWOTT] +BackSprite = 0,0 +FrontSprite = 2,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DEWOTT] +BackSprite = 2,0 +FrontSprite = 3,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SAMUROTT] +BackSprite = -1,0 +FrontSprite = 1,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PATRAT] +BackSprite = -1,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[WATCHOG] +BackSprite = -2,0 +FrontSprite = 6,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIPUP] +BackSprite = 1,0 +FrontSprite = -2,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HERDIER] +BackSprite = -3,0 +FrontSprite = -3,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[STOUTLAND] +BackSprite = -1,0 +FrontSprite = 1,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PURRLOIN] +BackSprite = 2,0 +FrontSprite = -2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LIEPARD] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PANSAGE] +BackSprite = 0,0 +FrontSprite = 6,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISAGE] +BackSprite = -1,0 +FrontSprite = 5,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANSEAR] +BackSprite = 0,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMISEAR] +BackSprite = 0,0 +FrontSprite = 1,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PANPOUR] +BackSprite = 0,0 +FrontSprite = 8,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SIMIPOUR] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MUNNA] +BackSprite = 0,0 +FrontSprite = 0,33 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MUSHARNA] +BackSprite = 6,0 +FrontSprite = -9,9 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PIDOVE] +BackSprite = -3,0 +FrontSprite = 1,29 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRANQUILL] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[UNFEZANT] +BackSprite = -3,0 +FrontSprite = 2,17 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BLITZLE] +BackSprite = -6,0 +FrontSprite = -4,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZEBSTRIKA] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ROGGENROLA] +BackSprite = 0,0 +FrontSprite = 0,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BOLDORE] +BackSprite = 2,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GIGALITH] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[WOOBAT] +BackSprite = 2,0 +FrontSprite = 3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SWOOBAT] +BackSprite = -3,0 +FrontSprite = -1,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRILBUR] +BackSprite = 3,0 +FrontSprite = 1,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EXCADRILL] +BackSprite = -1,0 +FrontSprite = 0,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[AUDINO] +BackSprite = 2,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TIMBURR] +BackSprite = -1,0 +FrontSprite = 4,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GURDURR] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CONKELDURR] +BackSprite = 3,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYMPOLE] +BackSprite = 0,0 +FrontSprite = 0,21 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[PALPITOAD] +BackSprite = -6,0 +FrontSprite = 2,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SEISMITOAD] +BackSprite = 2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THROH] +BackSprite = 2,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SAWK] +BackSprite = 2,0 +FrontSprite = -1,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SEWADDLE] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWADLOON] +BackSprite = 1,0 +FrontSprite = 1,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[LEAVANNY] +BackSprite = 0,0 +FrontSprite = -2,7 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VENIPEDE] +BackSprite = -3,0 +FrontSprite = 2,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIRLIPEDE] +BackSprite = 4,0 +FrontSprite = 1,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SCOLIPEDE] +BackSprite = 2,0 +FrontSprite = -3,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COTTONEE] +BackSprite = 0,0 +FrontSprite = 2,16 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[WHIMSICOTT] +BackSprite = 0,0 +FrontSprite = 0,23 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[PETILIL] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LILLIGANT] +BackSprite = 1,0 +FrontSprite = 3,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BASCULIN] +BackSprite = -7,0 +FrontSprite = 0,24 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SANDILE] +BackSprite = -2,0 +FrontSprite = -1,37 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KROKOROK] +BackSprite = 3,0 +FrontSprite = 5,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KROOKODILE] +BackSprite = 2,0 +FrontSprite = 1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARUMAKA] +BackSprite = -2,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DARMANITAN] +BackSprite = 2,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DARMANITAN,1] +BackSprite = 1,0 +FrontSprite = 1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MARACTUS] +BackSprite = 2,0 +FrontSprite = 0,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DWEBBLE] +BackSprite = 2,0 +FrontSprite = 0,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CRUSTLE] +BackSprite = -1,0 +FrontSprite = 1,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SCRAGGY] +BackSprite = 0,0 +FrontSprite = 7,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SCRAFTY] +BackSprite = 0,0 +FrontSprite = 6,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SIGILYPH] +BackSprite = 7,0 +FrontSprite = -6,3 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[YAMASK] +BackSprite = 0,0 +FrontSprite = 2,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[COFAGRIGUS] +BackSprite = 1,0 +FrontSprite = -5,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TIRTOUGA] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CARRACOSTA] +BackSprite = -1,0 +FrontSprite = -4,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ARCHEN] +BackSprite = 0,0 +FrontSprite = 3,31 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ARCHEOPS] +BackSprite = 4,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[TRUBBISH] +BackSprite = -1,0 +FrontSprite = 4,31 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GARBODOR] +BackSprite = 5,0 +FrontSprite = -1,16 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZORUA] +BackSprite = -1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZOROARK] +BackSprite = 0,0 +FrontSprite = 3,17 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[MINCCINO] +BackSprite = -3,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[CINCCINO] +BackSprite = 1,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOTHITA] +BackSprite = 0,0 +FrontSprite = 0,30 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHORITA] +BackSprite = 0,0 +FrontSprite = 2,24 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GOTHITELLE] +BackSprite = 1,0 +FrontSprite = 0,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[SOLOSIS] +BackSprite = 0,0 +FrontSprite = 0,9 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[DUOSION] +BackSprite = 0,0 +FrontSprite = 2,11 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[REUNICLUS] +BackSprite = 3,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DUCKLETT] +BackSprite = -4,0 +FrontSprite = 1,28 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SWANNA] +BackSprite = -2,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLITE] +BackSprite = 1,0 +FrontSprite = -1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[VANILLISH] +BackSprite = 1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VANILLUXE] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEERLING] +BackSprite = -3,0 +FrontSprite = -1,27 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[SAWSBUCK] +BackSprite = 1,0 +FrontSprite = -3,13 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EMOLGA] +BackSprite = -4,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KARRABLAST] +BackSprite = 1,0 +FrontSprite = 2,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[ESCAVALIER] +BackSprite = 3,0 +FrontSprite = 2,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FOONGUS] +BackSprite = 0,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[AMOONGUSS] +BackSprite = 7,0 +FrontSprite = 2,28 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRILLISH] +BackSprite = -1,0 +FrontSprite = 0,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[JELLICENT] +BackSprite = 1,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ALOMOMOLA] +BackSprite = -2,0 +FrontSprite = 0,4 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[JOLTIK] +BackSprite = 0,0 +FrontSprite = 5,34 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GALVANTULA] +BackSprite = 0,0 +FrontSprite = 3,32 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[FERROSEED] +BackSprite = 0,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[FERROTHORN] +BackSprite = 0,0 +FrontSprite = 3,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLINK] +BackSprite = 2,0 +FrontSprite = -2,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KLANG] +BackSprite = 1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KLINKLANG] +BackSprite = 1,0 +FrontSprite = 0,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TYNAMO] +BackSprite = -4,0 +FrontSprite = 1,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTRIK] +BackSprite = 0,0 +FrontSprite = 0,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[EELEKTROSS] +BackSprite = -5,0 +FrontSprite = -7,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ELGYEM] +BackSprite = 0,0 +FrontSprite = 0,27 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BEHEEYEM] +BackSprite = -2,0 +FrontSprite = 0,17 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LITWICK] +BackSprite = -1,0 +FrontSprite = -1,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[LAMPENT] +BackSprite = -1,0 +FrontSprite = 4,13 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[CHANDELURE] +BackSprite = -2,0 +FrontSprite = -1,2 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[AXEW] +BackSprite = 1,0 +FrontSprite = -1,30 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[FRAXURE] +BackSprite = -5,0 +FrontSprite = 1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HAXORUS] +BackSprite = -1,0 +FrontSprite = -1,9 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CUBCHOO] +BackSprite = -2,0 +FrontSprite = 1,32 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BEARTIC] +BackSprite = -2,0 +FrontSprite = 0,15 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[CRYOGONAL] +BackSprite = -1,0 +FrontSprite = 0,8 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[SHELMET] +BackSprite = -4,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ACCELGOR] +BackSprite = -4,0 +FrontSprite = 4,25 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[STUNFISK] +BackSprite = -3,0 +FrontSprite = 2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENFOO] +BackSprite = -1,0 +FrontSprite = 0,25 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MIENSHAO] +BackSprite = -3,0 +FrontSprite = 1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[DRUDDIGON] +BackSprite = 0,0 +FrontSprite = 2,18 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[GOLETT] +BackSprite = 1,0 +FrontSprite = 1,20 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[GOLURK] +BackSprite = 2,0 +FrontSprite = 3,10 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[PAWNIARD] +BackSprite = 2,0 +FrontSprite = 0,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BISHARP] +BackSprite = 0,0 +FrontSprite = 2,15 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[BOUFFALANT] +BackSprite = -1,0 +FrontSprite = -10,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RUFFLET] +BackSprite = 1,0 +FrontSprite = 1,26 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[BRAVIARY] +BackSprite = -2,0 +FrontSprite = 5,3 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VULLABY] +BackSprite = 0,0 +FrontSprite = 2,26 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MANDIBUZZ] +BackSprite = 0,0 +FrontSprite = -1,18 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[HEATMOR] +BackSprite = 3,0 +FrontSprite = -2,21 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DURANT] +BackSprite = 0,0 +FrontSprite = 1,34 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[DEINO] +BackSprite = 0,0 +FrontSprite = -1,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[ZWEILOUS] +BackSprite = 0,0 +FrontSprite = 2,20 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[HYDREIGON] +BackSprite = -2,0 +FrontSprite = 1,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LARVESTA] +BackSprite = 0,0 +FrontSprite = -2,29 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[VOLCARONA] +BackSprite = 0,0 +FrontSprite = 3,2 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[COBALION] +BackSprite = 0,0 +FrontSprite = 0,12 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TERRAKION] +BackSprite = 0,0 +FrontSprite = -4,22 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[VIRIZION] +BackSprite = 0,0 +FrontSprite = -1,14 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[TORNADUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[TORNADUS,1] +BackSprite = -2,0 +FrontSprite = 8,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS] +BackSprite = 0,0 +FrontSprite = 0,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[THUNDURUS,1] +BackSprite = -3,0 +FrontSprite = 2,5 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[RESHIRAM] +BackSprite = 2,0 +FrontSprite = 6,11 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[ZEKROM] +BackSprite = 0,0 +FrontSprite = 3,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS] +BackSprite = 0,0 +FrontSprite = 2,6 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[LANDORUS,1] +BackSprite = -8,0 +FrontSprite = 3,14 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM] +BackSprite = -3,0 +FrontSprite = -1,23 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,1] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,2] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,3] +BackSprite = 0,0 +FrontSprite = 9,7 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KYUREM,4] +BackSprite = -3,0 +FrontSprite = 5,4 +ShadowX = 0 +ShadowSize = 3 +#------------------------------- +[KELDEO] +BackSprite = -1,0 +FrontSprite = 2,21 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[KELDEO,1] +BackSprite = 1,0 +FrontSprite = 0,19 +ShadowX = 0 +ShadowSize = 2 +#------------------------------- +[MELOETTA] +BackSprite = 0,0 +FrontSprite = 5,12 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[MELOETTA,1] +BackSprite = 0,0 +FrontSprite = 1,15 +ShadowX = 0 +ShadowSize = 1 +#------------------------------- +[GENESECT] +BackSprite = 0,0 +FrontSprite = -3,18 +ShadowX = 0 +ShadowSize = 3