mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
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
|