mirror of
https://github.com/pret/pokeyellow.git
synced 2024-11-26 20:00:21 +00:00
d001ced41b
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.
24 lines
652 B
NASM
24 lines
652 B
NASM
CopycatsHouse1F_Script:
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
CopycatsHouse1F_TextPointers:
|
|
def_text_pointers
|
|
dw_const CopycatsHouse1FMiddleAgedWomanText, TEXT_COPYCATSHOUSE1F_MIDDLE_AGED_WOMAN
|
|
dw_const CopycatsHouse1FMiddleAgedManText, TEXT_COPYCATSHOUSE1F_MIDDLE_AGED_MAN
|
|
dw_const CopycatsHouse1FChanseyText, TEXT_COPYCATSHOUSE1F_CHANSEY
|
|
|
|
CopycatsHouse1FMiddleAgedWomanText:
|
|
text_far _CopycatsHouse1FMiddleAgedWomanText
|
|
text_end
|
|
|
|
CopycatsHouse1FMiddleAgedManText:
|
|
text_far _CopycatsHouse1FMiddleAgedManText
|
|
text_end
|
|
|
|
CopycatsHouse1FChanseyText:
|
|
text_far _CopycatsHouse1FChanseyText
|
|
text_asm
|
|
ld a, CHANSEY
|
|
call PlayCry
|
|
jp TextScriptEnd
|