pokecrystal-board/engine/gfx/trademon_frontpic.asm

39 lines
775 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
GetTrademonFrontpic:
ld a, [wOTTrademonSpecies]
ld hl, wOTTrademonDVs
2017-12-28 04:32:33 -08:00
ld de, vTiles2
push de
push af
predef GetUnownLetter
pop af
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
ld [wCurSpecies], a
call GetBaseData
pop de
predef GetAnimatedFrontpic
ret
2018-06-24 07:09:41 -07:00
AnimateTrademonFrontpic:
ld a, [wOTTrademonSpecies]
call IsAPokemon
ret c
2017-12-24 09:47:30 -08:00
farcall ShowOTTrademonStats
ld a, [wOTTrademonSpecies]
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
ld a, [wOTTrademonDVs]
2018-01-23 14:39:09 -08:00
ld [wTempMonDVs], a
ld a, [wOTTrademonDVs + 1]
2018-01-23 14:39:09 -08:00
ld [wTempMonDVs + 1], a
ld b, CGB_PLAYER_OR_MON_FRONTPIC_PALS
call GetCGBLayout
ld a, %11100100 ; 3,2,1,0
call DmgToCgbBGPals
2017-12-24 09:47:30 -08:00
farcall TradeAnim_ShowGetmonFrontpic
ld a, [wOTTrademonSpecies]
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
hlcoord 7, 2
ld d, $0
ld e, ANIM_MON_TRADE
predef AnimateFrontpic
ret