mirror of
https://github.com/pret/pokeyellow.git
synced 2026-04-25 16:19:51 -05:00
26 lines
705 B
NASM
26 lines
705 B
NASM
PewterNidoranHouse_Script:
|
|
call EnableAutoTextBoxDrawing
|
|
ret
|
|
|
|
PewterNidoranHouse_TextPointers:
|
|
def_text_pointers
|
|
dw_const PewterNidoranHouseNidoranText, TEXT_PEWTERNIDORANHOUSE_NIDORAN
|
|
dw_const PewterNidoranHouseLittleBoyText, TEXT_PEWTERNIDORANHOUSE_LITTLE_BOY
|
|
dw_const PewterNidoranHouseMiddleAgedManText, TEXT_PEWTERNIDORANHOUSE_MIDDLE_AGED_MAN
|
|
|
|
PewterNidoranHouseNidoranText:
|
|
text_far _PewterNidoranHouseNidoranText
|
|
text_asm
|
|
ld a, NIDORAN_M
|
|
call PlayCry
|
|
call WaitForSoundToFinish
|
|
jp TextScriptEnd
|
|
|
|
PewterNidoranHouseLittleBoyText:
|
|
text_far _PewterNidoranHouseLittleBoyText
|
|
text_end
|
|
|
|
PewterNidoranHouseMiddleAgedManText:
|
|
text_far _PewterNidoranHouseMiddleAgedManText
|
|
text_end
|