mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -05:00
* improving readability also seemingly located the party healing function * readability * clean it up * Update pokemon.h * add function names Adds names to many unnamed functions for readability. Also adds names to a couple structs. * add function names * add struct names * more functions with human names * rename chatotcrydata * doxygen documentation * update box mon function ProcessBoxPokemonWithTrainerInfo is now UpdateBoxMonStatusAndTrainerInfo and all params are labeled * fixing formatting --------- Co-authored-by: Jack <schoenjack98@gmail.com>
14 lines
588 B
C
14 lines
588 B
C
#ifndef POKEPLATINUM_UNK_02096420_H
|
|
#define POKEPLATINUM_UNK_02096420_H
|
|
|
|
#include "pokemon.h"
|
|
#include "struct_decls/struct_party_decl.h"
|
|
|
|
u8 CheckItemEffectsOnPokemon(Pokemon * param0, u16 param1, u16 param2, u32 param3);
|
|
u8 CheckItemEffectsOnPartyMember(Party * param0, u16 param1, u8 param2, u8 param3, u32 param4);
|
|
u8 ApplyItemEffectsToPokemon(Pokemon * param0, u16 param1, u16 param2, u16 param3, u32 param4);
|
|
u8 sub_02096F14(Party * param0, u16 param1, u8 param2, u8 param3, u16 param4, u32 param5);
|
|
void HealAllPokemonInParty(Party * party);
|
|
|
|
#endif // POKEPLATINUM_UNK_02096420_H
|