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