2018-06-24 07:09:41 -07:00
|
|
|
SetSeenAndCaughtMon::
|
2013-09-18 18:54:31 -07:00
|
|
|
push af
|
|
|
|
ld c, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPokedexCaught
|
2013-09-18 18:54:31 -07:00
|
|
|
ld b, SET_FLAG
|
|
|
|
call PokedexFlagAction
|
|
|
|
pop af
|
|
|
|
; fallthrough
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
SetSeenMon::
|
2013-09-18 18:54:31 -07:00
|
|
|
ld c, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPokedexSeen
|
2013-09-18 18:54:31 -07:00
|
|
|
ld b, SET_FLAG
|
|
|
|
jr PokedexFlagAction
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CheckCaughtMon::
|
2013-09-18 18:54:31 -07:00
|
|
|
ld c, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPokedexCaught
|
2013-09-18 18:54:31 -07:00
|
|
|
ld b, CHECK_FLAG
|
|
|
|
jr PokedexFlagAction
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CheckSeenMon::
|
2013-09-18 18:54:31 -07:00
|
|
|
ld c, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPokedexSeen
|
2013-09-18 18:54:31 -07:00
|
|
|
ld b, CHECK_FLAG
|
|
|
|
; fallthrough
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
PokedexFlagAction::
|
2013-09-18 18:54:31 -07:00
|
|
|
ld d, 0
|
2018-01-16 11:30:10 -08:00
|
|
|
predef SmallFarFlagAction
|
2013-09-18 18:54:31 -07:00
|
|
|
ld a, c
|
|
|
|
and a
|
|
|
|
ret
|