mirror of
https://github.com/pret/pokered.git
synced 2026-03-21 17:45:50 -05:00
32 lines
623 B
NASM
32 lines
623 B
NASM
PewterMart_Script:
|
|
call EnableAutoTextBoxDrawing
|
|
ld a, 1 << BIT_NO_AUTO_TEXT_BOX
|
|
ld [wAutoTextBoxDrawingControl], a
|
|
ret
|
|
|
|
PewterMart_TextPointers:
|
|
def_text_pointers
|
|
dw_const PewterMartClerkText, TEXT_PEWTERMART_CLERK
|
|
dw_const PewterMartYoungsterText, TEXT_PEWTERMART_YOUNGSTER
|
|
dw_const PewterMartSuperNerdText, TEXT_PEWTERMART_SUPER_NERD
|
|
|
|
PewterMartYoungsterText:
|
|
text_asm
|
|
ld hl, .Text
|
|
call PrintText
|
|
jp TextScriptEnd
|
|
|
|
.Text:
|
|
text_far _PewterMartYoungsterText
|
|
text_end
|
|
|
|
PewterMartSuperNerdText:
|
|
text_asm
|
|
ld hl, .Text
|
|
call PrintText
|
|
jp TextScriptEnd
|
|
|
|
.Text:
|
|
text_far _PewterMartSuperNerdText
|
|
text_end
|