shithub: pokecrystal

ref: 6e91c3a293d94990695e6b002a8c031873aefdf9
dir: /engine/battle/move_effects/sunny_day.asm/

View raw version
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