2015-11-06 19:45:10 +00:00
|
|
|
BattleCommand_StartSandstorm: ; 376f8
|
2013-12-01 19:19:57 +00:00
|
|
|
; startsandstorm
|
|
|
|
|
2018-01-23 21:45:34 +00:00
|
|
|
ld a, [wBattleWeather]
|
2013-12-01 19:19:57 +00:00
|
|
|
cp WEATHER_SANDSTORM
|
|
|
|
jr z, .failed
|
|
|
|
|
|
|
|
ld a, WEATHER_SANDSTORM
|
2018-01-23 21:45:34 +00:00
|
|
|
ld [wBattleWeather], a
|
2013-12-01 19:19:57 +00:00
|
|
|
ld a, 5
|
|
|
|
ld [WeatherCount], a
|
2014-01-01 13:09:15 +00:00
|
|
|
call AnimateCurrentMove
|
2013-12-01 19:19:57 +00:00
|
|
|
ld hl, SandstormBrewedText
|
|
|
|
jp StdBattleTextBox
|
|
|
|
|
|
|
|
.failed
|
2014-01-01 13:09:15 +00:00
|
|
|
call AnimateFailedMove
|
2013-12-01 19:19:57 +00:00
|
|
|
jp PrintButItFailed
|
|
|
|
; 37718
|