mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
Added class GameData::BodyShape, some bug fixes, updated some PBS files
This commit is contained in:
@@ -97,7 +97,7 @@ module GameData
|
||||
"Height" => [0, "f"],
|
||||
"Weight" => [0, "f"],
|
||||
"Color" => [0, "e", :BodyColor],
|
||||
"Shape" => [0, "u"],
|
||||
"Shape" => [0, "y", :BodyShape],
|
||||
"Habitat" => [0, "e", :Habitat],
|
||||
"Generation" => [0, "i"],
|
||||
"BattlerPlayerX" => [0, "i"],
|
||||
@@ -160,7 +160,7 @@ module GameData
|
||||
@height = hash[:height] || 1
|
||||
@weight = hash[:weight] || 1
|
||||
@color = hash[:color] || :Red
|
||||
@shape = hash[:shape] || 1
|
||||
@shape = hash[:shape] || :Body
|
||||
@habitat = hash[:habitat] || :None
|
||||
@generation = hash[:generation] || 0
|
||||
@mega_stone = hash[:mega_stone]
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
module PBGrowthRates
|
||||
MediumFast = Medium = 0
|
||||
Erratic = 1
|
||||
Fluctuating = 2
|
||||
MediumSlow = Parabolic = 3
|
||||
Fast = 4
|
||||
Slow = 5
|
||||
Medium = 0 # MediumFast
|
||||
Erratic = 1
|
||||
Fluctuating = 2
|
||||
Parabolic = 3 # MediumSlow
|
||||
Fast = 4
|
||||
Slow = 5
|
||||
|
||||
def self.maxValue; return 5; end
|
||||
end
|
||||
|
||||
115
Data/Scripts/011_Data/002_Hardcoded data/017_BodyShape.rb
Normal file
115
Data/Scripts/011_Data/002_Hardcoded data/017_BodyShape.rb
Normal 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")
|
||||
})
|
||||
@@ -501,9 +501,10 @@ class PokemonPokedex_Scene
|
||||
overlay.blt(344,214,@hwbitmap.bitmap,Rect.new(0,(hwoffset) ? 44 : 0,32,44))
|
||||
overlay.blt(344,266,@hwbitmap.bitmap,Rect.new(32,(hwoffset) ? 44 : 0,32,44))
|
||||
# Draw shape icon
|
||||
if params[9]>=0
|
||||
shaperect = Rect.new(0,params[9]*60,60,60)
|
||||
overlay.blt(424,218,@shapebitmap.bitmap,shaperect)
|
||||
if params[9] >= 0
|
||||
shape_number = @shapeCommands[params[9]].id_number
|
||||
shaperect = Rect.new(0, (shape_number - 1) * 60, 60, 60)
|
||||
overlay.blt(424, 218, @shapebitmap.bitmap, shaperect)
|
||||
end
|
||||
# Draw all text
|
||||
pbDrawTextPositions(overlay,textpos)
|
||||
@@ -607,9 +608,9 @@ class PokemonPokedex_Scene
|
||||
textpos.push([cmds[sel[0]].name,362,58,2,base,shadow,1])
|
||||
end
|
||||
when 6 # Shape icon
|
||||
if sel[0]>=0
|
||||
shaperect = Rect.new(0,@shapeCommands[sel[0]]*60,60,60)
|
||||
overlay.blt(332,50,@shapebitmap.bitmap,shaperect)
|
||||
if sel[0] >= 0
|
||||
shaperect = Rect.new(0, (@shapeCommands[sel[0]].id_number - 1) * 60, 60, 60)
|
||||
overlay.blt(332, 50, @shapebitmap.bitmap, shaperect)
|
||||
end
|
||||
else
|
||||
if sel[0]<0
|
||||
@@ -678,10 +679,10 @@ class PokemonPokedex_Scene
|
||||
textpos.push(["----",
|
||||
xstart+halfwidth+(cols-1)*xgap,ystart+6+(cmds.length/cols).floor*ygap,2,base,shadow,1])
|
||||
when 6 # Shape
|
||||
shaperect = Rect.new(0,0,60,60)
|
||||
shaperect = Rect.new(0, 0, 60, 60)
|
||||
for i in 0...cmds.length
|
||||
shaperect.y = i*60
|
||||
overlay.blt(xstart+4+(i%cols)*xgap,ystart+4+(i/cols).floor*ygap,@shapebitmap.bitmap,shaperect)
|
||||
shaperect.y = (@shapeCommands[i].id_number - 1) * 60
|
||||
overlay.blt(xstart + 4 + (i % cols) * xgap, ystart + 4 + (i / cols).floor * ygap, @shapebitmap.bitmap, shaperect)
|
||||
end
|
||||
end
|
||||
# Draw all text
|
||||
@@ -760,11 +761,10 @@ class PokemonPokedex_Scene
|
||||
end
|
||||
# Filter by shape
|
||||
if params[9]>=0
|
||||
sshape = @shapeCommands[params[9]]+1
|
||||
sshape = @shapeCommands[params[9]].id
|
||||
dexlist = dexlist.find_all { |item|
|
||||
next false if !$Trainer.seen?(item[0])
|
||||
shape = item[9]
|
||||
next shape==sshape
|
||||
next item[9] == sshape
|
||||
}
|
||||
end
|
||||
# Remove all unseen species from the results
|
||||
@@ -1025,7 +1025,7 @@ class PokemonPokedex_Scene
|
||||
@colorCommands = []
|
||||
GameData::BodyColor.each { |c| @colorCommands.push(c) }
|
||||
@shapeCommands = []
|
||||
for i in 0...14; @shapeCommands.push(i); end
|
||||
GameData::BodyShape.each { |c| @shapeCommands.push(c) if c.id != :None }
|
||||
@sprites["searchbg"].visible = true
|
||||
@sprites["overlay"].visible = true
|
||||
@sprites["searchcursor"].visible = true
|
||||
|
||||
@@ -980,7 +980,7 @@ def pbPokemonEditor
|
||||
[_INTL("Height"), NonzeroLimitProperty.new(999), _INTL("Height of the Pokémon in 0.1 metres (e.g. 42 = 4.2m).")],
|
||||
[_INTL("Weight"), NonzeroLimitProperty.new(9999), _INTL("Weight of the Pokémon in 0.1 kilograms (e.g. 42 = 4.2kg).")],
|
||||
[_INTL("Color"), GameDataProperty.new(:BodyColor), _INTL("Pokémon's body color.")],
|
||||
[_INTL("Shape"), LimitProperty.new(14), _INTL("Body shape of this species (0-14).")],
|
||||
[_INTL("Shape"), GameDataProperty.new(:BodyShape), _INTL("Body shape of this species.")],
|
||||
[_INTL("Habitat"), GameDataProperty.new(:Habitat), _INTL("The habitat of this species.")],
|
||||
[_INTL("Generation"), LimitProperty.new(99999), _INTL("The number of the generation the Pokémon debuted in.")],
|
||||
[_INTL("BattlerPlayerX"), ReadOnlyProperty, _INTL("Affects positioning of the Pokémon in battle. This is edited elsewhere.")],
|
||||
|
||||
@@ -252,7 +252,7 @@ class GameDataProperty
|
||||
end
|
||||
i += 1
|
||||
end
|
||||
return pbChooseList(commands, oldsetting, nil, -1)
|
||||
return pbChooseList(commands, oldsetting, oldsetting, -1)
|
||||
end
|
||||
|
||||
def defaultValue
|
||||
@@ -1165,19 +1165,20 @@ class EvolutionsProperty
|
||||
for i in 0...oldsetting.length
|
||||
realcmds.push([oldsetting[i][0],oldsetting[i][1],oldsetting[i][2],i])
|
||||
end
|
||||
refreshlist = true; oldsel = -1
|
||||
refreshlist = true
|
||||
oldsel = -1
|
||||
cmd = [0,0]
|
||||
loop do
|
||||
if refreshlist
|
||||
realcmds.sort! { |a,b| a[3]<=>b[3] }
|
||||
commands = []
|
||||
for i in 0...realcmds.length
|
||||
if realcmds[i][0]<0
|
||||
if realcmds[i][3]<0
|
||||
commands.push(_INTL("[ADD EVOLUTION]"))
|
||||
else
|
||||
level = realcmds[i][1]
|
||||
param_type = PBEvolution.getFunction(realcmds[i][0], "parameterType")
|
||||
has_param = !PBEvolution.hasFunction?(realcmds[i][0], "parameterType") || param_type != nil
|
||||
level = realcmds[i][2]
|
||||
param_type = PBEvolution.getFunction(realcmds[i][1], "parameterType")
|
||||
has_param = !PBEvolution.hasFunction?(realcmds[i][1], "parameterType") || param_type != nil
|
||||
if has_param
|
||||
if param_type && !GameData.const_defined?(param_type.to_sym)
|
||||
level = getConstantName(param_type, level)
|
||||
@@ -1186,16 +1187,17 @@ class EvolutionsProperty
|
||||
end
|
||||
level = "???" if !level || level.empty?
|
||||
commands.push(_INTL("{1}: {2}, {3}",
|
||||
GameData::Species.get(realcmds[i][2]).name, @methods[realcmds[i][0]], level.to_s))
|
||||
GameData::Species.get(realcmds[i][0]).name, @methods[realcmds[i][1]], level.to_s))
|
||||
else
|
||||
commands.push(_INTL("{1}: {2}",
|
||||
GameData::Species.get(realcmds[i][2]).name, @methods[realcmds[i][0]]))
|
||||
GameData::Species.get(realcmds[i][0]).name, @methods[realcmds[i][1]]))
|
||||
end
|
||||
end
|
||||
cmd[1] = i if oldsel>=0 && realcmds[i][3]==oldsel
|
||||
end
|
||||
end
|
||||
refreshlist = false; oldsel = -1
|
||||
refreshlist = false
|
||||
oldsel = -1
|
||||
cmd = pbCommands3(cmdwin,commands,-1,cmd[1],true)
|
||||
if cmd[0]==1 # Swap evolution up
|
||||
if cmd[1]>0 && cmd[1]<realcmds.length-1
|
||||
@@ -1210,7 +1212,7 @@ class EvolutionsProperty
|
||||
elsif cmd[0]==0
|
||||
if cmd[1]>=0
|
||||
entry = realcmds[cmd[1]]
|
||||
if entry[0]==-1 # Add new evolution path
|
||||
if entry[3]==-1 # Add new evolution path
|
||||
pbMessage(_INTL("Choose an evolved form, method and parameter."))
|
||||
newspecies = pbChooseSpeciesList
|
||||
if newspecies
|
||||
@@ -1244,16 +1246,16 @@ class EvolutionsProperty
|
||||
(newparam.is_a?(Integer) && (newparam > 0 || (allow_zero && newparam == 0)))
|
||||
havemove = -1
|
||||
for i in 0...realcmds.length
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==newmethod &&
|
||||
realcmds[i][1]==newparam &&
|
||||
realcmds[i][2]==newspecies
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==newspecies &&
|
||||
realcmds[i][1]==newmethod &&
|
||||
realcmds[i][2]==newparam
|
||||
end
|
||||
if havemove>=0
|
||||
oldsel = havemove
|
||||
else
|
||||
maxid = -1
|
||||
for i in realcmds; maxid = [maxid,i[3]].max; end
|
||||
realcmds.push([newmethod,newparam,newspecies,maxid+1])
|
||||
realcmds.each { |i| maxid = [maxid,i[3]].max }
|
||||
realcmds.push([newspecies,newmethod,newparam,maxid+1])
|
||||
oldsel = maxid+1
|
||||
end
|
||||
refreshlist = true
|
||||
@@ -1261,34 +1263,15 @@ class EvolutionsProperty
|
||||
end
|
||||
end
|
||||
else # Edit evolution
|
||||
cmd2 = pbMessage(_INTL("\\ts[]Do what with this evolution?"),
|
||||
case pbMessage(_INTL("\\ts[]Do what with this evolution?"),
|
||||
[_INTL("Change species"),_INTL("Change method"),
|
||||
_INTL("Change parameter"),_INTL("Delete"),_INTL("Cancel")],5)
|
||||
if cmd2==0 # Change species
|
||||
newspecies = pbChooseSpeciesList(entry[2])
|
||||
when 0 # Change species
|
||||
newspecies = pbChooseSpeciesList(entry[0])
|
||||
if newspecies
|
||||
havemove = -1
|
||||
for i in 0...realcmds.length
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==entry[0] &&
|
||||
realcmds[i][1]==entry[1] &&
|
||||
realcmds[i][2]==newspecies
|
||||
end
|
||||
if havemove>=0
|
||||
realcmds[cmd[1]] = nil
|
||||
realcmds.compact!
|
||||
oldsel = havemove
|
||||
else
|
||||
entry[2] = newspecies
|
||||
oldsel = entry[3]
|
||||
end
|
||||
refreshlist = true
|
||||
end
|
||||
elsif cmd2==1 # Change method
|
||||
newmethod = pbMessage(_INTL("Choose an evolution method."),@methods,-1,nil,entry[0])
|
||||
if newmethod>0
|
||||
havemove = -1
|
||||
for i in 0...realcmds.length
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==newmethod &&
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==newspecies &&
|
||||
realcmds[i][1]==entry[1] &&
|
||||
realcmds[i][2]==entry[2]
|
||||
end
|
||||
@@ -1296,35 +1279,54 @@ class EvolutionsProperty
|
||||
realcmds[cmd[1]] = nil
|
||||
realcmds.compact!
|
||||
oldsel = havemove
|
||||
elsif newmethod != entry[0]
|
||||
entry[0] = newmethod
|
||||
entry[1] = 0
|
||||
else
|
||||
entry[0] = newspecies
|
||||
oldsel = entry[3]
|
||||
end
|
||||
refreshlist = true
|
||||
end
|
||||
elsif cmd2==2 # Change parameter
|
||||
when 1 # Change method
|
||||
newmethod = pbMessage(_INTL("Choose an evolution method."),@methods,-1,nil,entry[1])
|
||||
if newmethod>0
|
||||
havemove = -1
|
||||
for i in 0...realcmds.length
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==entry[0] &&
|
||||
realcmds[i][1]==newmethod &&
|
||||
realcmds[i][2]==entry[2]
|
||||
end
|
||||
if havemove>=0
|
||||
realcmds[cmd[1]] = nil
|
||||
realcmds.compact!
|
||||
oldsel = havemove
|
||||
elsif newmethod != entry[1]
|
||||
entry[1] = newmethod
|
||||
entry[2] = 0
|
||||
oldsel = entry[3]
|
||||
end
|
||||
refreshlist = true
|
||||
end
|
||||
when 2 # Change parameter
|
||||
newparam = -1
|
||||
param_type = PBEvolution.getFunction(entry[0], "parameterType")
|
||||
has_param = !PBEvolution.hasFunction?(entry[0], "parameterType") || param_type != nil
|
||||
param_type = PBEvolution.getFunction(entry[1], "parameterType")
|
||||
has_param = !PBEvolution.hasFunction?(entry[1], "parameterType") || param_type != nil
|
||||
if has_param
|
||||
allow_zero = false
|
||||
case param_type
|
||||
when :Item
|
||||
newparam = pbChooseItemList(entry[1])
|
||||
newparam = pbChooseItemList(entry[2])
|
||||
when :Move
|
||||
newparam = pbChooseMoveList(entry[1])
|
||||
newparam = pbChooseMoveList(entry[2])
|
||||
when :Species
|
||||
newparam = pbChooseSpeciesList(entry[1])
|
||||
newparam = pbChooseSpeciesList(entry[2])
|
||||
when :Type
|
||||
newparam = pbChooseTypeList(entry[1])
|
||||
newparam = pbChooseTypeList(entry[2])
|
||||
when :Ability
|
||||
newparam = pbChooseAbilityList(entry[1])
|
||||
newparam = pbChooseAbilityList(entry[2])
|
||||
else
|
||||
allow_zero = true
|
||||
params = ChooseNumberParams.new
|
||||
params.setRange(0,65535)
|
||||
params.setDefaultValue(entry[1])
|
||||
params.setDefaultValue(entry[2])
|
||||
params.setCancelValue(-1)
|
||||
newparam = pbMessageChooseNumber(_INTL("Choose a parameter."),params)
|
||||
end
|
||||
@@ -1333,15 +1335,15 @@ class EvolutionsProperty
|
||||
havemove = -1
|
||||
for i in 0...realcmds.length
|
||||
havemove = realcmds[i][3] if realcmds[i][0]==entry[0] &&
|
||||
realcmds[i][1]==newparam &&
|
||||
realcmds[i][2]==entry[2]
|
||||
realcmds[i][1]==entry[1] &&
|
||||
realcmds[i][2]==newparam
|
||||
end
|
||||
if havemove>=0
|
||||
realcmds[cmd[1]] = nil
|
||||
realcmds.compact!
|
||||
oldsel = havemove
|
||||
else
|
||||
entry[1] = newparam
|
||||
entry[2] = newparam
|
||||
oldsel = entry[3]
|
||||
end
|
||||
refreshlist = true
|
||||
@@ -1349,7 +1351,7 @@ class EvolutionsProperty
|
||||
else
|
||||
pbMessage(_INTL("This evolution method doesn't use a parameter."))
|
||||
end
|
||||
elsif cmd2==3 # Delete
|
||||
when 3 # Delete
|
||||
realcmds[cmd[1]] = nil
|
||||
realcmds.compact!
|
||||
cmd[1] = [cmd[1],realcmds.length-1].min
|
||||
@@ -1385,15 +1387,15 @@ class EvolutionsProperty
|
||||
ret = ""
|
||||
for i in 0...value.length
|
||||
ret << "," if i>0
|
||||
param = value[i][1]
|
||||
param_type = PBEvolution.getFunction(value[i][0], "parameterType")
|
||||
param = value[i][2]
|
||||
param_type = PBEvolution.getFunction(value[i][1], "parameterType")
|
||||
if param_type && !GameData.const_defined?(param_type.to_sym)
|
||||
param = getConstantName(param_type, param)
|
||||
else
|
||||
param = param.to_s
|
||||
end
|
||||
param = "" if !param
|
||||
ret << sprintf("#{GameData::Species.get(value[i][2]).name},#{@methods[value[i][0]]},#{param}")
|
||||
ret << sprintf("#{GameData::Species.get(value[i][0]).name},#{@methods[value[i][1]]},#{param}")
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
@@ -301,7 +301,7 @@ module Compiler
|
||||
f.write(sprintf("Height = %.1f\r\n", species.height / 10.0))
|
||||
f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0))
|
||||
f.write(sprintf("Color = %s\r\n", species.color))
|
||||
f.write(sprintf("Shape = %d\r\n", species.shape))
|
||||
f.write(sprintf("Shape = %s\r\n", GameData::BodyShape.get(species.shape).id))
|
||||
f.write(sprintf("Habitat = %s\r\n", species.habitat)) if species.habitat != :None
|
||||
f.write(sprintf("Kind = %s\r\n", species.real_category))
|
||||
f.write(sprintf("Pokedex = %s\r\n", species.real_pokedex_entry))
|
||||
@@ -343,6 +343,7 @@ module Compiler
|
||||
f.write(sprintf("Incense = %s\r\n", species.incense)) if species.incense
|
||||
end
|
||||
}
|
||||
pbSetWindowText(nil)
|
||||
Graphics.update
|
||||
end
|
||||
|
||||
@@ -396,7 +397,9 @@ module Compiler
|
||||
f.write(sprintf("Height = %.1f\r\n", species.height / 10.0)) if species.height != base_species.height
|
||||
f.write(sprintf("Weight = %.1f\r\n", species.weight / 10.0)) if species.weight != base_species.weight
|
||||
f.write(sprintf("Color = %s\r\n", species.color)) if species.color != base_species.color
|
||||
f.write(sprintf("Shape = %d\r\n", species.shape)) if species.shape != base_species.shape
|
||||
if GameData::BodyShape.get(species.shape).id != GameData::BodyShape.get(base_species.shape).id
|
||||
f.write(sprintf("Shape = %s\r\n", GameData::BodyShape.get(species.shape).id))
|
||||
end
|
||||
if species.habitat != :None && species.habitat != base_species.habitat
|
||||
f.write(sprintf("Habitat = %s\r\n", species.habitat))
|
||||
end
|
||||
@@ -404,8 +407,8 @@ module Compiler
|
||||
f.write(sprintf("Pokedex = %s\r\n", species.real_pokedex_entry)) if species.real_pokedex_entry != base_species.real_pokedex_entry
|
||||
f.write(sprintf("Generation = %d\r\n", species.generation)) if species.generation != base_species.generation
|
||||
if species.wild_item_common != base_species.wild_item_common ||
|
||||
species.wild_item_uncommon != base_species.wild_item_uncommon ||
|
||||
species.wild_item_rare != base_species.wild_item_rare
|
||||
species.wild_item_uncommon != base_species.wild_item_uncommon ||
|
||||
species.wild_item_rare != base_species.wild_item_rare
|
||||
f.write(sprintf("WildItemCommon = %s\r\n", species.wild_item_common)) if species.wild_item_common
|
||||
f.write(sprintf("WildItemUncommon = %s\r\n", species.wild_item_uncommon)) if species.wild_item_uncommon
|
||||
f.write(sprintf("WildItemRare = %s\r\n", species.wild_item_rare)) if species.wild_item_rare
|
||||
@@ -442,6 +445,7 @@ module Compiler
|
||||
end
|
||||
end
|
||||
}
|
||||
pbSetWindowText(nil)
|
||||
Graphics.update
|
||||
end
|
||||
|
||||
@@ -613,6 +617,7 @@ module Compiler
|
||||
end
|
||||
end
|
||||
}
|
||||
pbSetWindowText(nil)
|
||||
Graphics.update
|
||||
end
|
||||
|
||||
|
||||
@@ -1,471 +1,291 @@
|
||||
# See the documentation on the wiki to learn how to edit this file.
|
||||
#-------------------------------
|
||||
002 # Lappet Town
|
||||
25,10,10
|
||||
Water
|
||||
TENTACOOL,14,19
|
||||
MANTYKE,15,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
[002] # Lappet Town
|
||||
Water,10
|
||||
60,TENTACOOL,14,19
|
||||
30,MANTYKE,15,16
|
||||
10,REMORAID,14,16
|
||||
OldRod
|
||||
MAGIKARP,16,19
|
||||
MAGIKARP,16,19
|
||||
100,MAGIKARP,16,19
|
||||
GoodRod
|
||||
BARBOACH,17,18
|
||||
SHELLDER,16,19
|
||||
KRABBY,15,16
|
||||
60,BARBOACH,17,18
|
||||
20,KRABBY,15,16
|
||||
20,SHELLDER,16,19
|
||||
SuperRod
|
||||
CHINCHOU,17,19
|
||||
QWILFISH,16,19
|
||||
CORSOLA,15,18
|
||||
STARYU,15,17
|
||||
STARYU,15,17
|
||||
40,CHINCHOU,17,19
|
||||
40,QWILFISH,16,19
|
||||
15,CORSOLA,15,18
|
||||
5,STARYU,15,17
|
||||
#-------------------------------
|
||||
005 # Route 1
|
||||
25,10,10
|
||||
Land
|
||||
RATTATA,11,14
|
||||
PIDGEY,11,14
|
||||
RATTATA,11,14
|
||||
PIDGEY,11,14
|
||||
RATTATA,11,14
|
||||
PIDGEY,11,14
|
||||
RATTATA,11,13
|
||||
PIDGEY,11,13
|
||||
RATTATA,11,13
|
||||
PIDGEY,11,13
|
||||
RATTATA,14
|
||||
PIDGEY,14
|
||||
LandNight
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,13
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,13
|
||||
SPINARAK,8,12
|
||||
SPINARAK,8,12
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,14
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,14
|
||||
RATTATA,15
|
||||
HOOTHOOT,14
|
||||
[005] # Route 1
|
||||
Land,25
|
||||
40,PIDGEY,11,14
|
||||
40,RATTATA,11,14
|
||||
9,PIDGEY,11,13
|
||||
9,RATTATA,11,13
|
||||
1,PIDGEY,14
|
||||
1,RATTATA,14
|
||||
LandNight,25
|
||||
39,RATTATA,10,14
|
||||
30,HOOTHOOT,10,13
|
||||
20,SPINARAK,8,12
|
||||
9,HOOTHOOT,10,14
|
||||
1,HOOTHOOT,14
|
||||
1,RATTATA,15
|
||||
#-------------------------------
|
||||
021 # Route 2
|
||||
25,10,10
|
||||
Land
|
||||
RATTATA,12,15
|
||||
RATTATA,12,15
|
||||
RATTATA,12,15
|
||||
POOCHYENA,11,15
|
||||
POOCHYENA,11,15
|
||||
POOCHYENA,11,15
|
||||
SHINX,10,12
|
||||
SHINX,10,12
|
||||
SHINX,10,11
|
||||
SHINX,10,11
|
||||
SHINX,10,11
|
||||
SHINX,10,11
|
||||
Water
|
||||
MAGIKARP,7,10
|
||||
GOLDEEN,11,14
|
||||
STARYU,12,15
|
||||
STARYU,12,15
|
||||
STARYU,12,15
|
||||
[021] # Route 2
|
||||
Land,25
|
||||
50,RATTATA,12,15
|
||||
30,POOCHYENA,11,15
|
||||
10,SHINX,10,12
|
||||
10,SHINX,10,11
|
||||
Water,10
|
||||
60,MAGIKARP,7,10
|
||||
30,GOLDEEN,11,14
|
||||
10,STARYU,12,15
|
||||
OldRod
|
||||
MAGIKARP,7,10
|
||||
MAGIKARP,9,15
|
||||
70,MAGIKARP,7,10
|
||||
30,MAGIKARP,9,15
|
||||
GoodRod
|
||||
GOLDEEN,12,14
|
||||
FINNEON,12,15
|
||||
MAGIKARP,12,17
|
||||
60,GOLDEEN,12,14
|
||||
20,FINNEON,12,15
|
||||
20,MAGIKARP,12,17
|
||||
SuperRod
|
||||
GOLDEEN,12,14
|
||||
FINNEON,12,15
|
||||
STARYU,12,15
|
||||
STARYU,14,17
|
||||
STARYU,14,17
|
||||
40,FINNEON,12,15
|
||||
40,GOLDEEN,12,14
|
||||
15,STARYU,12,15
|
||||
5,STARYU,14,17
|
||||
HeadbuttLow
|
||||
PINECO,11,13
|
||||
LEDYBA,6,8
|
||||
PINECO,11,13
|
||||
SPINARAK,9,12
|
||||
LEDYBA,6,8
|
||||
SPINARAK,9,12
|
||||
SPINARAK,9,12
|
||||
MUNCHLAX,11,14
|
||||
50,PINECO,11,13
|
||||
30,LEDYBA,6,8
|
||||
19,SPINARAK,9,12
|
||||
1,MUNCHLAX,11,14
|
||||
HeadbuttHigh
|
||||
PINECO,11,13
|
||||
WURMPLE,6,8
|
||||
PINECO,11,13
|
||||
SPINARAK,9,12
|
||||
WURMPLE,6,8
|
||||
SPINARAK,9,12
|
||||
SPINARAK,9,12
|
||||
SPINARAK,9,12
|
||||
50,PINECO,11,13
|
||||
30,WURMPLE,6,8
|
||||
20,SPINARAK,9,12
|
||||
#-------------------------------
|
||||
028 # Natural Park
|
||||
25,10,10
|
||||
Land
|
||||
CATERPIE,10
|
||||
WEEDLE,10
|
||||
PIDGEY,10,14
|
||||
PIDGEY,12,14
|
||||
SUNKERN,12
|
||||
SUNKERN,12
|
||||
METAPOD,10
|
||||
KAKUNA,10
|
||||
PIDGEY,10,14
|
||||
PIDGEY,12,14
|
||||
PIDGEY,10,14
|
||||
PIDGEY,12,14
|
||||
LandMorning
|
||||
CATERPIE,10,12
|
||||
WEEDLE,10,12
|
||||
PIDGEY,10,14
|
||||
PIDGEY,10,14
|
||||
METAPOD,10
|
||||
KAKUNA,10
|
||||
METAPOD,10
|
||||
KAKUNA,10
|
||||
CATERPIE,10,12
|
||||
WEEDLE,10,12
|
||||
CATERPIE,10,12
|
||||
WEEDLE,10,12
|
||||
LandNight
|
||||
HOOTHOOT,10,14
|
||||
SPINARAK,10,15
|
||||
HOOTHOOT,10,14
|
||||
SPINARAK,10,15
|
||||
PINECO,9,13
|
||||
PINECO,9,13
|
||||
NATU,12,14
|
||||
NATU,12,14
|
||||
DROWZEE,9,15
|
||||
DROWZEE,9,15
|
||||
DROWZEE,9,15
|
||||
DROWZEE,9,15
|
||||
BugContest
|
||||
CATERPIE,7,18
|
||||
WEEDLE,7,18
|
||||
METAPOD,9,18
|
||||
KAKUNA,9,18
|
||||
PARAS,10,17
|
||||
VENONAT,10,16
|
||||
BUTTERFREE,12,15
|
||||
BEEDRILL,12,15
|
||||
SCYTHER,13,14
|
||||
PINSIR,13,14
|
||||
SCYTHER,13,14
|
||||
PINSIR,13,14
|
||||
[028] # Natural Park
|
||||
Land,25
|
||||
20,CATERPIE,10
|
||||
20,SUNKERN,12
|
||||
20,WEEDLE,10
|
||||
15,PIDGEY,10,14
|
||||
15,PIDGEY,12,14
|
||||
5,KAKUNA,10
|
||||
5,METAPOD,10
|
||||
LandNight,25
|
||||
30,HOOTHOOT,10,14
|
||||
30,SPINARAK,10,15
|
||||
20,PINECO,9,13
|
||||
10,DROWZEE,9,15
|
||||
10,NATU,12,14
|
||||
LandMorning,25
|
||||
25,CATERPIE,10,12
|
||||
25,WEEDLE,10,12
|
||||
20,PIDGEY,10,14
|
||||
15,KAKUNA,10
|
||||
15,METAPOD,10
|
||||
BugContest,25
|
||||
20,CATERPIE,7,18
|
||||
20,WEEDLE,7,18
|
||||
10,KAKUNA,9,18
|
||||
10,METAPOD,9,18
|
||||
10,PARAS,10,17
|
||||
10,VENONAT,10,16
|
||||
5,BEEDRILL,12,15
|
||||
5,BUTTERFREE,12,15
|
||||
5,PINSIR,13,14
|
||||
5,SCYTHER,13,14
|
||||
#-------------------------------
|
||||
031 # Route 3
|
||||
25,10,10
|
||||
Land
|
||||
NIDORANfE,12,15
|
||||
NIDORANmA,12,15
|
||||
NIDORANfE,12,15
|
||||
NIDORANmA,12,15
|
||||
PIKACHU,14,17
|
||||
PIKACHU,14,17
|
||||
PONYTA,13,15
|
||||
PONYTA,13,15
|
||||
EEVEE,15
|
||||
EEVEE,15
|
||||
EEVEE,15
|
||||
EEVEE,15
|
||||
Water
|
||||
SURSKIT,13,14
|
||||
LOTAD,14
|
||||
LOTAD,14
|
||||
LOTAD,15
|
||||
LOTAD,15
|
||||
RockSmash
|
||||
NOSEPASS,13,14
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
[031] # Route 3
|
||||
Land,25
|
||||
30,NIDORANfE,12,15
|
||||
30,NIDORANmA,12,15
|
||||
20,PIKACHU,14,17
|
||||
10,EEVEE,15
|
||||
10,PONYTA,13,15
|
||||
Water,10
|
||||
60,SURSKIT,13,14
|
||||
35,LOTAD,14
|
||||
5,LOTAD,15
|
||||
OldRod
|
||||
MAGIKARP,6,11
|
||||
MAGIKARP,10,17
|
||||
70,MAGIKARP,6,11
|
||||
30,MAGIKARP,10,17
|
||||
GoodRod
|
||||
POLIWAG,12,15
|
||||
PSYDUCK,11,14
|
||||
WOOPER,13,17
|
||||
60,POLIWAG,12,15
|
||||
20,PSYDUCK,11,14
|
||||
20,WOOPER,13,17
|
||||
SuperRod
|
||||
CHINCHOU,11,12
|
||||
REMORAID,12,14
|
||||
LUVDISC,10,16
|
||||
LUVDISC,10,16
|
||||
LUVDISC,10,16
|
||||
40,CHINCHOU,11,12
|
||||
40,REMORAID,12,14
|
||||
20,LUVDISC,10,16
|
||||
RockSmash
|
||||
60,NOSEPASS,13,14
|
||||
40,GEODUDE,12,15
|
||||
HeadbuttLow
|
||||
PINECO,14,17
|
||||
COMBEE,15,17
|
||||
PINECO,14,16
|
||||
HERACROSS,16,18
|
||||
COMBEE,15,16
|
||||
HERACROSS,16,17
|
||||
HERACROSS,16,17
|
||||
MUNCHLAX,13,18
|
||||
30,PINECO,14,17
|
||||
25,COMBEE,15,17
|
||||
20,PINECO,14,16
|
||||
10,HERACROSS,16,18
|
||||
9,HERACROSS,16,17
|
||||
5,COMBEE,15,16
|
||||
1,MUNCHLAX,13,18
|
||||
HeadbuttHigh
|
||||
SEEDOT,14,17
|
||||
SHROOMISH,14,17
|
||||
SEEDOT,14,17
|
||||
BURMY,12,15
|
||||
SHROOMISH,14,17
|
||||
BURMY,12,15
|
||||
BURMY,12,15
|
||||
BURMY,12,15
|
||||
50,SEEDOT,14,17
|
||||
30,SHROOMISH,14,17
|
||||
20,BURMY,12,15
|
||||
#-------------------------------
|
||||
034 # Ice Cave
|
||||
25,10,10
|
||||
Cave
|
||||
SWINUB,16,18
|
||||
SWINUB,16,18
|
||||
SNEASEL,14,16
|
||||
SNEASEL,14,16
|
||||
SNORUNT,12,15
|
||||
SNORUNT,12,15
|
||||
SNOVER,14
|
||||
SNOVER,14
|
||||
SMOOCHUM,11,14
|
||||
SMOOCHUM,11,14
|
||||
SMOOCHUM,11,14
|
||||
SMOOCHUM,11,14
|
||||
[034] # Ice Cave
|
||||
Cave,10
|
||||
40,SWINUB,16,18
|
||||
20,SNEASEL,14,16
|
||||
20,SNORUNT,12,15
|
||||
10,SMOOCHUM,11,14
|
||||
10,SNOVER,14
|
||||
#-------------------------------
|
||||
039 # Route 4
|
||||
25,10,10
|
||||
Land
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
[039] # Route 4
|
||||
Land,25
|
||||
50,SHELLOS_1,12,15
|
||||
40,GRIMER,13,15
|
||||
10,MURKROW,12,14
|
||||
#-------------------------------
|
||||
041 # Route 5
|
||||
25,10,10
|
||||
Land
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SLUGMA,13,14
|
||||
SLUGMA,13,14
|
||||
SLUGMA,13,14
|
||||
SLUGMA,13,14
|
||||
[041] # Route 5
|
||||
Land,25
|
||||
50,GRIMER,13,15
|
||||
40,SPEAROW,13,16
|
||||
10,SLUGMA,13,14
|
||||
#-------------------------------
|
||||
044 # Route 6
|
||||
25,10,10
|
||||
Land
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
[044] # Route 6
|
||||
Land,25
|
||||
50,SHELLOS_1,12,15
|
||||
40,GRIMER,13,15
|
||||
10,MURKROW,12,14
|
||||
#-------------------------------
|
||||
047 # Route 7
|
||||
25,10,10
|
||||
Land
|
||||
SHELLOS,12,15
|
||||
SHELLOS,12,15
|
||||
SHELLOS,12,15
|
||||
BIDOOF,14,17
|
||||
BIDOOF,14,17
|
||||
BIDOOF,14,17
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
WURMPLE,9,12
|
||||
WURMPLE,9,12
|
||||
WURMPLE,9,12
|
||||
WURMPLE,9,12
|
||||
[047] # Route 7
|
||||
Land,25
|
||||
50,SHELLOS,12,15
|
||||
30,BIDOOF,14,17
|
||||
10,MURKROW,12,14
|
||||
10,WURMPLE,9,12
|
||||
RockSmash
|
||||
NOSEPASS,13,14
|
||||
NOSEPASS,13,14
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
90,NOSEPASS,13,14
|
||||
10,GEODUDE,12,15
|
||||
#-------------------------------
|
||||
049 # Rock Cave
|
||||
25,10,10
|
||||
Cave
|
||||
NOSEPASS,14,15
|
||||
NOSEPASS,13,14
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,16
|
||||
MAGNETON,14,16
|
||||
GEODUDE,13,15
|
||||
GEODUDE,13,15
|
||||
MAWILE,14,16
|
||||
MAWILE,14,16
|
||||
MAWILE,14,16
|
||||
MAWILE,14,16
|
||||
[049] # Rock Cave
|
||||
Cave,10
|
||||
20,MAGNETON,14,16
|
||||
20,MAGNETON,14,17
|
||||
20,NOSEPASS,14,15
|
||||
20,NOSEPASS,13,14
|
||||
10,GEODUDE,13,15
|
||||
10,MAWILE,14,16
|
||||
#-------------------------------
|
||||
050 # Rock Cave
|
||||
25,10,10
|
||||
Cave
|
||||
NOSEPASS,14,15
|
||||
NOSEPASS,13,14
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,16
|
||||
MAGNETON,14,16
|
||||
GEODUDE,13,15
|
||||
GEODUDE,13,15
|
||||
BURMY,14,16
|
||||
BURMY,14,16
|
||||
BURMY,14,16
|
||||
BURMY,14,16
|
||||
[050] # Rock Cave
|
||||
Cave,10
|
||||
20,MAGNETON,14,16
|
||||
20,MAGNETON,14,17
|
||||
20,NOSEPASS,14,15
|
||||
20,NOSEPASS,13,14
|
||||
10,BURMY,14,16
|
||||
10,GEODUDE,13,15
|
||||
#-------------------------------
|
||||
051 # Dungeon
|
||||
25,10,10
|
||||
Cave
|
||||
PICHU,1
|
||||
CLEFFA,1
|
||||
IGGLYBUFF,1
|
||||
IGGLYBUFF,1
|
||||
CHINGLING,1
|
||||
CHINGLING,1
|
||||
RIOLU,1
|
||||
RIOLU,1
|
||||
TYROGUE,1
|
||||
TYROGUE,1
|
||||
TYROGUE,1
|
||||
TYROGUE,1
|
||||
[051] # Dungeon
|
||||
Cave,10
|
||||
20,CHINGLING,1
|
||||
20,CLEFFA,1
|
||||
20,IGGLYBUFF,1
|
||||
20,PICHU,1
|
||||
10,RIOLU,1
|
||||
10,TYROGUE,1
|
||||
#-------------------------------
|
||||
066 # Safari Zone
|
||||
25,10,10
|
||||
Land
|
||||
NIDORANfE,15,16
|
||||
NIDORANmA,15,16
|
||||
DODUO,13,15
|
||||
DODUO,13,15
|
||||
ABRA,12,15
|
||||
ABRA,12,15
|
||||
TANGELA,14,16
|
||||
TANGELA,14,16
|
||||
HOPPIP,13,17
|
||||
HOPPIP,13,17
|
||||
HOPPIP,13,17
|
||||
HOPPIP,13,17
|
||||
[066] # Safari Zone
|
||||
Land,25
|
||||
20,ABRA,12,15
|
||||
20,DODUO,13,15
|
||||
20,NIDORANfE,15,16
|
||||
20,NIDORANmA,15,16
|
||||
10,HOPPIP,13,17
|
||||
10,TANGELA,14,16
|
||||
#-------------------------------
|
||||
068 # Safari Zone
|
||||
25,10,10
|
||||
Land
|
||||
RHYHORN,16,18
|
||||
EXEGGCUTE,15,18
|
||||
VENONAT,15,17
|
||||
VENONAT,15,18
|
||||
AIPOM,14,17
|
||||
GIRAFARIG,16,17
|
||||
TAUROS,15,16
|
||||
HERACROSS,15,17
|
||||
SCYTHER,16
|
||||
PINSIR,16
|
||||
KANGASKHAN,19
|
||||
CHANSEY,17
|
||||
Water
|
||||
PSYDUCK,16,18
|
||||
MARILL,15,18
|
||||
SLOWPOKE,14,16
|
||||
BUIZEL,15,17
|
||||
BUIZEL,15,17
|
||||
[068] # Safari Zone
|
||||
Land,25
|
||||
20,EXEGGCUTE,15,18
|
||||
20,RHYHORN,16,18
|
||||
10,AIPOM,14,17
|
||||
10,GIRAFARIG,16,17
|
||||
10,VENONAT,15,17
|
||||
10,VENONAT,15,18
|
||||
5,HERACROSS,15,17
|
||||
5,TAUROS,15,16
|
||||
4,PINSIR,16
|
||||
4,SCYTHER,16
|
||||
1,CHANSEY,17
|
||||
1,KANGASKHAN,19
|
||||
Water,10
|
||||
60,PSYDUCK,16,18
|
||||
30,MARILL,15,18
|
||||
5,BUIZEL,15,17
|
||||
5,SLOWPOKE,14,16
|
||||
OldRod
|
||||
MAGIKARP,17,21
|
||||
MAGIKARP,17,20
|
||||
70,MAGIKARP,17,21
|
||||
30,MAGIKARP,17,20
|
||||
GoodRod
|
||||
MAGIKARP,16,20
|
||||
FEEBAS,16,20
|
||||
POLIWAG,17,18
|
||||
60,MAGIKARP,16,20
|
||||
20,FEEBAS,16,20
|
||||
20,POLIWAG,17,18
|
||||
SuperRod
|
||||
GOLDEEN,16,18
|
||||
REMORAID,17,19
|
||||
CARVANHA,16,17
|
||||
FINNEON,15,18
|
||||
DRATINI,17
|
||||
40,GOLDEEN,16,18
|
||||
40,REMORAID,17,19
|
||||
15,CARVANHA,16,17
|
||||
4,FINNEON,15,18
|
||||
1,DRATINI,17
|
||||
#-------------------------------
|
||||
069 # Route 8
|
||||
25,10,10
|
||||
Land
|
||||
ODDISH,15,17
|
||||
MAREEP,16,18
|
||||
LOTAD,15,17
|
||||
LOTAD,15,18
|
||||
DITTO,15,17
|
||||
DITTO,16,18
|
||||
BONSLY,14,17
|
||||
BONSLY,14,16
|
||||
BONSLY,14,16
|
||||
BONSLY,14,16
|
||||
BONSLY,15,16
|
||||
BONSLY,15
|
||||
Water
|
||||
TENTACOOL,14,19
|
||||
MANTYKE,15,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
[069] # Route 8
|
||||
Land,25
|
||||
20,MAREEP,16,18
|
||||
20,ODDISH,15,17
|
||||
13,BONSLY,14,16
|
||||
10,DITTO,15,17
|
||||
10,DITTO,16,18
|
||||
10,LOTAD,15,18
|
||||
10,LOTAD,15,17
|
||||
5,BONSLY,14,17
|
||||
1,BONSLY,15,16
|
||||
1,BONSLY,15
|
||||
Water,10
|
||||
60,TENTACOOL,14,19
|
||||
30,MANTYKE,15,16
|
||||
10,REMORAID,14,16
|
||||
OldRod
|
||||
MAGIKARP,16,19
|
||||
MAGIKARP,16,19
|
||||
100,MAGIKARP,16,19
|
||||
GoodRod
|
||||
BARBOACH,17,18
|
||||
SHELLDER,16,19
|
||||
KRABBY,15,16
|
||||
60,BARBOACH,17,18
|
||||
20,KRABBY,15,16
|
||||
20,SHELLDER,16,19
|
||||
SuperRod
|
||||
CHINCHOU,17,19
|
||||
QWILFISH,16,19
|
||||
CORSOLA,15,18
|
||||
STARYU,15,17
|
||||
STARYU,15,17
|
||||
40,CHINCHOU,17,19
|
||||
40,QWILFISH,16,19
|
||||
15,CORSOLA,15,18
|
||||
5,STARYU,15,17
|
||||
#-------------------------------
|
||||
070 # Underwater
|
||||
25,10,10
|
||||
Land
|
||||
CLAMPERL,18,20
|
||||
SHELLDER,18,20
|
||||
CLAMPERL,18,19
|
||||
SHELLDER,18,19
|
||||
CHINCHOU,17,21
|
||||
CHINCHOU,17,21
|
||||
CORSOLA,17,20
|
||||
CORSOLA,17,20
|
||||
RELICANTH,16,19
|
||||
RELICANTH,16,19
|
||||
RELICANTH,16,19
|
||||
RELICANTH,16,19
|
||||
[070] # Underwater
|
||||
Land,25
|
||||
20,CHINCHOU,17,21
|
||||
20,CLAMPERL,18,20
|
||||
20,SHELLDER,18,20
|
||||
10,CLAMPERL,18,19
|
||||
10,CORSOLA,17,20
|
||||
10,RELICANTH,16,19
|
||||
10,SHELLDER,18,19
|
||||
#-------------------------------
|
||||
075 # Tiall Region
|
||||
25,10,10
|
||||
Land
|
||||
RATTATA,11,14
|
||||
GEODUDE,11,14
|
||||
SANDSHREW,11,14
|
||||
VULPIX,11,14
|
||||
DIGLETT,11,14
|
||||
MEOWTH,11,14
|
||||
PIKACHU,11,14
|
||||
PIKACHU,11,14
|
||||
CUBONE,11,14
|
||||
CUBONE,11,14
|
||||
CUBONE,11,14
|
||||
CUBONE,11,14
|
||||
[075] # Tiall Region
|
||||
Land,25
|
||||
20,GEODUDE,11,14
|
||||
20,RATTATA,11,14
|
||||
10,CUBONE,11,14
|
||||
10,DIGLETT,11,14
|
||||
10,MEOWTH,11,14
|
||||
10,PIKACHU,11,14
|
||||
10,SANDSHREW,11,14
|
||||
10,VULPIX,11,14
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -231,7 +231,7 @@ HiddenAbility = LEVITATE
|
||||
TutorMoves = AERIALACE,AIRCUTTER,ANCIENTPOWER,AQUATAIL,BULLDOZE,CALMMIND,CHARGEBEAM,CUT,DARKPULSE,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,FURYCUTTER,GIGAIMPACT,GRAVITY,HEADBUTT,HIDDENPOWER,HONECLAWS,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,MUDSLAP,OMINOUSWIND,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROLEPLAY,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SLEEPTALK,SNORE,SPITE,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,SWIFT,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,TWISTER,WILLOWISP
|
||||
Height = 6.9
|
||||
Weight = 650.0
|
||||
Shape = 2
|
||||
Shape = Serpentine
|
||||
BattlerEnemyX = -2
|
||||
BattlerEnemyY = -8
|
||||
#-------------------------------
|
||||
@@ -359,7 +359,7 @@ EffortPoints = 0,0,0,3,0,0
|
||||
Abilities = REGENERATOR
|
||||
HiddenAbility = REGENERATOR
|
||||
Height = 1.4
|
||||
Shape = 9
|
||||
Shape = Winged
|
||||
BattlerPlayerX = -2
|
||||
BattlerEnemyX = 8
|
||||
BattlerEnemyY = 11
|
||||
@@ -371,7 +371,7 @@ EffortPoints = 0,0,0,0,3,0
|
||||
Abilities = VOLTABSORB
|
||||
HiddenAbility = VOLTABSORB
|
||||
Height = 3.0
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
BattlerPlayerX = -3
|
||||
BattlerEnemyX = 2
|
||||
BattlerEnemyY = 5
|
||||
@@ -383,7 +383,7 @@ EffortPoints = 0,3,0,0,0,0
|
||||
Abilities = INTIMIDATE
|
||||
HiddenAbility = INTIMIDATE
|
||||
Height = 1.3
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
BattlerPlayerX = -8
|
||||
BattlerEnemyX = 3
|
||||
BattlerEnemyY = 14
|
||||
|
||||
@@ -1,471 +1,291 @@
|
||||
# See the documentation on the wiki to learn how to edit this file.
|
||||
#-------------------------------
|
||||
002 # Lappet Town
|
||||
25,10,10
|
||||
Water
|
||||
TENTACOOL,14,19
|
||||
MANTYKE,15,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
[002] # Lappet Town
|
||||
Water,10
|
||||
60,TENTACOOL,14,19
|
||||
30,MANTYKE,15,16
|
||||
10,REMORAID,14,16
|
||||
OldRod
|
||||
MAGIKARP,16,19
|
||||
MAGIKARP,16,19
|
||||
100,MAGIKARP,16,19
|
||||
GoodRod
|
||||
BARBOACH,17,18
|
||||
SHELLDER,16,19
|
||||
KRABBY,15,16
|
||||
60,BARBOACH,17,18
|
||||
20,KRABBY,15,16
|
||||
20,SHELLDER,16,19
|
||||
SuperRod
|
||||
CHINCHOU,17,19
|
||||
QWILFISH,16,19
|
||||
CORSOLA,15,18
|
||||
STARYU,15,17
|
||||
STARYU,15,17
|
||||
40,CHINCHOU,17,19
|
||||
40,QWILFISH,16,19
|
||||
15,CORSOLA,15,18
|
||||
5,STARYU,15,17
|
||||
#-------------------------------
|
||||
005 # Route 1
|
||||
25,10,10
|
||||
Land
|
||||
RATTATA,11,14
|
||||
PIDGEY,11,14
|
||||
RATTATA,11,14
|
||||
PIDGEY,11,14
|
||||
RATTATA,11,14
|
||||
PIDGEY,11,14
|
||||
RATTATA,11,13
|
||||
PIDGEY,11,13
|
||||
RATTATA,11,13
|
||||
PIDGEY,11,13
|
||||
RATTATA,14
|
||||
PIDGEY,14
|
||||
LandNight
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,13
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,13
|
||||
SPINARAK,8,12
|
||||
SPINARAK,8,12
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,14
|
||||
RATTATA,10,14
|
||||
HOOTHOOT,10,14
|
||||
RATTATA,15
|
||||
HOOTHOOT,14
|
||||
[005] # Route 1
|
||||
Land,25
|
||||
40,PIDGEY,11,14
|
||||
40,RATTATA,11,14
|
||||
9,PIDGEY,11,13
|
||||
9,RATTATA,11,13
|
||||
1,PIDGEY,14
|
||||
1,RATTATA,14
|
||||
LandNight,25
|
||||
39,RATTATA,10,14
|
||||
30,HOOTHOOT,10,13
|
||||
20,SPINARAK,8,12
|
||||
9,HOOTHOOT,10,14
|
||||
1,HOOTHOOT,14
|
||||
1,RATTATA,15
|
||||
#-------------------------------
|
||||
021 # Route 2
|
||||
25,10,10
|
||||
Land
|
||||
RATTATA,12,15
|
||||
RATTATA,12,15
|
||||
RATTATA,12,15
|
||||
POOCHYENA,11,15
|
||||
POOCHYENA,11,15
|
||||
POOCHYENA,11,15
|
||||
SHINX,10,12
|
||||
SHINX,10,12
|
||||
SHINX,10,11
|
||||
SHINX,10,11
|
||||
SHINX,10,11
|
||||
SHINX,10,11
|
||||
Water
|
||||
MAGIKARP,7,10
|
||||
GOLDEEN,11,14
|
||||
STARYU,12,15
|
||||
STARYU,12,15
|
||||
STARYU,12,15
|
||||
[021] # Route 2
|
||||
Land,25
|
||||
50,RATTATA,12,15
|
||||
30,POOCHYENA,11,15
|
||||
10,SHINX,10,12
|
||||
10,SHINX,10,11
|
||||
Water,10
|
||||
60,MAGIKARP,7,10
|
||||
30,GOLDEEN,11,14
|
||||
10,STARYU,12,15
|
||||
OldRod
|
||||
MAGIKARP,7,10
|
||||
MAGIKARP,9,15
|
||||
70,MAGIKARP,7,10
|
||||
30,MAGIKARP,9,15
|
||||
GoodRod
|
||||
GOLDEEN,12,14
|
||||
FINNEON,12,15
|
||||
MAGIKARP,12,17
|
||||
60,GOLDEEN,12,14
|
||||
20,FINNEON,12,15
|
||||
20,MAGIKARP,12,17
|
||||
SuperRod
|
||||
GOLDEEN,12,14
|
||||
FINNEON,12,15
|
||||
STARYU,12,15
|
||||
STARYU,14,17
|
||||
STARYU,14,17
|
||||
40,FINNEON,12,15
|
||||
40,GOLDEEN,12,14
|
||||
15,STARYU,12,15
|
||||
5,STARYU,14,17
|
||||
HeadbuttLow
|
||||
PINECO,11,13
|
||||
LEDYBA,6,8
|
||||
PINECO,11,13
|
||||
SPINARAK,9,12
|
||||
LEDYBA,6,8
|
||||
SPINARAK,9,12
|
||||
SPINARAK,9,12
|
||||
MUNCHLAX,11,14
|
||||
50,PINECO,11,13
|
||||
30,LEDYBA,6,8
|
||||
19,SPINARAK,9,12
|
||||
1,MUNCHLAX,11,14
|
||||
HeadbuttHigh
|
||||
PINECO,11,13
|
||||
WURMPLE,6,8
|
||||
PINECO,11,13
|
||||
SPINARAK,9,12
|
||||
WURMPLE,6,8
|
||||
SPINARAK,9,12
|
||||
SPINARAK,9,12
|
||||
SPINARAK,9,12
|
||||
50,PINECO,11,13
|
||||
30,WURMPLE,6,8
|
||||
20,SPINARAK,9,12
|
||||
#-------------------------------
|
||||
028 # Natural Park
|
||||
25,10,10
|
||||
Land
|
||||
CATERPIE,10
|
||||
WEEDLE,10
|
||||
PIDGEY,10,14
|
||||
PIDGEY,12,14
|
||||
SUNKERN,12
|
||||
SUNKERN,12
|
||||
METAPOD,10
|
||||
KAKUNA,10
|
||||
PIDGEY,10,14
|
||||
PIDGEY,12,14
|
||||
PIDGEY,10,14
|
||||
PIDGEY,12,14
|
||||
LandMorning
|
||||
CATERPIE,10,12
|
||||
WEEDLE,10,12
|
||||
PIDGEY,10,14
|
||||
PIDGEY,10,14
|
||||
METAPOD,10
|
||||
KAKUNA,10
|
||||
METAPOD,10
|
||||
KAKUNA,10
|
||||
CATERPIE,10,12
|
||||
WEEDLE,10,12
|
||||
CATERPIE,10,12
|
||||
WEEDLE,10,12
|
||||
LandNight
|
||||
HOOTHOOT,10,14
|
||||
SPINARAK,10,15
|
||||
HOOTHOOT,10,14
|
||||
SPINARAK,10,15
|
||||
PINECO,9,13
|
||||
PINECO,9,13
|
||||
NATU,12,14
|
||||
NATU,12,14
|
||||
DROWZEE,9,15
|
||||
DROWZEE,9,15
|
||||
DROWZEE,9,15
|
||||
DROWZEE,9,15
|
||||
BugContest
|
||||
CATERPIE,7,18
|
||||
WEEDLE,7,18
|
||||
METAPOD,9,18
|
||||
KAKUNA,9,18
|
||||
PARAS,10,17
|
||||
VENONAT,10,16
|
||||
BUTTERFREE,12,15
|
||||
BEEDRILL,12,15
|
||||
SCYTHER,13,14
|
||||
PINSIR,13,14
|
||||
SCYTHER,13,14
|
||||
PINSIR,13,14
|
||||
[028] # Natural Park
|
||||
Land,25
|
||||
20,CATERPIE,10
|
||||
20,SUNKERN,12
|
||||
20,WEEDLE,10
|
||||
15,PIDGEY,10,14
|
||||
15,PIDGEY,12,14
|
||||
5,KAKUNA,10
|
||||
5,METAPOD,10
|
||||
LandNight,25
|
||||
30,HOOTHOOT,10,14
|
||||
30,SPINARAK,10,15
|
||||
20,PINECO,9,13
|
||||
10,DROWZEE,9,15
|
||||
10,NATU,12,14
|
||||
LandMorning,25
|
||||
25,CATERPIE,10,12
|
||||
25,WEEDLE,10,12
|
||||
20,PIDGEY,10,14
|
||||
15,KAKUNA,10
|
||||
15,METAPOD,10
|
||||
BugContest,25
|
||||
20,CATERPIE,7,18
|
||||
20,WEEDLE,7,18
|
||||
10,KAKUNA,9,18
|
||||
10,METAPOD,9,18
|
||||
10,PARAS,10,17
|
||||
10,VENONAT,10,16
|
||||
5,BEEDRILL,12,15
|
||||
5,BUTTERFREE,12,15
|
||||
5,PINSIR,13,14
|
||||
5,SCYTHER,13,14
|
||||
#-------------------------------
|
||||
031 # Route 3
|
||||
25,10,10
|
||||
Land
|
||||
NIDORANfE,12,15
|
||||
NIDORANmA,12,15
|
||||
NIDORANfE,12,15
|
||||
NIDORANmA,12,15
|
||||
PIKACHU,14,17
|
||||
PIKACHU,14,17
|
||||
PONYTA,13,15
|
||||
PONYTA,13,15
|
||||
EEVEE,15
|
||||
EEVEE,15
|
||||
EEVEE,15
|
||||
EEVEE,15
|
||||
Water
|
||||
SURSKIT,13,14
|
||||
LOTAD,14
|
||||
LOTAD,14
|
||||
LOTAD,15
|
||||
LOTAD,15
|
||||
RockSmash
|
||||
NOSEPASS,13,14
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
[031] # Route 3
|
||||
Land,25
|
||||
30,NIDORANfE,12,15
|
||||
30,NIDORANmA,12,15
|
||||
20,PIKACHU,14,17
|
||||
10,EEVEE,15
|
||||
10,PONYTA,13,15
|
||||
Water,10
|
||||
60,SURSKIT,13,14
|
||||
35,LOTAD,14
|
||||
5,LOTAD,15
|
||||
OldRod
|
||||
MAGIKARP,6,11
|
||||
MAGIKARP,10,17
|
||||
70,MAGIKARP,6,11
|
||||
30,MAGIKARP,10,17
|
||||
GoodRod
|
||||
POLIWAG,12,15
|
||||
PSYDUCK,11,14
|
||||
WOOPER,13,17
|
||||
60,POLIWAG,12,15
|
||||
20,PSYDUCK,11,14
|
||||
20,WOOPER,13,17
|
||||
SuperRod
|
||||
CHINCHOU,11,12
|
||||
REMORAID,12,14
|
||||
LUVDISC,10,16
|
||||
LUVDISC,10,16
|
||||
LUVDISC,10,16
|
||||
40,CHINCHOU,11,12
|
||||
40,REMORAID,12,14
|
||||
20,LUVDISC,10,16
|
||||
RockSmash
|
||||
60,NOSEPASS,13,14
|
||||
40,GEODUDE,12,15
|
||||
HeadbuttLow
|
||||
PINECO,14,17
|
||||
COMBEE,15,17
|
||||
PINECO,14,16
|
||||
HERACROSS,16,18
|
||||
COMBEE,15,16
|
||||
HERACROSS,16,17
|
||||
HERACROSS,16,17
|
||||
MUNCHLAX,13,18
|
||||
30,PINECO,14,17
|
||||
25,COMBEE,15,17
|
||||
20,PINECO,14,16
|
||||
10,HERACROSS,16,18
|
||||
9,HERACROSS,16,17
|
||||
5,COMBEE,15,16
|
||||
1,MUNCHLAX,13,18
|
||||
HeadbuttHigh
|
||||
SEEDOT,14,17
|
||||
SHROOMISH,14,17
|
||||
SEEDOT,14,17
|
||||
BURMY,12,15
|
||||
SHROOMISH,14,17
|
||||
BURMY,12,15
|
||||
BURMY,12,15
|
||||
BURMY,12,15
|
||||
50,SEEDOT,14,17
|
||||
30,SHROOMISH,14,17
|
||||
20,BURMY,12,15
|
||||
#-------------------------------
|
||||
034 # Ice Cave
|
||||
25,10,10
|
||||
Cave
|
||||
SWINUB,16,18
|
||||
SWINUB,16,18
|
||||
SNEASEL,14,16
|
||||
SNEASEL,14,16
|
||||
SNORUNT,12,15
|
||||
SNORUNT,12,15
|
||||
SNOVER,14
|
||||
SNOVER,14
|
||||
SMOOCHUM,11,14
|
||||
SMOOCHUM,11,14
|
||||
SMOOCHUM,11,14
|
||||
SMOOCHUM,11,14
|
||||
[034] # Ice Cave
|
||||
Cave,10
|
||||
40,SWINUB,16,18
|
||||
20,SNEASEL,14,16
|
||||
20,SNORUNT,12,15
|
||||
10,SMOOCHUM,11,14
|
||||
10,SNOVER,14
|
||||
#-------------------------------
|
||||
039 # Route 4
|
||||
25,10,10
|
||||
Land
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
[039] # Route 4
|
||||
Land,25
|
||||
50,SHELLOS_1,12,15
|
||||
40,GRIMER,13,15
|
||||
10,MURKROW,12,14
|
||||
#-------------------------------
|
||||
041 # Route 5
|
||||
25,10,10
|
||||
Land
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SPEAROW,13,16
|
||||
SLUGMA,13,14
|
||||
SLUGMA,13,14
|
||||
SLUGMA,13,14
|
||||
SLUGMA,13,14
|
||||
[041] # Route 5
|
||||
Land,25
|
||||
50,GRIMER,13,15
|
||||
40,SPEAROW,13,16
|
||||
10,SLUGMA,13,14
|
||||
#-------------------------------
|
||||
044 # Route 6
|
||||
25,10,10
|
||||
Land
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
SHELLOS_1,12,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
GRIMER,13,15
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
[044] # Route 6
|
||||
Land,25
|
||||
50,SHELLOS_1,12,15
|
||||
40,GRIMER,13,15
|
||||
10,MURKROW,12,14
|
||||
#-------------------------------
|
||||
047 # Route 7
|
||||
25,10,10
|
||||
Land
|
||||
SHELLOS,12,15
|
||||
SHELLOS,12,15
|
||||
SHELLOS,12,15
|
||||
BIDOOF,14,17
|
||||
BIDOOF,14,17
|
||||
BIDOOF,14,17
|
||||
MURKROW,12,14
|
||||
MURKROW,12,14
|
||||
WURMPLE,9,12
|
||||
WURMPLE,9,12
|
||||
WURMPLE,9,12
|
||||
WURMPLE,9,12
|
||||
[047] # Route 7
|
||||
Land,25
|
||||
50,SHELLOS,12,15
|
||||
30,BIDOOF,14,17
|
||||
10,MURKROW,12,14
|
||||
10,WURMPLE,9,12
|
||||
RockSmash
|
||||
NOSEPASS,13,14
|
||||
NOSEPASS,13,14
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
GEODUDE,12,15
|
||||
90,NOSEPASS,13,14
|
||||
10,GEODUDE,12,15
|
||||
#-------------------------------
|
||||
049 # Rock Cave
|
||||
25,10,10
|
||||
Cave
|
||||
NOSEPASS,14,15
|
||||
NOSEPASS,13,14
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,16
|
||||
MAGNETON,14,16
|
||||
GEODUDE,13,15
|
||||
GEODUDE,13,15
|
||||
MAWILE,14,16
|
||||
MAWILE,14,16
|
||||
MAWILE,14,16
|
||||
MAWILE,14,16
|
||||
[049] # Rock Cave
|
||||
Cave,10
|
||||
20,MAGNETON,14,16
|
||||
20,MAGNETON,14,17
|
||||
20,NOSEPASS,14,15
|
||||
20,NOSEPASS,13,14
|
||||
10,GEODUDE,13,15
|
||||
10,MAWILE,14,16
|
||||
#-------------------------------
|
||||
050 # Rock Cave
|
||||
25,10,10
|
||||
Cave
|
||||
NOSEPASS,14,15
|
||||
NOSEPASS,13,14
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,17
|
||||
MAGNETON,14,16
|
||||
MAGNETON,14,16
|
||||
GEODUDE,13,15
|
||||
GEODUDE,13,15
|
||||
BURMY,14,16
|
||||
BURMY,14,16
|
||||
BURMY,14,16
|
||||
BURMY,14,16
|
||||
[050] # Rock Cave
|
||||
Cave,10
|
||||
20,MAGNETON,14,16
|
||||
20,MAGNETON,14,17
|
||||
20,NOSEPASS,14,15
|
||||
20,NOSEPASS,13,14
|
||||
10,BURMY,14,16
|
||||
10,GEODUDE,13,15
|
||||
#-------------------------------
|
||||
051 # Dungeon
|
||||
25,10,10
|
||||
Cave
|
||||
PICHU,1
|
||||
CLEFFA,1
|
||||
IGGLYBUFF,1
|
||||
IGGLYBUFF,1
|
||||
CHINGLING,1
|
||||
CHINGLING,1
|
||||
RIOLU,1
|
||||
RIOLU,1
|
||||
TYROGUE,1
|
||||
TYROGUE,1
|
||||
TYROGUE,1
|
||||
TYROGUE,1
|
||||
[051] # Dungeon
|
||||
Cave,10
|
||||
20,CHINGLING,1
|
||||
20,CLEFFA,1
|
||||
20,IGGLYBUFF,1
|
||||
20,PICHU,1
|
||||
10,RIOLU,1
|
||||
10,TYROGUE,1
|
||||
#-------------------------------
|
||||
066 # Safari Zone
|
||||
25,10,10
|
||||
Land
|
||||
NIDORANfE,15,16
|
||||
NIDORANmA,15,16
|
||||
DODUO,13,15
|
||||
DODUO,13,15
|
||||
ABRA,12,15
|
||||
ABRA,12,15
|
||||
TANGELA,14,16
|
||||
TANGELA,14,16
|
||||
HOPPIP,13,17
|
||||
HOPPIP,13,17
|
||||
HOPPIP,13,17
|
||||
HOPPIP,13,17
|
||||
[066] # Safari Zone
|
||||
Land,25
|
||||
20,ABRA,12,15
|
||||
20,DODUO,13,15
|
||||
20,NIDORANfE,15,16
|
||||
20,NIDORANmA,15,16
|
||||
10,HOPPIP,13,17
|
||||
10,TANGELA,14,16
|
||||
#-------------------------------
|
||||
068 # Safari Zone
|
||||
25,10,10
|
||||
Land
|
||||
RHYHORN,16,18
|
||||
EXEGGCUTE,15,18
|
||||
VENONAT,15,17
|
||||
VENONAT,15,18
|
||||
AIPOM,14,17
|
||||
GIRAFARIG,16,17
|
||||
TAUROS,15,16
|
||||
HERACROSS,15,17
|
||||
SCYTHER,16
|
||||
PINSIR,16
|
||||
KANGASKHAN,19
|
||||
CHANSEY,17
|
||||
Water
|
||||
PSYDUCK,16,18
|
||||
MARILL,15,18
|
||||
SLOWPOKE,14,16
|
||||
BUIZEL,15,17
|
||||
BUIZEL,15,17
|
||||
[068] # Safari Zone
|
||||
Land,25
|
||||
20,EXEGGCUTE,15,18
|
||||
20,RHYHORN,16,18
|
||||
10,AIPOM,14,17
|
||||
10,GIRAFARIG,16,17
|
||||
10,VENONAT,15,17
|
||||
10,VENONAT,15,18
|
||||
5,HERACROSS,15,17
|
||||
5,TAUROS,15,16
|
||||
4,PINSIR,16
|
||||
4,SCYTHER,16
|
||||
1,CHANSEY,17
|
||||
1,KANGASKHAN,19
|
||||
Water,10
|
||||
60,PSYDUCK,16,18
|
||||
30,MARILL,15,18
|
||||
5,BUIZEL,15,17
|
||||
5,SLOWPOKE,14,16
|
||||
OldRod
|
||||
MAGIKARP,17,21
|
||||
MAGIKARP,17,20
|
||||
70,MAGIKARP,17,21
|
||||
30,MAGIKARP,17,20
|
||||
GoodRod
|
||||
MAGIKARP,16,20
|
||||
FEEBAS,16,20
|
||||
POLIWAG,17,18
|
||||
60,MAGIKARP,16,20
|
||||
20,FEEBAS,16,20
|
||||
20,POLIWAG,17,18
|
||||
SuperRod
|
||||
GOLDEEN,16,18
|
||||
REMORAID,17,19
|
||||
CARVANHA,16,17
|
||||
FINNEON,15,18
|
||||
DRATINI,17
|
||||
40,GOLDEEN,16,18
|
||||
40,REMORAID,17,19
|
||||
15,CARVANHA,16,17
|
||||
4,FINNEON,15,18
|
||||
1,DRATINI,17
|
||||
#-------------------------------
|
||||
069 # Route 8
|
||||
25,10,10
|
||||
Land
|
||||
ODDISH,15,17
|
||||
MAREEP,16,18
|
||||
LOTAD,15,17
|
||||
LOTAD,15,18
|
||||
DITTO,15,17
|
||||
DITTO,16,18
|
||||
BONSLY,14,17
|
||||
BONSLY,14,16
|
||||
BONSLY,14,16
|
||||
BONSLY,14,16
|
||||
BONSLY,15,16
|
||||
BONSLY,15
|
||||
Water
|
||||
TENTACOOL,14,19
|
||||
MANTYKE,15,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
REMORAID,14,16
|
||||
[069] # Route 8
|
||||
Land,25
|
||||
20,MAREEP,16,18
|
||||
20,ODDISH,15,17
|
||||
13,BONSLY,14,16
|
||||
10,DITTO,15,17
|
||||
10,DITTO,16,18
|
||||
10,LOTAD,15,18
|
||||
10,LOTAD,15,17
|
||||
5,BONSLY,14,17
|
||||
1,BONSLY,15,16
|
||||
1,BONSLY,15
|
||||
Water,10
|
||||
60,TENTACOOL,14,19
|
||||
30,MANTYKE,15,16
|
||||
10,REMORAID,14,16
|
||||
OldRod
|
||||
MAGIKARP,16,19
|
||||
MAGIKARP,16,19
|
||||
100,MAGIKARP,16,19
|
||||
GoodRod
|
||||
BARBOACH,17,18
|
||||
SHELLDER,16,19
|
||||
KRABBY,15,16
|
||||
60,BARBOACH,17,18
|
||||
20,KRABBY,15,16
|
||||
20,SHELLDER,16,19
|
||||
SuperRod
|
||||
CHINCHOU,17,19
|
||||
QWILFISH,16,19
|
||||
CORSOLA,15,18
|
||||
STARYU,15,17
|
||||
STARYU,15,17
|
||||
40,CHINCHOU,17,19
|
||||
40,QWILFISH,16,19
|
||||
15,CORSOLA,15,18
|
||||
5,STARYU,15,17
|
||||
#-------------------------------
|
||||
070 # Underwater
|
||||
25,10,10
|
||||
Land
|
||||
CLAMPERL,18,20
|
||||
SHELLDER,18,20
|
||||
CLAMPERL,18,19
|
||||
SHELLDER,18,19
|
||||
CHINCHOU,17,21
|
||||
CHINCHOU,17,21
|
||||
CORSOLA,17,20
|
||||
CORSOLA,17,20
|
||||
RELICANTH,16,19
|
||||
RELICANTH,16,19
|
||||
RELICANTH,16,19
|
||||
RELICANTH,16,19
|
||||
[070] # Underwater
|
||||
Land,25
|
||||
20,CHINCHOU,17,21
|
||||
20,CLAMPERL,18,20
|
||||
20,SHELLDER,18,20
|
||||
10,CLAMPERL,18,19
|
||||
10,CORSOLA,17,20
|
||||
10,RELICANTH,16,19
|
||||
10,SHELLDER,18,19
|
||||
#-------------------------------
|
||||
075 # Tiall Region
|
||||
25,10,10
|
||||
Land
|
||||
RATTATA_1,11,14
|
||||
GEODUDE_1,11,14
|
||||
SANDSHREW_1,11,14
|
||||
VULPIX_1,11,14
|
||||
DIGLETT_1,11,14
|
||||
MEOWTH_1,11,14
|
||||
PIKACHU,11,14
|
||||
PIKACHU,11,14
|
||||
CUBONE,11,14
|
||||
CUBONE,11,14
|
||||
CUBONE,11,14
|
||||
CUBONE,11,14
|
||||
[075] # Tiall Region
|
||||
Land,25
|
||||
20,GEODUDE_1,11,14
|
||||
20,RATTATA_1,11,14
|
||||
10,CUBONE,11,14
|
||||
10,DIGLETT_1,11,14
|
||||
10,MEOWTH_1,11,14
|
||||
10,PIKACHU,11,14
|
||||
10,SANDSHREW_1,11,14
|
||||
10,VULPIX_1,11,14
|
||||
|
||||
@@ -121,8 +121,8 @@
|
||||
115,DRAININGKISS,Draining Kiss,14F,50,FAIRY,Special,100,10,0,NearOther,0,abef,"The user steals the target's HP with a kiss. The user's HP is restored by over half of the damage dealt."
|
||||
116,DISARMINGVOICE,Disarming Voice,0A5,40,FAIRY,Special,0,15,0,AllNearFoes,0,befk,"Letting out a charming cry, the user does emotional damage to foes. This attack never misses."
|
||||
117,FAIRYWIND,Fairy Wind,000,40,FAIRY,Special,100,30,0,NearOther,0,bef,"The user stirs up a fairy wind and strikes the target with it."
|
||||
118,AROMATICMIST,Aromatic Mist,138,0,FAIRY,Status,0,20,0,NearAlly,0,,"The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma."
|
||||
119,NATURESMADNESS,Nature's Madness,06C,1,FAIRY,Special,90,10,0,NearOther,0,bef,"The user hits the target with the force of nature. It halves the target's HP."
|
||||
118,NATURESMADNESS,Nature's Madness,06C,1,FAIRY,Special,90,10,0,NearOther,0,bef,"The user hits the target with the force of nature. It halves the target's HP."
|
||||
119,AROMATICMIST,Aromatic Mist,138,0,FAIRY,Status,0,20,0,NearAlly,0,,"The user raises the Sp. Def stat of an ally Pokémon by using a mysterious aroma."
|
||||
120,BABYDOLLEYES,Baby-Doll Eyes,042,0,FAIRY,Status,100,30,0,NearOther,1,bce,"The user stares with its baby-doll eyes, which lowers the target's Attack stat. Always goes first."
|
||||
121,CHARM,Charm,04B,0,FAIRY,Status,100,20,0,NearOther,0,bce,"The user charmingly gazes at the foe, making it less wary. The target's Attack is harshly lowered."
|
||||
122,CRAFTYSHIELD,Crafty Shield,14A,0,FAIRY,Status,0,10,0,UserSide,3,,"The user protects itself and its allies from status moves with a mysterious power."
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -265,7 +265,7 @@ Abilities = SHELLARMOR
|
||||
HiddenAbility = SHELLARMOR
|
||||
Height = 2.0
|
||||
Weight = 120.0
|
||||
Shape = 4
|
||||
Shape = HeadArms
|
||||
Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too.
|
||||
#-------------------------------
|
||||
[GRIMER,1]
|
||||
@@ -350,7 +350,7 @@ Abilities = AERILATE
|
||||
HiddenAbility = AERILATE
|
||||
Height = 1.7
|
||||
Weight = 59.0
|
||||
Shape = 13
|
||||
Shape = MultiWinged
|
||||
Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers.
|
||||
#-------------------------------
|
||||
[GYARADOS,1]
|
||||
@@ -944,7 +944,7 @@ HiddenAbility = LEVITATE
|
||||
TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP
|
||||
Height = 6.9
|
||||
Weight = 650.0
|
||||
Shape = 2
|
||||
Shape = Serpentine
|
||||
BattlerEnemyX = -2
|
||||
BattlerEnemyY = -8
|
||||
#-------------------------------
|
||||
@@ -1093,7 +1093,7 @@ EffortPoints = 0,0,0,3,0,0
|
||||
Abilities = REGENERATOR
|
||||
HiddenAbility = REGENERATOR
|
||||
Height = 1.4
|
||||
Shape = 9
|
||||
Shape = Winged
|
||||
BattlerPlayerX = -2
|
||||
BattlerEnemyX = 8
|
||||
BattlerEnemyY = 11
|
||||
@@ -1106,7 +1106,7 @@ Abilities = VOLTABSORB
|
||||
HiddenAbility = VOLTABSORB
|
||||
TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE
|
||||
Height = 3.0
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
BattlerPlayerX = -3
|
||||
BattlerEnemyX = 2
|
||||
BattlerEnemyY = 5
|
||||
@@ -1118,7 +1118,7 @@ EffortPoints = 0,3,0,0,0,0
|
||||
Abilities = INTIMIDATE
|
||||
HiddenAbility = INTIMIDATE
|
||||
Height = 1.3
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
BattlerPlayerX = -8
|
||||
BattlerEnemyX = 3
|
||||
BattlerEnemyY = 14
|
||||
@@ -1402,7 +1402,7 @@ BaseStats = 54,100,71,115,61,85
|
||||
Height = 1.2
|
||||
Weight = 33.5
|
||||
Color = Black
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them.
|
||||
#-------------------------------
|
||||
[ZYGARDE,2]
|
||||
@@ -1412,7 +1412,7 @@ Abilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything.
|
||||
#-------------------------------
|
||||
[ZYGARDE,3]
|
||||
@@ -1422,7 +1422,7 @@ Abilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
#-------------------------------
|
||||
[DIANCIE,1]
|
||||
FormName = Mega Diancie
|
||||
@@ -1441,7 +1441,7 @@ BaseStats = 80,160,60,80,170,130
|
||||
Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY
|
||||
Height = 6.5
|
||||
Weight = 490.0
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
#-------------------------------
|
||||
[ORICORIO,1]
|
||||
FormName = Pom-Pom Style
|
||||
@@ -1478,7 +1478,7 @@ Moves = 0,COUNTER,1,COUNTER,1,REVERSAL,1,TAUNT,1,TACKLE,1,LEER,1,SANDATTACK,1,BI
|
||||
TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT
|
||||
Height = 1.1
|
||||
Color = Red
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane.
|
||||
#-------------------------------
|
||||
[LYCANROC,2]
|
||||
@@ -1495,7 +1495,7 @@ FormName = School Form
|
||||
BaseStats = 45,140,130,30,140,135
|
||||
Height = 8.2
|
||||
Weight = 78.6
|
||||
Shape = 11
|
||||
Shape = MultiBody
|
||||
Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far.
|
||||
#-------------------------------
|
||||
[SILVALLY,1]
|
||||
@@ -1640,7 +1640,7 @@ EffortPoints = 0,3,0,0,0,0
|
||||
Height = 3.8
|
||||
Weight = 460.0
|
||||
Color = Yellow
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control.
|
||||
#-------------------------------
|
||||
[NECROZMA,2]
|
||||
|
||||
1618
PBS/pokemon.txt
1618
PBS/pokemon.txt
File diff suppressed because it is too large
Load Diff
@@ -265,7 +265,7 @@ Abilities = SHELLARMOR
|
||||
HiddenAbility = SHELLARMOR
|
||||
Height = 2.0
|
||||
Weight = 120.0
|
||||
Shape = 4
|
||||
Shape = HeadArms
|
||||
Pokedex = Having been swallowed whole by Shellder, Slowbro now has an iron defense. It's pretty comfortable in there, too.
|
||||
#-------------------------------
|
||||
[GRIMER,1]
|
||||
@@ -350,7 +350,7 @@ Abilities = AERILATE
|
||||
HiddenAbility = AERILATE
|
||||
Height = 1.7
|
||||
Weight = 59.0
|
||||
Shape = 13
|
||||
Shape = MultiWinged
|
||||
Pokedex = It zips around at blistering speeds, looking for an opening to skewer its opponent on its giant pincers.
|
||||
#-------------------------------
|
||||
[GYARADOS,1]
|
||||
@@ -944,7 +944,7 @@ HiddenAbility = LEVITATE
|
||||
TutorMoves = AERIALACE,AQUATAIL,BRUTALSWING,BULLDOZE,CALMMIND,CHARGEBEAM,CONFIDE,CUT,DARKPULSE,DEFOG,DOUBLETEAM,DRACOMETEOR,DRAGONCLAW,DRAGONPULSE,DRAGONTAIL,DREAMEATER,EARTHPOWER,EARTHQUAKE,ECHOEDVOICE,ENERGYBALL,FACADE,FLY,FRUSTRATION,GIGAIMPACT,GRAVITY,HIDDENPOWER,HYPERBEAM,HYPERVOICE,ICYWIND,IRONHEAD,IRONTAIL,MAGICCOAT,OUTRAGE,PAYBACK,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REST,RETURN,ROAR,ROCKSMASH,ROUND,SAFEGUARD,SHADOWBALL,SHADOWCLAW,SHOCKWAVE,SLEEPTALK,SNORE,SPITE,STEELWING,STONEEDGE,STRENGTH,SUBSTITUTE,SUNNYDAY,SWAGGER,TAILWIND,TELEKINESIS,THUNDER,THUNDERBOLT,THUNDERWAVE,TOXIC,WILLOWISP
|
||||
Height = 6.9
|
||||
Weight = 650.0
|
||||
Shape = 2
|
||||
Shape = Serpentine
|
||||
BattlerEnemyX = -2
|
||||
BattlerEnemyY = -8
|
||||
#-------------------------------
|
||||
@@ -1093,7 +1093,7 @@ EffortPoints = 0,0,0,3,0,0
|
||||
Abilities = REGENERATOR
|
||||
HiddenAbility = REGENERATOR
|
||||
Height = 1.4
|
||||
Shape = 9
|
||||
Shape = Winged
|
||||
BattlerPlayerX = -2
|
||||
BattlerEnemyX = 8
|
||||
BattlerEnemyY = 11
|
||||
@@ -1106,7 +1106,7 @@ Abilities = VOLTABSORB
|
||||
HiddenAbility = VOLTABSORB
|
||||
TutorMoves = ATTRACT,BRICKBREAK,BRUTALSWING,BULKUP,CHARGEBEAM,CONFIDE,DARKPULSE,DEFOG,DOUBLETEAM,ELECTROWEB,EMBARGO,FACADE,FLASHCANNON,FLING,FLY,FOCUSBLAST,FOULPLAY,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HIDDENPOWER,HYPERBEAM,IRONTAIL,KNOCKOFF,PAYBACK,PROTECT,PSYCHIC,RAINDANCE,REST,RETURN,ROCKSMASH,ROLEPLAY,ROUND,SHOCKWAVE,SKYDROP,SLEEPTALK,SLUDGEBOMB,SLUDGEWAVE,SMACKDOWN,SNORE,STRENGTH,SUBSTITUTE,SUPERPOWER,SWAGGER,TAUNT,THIEF,THUNDER,THUNDERBOLT,THUNDERPUNCH,THUNDERWAVE,TORMENT,TOXIC,UPROAR,UTURN,VOLTSWITCH,WILDCHARGE
|
||||
Height = 3.0
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
BattlerPlayerX = -3
|
||||
BattlerEnemyX = 2
|
||||
BattlerEnemyY = 5
|
||||
@@ -1118,7 +1118,7 @@ EffortPoints = 0,3,0,0,0,0
|
||||
Abilities = INTIMIDATE
|
||||
HiddenAbility = INTIMIDATE
|
||||
Height = 1.3
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
BattlerPlayerX = -8
|
||||
BattlerEnemyX = 3
|
||||
BattlerEnemyY = 14
|
||||
@@ -1402,7 +1402,7 @@ BaseStats = 54,100,71,115,61,85
|
||||
Height = 1.2
|
||||
Weight = 33.5
|
||||
Color = Black
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
Pokedex = This is Zygarde when about 10% of its pieces have been assembled. It leaps at its opponent's chest and sinks its sharp fangs into them.
|
||||
#-------------------------------
|
||||
[ZYGARDE,2]
|
||||
@@ -1412,7 +1412,7 @@ Abilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
Pokedex = This is Zygarde's perfected form. From the orifice on its chest, it radiates high-powered energy that eliminates everything.
|
||||
#-------------------------------
|
||||
[ZYGARDE,3]
|
||||
@@ -1422,7 +1422,7 @@ Abilities = POWERCONSTRUCT
|
||||
Height = 4.5
|
||||
Weight = 610.0
|
||||
Color = Black
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
#-------------------------------
|
||||
[DIANCIE,1]
|
||||
FormName = Mega Diancie
|
||||
@@ -1441,7 +1441,7 @@ BaseStats = 80,160,60,80,170,130
|
||||
Moves = 1,HYPERSPACEFURY,1,TRICK,1,DESTINYBOND,1,ALLYSWITCH,1,CONFUSION,6,ASTONISH,10,MAGICCOAT,15,LIGHTSCREEN,19,PSYBEAM,25,SKILLSWAP,29,POWERSPLIT,29,GUARDSPLIT,46,KNOCKOFF,50,WONDERROOM,50,TRICKROOM,55,DARKPULSE,75,PSYCHIC,85,HYPERSPACEFURY
|
||||
Height = 6.5
|
||||
Weight = 490.0
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
#-------------------------------
|
||||
[ORICORIO,1]
|
||||
FormName = Pom-Pom Style
|
||||
@@ -1478,7 +1478,7 @@ Moves = 0,COUNTER,1,COUNTER,1,REVERSAL,1,TAUNT,1,TACKLE,1,LEER,1,SANDATTACK,1,BI
|
||||
TutorMoves = ATTRACT,BRICKBREAK,BULKUP,CONFIDE,COVET,DOUBLETEAM,DUALCHOP,EARTHPOWER,ECHOEDVOICE,ENDEAVOR,FACADE,FIREPUNCH,FOCUSPUNCH,FOULPLAY,FRUSTRATION,HIDDENPOWER,HYPERVOICE,IRONDEFENSE,IRONHEAD,IRONTAIL,LASERFOCUS,LASTRESORT,OUTRAGE,PROTECT,REST,RETURN,ROAR,ROCKPOLISH,ROCKSLIDE,ROCKTOMB,ROUND,SLEEPTALK,SNARL,SNORE,STEALTHROCK,STOMPINGTANTRUM,STONEEDGE,SUBSTITUTE,SWAGGER,SWORDSDANCE,TAUNT,THROATCHOP,THUNDERPUNCH,TOXIC,UPROAR,ZENHEADBUTT
|
||||
Height = 1.1
|
||||
Color = Red
|
||||
Shape = 6
|
||||
Shape = BipedalTail
|
||||
Pokedex = It goads its enemies into attacking, withstands the hits, and in return, delivers a headbutt, crushing their bones with its rocky mane.
|
||||
#-------------------------------
|
||||
[LYCANROC,2]
|
||||
@@ -1495,7 +1495,7 @@ FormName = School Form
|
||||
BaseStats = 45,140,130,30,140,135
|
||||
Height = 8.2
|
||||
Weight = 78.6
|
||||
Shape = 11
|
||||
Shape = MultiBody
|
||||
Pokedex = Weak Wishiwashi school together to concentrate their power. Their united force makes them the demon of the sea, feared near and far.
|
||||
#-------------------------------
|
||||
[SILVALLY,1]
|
||||
@@ -1640,7 +1640,7 @@ EffortPoints = 0,3,0,0,0,0
|
||||
Height = 3.8
|
||||
Weight = 460.0
|
||||
Color = Yellow
|
||||
Shape = 8
|
||||
Shape = Quadruped
|
||||
Pokedex = This is Necrozma's form while it's absorbing the power of Solgaleo, making it extremely ferocious and impossible to control.
|
||||
#-------------------------------
|
||||
[NECROZMA,2]
|
||||
|
||||
Reference in New Issue
Block a user