pokecrystal/battle/effects/sandstorm.asm

21 lines
299 B
NASM
Raw Normal View History

2013-12-01 19:19:57 +00:00
BattleCommand59: ; 376f8
; startsandstorm
ld a, [Weather]
cp WEATHER_SANDSTORM
jr z, .failed
ld a, WEATHER_SANDSTORM
ld [Weather], a
ld a, 5
ld [WeatherCount], a
call Function37e01
2013-12-01 19:19:57 +00:00
ld hl, SandstormBrewedText
jp StdBattleTextBox
.failed
call Function37e77
2013-12-01 19:19:57 +00:00
jp PrintButItFailed
; 37718