pokered/scripts/Route16FlyHouse.asm
vulcandth d001ced41b
Add macros, constants, and labels for map scripts and text (#367)
This introduces `def_script_pointers`, `def_text_pointers`, and `object_const_def` macros, and applies them to all maps. Most other map labels have also been identified.
2023-07-13 21:27:56 -04:00

56 lines
1.1 KiB
NASM

Route16FlyHouse_Script:
jp EnableAutoTextBoxDrawing
Route16FlyHouse_TextPointers:
def_text_pointers
dw_const Route16FlyHouseBrunetteGirlText, TEXT_ROUTE16FLYHOUSE_BRUNETTE_GIRL
dw_const Route16FlyHouseFearowText, TEXT_ROUTE16FLYHOUSE_FEAROW
Route16FlyHouseBrunetteGirlText:
text_asm
CheckEvent EVENT_GOT_HM02
ld hl, .HM02ExplanationText
jr nz, .got_item
ld hl, .Text
call PrintText
lb bc, HM_FLY, 1
call GiveItem
jr nc, .bag_full
SetEvent EVENT_GOT_HM02
ld hl, .ReceivedHM02Text
jr .got_item
.bag_full
ld hl, .HM02NoRoomText
.got_item
call PrintText
jp TextScriptEnd
.Text:
text_far _Route16FlyHouseBrunetteGirlText
text_end
.ReceivedHM02Text:
text_far _Route16FlyHouseBrunetteGirlReceivedHM02Text
sound_get_key_item
text_end
.HM02ExplanationText:
text_far _Route16FlyHouseBrunetteGirlHM02ExplanationText
text_end
.HM02NoRoomText:
text_far _Route16FlyHouseBrunetteGirlHM02NoRoomText
text_end
Route16FlyHouseFearowText:
text_asm
ld hl, .Text
call PrintText
ld a, FEAROW
call PlayCry
call WaitForSoundToFinish
jp TextScriptEnd
.Text:
text_far _Route16FlyHouseFearowText
text_end