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

30 lines
889 B
NASM

PokemonTower1F_Script:
jp EnableAutoTextBoxDrawing
PokemonTower1F_TextPointers:
def_text_pointers
dw_const PokemonTower1FReceptionistText, TEXT_POKEMONTOWER1F_RECEPTIONIST
dw_const PokemonTower1FMiddleAgedWomanText, TEXT_POKEMONTOWER1F_MIDDLE_AGED_WOMAN
dw_const PokemonTower1FBaldingGuyText, TEXT_POKEMONTOWER1F_BALDING_GUY
dw_const PokemonTower1FGirlText, TEXT_POKEMONTOWER1F_GIRL
dw_const PokemonTower1FChannelerText, TEXT_POKEMONTOWER1F_CHANNELER
PokemonTower1FReceptionistText:
text_far _PokemonTower1FReceptionistText
text_end
PokemonTower1FMiddleAgedWomanText:
text_far _PokemonTower1FMiddleAgedWomanText
text_end
PokemonTower1FBaldingGuyText:
text_far _PokemonTower1FBaldingGuyText
text_end
PokemonTower1FGirlText:
text_far _PokemonTower1FGirlText
text_end
PokemonTower1FChannelerText:
text_far _PokemonTower1FChannelerText
text_end