mirror of
https://github.com/pret/pokeyellow.git
synced 2024-11-26 20:00:21 +00:00
31 lines
1009 B
NASM
31 lines
1009 B
NASM
RockTunnelPokecenter_Script:
|
|
call Serial_TryEstablishingExternallyClockedConnection
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
RockTunnelPokecenter_TextPointers:
|
|
def_text_pointers
|
|
dw_const RockTunnelPokecenterNurseText, TEXT_ROCKTUNNELPOKECENTER_NURSE
|
|
dw_const RockTunnelPokecenterGentlemanText, TEXT_ROCKTUNNELPOKECENTER_GENTLEMAN
|
|
dw_const RockTunnelPokecenterFisherText, TEXT_ROCKTUNNELPOKECENTER_FISHER
|
|
dw_const RockTunnelPokecenterLinkReceptionistText, TEXT_ROCKTUNNELPOKECENTER_LINK_RECEPTIONIST
|
|
dw_const RockTunnelPokecenterChanseyText, TEXT_ROCKTUNNELPOKECENTER_CHANSEY
|
|
|
|
RockTunnelPokecenterNurseText:
|
|
script_pokecenter_nurse
|
|
|
|
RockTunnelPokecenterGentlemanText:
|
|
text_far _RockTunnelPokecenterGentlemanText
|
|
text_end
|
|
|
|
RockTunnelPokecenterFisherText:
|
|
text_far _RockTunnelPokecenterFisherText
|
|
text_end
|
|
|
|
RockTunnelPokecenterLinkReceptionistText:
|
|
script_cable_club_receptionist
|
|
|
|
RockTunnelPokecenterChanseyText:
|
|
text_asm
|
|
callfar PokecenterChanseyText
|
|
jp TextScriptEnd
|