summaryrefslogtreecommitdiff
path: root/engine/battle/move_effects/sunny_day.asm
blob: 7d8a9cef147c7306958ea1f290d5ea5d3d38a813 (plain)
1
2
3
4
5
6
7
8
9
10
11
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