pokecrystal-board/engine/pokedex/new_pokedex_entry.asm

51 lines
954 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
NewPokedexEntry:
ld a, [hMapAnims]
push af
xor a
ld [hMapAnims], a
call LowVolume
call ClearBGPalettes
call ClearTileMap
call UpdateSprites
call ClearSprites
ld a, [wPokedexStatus]
push af
ld a, [hSCX]
2018-01-21 13:53:19 -08:00
add POKEDEX_SCX
ld [hSCX], a
xor a
ld [wPokedexStatus], a
2017-12-24 09:47:30 -08:00
farcall _NewPokedexEntry
call WaitPressAorB_BlinkCursor
2018-01-16 14:59:05 -08:00
ld a, 1 ; page 2
ld [wPokedexStatus], a
2017-12-24 09:47:30 -08:00
farcall DisplayDexEntry
call WaitPressAorB_BlinkCursor
pop af
ld [wPokedexStatus], a
call MaxVolume
call RotateThreePalettesRight
ld a, [hSCX]
2018-01-21 13:53:19 -08:00
add -POKEDEX_SCX
ld [hSCX], a
call .ReturnFromDexRegistration
pop af
ld [hMapAnims], a
ret
2018-06-24 07:09:41 -07:00
.ReturnFromDexRegistration:
call ClearTileMap
call LoadFontsExtra
call LoadStandardFont
2017-12-24 09:47:30 -08:00
farcall Pokedex_PlaceFrontpicTopLeftCorner
call WaitBGMap2
2017-12-24 09:47:30 -08:00
farcall GetEnemyMonDVs
ld a, [hli]
2018-01-23 14:39:09 -08:00
ld [wTempMonDVs], a
ld a, [hl]
2018-01-23 14:39:09 -08:00
ld [wTempMonDVs + 1], a
ld b, SCGB_TRAINER_OR_MON_FRONTPIC_PALS
call GetSGBLayout
call SetPalettes
ret