|
1 | 1 | ; MenuHeader flags
|
2 | 2 | const_def
|
3 | 3 | shift_const MENU_RESTORE_TILES ; Will be set if MENU_BACKUP_TILES(_2) is set.
|
4 |
| - shift_const MENU_UNUSED_1 |
5 |
| - shift_const MENU_UNUSED_2 |
| 4 | + const_skip 2 |
6 | 5 | shift_const MENU_NO_CLICK_SFX
|
7 | 6 | shift_const MENU_SPRITE_ANIMS
|
8 |
| - shift_const MENU_UNUSED_3 |
| 7 | + shift_const MENU_UNUSED |
9 | 8 | shift_const MENU_BACKUP_TILES
|
10 | 9 | shift_const MENU_BACKUP_TILES_2
|
11 | 10 |
|
|
32 | 31 | shift_const SCROLLINGMENU_ENABLE_START
|
33 | 32 | shift_const SCROLLINGMENU_ENABLE_SELECT
|
34 | 33 |
|
| 34 | +; _2DMenu more flags |
| 35 | + const_def |
| 36 | + shift_const _2DMENU_EXIT_RIGHT ; 0 |
| 37 | + shift_const _2DMENU_EXIT_LEFT ; 1 |
| 38 | + shift_const _2DMENU_EXIT_UP ; 2 |
| 39 | + shift_const _2DMENU_EXIT_DOWN ; 3 |
| 40 | + shift_const _2DMENU_WRAP_LEFT_RIGHT ; 4 |
| 41 | + shift_const _2DMENU_WRAP_UP_DOWN ; 5 |
| 42 | + shift_const _2DMENU_ENABLE_SPRITE_ANIMS ; 6 |
| 43 | + shift_const _2DMENU_DISABLE_JOYPAD_FILTER ; 7 |
| 44 | + |
| 45 | +; _2DMenu more flags 2 |
| 46 | + const_def |
| 47 | + const_skip 7 |
| 48 | + shift_const _2DMENU_EXITING ; 7 |
| 49 | + |
35 | 50 |
|
36 | 51 | ; MonMenuOptions indexes (see data/mon_menu.asm)
|
37 | 52 | ; used by PokemonActionSubmenu (see engine/menus/start_menu.asm)
|
38 | 53 | const_def 1
|
39 | 54 | ; moves
|
40 |
| - const MONMENUITEM_CUT ; 1 |
41 |
| - const MONMENUITEM_FLY ; 2 |
42 |
| - const MONMENUITEM_SURF ; 3 |
43 |
| - const MONMENUITEM_STRENGTH ; 4 |
44 |
| - const MONMENUITEM_WATERFALL ; 5 |
45 |
| - const MONMENUITEM_FLASH ; 6 |
46 |
| - const MONMENUITEM_WHIRLPOOL ; 7 |
47 |
| - const MONMENUITEM_DIG ; 8 |
48 |
| - const MONMENUITEM_TELEPORT ; 9 |
49 |
| - const MONMENUITEM_SOFTBOILED ; 10 |
50 |
| - const MONMENUITEM_HEADBUTT ; 11 |
51 |
| - const MONMENUITEM_ROCKSMASH ; 12 |
52 |
| - const MONMENUITEM_MILKDRINK ; 13 |
53 |
| - const MONMENUITEM_SWEETSCENT ; 14 |
| 55 | + const MONMENUITEM_CUT ; 1 |
| 56 | + const MONMENUITEM_FLY ; 2 |
| 57 | + const MONMENUITEM_SURF ; 3 |
| 58 | + const MONMENUITEM_STRENGTH ; 4 |
| 59 | + const MONMENUITEM_FLASH ; 5 |
| 60 | + const MONMENUITEM_WHIRLPOOL ; 6 |
| 61 | + const MONMENUITEM_BOUNCE ; 7 |
| 62 | + const MONMENUITEM_DIG ; 8 |
| 63 | + const MONMENUITEM_TELEPORT ; 9 |
| 64 | + const MONMENUITEM_SOFTBOILED ; 10 |
54 | 65 | ; options
|
55 |
| - const MONMENUITEM_STATS ; 15 |
56 |
| - const MONMENUITEM_SWITCH ; 16 |
57 |
| - const MONMENUITEM_ITEM ; 17 |
58 |
| - const MONMENUITEM_CANCEL ; 18 |
59 |
| - const MONMENUITEM_MOVE ; 19 |
60 |
| - const MONMENUITEM_MAIL ; 20 |
61 |
| - const MONMENUITEM_ERROR ; 21 |
| 66 | + const MONMENUITEM_STATS ; 11 |
| 67 | + const MONMENUITEM_SWITCH ; 12 |
| 68 | + const MONMENUITEM_ITEM ; 13 |
| 69 | + const MONMENUITEM_CANCEL ; 14 |
| 70 | + const MONMENUITEM_MOVE ; 15 |
| 71 | + const MONMENUITEM_MAIL ; 16 |
| 72 | + const MONMENUITEM_ERROR ; 17 |
62 | 73 |
|
63 | 74 | ; MonMenuOptions categories
|
64 |
| -DEF MONMENU_FIELD_MOVE EQU 0 |
65 |
| -DEF MONMENU_MENUOPTION EQU 1 |
| 75 | +DEF MONMENU_MENUOPTION EQU 0 |
| 76 | +DEF MONMENU_FIELD_MOVE EQU 1 |
66 | 77 |
|
67 | 78 | DEF NUM_MONMENU_ITEMS EQU 8
|
68 | 79 |
|
|
0 commit comments