diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-07-25 00:23:53 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-07-25 00:23:53 +0200 |
commit | e10c10442021c525590af916829426497aba144d (patch) | |
tree | 45c2d55cb88b81850be422267a02e5c9138759a8 /src/constants | |
parent | 8ef677ec6e95ff389aff3a51881ef0413ee00cd5 (diff) |
More bank 0 and 1 stuff
Diffstat (limited to 'src/constants')
-rw-r--r-- | src/constants/duel_constants.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/constants/duel_constants.asm b/src/constants/duel_constants.asm index eaa9a65..9171854 100644 --- a/src/constants/duel_constants.asm +++ b/src/constants/duel_constants.asm @@ -81,6 +81,8 @@ DUELVARS_NUMBER_OF_POKEMON_IN_PLAY_AREA EQUS "LOW(wPlayerNumberOfPokemonInPlayA DUELVARS_ARENA_CARD_STATUS EQUS "LOW(wPlayerArenaCardStatus)" ; f0 DUELVARS_DUELIST_TYPE EQUS "LOW(wPlayerDuelistType)" ; f1 DUELVARS_ARENA_CARD_DISABLED_MOVE_INDEX EQUS "LOW(wPlayerArenaCardDisabledMoveIndex)" ; f2 +DUELVARS_ARENA_CARD_LAST_TURN_DAMAGE EQUS "LOW(wPlayerArenaCardLastTurnDamage)" ; f3 +DUELVARS_ARENA_CARD_LAST_TURN_STATUS EQUS "LOW(wPlayerArenaCardLastTurnStatus)" ; f5 ; card location constants (DUELVARS_CARD_LOCATIONS) CARD_LOCATION_DECK EQU $00 @@ -123,6 +125,7 @@ POISONED EQU $80 DOUBLE_POISONED EQU $c0 CNF_SLP_PRZ EQU $0f ; confused, asleep or paralyzed +PSN_DBLPSN EQU $f0 ; poisoned or double poisoned ; substatus conditions (DUELVARS_ARENA_CARD_SUBSTATUS*) SUBSTATUS1_AGILITY EQU $0c |