diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2017-12-01 11:32:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-01 11:32:01 -0600 |
commit | 0250aefb73a995a6812a657193abeb96eb34d489 (patch) | |
tree | 90c7868689507a6c189e1fc01c4d553f5776d843 /include/party_menu.h | |
parent | 54da96309186b98263b4434911e1c5b8d4b4e3ec (diff) | |
parent | 921011592cbe9018f558b7977525e49252274947 (diff) |
Merge pull request #118 from PikalaxALT/field_poison
Decompile field poison
Diffstat (limited to 'include/party_menu.h')
-rw-r--r-- | include/party_menu.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/party_menu.h b/include/party_menu.h index 7a7d59cd0..c787bafb1 100644 --- a/include/party_menu.h +++ b/include/party_menu.h @@ -1,8 +1,18 @@ #ifndef GUARD_PARTY_MENU_H #define GUARD_PARTY_MENU_H +enum { + AILMENT_NONE, + AILMENT_PSN, + AILMENT_PRZ, + AILMENT_SLP, + AILMENT_FRZ, + AILMENT_BRN +}; + bool8 pokemon_has_move(struct Pokemon *, u16); void sub_81B58A8(void); void DoWallyTutorialBagMenu(void); +u8 pokemon_ailments_get_primary(u32 status); #endif // GUARD_PARTY_MENU_H |