pokeemerald/data/maps/BattleFrontier_BattlePyramidTop/scripts.inc

335 lines
13 KiB
PHP
Raw Normal View History

.set LOCALID_ATTENDANT, 1
.set LOCALID_BRANDON, 2
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_MapScripts::
2019-12-11 09:28:55 +01:00
map_script MAP_SCRIPT_ON_RESUME, BattleFrontier_BattlePyramidTop_OnResume
map_script MAP_SCRIPT_ON_FRAME_TABLE, BattleFrontier_BattlePyramidTop_OnFrame
map_script MAP_SCRIPT_ON_TRANSITION, BattleFrontier_BattlePyramidTop_OnTransition
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, BattleFrontier_BattlePyramidTop_OnWarp
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_OnTransition:
2019-12-02 15:52:16 +01:00
pyramid_updatelight 200, PYRAMID_LIGHT_SET_RADIUS
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_F, 1
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_OnWarp:
2019-12-11 09:28:55 +01:00
map_script_2 VAR_TEMP_1, 0, BattleFrontier_BattlePyramidTop_EventScript_SetUpObjects
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_SetUpObjects::
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
turnobject OBJ_EVENT_ID_PLAYER, DIR_NORTH
goto_if_ne VAR_TEMP_C, 0, BattleFrontier_BattlePyramidTop_EventScript_EndSetUpObjects
setobjectxyperm LOCALID_BRANDON, 0, 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_EndSetUpObjects::
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_OnResume:
frontier_getbrainstatus
goto_if_eq VAR_RESULT, FRONTIER_BRAIN_NOT_READY, BattleFrontier_BattlePyramidTop_EventScript_CheckChallengeStatus
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_SetBrainObjectGfx
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_CheckChallengeStatus::
2018-05-19 18:02:43 +02:00
copyvar VAR_TEMP_C, VAR_RESULT
2019-11-24 22:58:40 +01:00
frontier_getstatus
2018-05-19 18:02:43 +02:00
switch VAR_TEMP_0
2019-12-11 09:28:55 +01:00
case 0, BattleFrontier_BattlePyramidTop_EventScript_ReadyChallenge
case CHALLENGE_STATUS_SAVING, BattleFrontier_BattlePyramid_EventScript_WarpToLobby
case CHALLENGE_STATUS_PAUSED, BattleFrontier_BattlePyramidTop_EventScript_ReadyChallenge
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_BATTLE_OUTCOME
goto_if_eq VAR_RESULT, B_OUTCOME_LOST, BattleFrontier_BattlePyramid_EventScript_WarpToLobbyLost
goto_if_eq VAR_RESULT, B_OUTCOME_DREW, BattleFrontier_BattlePyramid_EventScript_WarpToLobbyLost
goto_if_eq VAR_RESULT, B_OUTCOME_FORFEITED, BattleFrontier_BattlePyramid_EventScript_WarpToLobbyLost
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_OnFrame:
2019-12-11 09:28:55 +01:00
map_script_2 VAR_TEMP_E, 0, BattleFrontier_BattlePyramidTop_EventScript_PlayPyramidMusic
map_script_2 VAR_TEMP_F, 1, BattleFrontier_BattlePyramidTop_EventScript_ShowMapName
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_PlayPyramidMusic::
2021-05-21 22:08:00 +02:00
playbgm MUS_B_PYRAMID_TOP, FALSE
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_E, 1
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_ShowMapName::
2018-02-12 18:26:26 +01:00
special ShowMapNamePopup
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_F, 0
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_ReadyChallenge::
2019-12-02 15:52:16 +01:00
pyramid_save CHALLENGE_STATUS_SAVING
2018-04-29 14:21:59 +02:00
special SavePlayerParty
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, 0
2019-12-11 09:28:55 +01:00
pyramid_settrainers
2019-11-24 22:58:40 +01:00
frontier_setpartyorder FRONTIER_PARTY_SIZE
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_F, 1
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_Attendant::
2017-11-10 02:21:31 +01:00
lock
faceplayer
goto_if_ne VAR_TEMP_D, 0, BattleFrontier_BattlePyramidTop_EventScript_StepForwardWhenReady
goto_if_ne VAR_TEMP_C, FRONTIER_BRAIN_NOT_READY, BattleFrontier_BattlePyramidTop_EventScript_BrandonHereMoveAside
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_ReachedSummitUpYouGo, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePyramidTop_Movement_AttendantMoveAside
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-15 08:00:00 +01:00
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePyramidTop_Movement_PlayerClimbToTop
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePyramidTop_Movement_AttendantBlockPath
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-11 09:28:55 +01:00
message BattleFrontier_BattlePyramidTop_Text_PlayerConqueredPyramid
2017-11-10 02:21:31 +01:00
waitmessage
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_B_POINTS
2017-11-10 02:21:31 +01:00
waitfanfare
closemessage
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_WarpToLobbyWon::
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_WON
warp MAP_BATTLE_FRONTIER_BATTLE_PYRAMID_LOBBY, 7, 13
2017-11-10 02:21:31 +01:00
waitstate
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_StepForwardWhenReady::
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_StepForwardWhenReady, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BrandonHereMoveAside::
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_ChiefBeatYouHere, MSGBOX_DEFAULT
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePyramidTop_Movement_AttendantMoveAside
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_D, 1
2017-11-10 02:21:31 +01:00
closemessage
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BattleBrandon::
2017-11-10 02:21:31 +01:00
lockall
2018-05-19 18:02:43 +02:00
switch VAR_TEMP_C
2019-12-11 09:28:55 +01:00
case FRONTIER_BRAIN_GOLD, BattleFrontier_BattlePyramidTop_EventScript_BrandonIntroGold
case FRONTIER_BRAIN_STREAK, BattleFrontier_BattlePyramidTop_EventScript_BrandonHeardSilverSpeech
case FRONTIER_BRAIN_STREAK_LONG, BattleFrontier_BattlePyramidTop_EventScript_BrandonHeardGoldSpeech
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_HEARD_BRAIN_SPEECH
goto_if_ne VAR_RESULT, FALSE, BattleFrontier_BattlePyramidTop_EventScript_BrandonHeardSilverSpeech
special SpawnCameraObject
2019-12-15 08:00:00 +01:00
applymovement OBJ_EVENT_ID_CAMERA, BattleFrontier_BattlePyramidTop_Movement_CameraPanUp
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_ExplorationsAreGrandestAdventure, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_HEARD_BRAIN_SPEECH
applymovement LOCALID_BRANDON, BattleFrontier_BattlePyramidTop_Movement_BrandonApproachPlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_ImPyramidKingBrandon, MSGBOX_DEFAULT
goto BattleFrontier_BattlePyramidTop_EventScript_BattleBrandonSilver
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BrandonHeardSilverSpeech::
applymovement LOCALID_BRANDON, BattleFrontier_BattlePyramidTop_Movement_BrandonApproachPlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BattleBrandonSilver::
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_BringCourageToOurBattle, MSGBOX_DEFAULT
call BattleFrontier_BattlePyramidTop_EventScript_DoBrandonBattle
2021-05-21 22:08:00 +02:00
playbgm MUS_B_PYRAMID_TOP, FALSE
goto_if_eq VAR_RESULT, 1, BattleFrontier_BattlePyramidTop_EventScript_DefeatedBrandonSilver
2019-12-11 09:28:55 +01:00
goto BattleFrontier_BattlePyramid_EventScript_WarpToLobbyLost
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_DefeatedBrandonSilver::
2019-11-24 22:58:40 +01:00
frontier_getsymbols
goto_if_ne VAR_RESULT, 0, BattleFrontier_BattlePyramidTop_EventScript_WarpToLobbyWon
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_BrandonFrontierPassPlease, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_SYMBOL
2019-12-11 09:28:55 +01:00
message BattleFrontier_BattlePyramidTop_Text_ReceivedBraveSymbol
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
2019-11-24 22:58:40 +01:00
frontier_givesymbol
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_LookForwardToNextMeeting, MSGBOX_DEFAULT
goto BattleFrontier_BattlePyramidTop_EventScript_WarpToLobbyWon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BrandonIntroGold::
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_HEARD_BRAIN_SPEECH
goto_if_ne VAR_RESULT, FALSE, BattleFrontier_BattlePyramidTop_EventScript_BrandonHeardGoldSpeech
special SpawnCameraObject
2019-12-15 08:00:00 +01:00
applymovement OBJ_EVENT_ID_CAMERA, BattleFrontier_BattlePyramidTop_Movement_CameraPanUp
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_BrandonYouveReturned, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_HEARD_BRAIN_SPEECH
applymovement LOCALID_BRANDON, BattleFrontier_BattlePyramidTop_Movement_BrandonApproachPlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_MyCourageIsOffMeter, MSGBOX_DEFAULT
goto BattleFrontier_BattlePyramidTop_EventScript_BattleBrandonGold
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BrandonHeardGoldSpeech::
applymovement LOCALID_BRANDON, BattleFrontier_BattlePyramidTop_Movement_BrandonApproachPlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_BattleBrandonGold::
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_EverythingYouHave, MSGBOX_DEFAULT
call BattleFrontier_BattlePyramidTop_EventScript_DoBrandonBattle
2021-05-21 22:08:00 +02:00
playbgm MUS_B_PYRAMID_TOP, FALSE
goto_if_eq VAR_RESULT, 1, BattleFrontier_BattlePyramidTop_EventScript_DefeatedBrandonGold
2019-12-11 09:28:55 +01:00
goto BattleFrontier_BattlePyramid_EventScript_WarpToLobbyLost
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_DefeatedBrandonGold::
2019-11-24 22:58:40 +01:00
frontier_getsymbols
goto_if_eq VAR_RESULT, 2, BattleFrontier_BattlePyramidTop_EventScript_WarpToLobbyWon
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_BrandonRemarkableHaveThis, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_SYMBOL
2019-12-11 09:28:55 +01:00
message BattleFrontier_BattlePyramidTop_Text_BraveSymbolTookGoldenShine
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
2019-11-24 22:58:40 +01:00
frontier_givesymbol
2019-12-11 09:28:55 +01:00
msgbox BattleFrontier_BattlePyramidTop_Text_FarewellForNow, MSGBOX_DEFAULT
goto BattleFrontier_BattlePyramidTop_EventScript_WarpToLobbyWon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_EventScript_DoBrandonBattle::
2017-11-10 02:21:31 +01:00
closemessage
2018-10-21 20:13:12 +02:00
setvar VAR_0x8004, SPECIAL_BATTLE_PYRAMID
2017-11-10 02:21:31 +01:00
setvar VAR_0x8005, 0
2018-10-21 20:13:12 +02:00
special DoSpecialTrainerBattle
2017-11-10 02:21:31 +01:00
waitstate
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Movement_AttendantMoveAside:
walk_right
walk_in_place_faster_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Movement_AttendantBlockPath:
walk_left
walk_in_place_faster_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Movement_PlayerClimbToTop:
walk_up
walk_up
walk_up
walk_up
walk_up
walk_in_place_faster_down
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Movement_BrandonApproachPlayer:
walk_fast_down
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Movement_CameraPanUp:
walk_slow_up
walk_slow_up
delay_16
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_ReachedSummitUpYouGo:
2017-11-10 02:21:31 +01:00
.string "It is a delight to see you here!\n"
.string "You have reached the summit of\l"
.string "the BATTLE PYRAMID!\p"
2018-12-07 16:41:08 +01:00
.string "Above here is the PYRAMID's\n"
2017-11-10 02:21:31 +01:00
.string "lookout point.\p"
.string "It is a place open only to those\n"
.string "who have conquered the PYRAMID.\p"
.string "Now, please!\n"
.string "Up you go!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_PlayerConqueredPyramid:
2018-12-07 16:41:08 +01:00
.string "The PYRAMID's new conqueror!\n"
2017-11-10 02:21:31 +01:00
.string "Let the name {PLAYER} be known!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_ChiefBeatYouHere:
2017-11-10 02:21:31 +01:00
.string "It is a delight to see you here!\p"
.string "Unfortunately, you were second by\n"
.string "a mere fraction of time!\p"
.string "Our chief has already conquered\n"
.string "the PYRAMID ahead of you.\p"
.string "However, my young explorer…\n"
.string "You are a TRAINER!\p"
.string "Assert your power and take the glory\n"
.string "of the pinnacle from our chief!\p"
.string "Now, please! When you are ready,\n"
.string "take one more step of courage!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_ExplorationsAreGrandestAdventure:
2017-11-10 02:21:31 +01:00
.string "Young adventurer…\p"
2018-12-07 16:41:08 +01:00
.string "Wouldn't you agree that explorations\n"
2017-11-10 02:21:31 +01:00
.string "are the grandest of adventures?\p"
.string "Your own wits!\p"
.string "Your own strength!\p"
.string "Your own POKéMON!\p"
.string "And, above all, only your own courage\n"
.string "to lead you through unknown worlds…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_ImPyramidKingBrandon:
2017-11-10 02:21:31 +01:00
.string "Aah, yes, indeed this life is grand!\n"
.string "Grand, it is! Eh?\p"
2018-12-07 16:41:08 +01:00
.string "I'm BRANDON!\p"
.string "I'm the PYRAMID KING, which means\n"
.string "I'm in charge here.\p"
2017-11-10 02:21:31 +01:00
.string "Most people call me the chief!\p"
.string "You coming here means you have\n"
.string "that much confidence in yourself,\l"
.string "am I right?\p"
.string "Hahahah!\n"
.string "This should be exciting!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_BringCourageToOurBattle:
2017-11-10 02:21:31 +01:00
.string "Now, then!\n"
.string "Bring your courage to our battle!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_BrandonFrontierPassPlease:
2017-11-10 02:21:31 +01:00
.string "BRANDON: Hahahah! Grand it was!\n"
.string "Grand, yes, indeed!\p"
2018-12-07 16:41:08 +01:00
.string "Well done! You've earned recognition!\n"
2017-11-10 02:21:31 +01:00
.string "Your FRONTIER PASS, please!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_ReceivedBraveSymbol:
2017-11-10 02:21:31 +01:00
.string "The Brave Symbol was embossed on\n"
.string "the FRONTIER PASS!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_LookForwardToNextMeeting:
2017-11-10 02:21:31 +01:00
.string "Young explorer!\n"
.string "I look forward to our next meeting!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_BrandonYouveReturned:
2018-12-07 16:41:08 +01:00
.string "BRANDON: …You've finally returned,\n"
2017-11-10 02:21:31 +01:00
.string "young explorer…\p"
.string "Your love of adventure seems to come\n"
.string "deep from within your heart…\p"
.string "Yes… You are exactly as I was in\n"
.string "my own youth…\p"
.string "… … …Ah…\p"
.string "The passionate!\p"
.string "The dangerous!\p"
.string "The desperate!\p"
.string "Those days of death-defying,\n"
.string "life-affirming adventures are back…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_MyCourageIsOffMeter:
2017-11-10 02:21:31 +01:00
.string "Now, then!\p"
.string "I sense my own courage is off\n"
.string "the meter!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_EverythingYouHave:
2017-11-10 02:21:31 +01:00
.string "Everything you have!\n"
2018-12-07 16:41:08 +01:00
.string "I'm braced for it all!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_BrandonRemarkableHaveThis:
2017-11-10 02:21:31 +01:00
.string "BRANDON: Hahahah!\n"
.string "Remarkable!\l"
2018-12-07 16:41:08 +01:00
.string "Yes, it's grand, indeed!\p"
2017-11-10 02:21:31 +01:00
.string "Young explorer!\p"
2018-12-07 16:41:08 +01:00
.string "You've bested me through and through!\n"
2017-11-10 02:21:31 +01:00
.string "Here! I want you to have this!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_BraveSymbolTookGoldenShine:
2017-11-10 02:21:31 +01:00
.string "The Brave Symbol took on\n"
.string "a golden shine!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_FarewellForNow:
2017-11-10 02:21:31 +01:00
.string "Ah, yes! It just goes to show that\n"
.string "I have much to learn still!\p"
.string "May our paths cross again!\n"
.string "Farewell for now, young explorer!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePyramidTop_Text_StepForwardWhenReady:
2017-11-10 02:21:31 +01:00
.string "Now, when you are ready, take courage\n"
.string "and step forward.$"