diff --git a/Data/Scripts/010_Data/001_GameData.rb b/Data/Scripts/010_Data/001_GameData.rb index 19e3e62e1..2341392fc 100644 --- a/Data/Scripts/010_Data/001_GameData.rb +++ b/Data/Scripts/010_Data/001_GameData.rb @@ -114,8 +114,13 @@ module GameData return self::DATA.keys end - # Yields all data in alphabetical order. + # Yields all data in the order they were defined. def each + self::DATA.each_value { |value| yield value } + end + + # Yields all data in alphabetical order. + def each_alphabetically keys = self::DATA.keys.sort { |a, b| self::DATA[a].real_name <=> self::DATA[b].real_name } keys.each { |key| yield self::DATA[key] } end diff --git a/Data/Scripts/010_Data/002_PBS data/003_Type.rb b/Data/Scripts/010_Data/002_PBS data/003_Type.rb index ac29c74f0..ff718d0bc 100644 --- a/Data/Scripts/010_Data/002_PBS data/003_Type.rb +++ b/Data/Scripts/010_Data/002_PBS data/003_Type.rb @@ -1,7 +1,6 @@ module GameData class Type attr_reader :id - attr_reader :id_number attr_reader :real_name attr_reader :special_type attr_reader :pseudo_type @@ -27,10 +26,6 @@ module GameData extend ClassMethodsSymbols include InstanceMethods - def self.each - DATA.each_value { |type| yield type } - end - def initialize(hash) @id = hash[:id] @real_name = hash[:name] || "Unnamed" 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 ebbdac968..718ab7c8d 100644 --- a/Data/Scripts/010_Data/002_PBS data/008_Species.rb +++ b/Data/Scripts/010_Data/002_PBS data/008_Species.rb @@ -1,7 +1,6 @@ module GameData class Species attr_reader :id - attr_reader :id_number attr_reader :species attr_reader :form attr_reader :real_name @@ -51,9 +50,13 @@ module GameData DATA = {} DATA_FILENAME = "species.dat" - extend ClassMethods + extend ClassMethodsSymbols include InstanceMethods + def self.each_species + DATA.each_value { |species| yield species if species.form == 0 } + end + # @param species [Symbol, self, String, Integer] # @param form [Integer] # @return [self, nil] @@ -128,7 +131,6 @@ module GameData def initialize(hash) @id = hash[:id] - @id_number = hash[:id_number] || -1 @species = hash[:species] || @id @form = hash[:form] || 0 @real_name = hash[:name] || "Unnamed" @@ -182,22 +184,22 @@ module GameData # @return [String] the translated name of this species def name - return pbGetMessage(MessageTypes::Species, @id_number) + return pbGetMessageFromHash(MessageTypes::Species, @real_name) end # @return [String] the translated name of this form of this species def form_name - return pbGetMessage(MessageTypes::FormNames, @id_number) + return pbGetMessageFromHash(MessageTypes::FormNames, @real_form_name) end # @return [String] the translated Pokédex category of this species def category - return pbGetMessage(MessageTypes::Kinds, @id_number) + return pbGetMessageFromHash(MessageTypes::Kinds, @real_category) end # @return [String] the translated Pokédex entry of this species def pokedex_entry - return pbGetMessage(MessageTypes::Entries, @id_number) + return pbGetMessageFromHash(MessageTypes::Entries, @real_pokedex_entry) end def apply_metrics_to_sprite(sprite, index, shadow = false) @@ -234,7 +236,7 @@ module GameData def get_family_evolutions(exclude_invalid = true) evos = self.get_evolutions(exclude_invalid) - evos = evos.sort { |a, b| GameData::Species.get(a[0]).id_number <=> GameData::Species.get(b[0]).id_number } + evos = evos.sort { |a, b| GameData::Species.keys.index(a[0]) <=> GameData::Species.keys.index(b[0]) } ret = [] evos.each do |evo| ret.push([@species].concat(evo)) # [Prevo species, evo species, method, parameter] diff --git a/Data/Scripts/010_Data/002_PBS data/013_Trainer.rb b/Data/Scripts/010_Data/002_PBS data/013_Trainer.rb index f49a321a7..aa13dd8ed 100644 --- a/Data/Scripts/010_Data/002_PBS data/013_Trainer.rb +++ b/Data/Scripts/010_Data/002_PBS data/013_Trainer.rb @@ -134,9 +134,10 @@ module GameData pkmn.shiny = (pkmn_data[:shininess]) ? true : false if pkmn_data[:nature] pkmn.nature = pkmn_data[:nature] - else - nature = pkmn.species_data.id_number + GameData::TrainerType.get(trainer.trainer_type).id_number - pkmn.nature = nature % (GameData::Nature::DATA.length / 2) + else # Make the nature random but consistent for the same species used by the same trainer type + species_num = GameData::Species.keys.index(species) || 1 + tr_type_num = GameData::TrainerType.keys.index(@trainer_type) || 1 + pkmn.nature = (species_num + tr_type_num) % (GameData::Nature::DATA.length / 2) end GameData::Stat.each_main do |s| if pkmn_data[:iv] diff --git a/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb b/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb index 0cc1af5a3..1e6a42bf0 100644 --- a/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb +++ b/Data/Scripts/015_Trainers and player/005_Player_Pokedex.rb @@ -78,7 +78,7 @@ class Player < Trainer def seen_any?(dex = -1) validate dex => Integer if dex == -1 - GameData::Species.each { |s| return true if s.form == 0 && @seen[s.species] } + GameData::Species.each_species { |s| return true if @seen[s.species] } else pbAllRegionalSpecies(dex).each { |s| return true if s && @seen[s] } end @@ -269,7 +269,7 @@ class Player < Trainer def count_species(hash, region = -1) ret = 0 if region == -1 - GameData::Species.each { |s| ret += 1 if s.form == 0 && hash[s.species] } + GameData::Species.each_species { |s| ret += 1 if hash[s.species] } else pbAllRegionalSpecies(region).each { |s| ret += 1 if s && hash[s] } end diff --git a/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb b/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb index 57e759a4d..639e1e2b6 100644 --- a/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb +++ b/Data/Scripts/016_UI/001_Non-interactive UI/006_UI_HallOfFame.rb @@ -58,6 +58,8 @@ class HallOfFame_Scene @useMusic=false @battlerIndex=0 @hallEntry=[] + @nationalDexList = [:NONE] + GameData::Species.each_species { |s| @nationalDexList.push(s.species) } end def pbStartSceneEntry @@ -305,8 +307,8 @@ class HallOfFame_Scene idno=(pokemon.owner.name.empty? || pokemon.egg?) ? "?????" : sprintf("%05d",pokemon.owner.public_id) dexnumber = _INTL("No. ???") if !pokemon.egg? - species_data = GameData::Species.get(pokemon.species) - dexnumber = _ISPRINTF("No. {1:03d}",species_data.id_number) + number = @nationalDexList.index(pokemon.species) || 0 + dexnumber = _ISPRINTF("No. {1:03d}", number) end textPositions=[ [dexnumber,32,Graphics.height-86,0,BASECOLOR,SHADOWCOLOR], diff --git a/Data/Scripts/016_UI/003_UI_Pokedex_Main.rb b/Data/Scripts/016_UI/003_UI_Pokedex_Main.rb index 5104f8bf2..f92579f11 100644 --- a/Data/Scripts/016_UI/003_UI_Pokedex_Main.rb +++ b/Data/Scripts/016_UI/003_UI_Pokedex_Main.rb @@ -318,7 +318,7 @@ class PokemonPokedex_Scene if !regionalSpecies || regionalSpecies.length == 0 # If no Regional Dex defined for the given region, use the National Pokédex regionalSpecies = [] - GameData::Species.each { |s| regionalSpecies.push(s.id) if s.form == 0 } + GameData::Species.each_species { |s| regionalSpecies.push(s.id) } end shift = Settings::DEXES_WITH_OFFSETS.include?(region) ret = [] diff --git a/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb b/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb index a4e759509..a1e7a102f 100644 --- a/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb +++ b/Data/Scripts/016_UI/004_UI_Pokedex_Entry.rb @@ -74,10 +74,13 @@ class PokemonPokedexInfo_Scene dexnumshift = false if $Trainer.pokedex.unlocked?(-1) # National Dex is unlocked species_data = GameData::Species.try_get(species) - dexnum = species_data.id_number if species_data - dexnumshift = true if Settings::DEXES_WITH_OFFSETS.include?(-1) + if species_data + nationalDexList = [:NONE] + GameData::Species.each_species { |s| nationalDexList.push(s.species) } + dexnum = nationalDexList.index(species_data.species) || 0 + dexnumshift = true if dexnum > 0 && Settings::DEXES_WITH_OFFSETS.include?(-1) + end else - dexnum = 0 for i in 0...$Trainer.pokedex.dexes_count - 1 # Regional Dexes next if !$Trainer.pokedex.unlocked?(i) num = pbGetRegionalNumber(i,species) diff --git a/Data/Scripts/016_UI/006_UI_Summary.rb b/Data/Scripts/016_UI/006_UI_Summary.rb index 51250dc38..bc75a38f2 100644 --- a/Data/Scripts/016_UI/006_UI_Summary.rb +++ b/Data/Scripts/016_UI/006_UI_Summary.rb @@ -167,6 +167,8 @@ class PokemonSummary_Scene @sprites["messagebox"].visible = false @sprites["messagebox"].letterbyletter = true pbBottomLeftLines(@sprites["messagebox"],2) + @nationalDexList = [:NONE] + GameData::Species.each_species { |s| @nationalDexList.push(s.species) } drawPage(@page) pbFadeInAndShow(@sprites) { pbUpdate } end @@ -391,12 +393,12 @@ class PokemonSummary_Scene [_INTL("ID No."),238,202,0,base,shadow], ] # Write the Regional/National Dex number - dexnum = GameData::Species.get(@pokemon.species).id_number + dexnum = 0 dexnumshift = false if $Trainer.pokedex.unlocked?(-1) # National Dex is unlocked + dexnum = @nationalDexList.index(@pokemon.species_data.species) || 0 dexnumshift = true if Settings::DEXES_WITH_OFFSETS.include?(-1) else - dexnum = 0 for i in 0...$Trainer.pokedex.dexes_count - 1 next if !$Trainer.pokedex.unlocked?(i) num = pbGetRegionalNumber(i,@pokemon.species) diff --git a/Data/Scripts/017_Minigames/002_Minigame_TripleTriad.rb b/Data/Scripts/017_Minigames/002_Minigame_TripleTriad.rb index 5933bdd7b..f4b91c8fe 100644 --- a/Data/Scripts/017_Minigames/002_Minigame_TripleTriad.rb +++ b/Data/Scripts/017_Minigames/002_Minigame_TripleTriad.rb @@ -1050,8 +1050,7 @@ end def pbBuyTriads commands = [] realcommands = [] - GameData::Species.each do |s| - next if s.form != 0 + GameData::Species.each_species do |s| next if !$Trainer.owned?(s.species) price = TriadCard.new(s.id).price commands.push([price, s.name, _INTL("{1} - ${2}", s.name, price.to_s_formatted), s.id]) diff --git a/Data/Scripts/018_Alternate battle modes/002_Battle Frontier rules/003_Challenge_EntryRestrictions.rb b/Data/Scripts/018_Alternate battle modes/002_Battle Frontier rules/003_Challenge_EntryRestrictions.rb index fc28b042d..62cda9a35 100644 --- a/Data/Scripts/018_Alternate battle modes/002_Battle Frontier rules/003_Challenge_EntryRestrictions.rb +++ b/Data/Scripts/018_Alternate battle modes/002_Battle Frontier rules/003_Challenge_EntryRestrictions.rb @@ -112,9 +112,8 @@ module NicknameChecker name = name.upcase return true if name == getName(species) return false if @@names.values.include?(name) - GameData::Species.each do |species_data| - next if species_data.species == species || species_data.form != 0 - return false if getName(species_data.id) == name + GameData::Species.each_species do |species_data| + return false if species_data.species != species && getName(species_data.id) == name end return true end diff --git a/Data/Scripts/018_Alternate battle modes/003_Battle Frontier generator/002_ChallengeGenerator_Pokemon.rb b/Data/Scripts/018_Alternate battle modes/003_Battle Frontier generator/002_ChallengeGenerator_Pokemon.rb index 86febd4df..1302569f9 100644 --- a/Data/Scripts/018_Alternate battle modes/003_Battle Frontier generator/002_ChallengeGenerator_Pokemon.rb +++ b/Data/Scripts/018_Alternate battle modes/003_Battle Frontier generator/002_ChallengeGenerator_Pokemon.rb @@ -42,7 +42,7 @@ def pbRandomMove loop do move_id = keys[rand(keys.length)] move = GameData::Move.get(move_id) - next if move.id_number > 384 || move.id == :SKETCH || move.id == :STRUGGLE + next if move.id == :SKETCH || move.id == :STRUGGLE return move.id end end diff --git a/Data/Scripts/019_Utilities/001_Utilities.rb b/Data/Scripts/019_Utilities/001_Utilities.rb index 71ccc0176..2e719d0d9 100644 --- a/Data/Scripts/019_Utilities/001_Utilities.rb +++ b/Data/Scripts/019_Utilities/001_Utilities.rb @@ -388,7 +388,7 @@ end def pbGetRegionalDexLength(region_dex) if region_dex < 0 ret = 0 - GameData::Species.each { |s| ret += 1 if s.form == 0 } + GameData::Species.each_species { |s| ret += 1 } return ret end dex_list = pbLoadRegionalDexes[region_dex] 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 350cd1605..6648220cb 100644 --- a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb +++ b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb @@ -184,7 +184,7 @@ def pbEncounterMapVersionEditor(enc_data) elsif ret == commands.length - 1 # Add new encounter type new_type_commands = [] new_types = [] - GameData::EncounterType.each do |enc| + GameData::EncounterType.each_alphabetically do |enc| next if enc_data.types[enc.id] new_type_commands.push(enc.real_name) new_types.push(enc.id) @@ -212,7 +212,7 @@ def pbEncounterMapVersionEditor(enc_data) when 1 # Copy new_type_commands = [] new_types = [] - GameData::EncounterType.each do |enc| + GameData::EncounterType.each_alphabetically do |enc| next if enc_data.types[enc.id] new_type_commands.push(enc.real_name) new_types.push(enc.id) @@ -285,7 +285,7 @@ def pbEncounterTypeEditor(enc_data, enc_type) new_type_commands = [] new_types = [] chosen_type_cmd = 0 - GameData::EncounterType.each do |enc| + GameData::EncounterType.each_alphabetically do |enc| next if enc_data.types[enc.id] && enc.id != enc_type new_type_commands.push(enc.real_name) new_types.push(enc.id) @@ -954,7 +954,7 @@ end #=============================================================================== def pbPokemonEditor species_properties = [ - [_INTL("InternalName"), ReadOnlyProperty, _INTL("Internal name of the Pokémon.")], + [_INTL("ID"), ReadOnlyProperty, _INTL("The ID of the Pokémon.")], [_INTL("Name"), LimitStringProperty.new(Pokemon::MAX_NAME_SIZE), _INTL("Name of the Pokémon.")], [_INTL("FormName"), StringProperty, _INTL("Name of this form of the Pokémon.")], [_INTL("Kind"), StringProperty, _INTL("Kind of Pokémon species.")], @@ -1004,9 +1004,7 @@ def pbPokemonEditor if button == Input::ACTION if species.is_a?(Symbol) if pbConfirmMessageSerious("Delete this species?") - id_number = GameData::Species.get(species).id_number GameData::Species::DATA.delete(species) - GameData::Species::DATA.delete(id_number) GameData::Species.save Compiler.write_pokemon pbMessage(_INTL("The species was deleted.")) @@ -1079,7 +1077,6 @@ def pbPokemonEditor # Construct species hash species_hash = { :id => spec.id, - :id_number => spec.id_number, :name => data[1], :form_name => data[2], :category => data[3], @@ -1292,14 +1289,14 @@ def pbRegionalDexEditorMain refresh_list = true when 1 # Fill with National Dex new_dex = [] - GameData::Species.each { |s| new_dex.push(s.species) if s.form == 0 } + GameData::Species.each_species { |s| new_dex.push(s.species) } dex_lists.push(new_dex) refresh_list = true when 2 # Fill with National Dex (grouped families) new_dex = [] seen = [] - GameData::Species.each do |s| - next if s.form != 0 || seen.include?(s.species) + GameData::Species.each_species do |s| + next if seen.include?(s.species) family = s.get_related_species new_dex.concat(family) seen.concat(family) @@ -1350,7 +1347,6 @@ def pbAppendEvoToFamilyArray(species, array, seenarray) seenarray[species] = true evos = GameData::Species.get(species).get_evolutions if evos.length > 0 - evos.sort! { |a, b| GameData::Species.get(a[0]).id_number <=> GameData::Species.get(b[0]).id_number } subarray = [] for i in evos pbAppendEvoToFamilyArray(i[0], subarray, seenarray) @@ -1362,8 +1358,7 @@ end def pbGetEvoFamilies seen = [] ret = [] - GameData::Species.each do |sp| - next if sp.form > 0 + GameData::Species.each_species do |sp| species = sp.get_baby_species next if seen[species] subret = [] 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 9fa55029f..371e4f7f4 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 @@ -12,8 +12,12 @@ def findBottom(bitmap) end def pbAutoPositionAll + t = Time.now.to_i GameData::Species.each do |sp| - Graphics.update if sp.id_number % 50 == 0 + if Time.now.to_i - t >= 5 + t = Time.now.to_i + Graphics.update + end 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 diff --git a/Data/Scripts/020_Debug/001_Editor_Utilities.rb b/Data/Scripts/020_Debug/001_Editor_Utilities.rb index ed1436beb..165931ff5 100644 --- a/Data/Scripts/020_Debug/001_Editor_Utilities.rb +++ b/Data/Scripts/020_Debug/001_Editor_Utilities.rb @@ -117,15 +117,21 @@ end # the list sorting between numerical and alphabetical. def pbChooseSpeciesList(default = nil) commands = [] - GameData::Species.each { |s| commands.push([s.id_number, s.real_name, s.id]) if s.form == 0 } + index = 1 + GameData::Species.each_species do |s| + commands.push([index, s.real_name, s.id]) + index += 1 + end return pbChooseList(commands, default, nil, -1) end def pbChooseSpeciesFormList(default = nil) commands = [] + index = 1 GameData::Species.each do |s| name = (s.form == 0) ? s.real_name : sprintf("%s_%d", s.real_name, s.form) - commands.push([s.id_number, name, s.id]) + commands.push([index, name, s.id]) + index += 1 end return pbChooseList(commands, default, nil, -1) end @@ -136,18 +142,24 @@ end # between numerical and alphabetical. def pbChooseMoveList(default = nil) commands = [] - GameData::Move.each { |i| commands.push([i.id_number, i.real_name, i.id]) } + index = 1 + GameData::Move.each do |m| + commands.push([index, m.real_name, m.id]) + index += 1 + end return pbChooseList(commands, default, nil, -1) end def pbChooseMoveListForSpecies(species, defaultMoveID = nil) cmdwin = pbListWindow([], 200) commands = [] + index = 1 # Get all legal moves legalMoves = pbGetLegalMoves(species) legalMoves.each do |move| move_data = GameData::Move.get(move) - commands.push([move_data.id_number, move_data.name, move_data.id]) + commands.push([index, move_data.name, move_data.id]) + index += 1 end commands.sort! { |a, b| a[1] <=> b[1] } moveDefault = 0 @@ -159,7 +171,8 @@ def pbChooseMoveListForSpecies(species, defaultMoveID = nil) # Get all moves commands2 = [] GameData::Move.each do |move_data| - commands2.push([move_data.id_number, move_data.name, move_data.id]) + commands2.push([index, move_data.name, move_data.id]) + index += 1 end commands2.sort! { |a, b| a[1] <=> b[1] } if defaultMoveID @@ -197,7 +210,11 @@ end # between numerical and alphabetical. def pbChooseItemList(default = nil) commands = [] - GameData::Item.each { |i| commands.push([i.id_number, i.name, i.id]) } + index = 1 + GameData::Item.each do |i| + commands.push([index, i.name, i.id]) + index += 1 + end return pbChooseList(commands, default, nil, -1) end @@ -207,7 +224,11 @@ end # sorting between numerical and alphabetical. def pbChooseAbilityList(default = nil) commands = [] - GameData::Ability.each { |a| commands.push([a.id_number, a.name, a.id]) } + index = 1 + GameData::Ability.each do |a| + commands.push([index, a.name, a.id]) + index += 1 + end return pbChooseList(commands, default, nil, -1) end diff --git a/Data/Scripts/020_Debug/002_Editor_DataTypes.rb b/Data/Scripts/020_Debug/002_Editor_DataTypes.rb index 5516f7137..76197918d 100644 --- a/Data/Scripts/020_Debug/002_Editor_DataTypes.rb +++ b/Data/Scripts/020_Debug/002_Editor_DataTypes.rb @@ -1165,7 +1165,7 @@ class EvolutionsProperty def initialize @methods = [] @evo_ids = [] - GameData::Evolution.each do |e| + GameData::Evolution.each_alphabetically do |e| @methods.push(e.real_name) @evo_ids.push(e.id) end diff --git a/Data/Scripts/020_Debug/003_Editor_Listers.rb b/Data/Scripts/020_Debug/003_Editor_Listers.rb index 420f19dfe..3bfb79e1d 100644 --- a/Data/Scripts/020_Debug/003_Editor_Listers.rb +++ b/Data/Scripts/020_Debug/003_Editor_Listers.rb @@ -337,9 +337,10 @@ class SpeciesLister @commands.clear @ids.clear cmds = [] - GameData::Species.each do |species| - next if species.form != 0 - cmds.push([species.id_number, species.id, species.real_name]) + idx = 1 + GameData::Species.each_species do |species| + cmds.push([idx, species.id, species.real_name]) + idx += 1 end cmds.sort! { |a, b| a[2].downcase <=> b[2].downcase } if @includeNew @@ -395,8 +396,10 @@ class ItemLister @commands.clear @ids.clear cmds = [] + idx = 1 GameData::Item.each do |item| - cmds.push([item.id_number, item.id, item.real_name]) + cmds.push([idx, item.id, item.real_name]) + idx += 1 end cmds.sort! { |a, b| a[2].downcase <=> b[2].downcase } if @includeNew @@ -454,8 +457,10 @@ class TrainerTypeLister @commands.clear @ids.clear cmds = [] + idx = 1 GameData::TrainerType.each do |tr_type| - cmds.push([tr_type.id_number, tr_type.id, tr_type.real_name]) + cmds.push([idx, tr_type.id, tr_type.real_name]) + idx += 1 end cmds.sort! { |a, b| a[2] == b[2] ? a[0] <=> b[0] : a[2].downcase <=> b[2].downcase } if @includeNew @@ -532,8 +537,10 @@ class TrainerBattleLister @commands.clear @ids.clear cmds = [] + idx = 1 GameData::Trainer.each do |trainer| - cmds.push([trainer.id_number, trainer.trainer_type, trainer.real_name, trainer.version]) + cmds.push([idx, trainer.trainer_type, trainer.real_name, trainer.version]) + idx += 1 end cmds.sort! { |a, b| if a[1] == b[1] diff --git a/Data/Scripts/021_Compiler/001_Compiler.rb b/Data/Scripts/021_Compiler/001_Compiler.rb index d352862d1..2386fa1b6 100644 --- a/Data/Scripts/021_Compiler/001_Compiler.rb +++ b/Data/Scripts/021_Compiler/001_Compiler.rb @@ -122,8 +122,8 @@ module Compiler end end lineno += 1 - Graphics.update if lineno%200==0 - pbSetWindowText(_INTL("Processing {1} line {2}",FileLineData.file,lineno)) if lineno%50==0 + Graphics.update if lineno%1000==0 + pbSetWindowText(_INTL("Processing {1} line {2}",FileLineData.file,lineno)) if lineno%200==0 } yield lastsection,sectionname if havesection end diff --git a/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb b/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb index 0c44510a6..2352c0ac7 100644 --- a/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb +++ b/Data/Scripts/021_Compiler/002_Compiler_CompilePBS.rb @@ -187,15 +187,15 @@ module Compiler GameData::Type.each do |type| type.weaknesses.each do |other_type| next if GameData::Type.exists?(other_type) - raise _INTL("'{1}' is not a defined type ({2}, section {3}, Weaknesses).", other_type.to_s, path, type.id_number) + raise _INTL("'{1}' is not a defined type ({2}, section {3}, Weaknesses).", other_type.to_s, path, type.id) end type.resistances.each do |other_type| next if GameData::Type.exists?(other_type) - raise _INTL("'{1}' is not a defined type ({2}, section {3}, Resistances).", other_type.to_s, path, type.id_number) + raise _INTL("'{1}' is not a defined type ({2}, section {3}, Resistances).", other_type.to_s, path, type.id) end type.immunities.each do |other_type| next if GameData::Type.exists?(other_type) - raise _INTL("'{1}' is not a defined type ({2}, section {3}, Immunities).", other_type.to_s, path, type.id_number) + raise _INTL("'{1}' is not a defined type ({2}, section {3}, Immunities).", other_type.to_s, path, type.id) end end # Save all data @@ -387,30 +387,26 @@ module Compiler # 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). schema = GameData::Species.schema - pbEachFileSection(f) { |contents, species_number| - FileLineData.setSection(species_number, "header", nil) # For error reporting - # Raise an error if a species number is invalid or used twice - if species_number == 0 - raise _INTL("A Pokémon species can't be numbered 0 ({1}).", path) - elsif GameData::Species::DATA[species_number] - raise _INTL("Species ID number '{1}' is used twice.\r\n{2}", species_number, FileLineData.linereport) + pbEachFileSection3(f) { |contents, species_id| + FileLineData.setSection(species_id, "header", nil) # For error reporting + contents["InternalName"] = species_id if !species_id[/^\d+/] + # Ensure all required properties have been defined, and raise an error + # if not + for key in schema.keys + next if !nil_or_empty?(contents[key]) + if ["Name", "InternalName"].include?(key) + raise _INTL("The entry {1} is required in {2} section {3}.", key, path, species_id) + end + contents[key] = nil + end + # Raise an error if a species ID is used twice + if GameData::Species::DATA[contents["InternalName"].to_sym] + raise _INTL("Species ID '{1}' is used twice.\r\n{2}", contents["InternalName"], FileLineData.linereport) end # Go through schema hash of compilable data and compile this section for key in schema.keys - # Skip empty properties, or raise an error if a required property is - # empty - if nil_or_empty?(contents[key]) - if ["Name", "InternalName"].include?(key) - raise _INTL("The entry {1} is required in {2} section {3}.", key, path, species_number) - end - contents[key] = nil - next - end - # Raise an error if a species internal name is used twice - FileLineData.setSection(species_number, key, contents[key]) # For error reporting - if GameData::Species::DATA[contents["InternalName"].to_sym] - raise _INTL("Species ID '{1}' is used twice.\r\n{2}", contents["InternalName"], FileLineData.linereport) - end + next if nil_or_empty?(contents[key]) + FileLineData.setSection(species_id, 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 @@ -427,7 +423,7 @@ module Compiler # Convert height/weight to 1 decimal place and multiply by 10 value = (value * 10).round if value <= 0 - raise _INTL("Value for '{1}' can't be less than or close to 0 (section {2}, {3})", key, species_number, path) + raise _INTL("Value for '{1}' can't be less than or close to 0 (section {2}, {3})", key, species_id, path) end contents[key] = value when "Moves" @@ -450,10 +446,8 @@ module Compiler end end # Construct species hash - species_symbol = contents["InternalName"].to_sym species_hash = { - :id => species_symbol, - :id_number => species_number, + :id => contents["InternalName"].to_sym, :name => contents["Name"], :form_name => contents["FormName"], :category => contents["Kind"], @@ -495,26 +489,24 @@ module Compiler } # Add species' data to records GameData::Species.register(species_hash) - species_names[species_number] = species_hash[:name] - species_form_names[species_number] = species_hash[:form_name] - species_categories[species_number] = species_hash[:category] - species_pokedex_entries[species_number] = species_hash[:pokedex_entry] + species_names.push(species_hash[:name]) + species_form_names.push(species_hash[:form_name]) + species_categories.push(species_hash[:category]) + species_pokedex_entries.push(species_hash[:pokedex_entry]) } } # Enumerate all evolution species and parameters (this couldn't be done earlier) GameData::Species.each do |species| - FileLineData.setSection(species.id_number, "Evolutions", nil) # For error reporting - Graphics.update if species.id_number % 200 == 0 - pbSetWindowText(_INTL("Processing {1} evolution line {2}", FileLineData.file, species.id_number)) if species.id_number % 50 == 0 + FileLineData.setSection(species.id.to_s, "Evolutions", nil) # For error reporting species.evolutions.each do |evo| - evo[0] = csvEnumField!(evo[0], :Species, "Evolutions", species.id_number) + evo[0] = csvEnumField!(evo[0], :Species, "Evolutions", species.id) param_type = GameData::Evolution.get(evo[1]).parameter if param_type.nil? evo[2] = nil elsif param_type == Integer evo[2] = csvPosInt!(evo[2]) else - evo[2] = csvEnumField!(evo[2], param_type, "Evolutions", species.id_number) + evo[2] = csvEnumField!(evo[2], param_type, "Evolutions", species.id) end end end @@ -530,10 +522,10 @@ module Compiler end # Save all data GameData::Species.save - MessageTypes.setMessages(MessageTypes::Species, species_names) - MessageTypes.setMessages(MessageTypes::FormNames, species_form_names) - MessageTypes.setMessages(MessageTypes::Kinds, species_categories) - MessageTypes.setMessages(MessageTypes::Entries, species_pokedex_entries) + MessageTypes.setMessagesAsHash(MessageTypes::Species, species_names) + MessageTypes.setMessagesAsHash(MessageTypes::FormNames, species_form_names) + MessageTypes.setMessagesAsHash(MessageTypes::Kinds, species_categories) + MessageTypes.setMessagesAsHash(MessageTypes::Entries, species_pokedex_entries) Graphics.update end @@ -546,11 +538,6 @@ module Compiler species_categories = [] species_pokedex_entries = [] used_forms = {} - # Get maximum species ID number - form_number = 0 - GameData::Species.each do |species| - form_number = species.id_number if form_number < species.id_number - end # Read from PBS file File.open(path, "rb") { |f| FileLineData.file = path # For error reporting @@ -578,7 +565,6 @@ module Compiler end used_forms[species_symbol] = [] if !used_forms[species_symbol] used_forms[species_symbol].push(form) - form_number += 1 base_data = GameData::Species.get(species_symbol) # Go through schema hash of compilable data and compile this section for key in schema.keys @@ -649,7 +635,6 @@ module Compiler end species_hash = { :id => form_symbol, - :id_number => form_number, :species => species_symbol, :form => form, :name => base_data.real_name, @@ -681,7 +666,7 @@ module Compiler :height => contents["Height"] || base_data.height, :weight => contents["Weight"] || base_data.weight, :color => contents["Color"] || base_data.color, - :shape => (contents["Shape"]) ? GameData::BodyShape.get(contents["Shape"]).id : base_data.shape, + :shape => contents["Shape"] || base_data.shape, :habitat => contents["Habitat"] || base_data.habitat, :generation => contents["Generation"] || base_data.generation, :mega_stone => contents["MegaStone"], @@ -706,10 +691,10 @@ module Compiler end # Add form's data to records GameData::Species.register(species_hash) - species_names[form_number] = species_hash[:name] - species_form_names[form_number] = species_hash[:form_name] - species_categories[form_number] = species_hash[:category] - species_pokedex_entries[form_number] = species_hash[:pokedex_entry] + species_names.push(species_hash[:name]) + species_form_names.push(species_hash[:form_name]) + species_categories.push(species_hash[:category]) + species_pokedex_entries.push(species_hash[:pokedex_entry]) } } # Add prevolution "evolution" entry for all evolved forms that define their @@ -727,10 +712,10 @@ module Compiler end # Save all data GameData::Species.save - MessageTypes.addMessages(MessageTypes::Species, species_names) - MessageTypes.addMessages(MessageTypes::FormNames, species_form_names) - MessageTypes.addMessages(MessageTypes::Kinds, species_categories) - MessageTypes.addMessages(MessageTypes::Entries, species_pokedex_entries) + MessageTypes.addMessagesAsHash(MessageTypes::Species, species_names) + MessageTypes.addMessagesAsHash(MessageTypes::FormNames, species_form_names) + MessageTypes.addMessagesAsHash(MessageTypes::Kinds, species_categories) + MessageTypes.addMessagesAsHash(MessageTypes::Entries, species_pokedex_entries) Graphics.update end @@ -975,7 +960,7 @@ module Compiler end need_step_chances = false values = pbGetCsvRecord(line, line_no, [0, "vvv"]) - GameData::EncounterType.each do |enc_type| + GameData::EncounterType.each_alphabetically do |enc_type| case enc_type.id when :land, :contest then step_chances[enc_type.id] = values[0] when :cave then step_chances[enc_type.id] = values[1] diff --git a/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb b/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb index 8bfa48aad..dd2c68730 100644 --- a/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb +++ b/Data/Scripts/021_Compiler/003_Compiler_WritePBS.rb @@ -261,15 +261,15 @@ module Compiler #============================================================================= def write_pokemon File.open("PBS/pokemon.txt", "wb") { |f| + idx = 0 add_PBS_header_to_file(f) - GameData::Species.each do |species| - next if species.form != 0 - pbSetWindowText(_INTL("Writing species {1}...", species.id_number)) - Graphics.update if species.id_number % 50 == 0 + GameData::Species.each_species do |species| + idx += 1 + pbSetWindowText(_INTL("Writing species {1}...", idx)) + Graphics.update if idx % 100 == 0 f.write("\#-------------------------------\r\n") - f.write(sprintf("[%d]\r\n", species.id_number)) + f.write(sprintf("[%s]\r\n", species.id)) f.write(sprintf("Name = %s\r\n", species.real_name)) - f.write(sprintf("InternalName = %s\r\n", species.species)) f.write(sprintf("Type1 = %s\r\n", species.type1)) f.write(sprintf("Type2 = %s\r\n", species.type2)) if species.type2 != species.type1 stats_array = [] @@ -356,12 +356,14 @@ module Compiler #============================================================================= def write_pokemon_forms File.open("PBS/pokemonforms.txt", "wb") { |f| + idx = 0 add_PBS_header_to_file(f) GameData::Species.each do |species| next if species.form == 0 base_species = GameData::Species.get(species.species) - pbSetWindowText(_INTL("Writing species {1}...", species.id_number)) - Graphics.update if species.id_number % 50 == 0 + idx += 1 + pbSetWindowText(_INTL("Writing form {1}...", idx)) + Graphics.update if idx % 100 == 0 f.write("\#-------------------------------\r\n") f.write(sprintf("[%s,%d]\r\n", species.species, species.form)) f.write(sprintf("FormName = %s\r\n", species.real_form_name)) if species.real_form_name && !species.real_form_name.empty? @@ -587,10 +589,12 @@ module Compiler #============================================================================= def write_trainers File.open("PBS/trainers.txt", "wb") { |f| + idx = 0 add_PBS_header_to_file(f) GameData::Trainer.each do |trainer| - pbSetWindowText(_INTL("Writing trainer {1}...", trainer.id_number)) - Graphics.update if trainer.id_number % 50 == 0 + idx += 1 + pbSetWindowText(_INTL("Writing trainer {1}...", idx)) + Graphics.update if idx % 50 == 0 f.write("\#-------------------------------\r\n") if trainer.version > 0 f.write(sprintf("[%s,%s,%d]\r\n", trainer.trainer_type, trainer.real_name, trainer.version)) diff --git a/PBS/pokemon.txt b/PBS/pokemon.txt index 486ab9f8c..097b33924 100644 --- a/PBS/pokemon.txt +++ b/PBS/pokemon.txt @@ -1,8 +1,7 @@ # See the documentation on the wiki to learn how to edit this file. #------------------------------- -[1] +[BULBASAUR] Name = Bulbasaur -InternalName = BULBASAUR Type1 = GRASS Type2 = POISON BaseStats = 45,49,49,45,65,65 @@ -35,9 +34,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = IVYSAUR,Level,16 #------------------------------- -[2] +[IVYSAUR] Name = Ivysaur -InternalName = IVYSAUR Type1 = GRASS Type2 = POISON BaseStats = 60,62,63,60,80,80 @@ -69,9 +67,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VENUSAUR,Level,32 #------------------------------- -[3] +[VENUSAUR] Name = Venusaur -InternalName = VENUSAUR Type1 = GRASS Type2 = POISON BaseStats = 80,82,83,80,100,100 @@ -102,9 +99,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[4] +[CHARMANDER] Name = Charmander -InternalName = CHARMANDER Type1 = FIRE BaseStats = 39,52,43,65,60,50 GenderRate = FemaleOneEighth @@ -136,9 +132,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = CHARMELEON,Level,16 #------------------------------- -[5] +[CHARMELEON] Name = Charmeleon -InternalName = CHARMELEON Type1 = FIRE BaseStats = 58,64,58,80,80,65 GenderRate = FemaleOneEighth @@ -169,9 +164,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CHARIZARD,Level,36 #------------------------------- -[6] +[CHARIZARD] Name = Charizard -InternalName = CHARIZARD Type1 = FIRE Type2 = FLYING BaseStats = 78,84,78,100,109,85 @@ -202,9 +196,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[7] +[SQUIRTLE] Name = Squirtle -InternalName = SQUIRTLE Type1 = WATER BaseStats = 44,48,65,43,50,64 GenderRate = FemaleOneEighth @@ -236,9 +229,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = WARTORTLE,Level,16 #------------------------------- -[8] +[WARTORTLE] Name = Wartortle -InternalName = WARTORTLE Type1 = WATER BaseStats = 59,63,80,58,65,80 GenderRate = FemaleOneEighth @@ -269,9 +261,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BLASTOISE,Level,36 #------------------------------- -[9] +[BLASTOISE] Name = Blastoise -InternalName = BLASTOISE Type1 = WATER BaseStats = 79,83,100,78,85,105 GenderRate = FemaleOneEighth @@ -301,9 +292,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[10] +[CATERPIE] Name = Caterpie -InternalName = CATERPIE Type1 = BUG BaseStats = 45,30,35,45,20,20 GenderRate = Female50Percent @@ -334,9 +324,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = METAPOD,Level,7 #------------------------------- -[11] +[METAPOD] Name = Metapod -InternalName = METAPOD Type1 = BUG BaseStats = 50,20,55,30,25,25 GenderRate = Female50Percent @@ -366,9 +355,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BUTTERFREE,Level,10 #------------------------------- -[12] +[BUTTERFREE] Name = Butterfree -InternalName = BUTTERFREE Type1 = BUG Type2 = FLYING BaseStats = 60,45,50,70,90,80 @@ -400,9 +388,8 @@ BattlerEnemyY = -2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[13] +[WEEDLE] Name = Weedle -InternalName = WEEDLE Type1 = BUG Type2 = POISON BaseStats = 40,35,30,50,20,20 @@ -434,9 +421,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = KAKUNA,Level,7 #------------------------------- -[14] +[KAKUNA] Name = Kakuna -InternalName = KAKUNA Type1 = BUG Type2 = POISON BaseStats = 45,25,50,35,25,25 @@ -467,9 +453,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = BEEDRILL,Level,10 #------------------------------- -[15] +[BEEDRILL] Name = Beedrill -InternalName = BEEDRILL Type1 = BUG Type2 = POISON BaseStats = 65,90,40,75,45,80 @@ -501,9 +486,8 @@ BattlerEnemyY = 1 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[16] +[PIDGEY] Name = Pidgey -InternalName = PIDGEY Type1 = NORMAL Type2 = FLYING BaseStats = 40,45,40,56,35,35 @@ -536,9 +520,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PIDGEOTTO,Level,18 #------------------------------- -[17] +[PIDGEOTTO] Name = Pidgeotto -InternalName = PIDGEOTTO Type1 = NORMAL Type2 = FLYING BaseStats = 63,60,55,71,50,50 @@ -570,9 +553,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PIDGEOT,Level,36 #------------------------------- -[18] +[PIDGEOT] Name = Pidgeot -InternalName = PIDGEOT Type1 = NORMAL Type2 = FLYING BaseStats = 83,80,75,101,70,70 @@ -603,9 +585,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[19] +[RATTATA] Name = Rattata -InternalName = RATTATA Type1 = NORMAL BaseStats = 30,56,35,72,25,35 GenderRate = Female50Percent @@ -638,9 +619,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = RATICATE,Level,20 #------------------------------- -[20] +[RATICATE] Name = Raticate -InternalName = RATICATE Type1 = NORMAL BaseStats = 55,81,60,97,50,70 GenderRate = Female50Percent @@ -671,9 +651,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[21] +[SPEAROW] Name = Spearow -InternalName = SPEAROW Type1 = NORMAL Type2 = FLYING BaseStats = 40,60,30,70,31,31 @@ -707,9 +686,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = FEAROW,Level,20 #------------------------------- -[22] +[FEAROW] Name = Fearow -InternalName = FEAROW Type1 = NORMAL Type2 = FLYING BaseStats = 65,90,65,100,61,61 @@ -741,9 +719,8 @@ BattlerEnemyY = -6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[23] +[EKANS] Name = Ekans -InternalName = EKANS Type1 = POISON BaseStats = 35,60,44,55,40,54 GenderRate = Female50Percent @@ -775,9 +752,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ARBOK,Level,22 #------------------------------- -[24] +[ARBOK] Name = Arbok -InternalName = ARBOK Type1 = POISON BaseStats = 60,95,69,80,65,79 GenderRate = Female50Percent @@ -807,9 +783,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[25] +[PIKACHU] Name = Pikachu -InternalName = PIKACHU Type1 = ELECTRIC BaseStats = 35,55,40,90,50,50 GenderRate = Female50Percent @@ -841,9 +816,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = RAICHU,Item,THUNDERSTONE #------------------------------- -[26] +[RAICHU] Name = Raichu -InternalName = RAICHU Type1 = ELECTRIC BaseStats = 60,90,55,110,90,80 GenderRate = Female50Percent @@ -873,9 +847,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[27] +[SANDSHREW] Name = Sandshrew -InternalName = SANDSHREW Type1 = GROUND BaseStats = 50,75,85,40,20,30 GenderRate = Female50Percent @@ -908,9 +881,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SANDSLASH,Level,22 #------------------------------- -[28] +[SANDSLASH] Name = Sandslash -InternalName = SANDSLASH Type1 = GROUND BaseStats = 75,100,110,65,45,55 GenderRate = Female50Percent @@ -941,9 +913,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[29] +[NIDORANfE] Name = Nidoran♀ -InternalName = NIDORANfE Type1 = POISON BaseStats = 55,47,52,41,40,40 GenderRate = AlwaysFemale @@ -975,9 +946,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = NIDORINA,Level,16 #------------------------------- -[30] +[NIDORINA] Name = Nidorina -InternalName = NIDORINA Type1 = POISON BaseStats = 70,62,67,56,55,55 GenderRate = AlwaysFemale @@ -1008,9 +978,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = NIDOQUEEN,Item,MOONSTONE #------------------------------- -[31] +[NIDOQUEEN] Name = Nidoqueen -InternalName = NIDOQUEEN Type1 = POISON Type2 = GROUND BaseStats = 90,92,87,76,75,85 @@ -1041,9 +1010,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[32] +[NIDORANmA] Name = Nidoran♂ -InternalName = NIDORANmA Type1 = POISON BaseStats = 46,57,40,50,40,40 GenderRate = AlwaysMale @@ -1075,9 +1043,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = NIDORINO,Level,16 #------------------------------- -[33] +[NIDORINO] Name = Nidorino -InternalName = NIDORINO Type1 = POISON BaseStats = 61,72,57,65,55,55 GenderRate = AlwaysMale @@ -1108,9 +1075,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = NIDOKING,Item,MOONSTONE #------------------------------- -[34] +[NIDOKING] Name = Nidoking -InternalName = NIDOKING Type1 = POISON Type2 = GROUND BaseStats = 81,102,77,85,85,75 @@ -1141,9 +1107,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[35] +[CLEFAIRY] Name = Clefairy -InternalName = CLEFAIRY Type1 = FAIRY BaseStats = 70,45,48,35,60,65 GenderRate = Female75Percent @@ -1175,9 +1140,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CLEFABLE,Item,MOONSTONE #------------------------------- -[36] +[CLEFABLE] Name = Clefable -InternalName = CLEFABLE Type1 = FAIRY BaseStats = 95,70,73,60,95,90 GenderRate = Female75Percent @@ -1208,9 +1172,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[37] +[VULPIX] Name = Vulpix -InternalName = VULPIX Type1 = FIRE BaseStats = 38,41,40,65,50,65 GenderRate = Female75Percent @@ -1243,9 +1206,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = NINETALES,Item,FIRESTONE #------------------------------- -[38] +[NINETALES] Name = Ninetales -InternalName = NINETALES Type1 = FIRE BaseStats = 73,76,75,100,81,100 GenderRate = Female75Percent @@ -1276,9 +1238,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[39] +[JIGGLYPUFF] Name = Jigglypuff -InternalName = JIGGLYPUFF Type1 = NORMAL Type2 = FAIRY BaseStats = 115,45,20,20,45,25 @@ -1311,9 +1272,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = WIGGLYTUFF,Item,MOONSTONE #------------------------------- -[40] +[WIGGLYTUFF] Name = Wigglytuff -InternalName = WIGGLYTUFF Type1 = NORMAL Type2 = FAIRY BaseStats = 140,70,45,45,85,50 @@ -1345,9 +1305,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[41] +[ZUBAT] Name = Zubat -InternalName = ZUBAT Type1 = POISON Type2 = FLYING BaseStats = 40,45,35,55,30,40 @@ -1380,9 +1339,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOLBAT,Level,22 #------------------------------- -[42] +[GOLBAT] Name = Golbat -InternalName = GOLBAT Type1 = POISON Type2 = FLYING BaseStats = 75,80,70,90,65,75 @@ -1414,9 +1372,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CROBAT,Happiness, #------------------------------- -[43] +[ODDISH] Name = Oddish -InternalName = ODDISH Type1 = GRASS Type2 = POISON BaseStats = 45,50,55,30,75,65 @@ -1450,9 +1407,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GLOOM,Level,21 #------------------------------- -[44] +[GLOOM] Name = Gloom -InternalName = GLOOM Type1 = GRASS Type2 = POISON BaseStats = 60,65,70,40,85,75 @@ -1485,9 +1441,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VILEPLUME,Item,LEAFSTONE,BELLOSSOM,Item,SUNSTONE #------------------------------- -[45] +[VILEPLUME] Name = Vileplume -InternalName = VILEPLUME Type1 = GRASS Type2 = POISON BaseStats = 75,80,85,50,110,90 @@ -1519,9 +1474,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[46] +[PARAS] Name = Paras -InternalName = PARAS Type1 = BUG Type2 = GRASS BaseStats = 35,70,55,25,45,55 @@ -1556,9 +1510,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PARASECT,Level,24 #------------------------------- -[47] +[PARASECT] Name = Parasect -InternalName = PARASECT Type1 = BUG Type2 = GRASS BaseStats = 60,95,80,30,60,80 @@ -1591,9 +1544,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[48] +[VENONAT] Name = Venonat -InternalName = VENONAT Type1 = BUG Type2 = POISON BaseStats = 60,55,50,45,40,55 @@ -1626,9 +1578,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VENOMOTH,Level,31 #------------------------------- -[49] +[VENOMOTH] Name = Venomoth -InternalName = VENOMOTH Type1 = BUG Type2 = POISON BaseStats = 70,65,60,90,90,75 @@ -1660,9 +1611,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[50] +[DIGLETT] Name = Diglett -InternalName = DIGLETT Type1 = GROUND BaseStats = 10,55,25,95,35,45 GenderRate = Female50Percent @@ -1695,9 +1645,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DUGTRIO,Level,26 #------------------------------- -[51] +[DUGTRIO] Name = Dugtrio -InternalName = DUGTRIO Type1 = GROUND BaseStats = 35,100,50,120,50,70 GenderRate = Female50Percent @@ -1728,9 +1677,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[52] +[MEOWTH] Name = Meowth -InternalName = MEOWTH Type1 = NORMAL BaseStats = 40,45,35,90,40,40 GenderRate = Female50Percent @@ -1763,9 +1711,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PERSIAN,Level,28 #------------------------------- -[53] +[PERSIAN] Name = Persian -InternalName = PERSIAN Type1 = NORMAL BaseStats = 65,70,60,115,65,65 GenderRate = Female50Percent @@ -1796,9 +1743,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[54] +[PSYDUCK] Name = Psyduck -InternalName = PSYDUCK Type1 = WATER BaseStats = 50,52,48,55,65,50 GenderRate = Female50Percent @@ -1830,9 +1776,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOLDUCK,Level,33 #------------------------------- -[55] +[GOLDUCK] Name = Golduck -InternalName = GOLDUCK Type1 = WATER BaseStats = 80,82,78,85,95,80 GenderRate = Female50Percent @@ -1862,9 +1807,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[56] +[MANKEY] Name = Mankey -InternalName = MANKEY Type1 = FIGHTING BaseStats = 40,80,35,70,35,45 GenderRate = Female50Percent @@ -1896,9 +1840,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PRIMEAPE,Level,28 #------------------------------- -[57] +[PRIMEAPE] Name = Primeape -InternalName = PRIMEAPE Type1 = FIGHTING BaseStats = 65,105,60,95,60,70 GenderRate = Female50Percent @@ -1928,9 +1871,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[58] +[GROWLITHE] Name = Growlithe -InternalName = GROWLITHE Type1 = FIRE BaseStats = 55,70,45,60,70,50 GenderRate = Female25Percent @@ -1962,9 +1904,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ARCANINE,Item,FIRESTONE #------------------------------- -[59] +[ARCANINE] Name = Arcanine -InternalName = ARCANINE Type1 = FIRE BaseStats = 90,110,80,95,100,80 GenderRate = Female25Percent @@ -1994,9 +1935,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[60] +[POLIWAG] Name = Poliwag -InternalName = POLIWAG Type1 = WATER BaseStats = 40,50,40,90,40,40 GenderRate = Female50Percent @@ -2028,9 +1968,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = POLIWHIRL,Level,25 #------------------------------- -[61] +[POLIWHIRL] Name = Poliwhirl -InternalName = POLIWHIRL Type1 = WATER BaseStats = 65,65,65,90,50,50 GenderRate = Female50Percent @@ -2062,9 +2001,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = POLIWRATH,Item,WATERSTONE,POLITOED,TradeItem,KINGSROCK #------------------------------- -[62] +[POLIWRATH] Name = Poliwrath -InternalName = POLIWRATH Type1 = WATER Type2 = FIGHTING BaseStats = 90,95,95,70,70,90 @@ -2096,9 +2034,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[63] +[ABRA] Name = Abra -InternalName = ABRA Type1 = PSYCHIC BaseStats = 25,20,15,90,105,55 GenderRate = Female25Percent @@ -2131,9 +2068,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = KADABRA,Level,16 #------------------------------- -[64] +[KADABRA] Name = Kadabra -InternalName = KADABRA Type1 = PSYCHIC BaseStats = 40,35,30,105,120,70 GenderRate = Female25Percent @@ -2165,9 +2101,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = ALAKAZAM,Trade, #------------------------------- -[65] +[ALAKAZAM] Name = Alakazam -InternalName = ALAKAZAM Type1 = PSYCHIC BaseStats = 55,50,45,120,135,95 GenderRate = Female25Percent @@ -2198,9 +2133,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[66] +[MACHOP] Name = Machop -InternalName = MACHOP Type1 = FIGHTING BaseStats = 70,80,50,35,35,35 GenderRate = Female25Percent @@ -2233,9 +2167,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MACHOKE,Level,28 #------------------------------- -[67] +[MACHOKE] Name = Machoke -InternalName = MACHOKE Type1 = FIGHTING BaseStats = 80,100,70,45,50,60 GenderRate = Female25Percent @@ -2267,9 +2200,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MACHAMP,Trade, #------------------------------- -[68] +[MACHAMP] Name = Machamp -InternalName = MACHAMP Type1 = FIGHTING BaseStats = 90,130,80,55,65,85 GenderRate = Female25Percent @@ -2300,9 +2232,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[69] +[BELLSPROUT] Name = Bellsprout -InternalName = BELLSPROUT Type1 = GRASS Type2 = POISON BaseStats = 50,75,35,40,70,30 @@ -2335,9 +2266,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = WEEPINBELL,Level,21 #------------------------------- -[70] +[WEEPINBELL] Name = Weepinbell -InternalName = WEEPINBELL Type1 = GRASS Type2 = POISON BaseStats = 65,90,50,55,85,45 @@ -2369,9 +2299,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VICTREEBEL,Item,LEAFSTONE #------------------------------- -[71] +[VICTREEBEL] Name = Victreebel -InternalName = VICTREEBEL Type1 = GRASS Type2 = POISON BaseStats = 80,105,65,70,100,70 @@ -2402,9 +2331,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[72] +[TENTACOOL] Name = Tentacool -InternalName = TENTACOOL Type1 = WATER Type2 = POISON BaseStats = 40,40,35,70,50,100 @@ -2438,9 +2366,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TENTACRUEL,Level,30 #------------------------------- -[73] +[TENTACRUEL] Name = Tentacruel -InternalName = TENTACRUEL Type1 = WATER Type2 = POISON BaseStats = 80,70,65,100,80,120 @@ -2472,9 +2399,8 @@ BattlerEnemyY = 1 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[74] +[GEODUDE] Name = Geodude -InternalName = GEODUDE Type1 = ROCK Type2 = GROUND BaseStats = 40,80,100,20,30,30 @@ -2508,9 +2434,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GRAVELER,Level,25 #------------------------------- -[75] +[GRAVELER] Name = Graveler -InternalName = GRAVELER Type1 = ROCK Type2 = GROUND BaseStats = 55,95,115,35,45,45 @@ -2543,9 +2468,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = GOLEM,Trade, #------------------------------- -[76] +[GOLEM] Name = Golem -InternalName = GOLEM Type1 = ROCK Type2 = GROUND BaseStats = 80,120,130,45,55,65 @@ -2577,9 +2501,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[77] +[PONYTA] Name = Ponyta -InternalName = PONYTA Type1 = FIRE BaseStats = 50,85,55,90,65,65 GenderRate = Female50Percent @@ -2611,9 +2534,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = RAPIDASH,Level,40 #------------------------------- -[78] +[RAPIDASH] Name = Rapidash -InternalName = RAPIDASH Type1 = FIRE BaseStats = 65,100,70,105,80,80 GenderRate = Female50Percent @@ -2643,9 +2565,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[79] +[SLOWPOKE] Name = Slowpoke -InternalName = SLOWPOKE Type1 = WATER Type2 = PSYCHIC BaseStats = 90,65,65,15,40,40 @@ -2679,9 +2600,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = SLOWBRO,Level,37,SLOWKING,TradeItem,KINGSROCK #------------------------------- -[80] +[SLOWBRO] Name = Slowbro -InternalName = SLOWBRO Type1 = WATER Type2 = PSYCHIC BaseStats = 95,75,110,30,100,80 @@ -2713,9 +2633,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[81] +[MAGNEMITE] Name = Magnemite -InternalName = MAGNEMITE Type1 = ELECTRIC Type2 = STEEL BaseStats = 25,35,70,45,95,55 @@ -2748,9 +2667,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = MAGNETON,Level,30 #------------------------------- -[82] +[MAGNETON] Name = Magneton -InternalName = MAGNETON Type1 = ELECTRIC Type2 = STEEL BaseStats = 50,60,95,70,120,70 @@ -2783,9 +2701,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MAGNEZONE,Location,49,MAGNEZONE,Location,50,MAGNEZONE,Location,51 #------------------------------- -[83] +[FARFETCHD] Name = Farfetch'd -InternalName = FARFETCHD Type1 = NORMAL Type2 = FLYING BaseStats = 52,90,55,60,58,62 @@ -2818,9 +2735,8 @@ BattlerEnemyY = 19 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[84] +[DODUO] Name = Doduo -InternalName = DODUO Type1 = NORMAL Type2 = FLYING BaseStats = 35,85,45,75,35,35 @@ -2854,9 +2770,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DODRIO,Level,31 #------------------------------- -[85] +[DODRIO] Name = Dodrio -InternalName = DODRIO Type1 = NORMAL Type2 = FLYING BaseStats = 60,110,70,110,60,60 @@ -2888,9 +2803,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[86] +[SEEL] Name = Seel -InternalName = SEEL Type1 = WATER BaseStats = 65,45,55,45,45,70 GenderRate = Female50Percent @@ -2922,9 +2836,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = DEWGONG,Level,34 #------------------------------- -[87] +[DEWGONG] Name = Dewgong -InternalName = DEWGONG Type1 = WATER Type2 = ICE BaseStats = 90,70,80,70,70,95 @@ -2955,9 +2868,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[88] +[GRIMER] Name = Grimer -InternalName = GRIMER Type1 = POISON BaseStats = 80,80,50,25,40,50 GenderRate = Female50Percent @@ -2990,9 +2902,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = MUK,Level,38 #------------------------------- -[89] +[MUK] Name = Muk -InternalName = MUK Type1 = POISON BaseStats = 105,105,75,50,65,100 GenderRate = Female50Percent @@ -3023,9 +2934,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[90] +[SHELLDER] Name = Shellder -InternalName = SHELLDER Type1 = WATER BaseStats = 30,65,100,40,45,25 GenderRate = Female50Percent @@ -3059,9 +2969,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CLOYSTER,Item,WATERSTONE #------------------------------- -[91] +[CLOYSTER] Name = Cloyster -InternalName = CLOYSTER Type1 = WATER Type2 = ICE BaseStats = 50,95,180,70,85,45 @@ -3094,9 +3003,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[92] +[GASTLY] Name = Gastly -InternalName = GASTLY Type1 = GHOST Type2 = POISON BaseStats = 30,35,30,80,100,35 @@ -3128,9 +3036,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HAUNTER,Level,25 #------------------------------- -[93] +[HAUNTER] Name = Haunter -InternalName = HAUNTER Type1 = GHOST Type2 = POISON BaseStats = 45,50,45,95,115,55 @@ -3161,9 +3068,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GENGAR,Trade, #------------------------------- -[94] +[GENGAR] Name = Gengar -InternalName = GENGAR Type1 = GHOST Type2 = POISON BaseStats = 60,65,60,110,130,75 @@ -3193,9 +3099,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[95] +[ONIX] Name = Onix -InternalName = ONIX Type1 = ROCK Type2 = GROUND BaseStats = 35,45,160,70,30,45 @@ -3228,9 +3133,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = STEELIX,TradeItem,METALCOAT #------------------------------- -[96] +[DROWZEE] Name = Drowzee -InternalName = DROWZEE Type1 = PSYCHIC BaseStats = 60,48,45,42,43,90 GenderRate = Female50Percent @@ -3262,9 +3166,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HYPNO,Level,26 #------------------------------- -[97] +[HYPNO] Name = Hypno -InternalName = HYPNO Type1 = PSYCHIC BaseStats = 85,73,70,67,73,115 GenderRate = Female50Percent @@ -3294,9 +3197,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[98] +[KRABBY] Name = Krabby -InternalName = KRABBY Type1 = WATER BaseStats = 30,105,90,50,25,25 GenderRate = Female50Percent @@ -3328,9 +3230,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = KINGLER,Level,28 #------------------------------- -[99] +[KINGLER] Name = Kingler -InternalName = KINGLER Type1 = WATER BaseStats = 55,130,115,75,50,50 GenderRate = Female50Percent @@ -3360,9 +3261,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[100] +[VOLTORB] Name = Voltorb -InternalName = VOLTORB Type1 = ELECTRIC BaseStats = 40,30,50,100,55,55 GenderRate = Genderless @@ -3393,9 +3293,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = ELECTRODE,Level,30 #------------------------------- -[101] +[ELECTRODE] Name = Electrode -InternalName = ELECTRODE Type1 = ELECTRIC BaseStats = 60,50,70,150,80,80 GenderRate = Genderless @@ -3425,9 +3324,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[102] +[EXEGGCUTE] Name = Exeggcute -InternalName = EXEGGCUTE Type1 = GRASS Type2 = PSYCHIC BaseStats = 60,40,80,40,60,45 @@ -3461,9 +3359,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = EXEGGUTOR,Item,LEAFSTONE #------------------------------- -[103] +[EXEGGUTOR] Name = Exeggutor -InternalName = EXEGGUTOR Type1 = GRASS Type2 = PSYCHIC BaseStats = 95,95,85,55,125,75 @@ -3494,9 +3391,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[104] +[CUBONE] Name = Cubone -InternalName = CUBONE Type1 = GROUND BaseStats = 50,50,95,35,40,50 GenderRate = Female50Percent @@ -3529,9 +3425,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MAROWAK,Level,28 #------------------------------- -[105] +[MAROWAK] Name = Marowak -InternalName = MAROWAK Type1 = GROUND BaseStats = 60,80,110,45,50,80 GenderRate = Female50Percent @@ -3562,9 +3457,8 @@ BattlerEnemyY = 19 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[106] +[HITMONLEE] Name = Hitmonlee -InternalName = HITMONLEE Type1 = FIGHTING BaseStats = 50,120,53,87,35,110 GenderRate = AlwaysMale @@ -3594,9 +3488,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[107] +[HITMONCHAN] Name = Hitmonchan -InternalName = HITMONCHAN Type1 = FIGHTING BaseStats = 50,105,79,76,35,110 GenderRate = AlwaysMale @@ -3626,9 +3519,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[108] +[LICKITUNG] Name = Lickitung -InternalName = LICKITUNG Type1 = NORMAL BaseStats = 90,55,75,30,60,75 GenderRate = Female50Percent @@ -3661,9 +3553,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = LICKILICKY,HasMove,ROLLOUT #------------------------------- -[109] +[KOFFING] Name = Koffing -InternalName = KOFFING Type1 = POISON BaseStats = 40,65,95,35,60,45 GenderRate = Female50Percent @@ -3695,9 +3586,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = WEEZING,Level,35 #------------------------------- -[110] +[WEEZING] Name = Weezing -InternalName = WEEZING Type1 = POISON BaseStats = 65,90,120,60,85,70 GenderRate = Female50Percent @@ -3727,9 +3617,8 @@ BattlerEnemyY = -2 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[111] +[RHYHORN] Name = Rhyhorn -InternalName = RHYHORN Type1 = GROUND Type2 = ROCK BaseStats = 80,85,95,25,30,30 @@ -3762,9 +3651,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = RHYDON,Level,42 #------------------------------- -[112] +[RHYDON] Name = Rhydon -InternalName = RHYDON Type1 = GROUND Type2 = ROCK BaseStats = 105,130,120,40,45,45 @@ -3796,9 +3684,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = RHYPERIOR,TradeItem,PROTECTOR #------------------------------- -[113] +[CHANSEY] Name = Chansey -InternalName = CHANSEY Type1 = NORMAL BaseStats = 250,5,5,50,35,105 GenderRate = AlwaysFemale @@ -3831,9 +3718,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BLISSEY,Happiness, #------------------------------- -[114] +[TANGELA] Name = Tangela -InternalName = TANGELA Type1 = GRASS BaseStats = 65,55,115,60,100,40 GenderRate = Female50Percent @@ -3865,9 +3751,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TANGROWTH,HasMove,ANCIENTPOWER #------------------------------- -[115] +[KANGASKHAN] Name = Kangaskhan -InternalName = KANGASKHAN Type1 = NORMAL BaseStats = 105,95,80,90,40,80 GenderRate = AlwaysFemale @@ -3898,9 +3783,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[116] +[HORSEA] Name = Horsea -InternalName = HORSEA Type1 = WATER BaseStats = 30,40,70,60,70,25 GenderRate = Female50Percent @@ -3933,9 +3817,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SEADRA,Level,32 #------------------------------- -[117] +[SEADRA] Name = Seadra -InternalName = SEADRA Type1 = WATER BaseStats = 55,65,95,85,95,45 GenderRate = Female50Percent @@ -3967,9 +3850,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = KINGDRA,TradeItem,DRAGONSCALE #------------------------------- -[118] +[GOLDEEN] Name = Goldeen -InternalName = GOLDEEN Type1 = WATER BaseStats = 45,67,60,63,35,50 GenderRate = Female50Percent @@ -4002,9 +3884,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SEAKING,Level,33 #------------------------------- -[119] +[SEAKING] Name = Seaking -InternalName = SEAKING Type1 = WATER BaseStats = 80,92,65,68,65,80 GenderRate = Female50Percent @@ -4035,9 +3916,8 @@ BattlerEnemyY = -1 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[120] +[STARYU] Name = Staryu -InternalName = STARYU Type1 = WATER BaseStats = 30,45,55,85,70,55 GenderRate = Genderless @@ -4070,9 +3950,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = STARMIE,Item,WATERSTONE #------------------------------- -[121] +[STARMIE] Name = Starmie -InternalName = STARMIE Type1 = WATER Type2 = PSYCHIC BaseStats = 60,75,85,115,100,85 @@ -4105,9 +3984,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[122] +[MRMIME] Name = Mr. Mime -InternalName = MRMIME Type1 = PSYCHIC Type2 = FAIRY BaseStats = 40,45,65,90,100,120 @@ -4139,9 +4017,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[123] +[SCYTHER] Name = Scyther -InternalName = SCYTHER Type1 = BUG Type2 = FLYING BaseStats = 70,110,80,105,55,80 @@ -4174,9 +4051,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = SCIZOR,TradeItem,METALCOAT #------------------------------- -[124] +[JYNX] Name = Jynx -InternalName = JYNX Type1 = ICE Type2 = PSYCHIC BaseStats = 65,50,35,95,115,95 @@ -4207,9 +4083,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[125] +[ELECTABUZZ] Name = Electabuzz -InternalName = ELECTABUZZ Type1 = ELECTRIC BaseStats = 65,83,57,105,95,85 GenderRate = Female25Percent @@ -4241,9 +4116,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = ELECTIVIRE,TradeItem,ELECTIRIZER #------------------------------- -[126] +[MAGMAR] Name = Magmar -InternalName = MAGMAR Type1 = FIRE BaseStats = 65,95,57,93,100,85 GenderRate = Female25Percent @@ -4275,9 +4149,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = MAGMORTAR,TradeItem,MAGMARIZER #------------------------------- -[127] +[PINSIR] Name = Pinsir -InternalName = PINSIR Type1 = BUG BaseStats = 65,125,100,85,55,70 GenderRate = Female50Percent @@ -4308,9 +4181,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[128] +[TAUROS] Name = Tauros -InternalName = TAUROS Type1 = NORMAL BaseStats = 75,100,95,110,40,70 GenderRate = AlwaysMale @@ -4340,9 +4212,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[129] +[MAGIKARP] Name = Magikarp -InternalName = MAGIKARP Type1 = WATER BaseStats = 20,10,55,80,15,20 GenderRate = Female50Percent @@ -4373,9 +4244,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GYARADOS,Level,20 #------------------------------- -[130] +[GYARADOS] Name = Gyarados -InternalName = GYARADOS Type1 = WATER Type2 = FLYING BaseStats = 95,125,79,81,60,100 @@ -4406,9 +4276,8 @@ BattlerEnemyY = -3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[131] +[LAPRAS] Name = Lapras -InternalName = LAPRAS Type1 = WATER Type2 = ICE BaseStats = 130,85,80,60,85,95 @@ -4443,9 +4312,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[132] +[DITTO] Name = Ditto -InternalName = DITTO Type1 = NORMAL BaseStats = 48,48,48,48,48,48 GenderRate = Genderless @@ -4476,9 +4344,8 @@ BattlerEnemyY = 29 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[133] +[EEVEE] Name = Eevee -InternalName = EEVEE Type1 = NORMAL BaseStats = 55,55,50,55,45,65 GenderRate = FemaleOneEighth @@ -4510,9 +4377,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VAPOREON,Item,WATERSTONE,JOLTEON,Item,THUNDERSTONE,FLAREON,Item,FIRESTONE,LEAFEON,Location,28,GLACEON,Location,34,SYLVEON,HappinessMoveType,FAIRY,ESPEON,HappinessDay,,UMBREON,HappinessNight, #------------------------------- -[134] +[VAPOREON] Name = Vaporeon -InternalName = VAPOREON Type1 = WATER BaseStats = 130,65,60,65,110,95 GenderRate = FemaleOneEighth @@ -4542,9 +4408,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[135] +[JOLTEON] Name = Jolteon -InternalName = JOLTEON Type1 = ELECTRIC BaseStats = 65,65,60,130,110,95 GenderRate = FemaleOneEighth @@ -4574,9 +4439,8 @@ BattlerEnemyY = 19 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[136] +[FLAREON] Name = Flareon -InternalName = FLAREON Type1 = FIRE BaseStats = 65,130,60,65,95,110 GenderRate = FemaleOneEighth @@ -4606,9 +4470,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[137] +[PORYGON] Name = Porygon -InternalName = PORYGON Type1 = NORMAL BaseStats = 65,60,70,40,85,75 GenderRate = Genderless @@ -4639,9 +4502,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PORYGON2,TradeItem,UPGRADE #------------------------------- -[138] +[OMANYTE] Name = Omanyte -InternalName = OMANYTE Type1 = ROCK Type2 = WATER BaseStats = 35,40,100,35,90,55 @@ -4674,9 +4536,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = OMASTAR,Level,40 #------------------------------- -[139] +[OMASTAR] Name = Omastar -InternalName = OMASTAR Type1 = ROCK Type2 = WATER BaseStats = 70,60,125,55,115,70 @@ -4707,9 +4568,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[140] +[KABUTO] Name = Kabuto -InternalName = KABUTO Type1 = ROCK Type2 = WATER BaseStats = 30,80,90,55,55,45 @@ -4742,9 +4602,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = KABUTOPS,Level,40 #------------------------------- -[141] +[KABUTOPS] Name = Kabutops -InternalName = KABUTOPS Type1 = ROCK Type2 = WATER BaseStats = 60,115,105,80,65,70 @@ -4775,9 +4634,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[142] +[AERODACTYL] Name = Aerodactyl -InternalName = AERODACTYL Type1 = ROCK Type2 = FLYING BaseStats = 80,105,65,130,60,75 @@ -4809,9 +4667,8 @@ BattlerEnemyY = -2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[143] +[SNORLAX] Name = Snorlax -InternalName = SNORLAX Type1 = NORMAL BaseStats = 160,110,65,30,65,110 GenderRate = FemaleOneEighth @@ -4845,9 +4702,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[144] +[ARTICUNO] Name = Articuno -InternalName = ARTICUNO Type1 = ICE Type2 = FLYING BaseStats = 90,85,100,85,95,125 @@ -4878,9 +4734,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[145] +[ZAPDOS] Name = Zapdos -InternalName = ZAPDOS Type1 = ELECTRIC Type2 = FLYING BaseStats = 90,90,85,100,125,90 @@ -4911,9 +4766,8 @@ BattlerEnemyY = -6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[146] +[MOLTRES] Name = Moltres -InternalName = MOLTRES Type1 = FIRE Type2 = FLYING BaseStats = 90,100,90,90,125,85 @@ -4944,9 +4798,8 @@ BattlerEnemyY = 5 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[147] +[DRATINI] Name = Dratini -InternalName = DRATINI Type1 = DRAGON BaseStats = 41,64,45,50,50,50 GenderRate = Female50Percent @@ -4979,9 +4832,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DRAGONAIR,Level,30 #------------------------------- -[148] +[DRAGONAIR] Name = Dragonair -InternalName = DRAGONAIR Type1 = DRAGON BaseStats = 61,84,65,70,70,70 GenderRate = Female50Percent @@ -5013,9 +4865,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = DRAGONITE,Level,55 #------------------------------- -[149] +[DRAGONITE] Name = Dragonite -InternalName = DRAGONITE Type1 = DRAGON Type2 = FLYING BaseStats = 91,134,95,80,100,100 @@ -5047,9 +4898,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[150] +[MEWTWO] Name = Mewtwo -InternalName = MEWTWO Type1 = PSYCHIC BaseStats = 106,110,90,130,154,90 GenderRate = Genderless @@ -5079,9 +4929,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[151] +[MEW] Name = Mew -InternalName = MEW Type1 = PSYCHIC BaseStats = 100,100,100,100,100,100 GenderRate = Genderless @@ -5113,9 +4962,8 @@ BattlerEnemyY = -3 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[152] +[CHIKORITA] Name = Chikorita -InternalName = CHIKORITA Type1 = GRASS BaseStats = 45,49,65,45,49,65 GenderRate = FemaleOneEighth @@ -5147,9 +4995,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BAYLEEF,Level,16 #------------------------------- -[153] +[BAYLEEF] Name = Bayleef -InternalName = BAYLEEF Type1 = GRASS BaseStats = 60,62,80,60,63,80 GenderRate = FemaleOneEighth @@ -5180,9 +5027,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MEGANIUM,Level,32 #------------------------------- -[154] +[MEGANIUM] Name = Meganium -InternalName = MEGANIUM Type1 = GRASS BaseStats = 80,82,100,80,83,100 GenderRate = FemaleOneEighth @@ -5212,9 +5058,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[155] +[CYNDAQUIL] Name = Cyndaquil -InternalName = CYNDAQUIL Type1 = FIRE BaseStats = 39,52,43,65,60,50 GenderRate = FemaleOneEighth @@ -5246,9 +5091,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = QUILAVA,Level,14 #------------------------------- -[156] +[QUILAVA] Name = Quilava -InternalName = QUILAVA Type1 = FIRE BaseStats = 58,64,58,80,80,65 GenderRate = FemaleOneEighth @@ -5279,9 +5123,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = TYPHLOSION,Level,36 #------------------------------- -[157] +[TYPHLOSION] Name = Typhlosion -InternalName = TYPHLOSION Type1 = FIRE BaseStats = 78,84,78,100,109,85 GenderRate = FemaleOneEighth @@ -5311,9 +5154,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[158] +[TOTODILE] Name = Totodile -InternalName = TOTODILE Type1 = WATER BaseStats = 50,65,64,43,44,48 GenderRate = FemaleOneEighth @@ -5345,9 +5187,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CROCONAW,Level,18 #------------------------------- -[159] +[CROCONAW] Name = Croconaw -InternalName = CROCONAW Type1 = WATER BaseStats = 65,80,80,58,59,63 GenderRate = FemaleOneEighth @@ -5378,9 +5219,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FERALIGATR,Level,30 #------------------------------- -[160] +[FERALIGATR] Name = Feraligatr -InternalName = FERALIGATR Type1 = WATER BaseStats = 85,105,100,78,79,83 GenderRate = FemaleOneEighth @@ -5410,9 +5250,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[161] +[SENTRET] Name = Sentret -InternalName = SENTRET Type1 = NORMAL BaseStats = 35,46,34,20,35,45 GenderRate = Female50Percent @@ -5444,9 +5283,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = FURRET,Level,15 #------------------------------- -[162] +[FURRET] Name = Furret -InternalName = FURRET Type1 = NORMAL BaseStats = 85,76,64,90,45,55 GenderRate = Female50Percent @@ -5476,9 +5314,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[163] +[HOOTHOOT] Name = Hoothoot -InternalName = HOOTHOOT Type1 = NORMAL Type2 = FLYING BaseStats = 60,30,30,50,36,56 @@ -5511,9 +5348,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = NOCTOWL,Level,20 #------------------------------- -[164] +[NOCTOWL] Name = Noctowl -InternalName = NOCTOWL Type1 = NORMAL Type2 = FLYING BaseStats = 100,50,50,70,86,96 @@ -5544,9 +5380,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[165] +[LEDYBA] Name = Ledyba -InternalName = LEDYBA Type1 = BUG Type2 = FLYING BaseStats = 40,20,30,55,40,80 @@ -5579,9 +5414,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LEDIAN,Level,18 #------------------------------- -[166] +[LEDIAN] Name = Ledian -InternalName = LEDIAN Type1 = BUG Type2 = FLYING BaseStats = 55,35,50,85,55,110 @@ -5612,9 +5446,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[167] +[SPINARAK] Name = Spinarak -InternalName = SPINARAK Type1 = BUG Type2 = POISON BaseStats = 40,60,40,30,40,40 @@ -5647,9 +5480,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ARIADOS,Level,22 #------------------------------- -[168] +[ARIADOS] Name = Ariados -InternalName = ARIADOS Type1 = BUG Type2 = POISON BaseStats = 70,90,70,40,60,70 @@ -5680,9 +5512,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[169] +[CROBAT] Name = Crobat -InternalName = CROBAT Type1 = POISON Type2 = FLYING BaseStats = 85,90,80,130,70,80 @@ -5713,9 +5544,8 @@ BattlerEnemyY = -2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[170] +[CHINCHOU] Name = Chinchou -InternalName = CHINCHOU Type1 = WATER Type2 = ELECTRIC BaseStats = 75,38,38,67,56,56 @@ -5749,9 +5579,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LANTURN,Level,27 #------------------------------- -[171] +[LANTURN] Name = Lanturn -InternalName = LANTURN Type1 = WATER Type2 = ELECTRIC BaseStats = 125,58,58,67,76,76 @@ -5783,9 +5612,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[172] +[PICHU] Name = Pichu -InternalName = PICHU Type1 = ELECTRIC BaseStats = 20,40,15,60,35,35 GenderRate = Female50Percent @@ -5817,9 +5645,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PIKACHU,Happiness, #------------------------------- -[173] +[CLEFFA] Name = Cleffa -InternalName = CLEFFA Type1 = FAIRY BaseStats = 50,25,28,15,45,55 GenderRate = Female75Percent @@ -5852,9 +5679,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = CLEFAIRY,Happiness, #------------------------------- -[174] +[IGGLYBUFF] Name = Igglybuff -InternalName = IGGLYBUFF Type1 = NORMAL Type2 = FAIRY BaseStats = 90,30,15,15,40,20 @@ -5887,9 +5713,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = JIGGLYPUFF,Happiness, #------------------------------- -[175] +[TOGEPI] Name = Togepi -InternalName = TOGEPI Type1 = FAIRY BaseStats = 35,20,65,20,40,65 GenderRate = FemaleOneEighth @@ -5921,9 +5746,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = TOGETIC,Happiness, #------------------------------- -[176] +[TOGETIC] Name = Togetic -InternalName = TOGETIC Type1 = FAIRY Type2 = FLYING BaseStats = 55,40,85,40,80,105 @@ -5955,9 +5779,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = TOGEKISS,Item,SHINYSTONE #------------------------------- -[177] +[NATU] Name = Natu -InternalName = NATU Type1 = PSYCHIC Type2 = FLYING BaseStats = 40,50,45,70,70,45 @@ -5990,9 +5813,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = XATU,Level,25 #------------------------------- -[178] +[XATU] Name = Xatu -InternalName = XATU Type1 = PSYCHIC Type2 = FLYING BaseStats = 65,75,70,95,95,70 @@ -6023,9 +5845,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[179] +[MAREEP] Name = Mareep -InternalName = MAREEP Type1 = ELECTRIC BaseStats = 55,40,40,35,65,45 GenderRate = Female50Percent @@ -6057,9 +5878,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FLAAFFY,Level,15 #------------------------------- -[180] +[FLAAFFY] Name = Flaaffy -InternalName = FLAAFFY Type1 = ELECTRIC BaseStats = 70,55,55,45,80,60 GenderRate = Female50Percent @@ -6090,9 +5910,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = AMPHAROS,Level,30 #------------------------------- -[181] +[AMPHAROS] Name = Ampharos -InternalName = AMPHAROS Type1 = ELECTRIC BaseStats = 90,75,85,55,115,90 GenderRate = Female50Percent @@ -6122,9 +5941,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[182] +[BELLOSSOM] Name = Bellossom -InternalName = BELLOSSOM Type1 = GRASS BaseStats = 75,80,95,50,90,100 GenderRate = Female50Percent @@ -6155,9 +5973,8 @@ BattlerEnemyY = 24 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[183] +[MARILL] Name = Marill -InternalName = MARILL Type1 = WATER Type2 = FAIRY BaseStats = 70,20,50,40,20,50 @@ -6190,9 +6007,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = AZUMARILL,Level,18 #------------------------------- -[184] +[AZUMARILL] Name = Azumarill -InternalName = AZUMARILL Type1 = WATER Type2 = FAIRY BaseStats = 100,50,80,50,60,80 @@ -6223,9 +6039,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[185] +[SUDOWOODO] Name = Sudowoodo -InternalName = SUDOWOODO Type1 = ROCK BaseStats = 70,100,115,30,30,65 GenderRate = Female50Percent @@ -6256,9 +6071,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[186] +[POLITOED] Name = Politoed -InternalName = POLITOED Type1 = WATER BaseStats = 90,75,75,70,90,100 GenderRate = Female50Percent @@ -6289,9 +6103,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[187] +[HOPPIP] Name = Hoppip -InternalName = HOPPIP Type1 = GRASS Type2 = FLYING BaseStats = 35,35,40,50,35,55 @@ -6324,9 +6137,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SKIPLOOM,Level,18 #------------------------------- -[188] +[SKIPLOOM] Name = Skiploom -InternalName = SKIPLOOM Type1 = GRASS Type2 = FLYING BaseStats = 55,45,50,80,45,65 @@ -6358,9 +6170,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = JUMPLUFF,Level,27 #------------------------------- -[189] +[JUMPLUFF] Name = Jumpluff -InternalName = JUMPLUFF Type1 = GRASS Type2 = FLYING BaseStats = 75,55,70,110,55,95 @@ -6391,9 +6202,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[190] +[AIPOM] Name = Aipom -InternalName = AIPOM Type1 = NORMAL BaseStats = 55,70,55,85,40,55 GenderRate = Female50Percent @@ -6425,9 +6235,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = AMBIPOM,HasMove,DOUBLEHIT #------------------------------- -[191] +[SUNKERN] Name = Sunkern -InternalName = SUNKERN Type1 = GRASS BaseStats = 30,30,30,30,30,30 GenderRate = Female50Percent @@ -6459,9 +6268,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SUNFLORA,Item,SUNSTONE #------------------------------- -[192] +[SUNFLORA] Name = Sunflora -InternalName = SUNFLORA Type1 = GRASS BaseStats = 75,75,55,30,105,85 GenderRate = Female50Percent @@ -6491,9 +6299,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[193] +[YANMA] Name = Yanma -InternalName = YANMA Type1 = BUG Type2 = FLYING BaseStats = 65,65,45,95,75,45 @@ -6527,9 +6334,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = YANMEGA,HasMove,ANCIENTPOWER #------------------------------- -[194] +[WOOPER] Name = Wooper -InternalName = WOOPER Type1 = WATER Type2 = GROUND BaseStats = 55,45,45,15,25,25 @@ -6562,9 +6368,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = QUAGSIRE,Level,20 #------------------------------- -[195] +[QUAGSIRE] Name = Quagsire -InternalName = QUAGSIRE Type1 = WATER Type2 = GROUND BaseStats = 95,85,85,35,65,65 @@ -6595,9 +6400,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[196] +[ESPEON] Name = Espeon -InternalName = ESPEON Type1 = PSYCHIC BaseStats = 65,65,60,110,130,95 GenderRate = FemaleOneEighth @@ -6627,9 +6431,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[197] +[UMBREON] Name = Umbreon -InternalName = UMBREON Type1 = DARK BaseStats = 95,65,110,65,60,130 GenderRate = FemaleOneEighth @@ -6659,9 +6462,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[198] +[MURKROW] Name = Murkrow -InternalName = MURKROW Type1 = DARK Type2 = FLYING BaseStats = 60,85,42,91,85,42 @@ -6694,9 +6496,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HONCHKROW,Item,DUSKSTONE #------------------------------- -[199] +[SLOWKING] Name = Slowking -InternalName = SLOWKING Type1 = WATER Type2 = PSYCHIC BaseStats = 95,75,80,30,100,110 @@ -6728,9 +6529,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[200] +[MISDREAVUS] Name = Misdreavus -InternalName = MISDREAVUS Type1 = GHOST BaseStats = 60,60,60,85,85,85 GenderRate = Female50Percent @@ -6761,9 +6561,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = MISMAGIUS,Item,DUSKSTONE #------------------------------- -[201] +[UNOWN] Name = Unown -InternalName = UNOWN Type1 = PSYCHIC BaseStats = 48,72,48,48,72,48 GenderRate = Genderless @@ -6793,9 +6592,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[202] +[WOBBUFFET] Name = Wobbuffet -InternalName = WOBBUFFET Type1 = PSYCHIC BaseStats = 190,33,58,33,33,58 GenderRate = Female50Percent @@ -6825,9 +6623,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[203] +[GIRAFARIG] Name = Girafarig -InternalName = GIRAFARIG Type1 = NORMAL Type2 = PSYCHIC BaseStats = 70,80,65,85,90,65 @@ -6859,9 +6656,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[204] +[PINECO] Name = Pineco -InternalName = PINECO Type1 = BUG BaseStats = 50,65,90,15,35,35 GenderRate = Female50Percent @@ -6893,9 +6689,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = FORRETRESS,Level,31 #------------------------------- -[205] +[FORRETRESS] Name = Forretress -InternalName = FORRETRESS Type1 = BUG Type2 = STEEL BaseStats = 75,90,140,40,60,60 @@ -6926,9 +6721,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[206] +[DUNSPARCE] Name = Dunsparce -InternalName = DUNSPARCE Type1 = NORMAL BaseStats = 100,70,70,45,65,65 GenderRate = Female50Percent @@ -6959,9 +6753,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[207] +[GLIGAR] Name = Gligar -InternalName = GLIGAR Type1 = GROUND Type2 = FLYING BaseStats = 65,75,105,85,35,65 @@ -6994,9 +6787,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GLISCOR,NightHoldItem,RAZORFANG #------------------------------- -[208] +[STEELIX] Name = Steelix -InternalName = STEELIX Type1 = STEEL Type2 = GROUND BaseStats = 75,85,200,30,55,65 @@ -7028,9 +6820,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[209] +[SNUBBULL] Name = Snubbull -InternalName = SNUBBULL Type1 = FAIRY BaseStats = 60,80,50,30,40,40 GenderRate = Female75Percent @@ -7062,9 +6853,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GRANBULL,Level,23 #------------------------------- -[210] +[GRANBULL] Name = Granbull -InternalName = GRANBULL Type1 = FAIRY BaseStats = 90,120,75,45,60,60 GenderRate = Female75Percent @@ -7094,9 +6884,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[211] +[QWILFISH] Name = Qwilfish -InternalName = QWILFISH Type1 = WATER Type2 = POISON BaseStats = 65,95,85,85,55,55 @@ -7129,9 +6918,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[212] +[SCIZOR] Name = Scizor -InternalName = SCIZOR Type1 = BUG Type2 = STEEL BaseStats = 70,130,100,65,55,80 @@ -7162,9 +6950,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[213] +[SHUCKLE] Name = Shuckle -InternalName = SHUCKLE Type1 = BUG Type2 = ROCK BaseStats = 20,10,230,5,10,230 @@ -7199,9 +6986,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[214] +[HERACROSS] Name = Heracross -InternalName = HERACROSS Type1 = BUG Type2 = FIGHTING BaseStats = 80,125,75,85,40,95 @@ -7233,9 +7019,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[215] +[SNEASEL] Name = Sneasel -InternalName = SNEASEL Type1 = DARK Type2 = ICE BaseStats = 55,95,55,115,35,75 @@ -7269,9 +7054,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = WEAVILE,NightHoldItem,RAZORCLAW #------------------------------- -[216] +[TEDDIURSA] Name = Teddiursa -InternalName = TEDDIURSA Type1 = NORMAL BaseStats = 60,80,50,40,50,50 GenderRate = Female50Percent @@ -7303,9 +7087,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = URSARING,Level,30 #------------------------------- -[217] +[URSARING] Name = Ursaring -InternalName = URSARING Type1 = NORMAL BaseStats = 90,130,75,55,75,75 GenderRate = Female50Percent @@ -7335,9 +7118,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[218] +[SLUGMA] Name = Slugma -InternalName = SLUGMA Type1 = FIRE BaseStats = 40,40,40,20,70,40 GenderRate = Female50Percent @@ -7369,9 +7151,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MAGCARGO,Level,38 #------------------------------- -[219] +[MAGCARGO] Name = Magcargo -InternalName = MAGCARGO Type1 = FIRE Type2 = ROCK BaseStats = 60,50,120,30,90,80 @@ -7402,9 +7183,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[220] +[SWINUB] Name = Swinub -InternalName = SWINUB Type1 = ICE Type2 = GROUND BaseStats = 50,50,40,50,30,30 @@ -7437,9 +7217,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PILOSWINE,Level,33 #------------------------------- -[221] +[PILOSWINE] Name = Piloswine -InternalName = PILOSWINE Type1 = ICE Type2 = GROUND BaseStats = 100,100,80,50,60,60 @@ -7471,9 +7250,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = MAMOSWINE,HasMove,ANCIENTPOWER #------------------------------- -[222] +[CORSOLA] Name = Corsola -InternalName = CORSOLA Type1 = WATER Type2 = ROCK BaseStats = 65,55,95,35,65,95 @@ -7506,9 +7284,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[223] +[REMORAID] Name = Remoraid -InternalName = REMORAID Type1 = WATER BaseStats = 35,65,35,65,65,35 GenderRate = Female50Percent @@ -7540,9 +7317,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = OCTILLERY,Level,25 #------------------------------- -[224] +[OCTILLERY] Name = Octillery -InternalName = OCTILLERY Type1 = WATER BaseStats = 75,105,75,45,105,75 GenderRate = Female50Percent @@ -7572,9 +7348,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[225] +[DELIBIRD] Name = Delibird -InternalName = DELIBIRD Type1 = ICE Type2 = FLYING BaseStats = 45,55,45,75,65,45 @@ -7606,9 +7381,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[226] +[MANTINE] Name = Mantine -InternalName = MANTINE Type1 = WATER Type2 = FLYING BaseStats = 85,40,70,70,80,140 @@ -7640,9 +7414,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[227] +[SKARMORY] Name = Skarmory -InternalName = SKARMORY Type1 = STEEL Type2 = FLYING BaseStats = 65,80,140,70,40,70 @@ -7675,9 +7448,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[228] +[HOUNDOUR] Name = Houndour -InternalName = HOUNDOUR Type1 = DARK Type2 = FIRE BaseStats = 45,60,30,65,80,50 @@ -7710,9 +7482,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HOUNDOOM,Level,24 #------------------------------- -[229] +[HOUNDOOM] Name = Houndoom -InternalName = HOUNDOOM Type1 = DARK Type2 = FIRE BaseStats = 75,90,50,95,110,80 @@ -7743,9 +7514,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[230] +[KINGDRA] Name = Kingdra -InternalName = KINGDRA Type1 = WATER Type2 = DRAGON BaseStats = 75,95,95,85,95,95 @@ -7777,9 +7547,8 @@ BattlerEnemyY = -7 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[231] +[PHANPY] Name = Phanpy -InternalName = PHANPY Type1 = GROUND BaseStats = 90,60,60,40,40,40 GenderRate = Female50Percent @@ -7811,9 +7580,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DONPHAN,Level,25 #------------------------------- -[232] +[DONPHAN] Name = Donphan -InternalName = DONPHAN Type1 = GROUND BaseStats = 90,120,120,50,60,60 GenderRate = Female50Percent @@ -7843,9 +7611,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[233] +[PORYGON2] Name = Porygon2 -InternalName = PORYGON2 Type1 = NORMAL BaseStats = 85,80,90,60,105,95 GenderRate = Genderless @@ -7876,9 +7643,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PORYGONZ,TradeItem,DUBIOUSDISC #------------------------------- -[234] +[STANTLER] Name = Stantler -InternalName = STANTLER Type1 = NORMAL BaseStats = 73,95,62,85,85,65 GenderRate = Female50Percent @@ -7909,9 +7675,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[235] +[SMEARGLE] Name = Smeargle -InternalName = SMEARGLE Type1 = NORMAL BaseStats = 55,20,35,75,20,45 GenderRate = Female50Percent @@ -7940,9 +7705,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[236] +[TYROGUE] Name = Tyrogue -InternalName = TYROGUE Type1 = FIGHTING BaseStats = 35,35,35,35,35,35 GenderRate = AlwaysMale @@ -7974,9 +7738,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = HITMONLEE,AttackGreater,20,HITMONCHAN,DefenseGreater,20,HITMONTOP,AtkDefEqual,20 #------------------------------- -[237] +[HITMONTOP] Name = Hitmontop -InternalName = HITMONTOP Type1 = FIGHTING BaseStats = 50,95,95,70,35,110 GenderRate = AlwaysMale @@ -8006,9 +7769,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[238] +[SMOOCHUM] Name = Smoochum -InternalName = SMOOCHUM Type1 = ICE Type2 = PSYCHIC BaseStats = 45,30,15,65,85,65 @@ -8041,9 +7803,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = JYNX,Level,30 #------------------------------- -[239] +[ELEKID] Name = Elekid -InternalName = ELEKID Type1 = ELECTRIC BaseStats = 45,63,37,95,65,55 GenderRate = Female25Percent @@ -8076,9 +7837,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ELECTABUZZ,Level,30 #------------------------------- -[240] +[MAGBY] Name = Magby -InternalName = MAGBY Type1 = FIRE BaseStats = 45,75,37,83,70,55 GenderRate = Female25Percent @@ -8111,9 +7871,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = MAGMAR,Level,30 #------------------------------- -[241] +[MILTANK] Name = Miltank -InternalName = MILTANK Type1 = NORMAL BaseStats = 95,80,105,100,40,70 GenderRate = AlwaysFemale @@ -8147,9 +7906,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[242] +[BLISSEY] Name = Blissey -InternalName = BLISSEY Type1 = NORMAL BaseStats = 255,10,10,55,75,135 GenderRate = AlwaysFemale @@ -8182,9 +7940,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[243] +[RAIKOU] Name = Raikou -InternalName = RAIKOU Type1 = ELECTRIC BaseStats = 90,85,75,115,115,100 GenderRate = Genderless @@ -8214,9 +7971,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[244] +[ENTEI] Name = Entei -InternalName = ENTEI Type1 = FIRE BaseStats = 115,115,85,100,90,75 GenderRate = Genderless @@ -8246,9 +8002,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[245] +[SUICUNE] Name = Suicune -InternalName = SUICUNE Type1 = WATER BaseStats = 100,75,115,85,90,115 GenderRate = Genderless @@ -8278,9 +8033,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[246] +[LARVITAR] Name = Larvitar -InternalName = LARVITAR Type1 = ROCK Type2 = GROUND BaseStats = 50,64,50,41,45,50 @@ -8313,9 +8067,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PUPITAR,Level,30 #------------------------------- -[247] +[PUPITAR] Name = Pupitar -InternalName = PUPITAR Type1 = ROCK Type2 = GROUND BaseStats = 70,84,70,51,65,70 @@ -8346,9 +8099,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TYRANITAR,Level,55 #------------------------------- -[248] +[TYRANITAR] Name = Tyranitar -InternalName = TYRANITAR Type1 = ROCK Type2 = DARK BaseStats = 100,134,110,61,95,100 @@ -8379,9 +8131,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[249] +[LUGIA] Name = Lugia -InternalName = LUGIA Type1 = PSYCHIC Type2 = FLYING BaseStats = 106,90,130,110,90,154 @@ -8412,9 +8163,8 @@ BattlerEnemyY = -3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[250] +[HOOH] Name = Ho-Oh -InternalName = HOOH Type1 = FIRE Type2 = FLYING BaseStats = 106,130,90,90,110,154 @@ -8448,9 +8198,8 @@ BattlerEnemyY = -7 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[251] +[CELEBI] Name = Celebi -InternalName = CELEBI Type1 = PSYCHIC Type2 = GRASS BaseStats = 100,100,100,100,100,100 @@ -8483,9 +8232,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[252] +[TREECKO] Name = Treecko -InternalName = TREECKO Type1 = GRASS BaseStats = 40,45,35,70,65,55 GenderRate = FemaleOneEighth @@ -8517,9 +8265,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GROVYLE,Level,16 #------------------------------- -[253] +[GROVYLE] Name = Grovyle -InternalName = GROVYLE Type1 = GRASS BaseStats = 50,65,45,95,85,65 GenderRate = FemaleOneEighth @@ -8550,9 +8297,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SCEPTILE,Level,36 #------------------------------- -[254] +[SCEPTILE] Name = Sceptile -InternalName = SCEPTILE Type1 = GRASS BaseStats = 70,85,65,120,105,85 GenderRate = FemaleOneEighth @@ -8582,9 +8328,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[255] +[TORCHIC] Name = Torchic -InternalName = TORCHIC Type1 = FIRE BaseStats = 45,60,40,45,70,50 GenderRate = FemaleOneEighth @@ -8616,9 +8361,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = COMBUSKEN,Level,16 #------------------------------- -[256] +[COMBUSKEN] Name = Combusken -InternalName = COMBUSKEN Type1 = FIRE Type2 = FIGHTING BaseStats = 60,85,60,55,85,60 @@ -8650,9 +8394,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BLAZIKEN,Level,36 #------------------------------- -[257] +[BLAZIKEN] Name = Blaziken -InternalName = BLAZIKEN Type1 = FIRE Type2 = FIGHTING BaseStats = 80,120,70,80,110,70 @@ -8683,9 +8426,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[258] +[MUDKIP] Name = Mudkip -InternalName = MUDKIP Type1 = WATER BaseStats = 50,70,50,40,50,50 GenderRate = FemaleOneEighth @@ -8717,9 +8459,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = MARSHTOMP,Level,16 #------------------------------- -[259] +[MARSHTOMP] Name = Marshtomp -InternalName = MARSHTOMP Type1 = WATER Type2 = GROUND BaseStats = 70,85,70,50,60,70 @@ -8751,9 +8492,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SWAMPERT,Level,36 #------------------------------- -[260] +[SWAMPERT] Name = Swampert -InternalName = SWAMPERT Type1 = WATER Type2 = GROUND BaseStats = 100,110,90,60,85,90 @@ -8784,9 +8524,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[261] +[POOCHYENA] Name = Poochyena -InternalName = POOCHYENA Type1 = DARK BaseStats = 35,55,35,35,30,30 GenderRate = Female50Percent @@ -8818,9 +8557,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MIGHTYENA,Level,18 #------------------------------- -[262] +[MIGHTYENA] Name = Mightyena -InternalName = MIGHTYENA Type1 = DARK BaseStats = 70,90,70,70,60,60 GenderRate = Female50Percent @@ -8850,9 +8588,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[263] +[ZIGZAGOON] Name = Zigzagoon -InternalName = ZIGZAGOON Type1 = NORMAL BaseStats = 38,30,41,60,30,41 GenderRate = Female50Percent @@ -8886,9 +8623,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LINOONE,Level,20 #------------------------------- -[264] +[LINOONE] Name = Linoone -InternalName = LINOONE Type1 = NORMAL BaseStats = 78,70,61,100,50,61 GenderRate = Female50Percent @@ -8920,9 +8656,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[265] +[WURMPLE] Name = Wurmple -InternalName = WURMPLE Type1 = BUG BaseStats = 45,45,35,20,20,30 GenderRate = Female50Percent @@ -8955,9 +8690,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SILCOON,Silcoon,7,CASCOON,Cascoon,7 #------------------------------- -[266] +[SILCOON] Name = Silcoon -InternalName = SILCOON Type1 = BUG BaseStats = 50,35,55,15,25,25 GenderRate = Female50Percent @@ -8987,9 +8721,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BEAUTIFLY,Level,10 #------------------------------- -[267] +[BEAUTIFLY] Name = Beautifly -InternalName = BEAUTIFLY Type1 = BUG Type2 = FLYING BaseStats = 60,70,50,65,100,50 @@ -9021,9 +8754,8 @@ BattlerEnemyY = 1 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[268] +[CASCOON] Name = Cascoon -InternalName = CASCOON Type1 = BUG BaseStats = 50,35,55,15,25,25 GenderRate = Female50Percent @@ -9053,9 +8785,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DUSTOX,Level,10 #------------------------------- -[269] +[DUSTOX] Name = Dustox -InternalName = DUSTOX Type1 = BUG Type2 = POISON BaseStats = 60,50,70,65,50,90 @@ -9087,9 +8818,8 @@ BattlerEnemyY = -6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[270] +[LOTAD] Name = Lotad -InternalName = LOTAD Type1 = WATER Type2 = GRASS BaseStats = 40,30,30,30,40,50 @@ -9123,9 +8853,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LOMBRE,Level,14 #------------------------------- -[271] +[LOMBRE] Name = Lombre -InternalName = LOMBRE Type1 = WATER Type2 = GRASS BaseStats = 60,50,50,50,60,70 @@ -9158,9 +8887,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LUDICOLO,Item,WATERSTONE #------------------------------- -[272] +[LUDICOLO] Name = Ludicolo -InternalName = LUDICOLO Type1 = WATER Type2 = GRASS BaseStats = 80,70,70,70,90,100 @@ -9192,9 +8920,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[273] +[SEEDOT] Name = Seedot -InternalName = SEEDOT Type1 = GRASS BaseStats = 40,40,50,30,30,30 GenderRate = Female50Percent @@ -9227,9 +8954,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = NUZLEAF,Level,14 #------------------------------- -[274] +[NUZLEAF] Name = Nuzleaf -InternalName = NUZLEAF Type1 = GRASS Type2 = DARK BaseStats = 70,70,40,60,60,40 @@ -9262,9 +8988,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SHIFTRY,Item,LEAFSTONE #------------------------------- -[275] +[SHIFTRY] Name = Shiftry -InternalName = SHIFTRY Type1 = GRASS Type2 = DARK BaseStats = 90,100,60,80,90,60 @@ -9296,9 +9021,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[276] +[TAILLOW] Name = Taillow -InternalName = TAILLOW Type1 = NORMAL Type2 = FLYING BaseStats = 40,55,30,85,30,30 @@ -9331,9 +9055,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SWELLOW,Level,22 #------------------------------- -[277] +[SWELLOW] Name = Swellow -InternalName = SWELLOW Type1 = NORMAL Type2 = FLYING BaseStats = 60,85,60,125,75,50 @@ -9364,9 +9087,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[278] +[WINGULL] Name = Wingull -InternalName = WINGULL Type1 = WATER Type2 = FLYING BaseStats = 40,30,30,85,55,30 @@ -9400,9 +9122,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PELIPPER,Level,25 #------------------------------- -[279] +[PELIPPER] Name = Pelipper -InternalName = PELIPPER Type1 = WATER Type2 = FLYING BaseStats = 60,50,100,65,95,70 @@ -9434,9 +9155,8 @@ BattlerEnemyY = -6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[280] +[RALTS] Name = Ralts -InternalName = RALTS Type1 = PSYCHIC Type2 = FAIRY BaseStats = 28,25,25,40,45,35 @@ -9469,9 +9189,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = KIRLIA,Level,20 #------------------------------- -[281] +[KIRLIA] Name = Kirlia -InternalName = KIRLIA Type1 = PSYCHIC Type2 = FAIRY BaseStats = 38,35,35,50,65,55 @@ -9503,9 +9222,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GARDEVOIR,Level,30,GALLADE,ItemMale,DAWNSTONE #------------------------------- -[282] +[GARDEVOIR] Name = Gardevoir -InternalName = GARDEVOIR Type1 = PSYCHIC Type2 = FAIRY BaseStats = 68,65,65,80,125,115 @@ -9536,9 +9254,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[283] +[SURSKIT] Name = Surskit -InternalName = SURSKIT Type1 = BUG Type2 = WATER BaseStats = 40,30,32,65,50,52 @@ -9572,9 +9289,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = MASQUERAIN,Level,22 #------------------------------- -[284] +[MASQUERAIN] Name = Masquerain -InternalName = MASQUERAIN Type1 = BUG Type2 = FLYING BaseStats = 70,60,62,80,100,82 @@ -9606,9 +9322,8 @@ BattlerEnemyY = -8 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[285] +[SHROOMISH] Name = Shroomish -InternalName = SHROOMISH Type1 = GRASS BaseStats = 60,40,60,35,40,60 GenderRate = Female50Percent @@ -9642,9 +9357,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BRELOOM,Level,23 #------------------------------- -[286] +[BRELOOM] Name = Breloom -InternalName = BRELOOM Type1 = GRASS Type2 = FIGHTING BaseStats = 60,130,80,70,60,60 @@ -9677,9 +9391,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[287] +[SLAKOTH] Name = Slakoth -InternalName = SLAKOTH Type1 = NORMAL BaseStats = 60,60,60,30,35,35 GenderRate = Female50Percent @@ -9710,9 +9423,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = VIGOROTH,Level,18 #------------------------------- -[288] +[VIGOROTH] Name = Vigoroth -InternalName = VIGOROTH Type1 = NORMAL BaseStats = 80,80,80,90,55,55 GenderRate = Female50Percent @@ -9742,9 +9454,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SLAKING,Level,36 #------------------------------- -[289] +[SLAKING] Name = Slaking -InternalName = SLAKING Type1 = NORMAL BaseStats = 150,160,100,100,95,65 GenderRate = Female50Percent @@ -9773,9 +9484,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[290] +[NINCADA] Name = Nincada -InternalName = NINCADA Type1 = BUG Type2 = GROUND BaseStats = 31,45,90,40,30,30 @@ -9809,9 +9519,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = NINJASK,Ninjask,20,SHEDINJA,Shedinja,20 #------------------------------- -[291] +[NINJASK] Name = Ninjask -InternalName = NINJASK Type1 = BUG Type2 = FLYING BaseStats = 61,90,45,160,50,50 @@ -9842,9 +9551,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[292] +[SHEDINJA] Name = Shedinja -InternalName = SHEDINJA Type1 = BUG Type2 = GHOST BaseStats = 1,90,45,40,30,30 @@ -9874,9 +9582,8 @@ BattlerEnemyY = 1 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[293] +[WHISMUR] Name = Whismur -InternalName = WHISMUR Type1 = NORMAL BaseStats = 64,51,23,28,51,23 GenderRate = Female50Percent @@ -9908,9 +9615,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LOUDRED,Level,20 #------------------------------- -[294] +[LOUDRED] Name = Loudred -InternalName = LOUDRED Type1 = NORMAL BaseStats = 84,71,43,48,71,43 GenderRate = Female50Percent @@ -9941,9 +9647,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = EXPLOUD,Level,40 #------------------------------- -[295] +[EXPLOUD] Name = Exploud -InternalName = EXPLOUD Type1 = NORMAL BaseStats = 104,91,63,68,91,73 GenderRate = Female50Percent @@ -9973,9 +9678,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[296] +[MAKUHITA] Name = Makuhita -InternalName = MAKUHITA Type1 = FIGHTING BaseStats = 72,60,30,25,20,30 GenderRate = Female25Percent @@ -10008,9 +9712,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HARIYAMA,Level,24 #------------------------------- -[297] +[HARIYAMA] Name = Hariyama -InternalName = HARIYAMA Type1 = FIGHTING BaseStats = 144,120,60,50,40,60 GenderRate = Female25Percent @@ -10041,9 +9744,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[298] +[AZURILL] Name = Azurill -InternalName = AZURILL Type1 = NORMAL Type2 = FAIRY BaseStats = 50,20,40,20,20,40 @@ -10077,9 +9779,8 @@ BattlerShadowSize = 1 Evolutions = MARILL,Happiness, Incense = SEAINCENSE #------------------------------- -[299] +[NOSEPASS] Name = Nosepass -InternalName = NOSEPASS Type1 = ROCK BaseStats = 30,45,135,30,45,90 GenderRate = Female50Percent @@ -10112,9 +9813,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PROBOPASS,Location,49,PROBOPASS,Location,50,PROBOPASS,Location,51 #------------------------------- -[300] +[SKITTY] Name = Skitty -InternalName = SKITTY Type1 = NORMAL BaseStats = 50,45,45,50,35,35 GenderRate = Female75Percent @@ -10146,9 +9846,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = DELCATTY,Item,MOONSTONE #------------------------------- -[301] +[DELCATTY] Name = Delcatty -InternalName = DELCATTY Type1 = NORMAL BaseStats = 70,65,65,90,55,55 GenderRate = Female75Percent @@ -10178,9 +9877,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[302] +[SABLEYE] Name = Sableye -InternalName = SABLEYE Type1 = DARK Type2 = GHOST BaseStats = 50,75,75,50,65,65 @@ -10213,9 +9911,8 @@ BattlerEnemyY = 19 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[303] +[MAWILE] Name = Mawile -InternalName = MAWILE Type1 = STEEL Type2 = FAIRY BaseStats = 50,85,85,50,55,55 @@ -10248,9 +9945,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[304] +[ARON] Name = Aron -InternalName = ARON Type1 = STEEL Type2 = ROCK BaseStats = 50,70,100,30,40,40 @@ -10284,9 +9980,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LAIRON,Level,32 #------------------------------- -[305] +[LAIRON] Name = Lairon -InternalName = LAIRON Type1 = STEEL Type2 = ROCK BaseStats = 60,90,140,40,50,50 @@ -10319,9 +10014,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = AGGRON,Level,42 #------------------------------- -[306] +[AGGRON] Name = Aggron -InternalName = AGGRON Type1 = STEEL Type2 = ROCK BaseStats = 70,110,180,50,60,60 @@ -10353,9 +10047,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[307] +[MEDITITE] Name = Meditite -InternalName = MEDITITE Type1 = FIGHTING Type2 = PSYCHIC BaseStats = 30,40,55,60,40,55 @@ -10388,9 +10081,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MEDICHAM,Level,37 #------------------------------- -[308] +[MEDICHAM] Name = Medicham -InternalName = MEDICHAM Type1 = FIGHTING Type2 = PSYCHIC BaseStats = 60,60,75,80,60,75 @@ -10421,9 +10113,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[309] +[ELECTRIKE] Name = Electrike -InternalName = ELECTRIKE Type1 = ELECTRIC BaseStats = 40,45,40,65,65,40 GenderRate = Female50Percent @@ -10455,9 +10146,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MANECTRIC,Level,26 #------------------------------- -[310] +[MANECTRIC] Name = Manectric -InternalName = MANECTRIC Type1 = ELECTRIC BaseStats = 70,75,60,105,105,60 GenderRate = Female50Percent @@ -10487,9 +10177,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[311] +[PLUSLE] Name = Plusle -InternalName = PLUSLE Type1 = ELECTRIC BaseStats = 60,50,40,95,85,75 GenderRate = Female50Percent @@ -10521,9 +10210,8 @@ BattlerEnemyY = 19 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[312] +[MINUN] Name = Minun -InternalName = MINUN Type1 = ELECTRIC BaseStats = 60,40,50,95,75,85 GenderRate = Female50Percent @@ -10555,9 +10243,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[313] +[VOLBEAT] Name = Volbeat -InternalName = VOLBEAT Type1 = BUG BaseStats = 65,73,75,85,47,85 GenderRate = AlwaysMale @@ -10589,9 +10276,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[314] +[ILLUMISE] Name = Illumise -InternalName = ILLUMISE Type1 = BUG BaseStats = 65,47,75,85,73,85 GenderRate = AlwaysFemale @@ -10623,9 +10309,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[315] +[ROSELIA] Name = Roselia -InternalName = ROSELIA Type1 = GRASS Type2 = POISON BaseStats = 50,60,45,65,100,80 @@ -10659,9 +10344,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = ROSERADE,Item,SHINYSTONE #------------------------------- -[316] +[GULPIN] Name = Gulpin -InternalName = GULPIN Type1 = POISON BaseStats = 70,43,53,40,43,53 GenderRate = Female50Percent @@ -10695,9 +10379,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SWALOT,Level,26 #------------------------------- -[317] +[SWALOT] Name = Swalot -InternalName = SWALOT Type1 = POISON BaseStats = 100,73,83,55,73,83 GenderRate = Female50Percent @@ -10729,9 +10412,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[318] +[CARVANHA] Name = Carvanha -InternalName = CARVANHA Type1 = WATER Type2 = DARK BaseStats = 45,90,20,65,65,20 @@ -10765,9 +10447,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SHARPEDO,Level,30 #------------------------------- -[319] +[SHARPEDO] Name = Sharpedo -InternalName = SHARPEDO Type1 = WATER Type2 = DARK BaseStats = 70,120,40,95,95,40 @@ -10799,9 +10480,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[320] +[WAILMER] Name = Wailmer -InternalName = WAILMER Type1 = WATER BaseStats = 130,70,35,60,70,35 GenderRate = Female50Percent @@ -10833,9 +10513,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = WAILORD,Level,40 #------------------------------- -[321] +[WAILORD] Name = Wailord -InternalName = WAILORD Type1 = WATER BaseStats = 170,90,45,60,90,45 GenderRate = Female50Percent @@ -10865,9 +10544,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[322] +[NUMEL] Name = Numel -InternalName = NUMEL Type1 = FIRE Type2 = GROUND BaseStats = 60,60,40,35,65,45 @@ -10900,9 +10578,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CAMERUPT,Level,33 #------------------------------- -[323] +[CAMERUPT] Name = Camerupt -InternalName = CAMERUPT Type1 = FIRE Type2 = GROUND BaseStats = 70,100,70,40,105,75 @@ -10933,9 +10610,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[324] +[TORKOAL] Name = Torkoal -InternalName = TORKOAL Type1 = FIRE BaseStats = 70,85,140,20,85,70 GenderRate = Female50Percent @@ -10967,9 +10643,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[325] +[SPOINK] Name = Spoink -InternalName = SPOINK Type1 = PSYCHIC BaseStats = 60,25,35,60,70,80 GenderRate = Female50Percent @@ -11001,9 +10676,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GRUMPIG,Level,32 #------------------------------- -[326] +[GRUMPIG] Name = Grumpig -InternalName = GRUMPIG Type1 = PSYCHIC BaseStats = 80,45,65,80,90,110 GenderRate = Female50Percent @@ -11033,9 +10707,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[327] +[SPINDA] Name = Spinda -InternalName = SPINDA Type1 = NORMAL BaseStats = 60,60,60,60,60,60 GenderRate = Female50Percent @@ -11066,9 +10739,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[328] +[TRAPINCH] Name = Trapinch -InternalName = TRAPINCH Type1 = GROUND BaseStats = 45,100,45,10,45,45 GenderRate = Female50Percent @@ -11101,9 +10773,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VIBRAVA,Level,35 #------------------------------- -[329] +[VIBRAVA] Name = Vibrava -InternalName = VIBRAVA Type1 = GROUND Type2 = DRAGON BaseStats = 50,70,50,70,50,50 @@ -11134,9 +10805,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FLYGON,Level,45 #------------------------------- -[330] +[FLYGON] Name = Flygon -InternalName = FLYGON Type1 = GROUND Type2 = DRAGON BaseStats = 80,100,80,100,80,80 @@ -11166,9 +10836,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[331] +[CACNEA] Name = Cacnea -InternalName = CACNEA Type1 = GRASS BaseStats = 50,85,40,35,85,40 GenderRate = Female50Percent @@ -11201,9 +10870,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CACTURNE,Level,32 #------------------------------- -[332] +[CACTURNE] Name = Cacturne -InternalName = CACTURNE Type1 = GRASS Type2 = DARK BaseStats = 70,115,60,55,115,60 @@ -11235,9 +10903,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[333] +[SWABLU] Name = Swablu -InternalName = SWABLU Type1 = NORMAL Type2 = FLYING BaseStats = 45,40,60,50,40,75 @@ -11270,9 +10937,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = ALTARIA,Level,35 #------------------------------- -[334] +[ALTARIA] Name = Altaria -InternalName = ALTARIA Type1 = DRAGON Type2 = FLYING BaseStats = 75,70,90,80,70,105 @@ -11303,9 +10969,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[335] +[ZANGOOSE] Name = Zangoose -InternalName = ZANGOOSE Type1 = NORMAL BaseStats = 73,115,60,90,60,60 GenderRate = Female50Percent @@ -11337,9 +11002,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[336] +[SEVIPER] Name = Seviper -InternalName = SEVIPER Type1 = POISON BaseStats = 73,100,60,65,100,60 GenderRate = Female50Percent @@ -11371,9 +11035,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[337] +[LUNATONE] Name = Lunatone -InternalName = LUNATONE Type1 = ROCK Type2 = PSYCHIC BaseStats = 90,55,65,70,95,85 @@ -11405,9 +11068,8 @@ BattlerEnemyY = -1 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[338] +[SOLROCK] Name = Solrock -InternalName = SOLROCK Type1 = ROCK Type2 = PSYCHIC BaseStats = 90,95,85,70,55,65 @@ -11439,9 +11101,8 @@ BattlerEnemyY = -9 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[339] +[BARBOACH] Name = Barboach -InternalName = BARBOACH Type1 = WATER Type2 = GROUND BaseStats = 50,48,43,60,46,41 @@ -11474,9 +11135,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = WHISCASH,Level,30 #------------------------------- -[340] +[WHISCASH] Name = Whiscash -InternalName = WHISCASH Type1 = WATER Type2 = GROUND BaseStats = 110,78,73,60,76,71 @@ -11507,9 +11167,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[341] +[CORPHISH] Name = Corphish -InternalName = CORPHISH Type1 = WATER BaseStats = 43,80,65,35,50,35 GenderRate = Female50Percent @@ -11541,9 +11200,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CRAWDAUNT,Level,30 #------------------------------- -[342] +[CRAWDAUNT] Name = Crawdaunt -InternalName = CRAWDAUNT Type1 = WATER Type2 = DARK BaseStats = 63,120,85,55,90,55 @@ -11574,9 +11232,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[343] +[BALTOY] Name = Baltoy -InternalName = BALTOY Type1 = GROUND Type2 = PSYCHIC BaseStats = 40,40,55,55,40,70 @@ -11608,9 +11265,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = CLAYDOL,Level,36 #------------------------------- -[344] +[CLAYDOL] Name = Claydol -InternalName = CLAYDOL Type1 = GROUND Type2 = PSYCHIC BaseStats = 60,70,105,75,70,120 @@ -11641,9 +11297,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[345] +[LILEEP] Name = Lileep -InternalName = LILEEP Type1 = ROCK Type2 = GRASS BaseStats = 66,41,77,23,61,87 @@ -11677,9 +11332,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CRADILY,Level,40 #------------------------------- -[346] +[CRADILY] Name = Cradily -InternalName = CRADILY Type1 = ROCK Type2 = GRASS BaseStats = 86,81,97,43,81,107 @@ -11711,9 +11365,8 @@ BattlerEnemyY = 5 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[347] +[ANORITH] Name = Anorith -InternalName = ANORITH Type1 = ROCK Type2 = BUG BaseStats = 45,95,50,75,40,50 @@ -11746,9 +11399,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ARMALDO,Level,40 #------------------------------- -[348] +[ARMALDO] Name = Armaldo -InternalName = ARMALDO Type1 = ROCK Type2 = BUG BaseStats = 75,125,100,45,70,80 @@ -11779,9 +11431,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[349] +[FEEBAS] Name = Feebas -InternalName = FEEBAS Type1 = WATER BaseStats = 20,15,20,80,10,55 GenderRate = Female50Percent @@ -11813,9 +11464,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MILOTIC,Beauty,170,MILOTIC,TradeItem,PRISMSCALE #------------------------------- -[350] +[MILOTIC] Name = Milotic -InternalName = MILOTIC Type1 = WATER BaseStats = 95,60,79,81,100,125 GenderRate = Female50Percent @@ -11845,9 +11495,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[351] +[CASTFORM] Name = Castform -InternalName = CASTFORM Type1 = NORMAL BaseStats = 70,70,70,70,70,70 GenderRate = Female50Percent @@ -11881,9 +11530,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[352] +[KECLEON] Name = Kecleon -InternalName = KECLEON Type1 = NORMAL BaseStats = 60,90,70,40,60,120 GenderRate = Female50Percent @@ -11914,9 +11562,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[353] +[SHUPPET] Name = Shuppet -InternalName = SHUPPET Type1 = GHOST BaseStats = 44,75,35,45,63,33 GenderRate = Female50Percent @@ -11949,9 +11596,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BANETTE,Level,37 #------------------------------- -[354] +[BANETTE] Name = Banette -InternalName = BANETTE Type1 = GHOST BaseStats = 64,115,65,65,83,63 GenderRate = Female50Percent @@ -11982,9 +11628,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[355] +[DUSKULL] Name = Duskull -InternalName = DUSKULL Type1 = GHOST BaseStats = 20,40,90,25,30,90 GenderRate = Female50Percent @@ -12017,9 +11662,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DUSCLOPS,Level,37 #------------------------------- -[356] +[DUSCLOPS] Name = Dusclops -InternalName = DUSCLOPS Type1 = GHOST BaseStats = 40,70,130,25,60,130 GenderRate = Female50Percent @@ -12051,9 +11695,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = DUSKNOIR,TradeItem,REAPERCLOTH #------------------------------- -[357] +[TROPIUS] Name = Tropius -InternalName = TROPIUS Type1 = GRASS Type2 = FLYING BaseStats = 99,68,83,51,72,87 @@ -12085,9 +11728,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[358] +[CHIMECHO] Name = Chimecho -InternalName = CHIMECHO Type1 = PSYCHIC BaseStats = 75,50,80,65,95,90 GenderRate = Female50Percent @@ -12118,9 +11760,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[359] +[ABSOL] Name = Absol -InternalName = ABSOL Type1 = DARK BaseStats = 65,130,60,75,75,60 GenderRate = Female50Percent @@ -12151,9 +11792,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[360] +[WYNAUT] Name = Wynaut -InternalName = WYNAUT Type1 = PSYCHIC BaseStats = 95,23,48,23,23,48 GenderRate = Female50Percent @@ -12185,9 +11825,8 @@ BattlerShadowSize = 1 Evolutions = WOBBUFFET,Level,15 Incense = LAXINCENSE #------------------------------- -[361] +[SNORUNT] Name = Snorunt -InternalName = SNORUNT Type1 = ICE BaseStats = 50,50,50,50,50,50 GenderRate = Female50Percent @@ -12220,9 +11859,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GLALIE,Level,42,FROSLASS,ItemFemale,DAWNSTONE #------------------------------- -[362] +[GLALIE] Name = Glalie -InternalName = GLALIE Type1 = ICE BaseStats = 80,80,80,80,80,80 GenderRate = Female50Percent @@ -12252,9 +11890,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[363] +[SPHEAL] Name = Spheal -InternalName = SPHEAL Type1 = ICE Type2 = WATER BaseStats = 70,40,50,25,55,50 @@ -12287,9 +11924,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SEALEO,Level,32 #------------------------------- -[364] +[SEALEO] Name = Sealeo -InternalName = SEALEO Type1 = ICE Type2 = WATER BaseStats = 90,60,70,45,75,70 @@ -12321,9 +11957,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = WALREIN,Level,44 #------------------------------- -[365] +[WALREIN] Name = Walrein -InternalName = WALREIN Type1 = ICE Type2 = WATER BaseStats = 110,80,90,65,95,90 @@ -12354,9 +11989,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[366] +[CLAMPERL] Name = Clamperl -InternalName = CLAMPERL Type1 = WATER BaseStats = 35,64,85,32,74,55 GenderRate = Female50Percent @@ -12390,9 +12024,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HUNTAIL,TradeItem,DEEPSEATOOTH,GOREBYSS,TradeItem,DEEPSEASCALE #------------------------------- -[367] +[HUNTAIL] Name = Huntail -InternalName = HUNTAIL Type1 = WATER BaseStats = 55,104,105,52,94,75 GenderRate = Female50Percent @@ -12423,9 +12056,8 @@ BattlerEnemyY = -3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[368] +[GOREBYSS] Name = Gorebyss -InternalName = GOREBYSS Type1 = WATER BaseStats = 55,84,105,52,114,75 GenderRate = Female50Percent @@ -12456,9 +12088,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[369] +[RELICANTH] Name = Relicanth -InternalName = RELICANTH Type1 = WATER Type2 = ROCK BaseStats = 100,90,130,55,45,65 @@ -12491,9 +12122,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[370] +[LUVDISC] Name = Luvdisc -InternalName = LUVDISC Type1 = WATER BaseStats = 43,30,55,97,40,65 GenderRate = Female75Percent @@ -12525,9 +12155,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[371] +[BAGON] Name = Bagon -InternalName = BAGON Type1 = DRAGON BaseStats = 45,75,60,50,40,30 GenderRate = Female50Percent @@ -12560,9 +12189,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SHELGON,Level,30 #------------------------------- -[372] +[SHELGON] Name = Shelgon -InternalName = SHELGON Type1 = DRAGON BaseStats = 65,95,100,50,60,50 GenderRate = Female50Percent @@ -12594,9 +12222,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = SALAMENCE,Level,50 #------------------------------- -[373] +[SALAMENCE] Name = Salamence -InternalName = SALAMENCE Type1 = DRAGON Type2 = FLYING BaseStats = 95,135,80,100,110,80 @@ -12628,9 +12255,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[374] +[BELDUM] Name = Beldum -InternalName = BELDUM Type1 = STEEL Type2 = PSYCHIC BaseStats = 40,55,80,30,35,60 @@ -12663,9 +12289,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = METANG,Level,20 #------------------------------- -[375] +[METANG] Name = Metang -InternalName = METANG Type1 = STEEL Type2 = PSYCHIC BaseStats = 60,75,100,50,55,80 @@ -12698,9 +12323,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = METAGROSS,Level,45 #------------------------------- -[376] +[METAGROSS] Name = Metagross -InternalName = METAGROSS Type1 = STEEL Type2 = PSYCHIC BaseStats = 80,135,130,70,95,90 @@ -12732,9 +12356,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[377] +[REGIROCK] Name = Regirock -InternalName = REGIROCK Type1 = ROCK BaseStats = 80,100,200,50,50,100 GenderRate = Genderless @@ -12764,9 +12387,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[378] +[REGICE] Name = Regice -InternalName = REGICE Type1 = ICE BaseStats = 80,50,100,50,100,200 GenderRate = Genderless @@ -12796,9 +12418,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[379] +[REGISTEEL] Name = Registeel -InternalName = REGISTEEL Type1 = STEEL BaseStats = 80,75,150,50,75,150 GenderRate = Genderless @@ -12828,9 +12449,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[380] +[LATIAS] Name = Latias -InternalName = LATIAS Type1 = DRAGON Type2 = PSYCHIC BaseStats = 80,80,90,110,110,130 @@ -12860,9 +12480,8 @@ BattlerEnemyY = -9 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[381] +[LATIOS] Name = Latios -InternalName = LATIOS Type1 = DRAGON Type2 = PSYCHIC BaseStats = 80,90,80,110,130,110 @@ -12892,9 +12511,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[382] +[KYOGRE] Name = Kyogre -InternalName = KYOGRE Type1 = WATER BaseStats = 100,100,90,90,150,140 GenderRate = Genderless @@ -12923,9 +12541,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[383] +[GROUDON] Name = Groudon -InternalName = GROUDON Type1 = GROUND BaseStats = 100,150,140,90,100,90 GenderRate = Genderless @@ -12954,9 +12571,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[384] +[RAYQUAZA] Name = Rayquaza -InternalName = RAYQUAZA Type1 = DRAGON Type2 = FLYING BaseStats = 105,150,90,95,150,90 @@ -12986,9 +12602,8 @@ BattlerEnemyY = -3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[385] +[JIRACHI] Name = Jirachi -InternalName = JIRACHI Type1 = STEEL Type2 = PSYCHIC BaseStats = 100,100,100,100,100,100 @@ -13021,9 +12636,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[386] +[DEOXYS] Name = Deoxys -InternalName = DEOXYS Type1 = PSYCHIC BaseStats = 50,150,50,150,150,50 GenderRate = Genderless @@ -13053,9 +12667,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[387] +[TURTWIG] Name = Turtwig -InternalName = TURTWIG Type1 = GRASS BaseStats = 55,68,64,31,45,55 GenderRate = FemaleOneEighth @@ -13086,9 +12699,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GROTLE,Level,18 #------------------------------- -[388] +[GROTLE] Name = Grotle -InternalName = GROTLE Type1 = GRASS BaseStats = 75,89,85,36,55,65 GenderRate = FemaleOneEighth @@ -13118,9 +12730,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = TORTERRA,Level,32 #------------------------------- -[389] +[TORTERRA] Name = Torterra -InternalName = TORTERRA Type1 = GRASS Type2 = GROUND BaseStats = 95,109,105,56,75,85 @@ -13150,9 +12761,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[390] +[CHIMCHAR] Name = Chimchar -InternalName = CHIMCHAR Type1 = FIRE BaseStats = 44,58,44,61,58,44 GenderRate = FemaleOneEighth @@ -13183,9 +12793,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MONFERNO,Level,14 #------------------------------- -[391] +[MONFERNO] Name = Monferno -InternalName = MONFERNO Type1 = FIRE Type2 = FIGHTING BaseStats = 64,78,52,81,78,52 @@ -13216,9 +12825,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = INFERNAPE,Level,36 #------------------------------- -[392] +[INFERNAPE] Name = Infernape -InternalName = INFERNAPE Type1 = FIRE Type2 = FIGHTING BaseStats = 76,104,71,108,104,71 @@ -13248,9 +12856,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[393] +[PIPLUP] Name = Piplup -InternalName = PIPLUP Type1 = WATER BaseStats = 53,51,53,40,61,56 GenderRate = FemaleOneEighth @@ -13281,9 +12888,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PRINPLUP,Level,16 #------------------------------- -[394] +[PRINPLUP] Name = Prinplup -InternalName = PRINPLUP Type1 = WATER BaseStats = 64,66,68,50,81,76 GenderRate = FemaleOneEighth @@ -13313,9 +12919,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = EMPOLEON,Level,36 #------------------------------- -[395] +[EMPOLEON] Name = Empoleon -InternalName = EMPOLEON Type1 = WATER Type2 = STEEL BaseStats = 84,86,88,60,111,101 @@ -13345,9 +12950,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[396] +[STARLY] Name = Starly -InternalName = STARLY Type1 = NORMAL Type2 = FLYING BaseStats = 40,55,30,60,30,30 @@ -13379,9 +12983,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = STARAVIA,Level,14 #------------------------------- -[397] +[STARAVIA] Name = Staravia -InternalName = STARAVIA Type1 = NORMAL Type2 = FLYING BaseStats = 55,75,50,80,40,40 @@ -13412,9 +13015,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = STARAPTOR,Level,34 #------------------------------- -[398] +[STARAPTOR] Name = Staraptor -InternalName = STARAPTOR Type1 = NORMAL Type2 = FLYING BaseStats = 85,120,70,100,50,60 @@ -13444,9 +13046,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[399] +[BIDOOF] Name = Bidoof -InternalName = BIDOOF Type1 = NORMAL BaseStats = 59,45,40,31,35,40 GenderRate = Female50Percent @@ -13477,9 +13078,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BIBAREL,Level,15 #------------------------------- -[400] +[BIBAREL] Name = Bibarel -InternalName = BIBAREL Type1 = NORMAL Type2 = WATER BaseStats = 79,85,60,71,55,60 @@ -13509,9 +13109,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[401] +[KRICKETOT] Name = Kricketot -InternalName = KRICKETOT Type1 = BUG BaseStats = 37,25,41,25,25,41 GenderRate = Female50Percent @@ -13542,9 +13141,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = KRICKETUNE,Level,10 #------------------------------- -[402] +[KRICKETUNE] Name = Kricketune -InternalName = KRICKETUNE Type1 = BUG BaseStats = 77,85,51,65,55,51 GenderRate = Female50Percent @@ -13574,9 +13172,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[403] +[SHINX] Name = Shinx -InternalName = SHINX Type1 = ELECTRIC BaseStats = 45,65,34,45,40,34 GenderRate = Female50Percent @@ -13607,9 +13204,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LUXIO,Level,15 #------------------------------- -[404] +[LUXIO] Name = Luxio -InternalName = LUXIO Type1 = ELECTRIC BaseStats = 60,85,49,60,60,49 GenderRate = Female50Percent @@ -13639,9 +13235,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LUXRAY,Level,30 #------------------------------- -[405] +[LUXRAY] Name = Luxray -InternalName = LUXRAY Type1 = ELECTRIC BaseStats = 80,120,79,70,95,79 GenderRate = Female50Percent @@ -13670,9 +13265,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[406] +[BUDEW] Name = Budew -InternalName = BUDEW Type1 = GRASS Type2 = POISON BaseStats = 40,30,35,55,50,70 @@ -13706,9 +13300,8 @@ BattlerShadowSize = 1 Evolutions = ROSELIA,HappinessDay, Incense = ROSEINCENSE #------------------------------- -[407] +[ROSERADE] Name = Roserade -InternalName = ROSERADE Type1 = GRASS Type2 = POISON BaseStats = 60,70,65,90,125,105 @@ -13739,9 +13332,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[408] +[CRANIDOS] Name = Cranidos -InternalName = CRANIDOS Type1 = ROCK BaseStats = 67,125,40,58,30,30 GenderRate = FemaleOneEighth @@ -13772,9 +13364,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = RAMPARDOS,Level,30 #------------------------------- -[409] +[RAMPARDOS] Name = Rampardos -InternalName = RAMPARDOS Type1 = ROCK BaseStats = 97,165,60,58,65,50 GenderRate = FemaleOneEighth @@ -13803,9 +13394,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[410] +[SHIELDON] Name = Shieldon -InternalName = SHIELDON Type1 = ROCK Type2 = STEEL BaseStats = 30,42,118,30,42,88 @@ -13837,9 +13427,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BASTIODON,Level,30 #------------------------------- -[411] +[BASTIODON] Name = Bastiodon -InternalName = BASTIODON Type1 = ROCK Type2 = STEEL BaseStats = 60,52,168,30,47,138 @@ -13869,9 +13458,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[412] +[BURMY] Name = Burmy -InternalName = BURMY Type1 = BUG BaseStats = 40,29,45,36,29,45 GenderRate = Female50Percent @@ -13902,9 +13490,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = WORMADAM,LevelFemale,20,MOTHIM,LevelMale,20 #------------------------------- -[413] +[WORMADAM] Name = Wormadam -InternalName = WORMADAM Type1 = BUG Type2 = GRASS BaseStats = 60,59,85,36,79,105 @@ -13936,9 +13523,8 @@ BattlerEnemyY = 5 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[414] +[MOTHIM] Name = Mothim -InternalName = MOTHIM Type1 = BUG Type2 = FLYING BaseStats = 70,94,50,66,94,50 @@ -13969,9 +13555,8 @@ BattlerEnemyY = -1 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[415] +[COMBEE] Name = Combee -InternalName = COMBEE Type1 = BUG Type2 = FLYING BaseStats = 30,30,42,70,30,42 @@ -14003,9 +13588,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = VESPIQUEN,LevelFemale,21 #------------------------------- -[416] +[VESPIQUEN] Name = Vespiquen -InternalName = VESPIQUEN Type1 = BUG Type2 = FLYING BaseStats = 70,80,102,40,80,102 @@ -14036,9 +13620,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[417] +[PACHIRISU] Name = Pachirisu -InternalName = PACHIRISU Type1 = ELECTRIC BaseStats = 60,45,70,95,45,90 GenderRate = Female50Percent @@ -14068,9 +13651,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[418] +[BUIZEL] Name = Buizel -InternalName = BUIZEL Type1 = WATER BaseStats = 55,65,35,85,60,30 GenderRate = Female50Percent @@ -14101,9 +13683,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FLOATZEL,Level,26 #------------------------------- -[419] +[FLOATZEL] Name = Floatzel -InternalName = FLOATZEL Type1 = WATER BaseStats = 85,105,55,115,85,50 GenderRate = Female50Percent @@ -14132,9 +13713,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[420] +[CHERUBI] Name = Cherubi -InternalName = CHERUBI Type1 = GRASS BaseStats = 45,35,45,35,62,53 GenderRate = Female50Percent @@ -14165,9 +13745,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = CHERRIM,Level,25 #------------------------------- -[421] +[CHERRIM] Name = Cherrim -InternalName = CHERRIM Type1 = GRASS BaseStats = 70,60,70,85,87,78 GenderRate = Female50Percent @@ -14197,9 +13776,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[422] +[SHELLOS] Name = Shellos -InternalName = SHELLOS Type1 = WATER BaseStats = 76,48,48,34,57,62 GenderRate = Female50Percent @@ -14231,9 +13809,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GASTRODON,Level,30 #------------------------------- -[423] +[GASTRODON] Name = Gastrodon -InternalName = GASTRODON Type1 = WATER Type2 = GROUND BaseStats = 111,83,68,39,92,82 @@ -14264,9 +13841,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[424] +[AMBIPOM] Name = Ambipom -InternalName = AMBIPOM Type1 = NORMAL BaseStats = 75,100,66,115,60,66 GenderRate = Female50Percent @@ -14295,9 +13871,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[425] +[DRIFLOON] Name = Drifloon -InternalName = DRIFLOON Type1 = GHOST Type2 = FLYING BaseStats = 90,50,34,70,60,44 @@ -14329,9 +13904,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = DRIFBLIM,Level,28 #------------------------------- -[426] +[DRIFBLIM] Name = Drifblim -InternalName = DRIFBLIM Type1 = GHOST Type2 = FLYING BaseStats = 150,80,44,80,90,54 @@ -14361,9 +13935,8 @@ BattlerEnemyY = -6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[427] +[BUNEARY] Name = Buneary -InternalName = BUNEARY Type1 = NORMAL BaseStats = 55,66,44,85,44,56 GenderRate = Female50Percent @@ -14394,9 +13967,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LOPUNNY,Happiness, #------------------------------- -[428] +[LOPUNNY] Name = Lopunny -InternalName = LOPUNNY Type1 = NORMAL BaseStats = 65,76,84,105,54,96 GenderRate = Female50Percent @@ -14425,9 +13997,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[429] +[MISMAGIUS] Name = Mismagius -InternalName = MISMAGIUS Type1 = GHOST BaseStats = 60,60,60,105,105,105 GenderRate = Female50Percent @@ -14455,9 +14026,8 @@ BattlerEnemyY = -3 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[430] +[HONCHKROW] Name = Honchkrow -InternalName = HONCHKROW Type1 = DARK Type2 = FLYING BaseStats = 100,125,52,71,105,52 @@ -14487,9 +14057,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[431] +[GLAMEOW] Name = Glameow -InternalName = GLAMEOW Type1 = NORMAL BaseStats = 49,55,42,85,42,37 GenderRate = Female75Percent @@ -14520,9 +14089,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PURUGLY,Level,38 #------------------------------- -[432] +[PURUGLY] Name = Purugly -InternalName = PURUGLY Type1 = NORMAL BaseStats = 71,82,64,112,64,59 GenderRate = Female75Percent @@ -14551,9 +14119,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[433] +[CHINGLING] Name = Chingling -InternalName = CHINGLING Type1 = PSYCHIC BaseStats = 45,30,50,45,65,50 GenderRate = Female50Percent @@ -14585,9 +14152,8 @@ BattlerShadowSize = 1 Evolutions = CHIMECHO,HappinessNight, Incense = PUREINCENSE #------------------------------- -[434] +[STUNKY] Name = Stunky -InternalName = STUNKY Type1 = POISON Type2 = DARK BaseStats = 63,63,47,74,41,41 @@ -14619,9 +14185,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SKUNTANK,Level,34 #------------------------------- -[435] +[SKUNTANK] Name = Skuntank -InternalName = SKUNTANK Type1 = POISON Type2 = DARK BaseStats = 103,93,67,84,71,61 @@ -14651,9 +14216,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[436] +[BRONZOR] Name = Bronzor -InternalName = BRONZOR Type1 = STEEL Type2 = PSYCHIC BaseStats = 57,24,86,23,24,86 @@ -14685,9 +14249,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = BRONZONG,Level,33 #------------------------------- -[437] +[BRONZONG] Name = Bronzong -InternalName = BRONZONG Type1 = STEEL Type2 = PSYCHIC BaseStats = 67,89,116,33,79,116 @@ -14718,9 +14281,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[438] +[BONSLY] Name = Bonsly -InternalName = BONSLY Type1 = ROCK BaseStats = 50,80,95,10,10,45 GenderRate = Female50Percent @@ -14752,9 +14314,8 @@ BattlerShadowSize = 1 Evolutions = SUDOWOODO,HasMove,MIMIC Incense = ROCKINCENSE #------------------------------- -[439] +[MIMEJR] Name = Mime Jr. -InternalName = MIMEJR Type1 = PSYCHIC Type2 = FAIRY BaseStats = 20,25,45,60,70,90 @@ -14787,9 +14348,8 @@ BattlerShadowSize = 1 Evolutions = MRMIME,HasMove,MIMIC Incense = ODDINCENSE #------------------------------- -[440] +[HAPPINY] Name = Happiny -InternalName = HAPPINY Type1 = NORMAL BaseStats = 100,5,5,30,15,65 GenderRate = AlwaysFemale @@ -14822,9 +14382,8 @@ BattlerShadowSize = 1 Evolutions = CHANSEY,DayHoldItem,OVALSTONE Incense = LUCKINCENSE #------------------------------- -[441] +[CHATOT] Name = Chatot -InternalName = CHATOT Type1 = NORMAL Type2 = FLYING BaseStats = 76,65,45,91,92,42 @@ -14856,9 +14415,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[442] +[SPIRITOMB] Name = Spiritomb -InternalName = SPIRITOMB Type1 = GHOST Type2 = DARK BaseStats = 50,92,108,35,92,108 @@ -14889,9 +14447,8 @@ BattlerEnemyY = -2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[443] +[GIBLE] Name = Gible -InternalName = GIBLE Type1 = DRAGON Type2 = GROUND BaseStats = 58,70,45,42,40,45 @@ -14923,9 +14480,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GABITE,Level,24 #------------------------------- -[444] +[GABITE] Name = Gabite -InternalName = GABITE Type1 = DRAGON Type2 = GROUND BaseStats = 68,90,65,82,50,55 @@ -14956,9 +14512,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = GARCHOMP,Level,48 #------------------------------- -[445] +[GARCHOMP] Name = Garchomp -InternalName = GARCHOMP Type1 = DRAGON Type2 = GROUND BaseStats = 108,130,95,102,80,85 @@ -14988,9 +14543,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[446] +[MUNCHLAX] Name = Munchlax -InternalName = MUNCHLAX Type1 = NORMAL BaseStats = 135,85,40,5,40,85 GenderRate = FemaleOneEighth @@ -15025,9 +14579,8 @@ BattlerShadowSize = 2 Evolutions = SNORLAX,Happiness, Incense = FULLINCENSE #------------------------------- -[447] +[RIOLU] Name = Riolu -InternalName = RIOLU Type1 = FIGHTING BaseStats = 40,70,40,60,35,40 GenderRate = FemaleOneEighth @@ -15058,9 +14611,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LUCARIO,HappinessDay, #------------------------------- -[448] +[LUCARIO] Name = Lucario -InternalName = LUCARIO Type1 = FIGHTING Type2 = STEEL BaseStats = 70,110,70,90,115,70 @@ -15090,9 +14642,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[449] +[HIPPOPOTAS] Name = Hippopotas -InternalName = HIPPOPOTAS Type1 = GROUND BaseStats = 68,72,78,32,38,42 GenderRate = Female50Percent @@ -15123,9 +14674,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = HIPPOWDON,Level,34 #------------------------------- -[450] +[HIPPOWDON] Name = Hippowdon -InternalName = HIPPOWDON Type1 = GROUND BaseStats = 108,112,118,47,68,72 GenderRate = Female50Percent @@ -15154,9 +14704,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[451] +[SKORUPI] Name = Skorupi -InternalName = SKORUPI Type1 = POISON Type2 = BUG BaseStats = 40,50,90,65,30,55 @@ -15189,9 +14738,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DRAPION,Level,40 #------------------------------- -[452] +[DRAPION] Name = Drapion -InternalName = DRAPION Type1 = POISON Type2 = DARK BaseStats = 70,90,110,95,60,75 @@ -15222,9 +14770,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[453] +[CROAGUNK] Name = Croagunk -InternalName = CROAGUNK Type1 = POISON Type2 = FIGHTING BaseStats = 48,61,40,50,61,40 @@ -15257,9 +14804,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TOXICROAK,Level,37 #------------------------------- -[454] +[TOXICROAK] Name = Toxicroak -InternalName = TOXICROAK Type1 = POISON Type2 = FIGHTING BaseStats = 83,106,65,85,86,65 @@ -15290,9 +14836,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[455] +[CARNIVINE] Name = Carnivine -InternalName = CARNIVINE Type1 = GRASS BaseStats = 74,100,72,46,90,72 GenderRate = Female50Percent @@ -15321,9 +14866,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[456] +[FINNEON] Name = Finneon -InternalName = FINNEON Type1 = WATER BaseStats = 49,49,56,66,49,61 GenderRate = Female50Percent @@ -15354,9 +14898,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LUMINEON,Level,31 #------------------------------- -[457] +[LUMINEON] Name = Lumineon -InternalName = LUMINEON Type1 = WATER BaseStats = 69,69,76,91,69,86 GenderRate = Female50Percent @@ -15385,9 +14928,8 @@ BattlerEnemyY = -4 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[458] +[MANTYKE] Name = Mantyke -InternalName = MANTYKE Type1 = WATER Type2 = FLYING BaseStats = 45,20,50,50,60,120 @@ -15420,9 +14962,8 @@ BattlerShadowSize = 2 Evolutions = MANTINE,HasInParty,REMORAID Incense = WAVEINCENSE #------------------------------- -[459] +[SNOVER] Name = Snover -InternalName = SNOVER Type1 = GRASS Type2 = ICE BaseStats = 60,62,50,40,62,60 @@ -15455,9 +14996,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ABOMASNOW,Level,40 #------------------------------- -[460] +[ABOMASNOW] Name = Abomasnow -InternalName = ABOMASNOW Type1 = GRASS Type2 = ICE BaseStats = 90,92,75,60,92,85 @@ -15488,9 +15028,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[461] +[WEAVILE] Name = Weavile -InternalName = WEAVILE Type1 = DARK Type2 = ICE BaseStats = 70,120,65,125,45,85 @@ -15521,9 +15060,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[462] +[MAGNEZONE] Name = Magnezone -InternalName = MAGNEZONE Type1 = ELECTRIC Type2 = STEEL BaseStats = 70,70,115,60,130,90 @@ -15554,9 +15092,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[463] +[LICKILICKY] Name = Lickilicky -InternalName = LICKILICKY Type1 = NORMAL BaseStats = 110,85,95,50,80,95 GenderRate = Female50Percent @@ -15586,9 +15123,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[464] +[RHYPERIOR] Name = Rhyperior -InternalName = RHYPERIOR Type1 = GROUND Type2 = ROCK BaseStats = 115,140,130,40,55,55 @@ -15618,9 +15154,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[465] +[TANGROWTH] Name = Tangrowth -InternalName = TANGROWTH Type1 = GRASS BaseStats = 100,100,125,50,110,50 GenderRate = Female50Percent @@ -15649,9 +15184,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[466] +[ELECTIVIRE] Name = Electivire -InternalName = ELECTIVIRE Type1 = ELECTRIC BaseStats = 75,123,67,95,95,85 GenderRate = Female25Percent @@ -15681,9 +15215,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[467] +[MAGMORTAR] Name = Magmortar -InternalName = MAGMORTAR Type1 = FIRE BaseStats = 75,95,67,83,125,95 GenderRate = Female25Percent @@ -15713,9 +15246,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[468] +[TOGEKISS] Name = Togekiss -InternalName = TOGEKISS Type1 = FAIRY Type2 = FLYING BaseStats = 85,50,95,80,120,115 @@ -15745,9 +15277,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[469] +[YANMEGA] Name = Yanmega -InternalName = YANMEGA Type1 = BUG Type2 = FLYING BaseStats = 86,76,86,95,116,56 @@ -15778,9 +15309,8 @@ BattlerEnemyY = -1 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[470] +[LEAFEON] Name = Leafeon -InternalName = LEAFEON Type1 = GRASS BaseStats = 65,110,130,95,60,65 GenderRate = FemaleOneEighth @@ -15809,9 +15339,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[471] +[GLACEON] Name = Glaceon -InternalName = GLACEON Type1 = ICE BaseStats = 65,60,110,65,130,95 GenderRate = FemaleOneEighth @@ -15840,9 +15369,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[472] +[GLISCOR] Name = Gliscor -InternalName = GLISCOR Type1 = GROUND Type2 = FLYING BaseStats = 75,95,125,95,45,75 @@ -15872,9 +15400,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[473] +[MAMOSWINE] Name = Mamoswine -InternalName = MAMOSWINE Type1 = ICE Type2 = GROUND BaseStats = 110,130,80,80,70,60 @@ -15904,9 +15431,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[474] +[PORYGONZ] Name = Porygon-Z -InternalName = PORYGONZ Type1 = NORMAL BaseStats = 85,80,70,90,135,75 GenderRate = Genderless @@ -15935,9 +15461,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[475] +[GALLADE] Name = Gallade -InternalName = GALLADE Type1 = PSYCHIC Type2 = FIGHTING BaseStats = 68,125,65,80,65,115 @@ -15967,9 +15492,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[476] +[PROBOPASS] Name = Probopass -InternalName = PROBOPASS Type1 = ROCK Type2 = STEEL BaseStats = 60,55,145,40,75,150 @@ -16000,9 +15524,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[477] +[DUSKNOIR] Name = Dusknoir -InternalName = DUSKNOIR Type1 = GHOST BaseStats = 45,100,135,45,65,135 GenderRate = Female50Percent @@ -16032,9 +15555,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[478] +[FROSLASS] Name = Froslass -InternalName = FROSLASS Type1 = ICE Type2 = GHOST BaseStats = 70,80,70,110,80,70 @@ -16064,9 +15586,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[479] +[ROTOM] Name = Rotom -InternalName = ROTOM Type1 = ELECTRIC Type2 = GHOST BaseStats = 50,50,77,91,95,77 @@ -16096,9 +15617,8 @@ BattlerEnemyY = -1 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[480] +[UXIE] Name = Uxie -InternalName = UXIE Type1 = PSYCHIC BaseStats = 75,75,130,95,75,130 GenderRate = Genderless @@ -16126,9 +15646,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[481] +[MESPRIT] Name = Mesprit -InternalName = MESPRIT Type1 = PSYCHIC BaseStats = 80,105,105,80,105,105 GenderRate = Genderless @@ -16156,9 +15675,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[482] +[AZELF] Name = Azelf -InternalName = AZELF Type1 = PSYCHIC BaseStats = 75,125,70,115,125,70 GenderRate = Genderless @@ -16186,9 +15704,8 @@ BattlerEnemyY = 5 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[483] +[DIALGA] Name = Dialga -InternalName = DIALGA Type1 = STEEL Type2 = DRAGON BaseStats = 100,120,120,90,150,100 @@ -16218,9 +15735,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[484] +[PALKIA] Name = Palkia -InternalName = PALKIA Type1 = WATER Type2 = DRAGON BaseStats = 90,120,100,100,150,120 @@ -16250,9 +15766,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[485] +[HEATRAN] Name = Heatran -InternalName = HEATRAN Type1 = FIRE Type2 = STEEL BaseStats = 91,90,106,77,130,106 @@ -16282,9 +15797,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[486] +[REGIGIGAS] Name = Regigigas -InternalName = REGIGIGAS Type1 = NORMAL BaseStats = 110,160,110,100,80,110 GenderRate = Genderless @@ -16312,9 +15826,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[487] +[GIRATINA] Name = Giratina -InternalName = GIRATINA Type1 = GHOST Type2 = DRAGON BaseStats = 150,100,120,90,100,120 @@ -16345,9 +15858,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[488] +[CRESSELIA] Name = Cresselia -InternalName = CRESSELIA Type1 = PSYCHIC BaseStats = 120,70,120,85,75,130 GenderRate = AlwaysFemale @@ -16375,9 +15887,8 @@ BattlerEnemyY = -5 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[489] +[PHIONE] Name = Phione -InternalName = PHIONE Type1 = WATER BaseStats = 80,80,80,80,80,80 GenderRate = Genderless @@ -16405,9 +15916,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[490] +[MANAPHY] Name = Manaphy -InternalName = MANAPHY Type1 = WATER BaseStats = 100,100,100,100,100,100 GenderRate = Genderless @@ -16435,9 +15945,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[491] +[DARKRAI] Name = Darkrai -InternalName = DARKRAI Type1 = DARK BaseStats = 70,90,90,125,135,90 GenderRate = Genderless @@ -16465,9 +15974,8 @@ BattlerEnemyY = 1 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[492] +[SHAYMIN] Name = Shaymin -InternalName = SHAYMIN Type1 = GRASS BaseStats = 100,100,100,100,100,100 GenderRate = Genderless @@ -16499,9 +16007,8 @@ BattlerEnemyY = 26 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[493] +[ARCEUS] Name = Arceus -InternalName = ARCEUS Type1 = NORMAL BaseStats = 120,120,120,120,120,120 GenderRate = Genderless @@ -16530,9 +16037,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[494] +[VICTINI] Name = Victini -InternalName = VICTINI Type1 = PSYCHIC Type2 = FIRE BaseStats = 100,100,100,100,100,100 @@ -16561,9 +16067,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[495] +[SNIVY] Name = Snivy -InternalName = SNIVY Type1 = GRASS BaseStats = 45,45,55,63,45,55 GenderRate = FemaleOneEighth @@ -16594,9 +16099,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SERVINE,Level,17 #------------------------------- -[496] +[SERVINE] Name = Servine -InternalName = SERVINE Type1 = GRASS BaseStats = 60,60,75,83,60,75 GenderRate = FemaleOneEighth @@ -16626,9 +16130,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SERPERIOR,Level,36 #------------------------------- -[497] +[SERPERIOR] Name = Serperior -InternalName = SERPERIOR Type1 = GRASS BaseStats = 75,75,95,113,75,95 GenderRate = FemaleOneEighth @@ -16657,9 +16160,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[498] +[TEPIG] Name = Tepig -InternalName = TEPIG Type1 = FIRE BaseStats = 65,63,45,45,45,45 GenderRate = FemaleOneEighth @@ -16690,9 +16192,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PIGNITE,Level,17 #------------------------------- -[499] +[PIGNITE] Name = Pignite -InternalName = PIGNITE Type1 = FIRE Type2 = FIGHTING BaseStats = 90,93,55,55,70,55 @@ -16723,9 +16224,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = EMBOAR,Level,36 #------------------------------- -[500] +[EMBOAR] Name = Emboar -InternalName = EMBOAR Type1 = FIRE Type2 = FIGHTING BaseStats = 110,123,65,65,100,65 @@ -16755,9 +16255,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[501] +[OSHAWOTT] Name = Oshawott -InternalName = OSHAWOTT Type1 = WATER BaseStats = 55,55,45,45,63,45 GenderRate = FemaleOneEighth @@ -16788,9 +16287,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = DEWOTT,Level,17 #------------------------------- -[502] +[DEWOTT] Name = Dewott -InternalName = DEWOTT Type1 = WATER BaseStats = 75,75,60,60,83,60 GenderRate = FemaleOneEighth @@ -16820,9 +16318,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SAMUROTT,Level,36 #------------------------------- -[503] +[SAMUROTT] Name = Samurott -InternalName = SAMUROTT Type1 = WATER BaseStats = 95,100,85,70,108,70 GenderRate = FemaleOneEighth @@ -16851,9 +16348,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[504] +[PATRAT] Name = Patrat -InternalName = PATRAT Type1 = NORMAL BaseStats = 45,55,39,42,35,39 GenderRate = Female50Percent @@ -16884,9 +16380,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = WATCHOG,Level,20 #------------------------------- -[505] +[WATCHOG] Name = Watchog -InternalName = WATCHOG Type1 = NORMAL BaseStats = 60,85,69,77,60,69 GenderRate = Female50Percent @@ -16915,9 +16410,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[506] +[LILLIPUP] Name = Lillipup -InternalName = LILLIPUP Type1 = NORMAL BaseStats = 45,60,45,55,25,45 GenderRate = Female50Percent @@ -16948,9 +16442,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HERDIER,Level,16 #------------------------------- -[507] +[HERDIER] Name = Herdier -InternalName = HERDIER Type1 = NORMAL BaseStats = 65,80,65,60,35,65 GenderRate = Female50Percent @@ -16980,9 +16473,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = STOUTLAND,Level,32 #------------------------------- -[508] +[STOUTLAND] Name = Stoutland -InternalName = STOUTLAND Type1 = NORMAL BaseStats = 85,110,90,80,45,90 GenderRate = Female50Percent @@ -17011,9 +16503,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[509] +[PURRLOIN] Name = Purrloin -InternalName = PURRLOIN Type1 = DARK BaseStats = 41,50,37,66,50,37 GenderRate = Female50Percent @@ -17044,9 +16535,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LIEPARD,Level,20 #------------------------------- -[510] +[LIEPARD] Name = Liepard -InternalName = LIEPARD Type1 = DARK BaseStats = 64,88,50,106,88,50 GenderRate = Female50Percent @@ -17075,9 +16565,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[511] +[PANSAGE] Name = Pansage -InternalName = PANSAGE Type1 = GRASS BaseStats = 50,53,48,64,53,48 GenderRate = FemaleOneEighth @@ -17108,9 +16597,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SIMISAGE,Item,LEAFSTONE #------------------------------- -[512] +[SIMISAGE] Name = Simisage -InternalName = SIMISAGE Type1 = GRASS BaseStats = 75,98,63,101,98,63 GenderRate = FemaleOneEighth @@ -17139,9 +16627,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[513] +[PANSEAR] Name = Pansear -InternalName = PANSEAR Type1 = FIRE BaseStats = 50,53,48,64,53,48 GenderRate = FemaleOneEighth @@ -17172,9 +16659,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SIMISEAR,Item,FIRESTONE #------------------------------- -[514] +[SIMISEAR] Name = Simisear -InternalName = SIMISEAR Type1 = FIRE BaseStats = 75,98,63,101,98,63 GenderRate = FemaleOneEighth @@ -17203,9 +16689,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[515] +[PANPOUR] Name = Panpour -InternalName = PANPOUR Type1 = WATER BaseStats = 50,53,48,64,53,48 GenderRate = FemaleOneEighth @@ -17236,9 +16721,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SIMIPOUR,Item,WATERSTONE #------------------------------- -[516] +[SIMIPOUR] Name = Simipour -InternalName = SIMIPOUR Type1 = WATER BaseStats = 75,98,63,101,98,63 GenderRate = FemaleOneEighth @@ -17267,9 +16751,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[517] +[MUNNA] Name = Munna -InternalName = MUNNA Type1 = PSYCHIC BaseStats = 76,25,45,24,67,55 GenderRate = Female50Percent @@ -17300,9 +16783,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = MUSHARNA,Item,MOONSTONE #------------------------------- -[518] +[MUSHARNA] Name = Musharna -InternalName = MUSHARNA Type1 = PSYCHIC BaseStats = 116,55,85,29,107,95 GenderRate = Female50Percent @@ -17331,9 +16813,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[519] +[PIDOVE] Name = Pidove -InternalName = PIDOVE Type1 = NORMAL Type2 = FLYING BaseStats = 50,55,50,43,36,30 @@ -17365,9 +16846,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = TRANQUILL,Level,21 #------------------------------- -[520] +[TRANQUILL] Name = Tranquill -InternalName = TRANQUILL Type1 = NORMAL Type2 = FLYING BaseStats = 62,77,62,65,50,42 @@ -17398,9 +16878,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = UNFEZANT,Level,32 #------------------------------- -[521] +[UNFEZANT] Name = Unfezant -InternalName = UNFEZANT Type1 = NORMAL Type2 = FLYING BaseStats = 80,115,80,93,65,55 @@ -17430,9 +16909,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[522] +[BLITZLE] Name = Blitzle -InternalName = BLITZLE Type1 = ELECTRIC BaseStats = 45,60,32,76,50,32 GenderRate = Female50Percent @@ -17463,9 +16941,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ZEBSTRIKA,Level,27 #------------------------------- -[523] +[ZEBSTRIKA] Name = Zebstrika -InternalName = ZEBSTRIKA Type1 = ELECTRIC BaseStats = 75,100,63,116,80,63 GenderRate = Female50Percent @@ -17494,9 +16971,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[524] +[ROGGENROLA] Name = Roggenrola -InternalName = ROGGENROLA Type1 = ROCK BaseStats = 55,75,85,15,25,25 GenderRate = Female50Percent @@ -17529,9 +17005,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = BOLDORE,Level,25 #------------------------------- -[525] +[BOLDORE] Name = Boldore -InternalName = BOLDORE Type1 = ROCK BaseStats = 70,105,105,20,50,40 GenderRate = Female50Percent @@ -17563,9 +17038,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = GIGALITH,Trade, #------------------------------- -[526] +[GIGALITH] Name = Gigalith -InternalName = GIGALITH Type1 = ROCK BaseStats = 85,135,130,25,60,80 GenderRate = Female50Percent @@ -17596,9 +17070,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[527] +[WOOBAT] Name = Woobat -InternalName = WOOBAT Type1 = PSYCHIC Type2 = FLYING BaseStats = 65,45,43,72,55,43 @@ -17630,9 +17103,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SWOOBAT,Happiness, #------------------------------- -[528] +[SWOOBAT] Name = Swoobat -InternalName = SWOOBAT Type1 = PSYCHIC Type2 = FLYING BaseStats = 67,57,55,114,77,55 @@ -17662,9 +17134,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[529] +[DRILBUR] Name = Drilbur -InternalName = DRILBUR Type1 = GROUND BaseStats = 60,85,40,68,30,45 GenderRate = Female50Percent @@ -17695,9 +17166,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = EXCADRILL,Level,31 #------------------------------- -[530] +[EXCADRILL] Name = Excadrill -InternalName = EXCADRILL Type1 = GROUND Type2 = STEEL BaseStats = 110,135,60,88,50,65 @@ -17727,9 +17197,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[531] +[AUDINO] Name = Audino -InternalName = AUDINO Type1 = NORMAL BaseStats = 103,60,86,50,60,86 GenderRate = Female50Percent @@ -17761,9 +17230,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[532] +[TIMBURR] Name = Timburr -InternalName = TIMBURR Type1 = FIGHTING BaseStats = 75,80,55,35,25,35 GenderRate = Female25Percent @@ -17794,9 +17262,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GURDURR,Level,25 #------------------------------- -[533] +[GURDURR] Name = Gurdurr -InternalName = GURDURR Type1 = FIGHTING BaseStats = 85,105,85,40,40,50 GenderRate = Female25Percent @@ -17826,9 +17293,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CONKELDURR,Trade, #------------------------------- -[534] +[CONKELDURR] Name = Conkeldurr -InternalName = CONKELDURR Type1 = FIGHTING BaseStats = 105,140,95,45,55,65 GenderRate = Female25Percent @@ -17857,9 +17323,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[535] +[TYMPOLE] Name = Tympole -InternalName = TYMPOLE Type1 = WATER BaseStats = 50,50,40,64,50,40 GenderRate = Female50Percent @@ -17890,9 +17355,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = PALPITOAD,Level,25 #------------------------------- -[536] +[PALPITOAD] Name = Palpitoad -InternalName = PALPITOAD Type1 = WATER Type2 = GROUND BaseStats = 75,65,55,69,65,55 @@ -17923,9 +17387,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SEISMITOAD,Level,36 #------------------------------- -[537] +[SEISMITOAD] Name = Seismitoad -InternalName = SEISMITOAD Type1 = WATER Type2 = GROUND BaseStats = 105,95,75,74,85,75 @@ -17955,9 +17418,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[538] +[THROH] Name = Throh -InternalName = THROH Type1 = FIGHTING BaseStats = 120,100,85,45,30,85 GenderRate = AlwaysMale @@ -17987,9 +17449,8 @@ BattlerEnemyY = 25 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[539] +[SAWK] Name = Sawk -InternalName = SAWK Type1 = FIGHTING BaseStats = 75,125,75,85,30,75 GenderRate = AlwaysMale @@ -18019,9 +17480,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[540] +[SEWADDLE] Name = Sewaddle -InternalName = SEWADDLE Type1 = BUG Type2 = GRASS BaseStats = 45,53,70,42,40,60 @@ -18054,9 +17514,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SWADLOON,Level,20 #------------------------------- -[541] +[SWADLOON] Name = Swadloon -InternalName = SWADLOON Type1 = BUG Type2 = GRASS BaseStats = 55,63,90,42,50,80 @@ -18088,9 +17547,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LEAVANNY,Happiness, #------------------------------- -[542] +[LEAVANNY] Name = Leavanny -InternalName = LEAVANNY Type1 = BUG Type2 = GRASS BaseStats = 75,103,80,92,70,80 @@ -18121,9 +17579,8 @@ BattlerEnemyY = 7 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[543] +[VENIPEDE] Name = Venipede -InternalName = VENIPEDE Type1 = BUG Type2 = POISON BaseStats = 30,45,59,57,30,39 @@ -18156,9 +17613,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = WHIRLIPEDE,Level,22 #------------------------------- -[544] +[WHIRLIPEDE] Name = Whirlipede -InternalName = WHIRLIPEDE Type1 = BUG Type2 = POISON BaseStats = 40,55,99,47,40,79 @@ -18190,9 +17646,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SCOLIPEDE,Level,30 #------------------------------- -[545] +[SCOLIPEDE] Name = Scolipede -InternalName = SCOLIPEDE Type1 = BUG Type2 = POISON BaseStats = 60,100,89,112,55,69 @@ -18223,9 +17678,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[546] +[COTTONEE] Name = Cottonee -InternalName = COTTONEE Type1 = GRASS Type2 = FAIRY BaseStats = 40,27,60,66,37,50 @@ -18258,9 +17712,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = WHIMSICOTT,Item,SUNSTONE #------------------------------- -[547] +[WHIMSICOTT] Name = Whimsicott -InternalName = WHIMSICOTT Type1 = GRASS Type2 = FAIRY BaseStats = 60,67,85,116,77,75 @@ -18291,9 +17744,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[548] +[PETILIL] Name = Petilil -InternalName = PETILIL Type1 = GRASS BaseStats = 45,35,50,30,70,50 GenderRate = AlwaysFemale @@ -18325,9 +17777,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LILLIGANT,Item,SUNSTONE #------------------------------- -[549] +[LILLIGANT] Name = Lilligant -InternalName = LILLIGANT Type1 = GRASS BaseStats = 70,60,75,90,110,75 GenderRate = AlwaysFemale @@ -18357,9 +17808,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[550] +[BASCULIN] Name = Basculin -InternalName = BASCULIN Type1 = WATER BaseStats = 70,92,65,98,80,55 GenderRate = Female50Percent @@ -18391,9 +17841,8 @@ BattlerEnemyY = 24 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[551] +[SANDILE] Name = Sandile -InternalName = SANDILE Type1 = GROUND Type2 = DARK BaseStats = 50,72,35,65,35,35 @@ -18426,9 +17875,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = KROKOROK,Level,29 #------------------------------- -[552] +[KROKOROK] Name = Krokorok -InternalName = KROKOROK Type1 = GROUND Type2 = DARK BaseStats = 60,82,45,74,45,45 @@ -18460,9 +17908,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = KROOKODILE,Level,40 #------------------------------- -[553] +[KROOKODILE] Name = Krookodile -InternalName = KROOKODILE Type1 = GROUND Type2 = DARK BaseStats = 95,117,80,92,65,70 @@ -18493,9 +17940,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[554] +[DARUMAKA] Name = Darumaka -InternalName = DARUMAKA Type1 = FIRE BaseStats = 70,90,45,50,15,45 GenderRate = Female50Percent @@ -18526,9 +17972,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DARMANITAN,Level,35 #------------------------------- -[555] +[DARMANITAN] Name = Darmanitan -InternalName = DARMANITAN Type1 = FIRE BaseStats = 105,140,55,95,30,55 GenderRate = Female50Percent @@ -18558,9 +18003,8 @@ BattlerEnemyY = 26 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[556] +[MARACTUS] Name = Maractus -InternalName = MARACTUS Type1 = GRASS BaseStats = 75,86,67,60,106,67 GenderRate = Female50Percent @@ -18591,9 +18035,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[557] +[DWEBBLE] Name = Dwebble -InternalName = DWEBBLE Type1 = BUG Type2 = ROCK BaseStats = 50,65,85,55,35,35 @@ -18626,9 +18069,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CRUSTLE,Level,34 #------------------------------- -[558] +[CRUSTLE] Name = Crustle -InternalName = CRUSTLE Type1 = BUG Type2 = ROCK BaseStats = 70,105,125,45,65,75 @@ -18659,9 +18101,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[559] +[SCRAGGY] Name = Scraggy -InternalName = SCRAGGY Type1 = DARK Type2 = FIGHTING BaseStats = 50,75,70,48,35,70 @@ -18694,9 +18135,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SCRAFTY,Level,39 #------------------------------- -[560] +[SCRAFTY] Name = Scrafty -InternalName = SCRAFTY Type1 = DARK Type2 = FIGHTING BaseStats = 65,90,115,58,45,115 @@ -18727,9 +18167,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[561] +[SIGILYPH] Name = Sigilyph -InternalName = SIGILYPH Type1 = PSYCHIC Type2 = FLYING BaseStats = 72,58,80,97,103,80 @@ -18760,9 +18199,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[562] +[YAMASK] Name = Yamask -InternalName = YAMASK Type1 = GHOST BaseStats = 38,30,85,30,55,65 GenderRate = Female50Percent @@ -18793,9 +18231,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = COFAGRIGUS,Level,34 #------------------------------- -[563] +[COFAGRIGUS] Name = Cofagrigus -InternalName = COFAGRIGUS Type1 = GHOST BaseStats = 58,50,145,30,95,105 GenderRate = Female50Percent @@ -18824,9 +18261,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[564] +[TIRTOUGA] Name = Tirtouga -InternalName = TIRTOUGA Type1 = WATER Type2 = ROCK BaseStats = 54,78,103,22,53,45 @@ -18858,9 +18294,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CARRACOSTA,Level,37 #------------------------------- -[565] +[CARRACOSTA] Name = Carracosta -InternalName = CARRACOSTA Type1 = WATER Type2 = ROCK BaseStats = 74,108,133,32,83,65 @@ -18890,9 +18325,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[566] +[ARCHEN] Name = Archen -InternalName = ARCHEN Type1 = ROCK Type2 = FLYING BaseStats = 55,112,45,70,74,45 @@ -18923,9 +18357,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = ARCHEOPS,Level,37 #------------------------------- -[567] +[ARCHEOPS] Name = Archeops -InternalName = ARCHEOPS Type1 = ROCK Type2 = FLYING BaseStats = 75,140,65,110,112,65 @@ -18954,9 +18387,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[568] +[TRUBBISH] Name = Trubbish -InternalName = TRUBBISH Type1 = POISON BaseStats = 50,50,62,65,40,62 GenderRate = Female50Percent @@ -18988,9 +18420,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GARBODOR,Level,36 #------------------------------- -[569] +[GARBODOR] Name = Garbodor -InternalName = GARBODOR Type1 = POISON BaseStats = 80,95,82,75,60,82 GenderRate = Female50Percent @@ -19021,9 +18452,8 @@ BattlerEnemyY = 16 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[570] +[ZORUA] Name = Zorua -InternalName = ZORUA Type1 = DARK BaseStats = 40,65,40,65,80,40 GenderRate = FemaleOneEighth @@ -19053,9 +18483,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ZOROARK,Level,30 #------------------------------- -[571] +[ZOROARK] Name = Zoroark -InternalName = ZOROARK Type1 = DARK BaseStats = 60,105,60,105,120,60 GenderRate = FemaleOneEighth @@ -19083,9 +18512,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[572] +[MINCCINO] Name = Minccino -InternalName = MINCCINO Type1 = NORMAL BaseStats = 55,50,40,75,40,40 GenderRate = Female75Percent @@ -19116,9 +18544,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CINCCINO,Item,SHINYSTONE #------------------------------- -[573] +[CINCCINO] Name = Cinccino -InternalName = CINCCINO Type1 = NORMAL BaseStats = 75,95,60,115,65,60 GenderRate = Female75Percent @@ -19147,9 +18574,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[574] +[GOTHITA] Name = Gothita -InternalName = GOTHITA Type1 = PSYCHIC BaseStats = 45,30,50,45,55,65 GenderRate = Female75Percent @@ -19180,9 +18606,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GOTHORITA,Level,32 #------------------------------- -[575] +[GOTHORITA] Name = Gothorita -InternalName = GOTHORITA Type1 = PSYCHIC BaseStats = 60,45,70,55,75,85 GenderRate = Female75Percent @@ -19212,9 +18637,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = GOTHITELLE,Level,41 #------------------------------- -[576] +[GOTHITELLE] Name = Gothitelle -InternalName = GOTHITELLE Type1 = PSYCHIC BaseStats = 70,55,95,65,95,110 GenderRate = Female75Percent @@ -19243,9 +18667,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[577] +[SOLOSIS] Name = Solosis -InternalName = SOLOSIS Type1 = PSYCHIC BaseStats = 45,30,40,20,105,50 GenderRate = Female50Percent @@ -19276,9 +18699,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = DUOSION,Level,32 #------------------------------- -[578] +[DUOSION] Name = Duosion -InternalName = DUOSION Type1 = PSYCHIC BaseStats = 65,40,50,30,125,60 GenderRate = Female50Percent @@ -19308,9 +18730,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = REUNICLUS,Level,41 #------------------------------- -[579] +[REUNICLUS] Name = Reuniclus -InternalName = REUNICLUS Type1 = PSYCHIC BaseStats = 110,65,75,30,125,85 GenderRate = Female50Percent @@ -19339,9 +18760,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[580] +[DUCKLETT] Name = Ducklett -InternalName = DUCKLETT Type1 = WATER Type2 = FLYING BaseStats = 62,44,50,55,44,50 @@ -19373,9 +18793,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SWANNA,Level,35 #------------------------------- -[581] +[SWANNA] Name = Swanna -InternalName = SWANNA Type1 = WATER Type2 = FLYING BaseStats = 75,87,63,98,87,63 @@ -19405,9 +18824,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[582] +[VANILLITE] Name = Vanillite -InternalName = VANILLITE Type1 = ICE BaseStats = 36,50,50,44,65,60 GenderRate = Female50Percent @@ -19439,9 +18857,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = VANILLISH,Level,35 #------------------------------- -[583] +[VANILLISH] Name = Vanillish -InternalName = VANILLISH Type1 = ICE BaseStats = 51,65,65,59,80,75 GenderRate = Female50Percent @@ -19472,9 +18889,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VANILLUXE,Level,47 #------------------------------- -[584] +[VANILLUXE] Name = Vanilluxe -InternalName = VANILLUXE Type1 = ICE BaseStats = 71,95,85,79,110,95 GenderRate = Female50Percent @@ -19504,9 +18920,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[585] +[DEERLING] Name = Deerling -InternalName = DEERLING Type1 = NORMAL Type2 = GRASS BaseStats = 60,60,50,75,40,50 @@ -19539,9 +18954,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = SAWSBUCK,Level,34 #------------------------------- -[586] +[SAWSBUCK] Name = Sawsbuck -InternalName = SAWSBUCK Type1 = NORMAL Type2 = GRASS BaseStats = 80,100,70,95,60,70 @@ -19572,9 +18986,8 @@ BattlerEnemyY = 13 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[587] +[EMOLGA] Name = Emolga -InternalName = EMOLGA Type1 = ELECTRIC Type2 = FLYING BaseStats = 55,75,60,103,75,60 @@ -19605,9 +19018,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[588] +[KARRABLAST] Name = Karrablast -InternalName = KARRABLAST Type1 = BUG BaseStats = 50,75,45,60,40,45 GenderRate = Female50Percent @@ -19638,9 +19050,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = ESCAVALIER,TradeSpecies,SHELMET #------------------------------- -[589] +[ESCAVALIER] Name = Escavalier -InternalName = ESCAVALIER Type1 = BUG Type2 = STEEL BaseStats = 70,135,105,20,60,105 @@ -19670,9 +19081,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[590] +[FOONGUS] Name = Foongus -InternalName = FOONGUS Type1 = GRASS Type2 = POISON BaseStats = 69,55,45,15,55,55 @@ -19706,9 +19116,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = AMOONGUSS,Level,39 #------------------------------- -[591] +[AMOONGUSS] Name = Amoonguss -InternalName = AMOONGUSS Type1 = GRASS Type2 = POISON BaseStats = 114,85,70,30,85,80 @@ -19740,9 +19149,8 @@ BattlerEnemyY = 28 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[592] +[FRILLISH] Name = Frillish -InternalName = FRILLISH Type1 = WATER Type2 = GHOST BaseStats = 55,40,50,40,65,85 @@ -19774,9 +19182,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = JELLICENT,Level,40 #------------------------------- -[593] +[JELLICENT] Name = Jellicent -InternalName = JELLICENT Type1 = WATER Type2 = GHOST BaseStats = 100,60,70,60,85,105 @@ -19806,9 +19213,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[594] +[ALOMOMOLA] Name = Alomomola -InternalName = ALOMOMOLA Type1 = WATER BaseStats = 165,75,80,65,40,45 GenderRate = Female50Percent @@ -19838,9 +19244,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[595] +[JOLTIK] Name = Joltik -InternalName = JOLTIK Type1 = BUG Type2 = ELECTRIC BaseStats = 50,47,50,65,57,50 @@ -19872,9 +19277,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GALVANTULA,Level,36 #------------------------------- -[596] +[GALVANTULA] Name = Galvantula -InternalName = GALVANTULA Type1 = BUG Type2 = ELECTRIC BaseStats = 70,77,60,108,97,60 @@ -19904,9 +19308,8 @@ BattlerEnemyY = 32 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[597] +[FERROSEED] Name = Ferroseed -InternalName = FERROSEED Type1 = GRASS Type2 = STEEL BaseStats = 44,50,91,10,24,86 @@ -19938,9 +19341,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = FERROTHORN,Level,40 #------------------------------- -[598] +[FERROTHORN] Name = Ferrothorn -InternalName = FERROTHORN Type1 = GRASS Type2 = STEEL BaseStats = 74,94,131,20,54,116 @@ -19971,9 +19373,8 @@ BattlerEnemyY = 19 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[599] +[KLINK] Name = Klink -InternalName = KLINK Type1 = STEEL BaseStats = 40,55,70,30,45,60 GenderRate = Genderless @@ -20003,9 +19404,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = KLANG,Level,38 #------------------------------- -[600] +[KLANG] Name = Klang -InternalName = KLANG Type1 = STEEL BaseStats = 60,80,95,50,70,85 GenderRate = Genderless @@ -20035,9 +19435,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = KLINKLANG,Level,49 #------------------------------- -[601] +[KLINKLANG] Name = Klinklang -InternalName = KLINKLANG Type1 = STEEL BaseStats = 60,100,115,90,70,85 GenderRate = Genderless @@ -20066,9 +19465,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[602] +[TYNAMO] Name = Tynamo -InternalName = TYNAMO Type1 = ELECTRIC BaseStats = 35,55,40,60,45,40 GenderRate = Female50Percent @@ -20097,9 +19495,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = EELEKTRIK,Level,39 #------------------------------- -[603] +[EELEKTRIK] Name = Eelektrik -InternalName = EELEKTRIK Type1 = ELECTRIC BaseStats = 65,85,70,40,75,70 GenderRate = Female50Percent @@ -20128,9 +19525,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = EELEKTROSS,Item,THUNDERSTONE #------------------------------- -[604] +[EELEKTROSS] Name = Eelektross -InternalName = EELEKTROSS Type1 = ELECTRIC BaseStats = 85,115,80,50,105,80 GenderRate = Female50Percent @@ -20158,9 +19554,8 @@ BattlerEnemyY = 20 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[605] +[ELGYEM] Name = Elgyem -InternalName = ELGYEM Type1 = PSYCHIC BaseStats = 55,55,55,30,85,55 GenderRate = Female50Percent @@ -20191,9 +19586,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BEHEEYEM,Level,42 #------------------------------- -[606] +[BEHEEYEM] Name = Beheeyem -InternalName = BEHEEYEM Type1 = PSYCHIC BaseStats = 75,75,75,40,125,95 GenderRate = Female50Percent @@ -20222,9 +19616,8 @@ BattlerEnemyY = 17 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[607] +[LITWICK] Name = Litwick -InternalName = LITWICK Type1 = GHOST Type2 = FIRE BaseStats = 50,30,55,20,65,55 @@ -20256,9 +19649,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = LAMPENT,Level,41 #------------------------------- -[608] +[LAMPENT] Name = Lampent -InternalName = LAMPENT Type1 = GHOST Type2 = FIRE BaseStats = 60,40,60,55,95,60 @@ -20289,9 +19681,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = CHANDELURE,Item,DUSKSTONE #------------------------------- -[609] +[CHANDELURE] Name = Chandelure -InternalName = CHANDELURE Type1 = GHOST Type2 = FIRE BaseStats = 60,55,90,80,145,90 @@ -20321,9 +19712,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[610] +[AXEW] Name = Axew -InternalName = AXEW Type1 = DRAGON BaseStats = 46,87,60,57,30,40 GenderRate = Female50Percent @@ -20354,9 +19744,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FRAXURE,Level,38 #------------------------------- -[611] +[FRAXURE] Name = Fraxure -InternalName = FRAXURE Type1 = DRAGON BaseStats = 66,117,70,67,40,50 GenderRate = Female50Percent @@ -20386,9 +19775,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = HAXORUS,Level,48 #------------------------------- -[612] +[HAXORUS] Name = Haxorus -InternalName = HAXORUS Type1 = DRAGON BaseStats = 76,147,90,97,60,70 GenderRate = Female50Percent @@ -20417,9 +19805,8 @@ BattlerEnemyY = 9 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[613] +[CUBCHOO] Name = Cubchoo -InternalName = CUBCHOO Type1 = ICE BaseStats = 55,70,40,40,60,40 GenderRate = Female50Percent @@ -20450,9 +19837,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = BEARTIC,Level,37 #------------------------------- -[614] +[BEARTIC] Name = Beartic -InternalName = BEARTIC Type1 = ICE BaseStats = 95,130,80,50,70,80 GenderRate = Female50Percent @@ -20481,9 +19867,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[615] +[CRYOGONAL] Name = Cryogonal -InternalName = CRYOGONAL Type1 = ICE BaseStats = 80,50,50,105,95,135 GenderRate = Genderless @@ -20512,9 +19897,8 @@ BattlerEnemyY = 8 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[616] +[SHELMET] Name = Shelmet -InternalName = SHELMET Type1 = BUG BaseStats = 50,40,85,25,40,65 GenderRate = Female50Percent @@ -20545,9 +19929,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ACCELGOR,TradeSpecies,KARRABLAST #------------------------------- -[617] +[ACCELGOR] Name = Accelgor -InternalName = ACCELGOR Type1 = BUG BaseStats = 80,70,40,145,100,60 GenderRate = Female50Percent @@ -20576,9 +19959,8 @@ BattlerEnemyY = 25 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[618] +[STUNFISK] Name = Stunfisk -InternalName = STUNFISK Type1 = GROUND Type2 = ELECTRIC BaseStats = 109,66,84,32,81,99 @@ -20610,9 +19992,8 @@ BattlerEnemyY = 29 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[619] +[MIENFOO] Name = Mienfoo -InternalName = MIENFOO Type1 = FIGHTING BaseStats = 45,85,50,65,55,50 GenderRate = Female50Percent @@ -20643,9 +20024,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MIENSHAO,Level,50 #------------------------------- -[620] +[MIENSHAO] Name = Mienshao -InternalName = MIENSHAO Type1 = FIGHTING BaseStats = 65,125,60,105,95,60 GenderRate = Female50Percent @@ -20674,9 +20054,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[621] +[DRUDDIGON] Name = Druddigon -InternalName = DRUDDIGON Type1 = DRAGON BaseStats = 77,120,90,48,60,90 GenderRate = Female50Percent @@ -20707,9 +20086,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[622] +[GOLETT] Name = Golett -InternalName = GOLETT Type1 = GROUND Type2 = GHOST BaseStats = 59,74,50,35,35,50 @@ -20741,9 +20119,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOLURK,Level,43 #------------------------------- -[623] +[GOLURK] Name = Golurk -InternalName = GOLURK Type1 = GROUND Type2 = GHOST BaseStats = 89,124,80,55,55,80 @@ -20774,9 +20151,8 @@ BattlerEnemyY = 10 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[624] +[PAWNIARD] Name = Pawniard -InternalName = PAWNIARD Type1 = DARK Type2 = STEEL BaseStats = 45,85,70,60,40,40 @@ -20808,9 +20184,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BISHARP,Level,52 #------------------------------- -[625] +[BISHARP] Name = Bisharp -InternalName = BISHARP Type1 = DARK Type2 = STEEL BaseStats = 65,125,100,70,60,70 @@ -20840,9 +20215,8 @@ BattlerEnemyY = 15 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[626] +[BOUFFALANT] Name = Bouffalant -InternalName = BOUFFALANT Type1 = NORMAL BaseStats = 95,110,95,55,40,95 GenderRate = Female50Percent @@ -20872,9 +20246,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[627] +[RUFFLET] Name = Rufflet -InternalName = RUFFLET Type1 = NORMAL Type2 = FLYING BaseStats = 70,83,50,60,37,50 @@ -20905,9 +20278,8 @@ BattlerShadowX = 0 BattlerShadowSize = 1 Evolutions = BRAVIARY,Level,54 #------------------------------- -[628] +[BRAVIARY] Name = Braviary -InternalName = BRAVIARY Type1 = NORMAL Type2 = FLYING BaseStats = 100,123,75,80,57,75 @@ -20937,9 +20309,8 @@ BattlerEnemyY = 3 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[629] +[VULLABY] Name = Vullaby -InternalName = VULLABY Type1 = DARK Type2 = FLYING BaseStats = 70,55,75,60,45,65 @@ -20971,9 +20342,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MANDIBUZZ,Level,54 #------------------------------- -[630] +[MANDIBUZZ] Name = Mandibuzz -InternalName = MANDIBUZZ Type1 = DARK Type2 = FLYING BaseStats = 110,65,105,80,55,95 @@ -21003,9 +20373,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[631] +[HEATMOR] Name = Heatmor -InternalName = HEATMOR Type1 = FIRE BaseStats = 85,97,66,65,105,66 GenderRate = Female50Percent @@ -21035,9 +20404,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[632] +[DURANT] Name = Durant -InternalName = DURANT Type1 = BUG Type2 = STEEL BaseStats = 58,109,112,109,48,48 @@ -21068,9 +20436,8 @@ BattlerEnemyY = 34 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[633] +[DEINO] Name = Deino -InternalName = DEINO Type1 = DARK Type2 = DRAGON BaseStats = 52,65,50,38,45,50 @@ -21101,9 +20468,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ZWEILOUS,Level,50 #------------------------------- -[634] +[ZWEILOUS] Name = Zweilous -InternalName = ZWEILOUS Type1 = DARK Type2 = DRAGON BaseStats = 72,85,70,58,65,70 @@ -21133,9 +20499,8 @@ BattlerShadowX = 0 BattlerShadowSize = 3 Evolutions = HYDREIGON,Level,64 #------------------------------- -[635] +[HYDREIGON] Name = Hydreigon -InternalName = HYDREIGON Type1 = DARK Type2 = DRAGON BaseStats = 92,105,90,98,125,90 @@ -21164,9 +20529,8 @@ BattlerEnemyY = 4 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[636] +[LARVESTA] Name = Larvesta -InternalName = LARVESTA Type1 = BUG Type2 = FIRE BaseStats = 55,85,55,60,50,55 @@ -21198,9 +20562,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VOLCARONA,Level,59 #------------------------------- -[637] +[VOLCARONA] Name = Volcarona -InternalName = VOLCARONA Type1 = BUG Type2 = FIRE BaseStats = 85,60,65,100,135,105 @@ -21233,9 +20596,8 @@ BattlerEnemyY = 2 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[638] +[COBALION] Name = Cobalion -InternalName = COBALION Type1 = STEEL Type2 = FIGHTING BaseStats = 91,90,129,108,90,72 @@ -21264,9 +20626,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[639] +[TERRAKION] Name = Terrakion -InternalName = TERRAKION Type1 = ROCK Type2 = FIGHTING BaseStats = 91,129,90,108,72,90 @@ -21295,9 +20656,8 @@ BattlerEnemyY = 22 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[640] +[VIRIZION] Name = Virizion -InternalName = VIRIZION Type1 = GRASS Type2 = FIGHTING BaseStats = 91,90,72,108,90,129 @@ -21326,9 +20686,8 @@ BattlerEnemyY = 14 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[641] +[TORNADUS] Name = Tornadus -InternalName = TORNADUS Type1 = FLYING BaseStats = 79,115,70,111,125,80 GenderRate = AlwaysMale @@ -21358,9 +20717,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[642] +[THUNDURUS] Name = Thundurus -InternalName = THUNDURUS Type1 = ELECTRIC Type2 = FLYING BaseStats = 79,115,70,111,125,80 @@ -21391,9 +20749,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[643] +[RESHIRAM] Name = Reshiram -InternalName = RESHIRAM Type1 = DRAGON Type2 = FIRE BaseStats = 100,120,100,90,150,120 @@ -21422,9 +20779,8 @@ BattlerEnemyY = 11 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[644] +[ZEKROM] Name = Zekrom -InternalName = ZEKROM Type1 = DRAGON Type2 = ELECTRIC BaseStats = 100,150,120,90,120,100 @@ -21453,9 +20809,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[645] +[LANDORUS] Name = Landorus -InternalName = LANDORUS Type1 = GROUND Type2 = FLYING BaseStats = 89,125,90,101,115,80 @@ -21486,9 +20841,8 @@ BattlerEnemyY = 6 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[646] +[KYUREM] Name = Kyurem -InternalName = KYUREM Type1 = DRAGON Type2 = ICE BaseStats = 125,130,90,95,130,90 @@ -21517,9 +20871,8 @@ BattlerEnemyY = 23 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[647] +[KELDEO] Name = Keldeo -InternalName = KELDEO Type1 = WATER Type2 = FIGHTING BaseStats = 91,72,90,108,129,90 @@ -21549,9 +20902,8 @@ BattlerEnemyY = 21 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[648] +[MELOETTA] Name = Meloetta -InternalName = MELOETTA Type1 = NORMAL Type2 = PSYCHIC BaseStats = 100,77,77,90,128,128 @@ -21584,9 +20936,8 @@ BattlerEnemyY = 12 BattlerShadowX = 0 BattlerShadowSize = 1 #------------------------------- -[649] +[GENESECT] Name = Genesect -InternalName = GENESECT Type1 = BUG Type2 = STEEL BaseStats = 71,120,95,99,120,95 @@ -21616,9 +20967,8 @@ BattlerEnemyY = 18 BattlerShadowX = 0 BattlerShadowSize = 3 #------------------------------- -[650] +[CHESPIN] Name = Chespin -InternalName = CHESPIN Type1 = GRASS BaseStats = 56,61,65,38,48,45 GenderRate = FemaleOneEighth @@ -21649,9 +20999,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = QUILLADIN,Level,16 #------------------------------- -[651] +[QUILLADIN] Name = Quilladin -InternalName = QUILLADIN Type1 = GRASS BaseStats = 61,78,95,57,56,58 GenderRate = FemaleOneEighth @@ -21681,9 +21030,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CHESNAUGHT,Level,36 #------------------------------- -[652] +[CHESNAUGHT] Name = Chesnaught -InternalName = CHESNAUGHT Type1 = GRASS Type2 = FIGHTING BaseStats = 88,107,122,64,74,75 @@ -21713,9 +21061,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[653] +[FENNEKIN] Name = Fennekin -InternalName = FENNEKIN Type1 = FIRE BaseStats = 40,45,40,60,62,60 GenderRate = FemaleOneEighth @@ -21746,9 +21093,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BRAIXEN,Level,16 #------------------------------- -[654] +[BRAIXEN] Name = Braixen -InternalName = BRAIXEN Type1 = FIRE BaseStats = 59,59,58,73,90,70 GenderRate = FemaleOneEighth @@ -21778,9 +21124,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DELPHOX,Level,36 #------------------------------- -[655] +[DELPHOX] Name = Delphox -InternalName = DELPHOX Type1 = FIRE Type2 = PSYCHIC BaseStats = 75,69,72,104,114,100 @@ -21810,9 +21155,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[656] +[FROAKIE] Name = Froakie -InternalName = FROAKIE Type1 = WATER BaseStats = 41,56,40,71,62,44 GenderRate = FemaleOneEighth @@ -21843,9 +21187,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FROGADIER,Level,16 #------------------------------- -[657] +[FROGADIER] Name = Frogadier -InternalName = FROGADIER Type1 = WATER BaseStats = 54,63,52,97,83,56 GenderRate = FemaleOneEighth @@ -21875,9 +21218,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GRENINJA,Level,36 #------------------------------- -[658] +[GRENINJA] Name = Greninja -InternalName = GRENINJA Type1 = WATER Type2 = DARK BaseStats = 72,95,67,122,103,71 @@ -21907,9 +21249,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[659] +[BUNNELBY] Name = Bunnelby -InternalName = BUNNELBY Type1 = NORMAL BaseStats = 38,36,38,57,32,36 GenderRate = Female50Percent @@ -21940,9 +21281,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DIGGERSBY,Level,20 #------------------------------- -[660] +[DIGGERSBY] Name = Diggersby -InternalName = DIGGERSBY Type1 = NORMAL Type2 = GROUND BaseStats = 85,56,77,78,50,77 @@ -21972,9 +21312,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[661] +[FLETCHLING] Name = Fletchling -InternalName = FLETCHLING Type1 = NORMAL Type2 = FLYING BaseStats = 45,50,43,62,40,38 @@ -22006,9 +21345,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FLETCHINDER,Level,17 #------------------------------- -[662] +[FLETCHINDER] Name = Fletchinder -InternalName = FLETCHINDER Type1 = FIRE Type2 = FLYING BaseStats = 62,73,55,84,56,52 @@ -22039,9 +21377,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TALONFLAME,Level,35 #------------------------------- -[663] +[TALONFLAME] Name = Talonflame -InternalName = TALONFLAME Type1 = FIRE Type2 = FLYING BaseStats = 78,81,71,126,74,69 @@ -22071,9 +21408,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[664] +[SCATTERBUG] Name = Scatterbug -InternalName = SCATTERBUG Type1 = BUG BaseStats = 38,35,40,35,27,25 GenderRate = Female50Percent @@ -22104,9 +21440,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SPEWPA,Level,9 #------------------------------- -[665] +[SPEWPA] Name = Spewpa -InternalName = SPEWPA Type1 = BUG BaseStats = 45,22,60,29,27,30 GenderRate = Female50Percent @@ -22136,9 +21471,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VIVILLON,Level,12 #------------------------------- -[666] +[VIVILLON] Name = Vivillon -InternalName = VIVILLON Type1 = BUG Type2 = FLYING BaseStats = 80,52,50,89,90,50 @@ -22169,9 +21503,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[667] +[LITLEO] Name = Litleo -InternalName = LITLEO Type1 = FIRE Type2 = NORMAL BaseStats = 62,50,58,72,73,54 @@ -22203,9 +21536,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PYROAR,Level,35 #------------------------------- -[668] +[PYROAR] Name = Pyroar -InternalName = PYROAR Type1 = FIRE Type2 = NORMAL BaseStats = 86,68,72,106,109,66 @@ -22235,9 +21567,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[669] +[FLABEBE] Name = Flabébé -InternalName = FLABEBE Type1 = FAIRY BaseStats = 44,38,39,42,61,79 GenderRate = AlwaysFemale @@ -22269,9 +21600,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FLOETTE,Level,19 #------------------------------- -[670] +[FLOETTE] Name = Floette -InternalName = FLOETTE Type1 = FAIRY BaseStats = 54,45,47,52,75,98 GenderRate = AlwaysFemale @@ -22302,9 +21632,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = FLORGES,Item,SHINYSTONE #------------------------------- -[671] +[FLORGES] Name = Florges -InternalName = FLORGES Type1 = FAIRY BaseStats = 78,65,68,75,112,154 GenderRate = AlwaysFemale @@ -22334,9 +21663,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[672] +[SKIDDO] Name = Skiddo -InternalName = SKIDDO Type1 = GRASS BaseStats = 66,65,48,52,62,57 GenderRate = Female50Percent @@ -22367,9 +21695,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOGOAT,Level,32 #------------------------------- -[673] +[GOGOAT] Name = Gogoat -InternalName = GOGOAT Type1 = GRASS BaseStats = 123,100,62,68,97,81 GenderRate = Female50Percent @@ -22398,9 +21725,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[674] +[PANCHAM] Name = Pancham -InternalName = PANCHAM Type1 = FIGHTING BaseStats = 67,82,62,43,46,48 GenderRate = Female50Percent @@ -22432,9 +21758,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PANGORO,LevelDarkInParty,32 #------------------------------- -[675] +[PANGORO] Name = Pangoro -InternalName = PANGORO Type1 = FIGHTING Type2 = DARK BaseStats = 95,124,78,58,69,71 @@ -22465,9 +21790,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[676] +[FURFROU] Name = Furfrou -InternalName = FURFROU Type1 = NORMAL BaseStats = 75,80,60,102,65,90 GenderRate = Female50Percent @@ -22497,9 +21821,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[677] +[ESPURR] Name = Espurr -InternalName = ESPURR Type1 = PSYCHIC BaseStats = 62,48,54,68,63,60 GenderRate = Female50Percent @@ -22530,9 +21853,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MEOWSTIC,Level,25 #------------------------------- -[678] +[MEOWSTIC] Name = Meowstic -InternalName = MEOWSTIC Type1 = PSYCHIC BaseStats = 74,48,76,104,83,81 GenderRate = Female50Percent @@ -22562,9 +21884,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[679] +[HONEDGE] Name = Honedge -InternalName = HONEDGE Type1 = STEEL Type2 = GHOST BaseStats = 45,80,100,28,35,37 @@ -22595,9 +21916,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DOUBLADE,Level,35 #------------------------------- -[680] +[DOUBLADE] Name = Doublade -InternalName = DOUBLADE Type1 = STEEL Type2 = GHOST BaseStats = 59,110,150,35,45,49 @@ -22627,9 +21947,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = AEGISLASH,Item,DUSKSTONE #------------------------------- -[681] +[AEGISLASH] Name = Aegislash -InternalName = AEGISLASH Type1 = STEEL Type2 = GHOST BaseStats = 60,50,150,60,50,150 @@ -22659,9 +21978,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[682] +[SPRITZEE] Name = Spritzee -InternalName = SPRITZEE Type1 = FAIRY BaseStats = 78,52,60,23,63,65 GenderRate = Female50Percent @@ -22692,9 +22010,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = AROMATISSE,TradeItem,SACHET #------------------------------- -[683] +[AROMATISSE] Name = Aromatisse -InternalName = AROMATISSE Type1 = FAIRY BaseStats = 101,72,72,29,99,89 GenderRate = Female50Percent @@ -22723,9 +22040,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[684] +[SWIRLIX] Name = Swirlix -InternalName = SWIRLIX Type1 = FAIRY BaseStats = 62,48,66,49,59,57 GenderRate = Female50Percent @@ -22756,9 +22072,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SLURPUFF,TradeItem,WHIPPEDDREAM #------------------------------- -[685] +[SLURPUFF] Name = Slurpuff -InternalName = SLURPUFF Type1 = FAIRY BaseStats = 82,80,86,72,85,75 GenderRate = Female50Percent @@ -22787,9 +22102,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[686] +[INKAY] Name = Inkay -InternalName = INKAY Type1 = DARK Type2 = PSYCHIC BaseStats = 53,54,53,45,37,46 @@ -22821,9 +22135,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MALAMAR,Level,30 #------------------------------- -[687] +[MALAMAR] Name = Malamar -InternalName = MALAMAR Type1 = DARK Type2 = PSYCHIC BaseStats = 86,92,88,73,68,75 @@ -22853,9 +22166,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[688] +[BINACLE] Name = Binacle -InternalName = BINACLE Type1 = ROCK Type2 = WATER BaseStats = 42,52,67,50,39,56 @@ -22887,9 +22199,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BARBARACLE,Level,39 #------------------------------- -[689] +[BARBARACLE] Name = Barbaracle -InternalName = BARBARACLE Type1 = ROCK Type2 = WATER BaseStats = 72,105,115,68,54,86 @@ -22919,9 +22230,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[690] +[SKRELP] Name = Skrelp -InternalName = SKRELP Type1 = POISON Type2 = WATER BaseStats = 50,60,60,30,60,60 @@ -22953,9 +22263,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DRAGALGE,Level,48 #------------------------------- -[691] +[DRAGALGE] Name = Dragalge -InternalName = DRAGALGE Type1 = POISON Type2 = DRAGON BaseStats = 65,75,90,44,97,123 @@ -22985,9 +22294,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[692] +[CLAUNCHER] Name = Clauncher -InternalName = CLAUNCHER Type1 = WATER BaseStats = 50,53,62,44,58,63 GenderRate = Female50Percent @@ -23017,9 +22325,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CLAWITZER,Level,37 #------------------------------- -[693] +[CLAWITZER] Name = Clawitzer -InternalName = CLAWITZER Type1 = WATER BaseStats = 71,73,88,59,120,89 GenderRate = Female50Percent @@ -23047,9 +22354,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[694] +[HELIOPTILE] Name = Helioptile -InternalName = HELIOPTILE Type1 = ELECTRIC Type2 = NORMAL BaseStats = 44,38,33,70,61,43 @@ -23081,9 +22387,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HELIOLISK,Item,SUNSTONE #------------------------------- -[695] +[HELIOLISK] Name = Heliolisk -InternalName = HELIOLISK Type1 = ELECTRIC Type2 = NORMAL BaseStats = 62,55,52,109,109,94 @@ -23113,9 +22418,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[696] +[TYRUNT] Name = Tyrunt -InternalName = TYRUNT Type1 = ROCK Type2 = DRAGON BaseStats = 58,89,77,48,45,45 @@ -23147,9 +22451,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TYRANTRUM,LevelDay,39 #------------------------------- -[697] +[TYRANTRUM] Name = Tyrantrum -InternalName = TYRANTRUM Type1 = ROCK Type2 = DRAGON BaseStats = 82,121,119,71,69,59 @@ -23179,9 +22482,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[698] +[AMAURA] Name = Amaura -InternalName = AMAURA Type1 = ROCK Type2 = ICE BaseStats = 77,59,50,46,67,63 @@ -23213,9 +22515,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = AURORUS,LevelNight,39 #------------------------------- -[699] +[AURORUS] Name = Aurorus -InternalName = AURORUS Type1 = ROCK Type2 = ICE BaseStats = 123,77,72,58,99,92 @@ -23245,9 +22546,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[700] +[SYLVEON] Name = Sylveon -InternalName = SYLVEON Type1 = FAIRY BaseStats = 95,65,65,60,110,130 GenderRate = FemaleOneEighth @@ -23276,9 +22576,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[701] +[HAWLUCHA] Name = Hawlucha -InternalName = HAWLUCHA Type1 = FIGHTING Type2 = FLYING BaseStats = 78,92,75,118,74,63 @@ -23310,9 +22609,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[702] +[DEDENNE] Name = Dedenne -InternalName = DEDENNE Type1 = ELECTRIC Type2 = FAIRY BaseStats = 67,58,57,101,81,67 @@ -23343,9 +22641,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[703] +[CARBINK] Name = Carbink -InternalName = CARBINK Type1 = ROCK Type2 = FAIRY BaseStats = 50,50,150,50,50,150 @@ -23375,9 +22672,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[704] +[GOOMY] Name = Goomy -InternalName = GOOMY Type1 = DRAGON BaseStats = 45,50,35,40,55,75 GenderRate = Female50Percent @@ -23409,9 +22705,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SLIGGOO,Level,40 #------------------------------- -[705] +[SLIGGOO] Name = Sliggoo -InternalName = SLIGGOO Type1 = DRAGON BaseStats = 68,75,53,60,83,113 GenderRate = Female50Percent @@ -23442,9 +22737,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOODRA,LevelRain,50 #------------------------------- -[706] +[GOODRA] Name = Goodra -InternalName = GOODRA Type1 = DRAGON BaseStats = 90,100,70,80,110,150 GenderRate = Female50Percent @@ -23473,9 +22767,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[707] +[KLEFKI] Name = Klefki -InternalName = KLEFKI Type1 = STEEL Type2 = FAIRY BaseStats = 57,80,91,75,80,87 @@ -23506,9 +22799,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[708] +[PHANTUMP] Name = Phantump -InternalName = PHANTUMP Type1 = GHOST Type2 = GRASS BaseStats = 43,70,48,38,50,60 @@ -23540,9 +22832,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TREVENANT,Trade, #------------------------------- -[709] +[TREVENANT] Name = Trevenant -InternalName = TREVENANT Type1 = GHOST Type2 = GRASS BaseStats = 85,110,76,56,65,82 @@ -23572,9 +22863,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[710] +[PUMPKABOO] Name = Pumpkaboo -InternalName = PUMPKABOO Type1 = GHOST Type2 = GRASS BaseStats = 44,66,70,56,44,55 @@ -23606,9 +22896,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOURGEIST,Trade, #------------------------------- -[711] +[GOURGEIST] Name = Gourgeist -InternalName = GOURGEIST Type1 = GHOST Type2 = GRASS BaseStats = 55,85,122,99,58,75 @@ -23638,9 +22927,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[712] +[BERGMITE] Name = Bergmite -InternalName = BERGMITE Type1 = ICE BaseStats = 55,69,85,28,32,35 GenderRate = Female50Percent @@ -23671,9 +22959,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = AVALUGG,Level,37 #------------------------------- -[713] +[AVALUGG] Name = Avalugg -InternalName = AVALUGG Type1 = ICE BaseStats = 95,117,184,28,44,46 GenderRate = Female50Percent @@ -23702,9 +22989,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[714] +[NOIBAT] Name = Noibat -InternalName = NOIBAT Type1 = FLYING Type2 = DRAGON BaseStats = 40,30,35,55,45,40 @@ -23736,9 +23022,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = NOIVERN,Level,48 #------------------------------- -[715] +[NOIVERN] Name = Noivern -InternalName = NOIVERN Type1 = FLYING Type2 = DRAGON BaseStats = 85,70,80,123,97,80 @@ -23768,9 +23053,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[716] +[XERNEAS] Name = Xerneas -InternalName = XERNEAS Type1 = FAIRY BaseStats = 126,131,95,99,131,98 GenderRate = Genderless @@ -23799,9 +23083,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[717] +[YVELTAL] Name = Yveltal -InternalName = YVELTAL Type1 = DARK Type2 = FLYING BaseStats = 126,131,95,99,131,98 @@ -23830,9 +23113,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[718] +[ZYGARDE] Name = Zygarde -InternalName = ZYGARDE Type1 = DRAGON Type2 = GROUND BaseStats = 108,100,121,95,81,95 @@ -23862,9 +23144,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[719] +[DIANCIE] Name = Diancie -InternalName = DIANCIE Type1 = ROCK Type2 = FAIRY BaseStats = 50,100,150,50,100,150 @@ -23893,9 +23174,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[720] +[HOOPA] Name = Hoopa -InternalName = HOOPA Type1 = PSYCHIC Type2 = GHOST BaseStats = 80,110,60,70,150,130 @@ -23925,9 +23205,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[721] +[VOLCANION] Name = Volcanion -InternalName = VOLCANION Type1 = FIRE Type2 = WATER BaseStats = 80,110,120,70,130,90 @@ -23956,9 +23235,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[722] +[ROWLET] Name = Rowlet -InternalName = ROWLET Type1 = GRASS Type2 = FLYING BaseStats = 68,55,55,42,50,50 @@ -23990,9 +23268,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DARTRIX,Level,17 #------------------------------- -[723] +[DARTRIX] Name = Dartrix -InternalName = DARTRIX Type1 = GRASS Type2 = FLYING BaseStats = 78,75,75,52,70,70 @@ -24023,9 +23300,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = DECIDUEYE,Level,34 #------------------------------- -[724] +[DECIDUEYE] Name = Decidueye -InternalName = DECIDUEYE Type1 = GRASS Type2 = GHOST BaseStats = 78,107,75,70,100,100 @@ -24055,9 +23331,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[725] +[LITTEN] Name = Litten -InternalName = LITTEN Type1 = FIRE BaseStats = 45,65,40,70,60,40 GenderRate = FemaleOneEighth @@ -24088,9 +23363,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TORRACAT,Level,17 #------------------------------- -[726] +[TORRACAT] Name = Torracat -InternalName = TORRACAT Type1 = FIRE BaseStats = 65,85,50,90,80,50 GenderRate = FemaleOneEighth @@ -24120,9 +23394,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = INCINEROAR,Level,34 #------------------------------- -[727] +[INCINEROAR] Name = Incineroar -InternalName = INCINEROAR Type1 = FIRE Type2 = DARK BaseStats = 95,115,90,60,80,90 @@ -24152,9 +23425,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[728] +[POPPLIO] Name = Popplio -InternalName = POPPLIO Type1 = WATER BaseStats = 50,54,54,40,66,56 GenderRate = FemaleOneEighth @@ -24185,9 +23457,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BRIONNE,Level,17 #------------------------------- -[729] +[BRIONNE] Name = Brionne -InternalName = BRIONNE Type1 = WATER BaseStats = 60,69,69,50,91,81 GenderRate = FemaleOneEighth @@ -24217,9 +23488,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PRIMARINA,Level,34 #------------------------------- -[730] +[PRIMARINA] Name = Primarina -InternalName = PRIMARINA Type1 = WATER Type2 = FAIRY BaseStats = 80,74,74,60,126,116 @@ -24249,9 +23519,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[731] +[PIKIPEK] Name = Pikipek -InternalName = PIKIPEK Type1 = NORMAL Type2 = FLYING BaseStats = 35,75,30,65,30,30 @@ -24284,9 +23553,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TRUMBEAK,Level,14 #------------------------------- -[732] +[TRUMBEAK] Name = Trumbeak -InternalName = TRUMBEAK Type1 = NORMAL Type2 = FLYING BaseStats = 55,85,50,75,40,50 @@ -24318,9 +23586,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TOUCANNON,Level,28 #------------------------------- -[733] +[TOUCANNON] Name = Toucannon -InternalName = TOUCANNON Type1 = NORMAL Type2 = FLYING BaseStats = 80,120,75,60,75,75 @@ -24351,9 +23618,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[734] +[YUNGOOS] Name = Yungoos -InternalName = YUNGOOS Type1 = NORMAL BaseStats = 48,70,30,45,30,30 GenderRate = Female50Percent @@ -24385,9 +23651,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GUMSHOOS,LevelDay,20 #------------------------------- -[735] +[GUMSHOOS] Name = Gumshoos -InternalName = GUMSHOOS Type1 = NORMAL BaseStats = 88,110,60,45,55,60 GenderRate = Female50Percent @@ -24417,9 +23682,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[736] +[GRUBBIN] Name = Grubbin -InternalName = GRUBBIN Type1 = BUG BaseStats = 47,62,45,46,55,45 GenderRate = Female50Percent @@ -24449,9 +23713,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CHARJABUG,Level,20 #------------------------------- -[737] +[CHARJABUG] Name = Charjabug -InternalName = CHARJABUG Type1 = BUG Type2 = ELECTRIC BaseStats = 57,82,95,36,55,75 @@ -24482,9 +23745,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = VIKAVOLT,Location,49,VIKAVOLT,Location,50,VIKAVOLT,Location,51 #------------------------------- -[738] +[VIKAVOLT] Name = Vikavolt -InternalName = VIKAVOLT Type1 = BUG Type2 = ELECTRIC BaseStats = 77,70,90,43,145,75 @@ -24513,9 +23775,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[739] +[CRABRAWLER] Name = Crabrawler -InternalName = CRABRAWLER Type1 = FIGHTING BaseStats = 47,82,57,63,42,47 GenderRate = Female50Percent @@ -24547,9 +23808,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = CRABOMINABLE,Location,34 #------------------------------- -[740] +[CRABOMINABLE] Name = Crabominable -InternalName = CRABOMINABLE Type1 = FIGHTING Type2 = ICE BaseStats = 97,132,77,43,62,67 @@ -24580,9 +23840,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[741] +[ORICORIO] Name = Oricorio -InternalName = ORICORIO Type1 = FIRE Type2 = FLYING BaseStats = 75,70,70,93,98,70 @@ -24614,9 +23873,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[742] +[CUTIEFLY] Name = Cutiefly -InternalName = CUTIEFLY Type1 = BUG Type2 = FAIRY BaseStats = 40,45,40,84,55,40 @@ -24649,9 +23907,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = RIBOMBEE,Level,25 #------------------------------- -[743] +[RIBOMBEE] Name = Ribombee -InternalName = RIBOMBEE Type1 = BUG Type2 = FAIRY BaseStats = 60,55,60,124,95,70 @@ -24682,9 +23939,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[744] +[ROCKRUFF] Name = Rockruff -InternalName = ROCKRUFF Type1 = ROCK BaseStats = 45,65,40,60,30,40 GenderRate = Female50Percent @@ -24715,9 +23971,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LYCANROC,Level,25 #------------------------------- -[745] +[LYCANROC] Name = Lycanroc -InternalName = LYCANROC Type1 = ROCK BaseStats = 75,115,65,112,55,65 GenderRate = Female50Percent @@ -24747,9 +24002,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[746] +[WISHIWASHI] Name = Wishiwashi -InternalName = WISHIWASHI Type1 = WATER BaseStats = 45,20,20,40,25,25 GenderRate = Female50Percent @@ -24779,9 +24033,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[747] +[MAREANIE] Name = Mareanie -InternalName = MAREANIE Type1 = POISON Type2 = WATER BaseStats = 50,53,62,45,43,52 @@ -24814,9 +24067,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TOXAPEX,Level,38 #------------------------------- -[748] +[TOXAPEX] Name = Toxapex -InternalName = TOXAPEX Type1 = POISON Type2 = WATER BaseStats = 50,63,152,35,53,142 @@ -24847,9 +24099,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[749] +[MUDBRAY] Name = Mudbray -InternalName = MUDBRAY Type1 = GROUND BaseStats = 70,100,70,45,45,55 GenderRate = Female50Percent @@ -24881,9 +24132,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MUDSDALE,Level,30 #------------------------------- -[750] +[MUDSDALE] Name = Mudsdale -InternalName = MUDSDALE Type1 = GROUND BaseStats = 100,125,100,35,55,85 GenderRate = Female50Percent @@ -24913,9 +24163,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[751] +[DEWPIDER] Name = Dewpider -InternalName = DEWPIDER Type1 = WATER Type2 = BUG BaseStats = 38,40,52,27,40,72 @@ -24948,9 +24197,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = ARAQUANID,Level,22 #------------------------------- -[752] +[ARAQUANID] Name = Araquanid -InternalName = ARAQUANID Type1 = WATER Type2 = BUG BaseStats = 68,70,92,42,50,132 @@ -24981,9 +24229,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[753] +[FOMANTIS] Name = Fomantis -InternalName = FOMANTIS Type1 = GRASS BaseStats = 40,55,35,35,50,35 GenderRate = Female50Percent @@ -25015,9 +24262,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = LURANTIS,LevelDay,34 #------------------------------- -[754] +[LURANTIS] Name = Lurantis -InternalName = LURANTIS Type1 = GRASS BaseStats = 70,105,90,45,80,90 GenderRate = Female50Percent @@ -25047,9 +24293,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[755] +[MORELULL] Name = Morelull -InternalName = MORELULL Type1 = GRASS Type2 = FAIRY BaseStats = 40,35,55,15,65,75 @@ -25083,9 +24328,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SHIINOTIC,Level,24 #------------------------------- -[756] +[SHIINOTIC] Name = Shiinotic -InternalName = SHIINOTIC Type1 = GRASS Type2 = FAIRY BaseStats = 60,45,80,30,90,100 @@ -25117,9 +24361,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[757] +[SALANDIT] Name = Salandit -InternalName = SALANDIT Type1 = POISON Type2 = FIRE BaseStats = 48,44,40,77,71,40 @@ -25152,9 +24395,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SALAZZLE,LevelFemale,33 #------------------------------- -[758] +[SALAZZLE] Name = Salazzle -InternalName = SALAZZLE Type1 = POISON Type2 = FIRE BaseStats = 68,64,60,117,111,60 @@ -25185,9 +24427,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[759] +[STUFFUL] Name = Stufful -InternalName = STUFFUL Type1 = NORMAL Type2 = FIGHTING BaseStats = 70,75,50,50,45,50 @@ -25219,9 +24460,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = BEWEAR,Level,27 #------------------------------- -[760] +[BEWEAR] Name = Bewear -InternalName = BEWEAR Type1 = NORMAL Type2 = FIGHTING BaseStats = 120,125,80,60,55,60 @@ -25251,9 +24491,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[761] +[BOUNSWEET] Name = Bounsweet -InternalName = BOUNSWEET Type1 = GRASS BaseStats = 42,30,38,32,30,38 GenderRate = AlwaysFemale @@ -25285,9 +24524,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = STEENEE,Level,18 #------------------------------- -[762] +[STEENEE] Name = Steenee -InternalName = STEENEE Type1 = GRASS BaseStats = 52,40,48,62,40,48 GenderRate = AlwaysFemale @@ -25318,9 +24556,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = TSAREENA,HasMove,STOMP #------------------------------- -[763] +[TSAREENA] Name = Tsareena -InternalName = TSAREENA Type1 = GRASS BaseStats = 72,120,98,72,50,98 GenderRate = AlwaysFemale @@ -25350,9 +24587,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[764] +[COMFEY] Name = Comfey -InternalName = COMFEY Type1 = FAIRY BaseStats = 51,52,90,100,82,110 GenderRate = Female75Percent @@ -25383,9 +24619,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[765] +[ORANGURU] Name = Oranguru -InternalName = ORANGURU Type1 = NORMAL Type2 = PSYCHIC BaseStats = 90,60,80,60,90,110 @@ -25416,9 +24651,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[766] +[PASSIMIAN] Name = Passimian -InternalName = PASSIMIAN Type1 = FIGHTING BaseStats = 100,120,90,80,40,60 GenderRate = Female50Percent @@ -25448,9 +24682,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[767] +[WIMPOD] Name = Wimpod -InternalName = WIMPOD Type1 = BUG Type2 = WATER BaseStats = 25,35,40,80,20,30 @@ -25481,9 +24714,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = GOLISOPOD,Level,30 #------------------------------- -[768] +[GOLISOPOD] Name = Golisopod -InternalName = GOLISOPOD Type1 = BUG Type2 = WATER BaseStats = 75,125,140,40,60,90 @@ -25512,9 +24744,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[769] +[SANDYGAST] Name = Sandygast -InternalName = SANDYGAST Type1 = GHOST Type2 = GROUND BaseStats = 55,55,80,15,70,45 @@ -25547,9 +24778,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = PALOSSAND,Level,42 #------------------------------- -[770] +[PALOSSAND] Name = Palossand -InternalName = PALOSSAND Type1 = GHOST Type2 = GROUND BaseStats = 85,75,110,35,100,75 @@ -25580,9 +24810,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[771] +[PYUKUMUKU] Name = Pyukumuku -InternalName = PYUKUMUKU Type1 = WATER BaseStats = 55,60,130,5,30,130 GenderRate = Female50Percent @@ -25612,9 +24841,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[772] +[TYPENULL] Name = Type: Null -InternalName = TYPENULL Type1 = NORMAL BaseStats = 95,95,95,59,95,95 GenderRate = Genderless @@ -25643,9 +24871,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SILVALLY,Happiness, #------------------------------- -[773] +[SILVALLY] Name = Silvally -InternalName = SILVALLY Type1 = NORMAL BaseStats = 95,95,95,95,95,95 GenderRate = Genderless @@ -25674,9 +24901,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[774] +[MINIOR] Name = Minior -InternalName = MINIOR Type1 = ROCK Type2 = FLYING BaseStats = 60,60,100,60,60,100 @@ -25707,9 +24933,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[775] +[KOMALA] Name = Komala -InternalName = KOMALA Type1 = NORMAL BaseStats = 65,115,65,65,75,95 GenderRate = Female50Percent @@ -25738,9 +24963,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[776] +[TURTONATOR] Name = Turtonator -InternalName = TURTONATOR Type1 = FIRE Type2 = DRAGON BaseStats = 60,78,135,36,91,85 @@ -25771,9 +24995,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[777] +[TOGEDEMARU] Name = Togedemaru -InternalName = TOGEDEMARU Type1 = ELECTRIC Type2 = STEEL BaseStats = 65,98,63,96,40,73 @@ -25805,9 +25028,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[778] +[MIMIKYU] Name = Mimikyu -InternalName = MIMIKYU Type1 = GHOST Type2 = FAIRY BaseStats = 55,90,80,96,50,105 @@ -25839,9 +25061,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[779] +[BRUXISH] Name = Bruxish -InternalName = BRUXISH Type1 = WATER Type2 = PSYCHIC BaseStats = 68,105,70,92,70,70 @@ -25873,9 +25094,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[780] +[DRAMPA] Name = Drampa -InternalName = DRAMPA Type1 = NORMAL Type2 = DRAGON BaseStats = 78,60,85,36,135,91 @@ -25907,9 +25127,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[781] +[DHELMISE] Name = Dhelmise -InternalName = DHELMISE Type1 = GHOST Type2 = GRASS BaseStats = 70,131,100,40,86,90 @@ -25938,9 +25157,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[782] +[JANGMOO] Name = Jangmo-o -InternalName = JANGMOO Type1 = DRAGON BaseStats = 45,55,65,45,45,45 GenderRate = Female50Percent @@ -25972,9 +25190,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = HAKAMOO,Level,35 #------------------------------- -[783] +[HAKAMOO] Name = Hakamo-o -InternalName = HAKAMOO Type1 = DRAGON Type2 = FIGHTING BaseStats = 55,75,90,65,65,70 @@ -26006,9 +25223,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = KOMMOO,Level,45 #------------------------------- -[784] +[KOMMOO] Name = Kommo-o -InternalName = KOMMOO Type1 = DRAGON Type2 = FIGHTING BaseStats = 75,110,125,85,100,105 @@ -26039,9 +25255,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[785] +[TAPUKOKO] Name = Tapu Koko -InternalName = TAPUKOKO Type1 = ELECTRIC Type2 = FAIRY BaseStats = 70,115,85,130,95,75 @@ -26071,9 +25286,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[786] +[TAPULELE] Name = Tapu Lele -InternalName = TAPULELE Type1 = PSYCHIC Type2 = FAIRY BaseStats = 70,85,75,95,130,115 @@ -26103,9 +25317,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[787] +[TAPUBULU] Name = Tapu Bulu -InternalName = TAPUBULU Type1 = GRASS Type2 = FAIRY BaseStats = 70,130,115,75,85,95 @@ -26135,9 +25348,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[788] +[TAPUFINI] Name = Tapu Fini -InternalName = TAPUFINI Type1 = WATER Type2 = FAIRY BaseStats = 70,75,115,85,95,130 @@ -26167,9 +25379,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[789] +[COSMOG] Name = Cosmog -InternalName = COSMOG Type1 = PSYCHIC BaseStats = 43,29,31,37,29,31 GenderRate = Genderless @@ -26197,9 +25408,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = COSMOEM,Level,43 #------------------------------- -[790] +[COSMOEM] Name = Cosmoem -InternalName = COSMOEM Type1 = PSYCHIC BaseStats = 43,29,131,37,29,131 GenderRate = Genderless @@ -26227,9 +25437,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = SOLGALEO,LevelDay,53,LUNALA,LevelNight,53 #------------------------------- -[791] +[SOLGALEO] Name = Solgaleo -InternalName = SOLGALEO Type1 = PSYCHIC Type2 = STEEL BaseStats = 137,137,107,97,113,89 @@ -26258,9 +25467,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[792] +[LUNALA] Name = Lunala -InternalName = LUNALA Type1 = PSYCHIC Type2 = GHOST BaseStats = 137,113,89,97,137,107 @@ -26289,9 +25497,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[793] +[NIHILEGO] Name = Nihilego -InternalName = NIHILEGO Type1 = ROCK Type2 = POISON BaseStats = 109,53,47,103,127,131 @@ -26320,9 +25527,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[794] +[BUZZWOLE] Name = Buzzwole -InternalName = BUZZWOLE Type1 = BUG Type2 = FIGHTING BaseStats = 107,139,139,79,53,53 @@ -26351,9 +25557,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[795] +[PHEROMOSA] Name = Pheromosa -InternalName = PHEROMOSA Type1 = BUG Type2 = FIGHTING BaseStats = 71,137,37,151,137,37 @@ -26382,9 +25587,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[796] +[XURKITREE] Name = Xurkitree -InternalName = XURKITREE Type1 = ELECTRIC BaseStats = 83,89,71,83,173,71 GenderRate = Genderless @@ -26412,9 +25616,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[797] +[CELESTEELA] Name = Celesteela -InternalName = CELESTEELA Type1 = STEEL Type2 = FLYING BaseStats = 97,101,103,61,107,101 @@ -26443,9 +25646,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[798] +[KARTANA] Name = Kartana -InternalName = KARTANA Type1 = GRASS Type2 = STEEL BaseStats = 59,181,131,109,59,31 @@ -26474,9 +25676,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[799] +[GUZZLORD] Name = Guzzlord -InternalName = GUZZLORD Type1 = DARK Type2 = DRAGON BaseStats = 223,101,53,43,97,53 @@ -26505,9 +25706,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[800] +[NECROZMA] Name = Necrozma -InternalName = NECROZMA Type1 = PSYCHIC BaseStats = 97,107,101,79,127,89 GenderRate = Genderless @@ -26535,9 +25735,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[801] +[MAGEARNA] Name = Magearna -InternalName = MAGEARNA Type1 = STEEL Type2 = FAIRY BaseStats = 80,95,115,65,130,115 @@ -26566,9 +25765,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[802] +[MARSHADOW] Name = Marshadow -InternalName = MARSHADOW Type1 = FIGHTING Type2 = GHOST BaseStats = 90,125,80,125,90,90 @@ -26597,9 +25795,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[803] +[POIPOLE] Name = Poipole -InternalName = POIPOLE Type1 = POISON BaseStats = 67,73,67,73,73,67 GenderRate = Genderless @@ -26628,9 +25825,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = NAGANADEL,HasMove,DRAGONPULSE #------------------------------- -[804] +[NAGANADEL] Name = Naganadel -InternalName = NAGANADEL Type1 = POISON Type2 = DRAGON BaseStats = 73,73,73,121,127,73 @@ -26659,9 +25855,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[805] +[STAKATAKA] Name = Stakataka -InternalName = STAKATAKA Type1 = ROCK Type2 = STEEL BaseStats = 61,131,211,13,53,101 @@ -26690,9 +25885,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[806] +[BLACEPHALON] Name = Blacephalon -InternalName = BLACEPHALON Type1 = FIRE Type2 = GHOST BaseStats = 53,127,53,107,151,79 @@ -26721,9 +25915,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[807] +[ZERAORA] Name = Zeraora -InternalName = ZERAORA Type1 = ELECTRIC BaseStats = 88,112,75,143,102,80 GenderRate = Genderless @@ -26751,9 +25944,8 @@ BattlerEnemyY = 0 BattlerShadowX = 0 BattlerShadowSize = 2 #------------------------------- -[808] +[MELTAN] Name = Meltan -InternalName = MELTAN Type1 = STEEL BaseStats = 46,65,65,34,55,35 GenderRate = Genderless @@ -26781,9 +25973,8 @@ BattlerShadowX = 0 BattlerShadowSize = 2 Evolutions = MELMETAL,None, #------------------------------- -[809] +[MELMETAL] Name = Melmetal -InternalName = MELMETAL Type1 = STEEL BaseStats = 135,143,143,34,80,65 GenderRate = Genderless