mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-11 15:54:49 +13:00
parent
8a79315635
commit
9c2be80bf3
|
|
@ -7,7 +7,7 @@ PrintNotebookText:
|
||||||
|
|
||||||
TMNotebook::
|
TMNotebook::
|
||||||
text_far TMNotebookText
|
text_far TMNotebookText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
ViridianSchoolNotebook::
|
ViridianSchoolNotebook::
|
||||||
|
|
@ -45,7 +45,7 @@ TurnPageText:
|
||||||
|
|
||||||
ViridianSchoolNotebookText5:
|
ViridianSchoolNotebookText5:
|
||||||
text_far _ViridianSchoolNotebookText5
|
text_far _ViridianSchoolNotebookText5
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
ViridianSchoolNotebookText1:
|
ViridianSchoolNotebookText1:
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ CeladonPrizeMenu::
|
||||||
|
|
||||||
RequireCoinCaseTextPtr:
|
RequireCoinCaseTextPtr:
|
||||||
text_far _RequireCoinCaseText
|
text_far _RequireCoinCaseText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
ExchangeCoinsForPrizesTextPtr:
|
ExchangeCoinsForPrizesTextPtr:
|
||||||
|
|
@ -264,7 +264,7 @@ UnknownPrizeData:
|
||||||
|
|
||||||
HereYouGoTextPtr:
|
HereYouGoTextPtr:
|
||||||
text_far _HereYouGoText
|
text_far _HereYouGoText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
SoYouWantPrizeTextPtr:
|
SoYouWantPrizeTextPtr:
|
||||||
|
|
@ -273,17 +273,17 @@ SoYouWantPrizeTextPtr:
|
||||||
|
|
||||||
SorryNeedMoreCoinsText:
|
SorryNeedMoreCoinsText:
|
||||||
text_far _SorryNeedMoreCoinsText
|
text_far _SorryNeedMoreCoinsText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
PrizeRoomBagIsFullTextPtr:
|
PrizeRoomBagIsFullTextPtr:
|
||||||
text_far _OopsYouDontHaveEnoughRoomText
|
text_far _OopsYouDontHaveEnoughRoomText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
OhFineThenTextPtr:
|
OhFineThenTextPtr:
|
||||||
text_far _OhFineThenText
|
text_far _OhFineThenText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
GetPrizeMonLevel:
|
GetPrizeMonLevel:
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ GetDexRatedText:
|
||||||
|
|
||||||
ClosedOaksPCText:
|
ClosedOaksPCText:
|
||||||
text_far _ClosedOaksPCText
|
text_far _ClosedOaksPCText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
AccessedOaksPCText:
|
AccessedOaksPCText:
|
||||||
|
|
|
||||||
|
|
@ -431,7 +431,7 @@ TextCommand_PROMPT_BUTTON::
|
||||||
; wait for button press; show arrow
|
; wait for button press; show arrow
|
||||||
ld a, [wLinkState]
|
ld a, [wLinkState]
|
||||||
cp LINK_STATE_BATTLING
|
cp LINK_STATE_BATTLING
|
||||||
jp z, TextCommand_LINK_PROMPT_BUTTON
|
jp z, TextCommand_WAIT_BUTTON
|
||||||
ld a, "▼"
|
ld a, "▼"
|
||||||
Coorda 18, 16 ; place down arrow in lower right corner of dialogue text box
|
Coorda 18, 16 ; place down arrow in lower right corner of dialogue text box
|
||||||
push bc
|
push bc
|
||||||
|
|
@ -579,8 +579,8 @@ TextCommand_DOTS::
|
||||||
pop hl
|
pop hl
|
||||||
jp NextTextCommand
|
jp NextTextCommand
|
||||||
|
|
||||||
TextCommand_LINK_PROMPT_BUTTON::
|
TextCommand_WAIT_BUTTON::
|
||||||
; wait for button press; display arrow
|
; wait for button press; don't show arrow
|
||||||
push bc
|
push bc
|
||||||
call ManualTextScroll
|
call ManualTextScroll
|
||||||
pop bc
|
pop bc
|
||||||
|
|
@ -615,18 +615,18 @@ TextCommand_FAR::
|
||||||
|
|
||||||
TextCommandJumpTable::
|
TextCommandJumpTable::
|
||||||
; entries correspond to TX_* constants (see macros/scripts/text.asm)
|
; entries correspond to TX_* constants (see macros/scripts/text.asm)
|
||||||
dw TextCommand_START ; TX_START
|
dw TextCommand_START ; TX_START
|
||||||
dw TextCommand_RAM ; TX_RAM
|
dw TextCommand_RAM ; TX_RAM
|
||||||
dw TextCommand_BCD ; TX_BCD
|
dw TextCommand_BCD ; TX_BCD
|
||||||
dw TextCommand_MOVE ; TX_MOVE
|
dw TextCommand_MOVE ; TX_MOVE
|
||||||
dw TextCommand_BOX ; TX_BOX
|
dw TextCommand_BOX ; TX_BOX
|
||||||
dw TextCommand_LOW ; TX_LOW
|
dw TextCommand_LOW ; TX_LOW
|
||||||
dw TextCommand_PROMPT_BUTTON ; TX_PROMPT_BUTTON
|
dw TextCommand_PROMPT_BUTTON ; TX_PROMPT_BUTTON
|
||||||
dw TextCommand_SCROLL ; TX_SCROLL
|
dw TextCommand_SCROLL ; TX_SCROLL
|
||||||
dw TextCommand_START_ASM ; TX_START_ASM
|
dw TextCommand_START_ASM ; TX_START_ASM
|
||||||
dw TextCommand_NUM ; TX_NUM
|
dw TextCommand_NUM ; TX_NUM
|
||||||
dw TextCommand_PAUSE ; TX_PAUSE
|
dw TextCommand_PAUSE ; TX_PAUSE
|
||||||
dw TextCommand_SOUND ; TX_SOUND_GET_ITEM_1 (also handles other TX_SOUND_* commands)
|
dw TextCommand_SOUND ; TX_SOUND_GET_ITEM_1 (also handles other TX_SOUND_* commands)
|
||||||
dw TextCommand_DOTS ; TX_DOTS
|
dw TextCommand_DOTS ; TX_DOTS
|
||||||
dw TextCommand_LINK_PROMPT_BUTTON ; TX_LINK_PROMPT_BUTTON
|
dw TextCommand_WAIT_BUTTON ; TX_WAIT_BUTTON
|
||||||
; greater TX_* constants are handled directly by NextTextCommand
|
; greater TX_* constants are handled directly by NextTextCommand
|
||||||
|
|
|
||||||
|
|
@ -92,9 +92,9 @@ text_dots: MACRO
|
||||||
db \1 ; number of ellipses to draw
|
db \1 ; number of ellipses to draw
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum TX_LINK_PROMPT_BUTTON ; $0d
|
enum TX_WAIT_BUTTON ; $0d
|
||||||
text_linkpromptbutton: MACRO
|
text_waitbutton: MACRO
|
||||||
db TX_LINK_PROMPT_BUTTON
|
db TX_WAIT_BUTTON
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum TX_SOUND_POKEDEX_RATING ; $0e
|
enum TX_SOUND_POKEDEX_RATING ; $0e
|
||||||
|
|
|
||||||
|
|
@ -139,48 +139,48 @@ CeladonMartRoofText_484ee:
|
||||||
|
|
||||||
CeladonMartRoofText_484f3:
|
CeladonMartRoofText_484f3:
|
||||||
text_far _CeladonMartRoofText_484f3
|
text_far _CeladonMartRoofText_484f3
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofText_484f9:
|
CeladonMartRoofText_484f9:
|
||||||
text_far _CeladonMartRoofText_484f9
|
text_far _CeladonMartRoofText_484f9
|
||||||
sound_get_item_1
|
sound_get_item_1
|
||||||
text_far _CeladonMartRoofText_484fe
|
text_far _CeladonMartRoofText_484fe
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofText_48504:
|
CeladonMartRoofText_48504:
|
||||||
text_far _CeladonMartRoofText_48504
|
text_far _CeladonMartRoofText_48504
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofText_4850a:
|
CeladonMartRoofText_4850a:
|
||||||
text_far _CeladonMartRoofText_4850a
|
text_far _CeladonMartRoofText_4850a
|
||||||
sound_get_item_1
|
sound_get_item_1
|
||||||
text_far _CeladonMartRoofText_4850f
|
text_far _CeladonMartRoofText_4850f
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofText_48515:
|
CeladonMartRoofText_48515:
|
||||||
text_far _CeladonMartRoofText_48515
|
text_far _CeladonMartRoofText_48515
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
ReceivedTM49Text:
|
ReceivedTM49Text:
|
||||||
text_far _ReceivedTM49Text
|
text_far _ReceivedTM49Text
|
||||||
sound_get_item_1
|
sound_get_item_1
|
||||||
text_far _CeladonMartRoofText_48520
|
text_far _CeladonMartRoofText_48520
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofText_48526:
|
CeladonMartRoofText_48526:
|
||||||
text_far _CeladonMartRoofText_48526
|
text_far _CeladonMartRoofText_48526
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofText_4852c:
|
CeladonMartRoofText_4852c:
|
||||||
text_far _CeladonMartRoofText_4852c
|
text_far _CeladonMartRoofText_4852c
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CeladonMartRoofScript_PrintDrinksInBag:
|
CeladonMartRoofScript_PrintDrinksInBag:
|
||||||
|
|
|
||||||
|
|
@ -322,7 +322,7 @@ ReceivedTM28Text:
|
||||||
text_far _ReceivedTM28Text
|
text_far _ReceivedTM28Text
|
||||||
sound_get_item_1
|
sound_get_item_1
|
||||||
text_far _ReceivedTM28Text2
|
text_far _ReceivedTM28Text2
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
TM28NoRoomText:
|
TM28NoRoomText:
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,7 @@ BlaineBattleText:
|
||||||
BlaineEndBattleText:
|
BlaineEndBattleText:
|
||||||
text_far _BlaineEndBattleText
|
text_far _BlaineEndBattleText
|
||||||
sound_get_key_item ; actually plays the second channel of SFX_BALL_POOF due to the wrong music bank being loaded
|
sound_get_key_item ; actually plays the second channel of SFX_BALL_POOF due to the wrong music bank being loaded
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
BlaineFireBlastText:
|
BlaineFireBlastText:
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ ReceivedTM31Text:
|
||||||
sound_get_item_1
|
sound_get_item_1
|
||||||
TM31ExplanationText1:
|
TM31ExplanationText1:
|
||||||
text_far _TM31ExplanationText1
|
text_far _TM31ExplanationText1
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
TM31ExplanationText2:
|
TM31ExplanationText2:
|
||||||
|
|
@ -65,7 +65,7 @@ TM31ExplanationText2:
|
||||||
|
|
||||||
TM31NoRoomText:
|
TM31NoRoomText:
|
||||||
text_far _TM31NoRoomText
|
text_far _TM31NoRoomText
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
CopycatsHouse2FText2:
|
CopycatsHouse2FText2:
|
||||||
|
|
|
||||||
|
|
@ -323,7 +323,7 @@ MtMoon3Script_49f69:
|
||||||
MtMoon3Text_49f6f:
|
MtMoon3Text_49f6f:
|
||||||
text_far _MtMoon3Text_49f6f
|
text_far _MtMoon3Text_49f6f
|
||||||
sound_get_key_item
|
sound_get_key_item
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
MtMoon3Script_49f76:
|
MtMoon3Script_49f76:
|
||||||
|
|
@ -333,7 +333,7 @@ MtMoon3Script_49f76:
|
||||||
|
|
||||||
MtMoon3Text_49f7f:
|
MtMoon3Text_49f7f:
|
||||||
text_far _MtMoon3Text_49f7f
|
text_far _MtMoon3Text_49f7f
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
MtMoon3Text_49f85:
|
MtMoon3Text_49f85:
|
||||||
|
|
|
||||||
|
|
@ -81,5 +81,5 @@ RocketHideoutElevatorText1:
|
||||||
|
|
||||||
RocketHideoutElevatorText_4578b:
|
RocketHideoutElevatorText_4578b:
|
||||||
text_far _RocketElevatorText_4578b
|
text_far _RocketElevatorText_4578b
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
|
||||||
|
|
@ -311,7 +311,7 @@ ViridianGymText_74ad3:
|
||||||
|
|
||||||
ViridianGymText_74ad9:
|
ViridianGymText_74ad9:
|
||||||
text_far _ViridianGymText_74ad9
|
text_far _ViridianGymText_74ad9
|
||||||
text_linkpromptbutton
|
text_waitbutton
|
||||||
text_end
|
text_end
|
||||||
|
|
||||||
ViridianGymText12:
|
ViridianGymText12:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue