mirror of
https://github.com/pret/pokeyellow.git
synced 2024-11-23 05:49:57 +00:00
41 lines
1.1 KiB
NASM
41 lines
1.1 KiB
NASM
PewterPokecenter_Script:
|
|
ld hl, wd492
|
|
set 7, [hl]
|
|
call Serial_TryEstablishingExternallyClockedConnection
|
|
call EnableAutoTextBoxDrawing
|
|
ret
|
|
|
|
PewterPokecenter_TextPointers:
|
|
def_text_pointers
|
|
dw_const PewterPokecenterNurseText, TEXT_PEWTERPOKECENTER_NURSE
|
|
dw_const PewterPokecenterGentlemanText, TEXT_PEWTERPOKECENTER_GENTLEMAN
|
|
dw_const PewterPokecenterJigglypuffText, TEXT_PEWTERPOKECENTER_JIGGLYPUFF
|
|
dw_const PewterPokecenterLinkReceptionistText, TEXT_PEWTERPOKECENTER_LINK_RECEPTIONIST
|
|
dw_const PewterPokecenterCooltrainerFText, TEXT_PEWTERPOKECENTER_COOLTRAINER_F
|
|
dw_const PewterPokecenterChanseyText, TEXT_PEWTERPOKECENTER_CHANSEY
|
|
|
|
PewterPokecenterNurseText:
|
|
script_pokecenter_nurse
|
|
|
|
PewterPokecenterGentlemanText:
|
|
text_far _PewterPokecenterGentlemanText
|
|
text_end
|
|
|
|
PewterPokecenterJigglypuffText:
|
|
text_asm
|
|
farcall PewterJigglypuff
|
|
jp TextScriptEnd
|
|
|
|
PewterPokecenterLinkReceptionistText:
|
|
script_cable_club_receptionist
|
|
|
|
PewterPokecenterCooltrainerFText:
|
|
text_asm
|
|
farcall PewterPokecenterPrintCooltrainerFText
|
|
jp TextScriptEnd
|
|
|
|
PewterPokecenterChanseyText:
|
|
text_asm
|
|
callfar PokecenterChanseyText
|
|
jp TextScriptEnd
|