Added class GameData::BodyShape, some bug fixes, updated some PBS files

This commit is contained in:
Maruno17
2021-02-22 00:21:52 +00:00
parent bcab462ef0
commit f302d8346a
16 changed files with 3008 additions and 3246 deletions

View File

@@ -97,7 +97,7 @@ module GameData
"Height" => [0, "f"], "Height" => [0, "f"],
"Weight" => [0, "f"], "Weight" => [0, "f"],
"Color" => [0, "e", :BodyColor], "Color" => [0, "e", :BodyColor],
"Shape" => [0, "u"], "Shape" => [0, "y", :BodyShape],
"Habitat" => [0, "e", :Habitat], "Habitat" => [0, "e", :Habitat],
"Generation" => [0, "i"], "Generation" => [0, "i"],
"BattlerPlayerX" => [0, "i"], "BattlerPlayerX" => [0, "i"],
@@ -160,7 +160,7 @@ module GameData
@height = hash[:height] || 1 @height = hash[:height] || 1
@weight = hash[:weight] || 1 @weight = hash[:weight] || 1
@color = hash[:color] || :Red @color = hash[:color] || :Red
@shape = hash[:shape] || 1 @shape = hash[:shape] || :Body
@habitat = hash[:habitat] || :None @habitat = hash[:habitat] || :None
@generation = hash[:generation] || 0 @generation = hash[:generation] || 0
@mega_stone = hash[:mega_stone] @mega_stone = hash[:mega_stone]

View File

@@ -1,8 +1,8 @@
module PBGrowthRates module PBGrowthRates
MediumFast = Medium = 0 Medium = 0 # MediumFast
Erratic = 1 Erratic = 1
Fluctuating = 2 Fluctuating = 2
MediumSlow = Parabolic = 3 Parabolic = 3 # MediumSlow
Fast = 4 Fast = 4
Slow = 5 Slow = 5

View File

@@ -0,0 +1,115 @@
# NOTE: The id_number is only used to determine the order that body shapes are
# listed in the Pokédex search screen. Number 0 (:None) is ignored; they
# start with shape 1.
# "Graphics/Pictures/Pokedex/icon_shapes.png" contains icons for these
# shapes.
module GameData
class BodyShape
attr_reader :id
attr_reader :id_number
attr_reader :real_name
DATA = {}
extend ClassMethods
include InstanceMethods
def self.load; end
def self.save; end
def initialize(hash)
@id = hash[:id]
@id_number = hash[:id_number] || -1
@real_name = hash[:name] || "Unnamed"
end
# @return [String] the translated name of this body shape
def name
return _INTL(@real_name)
end
end
end
GameData::BodyShape.register({
:id => :Head,
:id_number => 1,
:name => _INTL("Head")
})
GameData::BodyShape.register({
:id => :Serpentine,
:id_number => 2,
:name => _INTL("Serpentine")
})
GameData::BodyShape.register({
:id => :Finned,
:id_number => 3,
:name => _INTL("Finned")
})
GameData::BodyShape.register({
:id => :HeadArms,
:id_number => 4,
:name => _INTL("Head and arms")
})
GameData::BodyShape.register({
:id => :HeadBase,
:id_number => 5,
:name => _INTL("Head and base")
})
GameData::BodyShape.register({
:id => :BipedalTail,
:id_number => 6,
:name => _INTL("Bipedal with tail")
})
GameData::BodyShape.register({
:id => :HeadLegs,
:id_number => 7,
:name => _INTL("Head and legs")
})
GameData::BodyShape.register({
:id => :Quadruped,
:id_number => 8,
:name => _INTL("Quadruped")
})
GameData::BodyShape.register({
:id => :Winged,
:id_number => 9,
:name => _INTL("Winged")
})
GameData::BodyShape.register({
:id => :Multiped,
:id_number => 10,
:name => _INTL("Multiped")
})
GameData::BodyShape.register({
:id => :MultiBody,
:id_number => 11,
:name => _INTL("Multi Body")
})
GameData::BodyShape.register({
:id => :Bipedal,
:id_number => 12,
:name => _INTL("Bipedal")
})
GameData::BodyShape.register({
:id => :MultiWinged,
:id_number => 13,
:name => _INTL("Multi Winged")
})
GameData::BodyShape.register({
:id => :Insectoid,
:id_number => 14,
:name => _INTL("Insectoid")
})

View File

@@ -502,7 +502,8 @@ class PokemonPokedex_Scene
overlay.blt(344,266,@hwbitmap.bitmap,Rect.new(32,(hwoffset) ? 44 : 0,32,44)) overlay.blt(344,266,@hwbitmap.bitmap,Rect.new(32,(hwoffset) ? 44 : 0,32,44))
# Draw shape icon # Draw shape icon
if params[9] >= 0 if params[9] >= 0
shaperect = Rect.new(0,params[9]*60,60,60) shape_number = @shapeCommands[params[9]].id_number
shaperect = Rect.new(0, (shape_number - 1) * 60, 60, 60)
overlay.blt(424, 218, @shapebitmap.bitmap, shaperect) overlay.blt(424, 218, @shapebitmap.bitmap, shaperect)
end end
# Draw all text # Draw all text
@@ -608,7 +609,7 @@ class PokemonPokedex_Scene
end end
when 6 # Shape icon when 6 # Shape icon
if sel[0] >= 0 if sel[0] >= 0
shaperect = Rect.new(0,@shapeCommands[sel[0]]*60,60,60) shaperect = Rect.new(0, (@shapeCommands[sel[0]].id_number - 1) * 60, 60, 60)
overlay.blt(332, 50, @shapebitmap.bitmap, shaperect) overlay.blt(332, 50, @shapebitmap.bitmap, shaperect)
end end
else else
@@ -680,7 +681,7 @@ class PokemonPokedex_Scene
when 6 # Shape when 6 # Shape
shaperect = Rect.new(0, 0, 60, 60) shaperect = Rect.new(0, 0, 60, 60)
for i in 0...cmds.length for i in 0...cmds.length
shaperect.y = i*60 shaperect.y = (@shapeCommands[i].id_number - 1) * 60
overlay.blt(xstart + 4 + (i % cols) * xgap, ystart + 4 + (i / cols).floor * ygap, @shapebitmap.bitmap, shaperect) overlay.blt(xstart + 4 + (i % cols) * xgap, ystart + 4 + (i / cols).floor * ygap, @shapebitmap.bitmap, shaperect)
end end
end end
@@ -760,11 +761,10 @@ class PokemonPokedex_Scene
end end
# Filter by shape # Filter by shape
if params[9]>=0 if params[9]>=0
sshape = @shapeCommands[params[9]]+1 sshape = @shapeCommands[params[9]].id
dexlist = dexlist.find_all { |item| dexlist = dexlist.find_all { |item|
next false if !$Trainer.seen?(item[0]) next false if !$Trainer.seen?(item[0])
shape = item[9] next item[9] == sshape
next shape==sshape
} }
end end
# Remove all unseen species from the results # Remove all unseen species from the results
@@ -1025,7 +1025,7 @@ class PokemonPokedex_Scene
@colorCommands = [] @colorCommands = []
GameData::BodyColor.each { |c| @colorCommands.push(c) } GameData::BodyColor.each { |c| @colorCommands.push(c) }
@shapeCommands = [] @shapeCommands = []
for i in 0...14; @shapeCommands.push(i); end GameData::BodyShape.each { |c| @shapeCommands.push(c) if c.id != :None }
@sprites["searchbg"].visible = true @sprites["searchbg"].visible = true
@sprites["overlay"].visible = true @sprites["overlay"].visible = true
@sprites["searchcursor"].visible = true @sprites["searchcursor"].visible = true

View File

@@ -980,7 +980,7 @@ def pbPokemonEditor
[_INTL("Height"), NonzeroLimitProperty.new(999), _INTL("Height of the Pokémon in 0.1 metres (e.g. 42 = 4.2m).")], [_INTL("Height"), NonzeroLimitProperty.new(999), _INTL("Height of the Pokémon in 0.1 metres (e.g. 42 = 4.2m).")],
[_INTL("Weight"), NonzeroLimitProperty.new(9999), _INTL("Weight of the Pokémon in 0.1 kilograms (e.g. 42 = 4.2kg).")], [_INTL("Weight"), NonzeroLimitProperty.new(9999), _INTL("Weight of the Pokémon in 0.1 kilograms (e.g. 42 = 4.2kg).")],
[_INTL("Color"), GameDataProperty.new(:BodyColor), _INTL("Pokémon's body color.")], [_INTL("Color"), GameDataProperty.new(:BodyColor), _INTL("Pokémon's body color.")],
[_INTL("Shape"), LimitProperty.new(14), _INTL("Body shape of this species (0-14).")], [_INTL("Shape"), GameDataProperty.new(:BodyShape), _INTL("Body shape of this species.")],
[_INTL("Habitat"), GameDataProperty.new(:Habitat), _INTL("The habitat of this species.")], [_INTL("Habitat"), GameDataProperty.new(:Habitat), _INTL("The habitat of this species.")],
[_INTL("Generation"), LimitProperty.new(99999), _INTL("The number of the generation the Pokémon debuted in.")], [_INTL("Generation"), LimitProperty.new(99999), _INTL("The number of the generation the Pokémon debuted in.")],
[_INTL("BattlerPlayerX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")], [_INTL("BattlerPlayerX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")],

View File

@@ -252,7 +252,7 @@ class GameDataProperty
end end
i += 1 i += 1
end end
return pbChooseList(commands, oldsetting, nil, -1) return pbChooseList(commands, oldsetting, oldsetting, -1)
end end
def defaultValue def defaultValue
@@ -1165,19 +1165,20 @@ class EvolutionsProperty
for i in 0...oldsetting.length for i in 0...oldsetting.length
realcmds.push([oldsetting[i][0],oldsetting[i][1],oldsetting[i][2],i]) realcmds.push([oldsetting[i][0],oldsetting[i][1],oldsetting[i][2],i])
end end
refreshlist = true; oldsel = -1 refreshlist = true
oldsel = -1
cmd = [0,0] cmd = [0,0]
loop do loop do
if refreshlist if refreshlist
realcmds.sort! { |a,b| a[3]<=>b[3] } realcmds.sort! { |a,b| a[3]<=>b[3] }
commands = [] commands = []
for i in 0...realcmds.length for i in 0...realcmds.length
if realcmds[i][0]<0 if realcmds[i][3]<0
commands.push(_INTL("[ADD EVOLUTION]")) commands.push(_INTL("[ADD EVOLUTION]"))
else else
level = realcmds[i][1] level = realcmds[i][2]
param_type = PBEvolution.getFunction(realcmds[i][0], "parameterType") param_type = PBEvolution.getFunction(realcmds[i][1], "parameterType")
has_param = !PBEvolution.hasFunction?(realcmds[i][0], "parameterType") || param_type != nil has_param = !PBEvolution.hasFunction?(realcmds[i][1], "parameterType") || param_type != nil
if has_param if has_param
if param_type && !GameData.const_defined?(param_type.to_sym) if param_type && !GameData.const_defined?(param_type.to_sym)
level = getConstantName(param_type, level) level = getConstantName(param_type, level)
@@ -1186,16 +1187,17 @@ class EvolutionsProperty
end end
level = "???" if !level || level.empty? level = "???" if !level || level.empty?
commands.push(_INTL("{1}: {2}, {3}", commands.push(_INTL("{1}: {2}, {3}",
GameData::Species.get(realcmds[i][2]).name, @methods[realcmds[i][0]], level.to_s)) GameData::Species.get(realcmds[i][0]).name, @methods[realcmds[i][1]], level.to_s))
else else
commands.push(_INTL("{1}: {2}", commands.push(_INTL("{1}: {2}",
GameData::Species.get(realcmds[i][2]).name, @methods[realcmds[i][0]])) GameData::Species.get(realcmds[i][0]).name, @methods[realcmds[i][1]]))
end end
end end
cmd[1] = i if oldsel>=0 && realcmds[i][3]==oldsel cmd[1] = i if oldsel>=0 && realcmds[i][3]==oldsel
end end
end end
refreshlist = false; oldsel = -1 refreshlist = false
oldsel = -1
cmd = pbCommands3(cmdwin,commands,-1,cmd[1],true) cmd = pbCommands3(cmdwin,commands,-1,cmd[1],true)
if cmd[0]==1 # Swap evolution up if cmd[0]==1 # Swap evolution up
if cmd[1]>0 && cmd[1]<realcmds.length-1 if cmd[1]>0 && cmd[1]<realcmds.length-1
@@ -1210,7 +1212,7 @@ class EvolutionsProperty
elsif cmd[0]==0 elsif cmd[0]==0
if cmd[1]>=0 if cmd[1]>=0
entry = realcmds[cmd[1]] entry = realcmds[cmd[1]]
if entry[0]==-1 # Add new evolution path if entry[3]==-1 # Add new evolution path
pbMessage(_INTL("Choose an evolved form, method and parameter.")) pbMessage(_INTL("Choose an evolved form, method and parameter."))
newspecies = pbChooseSpeciesList newspecies = pbChooseSpeciesList
if newspecies if newspecies
@@ -1244,16 +1246,16 @@ class EvolutionsProperty
(newparam.is_a?(Integer) && (newparam > 0 || (allow_zero && newparam == 0))) (newparam.is_a?(Integer) && (newparam > 0 || (allow_zero && newparam == 0)))
havemove = -1 havemove = -1
for i in 0...realcmds.length for i in 0...realcmds.length
havemove = realcmds[i][3] if realcmds[i][0]==newmethod && havemove = realcmds[i][3] if realcmds[i][0]==newspecies &&
realcmds[i][1]==newparam && realcmds[i][1]==newmethod &&
realcmds[i][2]==newspecies realcmds[i][2]==newparam
end end
if havemove>=0 if havemove>=0
oldsel = havemove oldsel = havemove
else else
maxid = -1 maxid = -1
for i in realcmds; maxid = [maxid,i[3]].max; end realcmds.each { |i| maxid = [maxid,i[3]].max }
realcmds.push([newmethod,newparam,newspecies,maxid+1]) realcmds.push([newspecies,newmethod,newparam,maxid+1])
oldsel = maxid+1 oldsel = maxid+1
end end
refreshlist = true refreshlist = true
@@ -1261,34 +1263,15 @@ class EvolutionsProperty
end end
end end
else # Edit evolution else # Edit evolution
cmd2 = pbMessage(_INTL("\\ts[]Do what with this evolution?"), case pbMessage(_INTL("\\ts[]Do what with this evolution?"),
[_INTL("Change species"),_INTL("Change method"), [_INTL("Change species"),_INTL("Change method"),
_INTL("Change parameter"),_INTL("Delete"),_INTL("Cancel")],5) _INTL("Change parameter"),_INTL("Delete"),_INTL("Cancel")],5)
if cmd2==0 # Change species when 0 # Change species
newspecies = pbChooseSpeciesList(entry[2]) newspecies = pbChooseSpeciesList(entry[0])
if newspecies if newspecies
havemove = -1 havemove = -1
for i in 0...realcmds.length for i in 0...realcmds.length
havemove = realcmds[i][3] if realcmds[i][0]==entry[0] && havemove = realcmds[i][3] if realcmds[i][0]==newspecies &&
realcmds[i][1]==entry[1] &&
realcmds[i][2]==newspecies
end
if havemove>=0
realcmds[cmd[1]] = nil
realcmds.compact!
oldsel = havemove
else
entry[2] = newspecies
oldsel = entry[3]
end
refreshlist = true
end
elsif cmd2==1 # Change method
newmethod = pbMessage(_INTL("Choose an evolution method."),@methods,-1,nil,entry[0])
if newmethod>0
havemove = -1
for i in 0...realcmds.length
havemove = realcmds[i][3] if realcmds[i][0]==newmethod &&
realcmds[i][1]==entry[1] && realcmds[i][1]==entry[1] &&
realcmds[i][2]==entry[2] realcmds[i][2]==entry[2]
end end
@@ -1296,35 +1279,54 @@ class EvolutionsProperty
realcmds[cmd[1]] = nil realcmds[cmd[1]] = nil
realcmds.compact! realcmds.compact!
oldsel = havemove oldsel = havemove
elsif newmethod != entry[0] else
entry[0] = newmethod entry[0] = newspecies
entry[1] = 0
oldsel = entry[3] oldsel = entry[3]
end end
refreshlist = true refreshlist = true
end end
elsif cmd2==2 # Change parameter when 1 # Change method
newmethod = pbMessage(_INTL("Choose an evolution method."),@methods,-1,nil,entry[1])
if newmethod>0
havemove = -1
for i in 0...realcmds.length
havemove = realcmds[i][3] if realcmds[i][0]==entry[0] &&
realcmds[i][1]==newmethod &&
realcmds[i][2]==entry[2]
end
if havemove>=0
realcmds[cmd[1]] = nil
realcmds.compact!
oldsel = havemove
elsif newmethod != entry[1]
entry[1] = newmethod
entry[2] = 0
oldsel = entry[3]
end
refreshlist = true
end
when 2 # Change parameter
newparam = -1 newparam = -1
param_type = PBEvolution.getFunction(entry[0], "parameterType") param_type = PBEvolution.getFunction(entry[1], "parameterType")
has_param = !PBEvolution.hasFunction?(entry[0], "parameterType") || param_type != nil has_param = !PBEvolution.hasFunction?(entry[1], "parameterType") || param_type != nil
if has_param if has_param
allow_zero = false allow_zero = false
case param_type case param_type
when :Item when :Item
newparam = pbChooseItemList(entry[1]) newparam = pbChooseItemList(entry[2])
when :Move when :Move
newparam = pbChooseMoveList(entry[1]) newparam = pbChooseMoveList(entry[2])
when :Species when :Species
newparam = pbChooseSpeciesList(entry[1]) newparam = pbChooseSpeciesList(entry[2])
when :Type when :Type
newparam = pbChooseTypeList(entry[1]) newparam = pbChooseTypeList(entry[2])
when :Ability when :Ability
newparam = pbChooseAbilityList(entry[1]) newparam = pbChooseAbilityList(entry[2])
else else
allow_zero = true allow_zero = true
params = ChooseNumberParams.new params = ChooseNumberParams.new
params.setRange(0,65535) params.setRange(0,65535)
params.setDefaultValue(entry[1]) params.setDefaultValue(entry[2])
params.setCancelValue(-1) params.setCancelValue(-1)
newparam = pbMessageChooseNumber(_INTL("Choose a parameter."),params) newparam = pbMessageChooseNumber(_INTL("Choose a parameter."),params)
end end
@@ -1333,15 +1335,15 @@ class EvolutionsProperty
havemove = -1 havemove = -1
for i in 0...realcmds.length for i in 0...realcmds.length
havemove = realcmds[i][3] if realcmds[i][0]==entry[0] && havemove = realcmds[i][3] if realcmds[i][0]==entry[0] &&
realcmds[i][1]==newparam && realcmds[i][1]==entry[1] &&
realcmds[i][2]==entry[2] realcmds[i][2]==newparam
end end
if havemove>=0 if havemove>=0
realcmds[cmd[1]] = nil realcmds[cmd[1]] = nil
realcmds.compact! realcmds.compact!
oldsel = havemove oldsel = havemove
else else
entry[1] = newparam entry[2] = newparam
oldsel = entry[3] oldsel = entry[3]
end end
refreshlist = true refreshlist = true
@@ -1349,7 +1351,7 @@ class EvolutionsProperty
else else
pbMessage(_INTL("This evolution method doesn't use a parameter.")) pbMessage(_INTL("This evolution method doesn't use a parameter."))
end end
elsif cmd2==3 # Delete when 3 # Delete
realcmds[cmd[1]] = nil realcmds[cmd[1]] = nil
realcmds.compact! realcmds.compact!
cmd[1] = [cmd[1],realcmds.length-1].min cmd[1] = [cmd[1],realcmds.length-1].min
@@ -1385,15 +1387,15 @@ class EvolutionsProperty
ret = "" ret = ""
for i in 0...value.length for i in 0...value.length
ret << "," if i>0 ret << "," if i>0
param = value[i][1] param = value[i][2]
param_type = PBEvolution.getFunction(value[i][0], "parameterType") param_type = PBEvolution.getFunction(value[i][1], "parameterType")
if param_type && !GameData.const_defined?(param_type.to_sym) if param_type && !GameData.const_defined?(param_type.to_sym)
param = getConstantName(param_type, param) param = getConstantName(param_type, param)
else else
param = param.to_s param = param.to_s
end end
param = "" if !param param = "" if !param
ret << sprintf("#{GameData::Species.get(value[i][2]).name},#{@methods[value[i][0]]},#{param}") ret << sprintf("#{GameData::Species.get(value[i][0]).name},#{@methods[value[i][1]]},#{param}")
end end
return ret return ret
end end

View File

@@ -301,7 +301,7 @@ module Compiler
f.write(sprintf("Height = %.1f\r\n", species.height / 10.0)) f.write(sprintf("Height = %.1f\r\n", species.height / 10.0))
f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0)) f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0))
f.write(sprintf("Color = %s\r\n", species.color)) f.write(sprintf("Color = %s\r\n", species.color))
f.write(sprintf("Shape = %d\r\n", species.shape)) f.write(sprintf("Shape = %s\r\n", GameData::BodyShape.get(species.shape).id))
f.write(sprintf("Habitat = %s\r\n", species.habitat)) if species.habitat != :None f.write(sprintf("Habitat = %s\r\n", species.habitat)) if species.habitat != :None
f.write(sprintf("Kind = %s\r\n", species.real_category)) f.write(sprintf("Kind = %s\r\n", species.real_category))
f.write(sprintf("Pokedex = %s\r\n", species.real_pokedex_entry)) f.write(sprintf("Pokedex = %s\r\n", species.real_pokedex_entry))
@@ -343,6 +343,7 @@ module Compiler
f.write(sprintf("Incense = %s\r\n", species.incense)) if species.incense f.write(sprintf("Incense = %s\r\n", species.incense)) if species.incense
end end
} }
pbSetWindowText(nil)
Graphics.update Graphics.update
end end
@@ -396,7 +397,9 @@ module Compiler
f.write(sprintf("Height = %.1f\r\n", species.height / 10.0)) if species.height != base_species.height f.write(sprintf("Height = %.1f\r\n", species.height / 10.0)) if species.height != base_species.height
f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0)) if species.weight != base_species.weight f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0)) if species.weight != base_species.weight
f.write(sprintf("Color = %s\r\n", species.color)) if species.color != base_species.color f.write(sprintf("Color = %s\r\n", species.color)) if species.color != base_species.color
f.write(sprintf("Shape = %d\r\n", species.shape)) if species.shape != base_species.shape if GameData::BodyShape.get(species.shape).id != GameData::BodyShape.get(base_species.shape).id
f.write(sprintf("Shape = %s\r\n", GameData::BodyShape.get(species.shape).id))
end
if species.habitat != :None && species.habitat != base_species.habitat if species.habitat != :None && species.habitat != base_species.habitat
f.write(sprintf("Habitat = %s\r\n", species.habitat)) f.write(sprintf("Habitat = %s\r\n", species.habitat))
end end
@@ -442,6 +445,7 @@ module Compiler
end end
end end
} }
pbSetWindowText(nil)
Graphics.update Graphics.update
end end
@@ -613,6 +617,7 @@ module Compiler
end end
end end
} }
pbSetWindowText(nil)
Graphics.update Graphics.update
end end

View File

@@ -1,471 +1,291 @@
# See the documentation on the wiki to learn how to edit this file. # See the documentation on the wiki to learn how to edit this file.
#------------------------------- #-------------------------------
002 # Lappet Town [002] # Lappet Town
25,10,10 Water,10
Water 60,TENTACOOL,14,19
TENTACOOL,14,19 30,MANTYKE,15,16
MANTYKE,15,16 10,REMORAID,14,16
REMORAID,14,16
REMORAID,14,16
REMORAID,14,16
OldRod OldRod
MAGIKARP,16,19 100,MAGIKARP,16,19
MAGIKARP,16,19
GoodRod GoodRod
BARBOACH,17,18 60,BARBOACH,17,18
SHELLDER,16,19 20,KRABBY,15,16
KRABBY,15,16 20,SHELLDER,16,19
SuperRod SuperRod
CHINCHOU,17,19 40,CHINCHOU,17,19
QWILFISH,16,19 40,QWILFISH,16,19
CORSOLA,15,18 15,CORSOLA,15,18
STARYU,15,17 5,STARYU,15,17
STARYU,15,17
#------------------------------- #-------------------------------
005 # Route 1 [005] # Route 1
25,10,10 Land,25
Land 40,PIDGEY,11,14
RATTATA,11,14 40,RATTATA,11,14
PIDGEY,11,14 9,PIDGEY,11,13
RATTATA,11,14 9,RATTATA,11,13
PIDGEY,11,14 1,PIDGEY,14
RATTATA,11,14 1,RATTATA,14
PIDGEY,11,14 LandNight,25
RATTATA,11,13 39,RATTATA,10,14
PIDGEY,11,13 30,HOOTHOOT,10,13
RATTATA,11,13 20,SPINARAK,8,12
PIDGEY,11,13 9,HOOTHOOT,10,14
RATTATA,14 1,HOOTHOOT,14
PIDGEY,14 1,RATTATA,15
LandNight
RATTATA,10,14
HOOTHOOT,10,13
RATTATA,10,14
HOOTHOOT,10,13
SPINARAK,8,12
SPINARAK,8,12
RATTATA,10,14
HOOTHOOT,10,14
RATTATA,10,14
HOOTHOOT,10,14
RATTATA,15
HOOTHOOT,14
#------------------------------- #-------------------------------
021 # Route 2 [021] # Route 2
25,10,10 Land,25
Land 50,RATTATA,12,15
RATTATA,12,15 30,POOCHYENA,11,15
RATTATA,12,15 10,SHINX,10,12
RATTATA,12,15 10,SHINX,10,11
POOCHYENA,11,15 Water,10
POOCHYENA,11,15 60,MAGIKARP,7,10
POOCHYENA,11,15 30,GOLDEEN,11,14
SHINX,10,12 10,STARYU,12,15
SHINX,10,12
SHINX,10,11
SHINX,10,11
SHINX,10,11
SHINX,10,11
Water
MAGIKARP,7,10
GOLDEEN,11,14
STARYU,12,15
STARYU,12,15
STARYU,12,15
OldRod OldRod
MAGIKARP,7,10 70,MAGIKARP,7,10
MAGIKARP,9,15 30,MAGIKARP,9,15
GoodRod GoodRod
GOLDEEN,12,14 60,GOLDEEN,12,14
FINNEON,12,15 20,FINNEON,12,15
MAGIKARP,12,17 20,MAGIKARP,12,17
SuperRod SuperRod
GOLDEEN,12,14 40,FINNEON,12,15
FINNEON,12,15 40,GOLDEEN,12,14
STARYU,12,15 15,STARYU,12,15
STARYU,14,17 5,STARYU,14,17
STARYU,14,17
HeadbuttLow HeadbuttLow
PINECO,11,13 50,PINECO,11,13
LEDYBA,6,8 30,LEDYBA,6,8
PINECO,11,13 19,SPINARAK,9,12
SPINARAK,9,12 1,MUNCHLAX,11,14
LEDYBA,6,8
SPINARAK,9,12
SPINARAK,9,12
MUNCHLAX,11,14
HeadbuttHigh HeadbuttHigh
PINECO,11,13 50,PINECO,11,13
WURMPLE,6,8 30,WURMPLE,6,8
PINECO,11,13 20,SPINARAK,9,12
SPINARAK,9,12
WURMPLE,6,8
SPINARAK,9,12
SPINARAK,9,12
SPINARAK,9,12
#------------------------------- #-------------------------------
028 # Natural Park [028] # Natural Park
25,10,10 Land,25
Land 20,CATERPIE,10
CATERPIE,10 20,SUNKERN,12
WEEDLE,10 20,WEEDLE,10
PIDGEY,10,14 15,PIDGEY,10,14
PIDGEY,12,14 15,PIDGEY,12,14
SUNKERN,12 5,KAKUNA,10
SUNKERN,12 5,METAPOD,10
METAPOD,10 LandNight,25
KAKUNA,10 30,HOOTHOOT,10,14
PIDGEY,10,14 30,SPINARAK,10,15
PIDGEY,12,14 20,PINECO,9,13
PIDGEY,10,14 10,DROWZEE,9,15
PIDGEY,12,14 10,NATU,12,14
LandMorning LandMorning,25
CATERPIE,10,12 25,CATERPIE,10,12
WEEDLE,10,12 25,WEEDLE,10,12
PIDGEY,10,14 20,PIDGEY,10,14
PIDGEY,10,14 15,KAKUNA,10
METAPOD,10 15,METAPOD,10
KAKUNA,10 BugContest,25
METAPOD,10 20,CATERPIE,7,18
KAKUNA,10 20,WEEDLE,7,18
CATERPIE,10,12 10,KAKUNA,9,18
WEEDLE,10,12 10,METAPOD,9,18
CATERPIE,10,12 10,PARAS,10,17
WEEDLE,10,12 10,VENONAT,10,16
LandNight 5,BEEDRILL,12,15
HOOTHOOT,10,14 5,BUTTERFREE,12,15
SPINARAK,10,15 5,PINSIR,13,14
HOOTHOOT,10,14 5,SCYTHER,13,14
SPINARAK,10,15
PINECO,9,13
PINECO,9,13
NATU,12,14
NATU,12,14
DROWZEE,9,15
DROWZEE,9,15
DROWZEE,9,15
DROWZEE,9,15
BugContest
CATERPIE,7,18
WEEDLE,7,18
METAPOD,9,18
KAKUNA,9,18
PARAS,10,17
VENONAT,10,16
BUTTERFREE,12,15
BEEDRILL,12,15
SCYTHER,13,14
PINSIR,13,14
SCYTHER,13,14
PINSIR,13,14
#------------------------------- #-------------------------------
031 # Route 3 [031] # Route 3
25,10,10 Land,25
Land 30,NIDORANfE,12,15
NIDORANfE,12,15 30,NIDORANmA,12,15
NIDORANmA,12,15 20,PIKACHU,14,17
NIDORANfE,12,15 10,EEVEE,15
NIDORANmA,12,15 10,PONYTA,13,15
PIKACHU,14,17 Water,10
PIKACHU,14,17 60,SURSKIT,13,14
PONYTA,13,15 35,LOTAD,14
PONYTA,13,15 5,LOTAD,15
EEVEE,15
EEVEE,15
EEVEE,15
EEVEE,15
Water
SURSKIT,13,14
LOTAD,14
LOTAD,14
LOTAD,15
LOTAD,15
RockSmash
NOSEPASS,13,14
GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
OldRod OldRod
MAGIKARP,6,11 70,MAGIKARP,6,11
MAGIKARP,10,17 30,MAGIKARP,10,17
GoodRod GoodRod
POLIWAG,12,15 60,POLIWAG,12,15
PSYDUCK,11,14 20,PSYDUCK,11,14
WOOPER,13,17 20,WOOPER,13,17
SuperRod SuperRod
CHINCHOU,11,12 40,CHINCHOU,11,12
REMORAID,12,14 40,REMORAID,12,14
LUVDISC,10,16 20,LUVDISC,10,16
LUVDISC,10,16 RockSmash
LUVDISC,10,16 60,NOSEPASS,13,14
40,GEODUDE,12,15
HeadbuttLow HeadbuttLow
PINECO,14,17 30,PINECO,14,17
COMBEE,15,17 25,COMBEE,15,17
PINECO,14,16 20,PINECO,14,16
HERACROSS,16,18 10,HERACROSS,16,18
COMBEE,15,16 9,HERACROSS,16,17
HERACROSS,16,17 5,COMBEE,15,16
HERACROSS,16,17 1,MUNCHLAX,13,18
MUNCHLAX,13,18
HeadbuttHigh HeadbuttHigh
SEEDOT,14,17 50,SEEDOT,14,17
SHROOMISH,14,17 30,SHROOMISH,14,17
SEEDOT,14,17 20,BURMY,12,15
BURMY,12,15
SHROOMISH,14,17
BURMY,12,15
BURMY,12,15
BURMY,12,15
#------------------------------- #-------------------------------
034 # Ice Cave [034] # Ice Cave
25,10,10 Cave,10
Cave 40,SWINUB,16,18
SWINUB,16,18 20,SNEASEL,14,16
SWINUB,16,18 20,SNORUNT,12,15
SNEASEL,14,16 10,SMOOCHUM,11,14
SNEASEL,14,16 10,SNOVER,14
SNORUNT,12,15
SNORUNT,12,15
SNOVER,14
SNOVER,14
SMOOCHUM,11,14
SMOOCHUM,11,14
SMOOCHUM,11,14
SMOOCHUM,11,14
#------------------------------- #-------------------------------
039 # Route 4 [039] # Route 4
25,10,10 Land,25
Land 50,SHELLOS_1,12,15
SHELLOS_1,12,15 40,GRIMER,13,15
SHELLOS_1,12,15 10,MURKROW,12,14
SHELLOS_1,12,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
#------------------------------- #-------------------------------
041 # Route 5 [041] # Route 5
25,10,10 Land,25
Land 50,GRIMER,13,15
GRIMER,13,15 40,SPEAROW,13,16
GRIMER,13,15 10,SLUGMA,13,14
GRIMER,13,15
SPEAROW,13,16
SPEAROW,13,16
SPEAROW,13,16
SPEAROW,13,16
SPEAROW,13,16
SLUGMA,13,14
SLUGMA,13,14
SLUGMA,13,14
SLUGMA,13,14
#------------------------------- #-------------------------------
044 # Route 6 [044] # Route 6
25,10,10 Land,25
Land 50,SHELLOS_1,12,15
SHELLOS_1,12,15 40,GRIMER,13,15
SHELLOS_1,12,15 10,MURKROW,12,14
SHELLOS_1,12,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
#------------------------------- #-------------------------------
047 # Route 7 [047] # Route 7
25,10,10 Land,25
Land 50,SHELLOS,12,15
SHELLOS,12,15 30,BIDOOF,14,17
SHELLOS,12,15 10,MURKROW,12,14
SHELLOS,12,15 10,WURMPLE,9,12
BIDOOF,14,17
BIDOOF,14,17
BIDOOF,14,17
MURKROW,12,14
MURKROW,12,14
WURMPLE,9,12
WURMPLE,9,12
WURMPLE,9,12
WURMPLE,9,12
RockSmash RockSmash
NOSEPASS,13,14 90,NOSEPASS,13,14
NOSEPASS,13,14 10,GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
#------------------------------- #-------------------------------
049 # Rock Cave [049] # Rock Cave
25,10,10 Cave,10
Cave 20,MAGNETON,14,16
NOSEPASS,14,15 20,MAGNETON,14,17
NOSEPASS,13,14 20,NOSEPASS,14,15
MAGNETON,14,17 20,NOSEPASS,13,14
MAGNETON,14,17 10,GEODUDE,13,15
MAGNETON,14,16 10,MAWILE,14,16
MAGNETON,14,16
GEODUDE,13,15
GEODUDE,13,15
MAWILE,14,16
MAWILE,14,16
MAWILE,14,16
MAWILE,14,16
#------------------------------- #-------------------------------
050 # Rock Cave [050] # Rock Cave
25,10,10 Cave,10
Cave 20,MAGNETON,14,16
NOSEPASS,14,15 20,MAGNETON,14,17
NOSEPASS,13,14 20,NOSEPASS,14,15
MAGNETON,14,17 20,NOSEPASS,13,14
MAGNETON,14,17 10,BURMY,14,16
MAGNETON,14,16 10,GEODUDE,13,15
MAGNETON,14,16
GEODUDE,13,15
GEODUDE,13,15
BURMY,14,16
BURMY,14,16
BURMY,14,16
BURMY,14,16
#------------------------------- #-------------------------------
051 # Dungeon [051] # Dungeon
25,10,10 Cave,10
Cave 20,CHINGLING,1
PICHU,1 20,CLEFFA,1
CLEFFA,1 20,IGGLYBUFF,1
IGGLYBUFF,1 20,PICHU,1
IGGLYBUFF,1 10,RIOLU,1
CHINGLING,1 10,TYROGUE,1
CHINGLING,1
RIOLU,1
RIOLU,1
TYROGUE,1
TYROGUE,1
TYROGUE,1
TYROGUE,1
#------------------------------- #-------------------------------
066 # Safari Zone [066] # Safari Zone
25,10,10 Land,25
Land 20,ABRA,12,15
NIDORANfE,15,16 20,DODUO,13,15
NIDORANmA,15,16 20,NIDORANfE,15,16
DODUO,13,15 20,NIDORANmA,15,16
DODUO,13,15 10,HOPPIP,13,17
ABRA,12,15 10,TANGELA,14,16
ABRA,12,15
TANGELA,14,16
TANGELA,14,16
HOPPIP,13,17
HOPPIP,13,17
HOPPIP,13,17
HOPPIP,13,17
#------------------------------- #-------------------------------
068 # Safari Zone [068] # Safari Zone
25,10,10 Land,25
Land 20,EXEGGCUTE,15,18
RHYHORN,16,18 20,RHYHORN,16,18
EXEGGCUTE,15,18 10,AIPOM,14,17
VENONAT,15,17 10,GIRAFARIG,16,17
VENONAT,15,18 10,VENONAT,15,17
AIPOM,14,17 10,VENONAT,15,18
GIRAFARIG,16,17 5,HERACROSS,15,17
TAUROS,15,16 5,TAUROS,15,16
HERACROSS,15,17 4,PINSIR,16
SCYTHER,16 4,SCYTHER,16
PINSIR,16 1,CHANSEY,17
KANGASKHAN,19 1,KANGASKHAN,19
CHANSEY,17 Water,10
Water 60,PSYDUCK,16,18
PSYDUCK,16,18 30,MARILL,15,18
MARILL,15,18 5,BUIZEL,15,17
SLOWPOKE,14,16 5,SLOWPOKE,14,16
BUIZEL,15,17
BUIZEL,15,17
OldRod OldRod
MAGIKARP,17,21 70,MAGIKARP,17,21
MAGIKARP,17,20 30,MAGIKARP,17,20
GoodRod GoodRod
MAGIKARP,16,20 60,MAGIKARP,16,20
FEEBAS,16,20 20,FEEBAS,16,20
POLIWAG,17,18 20,POLIWAG,17,18
SuperRod SuperRod
GOLDEEN,16,18 40,GOLDEEN,16,18
REMORAID,17,19 40,REMORAID,17,19
CARVANHA,16,17 15,CARVANHA,16,17
FINNEON,15,18 4,FINNEON,15,18
DRATINI,17 1,DRATINI,17
#------------------------------- #-------------------------------
069 # Route 8 [069] # Route 8
25,10,10 Land,25
Land 20,MAREEP,16,18
ODDISH,15,17 20,ODDISH,15,17
MAREEP,16,18 13,BONSLY,14,16
LOTAD,15,17 10,DITTO,15,17
LOTAD,15,18 10,DITTO,16,18
DITTO,15,17 10,LOTAD,15,18
DITTO,16,18 10,LOTAD,15,17
BONSLY,14,17 5,BONSLY,14,17
BONSLY,14,16 1,BONSLY,15,16
BONSLY,14,16 1,BONSLY,15
BONSLY,14,16 Water,10
BONSLY,15,16 60,TENTACOOL,14,19
BONSLY,15 30,MANTYKE,15,16
Water 10,REMORAID,14,16
TENTACOOL,14,19
MANTYKE,15,16
REMORAID,14,16
REMORAID,14,16
REMORAID,14,16
OldRod OldRod
MAGIKARP,16,19 100,MAGIKARP,16,19
MAGIKARP,16,19
GoodRod GoodRod
BARBOACH,17,18 60,BARBOACH,17,18
SHELLDER,16,19 20,KRABBY,15,16
KRABBY,15,16 20,SHELLDER,16,19
SuperRod SuperRod
CHINCHOU,17,19 40,CHINCHOU,17,19
QWILFISH,16,19 40,QWILFISH,16,19
CORSOLA,15,18 15,CORSOLA,15,18
STARYU,15,17 5,STARYU,15,17
STARYU,15,17
#------------------------------- #-------------------------------
070 # Underwater [070] # Underwater
25,10,10 Land,25
Land 20,CHINCHOU,17,21
CLAMPERL,18,20 20,CLAMPERL,18,20
SHELLDER,18,20 20,SHELLDER,18,20
CLAMPERL,18,19 10,CLAMPERL,18,19
SHELLDER,18,19 10,CORSOLA,17,20
CHINCHOU,17,21 10,RELICANTH,16,19
CHINCHOU,17,21 10,SHELLDER,18,19
CORSOLA,17,20
CORSOLA,17,20
RELICANTH,16,19
RELICANTH,16,19
RELICANTH,16,19
RELICANTH,16,19
#------------------------------- #-------------------------------
075 # Tiall Region [075] # Tiall Region
25,10,10 Land,25
Land 20,GEODUDE,11,14
RATTATA,11,14 20,RATTATA,11,14
GEODUDE,11,14 10,CUBONE,11,14
SANDSHREW,11,14 10,DIGLETT,11,14
VULPIX,11,14 10,MEOWTH,11,14
DIGLETT,11,14 10,PIKACHU,11,14
MEOWTH,11,14 10,SANDSHREW,11,14
PIKACHU,11,14 10,VULPIX,11,14
PIKACHU,11,14
CUBONE,11,14
CUBONE,11,14
CUBONE,11,14
CUBONE,11,14

File diff suppressed because it is too large Load Diff

View File

@@ -231,7 +231,7 @@ HiddenAbility = LEVITATE
TutorMoves = AERIALACE,AIRCUTTER,ANCIENTPOWER,AQUATAIL,BULLDOZE,CALMMIND,CHARGEBEAM,CUT,DARKPULSE,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,FURYCUTTER,GIGAIMPACT,GRAVITY,HEADBUTT,HIDDENPOWER,HONECLAWS,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,MUDSLAP,OMINOUSWIND,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNORE,SPITE,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,TWISTER,WILLOWISP TutorMoves = AERIALACE,AIRCUTTER,ANCIENTPOWER,AQUATAIL,BULLDOZE,CALMMIND,CHARGEBEAM,CUT,DARKPULSE,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,FURYCUTTER,GIGAIMPACT,GRAVITY,HEADBUTT,HIDDENPOWER,HONECLAWS,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,MUDSLAP,OMINOUSWIND,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNORE,SPITE,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,TWISTER,WILLOWISP
Height = 6.9 Height = 6.9
Weight = 650.0 Weight = 650.0
Shape = 2 Shape = Serpentine
BattlerEnemyX = -2 BattlerEnemyX = -2
BattlerEnemyY = -8 BattlerEnemyY = -8
#------------------------------- #-------------------------------
@@ -359,7 +359,7 @@ EffortPoints = 0,0,0,3,0,0
Abilities = REGENERATOR Abilities = REGENERATOR
HiddenAbility = REGENERATOR HiddenAbility = REGENERATOR
Height = 1.4 Height = 1.4
Shape = 9 Shape = Winged
BattlerPlayerX = -2 BattlerPlayerX = -2
BattlerEnemyX = 8 BattlerEnemyX = 8
BattlerEnemyY = 11 BattlerEnemyY = 11
@@ -371,7 +371,7 @@ EffortPoints = 0,0,0,0,3,0
Abilities = VOLTABSORB Abilities = VOLTABSORB
HiddenAbility = VOLTABSORB HiddenAbility = VOLTABSORB
Height = 3.0 Height = 3.0
Shape = 6 Shape = BipedalTail
BattlerPlayerX = -3 BattlerPlayerX = -3
BattlerEnemyX = 2 BattlerEnemyX = 2
BattlerEnemyY = 5 BattlerEnemyY = 5
@@ -383,7 +383,7 @@ EffortPoints = 0,3,0,0,0,0
Abilities = INTIMIDATE Abilities = INTIMIDATE
HiddenAbility = INTIMIDATE HiddenAbility = INTIMIDATE
Height = 1.3 Height = 1.3
Shape = 8 Shape = Quadruped
BattlerPlayerX = -8 BattlerPlayerX = -8
BattlerEnemyX = 3 BattlerEnemyX = 3
BattlerEnemyY = 14 BattlerEnemyY = 14

View File

@@ -1,471 +1,291 @@
# See the documentation on the wiki to learn how to edit this file. # See the documentation on the wiki to learn how to edit this file.
#------------------------------- #-------------------------------
002 # Lappet Town [002] # Lappet Town
25,10,10 Water,10
Water 60,TENTACOOL,14,19
TENTACOOL,14,19 30,MANTYKE,15,16
MANTYKE,15,16 10,REMORAID,14,16
REMORAID,14,16
REMORAID,14,16
REMORAID,14,16
OldRod OldRod
MAGIKARP,16,19 100,MAGIKARP,16,19
MAGIKARP,16,19
GoodRod GoodRod
BARBOACH,17,18 60,BARBOACH,17,18
SHELLDER,16,19 20,KRABBY,15,16
KRABBY,15,16 20,SHELLDER,16,19
SuperRod SuperRod
CHINCHOU,17,19 40,CHINCHOU,17,19
QWILFISH,16,19 40,QWILFISH,16,19
CORSOLA,15,18 15,CORSOLA,15,18
STARYU,15,17 5,STARYU,15,17
STARYU,15,17
#------------------------------- #-------------------------------
005 # Route 1 [005] # Route 1
25,10,10 Land,25
Land 40,PIDGEY,11,14
RATTATA,11,14 40,RATTATA,11,14
PIDGEY,11,14 9,PIDGEY,11,13
RATTATA,11,14 9,RATTATA,11,13
PIDGEY,11,14 1,PIDGEY,14
RATTATA,11,14 1,RATTATA,14
PIDGEY,11,14 LandNight,25
RATTATA,11,13 39,RATTATA,10,14
PIDGEY,11,13 30,HOOTHOOT,10,13
RATTATA,11,13 20,SPINARAK,8,12
PIDGEY,11,13 9,HOOTHOOT,10,14
RATTATA,14 1,HOOTHOOT,14
PIDGEY,14 1,RATTATA,15
LandNight
RATTATA,10,14
HOOTHOOT,10,13
RATTATA,10,14
HOOTHOOT,10,13
SPINARAK,8,12
SPINARAK,8,12
RATTATA,10,14
HOOTHOOT,10,14
RATTATA,10,14
HOOTHOOT,10,14
RATTATA,15
HOOTHOOT,14
#------------------------------- #-------------------------------
021 # Route 2 [021] # Route 2
25,10,10 Land,25
Land 50,RATTATA,12,15
RATTATA,12,15 30,POOCHYENA,11,15
RATTATA,12,15 10,SHINX,10,12
RATTATA,12,15 10,SHINX,10,11
POOCHYENA,11,15 Water,10
POOCHYENA,11,15 60,MAGIKARP,7,10
POOCHYENA,11,15 30,GOLDEEN,11,14
SHINX,10,12 10,STARYU,12,15
SHINX,10,12
SHINX,10,11
SHINX,10,11
SHINX,10,11
SHINX,10,11
Water
MAGIKARP,7,10
GOLDEEN,11,14
STARYU,12,15
STARYU,12,15
STARYU,12,15
OldRod OldRod
MAGIKARP,7,10 70,MAGIKARP,7,10
MAGIKARP,9,15 30,MAGIKARP,9,15
GoodRod GoodRod
GOLDEEN,12,14 60,GOLDEEN,12,14
FINNEON,12,15 20,FINNEON,12,15
MAGIKARP,12,17 20,MAGIKARP,12,17
SuperRod SuperRod
GOLDEEN,12,14 40,FINNEON,12,15
FINNEON,12,15 40,GOLDEEN,12,14
STARYU,12,15 15,STARYU,12,15
STARYU,14,17 5,STARYU,14,17
STARYU,14,17
HeadbuttLow HeadbuttLow
PINECO,11,13 50,PINECO,11,13
LEDYBA,6,8 30,LEDYBA,6,8
PINECO,11,13 19,SPINARAK,9,12
SPINARAK,9,12 1,MUNCHLAX,11,14
LEDYBA,6,8
SPINARAK,9,12
SPINARAK,9,12
MUNCHLAX,11,14
HeadbuttHigh HeadbuttHigh
PINECO,11,13 50,PINECO,11,13
WURMPLE,6,8 30,WURMPLE,6,8
PINECO,11,13 20,SPINARAK,9,12
SPINARAK,9,12
WURMPLE,6,8
SPINARAK,9,12
SPINARAK,9,12
SPINARAK,9,12
#------------------------------- #-------------------------------
028 # Natural Park [028] # Natural Park
25,10,10 Land,25
Land 20,CATERPIE,10
CATERPIE,10 20,SUNKERN,12
WEEDLE,10 20,WEEDLE,10
PIDGEY,10,14 15,PIDGEY,10,14
PIDGEY,12,14 15,PIDGEY,12,14
SUNKERN,12 5,KAKUNA,10
SUNKERN,12 5,METAPOD,10
METAPOD,10 LandNight,25
KAKUNA,10 30,HOOTHOOT,10,14
PIDGEY,10,14 30,SPINARAK,10,15
PIDGEY,12,14 20,PINECO,9,13
PIDGEY,10,14 10,DROWZEE,9,15
PIDGEY,12,14 10,NATU,12,14
LandMorning LandMorning,25
CATERPIE,10,12 25,CATERPIE,10,12
WEEDLE,10,12 25,WEEDLE,10,12
PIDGEY,10,14 20,PIDGEY,10,14
PIDGEY,10,14 15,KAKUNA,10
METAPOD,10 15,METAPOD,10
KAKUNA,10 BugContest,25
METAPOD,10 20,CATERPIE,7,18
KAKUNA,10 20,WEEDLE,7,18
CATERPIE,10,12 10,KAKUNA,9,18
WEEDLE,10,12 10,METAPOD,9,18
CATERPIE,10,12 10,PARAS,10,17
WEEDLE,10,12 10,VENONAT,10,16
LandNight 5,BEEDRILL,12,15
HOOTHOOT,10,14 5,BUTTERFREE,12,15
SPINARAK,10,15 5,PINSIR,13,14
HOOTHOOT,10,14 5,SCYTHER,13,14
SPINARAK,10,15
PINECO,9,13
PINECO,9,13
NATU,12,14
NATU,12,14
DROWZEE,9,15
DROWZEE,9,15
DROWZEE,9,15
DROWZEE,9,15
BugContest
CATERPIE,7,18
WEEDLE,7,18
METAPOD,9,18
KAKUNA,9,18
PARAS,10,17
VENONAT,10,16
BUTTERFREE,12,15
BEEDRILL,12,15
SCYTHER,13,14
PINSIR,13,14
SCYTHER,13,14
PINSIR,13,14
#------------------------------- #-------------------------------
031 # Route 3 [031] # Route 3
25,10,10 Land,25
Land 30,NIDORANfE,12,15
NIDORANfE,12,15 30,NIDORANmA,12,15
NIDORANmA,12,15 20,PIKACHU,14,17
NIDORANfE,12,15 10,EEVEE,15
NIDORANmA,12,15 10,PONYTA,13,15
PIKACHU,14,17 Water,10
PIKACHU,14,17 60,SURSKIT,13,14
PONYTA,13,15 35,LOTAD,14
PONYTA,13,15 5,LOTAD,15
EEVEE,15
EEVEE,15
EEVEE,15
EEVEE,15
Water
SURSKIT,13,14
LOTAD,14
LOTAD,14
LOTAD,15
LOTAD,15
RockSmash
NOSEPASS,13,14
GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
OldRod OldRod
MAGIKARP,6,11 70,MAGIKARP,6,11
MAGIKARP,10,17 30,MAGIKARP,10,17
GoodRod GoodRod
POLIWAG,12,15 60,POLIWAG,12,15
PSYDUCK,11,14 20,PSYDUCK,11,14
WOOPER,13,17 20,WOOPER,13,17
SuperRod SuperRod
CHINCHOU,11,12 40,CHINCHOU,11,12
REMORAID,12,14 40,REMORAID,12,14
LUVDISC,10,16 20,LUVDISC,10,16
LUVDISC,10,16 RockSmash
LUVDISC,10,16 60,NOSEPASS,13,14
40,GEODUDE,12,15
HeadbuttLow HeadbuttLow
PINECO,14,17 30,PINECO,14,17
COMBEE,15,17 25,COMBEE,15,17
PINECO,14,16 20,PINECO,14,16
HERACROSS,16,18 10,HERACROSS,16,18
COMBEE,15,16 9,HERACROSS,16,17
HERACROSS,16,17 5,COMBEE,15,16
HERACROSS,16,17 1,MUNCHLAX,13,18
MUNCHLAX,13,18
HeadbuttHigh HeadbuttHigh
SEEDOT,14,17 50,SEEDOT,14,17
SHROOMISH,14,17 30,SHROOMISH,14,17
SEEDOT,14,17 20,BURMY,12,15
BURMY,12,15
SHROOMISH,14,17
BURMY,12,15
BURMY,12,15
BURMY,12,15
#------------------------------- #-------------------------------
034 # Ice Cave [034] # Ice Cave
25,10,10 Cave,10
Cave 40,SWINUB,16,18
SWINUB,16,18 20,SNEASEL,14,16
SWINUB,16,18 20,SNORUNT,12,15
SNEASEL,14,16 10,SMOOCHUM,11,14
SNEASEL,14,16 10,SNOVER,14
SNORUNT,12,15
SNORUNT,12,15
SNOVER,14
SNOVER,14
SMOOCHUM,11,14
SMOOCHUM,11,14
SMOOCHUM,11,14
SMOOCHUM,11,14
#------------------------------- #-------------------------------
039 # Route 4 [039] # Route 4
25,10,10 Land,25
Land 50,SHELLOS_1,12,15
SHELLOS_1,12,15 40,GRIMER,13,15
SHELLOS_1,12,15 10,MURKROW,12,14
SHELLOS_1,12,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
#------------------------------- #-------------------------------
041 # Route 5 [041] # Route 5
25,10,10 Land,25
Land 50,GRIMER,13,15
GRIMER,13,15 40,SPEAROW,13,16
GRIMER,13,15 10,SLUGMA,13,14
GRIMER,13,15
SPEAROW,13,16
SPEAROW,13,16
SPEAROW,13,16
SPEAROW,13,16
SPEAROW,13,16
SLUGMA,13,14
SLUGMA,13,14
SLUGMA,13,14
SLUGMA,13,14
#------------------------------- #-------------------------------
044 # Route 6 [044] # Route 6
25,10,10 Land,25
Land 50,SHELLOS_1,12,15
SHELLOS_1,12,15 40,GRIMER,13,15
SHELLOS_1,12,15 10,MURKROW,12,14
SHELLOS_1,12,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
GRIMER,13,15
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
MURKROW,12,14
#------------------------------- #-------------------------------
047 # Route 7 [047] # Route 7
25,10,10 Land,25
Land 50,SHELLOS,12,15
SHELLOS,12,15 30,BIDOOF,14,17
SHELLOS,12,15 10,MURKROW,12,14
SHELLOS,12,15 10,WURMPLE,9,12
BIDOOF,14,17
BIDOOF,14,17
BIDOOF,14,17
MURKROW,12,14
MURKROW,12,14
WURMPLE,9,12
WURMPLE,9,12
WURMPLE,9,12
WURMPLE,9,12
RockSmash RockSmash
NOSEPASS,13,14 90,NOSEPASS,13,14
NOSEPASS,13,14 10,GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
GEODUDE,12,15
#------------------------------- #-------------------------------
049 # Rock Cave [049] # Rock Cave
25,10,10 Cave,10
Cave 20,MAGNETON,14,16
NOSEPASS,14,15 20,MAGNETON,14,17
NOSEPASS,13,14 20,NOSEPASS,14,15
MAGNETON,14,17 20,NOSEPASS,13,14
MAGNETON,14,17 10,GEODUDE,13,15
MAGNETON,14,16 10,MAWILE,14,16
MAGNETON,14,16
GEODUDE,13,15
GEODUDE,13,15
MAWILE,14,16
MAWILE,14,16
MAWILE,14,16
MAWILE,14,16
#------------------------------- #-------------------------------
050 # Rock Cave [050] # Rock Cave
25,10,10 Cave,10
Cave 20,MAGNETON,14,16
NOSEPASS,14,15 20,MAGNETON,14,17
NOSEPASS,13,14 20,NOSEPASS,14,15
MAGNETON,14,17 20,NOSEPASS,13,14
MAGNETON,14,17 10,BURMY,14,16
MAGNETON,14,16 10,GEODUDE,13,15
MAGNETON,14,16
GEODUDE,13,15
GEODUDE,13,15
BURMY,14,16
BURMY,14,16
BURMY,14,16
BURMY,14,16
#------------------------------- #-------------------------------
051 # Dungeon [051] # Dungeon
25,10,10 Cave,10
Cave 20,CHINGLING,1
PICHU,1 20,CLEFFA,1
CLEFFA,1 20,IGGLYBUFF,1
IGGLYBUFF,1 20,PICHU,1
IGGLYBUFF,1 10,RIOLU,1
CHINGLING,1 10,TYROGUE,1
CHINGLING,1
RIOLU,1
RIOLU,1
TYROGUE,1
TYROGUE,1
TYROGUE,1
TYROGUE,1
#------------------------------- #-------------------------------
066 # Safari Zone [066] # Safari Zone
25,10,10 Land,25
Land 20,ABRA,12,15
NIDORANfE,15,16 20,DODUO,13,15
NIDORANmA,15,16 20,NIDORANfE,15,16
DODUO,13,15 20,NIDORANmA,15,16
DODUO,13,15 10,HOPPIP,13,17
ABRA,12,15 10,TANGELA,14,16
ABRA,12,15
TANGELA,14,16
TANGELA,14,16
HOPPIP,13,17
HOPPIP,13,17
HOPPIP,13,17
HOPPIP,13,17
#------------------------------- #-------------------------------
068 # Safari Zone [068] # Safari Zone
25,10,10 Land,25
Land 20,EXEGGCUTE,15,18
RHYHORN,16,18 20,RHYHORN,16,18
EXEGGCUTE,15,18 10,AIPOM,14,17
VENONAT,15,17 10,GIRAFARIG,16,17
VENONAT,15,18 10,VENONAT,15,17
AIPOM,14,17 10,VENONAT,15,18
GIRAFARIG,16,17 5,HERACROSS,15,17
TAUROS,15,16 5,TAUROS,15,16
HERACROSS,15,17 4,PINSIR,16
SCYTHER,16 4,SCYTHER,16
PINSIR,16 1,CHANSEY,17
KANGASKHAN,19 1,KANGASKHAN,19
CHANSEY,17 Water,10
Water 60,PSYDUCK,16,18
PSYDUCK,16,18 30,MARILL,15,18
MARILL,15,18 5,BUIZEL,15,17
SLOWPOKE,14,16 5,SLOWPOKE,14,16
BUIZEL,15,17
BUIZEL,15,17
OldRod OldRod
MAGIKARP,17,21 70,MAGIKARP,17,21
MAGIKARP,17,20 30,MAGIKARP,17,20
GoodRod GoodRod
MAGIKARP,16,20 60,MAGIKARP,16,20
FEEBAS,16,20 20,FEEBAS,16,20
POLIWAG,17,18 20,POLIWAG,17,18
SuperRod SuperRod
GOLDEEN,16,18 40,GOLDEEN,16,18
REMORAID,17,19 40,REMORAID,17,19
CARVANHA,16,17 15,CARVANHA,16,17
FINNEON,15,18 4,FINNEON,15,18
DRATINI,17 1,DRATINI,17
#------------------------------- #-------------------------------
069 # Route 8 [069] # Route 8
25,10,10 Land,25
Land 20,MAREEP,16,18
ODDISH,15,17 20,ODDISH,15,17
MAREEP,16,18 13,BONSLY,14,16
LOTAD,15,17 10,DITTO,15,17
LOTAD,15,18 10,DITTO,16,18
DITTO,15,17 10,LOTAD,15,18
DITTO,16,18 10,LOTAD,15,17
BONSLY,14,17 5,BONSLY,14,17
BONSLY,14,16 1,BONSLY,15,16
BONSLY,14,16 1,BONSLY,15
BONSLY,14,16 Water,10
BONSLY,15,16 60,TENTACOOL,14,19
BONSLY,15 30,MANTYKE,15,16
Water 10,REMORAID,14,16
TENTACOOL,14,19
MANTYKE,15,16
REMORAID,14,16
REMORAID,14,16
REMORAID,14,16
OldRod OldRod
MAGIKARP,16,19 100,MAGIKARP,16,19
MAGIKARP,16,19
GoodRod GoodRod
BARBOACH,17,18 60,BARBOACH,17,18
SHELLDER,16,19 20,KRABBY,15,16
KRABBY,15,16 20,SHELLDER,16,19
SuperRod SuperRod
CHINCHOU,17,19 40,CHINCHOU,17,19
QWILFISH,16,19 40,QWILFISH,16,19
CORSOLA,15,18 15,CORSOLA,15,18
STARYU,15,17 5,STARYU,15,17
STARYU,15,17
#------------------------------- #-------------------------------
070 # Underwater [070] # Underwater
25,10,10 Land,25
Land 20,CHINCHOU,17,21
CLAMPERL,18,20 20,CLAMPERL,18,20
SHELLDER,18,20 20,SHELLDER,18,20
CLAMPERL,18,19 10,CLAMPERL,18,19
SHELLDER,18,19 10,CORSOLA,17,20
CHINCHOU,17,21 10,RELICANTH,16,19
CHINCHOU,17,21 10,SHELLDER,18,19
CORSOLA,17,20
CORSOLA,17,20
RELICANTH,16,19
RELICANTH,16,19
RELICANTH,16,19
RELICANTH,16,19
#------------------------------- #-------------------------------
075 # Tiall Region [075] # Tiall Region
25,10,10 Land,25
Land 20,GEODUDE_1,11,14
RATTATA_1,11,14 20,RATTATA_1,11,14
GEODUDE_1,11,14 10,CUBONE,11,14
SANDSHREW_1,11,14 10,DIGLETT_1,11,14
VULPIX_1,11,14 10,MEOWTH_1,11,14
DIGLETT_1,11,14 10,PIKACHU,11,14
MEOWTH_1,11,14 10,SANDSHREW_1,11,14
PIKACHU,11,14 10,VULPIX_1,11,14
PIKACHU,11,14
CUBONE,11,14
CUBONE,11,14
CUBONE,11,14
CUBONE,11,14

View File

@@ -121,8 +121,8 @@
115,DRAININGKISS,Draining Kiss,14F,50,FAIRY,Special,100,10,0,NearOther,0,abef,"The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage dealt." 115,DRAININGKISS,Draining Kiss,14F,50,FAIRY,Special,100,10,0,NearOther,0,abef,"The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage dealt."
116,DISARMINGVOICE,Disarming Voice,0A5,40,FAIRY,Special,0,15,0,AllNearFoes,0,befk,"Letting out a charming cry, the user does emotional damage to foes. This attack never misses." 116,DISARMINGVOICE,Disarming Voice,0A5,40,FAIRY,Special,0,15,0,AllNearFoes,0,befk,"Letting out a charming cry, the user does emotional damage to foes. This attack never misses."
117,FAIRYWIND,Fairy Wind,000,40,FAIRY,Special,100,30,0,NearOther,0,bef,"The user stirs up a fairy wind and strikes the target with it." 117,FAIRYWIND,Fairy Wind,000,40,FAIRY,Special,100,30,0,NearOther,0,bef,"The user stirs up a fairy wind and strikes the target with it."
118,AROMATICMIST,Aromatic Mist,138,0,FAIRY,Status,0,20,0,NearAlly,0,,"The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma." 118,NATURESMADNESS,Nature's Madness,06C,1,FAIRY,Special,90,10,0,NearOther,0,bef,"The user hits the target with the force of nature. It halves the target's HP."
119,NATURESMADNESS,Nature's Madness,06C,1,FAIRY,Special,90,10,0,NearOther,0,bef,"The user hits the target with the force of nature. It halves the target's HP." 119,AROMATICMIST,Aromatic Mist,138,0,FAIRY,Status,0,20,0,NearAlly,0,,"The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma."
120,BABYDOLLEYES,Baby-Doll Eyes,042,0,FAIRY,Status,100,30,0,NearOther,1,bce,"The user stares with its baby-doll eyes, which lowers the target's Attack stat. Always goes first." 120,BABYDOLLEYES,Baby-Doll Eyes,042,0,FAIRY,Status,100,30,0,NearOther,1,bce,"The user stares with its baby-doll eyes, which lowers the target's Attack stat. Always goes first."
121,CHARM,Charm,04B,0,FAIRY,Status,100,20,0,NearOther,0,bce,"The user charmingly gazes at the foe, making it less wary. The target's Attack is harshly lowered." 121,CHARM,Charm,04B,0,FAIRY,Status,100,20,0,NearOther,0,bce,"The user charmingly gazes at the foe, making it less wary. The target's Attack is harshly lowered."
122,CRAFTYSHIELD,Crafty Shield,14A,0,FAIRY,Status,0,10,0,UserSide,3,,"The user protects itself and its allies from status moves with a mysterious power." 122,CRAFTYSHIELD,Crafty Shield,14A,0,FAIRY,Status,0,10,0,UserSide,3,,"The user protects itself and its allies from status moves with a mysterious power."

File diff suppressed because it is too large Load Diff

View File

@@ -265,7 +265,7 @@ Abilities = SHELLARMOR
HiddenAbility = SHELLARMOR HiddenAbility = SHELLARMOR
Height = 2.0 Height = 2.0
Weight = 120.0 Weight = 120.0
Shape = 4 Shape = HeadArms
Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too. Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too.
#------------------------------- #-------------------------------
[GRIMER,1] [GRIMER,1]
@@ -350,7 +350,7 @@ Abilities = AERILATE
HiddenAbility = AERILATE HiddenAbility = AERILATE
Height = 1.7 Height = 1.7
Weight = 59.0 Weight = 59.0
Shape = 13 Shape = MultiWinged
Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers. Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers.
#------------------------------- #-------------------------------
[GYARADOS,1] [GYARADOS,1]
@@ -944,7 +944,7 @@ HiddenAbility = LEVITATE
TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP
Height = 6.9 Height = 6.9
Weight = 650.0 Weight = 650.0
Shape = 2 Shape = Serpentine
BattlerEnemyX = -2 BattlerEnemyX = -2
BattlerEnemyY = -8 BattlerEnemyY = -8
#------------------------------- #-------------------------------
@@ -1093,7 +1093,7 @@ EffortPoints = 0,0,0,3,0,0
Abilities = REGENERATOR Abilities = REGENERATOR
HiddenAbility = REGENERATOR HiddenAbility = REGENERATOR
Height = 1.4 Height = 1.4
Shape = 9 Shape = Winged
BattlerPlayerX = -2 BattlerPlayerX = -2
BattlerEnemyX = 8 BattlerEnemyX = 8
BattlerEnemyY = 11 BattlerEnemyY = 11
@@ -1106,7 +1106,7 @@ Abilities = VOLTABSORB
HiddenAbility = VOLTABSORB HiddenAbility = VOLTABSORB
TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE
Height = 3.0 Height = 3.0
Shape = 6 Shape = BipedalTail
BattlerPlayerX = -3 BattlerPlayerX = -3
BattlerEnemyX = 2 BattlerEnemyX = 2
BattlerEnemyY = 5 BattlerEnemyY = 5
@@ -1118,7 +1118,7 @@ EffortPoints = 0,3,0,0,0,0
Abilities = INTIMIDATE Abilities = INTIMIDATE
HiddenAbility = INTIMIDATE HiddenAbility = INTIMIDATE
Height = 1.3 Height = 1.3
Shape = 8 Shape = Quadruped
BattlerPlayerX = -8 BattlerPlayerX = -8
BattlerEnemyX = 3 BattlerEnemyX = 3
BattlerEnemyY = 14 BattlerEnemyY = 14
@@ -1402,7 +1402,7 @@ BaseStats = 54,100,71,115,61,85
Height = 1.2 Height = 1.2
Weight = 33.5 Weight = 33.5
Color = Black Color = Black
Shape = 8 Shape = Quadruped
Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them. Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them.
#------------------------------- #-------------------------------
[ZYGARDE,2] [ZYGARDE,2]
@@ -1412,7 +1412,7 @@ Abilities = POWERCONSTRUCT
Height = 4.5 Height = 4.5
Weight = 610.0 Weight = 610.0
Color = Black Color = Black
Shape = 6 Shape = BipedalTail
Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything. Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything.
#------------------------------- #-------------------------------
[ZYGARDE,3] [ZYGARDE,3]
@@ -1422,7 +1422,7 @@ Abilities = POWERCONSTRUCT
Height = 4.5 Height = 4.5
Weight = 610.0 Weight = 610.0
Color = Black Color = Black
Shape = 6 Shape = BipedalTail
#------------------------------- #-------------------------------
[DIANCIE,1] [DIANCIE,1]
FormName = Mega Diancie FormName = Mega Diancie
@@ -1441,7 +1441,7 @@ BaseStats = 80,160,60,80,170,130
Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY
Height = 6.5 Height = 6.5
Weight = 490.0 Weight = 490.0
Shape = 6 Shape = BipedalTail
#------------------------------- #-------------------------------
[ORICORIO,1] [ORICORIO,1]
FormName = Pom-Pom Style FormName = Pom-Pom Style
@@ -1478,7 +1478,7 @@ Moves = 0,COUNTER,1,COUNTER,1,REVERSAL,1,TAUNT,1,TACKLE,1,LEER,1,SANDATTACK,1,BI
TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT
Height = 1.1 Height = 1.1
Color = Red Color = Red
Shape = 6 Shape = BipedalTail
Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane. Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane.
#------------------------------- #-------------------------------
[LYCANROC,2] [LYCANROC,2]
@@ -1495,7 +1495,7 @@ FormName = School Form
BaseStats = 45,140,130,30,140,135 BaseStats = 45,140,130,30,140,135
Height = 8.2 Height = 8.2
Weight = 78.6 Weight = 78.6
Shape = 11 Shape = MultiBody
Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far. Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far.
#------------------------------- #-------------------------------
[SILVALLY,1] [SILVALLY,1]
@@ -1640,7 +1640,7 @@ EffortPoints = 0,3,0,0,0,0
Height = 3.8 Height = 3.8
Weight = 460.0 Weight = 460.0
Color = Yellow Color = Yellow
Shape = 8 Shape = Quadruped
Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control. Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control.
#------------------------------- #-------------------------------
[NECROZMA,2] [NECROZMA,2]

File diff suppressed because it is too large Load Diff

View File

@@ -265,7 +265,7 @@ Abilities = SHELLARMOR
HiddenAbility = SHELLARMOR HiddenAbility = SHELLARMOR
Height = 2.0 Height = 2.0
Weight = 120.0 Weight = 120.0
Shape = 4 Shape = HeadArms
Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too. Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too.
#------------------------------- #-------------------------------
[GRIMER,1] [GRIMER,1]
@@ -350,7 +350,7 @@ Abilities = AERILATE
HiddenAbility = AERILATE HiddenAbility = AERILATE
Height = 1.7 Height = 1.7
Weight = 59.0 Weight = 59.0
Shape = 13 Shape = MultiWinged
Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers. Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers.
#------------------------------- #-------------------------------
[GYARADOS,1] [GYARADOS,1]
@@ -944,7 +944,7 @@ HiddenAbility = LEVITATE
TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP
Height = 6.9 Height = 6.9
Weight = 650.0 Weight = 650.0
Shape = 2 Shape = Serpentine
BattlerEnemyX = -2 BattlerEnemyX = -2
BattlerEnemyY = -8 BattlerEnemyY = -8
#------------------------------- #-------------------------------
@@ -1093,7 +1093,7 @@ EffortPoints = 0,0,0,3,0,0
Abilities = REGENERATOR Abilities = REGENERATOR
HiddenAbility = REGENERATOR HiddenAbility = REGENERATOR
Height = 1.4 Height = 1.4
Shape = 9 Shape = Winged
BattlerPlayerX = -2 BattlerPlayerX = -2
BattlerEnemyX = 8 BattlerEnemyX = 8
BattlerEnemyY = 11 BattlerEnemyY = 11
@@ -1106,7 +1106,7 @@ Abilities = VOLTABSORB
HiddenAbility = VOLTABSORB HiddenAbility = VOLTABSORB
TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE
Height = 3.0 Height = 3.0
Shape = 6 Shape = BipedalTail
BattlerPlayerX = -3 BattlerPlayerX = -3
BattlerEnemyX = 2 BattlerEnemyX = 2
BattlerEnemyY = 5 BattlerEnemyY = 5
@@ -1118,7 +1118,7 @@ EffortPoints = 0,3,0,0,0,0
Abilities = INTIMIDATE Abilities = INTIMIDATE
HiddenAbility = INTIMIDATE HiddenAbility = INTIMIDATE
Height = 1.3 Height = 1.3
Shape = 8 Shape = Quadruped
BattlerPlayerX = -8 BattlerPlayerX = -8
BattlerEnemyX = 3 BattlerEnemyX = 3
BattlerEnemyY = 14 BattlerEnemyY = 14
@@ -1402,7 +1402,7 @@ BaseStats = 54,100,71,115,61,85
Height = 1.2 Height = 1.2
Weight = 33.5 Weight = 33.5
Color = Black Color = Black
Shape = 8 Shape = Quadruped
Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them. Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them.
#------------------------------- #-------------------------------
[ZYGARDE,2] [ZYGARDE,2]
@@ -1412,7 +1412,7 @@ Abilities = POWERCONSTRUCT
Height = 4.5 Height = 4.5
Weight = 610.0 Weight = 610.0
Color = Black Color = Black
Shape = 6 Shape = BipedalTail
Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything. Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything.
#------------------------------- #-------------------------------
[ZYGARDE,3] [ZYGARDE,3]
@@ -1422,7 +1422,7 @@ Abilities = POWERCONSTRUCT
Height = 4.5 Height = 4.5
Weight = 610.0 Weight = 610.0
Color = Black Color = Black
Shape = 6 Shape = BipedalTail
#------------------------------- #-------------------------------
[DIANCIE,1] [DIANCIE,1]
FormName = Mega Diancie FormName = Mega Diancie
@@ -1441,7 +1441,7 @@ BaseStats = 80,160,60,80,170,130
Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY
Height = 6.5 Height = 6.5
Weight = 490.0 Weight = 490.0
Shape = 6 Shape = BipedalTail
#------------------------------- #-------------------------------
[ORICORIO,1] [ORICORIO,1]
FormName = Pom-Pom Style FormName = Pom-Pom Style
@@ -1478,7 +1478,7 @@ Moves = 0,COUNTER,1,COUNTER,1,REVERSAL,1,TAUNT,1,TACKLE,1,LEER,1,SANDATTACK,1,BI
TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT
Height = 1.1 Height = 1.1
Color = Red Color = Red
Shape = 6 Shape = BipedalTail
Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane. Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane.
#------------------------------- #-------------------------------
[LYCANROC,2] [LYCANROC,2]
@@ -1495,7 +1495,7 @@ FormName = School Form
BaseStats = 45,140,130,30,140,135 BaseStats = 45,140,130,30,140,135
Height = 8.2 Height = 8.2
Weight = 78.6 Weight = 78.6
Shape = 11 Shape = MultiBody
Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far. Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far.
#------------------------------- #-------------------------------
[SILVALLY,1] [SILVALLY,1]
@@ -1640,7 +1640,7 @@ EffortPoints = 0,3,0,0,0,0
Height = 3.8 Height = 3.8
Weight = 460.0 Weight = 460.0
Color = Yellow Color = Yellow
Shape = 8 Shape = Quadruped
Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control. Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control.
#------------------------------- #-------------------------------
[NECROZMA,2] [NECROZMA,2]