summaryrefslogtreecommitdiff
path: root/engine/predefs17.asm
blob: 21289c6a01ce8c5103431d4d2ddbfcf7503a795e (plain)
1
2
3
4
5
6
7
8
9
; 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