19 lines
319 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
BattleCommand_StartSandstorm:
2013-12-01 14:19:57 -05:00
; startsandstorm
ld a, [wBattleWeather]
2013-12-01 14:19:57 -05:00
cp WEATHER_SANDSTORM
jr z, .failed
ld a, WEATHER_SANDSTORM
ld [wBattleWeather], a
2013-12-01 14:19:57 -05:00
ld a, 5
2018-01-23 17:39:09 -05:00
ld [wWeatherCount], a
call AnimateCurrentMove
2013-12-01 14:19:57 -05:00
ld hl, SandstormBrewedText
2019-04-08 14:15:10 +02:00
jp StdBattleTextbox
2013-12-01 14:19:57 -05:00
.failed
call AnimateFailedMove
2013-12-01 14:19:57 -05:00
jp PrintButItFailed