pokered/scripts/CinnabarLab.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

31 lines
850 B
NASM

CinnabarLab_Script:
call EnableAutoTextBoxDrawing
ret
CinnabarLab_TextPointers:
def_text_pointers
dw_const CinnabarLabFishingGuruText, TEXT_CINNABARLAB_FISHING_GURU
dw_const CinnabarLabPhotoText, TEXT_CINNABARLAB_PHOTO
dw_const CinnabarLabMeetingRoomSignText, TEXT_CINNABARLAB_MEETING_ROOM_SIGN
dw_const CinnabarLabRAndDSignText, TEXT_CINNABARLAB_R_AND_D_SIGN
dw_const CinnabarLabTestingRoomSignText, TEXT_CINNABARLAB_TESTING_ROOM_SIGN
CinnabarLabFishingGuruText:
text_far _CinnabarLabFishingGuruText
text_end
CinnabarLabPhotoText:
text_far _CinnabarLabPhotoText
text_end
CinnabarLabMeetingRoomSignText:
text_far _CinnabarLabMeetingRoomSignText
text_end
CinnabarLabRAndDSignText:
text_far _CinnabarLabRAndDSignText
text_end
CinnabarLabTestingRoomSignText:
text_far _CinnabarLabTestingRoomSignText
text_end