ref: bde9ffff6e8d174d6c76cea3f0c42f903b38abd1
dir: /engine/battle/move_effects/safeguard.asm/
BattleCommand_Safeguard: ; 37939 ; safeguard ld hl, wPlayerScreens ld de, wPlayerSafeguardCount ld a, [hBattleTurn] and a jr z, .ok ld hl, wEnemyScreens ld de, wEnemySafeguardCount .ok bit SCREENS_SAFEGUARD, [hl] jr nz, .failed set SCREENS_SAFEGUARD, [hl] ld a, 5 ld [de], a call AnimateCurrentMove ld hl, CoveredByVeilText jp StdBattleTextBox .failed call AnimateFailedMove jp PrintButItFailed ; 37962