diff options
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 3d97e2f3d..2983d58bd 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -383,6 +383,18 @@ struct PokemonStorage u8 unkArray[14]; }; +struct Evolution +{ + u16 method; + u16 param; + u16 targetSpecies; +}; + +struct EvolutionData +{ + struct Evolution evolutions[5]; +}; + extern const u8 *const gItemEffectTable[]; extern u8 gTrainerClassToPicIndex[]; extern u8 gTrainerClassToNameIndex[]; |