shithub: pokered

ref: c9946975d4cd806c92c1aa1efef94eb41d8b9d36
dir: /engine/predefs17.asm/

View raw version
; this function temporarily makes the starters (and Ivysaur) seen
; so that the full Pokedex information gets displayed in Oak's lab
StarterDex: ; 5c0dc (17:40dc)
	ld a, %01001011 ; set starter flags
	ld [wPokedexOwned], a ; wPokedexOwned
	predef ShowPokedexData
	xor a ; unset starter flags
	ld [wPokedexOwned], a ; wPokedexOwned
	ret