pokecrystal-board/mobile/print_opp_message.asm

31 lines
493 B
NASM
Raw Normal View History

2017-12-16 09:49:43 -08:00
Mobile_PrintOpponentBattleMessage: ; 4ea0a
ld a, c
push af
call SpeechTextBox
call MobileTextBorder
pop af
dec a
ld bc, $c
ld hl, w5_MobileOpponentBattleMessages
call AddNTimes
ld de, wMobileOpponentBattleMessage
ld bc, $c
ld a, BANK(w5_MobileOpponentBattleMessages)
2017-12-16 09:49:43 -08:00
call FarCopyWRAM
ld a, [rSVBK]
push af
ld a, $1
ld [rSVBK], a
ld bc, wMobileOpponentBattleMessage
decoord 1, 14
2017-12-24 09:47:30 -08:00
farcall PrintEZChatBattleMessage
2017-12-16 09:49:43 -08:00
pop af
ld [rSVBK], a
ld c, 180
call DelayFrames
ret