diff options
author | xCrystal <rgr.crystal@gmail.com> | 2019-08-20 20:24:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-20 20:24:03 +0200 |
commit | b5623a352c7d6056b87071fa6baca97a3eb833a4 (patch) | |
tree | 6cd273711151810194c494656c652859415048e6 /src/constants/card_data_constants.asm | |
parent | b5e5b355cdc355630d777fe73e0ed19e609d5461 (diff) | |
parent | 814737a08b86c52d545e9a96a21b8ae3fa3f949b (diff) |
Merge pull request #58 from ElectroDeoxys/master
Disassemble bank 5
Diffstat (limited to 'src/constants/card_data_constants.asm')
-rw-r--r-- | src/constants/card_data_constants.asm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/constants/card_data_constants.asm b/src/constants/card_data_constants.asm index 03b26ff..641d04b 100644 --- a/src/constants/card_data_constants.asm +++ b/src/constants/card_data_constants.asm @@ -86,6 +86,15 @@ NUM_COLORED_TYPES EQU const_value const UNUSED_TYPE ; $07 NUM_TYPES EQU const_value +; generic type (color) flag constants +FIRE_F EQU $1 << FIRE ; $01 +GRASS_F EQU $1 << GRASS ; $02 +LIGHTNING_F EQU $1 << LIGHTNING ; $04 +WATER_F EQU $1 << WATER ; $08 +FIGHTING_F EQU $1 << FIGHTING ; $10 +PSYCHIC_F EQU $1 << PSYCHIC ; $20 +COLORLESS_F EQU $1 << COLORLESS ; $40 + ; CARD_DATA_TYPE constants TYPE_PKMN_FIRE EQU FIRE TYPE_PKMN_GRASS EQU GRASS |