shithub: pokecrystal

ref: ee48c7a3ed6f558810acfc2919adfde061669123
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