diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-11-22 12:14:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 12:14:58 -0600 |
commit | fd8720b75c56ef3f641e6c5abf6c446929c824b9 (patch) | |
tree | 7b65558bd366be680c577e6a0aea7787db24dd3f /include/pokemon.h | |
parent | 938a88551f6ddefb7f696b738696c8ce2d8e0e36 (diff) |
Label all entities in Boss Fight Cutscenes (#78)
* label all entities in cutscenes
* remove commented func.. wasn't matching anyway
* Skarmony -> Skarmory
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 9f78706..912df49 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -195,6 +195,10 @@ void InitializeRecruitedPokemon(void); void CopySpeciesNametoBuffer(u8 * buffer, s16 index); void CopyYellowSpeciesNametoBuffer(u8 *buffer, s16 index); void CopyCyanSpeciesNametoBuffer(u8 *buffer, s16 index); +void PrintColoredPokeNameToBuffer(u8 *buffer, struct PokemonStruct *pokemon, s32 colorNum); +void PeekPokemonItem(s16 index_, struct HeldItem* item); +void GivePokemonItem(s16 index_, struct HeldItem* item); +bool8 IsPokemonRenamed(struct PokemonStruct* pokemon); u8 *GetCategoryString(s16 index); u8 GetPokemonSize(s16 index); |