diff options
author | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-07-12 09:59:49 +0800 |
---|---|---|
committer | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-07-12 09:59:49 +0800 |
commit | 43ba65ef8b733912cbbf73478b722787c528dab6 (patch) | |
tree | c876a8cb195269f1f373e13fe43192933da7035a /include | |
parent | 39d68ebd445be5657a916dec1b4872717e9c40d3 (diff) |
document pokemon function symbols
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon.h | 5 | ||||
-rw-r--r-- | include/pokemon_3.h | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 558eedc67..40d63aa89 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -607,7 +607,7 @@ void CopyPlayerPartyMonToBattleData(u8 battleIndex, u8 partyIndex); u8 GetNature(struct Pokemon *mon); u8 GetNatureFromPersonality(u32 personality); -u16 nature_stat_mod(u8 nature, u16 n, u8 statIndex); +u16 ModifyStatByNature(u8 nature, u16 n, u8 statIndex); void MonRestorePP(struct Pokemon *); void BoxMonRestorePP(struct BoxPokemon *); @@ -666,6 +666,7 @@ bool8 TryIncrementMonLevel(struct Pokemon *mon); void BoxMonToMon(struct BoxPokemon *srcMon, struct Pokemon *dstMon); u8 GetLevelUpMovesBySpecies(u16 species, u16 *moves); bool8 HealStatusConditions(struct Pokemon *mon, u32 battlePartyId, u32 healMask, u8 battlerId); +u16 GetDeoxysStat(struct Pokemon *mon, s32 statId); #include "sprite.h" @@ -675,7 +676,7 @@ void BattleAnimateBackSprite(struct Sprite* sprite, u16 species); void PlayMapChosenOrBattleBGM(u16 songId); u8 GetMonsStateToDoubles(void); -void sub_803E0A4(struct Pokemon *mon, struct BattleTowerPokemon *src); +void CreateBattleTowerMon(struct Pokemon *mon, struct BattleTowerPokemon *src); void SetMultiuseSpriteTemplateToPokemon(u16 trainerSpriteId, u8 battlerPosition); const u8 * Battle_PrintStatBoosterEffectMessage(u16 itemId); diff --git a/include/pokemon_3.h b/include/pokemon_3.h index e65bc85fc..9a32d4771 100644 --- a/include/pokemon_3.h +++ b/include/pokemon_3.h @@ -5,8 +5,8 @@ const u8* GetTrainerClassNameFromId(u16 trainerId); const u8* GetTrainerNameFromId(u16 trainerId); -void * SetUpMonSpriteManagerMaybe(u8, u8); -void sub_8044D80(void); -void * sub_8044E00(u8 buffId); +void * OakSpeechNidoranFSetup(u8, u8); +void OakSpeechNidoranFFreeResources(void); +void * OakSpeechNidoranFGetBuffer(u8 buffId); #endif // GUARD_POKEMON_3_H |