diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-07-26 17:53:33 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-07-26 17:53:33 +0200 |
commit | 25ccfe9112f1666cdeace67898c2a99362e4c855 (patch) | |
tree | 369aacd0d683e9bf4d5a3a719ba89bb26eadd0d8 /src/constants | |
parent | f10e8a01cb30cae510af5ea613031783b61e880f (diff) |
Finish home.asm clean up
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 fdd0966..a456a4a 100644 --- a/src/constants/duel_constants.asm +++ b/src/constants/duel_constants.asm @@ -128,6 +128,8 @@ CNF_SLP_PRZ EQU $0f ; confused, asleep or paralyzed PSN_DBLPSN EQU $f0 ; poisoned or double poisoned ; substatus conditions (DUELVARS_ARENA_CARD_SUBSTATUS*) + +; SUBSTATUS1 are checked on a defending Pokemon SUBSTATUS1_AGILITY EQU $0c SUBSTATUS1_FLY EQU $0d SUBSTATUS1_HARDEN EQU $0e @@ -142,6 +144,7 @@ SUBSTATUS1_NO_DAMAGE_17 EQU $17 SUBSTATUS1_NEXT_TURN_DOUBLE_DAMAGE EQU $19 SUBSTATUS1_REDUCE_BY_10 EQU $1e +; SUBSTATUS2 are checked on an attacking Pokemon SUBSTATUS2_SMOKESCREEN EQU $01 SUBSTATUS2_SAND_ATTACK EQU $02 SUBSTATUS2_REDUCE_BY_20 EQU $03 |