diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-08-28 21:09:02 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-08-28 21:09:02 +0200 |
commit | c6e0f8cfd74c83165838e227efba27a8f9166133 (patch) | |
tree | af0bfa775bdb0b87c1170c578cf61c87f1131425 /include/pokemon_menu.h | |
parent | 5cfb890e9351b737786ce263b081599513a99ae6 (diff) |
start decomp of pokemon menu
Diffstat (limited to 'include/pokemon_menu.h')
-rw-r--r-- | include/pokemon_menu.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/pokemon_menu.h b/include/pokemon_menu.h index fc43a44c6..841e62035 100644 --- a/include/pokemon_menu.h +++ b/include/pokemon_menu.h @@ -1,6 +1,31 @@ #ifndef GUARD_POKEMON_MENU_H #define GUARD_POKEMON_MENU_H +#define POKEMENU_FIRST_FIELD_MOVE_ID 10 + +enum +{ + POKEMENU_SUMMARY, // 0 + POKEMENU_SWITCH, // 1 + POKEMENU_ITEM, // 2 + POKEMENU_CANCEL, // 3 + POKEMENU_MAIL = 7, + POKEMENU_CUT = 10, + POKEMENU_FLASH, + POKEMENU_ROCK_SMASH, + POKEMENU_STRENGTH, + POKEMENU_SURF, + POKEMENU_FLY, + POKEMENU_DIVE, + POKEMENU_WATERFALL, + POKEMENU_TELEPORT, + POKEMENU_DIG, + POKEMENU_SECRET_POWER, + POKEMENU_MILK_DRINK, + POKEMENU_SOFT_BOILED, + POKEMENU_SWEET_SCENT, +}; + void sub_8089A70(void); void sub_808A004(); void sub_808AB90(void); |