mirror of https://github.com/pret/pokecrystal.git
12 lines
190 B
NASM
12 lines
190 B
NASM
|
BattleCommand_StartSun: ; 37c07
|
||
|
; startsun
|
||
|
ld a, WEATHER_SUN
|
||
|
ld [Weather], a
|
||
|
ld a, 5
|
||
|
ld [WeatherCount], a
|
||
|
call AnimateCurrentMove
|
||
|
ld hl, SunGotBrightText
|
||
|
jp StdBattleTextBox
|
||
|
|
||
|
; 37c1a
|