pokecrystal-board/battle/effects/sandstorm.asm

20 lines
320 B
NASM
Raw Normal View History

BattleCommand_StartSandstorm: ; 376f8
2013-12-01 11:19:57 -08:00
; startsandstorm
ld a, [Weather]
cp WEATHER_SANDSTORM
jr z, .failed
ld a, WEATHER_SANDSTORM
ld [Weather], a
ld a, 5
ld [WeatherCount], a
call AnimateCurrentMove
2013-12-01 11:19:57 -08:00
ld hl, SandstormBrewedText
jp StdBattleTextBox
.failed
call AnimateFailedMove
2013-12-01 11:19:57 -08:00
jp PrintButItFailed
; 37718