diff options
| author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-04-19 15:34:53 +0100 |
|---|---|---|
| committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-04-19 15:34:53 +0100 |
| commit | 32eeaa6163225cb49837260e221f6b0955acb041 (patch) | |
| tree | 12fdf871f2ace4ab3525b966d2129886c0dde988 /src/constants | |
| parent | e979d9106a5d507f99ee9108c26c9798d6f1fd26 (diff) | |
Add menu_constants, document some deck menu routines
Diffstat (limited to 'src/constants')
| -rw-r--r-- | src/constants/menu_constants.asm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/constants/menu_constants.asm b/src/constants/menu_constants.asm new file mode 100644 index 0000000..47582a2 --- /dev/null +++ b/src/constants/menu_constants.asm @@ -0,0 +1,14 @@ +; filter types for CardTypeFilters
+; used to categorise the different cards
+; i.e. in the deck building screen
+FILTER_FIRE EQUS "TYPE_PKMN_FIRE"
+FILTER_GRASS EQUS "TYPE_PKMN_GRASS"
+FILTER_LIGHTNING EQUS "TYPE_PKMN_LIGHTNING"
+FILTER_WATER EQUS "TYPE_PKMN_WATER"
+FILTER_FIGHTING EQUS "TYPE_PKMN_FIGHTING"
+FILTER_PSYCHIC EQUS "TYPE_PKMN_PSYCHIC"
+FILTER_COLORLESS EQUS "TYPE_PKMN_COLORLESS"
+FILTER_TRAINER EQUS "TYPE_TRAINER"
+FILTER_ENERGY EQU $20
+
+NUM_FILTERS EQU 9
|
