shithub: pokered

ref: 929c7f6f7d62b4b22e1de2003b3df1943268321c
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:
	ld a, %01001011 ; set starter flags
	ld [wPokedexOwned], a
	predef ShowPokedexData
	xor a ; unset starter flags
	ld [wPokedexOwned], a
	ret