summaryrefslogtreecommitdiff
path: root/engine/predefs17.asm
blob: d261804a218c8c901c54b123f24abd9ccb69b7e5 (plain)
1
2
3
4
5
6
7
8
9
10
; this function temporarily makes the starters (and Ivysaur) seen
; so that the full Pokedex information gets displayed in Oak's lab
DisplayStarterMonDex: ; 5c0dc (17:40dc)
	ld a, %01001011 ; set starter flags
	ld [wPokedexOwned], a ; $d2f7
	ld a, $3d
	call Predef ; indirect jump to ShowPokedexData (402d1 (10:42d1))
	xor a ; unset starter flags
	ld [wPokedexOwned], a ; $d2f7
	ret