From b2dc57576d13ebf4dfa35b0132b003d2cfe4d39e Mon Sep 17 00:00:00 2001 From: xCrystal Date: Wed, 8 Apr 2015 12:15:08 +0200 Subject: Document move effects Document mist effect Document recoil effect Document heal effect Update conversion_effect.asm Update haze_effect.asm Update leech_seed_effect.asm Update pay_day_effect.asm Update reflect_light_screen_effect.asm Update substitute_effect.asm Update transform_effect.asm --- engine/battle/moveEffects/mist_effect.asm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engine/battle/moveEffects/mist_effect.asm') diff --git a/engine/battle/moveEffects/mist_effect.asm b/engine/battle/moveEffects/mist_effect.asm index adee1dfd..8394eec1 100644 --- a/engine/battle/moveEffects/mist_effect.asm +++ b/engine/battle/moveEffects/mist_effect.asm @@ -1,17 +1,17 @@ MistEffect_: ; 33f2b (c:7f2b) ld hl, W_PLAYERBATTSTATUS2 - ld a, [$fff3] + ld a, [H_WHOSETURN] and a - jr z, .asm_33f36 + jr z, .mistEffect ld hl, W_ENEMYBATTSTATUS2 -.asm_33f36 +.mistEffect bit ProtectedByMist, [hl] ; is mon protected by mist? - jr nz, .asm_33f4a + jr nz, .mistAlreadyInUse set ProtectedByMist, [hl] ; mon is now protected by mist callab PlayCurrentMoveAnimation ld hl, ShroudedInMistText jp PrintText -.asm_33f4a +.mistAlreadyInUse ld hl, PrintButItFailedText_ ld b, BANK(PrintButItFailedText_) jp Bankswitch -- cgit v1.3.1-sl0p