summaryrefslogtreecommitdiff
path: root/engine/battle/move_effects/sunny_day.asm
blob: ef8c37c5cc2899bcd30a9ea510279e0da6b03cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
BattleCommand_StartSun: ; 37c07
; startsun
	ld a, WEATHER_SUN
	ld [wBattleWeather], a
	ld a, 5
	ld [wWeatherCount], a
	call AnimateCurrentMove
	ld hl, SunGotBrightText
	jp StdBattleTextBox

; 37c1a