Added pokemon.txt/pokemon_forms.txt property "Offspring" for species that could be produced by breeding

This commit is contained in:
Maruno17
2021-10-29 20:34:50 +01:00
parent 0c3ec24936
commit 899d037255
8 changed files with 56 additions and 5 deletions

View File

@@ -1131,6 +1131,7 @@ def pbPokemonEditor
:egg_groups => egg_groups, # 26, 27
:hatch_steps => data[28],
:incense => data[29],
:offspring => spec.offspring,
:evolutions => data[30],
:height => data[31],
:weight => data[32],
@@ -1321,7 +1322,7 @@ def pbRegionalDexEditorMain
seen = []
GameData::Species.each_species do |s|
next if seen.include?(s.species)
family = s.get_related_species
family = s.get_family_species
new_dex.concat(family)
seen.concat(family)
end