mirror of https://github.com/pret/pokecrystal.git
20 lines
334 B
NASM
20 lines
334 B
NASM
BattleCommand_StartSandstorm: ; 376f8
|
|
; startsandstorm
|
|
|
|
ld a, [wBattleWeather]
|
|
cp WEATHER_SANDSTORM
|
|
jr z, .failed
|
|
|
|
ld a, WEATHER_SANDSTORM
|
|
ld [wBattleWeather], a
|
|
ld a, 5
|
|
ld [WeatherCount], a
|
|
call AnimateCurrentMove
|
|
ld hl, SandstormBrewedText
|
|
jp StdBattleTextBox
|
|
|
|
.failed
|
|
call AnimateFailedMove
|
|
jp PrintButItFailed
|
|
; 37718
|