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.
21 lines
500 B
NASM
21 lines
500 B
NASM
CeladonHotel_Script:
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
CeladonHotel_TextPointers:
|
|
def_text_pointers
|
|
dw_const CeladonHotelGrannyText, TEXT_CELADONHOTEL_GRANNY
|
|
dw_const CeladonHotelBeautyText, TEXT_CELADONHOTEL_BEAUTY
|
|
dw_const CeladonHotelSuperNerdText, TEXT_CELADONHOTEL_SUPER_NERD
|
|
|
|
CeladonHotelGrannyText:
|
|
text_far _CeladonHotelGrannyText
|
|
text_end
|
|
|
|
CeladonHotelBeautyText:
|
|
text_far _CeladonHotelBeautyText
|
|
text_end
|
|
|
|
CeladonHotelSuperNerdText:
|
|
text_far _CeladonHotelSuperNerdText
|
|
text_end
|