mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
Added pokemon.txt/pokemon_forms.txt property "Offspring" for species that could be produced by breeding
This commit is contained in:
@@ -28,6 +28,7 @@ module GameData
|
|||||||
attr_reader :egg_groups
|
attr_reader :egg_groups
|
||||||
attr_reader :hatch_steps
|
attr_reader :hatch_steps
|
||||||
attr_reader :incense
|
attr_reader :incense
|
||||||
|
attr_reader :offspring
|
||||||
attr_reader :evolutions
|
attr_reader :evolutions
|
||||||
attr_reader :height
|
attr_reader :height
|
||||||
attr_reader :weight
|
attr_reader :weight
|
||||||
@@ -119,6 +120,7 @@ module GameData
|
|||||||
}
|
}
|
||||||
if compiling_forms
|
if compiling_forms
|
||||||
ret["PokedexForm"] = [0, "u"]
|
ret["PokedexForm"] = [0, "u"]
|
||||||
|
ret["Offspring"] = [0, "*e", :Species]
|
||||||
ret["Evolutions"] = [0, "*ees", :Species, :Evolution, nil]
|
ret["Evolutions"] = [0, "*ees", :Species, :Evolution, nil]
|
||||||
ret["MegaStone"] = [0, "e", :Item]
|
ret["MegaStone"] = [0, "e", :Item]
|
||||||
ret["MegaMove"] = [0, "e", :Move]
|
ret["MegaMove"] = [0, "e", :Move]
|
||||||
@@ -130,6 +132,7 @@ module GameData
|
|||||||
ret["GrowthRate"] = [0, "e", :GrowthRate]
|
ret["GrowthRate"] = [0, "e", :GrowthRate]
|
||||||
ret["GenderRatio"] = [0, "e", :GenderRatio]
|
ret["GenderRatio"] = [0, "e", :GenderRatio]
|
||||||
ret["Incense"] = [0, "e", :Item]
|
ret["Incense"] = [0, "e", :Item]
|
||||||
|
ret["Offspring"] = [0, "*s"]
|
||||||
ret["Evolutions"] = [0, "*ses", nil, :Evolution, nil]
|
ret["Evolutions"] = [0, "*ses", nil, :Evolution, nil]
|
||||||
# All properties below here are old names for some properties above.
|
# All properties below here are old names for some properties above.
|
||||||
# They will be removed in v21.
|
# They will be removed in v21.
|
||||||
@@ -171,6 +174,7 @@ module GameData
|
|||||||
@egg_groups = hash[:egg_groups] || [:Undiscovered]
|
@egg_groups = hash[:egg_groups] || [:Undiscovered]
|
||||||
@hatch_steps = hash[:hatch_steps] || 1
|
@hatch_steps = hash[:hatch_steps] || 1
|
||||||
@incense = hash[:incense]
|
@incense = hash[:incense]
|
||||||
|
@offspring = hash[:offspring] || []
|
||||||
@evolutions = hash[:evolutions] || []
|
@evolutions = hash[:evolutions] || []
|
||||||
@height = hash[:height] || 1
|
@height = hash[:height] || 1
|
||||||
@weight = hash[:weight] || 1
|
@weight = hash[:weight] || 1
|
||||||
@@ -275,13 +279,23 @@ module GameData
|
|||||||
return ret
|
return ret
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_related_species
|
# Returns an array of all the species in this species' evolution family.
|
||||||
|
def get_family_species
|
||||||
sp = self.get_baby_species
|
sp = self.get_baby_species
|
||||||
evos = GameData::Species.get(sp).get_family_evolutions(false)
|
evos = GameData::Species.get(sp).get_family_evolutions(false)
|
||||||
return [sp] if evos.length == 0
|
return [sp] if evos.length == 0
|
||||||
return [sp].concat(evos.map { |e| e[1] }).uniq
|
return [sp].concat(evos.map { |e| e[1] }).uniq
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# This takes into account whether other_species is evolved.
|
||||||
|
def breeding_can_produce?(other_species)
|
||||||
|
other_family = GameData::Species.get(other_species).get_family_species
|
||||||
|
if @offspring.length > 0
|
||||||
|
return (other_family & @offspring).length > 0
|
||||||
|
end
|
||||||
|
return other_family.include?(@id)
|
||||||
|
end
|
||||||
|
|
||||||
def family_evolutions_have_method?(check_method, check_param = nil)
|
def family_evolutions_have_method?(check_method, check_param = nil)
|
||||||
sp = self.get_baby_species
|
sp = self.get_baby_species
|
||||||
evos = GameData::Species.get(sp).get_family_evolutions
|
evos = GameData::Species.get(sp).get_family_evolutions
|
||||||
|
|||||||
@@ -1131,6 +1131,7 @@ def pbPokemonEditor
|
|||||||
:egg_groups => egg_groups, # 26, 27
|
:egg_groups => egg_groups, # 26, 27
|
||||||
:hatch_steps => data[28],
|
:hatch_steps => data[28],
|
||||||
:incense => data[29],
|
:incense => data[29],
|
||||||
|
:offspring => spec.offspring,
|
||||||
:evolutions => data[30],
|
:evolutions => data[30],
|
||||||
:height => data[31],
|
:height => data[31],
|
||||||
:weight => data[32],
|
:weight => data[32],
|
||||||
@@ -1321,7 +1322,7 @@ def pbRegionalDexEditorMain
|
|||||||
seen = []
|
seen = []
|
||||||
GameData::Species.each_species do |s|
|
GameData::Species.each_species do |s|
|
||||||
next if seen.include?(s.species)
|
next if seen.include?(s.species)
|
||||||
family = s.get_related_species
|
family = s.get_family_species
|
||||||
new_dex.concat(family)
|
new_dex.concat(family)
|
||||||
seen.concat(family)
|
seen.concat(family)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -630,6 +630,7 @@ module Compiler
|
|||||||
:egg_groups => contents["EggGroups"] || contents["Compatibility"],
|
:egg_groups => contents["EggGroups"] || contents["Compatibility"],
|
||||||
:hatch_steps => contents["HatchSteps"] || contents["StepsToHatch"],
|
:hatch_steps => contents["HatchSteps"] || contents["StepsToHatch"],
|
||||||
:incense => contents["Incense"],
|
:incense => contents["Incense"],
|
||||||
|
:offspring => contents["Offspring"],
|
||||||
:evolutions => contents["Evolutions"],
|
:evolutions => contents["Evolutions"],
|
||||||
:height => contents["Height"],
|
:height => contents["Height"],
|
||||||
:weight => contents["Weight"],
|
:weight => contents["Weight"],
|
||||||
@@ -662,7 +663,15 @@ module Compiler
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# Enumerate all evolution species and parameters (this couldn't bedone earlier)
|
# Enumerate all offspring species (this couldn't be done earlier)
|
||||||
|
GameData::Species.each do |species|
|
||||||
|
FileLineData.setSection(species.id.to_s, "Offspring", nil) # For error reporting
|
||||||
|
offspring = species.offspring
|
||||||
|
offspring.each_with_index do |sp, i|
|
||||||
|
offspring[i] = csvEnumField!(sp, :Species, "Offspring", species.id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
# Enumerate all evolution species and parameters (this couldn't be done earlier)
|
||||||
GameData::Species.each do |species|
|
GameData::Species.each do |species|
|
||||||
FileLineData.setSection(species.id.to_s, "Evolutions", nil) # For error reporting
|
FileLineData.setSection(species.id.to_s, "Evolutions", nil) # For error reporting
|
||||||
species.evolutions.each do |evo|
|
species.evolutions.each do |evo|
|
||||||
@@ -821,6 +830,7 @@ module Compiler
|
|||||||
:egg_groups => contents["EggGroups"] || contents["Compatibility"] || base_data.egg_groups.clone,
|
:egg_groups => contents["EggGroups"] || contents["Compatibility"] || base_data.egg_groups.clone,
|
||||||
:hatch_steps => contents["HatchSteps"] || contents["StepsToHatch"] || base_data.hatch_steps,
|
:hatch_steps => contents["HatchSteps"] || contents["StepsToHatch"] || base_data.hatch_steps,
|
||||||
:incense => base_data.incense,
|
:incense => base_data.incense,
|
||||||
|
:offspring => contents["Offspring"] || base_data.offspring.clone,
|
||||||
:evolutions => evolutions,
|
:evolutions => evolutions,
|
||||||
:height => contents["Height"] || base_data.height,
|
:height => contents["Height"] || base_data.height,
|
||||||
:weight => contents["Weight"] || base_data.weight,
|
:weight => contents["Weight"] || base_data.weight,
|
||||||
|
|||||||
@@ -315,6 +315,10 @@ module Compiler
|
|||||||
f.write(sprintf("EggGroups = %s\r\n", species.egg_groups.join(",")))
|
f.write(sprintf("EggGroups = %s\r\n", species.egg_groups.join(",")))
|
||||||
end
|
end
|
||||||
f.write(sprintf("HatchSteps = %d\r\n", species.hatch_steps))
|
f.write(sprintf("HatchSteps = %d\r\n", species.hatch_steps))
|
||||||
|
f.write(sprintf("Incense = %s\r\n", species.incense)) if species.incense
|
||||||
|
if species.offspring.length > 0
|
||||||
|
f.write(sprintf("Offspring = %s\r\n", species.offspring.join(",")))
|
||||||
|
end
|
||||||
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))
|
||||||
@@ -348,7 +352,6 @@ module Compiler
|
|||||||
end
|
end
|
||||||
f.write("\r\n")
|
f.write("\r\n")
|
||||||
end
|
end
|
||||||
f.write(sprintf("Incense = %s\r\n", species.incense)) if species.incense
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
process_pbs_file_message_end
|
process_pbs_file_message_end
|
||||||
@@ -411,6 +414,9 @@ module Compiler
|
|||||||
f.write(sprintf("EggGroups = %s\r\n", species.egg_groups.join(",")))
|
f.write(sprintf("EggGroups = %s\r\n", species.egg_groups.join(",")))
|
||||||
end
|
end
|
||||||
f.write(sprintf("HatchSteps = %d\r\n", species.hatch_steps)) if species.hatch_steps != base_species.hatch_steps
|
f.write(sprintf("HatchSteps = %d\r\n", species.hatch_steps)) if species.hatch_steps != base_species.hatch_steps
|
||||||
|
if species.offspring.length > 0 && species.offspring != base_species.offspring
|
||||||
|
f.write(sprintf("Offspring = %s\r\n", species.offspring.join(",")))
|
||||||
|
end
|
||||||
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
|
||||||
@@ -546,7 +552,7 @@ module Compiler
|
|||||||
if current_family && current_family.include?(species)
|
if current_family && current_family.include?(species)
|
||||||
f.write(",") if comma
|
f.write(",") if comma
|
||||||
else
|
else
|
||||||
current_family = GameData::Species.get(species).get_related_species
|
current_family = GameData::Species.get(species).get_family_species
|
||||||
comma = false
|
comma = false
|
||||||
f.write("\r\n")
|
f.write("\r\n")
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -762,6 +762,7 @@ TutorMoves = AERIALACE,ATTRACT,BLIZZARD,CUT,DIG,DOUBLETEAM,ECHOEDVOICE,FACADE,FR
|
|||||||
EggMoves = BEATUP,CHARM,CHIPAWAY,COUNTER,DISABLE,ENDURE,FOCUSENERGY,IRONTAIL,POISONTAIL,PURSUIT,SKULLBASH,SUPERSONIC,TAKEDOWN
|
EggMoves = BEATUP,CHARM,CHIPAWAY,COUNTER,DISABLE,ENDURE,FOCUSENERGY,IRONTAIL,POISONTAIL,PURSUIT,SKULLBASH,SUPERSONIC,TAKEDOWN
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5140
|
HatchSteps = 5140
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.4
|
Height = 0.4
|
||||||
Weight = 7.0
|
Weight = 7.0
|
||||||
Color = Blue
|
Color = Blue
|
||||||
@@ -841,6 +842,7 @@ TutorMoves = ATTRACT,BLIZZARD,CUT,DIG,DOUBLETEAM,DRILLRUN,ECHOEDVOICE,FACADE,FRU
|
|||||||
EggMoves = AMNESIA,BEATUP,CHIPAWAY,CONFUSION,COUNTER,DISABLE,ENDURE,HEADSMASH,IRONTAIL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN
|
EggMoves = AMNESIA,BEATUP,CHIPAWAY,CONFUSION,COUNTER,DISABLE,ENDURE,HEADSMASH,IRONTAIL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5140
|
HatchSteps = 5140
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.5
|
Height = 0.5
|
||||||
Weight = 9.0
|
Weight = 9.0
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -8383,6 +8385,7 @@ TutorMoves = ACROBATICS,AERIALACE,AIRCUTTER,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEA
|
|||||||
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,SEISMICTOSS,SILVERWIND,TRICK
|
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,SEISMICTOSS,SILVERWIND,TRICK
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3855
|
HatchSteps = 3855
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.7
|
Height = 0.7
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Gray
|
Color = Gray
|
||||||
@@ -8409,6 +8412,7 @@ TutorMoves = ACROBATICS,AERIALACE,AIRCUTTER,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEA
|
|||||||
EggMoves = BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
EggMoves = BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3855
|
HatchSteps = 3855
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.6
|
Height = 0.6
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -13016,6 +13020,7 @@ Moves = 1,TAILGLOW,1,BUBBLE,1,WATERSPORT,9,CHARM,16,SUPERSONIC,24,BUBBLEBEAM,31,
|
|||||||
TutorMoves = ANCIENTPOWER,BLIZZARD,BOUNCE,CALMMIND,COVET,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLASH,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,MUDSLAP,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,SWIFT,TOXIC,UPROAR,UTURN,WATERFALL
|
TutorMoves = ANCIENTPOWER,BLIZZARD,BOUNCE,CALMMIND,COVET,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLASH,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,MUDSLAP,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,SWIFT,TOXIC,UPROAR,UTURN,WATERFALL
|
||||||
EggGroups = Water1,Fairy
|
EggGroups = Water1,Fairy
|
||||||
HatchSteps = 2570
|
HatchSteps = 2570
|
||||||
|
Offspring = PHIONE
|
||||||
Height = 0.3
|
Height = 0.3
|
||||||
Weight = 1.4
|
Weight = 1.4
|
||||||
Color = Blue
|
Color = Blue
|
||||||
|
|||||||
@@ -762,6 +762,7 @@ TutorMoves = AERIALACE,ATTRACT,BLIZZARD,CONFIDE,CUT,DOUBLETEAM,ECHOEDVOICE,FACAD
|
|||||||
EggMoves = BEATUP,CHARM,CHIPAWAY,COUNTER,DISABLE,ENDURE,FOCUSENERGY,IRONTAIL,POISONTAIL,PURSUIT,SKULLBASH,SUPERSONIC,TAKEDOWN,VENOMDRENCH
|
EggMoves = BEATUP,CHARM,CHIPAWAY,COUNTER,DISABLE,ENDURE,FOCUSENERGY,IRONTAIL,POISONTAIL,PURSUIT,SKULLBASH,SUPERSONIC,TAKEDOWN,VENOMDRENCH
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5120
|
HatchSteps = 5120
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.4
|
Height = 0.4
|
||||||
Weight = 7.0
|
Weight = 7.0
|
||||||
Color = Blue
|
Color = Blue
|
||||||
@@ -841,6 +842,7 @@ TutorMoves = ATTRACT,BLIZZARD,CONFIDE,CUT,DOUBLETEAM,DRILLRUN,ECHOEDVOICE,FACADE
|
|||||||
EggMoves = AMNESIA,BEATUP,CHIPAWAY,CONFUSION,COUNTER,DISABLE,ENDURE,HEADSMASH,IRONTAIL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN,VENOMDRENCH
|
EggMoves = AMNESIA,BEATUP,CHIPAWAY,CONFUSION,COUNTER,DISABLE,ENDURE,HEADSMASH,IRONTAIL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN,VENOMDRENCH
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5120
|
HatchSteps = 5120
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.5
|
Height = 0.5
|
||||||
Weight = 9.0
|
Weight = 9.0
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -8388,6 +8390,7 @@ TutorMoves = ACROBATICS,AERIALACE,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEAM,CONFIDE,
|
|||||||
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,LUNGE,SEISMICTOSS,SILVERWIND,TRICK
|
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,LUNGE,SEISMICTOSS,SILVERWIND,TRICK
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3840
|
HatchSteps = 3840
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.7
|
Height = 0.7
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Gray
|
Color = Gray
|
||||||
@@ -8415,6 +8418,7 @@ TutorMoves = ACROBATICS,AERIALACE,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEAM,CONFIDE,
|
|||||||
EggMoves = AROMATHERAPY,BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
EggMoves = AROMATHERAPY,BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3840
|
HatchSteps = 3840
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.6
|
Height = 0.6
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -13001,6 +13005,7 @@ Moves = 1,TAILGLOW,1,BUBBLE,1,WATERSPORT,9,CHARM,16,SUPERSONIC,24,BUBBLEBEAM,31,
|
|||||||
TutorMoves = BLIZZARD,BOUNCE,CALMMIND,CONFIDE,COVET,DAZZLINGGLEAM,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,LIQUIDATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,TOXIC,UPROAR,UTURN,WATERFALL,WATERPULSE
|
TutorMoves = BLIZZARD,BOUNCE,CALMMIND,CONFIDE,COVET,DAZZLINGGLEAM,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,LIQUIDATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,TOXIC,UPROAR,UTURN,WATERFALL,WATERPULSE
|
||||||
EggGroups = Water1,Fairy
|
EggGroups = Water1,Fairy
|
||||||
HatchSteps = 2560
|
HatchSteps = 2560
|
||||||
|
Offspring = PHIONE
|
||||||
Height = 0.3
|
Height = 0.3
|
||||||
Weight = 1.4
|
Weight = 1.4
|
||||||
Color = Blue
|
Color = Blue
|
||||||
|
|||||||
@@ -762,6 +762,7 @@ TutorMoves = ATTRACT,BEATUP,BLIZZARD,BODYSLAM,CHARM,CRUNCH,DIG,EARTHPOWER,ENDURE
|
|||||||
EggMoves = COUNTER,DISABLE,POISONFANG,POISONTAIL,SKULLBASH,SUPERSONIC,TAKEDOWN
|
EggMoves = COUNTER,DISABLE,POISONFANG,POISONTAIL,SKULLBASH,SUPERSONIC,TAKEDOWN
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5120
|
HatchSteps = 5120
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.4
|
Height = 0.4
|
||||||
Weight = 7.0
|
Weight = 7.0
|
||||||
Color = Blue
|
Color = Blue
|
||||||
@@ -841,6 +842,7 @@ TutorMoves = AMNESIA,ATTRACT,BEATUP,BLIZZARD,BODYSLAM,DIG,DRILLRUN,EARTHPOWER,EN
|
|||||||
EggMoves = CONFUSION,COUNTER,DISABLE,HEADSMASH,HORNDRILL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN,THRASH
|
EggMoves = CONFUSION,COUNTER,DISABLE,HEADSMASH,HORNDRILL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN,THRASH
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5120
|
HatchSteps = 5120
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.5
|
Height = 0.5
|
||||||
Weight = 9.0
|
Weight = 9.0
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -8390,6 +8392,7 @@ TutorMoves = ACROBATICS,AERIALACE,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEAM,CONFIDE,
|
|||||||
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,LUNGE,SEISMICTOSS,SILVERWIND,TRICK
|
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,LUNGE,SEISMICTOSS,SILVERWIND,TRICK
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3840
|
HatchSteps = 3840
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.7
|
Height = 0.7
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Gray
|
Color = Gray
|
||||||
@@ -8417,6 +8420,7 @@ TutorMoves = ACROBATICS,AERIALACE,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEAM,CONFIDE,
|
|||||||
EggMoves = AROMATHERAPY,BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
EggMoves = AROMATHERAPY,BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3840
|
HatchSteps = 3840
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.6
|
Height = 0.6
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -13003,6 +13007,7 @@ Moves = 1,TAILGLOW,1,BUBBLE,1,WATERSPORT,9,CHARM,16,SUPERSONIC,24,BUBBLEBEAM,31,
|
|||||||
TutorMoves = BLIZZARD,BOUNCE,CALMMIND,CONFIDE,COVET,DAZZLINGGLEAM,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,LIQUIDATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,TOXIC,UPROAR,UTURN,WATERFALL,WATERPULSE
|
TutorMoves = BLIZZARD,BOUNCE,CALMMIND,CONFIDE,COVET,DAZZLINGGLEAM,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,LIQUIDATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,TOXIC,UPROAR,UTURN,WATERFALL,WATERPULSE
|
||||||
EggGroups = Water1,Fairy
|
EggGroups = Water1,Fairy
|
||||||
HatchSteps = 2560
|
HatchSteps = 2560
|
||||||
|
Offspring = PHIONE
|
||||||
Height = 0.3
|
Height = 0.3
|
||||||
Weight = 1.4
|
Weight = 1.4
|
||||||
Color = Blue
|
Color = Blue
|
||||||
|
|||||||
@@ -762,6 +762,7 @@ TutorMoves = ATTRACT,BEATUP,BLIZZARD,BODYSLAM,CHARM,CRUNCH,DIG,EARTHPOWER,ENDURE
|
|||||||
EggMoves = COUNTER,DISABLE,POISONFANG,POISONTAIL,SKULLBASH,SUPERSONIC,TAKEDOWN
|
EggMoves = COUNTER,DISABLE,POISONFANG,POISONTAIL,SKULLBASH,SUPERSONIC,TAKEDOWN
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5120
|
HatchSteps = 5120
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.4
|
Height = 0.4
|
||||||
Weight = 7.0
|
Weight = 7.0
|
||||||
Color = Blue
|
Color = Blue
|
||||||
@@ -841,6 +842,7 @@ TutorMoves = AMNESIA,ATTRACT,BEATUP,BLIZZARD,BODYSLAM,DIG,DRILLRUN,EARTHPOWER,EN
|
|||||||
EggMoves = CONFUSION,COUNTER,DISABLE,HEADSMASH,HORNDRILL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN,THRASH
|
EggMoves = CONFUSION,COUNTER,DISABLE,HEADSMASH,HORNDRILL,POISONTAIL,SUCKERPUNCH,SUPERSONIC,TAKEDOWN,THRASH
|
||||||
EggGroups = Monster,Field
|
EggGroups = Monster,Field
|
||||||
HatchSteps = 5120
|
HatchSteps = 5120
|
||||||
|
Offspring = NIDORANfE,NIDORANmA
|
||||||
Height = 0.5
|
Height = 0.5
|
||||||
Weight = 9.0
|
Weight = 9.0
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -8390,6 +8392,7 @@ TutorMoves = ACROBATICS,AERIALACE,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEAM,CONFIDE,
|
|||||||
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,LUNGE,SEISMICTOSS,SILVERWIND,TRICK
|
EggMoves = BATONPASS,BUGBUZZ,DIZZYPUNCH,ENCORE,LUNGE,SEISMICTOSS,SILVERWIND,TRICK
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3840
|
HatchSteps = 3840
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.7
|
Height = 0.7
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Gray
|
Color = Gray
|
||||||
@@ -8417,6 +8420,7 @@ TutorMoves = ACROBATICS,AERIALACE,ATTRACT,BRICKBREAK,BUGBITE,CHARGEBEAM,CONFIDE,
|
|||||||
EggMoves = AROMATHERAPY,BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
EggMoves = AROMATHERAPY,BATONPASS,BUGBUZZ,CAPTIVATE,CONFUSERAY,ENCORE,FAKETEARS,GROWTH,SILVERWIND
|
||||||
EggGroups = Bug,Humanlike
|
EggGroups = Bug,Humanlike
|
||||||
HatchSteps = 3840
|
HatchSteps = 3840
|
||||||
|
Offspring = VOLBEAT,ILLUMISE
|
||||||
Height = 0.6
|
Height = 0.6
|
||||||
Weight = 17.7
|
Weight = 17.7
|
||||||
Color = Purple
|
Color = Purple
|
||||||
@@ -13003,6 +13007,7 @@ Moves = 1,TAILGLOW,1,BUBBLE,1,WATERSPORT,9,CHARM,16,SUPERSONIC,24,BUBBLEBEAM,31,
|
|||||||
TutorMoves = BLIZZARD,BOUNCE,CALMMIND,CONFIDE,COVET,DAZZLINGGLEAM,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,LIQUIDATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,TOXIC,UPROAR,UTURN,WATERFALL,WATERPULSE
|
TutorMoves = BLIZZARD,BOUNCE,CALMMIND,CONFIDE,COVET,DAZZLINGGLEAM,DIVE,DOUBLETEAM,ENERGYBALL,FACADE,FLING,FRUSTRATION,GIGAIMPACT,GRASSKNOT,HAIL,HEALBELL,HELPINGHAND,HIDDENPOWER,HYPERBEAM,ICEBEAM,ICYWIND,KNOCKOFF,LASTRESORT,LIGHTSCREEN,LIQUIDATION,PROTECT,PSYCHIC,PSYCHUP,RAINDANCE,REFLECT,REST,RETURN,ROUND,SAFEGUARD,SCALD,SHADOWBALL,SIGNALBEAM,SKILLSWAP,SLEEPTALK,SNORE,SUBSTITUTE,SURF,SWAGGER,TOXIC,UPROAR,UTURN,WATERFALL,WATERPULSE
|
||||||
EggGroups = Water1,Fairy
|
EggGroups = Water1,Fairy
|
||||||
HatchSteps = 2560
|
HatchSteps = 2560
|
||||||
|
Offspring = PHIONE
|
||||||
Height = 0.3
|
Height = 0.3
|
||||||
Weight = 1.4
|
Weight = 1.4
|
||||||
Color = Blue
|
Color = Blue
|
||||||
|
|||||||
Reference in New Issue
Block a user