pokeemerald/data/maps/BattleFrontier_BattlePikeLobby/scripts.inc

434 lines
16 KiB
PHP
Raw Normal View History

.set LOCALID_ATTENDANT, 1
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_MapScripts::
2019-12-09 08:10:42 +01:00
map_script MAP_SCRIPT_ON_FRAME_TABLE, BattleFrontier_BattlePikeLobby_OnFrame
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, BattleFrontier_BattlePikeLobby_OnWarp
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_OnFrame:
2023-08-04 20:17:28 +02:00
map_script_2 VAR_TEMP_CHALLENGE_STATUS, 0, BattleFrontier_BattlePikeLobby_EventScript_GetChallengeStatus
map_script_2 VAR_TEMP_CHALLENGE_STATUS, CHALLENGE_STATUS_SAVING, BattleFrontier_BattlePikeLobby_EventScript_QuitWithoutSaving
map_script_2 VAR_TEMP_CHALLENGE_STATUS, CHALLENGE_STATUS_WON, BattleFrontier_BattlePikeLobby_EventScript_WonChallenge
map_script_2 VAR_TEMP_CHALLENGE_STATUS, CHALLENGE_STATUS_LOST, BattleFrontier_BattlePikeLobby_EventScript_LostChallenge
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_OnWarp:
2019-12-09 08:10:42 +01:00
map_script_2 VAR_TEMP_1, 0, BattleFrontier_BattlePikeLobby_EventScript_TurnPlayerNorth
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_TurnPlayerNorth::
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
turnobject OBJ_EVENT_ID_PLAYER, DIR_NORTH
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_GetChallengeStatus::
2019-11-24 22:58:40 +01:00
frontier_getstatus
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_QuitWithoutSaving::
2017-12-16 00:08:23 +01:00
special HealPlayerParty
2019-11-29 08:00:19 +01:00
pike_resethelditems
2017-11-10 02:21:31 +01:00
lockall
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_FailedToSaveBeforeQuitting, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2022-01-11 08:19:20 +01:00
pike_set PIKE_DATA_WIN_STREAK, 0
2019-11-29 08:00:19 +01:00
pike_set PIKE_DATA_WIN_STREAK_ACTIVE, FALSE
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, 0
2023-08-04 20:17:28 +02:00
setvar VAR_TEMP_CHALLENGE_STATUS, 255
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_WonChallenge::
2017-11-10 02:21:31 +01:00
lockall
2019-11-24 22:58:40 +01:00
frontier_isbrain
goto_if_eq VAR_RESULT, TRUE, BattleFrontier_BattlePikeLobby_EventScript_DefeatedQueen
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_PossessLuckInAbundance, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
waitmessage
2019-12-09 08:10:42 +01:00
goto BattleFrontier_BattlePikeLobby_EventScript_GiveBattlePoints
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_DefeatedQueen::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_SnatchedVictoryFromQueen, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
waitmessage
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_GiveBattlePoints::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_AwardYouTheseBattlePoints, MSGBOX_DEFAULT
2019-11-24 22:58:40 +01:00
frontier_givepoints
msgbox BattleFrontier_Text_ObtainedXBattlePoints, MSGBOX_GETPOINTS
2019-11-24 22:58:40 +01:00
frontier_checkairshow
2019-11-29 08:00:19 +01:00
pike_get PIKE_DATA_TOTAL_STREAKS
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
2019-11-29 08:00:19 +01:00
pike_set PIKE_DATA_TOTAL_STREAKS, VAR_RESULT
2018-04-29 14:21:59 +02:00
special LoadPlayerParty
2017-12-16 00:08:23 +01:00
special HealPlayerParty
2019-11-29 08:00:19 +01:00
pike_resethelditems
2019-12-09 08:10:42 +01:00
message BattleFrontier_BattlePikeLobby_Text_ShallRecordResults
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-29 08:00:19 +01:00
pike_save 0
2017-11-10 02:21:31 +01:00
playse SE_SAVE
waitse
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_LookForwardToSeeingYou, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2023-08-04 20:17:28 +02:00
setvar VAR_TEMP_CHALLENGE_STATUS, 255
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_LostChallenge::
2017-11-10 02:21:31 +01:00
lockall
2019-12-09 08:10:42 +01:00
message BattleFrontier_BattlePikeLobby_Text_ChallengeEndedRecordResults
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-24 22:58:40 +01:00
frontier_checkairshow
frontier_set FRONTIER_DATA_BATTLE_NUM, 0
2019-11-29 08:00:19 +01:00
pike_set PIKE_DATA_WIN_STREAK_ACTIVE, FALSE
2018-04-29 14:21:59 +02:00
special LoadPlayerParty
2017-12-16 00:08:23 +01:00
special HealPlayerParty
2019-11-29 08:00:19 +01:00
pike_resethelditems
pike_save 0
2017-11-10 02:21:31 +01:00
playse SE_SAVE
waitse
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_LookForwardToSeeingYou, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2023-08-04 20:17:28 +02:00
setvar VAR_TEMP_CHALLENGE_STATUS, 255
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_Attendant::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-24 22:58:40 +01:00
setvar VAR_FRONTIER_FACILITY, FRONTIER_FACILITY_PIKE
setvar VAR_FRONTIER_BATTLE_MODE, FRONTIER_MODE_SINGLES
2018-04-29 14:21:59 +02:00
special SavePlayerParty
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_WelcomeToBattlePike, MSGBOX_DEFAULT
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_AskTakeChallenge::
2019-12-09 08:10:42 +01:00
message BattleFrontier_BattlePikeLobby_Text_TakeChallenge
2017-11-10 02:21:31 +01:00
waitmessage
2021-03-31 06:35:56 +02:00
multichoice 17, 6, MULTI_CHALLENGEINFO, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-09 08:10:42 +01:00
case 0, BattleFrontier_BattlePikeLobby_EventScript_TryEnterChallenge
case 1, BattleFrontier_BattlePikeLobby_EventScript_ExplainChallenge
case 2, BattleFrontier_BattlePikeLobby_EventScript_CancelChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePikeLobby_EventScript_CancelChallenge
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_TryEnterChallenge::
2019-12-09 08:10:42 +01:00
message BattleFrontier_BattlePikeLobby_Text_WhichChallengeMode
2017-11-10 02:21:31 +01:00
waitmessage
2021-03-31 06:35:56 +02:00
multichoice 17, 6, MULTI_LEVEL_MODE, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-09 08:10:42 +01:00
case FRONTIER_LVL_TENT, BattleFrontier_BattlePikeLobby_EventScript_CancelChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePikeLobby_EventScript_CancelChallenge
2019-11-24 22:58:40 +01:00
frontier_checkineligible
goto_if_eq VAR_0x8004, TRUE, BattleFrontier_BattlePikeLobby_EventScript_NotEnoughValidMons
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_LVL_MODE, VAR_RESULT
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_PleaseChooseThreeMons, MSGBOX_DEFAULT
2019-12-15 17:42:50 +01:00
fadescreen FADE_TO_BLACK
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_GetLvlMode
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8004, VAR_RESULT
2019-11-26 23:20:08 +01:00
setvar VAR_0x8005, FRONTIER_PARTY_SIZE
special ChoosePartyForBattleFrontier
2017-11-10 02:21:31 +01:00
waitstate
goto_if_eq VAR_RESULT, 0, BattleFrontier_BattlePikeLobby_EventScript_LoadPartyAndCancelChallenge
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_SaveBeforeChallenge, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-09 08:10:42 +01:00
case NO, BattleFrontier_BattlePikeLobby_EventScript_LoadPartyAndCancelChallenge
case YES, BattleFrontier_BattlePikeLobby_EventScript_SaveBeforeChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePikeLobby_EventScript_LoadPartyAndCancelChallenge
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_SaveBeforeChallenge::
2023-08-04 20:17:28 +02:00
setvar VAR_TEMP_CHALLENGE_STATUS, 0
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 0
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_SELECTED_MON_ORDER
2019-11-29 08:00:19 +01:00
pike_init
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_SAVING
2019-11-29 08:00:19 +01:00
pike_set PIKE_DATA_WIN_STREAK_ACTIVE, TRUE
pike_savehelditems
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_PAUSED, FALSE
2018-04-29 14:21:59 +02:00
special LoadPlayerParty
2017-11-10 02:21:31 +01:00
closemessage
delay 2
call Common_EventScript_SaveGame
2023-08-04 20:17:28 +02:00
setvar VAR_TEMP_CHALLENGE_STATUS, 255
2019-11-29 08:00:19 +01:00
pike_savehelditems
goto_if_eq VAR_RESULT, 0, BattleFrontier_BattlePikeLobby_EventScript_CancelChallengeSaveFailed
2018-04-29 14:21:59 +02:00
special SavePlayerParty
2019-11-24 22:58:40 +01:00
frontier_setpartyorder FRONTIER_PARTY_SIZE
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_StepThisWay, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-24 22:58:40 +01:00
frontier_settrainers
2019-12-09 08:10:42 +01:00
call BattleFrontier_BattlePikeLobby_EventScript_WalkToCorridor
2017-12-16 00:08:23 +01:00
special HealPlayerParty
call BattleFrontier_BattlePike_EventScript_CloseCurtain
warpsilent MAP_BATTLE_FRONTIER_BATTLE_PIKE_CORRIDOR, 6, 7
2023-08-04 20:17:28 +02:00
setvar VAR_TEMP_CHALLENGE_STATUS, 0
2017-11-10 02:21:31 +01:00
waitstate
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_ExplainChallenge::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_ExplainBattlePike, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_AskTakeChallenge
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_NotEnoughValidMons::
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-09 08:10:42 +01:00
case FRONTIER_LVL_50, BattleFrontier_BattlePikeLobby_EventScript_NotEnoughValidMonsLv50
case FRONTIER_LVL_OPEN, BattleFrontier_BattlePikeLobby_EventScript_NotEnoughValidMonsLvOpen
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_NotEnoughValidMonsLv50::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_NotEnoughValidMonsLv50, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_EndCancelChallenge
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_NotEnoughValidMonsLvOpen::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_NotEnoughValidMonsLvOpen, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_EndCancelChallenge
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_CancelChallengeSaveFailed::
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, 0
2019-12-09 08:10:42 +01:00
goto BattleFrontier_BattlePikeLobby_EventScript_CancelChallenge
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_LoadPartyAndCancelChallenge::
2018-04-29 14:21:59 +02:00
special LoadPlayerParty
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_CancelChallenge::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_LookForwardToSeeingYou, MSGBOX_DEFAULT
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_EndCancelChallenge::
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_ShowResults::
2017-11-10 02:21:31 +01:00
lockall
frontier_results FRONTIER_FACILITY_PIKE
2017-11-10 02:21:31 +01:00
waitbuttonpress
special RemoveRecordsWindow
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_WalkToCorridor::
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePikeLobby_Movement_AttendantWalkToCorridor
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePikeLobby_Movement_PlayerWalkToCorridor
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Movement_PlayerWalkToCorridor:
walk_up
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Movement_AttendantWalkToCorridor:
walk_up
walk_up
set_invisible
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_Hiker::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_OneRoomAwayFromGoal, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_Twin::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_NeverHadToBattleTrainer, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_Beauty::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_ThinkAbilitiesUsefulHere, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_RulesBoard::
2017-11-10 02:21:31 +01:00
lockall
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_RulesAreListed, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_ReadRulesBoard::
2019-12-09 08:10:42 +01:00
message BattleFrontier_BattlePikeLobby_Text_ReadWhichHeading
2017-11-10 02:21:31 +01:00
waitmessage
2021-03-31 06:35:56 +02:00
multichoice 16, 4, MULTI_BATTLE_PIKE_RULES, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-09 08:10:42 +01:00
case 0, BattleFrontier_BattlePikeLobby_EventScript_RulesPokenavBag
case 1, BattleFrontier_BattlePikeLobby_EventScript_RulesHeldItems
case 2, BattleFrontier_BattlePikeLobby_EventScript_RulesMonOrder
case 3, BattleFrontier_BattlePikeLobby_EventScript_ExitRules
case MULTI_B_PRESSED, BattleFrontier_BattlePikeLobby_EventScript_ExitRules
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_RulesPokenavBag::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_ExplainPokenavBagRules, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_RulesHeldItems::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_ExplainHeldItemRules, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_RulesMonOrder::
2019-12-09 08:10:42 +01:00
msgbox BattleFrontier_BattlePikeLobby_Text_ExplainMonOrderRules, MSGBOX_DEFAULT
goto BattleFrontier_BattlePikeLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_EventScript_ExitRules::
2017-11-10 02:21:31 +01:00
releaseall
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePike_EventScript_CloseCurtain::
2020-08-21 02:23:08 +02:00
playse SE_PIKE_CURTAIN_CLOSE
2019-09-30 07:42:52 +02:00
special CloseBattlePikeCurtain
2017-11-10 02:21:31 +01:00
waitstate
waitse
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_WelcomeToBattlePike:
2017-11-10 02:21:31 +01:00
.string "Where the luck of TRAINERS\n"
.string "is put to the test…\p"
.string "Welcome to the BATTLE PIKE…\p"
.string "I am your guide to the BATTLE PIKE…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_TakeChallenge:
2017-11-10 02:21:31 +01:00
.string "Would you like to take the Battle\n"
.string "Choice challenge?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ExplainBattlePike:
2017-11-10 02:21:31 +01:00
.string "Here we conduct an event we call\n"
.string "the Battle Choice.\p"
.string "The Battle Choice rules are very\n"
.string "simple…\p"
.string "Choose one of three paths and make\n"
.string "your way to the goal room at the end\l"
2018-12-07 16:41:08 +01:00
.string "of the BATTLE PIKE. It's that simple.\p"
2017-11-10 02:21:31 +01:00
.string "However, what happens on the chosen\n"
.string "path depends entirely on the luck\l"
.string "of the challenger…\p"
.string "If you reach the goal, you will be\n"
.string "rewarded with Battle Points.\p"
.string "If you want to interrupt your\n"
.string "challenge, please have a word with\l"
.string "our staff in the big rooms on the way.\p"
2018-12-07 16:41:08 +01:00
.string "If you don't save before interrupting,\n"
2017-11-10 02:21:31 +01:00
.string "you will be disqualified.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_LookForwardToSeeingYou:
2017-11-10 02:21:31 +01:00
.string "We look forward to seeing you\n"
.string "on another occasion…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_WhichChallengeMode:
2017-11-10 02:21:31 +01:00
.string "You have the choice of two courses,\n"
.string "Level 50 and Open Level.\l"
.string "Which will you challenge?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_NotEnoughValidMonsLv50:
2017-11-10 02:21:31 +01:00
.string "I beg your pardon, but…\p"
.string "You do not have three eligible\n"
.string "POKéMON for the Battle Choice event.\p"
.string "You must have three different POKéMON\n"
.string "of Level 50 or less to enter.\p"
.string "They also must be holding different\n"
.string "kinds of items.\p"
.string "EGGS{STR_VAR_1} ineligible.\p"
.string "Please come see me when\n"
.string "you are ready…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_NotEnoughValidMonsLvOpen:
2017-11-10 02:21:31 +01:00
.string "I beg your pardon, but…\p"
.string "You do not have three eligible\n"
.string "POKéMON for the Battle Choice event.\p"
.string "You must have three different\n"
.string "POKéMON to enter.\p"
.string "They also must be holding different\n"
.string "kinds of items.\p"
.string "EGGS{STR_VAR_1} ineligible.\p"
.string "Please come see me when\n"
.string "you are ready…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_PleaseChooseThreeMons:
2017-11-10 02:21:31 +01:00
.string "Please choose the three POKéMON\n"
.string "you wish to enter in the challenge…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_SaveBeforeChallenge:
2017-11-10 02:21:31 +01:00
.string "Before starting your Battle Choice\n"
.string "challenge, I must save the game.\l"
.string "Is that acceptable?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_StepThisWay:
2017-11-10 02:21:31 +01:00
.string "Please step this way…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ChallengeEndedRecordResults:
2017-11-10 02:21:31 +01:00
.string "Your challenge has ended…\p"
.string "I shall record your results.\n"
.string "Please wait…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_PossessLuckInAbundance:
2017-11-10 02:21:31 +01:00
.string "You have completed the challenge…\p"
.string "I must say… You seem to possess luck\n"
.string "in abundance…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ShallRecordResults:
2017-11-10 02:21:31 +01:00
.string "I shall record your results.\n"
.string "Please wait…$"
2019-12-09 08:10:42 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_AwardYouTheseBattlePoints2:
2017-11-10 00:40:08 +01:00
.string "To commemorate your completion of\n"
.string "the Battle Choice challenge, we award\l"
.string "you these Battle Point(s)…$"
2019-12-09 08:10:42 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ReachedBattlePointLimit:
2017-11-10 00:40:08 +01:00
.string "You appear to have reached the limit\n"
.string "for Battle Points…\p"
.string "Please exchange some Battle Points\n"
2017-11-10 00:40:08 +01:00
.string "for prizes, then return…$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_FailedToSaveBeforeQuitting:
2017-11-10 02:21:31 +01:00
.string "I beg your pardon, but…\p"
.string "You failed to save before you quit\n"
.string "your challenge the last time.\p"
.string "Because of that, your challenge so far\n"
.string "has been disqualified. I am sorry…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_SnatchedVictoryFromQueen:
2017-11-10 02:21:31 +01:00
.string "Congratulations…\p"
.string "You have snatched victory from the\n"
.string "PIKE QUEEN and cleared the event…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_AwardYouTheseBattlePoints:
2017-11-10 02:21:31 +01:00
.string "In recognition of your amazing luck,\n"
.string "we award you these Battle Point(s)…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_OneRoomAwayFromGoal:
2017-11-10 02:21:31 +01:00
.string "Arrgh! I blew my chance!\n"
.string "I was one room away from the goal!\p"
2018-12-07 16:41:08 +01:00
.string "In this place, you'd better watch out\n"
2017-11-10 02:21:31 +01:00
.string "for poison, freezing, and so on.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_NeverHadToBattleTrainer:
2018-12-07 16:41:08 +01:00
.string "I've completed the challenge 10 times\n"
.string "now, but I've never had to battle\l"
2017-11-10 02:21:31 +01:00
.string "a TRAINER once.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ThinkAbilitiesUsefulHere:
2017-11-10 02:21:31 +01:00
.string "Listen! Listen!\p"
2018-12-07 16:41:08 +01:00
.string "Don't you think that the special\n"
2017-11-10 02:21:31 +01:00
.string "abilities of POKéMON will be useful\l"
.string "here?$"
2019-12-09 08:10:42 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_TrainersWhicheverPathIChoose:
2017-11-10 00:40:08 +01:00
.string "What is this weird place?\n"
2018-12-07 16:41:08 +01:00
.string "I can't figure it out at all!\p"
.string "I've taken the challenge a bunch\n"
2017-11-10 00:40:08 +01:00
.string "of times, but all I ever do is run into\l"
.string "TRAINERS whichever path I choose.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_RulesAreListed:
2018-12-07 16:41:08 +01:00
.string "The Battle Choice's rules are listed.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ReadWhichHeading:
2017-11-10 02:21:31 +01:00
.string "Which heading do you want to read?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ExplainPokenavBagRules:
2017-11-10 02:21:31 +01:00
.string "The BAG and POKéNAV may not be used\n"
.string "during a Battle Choice challenge.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ExplainHeldItemRules:
2017-11-10 02:21:31 +01:00
.string "During a Battle Choice challenge,\n"
.string "any BERRY or HERB held by POKéMON\l"
.string "will be effective only once.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePikeLobby_Text_ExplainMonOrderRules:
2017-11-10 02:21:31 +01:00
.string "During a Battle Choice challenge,\n"
.string "the sequence of POKéMON cannot be\l"
.string "changed.\p"
.string "The sequence must be set before\n"
.string "starting your challenge.$"