diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-22 19:41:55 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-22 19:41:55 +0100 |
commit | 46416da9fa3e33738fce25bbd79d9b61476b5164 (patch) | |
tree | f07535871e6efa7606a520f8ad6cafdf071c6ea2 /src/engine/effect_functions.asm | |
parent | d543a896fd381046dee795f3020237d6da623a9e (diff) |
More duel related disassembly and more DUELVAR constants
Diffstat (limited to 'src/engine/effect_functions.asm')
-rw-r--r-- | src/engine/effect_functions.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/effect_functions.asm b/src/engine/effect_functions.asm index 22d7cec..45aad3b 100644 --- a/src/engine/effect_functions.asm +++ b/src/engine/effect_functions.asm @@ -44,12 +44,12 @@ ApplyStatusEffect: jr z, .cant_induce_status cp MYSTERIOUS_FOSSIL jr z, .cant_induce_status - ; snorlax's thick skinned prevents it from being statused... + ; Snorlax's Thick Skinned prevents it from being statused... cp SNORLAX jr nz, .can_induce_status call SwapTurn xor a - ; ...unless already so, or if affected by muk's toxic gas + ; ...unless already so, or if affected by Muk's Toxic Gas call CheckIfUnderAnyCannotUseStatus2 call SwapTurn jr c, .can_induce_status |