diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2019-08-03 10:48:14 +0100 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2019-08-07 23:24:59 +0100 |
commit | 972a15e76ae9fd9a7d797ea7fe582ef26bd0550a (patch) | |
tree | 29f28ce9a1665823afda635683e445b5c5aac10a /src/constants | |
parent | e14fe82a133a03059d3c0f8fb90d9d76b7e52580 (diff) |
Label energy flags functions & constants
Diffstat (limited to 'src/constants')
-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 |