mirror of
https://github.com/pret/pokeyellow.git
synced 2024-11-23 05:49:57 +00:00
31 lines
997 B
NASM
31 lines
997 B
NASM
VermilionPokecenter_Script:
|
|
call Serial_TryEstablishingExternallyClockedConnection
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
VermilionPokecenter_TextPointers:
|
|
def_text_pointers
|
|
dw_const VermilionPokecenterNurseText, TEXT_VERMILIONPOKECENTER_NURSE
|
|
dw_const VermilionPokecenterFishingGuruText, TEXT_VERMILIONPOKECENTER_FISHING_GURU
|
|
dw_const VermilionPokecenterSailorText, TEXT_VERMILIONPOKECENTER_SAILOR
|
|
dw_const VermilionPokecenterLinkReceptionistText, TEXT_VERMILIONPOKECENTER_LINK_RECEPTIONIST
|
|
dw_const VermilionPokecenterChanseyText, TEXT_VERMILIONPOKECENTER_CHANSEY
|
|
|
|
VermilionPokecenterNurseText:
|
|
script_pokecenter_nurse
|
|
|
|
VermilionPokecenterFishingGuruText:
|
|
text_far _VermilionPokecenterFishingGuruText
|
|
text_end
|
|
|
|
VermilionPokecenterSailorText:
|
|
text_far _VermilionPokecenterSailorText
|
|
text_end
|
|
|
|
VermilionPokecenterLinkReceptionistText:
|
|
script_cable_club_receptionist
|
|
|
|
VermilionPokecenterChanseyText:
|
|
text_asm
|
|
callfar PokecenterChanseyText
|
|
jp TextScriptEnd
|