shithub: pokecrystal

ref: 5e9de74735d09b2a43e8d1c6314f2a7839b6e55a
dir: /mobile/print_opp_message.asm/

View raw version
Mobile_PrintOpponentBattleMessage:
	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)
	call FarCopyWRAM

	ldh a, [rSVBK]
	push af
	ld a, $1
	ldh [rSVBK], a

	ld bc, wMobileOpponentBattleMessage
	decoord 1, 14
	farcall PrintEZChatBattleMessage

	pop af
	ldh [rSVBK], a

	ld c, 180
	call DelayFrames
	ret