pokeemerald/data/maps/BattleFrontier_Lounge3/scripts.inc

469 lines
17 KiB
PHP
Raw Normal View History

2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_MapScripts::
2017-11-10 02:21:31 +01:00
.byte 0
2019-11-12 23:52:32 +01:00
.set BET_AMOUNT_5, 5
.set BET_AMOUNT_10, 10
.set BET_AMOUNT_15, 15
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_Gambler::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-12 23:52:32 +01:00
goto_if_set FLAG_MET_BATTLE_FRONTIER_GAMBLER, BattleFrontier_Lounge3_EventScript_AlreadyMetGambler
call BattleFrontier_Lounge3_EventScript_CountSilverSymbols
goto_if_le VAR_0x8004, 2, BattleFrontier_Lounge3_EventScript_NotEnoughSilverSymbols
2019-11-12 23:52:32 +01:00
setflag FLAG_MET_BATTLE_FRONTIER_GAMBLER
msgbox BattleFrontier_Lounge3_Text_YouLookToughExplainGambling, MSGBOX_DEFAULT
goto BattleFrontier_Lounge3_EventScript_AskToEnterChallenge
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_AskToEnterChallenge::
special ShowFrontierGamblerLookingMessage
2017-11-10 02:21:31 +01:00
waitmessage
waitbuttonpress
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_HowAboutEnteringEventForMe, MSGBOX_YESNO
goto_if_eq VAR_RESULT, NO, BattleFrontier_Lounge3_EventScript_DeclineChallenge
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_SpotMeSomeBattlePoints, MSGBOX_YESNO
goto_if_eq VAR_RESULT, NO, BattleFrontier_Lounge3_EventScript_DeclineChallenge
2019-11-12 23:52:32 +01:00
message BattleFrontier_Lounge3_Text_HowMuchCanYouSpot
2017-11-10 02:21:31 +01:00
waitmessage
special ShowBattlePointsWindow
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge3_EventScript_ChooseBetAmount
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_ChooseBetAmount::
2021-03-31 06:35:56 +02:00
multichoice 20, 4, MULTI_FRONTIER_GAMBLER_BET, FALSE
2017-12-16 16:23:05 +01:00
copyvar VAR_FRONTIER_GAMBLER_AMOUNT_BET, VAR_RESULT
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-12 23:52:32 +01:00
case FRONTIER_GAMBLER_BET_5, BattleFrontier_Lounge3_EventScript_Bet5
case FRONTIER_GAMBLER_BET_10, BattleFrontier_Lounge3_EventScript_Bet10
case FRONTIER_GAMBLER_BET_15, BattleFrontier_Lounge3_EventScript_Bet15
case FRONTIER_GAMBLER_BET_CANCEL, BattleFrontier_Lounge3_EventScript_CancelBet
case MULTI_B_PRESSED, BattleFrontier_Lounge3_EventScript_CancelBet
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_Bet5::
2019-11-12 23:52:32 +01:00
setvar VAR_0x8008, BET_AMOUNT_5
goto BattleFrontier_Lounge3_EventScript_TryPlaceBet
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_Bet10::
2019-11-12 23:52:32 +01:00
setvar VAR_0x8008, BET_AMOUNT_10
goto BattleFrontier_Lounge3_EventScript_TryPlaceBet
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_Bet15::
2019-11-12 23:52:32 +01:00
setvar VAR_0x8008, BET_AMOUNT_15
goto BattleFrontier_Lounge3_EventScript_TryPlaceBet
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_TryPlaceBet::
2019-09-13 20:24:07 +02:00
specialvar VAR_TEMP_1, GetFrontierBattlePoints
goto_if_ge VAR_TEMP_1, VAR_0x8008, BattleFrontier_Lounge3_EventScript_PlaceBet
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_YouDontHaveEnoughPoints, MSGBOX_DEFAULT
message BattleFrontier_Lounge3_Text_HowMuchCanYouSpot
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge3_EventScript_ChooseBetAmount
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_PlaceBet::
2017-11-10 02:21:31 +01:00
copyvar VAR_0x8004, VAR_0x8008
2019-09-13 20:24:07 +02:00
special TakeFrontierBattlePoints
setvar VAR_FRONTIER_GAMBLER_STATE, FRONTIER_GAMBLER_PLACED_BET
special UpdateBattlePointsWindow
2020-08-21 00:02:00 +02:00
playse SE_SHOP
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_ThanksOffYouGo, MSGBOX_DEFAULT
goto BattleFrontier_Lounge3_EventScript_FinishBet
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_FinishBet::
special ShowFrontierGamblerGoMessage
2017-11-10 02:21:31 +01:00
waitmessage
waitbuttonpress
special CloseBattlePointsWindow
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_CountSilverSymbols::
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 0
2019-11-12 23:52:32 +01:00
call_if_set FLAG_SYS_TOWER_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
call_if_set FLAG_SYS_DOME_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
call_if_set FLAG_SYS_PALACE_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
call_if_set FLAG_SYS_ARENA_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
call_if_set FLAG_SYS_FACTORY_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
call_if_set FLAG_SYS_PIKE_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
call_if_set FLAG_SYS_PYRAMID_SILVER, BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_AddSilverSymbolCount::
2017-11-10 02:21:31 +01:00
addvar VAR_0x8004, 1
return
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_NotEnoughSilverSymbols::
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_CantYouSeeWereBusyHere, MSGBOX_DEFAULT
goto BattleFrontier_Lounge3_EventScript_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_AlreadyMetGambler::
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_Oh, MSGBOX_DEFAULT
goto_if_ge VAR_FRONTIER_GAMBLER_STATE, FRONTIER_GAMBLER_PLACED_BET, BattleFrontier_Lounge3_EventScript_CheckBetResults
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge3_EventScript_AskToEnterChallenge
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_CheckBetResults::
goto_if_eq VAR_FRONTIER_GAMBLER_STATE, FRONTIER_GAMBLER_PLACED_BET, BattleFrontier_Lounge3_EventScript_ChallengeNotAttempted
goto_if_eq VAR_FRONTIER_GAMBLER_STATE, FRONTIER_GAMBLER_WON, BattleFrontier_Lounge3_EventScript_WonChallenge
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge3_EventScript_LostChallenge
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_WonChallenge::
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_HelloChampHeresYourPoints, MSGBOX_DEFAULT
call_if_eq VAR_FRONTIER_GAMBLER_AMOUNT_BET, FRONTIER_GAMBLER_BET_5, BattleFrontier_Lounge3_EventScript_RewardBet5
call_if_eq VAR_FRONTIER_GAMBLER_AMOUNT_BET, FRONTIER_GAMBLER_BET_10, BattleFrontier_Lounge3_EventScript_RewardBet10
call_if_eq VAR_FRONTIER_GAMBLER_AMOUNT_BET, FRONTIER_GAMBLER_BET_15, BattleFrontier_Lounge3_EventScript_RewardBet15
msgbox BattleFrontier_Lounge3_Text_ObtainedBattlePoints, MSGBOX_GETPOINTS
2019-09-13 20:24:07 +02:00
special GiveFrontierBattlePoints
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_ThinkOfMeForAnotherChallenge, MSGBOX_DEFAULT
setvar VAR_FRONTIER_GAMBLER_STATE, FRONTIER_GAMBLER_WAITING
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_LostChallenge::
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_NiceTryCantReturnPoints, MSGBOX_DEFAULT
setvar VAR_FRONTIER_GAMBLER_STATE, FRONTIER_GAMBLER_WAITING
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_RewardBet5::
buffernumberstring STR_VAR_1, (BET_AMOUNT_5 * 2)
2019-11-12 23:52:32 +01:00
setvar VAR_0x8004, (BET_AMOUNT_5 * 2)
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_RewardBet10::
buffernumberstring STR_VAR_1, (BET_AMOUNT_10 * 2)
2019-11-12 23:52:32 +01:00
setvar VAR_0x8004, (BET_AMOUNT_10 * 2)
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_RewardBet15::
buffernumberstring STR_VAR_1, (BET_AMOUNT_15 * 2)
2019-11-12 23:52:32 +01:00
setvar VAR_0x8004, (BET_AMOUNT_15 * 2)
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_ChallengeNotAttempted::
special ShowFrontierGamblerGoMessage
2017-11-10 02:21:31 +01:00
waitmessage
waitbuttonpress
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_DeclineChallenge::
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_NotInterested, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_CancelBet::
special CloseBattlePointsWindow
2019-11-12 23:52:32 +01:00
goto BattleFrontier_Lounge3_EventScript_DeclineChallenge
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_Man::
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_ShouldBeTakingChallenges, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_Woman::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_BackedWrongTrainer, MSGBOX_DEFAULT
goto BattleFrontier_Lounge3_EventScript_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_PokefanF::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_KnowWinnerWhenISeeOne, MSGBOX_DEFAULT
goto BattleFrontier_Lounge3_EventScript_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_FatMan::
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-12 23:52:32 +01:00
msgbox BattleFrontier_Lounge3_Text_TrainerGoodButRattled, MSGBOX_DEFAULT
goto BattleFrontier_Lounge3_EventScript_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_EventScript_FaceOriginalDirection::
2017-11-10 02:21:31 +01:00
closemessage
applymovement VAR_LAST_TALKED, Common_Movement_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
waitmovement 0
release
end
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_CantYouSeeWereBusyHere::
2018-12-07 16:41:08 +01:00
.string "…What's that you want?\p"
.string "Can't you see we're kind of busy here?\n"
.string "Can't your business wait till later?$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_YouLookToughExplainGambling::
2017-11-10 02:21:31 +01:00
.string "…Huh?\n"
.string "You look to me like a tough TRAINER.\p"
.string "Heheh…\n"
.string "Listen, I have this proposition.\p"
.string "We have a little group going here,\n"
.string "and we play a little game with what\l"
.string "goes on in the BATTLE FRONTIER.\p"
.string "The rules are really simple.\p"
.string "First, we pick one of the facilities\n"
.string "in the BATTLE FRONTIER.\p"
.string "Then, we each pick a different TRAINER\n"
2018-12-07 16:41:08 +01:00
.string "who's taking that facility's challenge,\l"
2017-11-10 02:21:31 +01:00
.string "and bet with our Battle Points.\p"
.string "The guy who bet on the TRAINER with\n"
.string "the best record takes all the Battle\l"
.string "Points in the pool.\p"
.string "Sounds simple, huh?\n"
.string "So, anyway…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleTowerSingle::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be challenging the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "TOWER's SINGLE BATTLE ROOMS.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleTowerDouble::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be challenging the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "TOWER's DOUBLE BATTLE ROOMS.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleTowerMulti::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be challenging the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "TOWER's MULTI BATTLE ROOMS.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleDomeSingle::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "DOME's SINGLE BATTLE Tourney.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleDomeDouble::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "DOME's DOUBLE BATTLE Tourney.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleFactorySingle::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "FACTORY's Battle Swap Single Tourney.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleFactoryDouble::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "FACTORY's Battle Swap Double Tourney.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattlePalaceSingle::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be challenging the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "PALACE's SINGLE BATTLE HALLS.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattlePalaceDouble::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be challenging the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "PALACE's DOUBLE BATTLE HALLS.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattleArena::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "ARENA's Set KO Tourney.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattlePike::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE PIKE's\l"
.string "Battle Choice.\p"
2018-12-07 16:41:08 +01:00
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ChallengeBattlePyramid::
2018-12-07 16:41:08 +01:00
.string "What I'm looking for is a TRAINER who's\n"
.string "going to be entering the BATTLE\l"
2018-12-07 16:41:08 +01:00
.string "PYRAMID's Battle Quest.\p"
.string "But so far, I haven't seen a TRAINER\n"
.string "that has that winning quality.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_HowAboutEnteringEventForMe::
2018-12-07 16:41:08 +01:00
.string "I'll see to it that you benefit, too.\n"
2017-11-10 02:21:31 +01:00
.string "So how about it?\l"
.string "How about entering that event for me?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_SpotMeSomeBattlePoints::
2018-12-07 16:41:08 +01:00
.string "All right, that's perfect.\n"
2017-11-10 02:21:31 +01:00
.string "So, uh… How about spotting me some\l"
.string "of your Battle Points?\p"
2018-12-07 16:41:08 +01:00
.string "Trust me, I'll show you my gratitude\n"
2017-11-10 02:21:31 +01:00
.string "afterward.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_HowMuchCanYouSpot::
2017-11-10 02:21:31 +01:00
.string "Great, great!\n"
.string "So, how much can you spot me?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_YouDontHaveEnoughPoints::
2017-11-10 02:21:31 +01:00
.string "Oh, no, no, no!\n"
2018-12-07 16:41:08 +01:00
.string "You don't have enough Battle Points!\p"
.string "I wish you wouldn't monkey around and\n"
.string "waste everyone's time!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ThanksOffYouGo::
2017-11-10 02:21:31 +01:00
.string "Heheh! Thanks much!\n"
.string "So, off you go!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleTowerSingle::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE TOWER's\n"
.string "SINGLE BATTLE ROOMS pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleTowerDouble::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE TOWER's\n"
.string "DOUBLE BATTLE ROOMS pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleTowerMulti::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE TOWER's\n"
.string "MULTI BATTLE ROOMS pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleDomeSingle::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE DOME's\n"
.string "SINGLE BATTLE Tourney pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleDomeDouble::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE DOME's\n"
.string "DOUBLE BATTLE Tourney pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleFactorySingle::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE FACTORY's\n"
.string "Battle Swap Single Tourney pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleFactoryDouble::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE FACTORY's\n"
.string "Battle Swap Double Tourney pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattlePalaceSingle::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE PALACE's\n"
.string "SINGLE BATTLE HALLS pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattlePalaceDouble::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE PALACE's\n"
.string "DOUBLE BATTLE HALLS pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattleArena::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE ARENA's\n"
.string "Set KO Tourney pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattlePike::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE PIKE's\n"
.string "Battle Choice pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_GetToBattlePyramid::
2018-12-07 16:41:08 +01:00
.string "Get to the BATTLE PYRAMID's\n"
.string "Battle Quest pronto!\p"
2018-12-07 16:41:08 +01:00
.string "It's a must-win situation!\n"
.string "Don't blow your chance!\l"
.string "Both of our futures depend on you!$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_NiceTryCantReturnPoints::
2018-12-07 16:41:08 +01:00
.string "Oh, it's you…\n"
2017-11-10 02:21:31 +01:00
.string "Nice try…\p"
2018-12-07 16:41:08 +01:00
.string "I hate to break it to you, but I can't\n"
2017-11-10 02:21:31 +01:00
.string "return your Battle Points…\p"
2018-12-07 16:41:08 +01:00
.string "I guess we'll have to let it motivate\n"
2017-11-10 02:21:31 +01:00
.string "us to try harder next time!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_HelloChampHeresYourPoints::
2017-11-10 02:21:31 +01:00
.string "Oh, yes!\n"
.string "Hello there, champ!\p"
.string "I knew you could!\n"
.string "I knew you would!\l"
2018-12-07 16:41:08 +01:00
.string "We're both big winners!\p"
.string "I'll return your Battle Points and,\n"
2017-11-10 02:21:31 +01:00
.string "of course, a little extra from me!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ObtainedBattlePoints::
2017-11-10 02:21:31 +01:00
.string "{PLAYER} obtained\n"
.string "{STR_VAR_1} Battle Points.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ThinkOfMeForAnotherChallenge::
2018-12-07 16:41:08 +01:00
.string "If you're up for another challenge,\n"
2017-11-10 02:21:31 +01:00
.string "please do think of me!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_NotInterested::
2018-12-07 16:41:08 +01:00
.string "Not interested?! You shouldn't be\n"
2017-11-10 02:21:31 +01:00
.string "so afraid to take a chance!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_Oh::
2017-11-10 02:21:31 +01:00
.string "Oh…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_BackedWrongTrainer::
2017-11-10 02:21:31 +01:00
.string "I backed the wrong TRAINER again!\p"
.string "Maybe I should be battling normally\n"
.string "like everyone else…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_TrainerGoodButRattled::
2017-11-10 02:21:31 +01:00
.string "That TRAINER…\p"
2018-12-07 16:41:08 +01:00
.string "He's good, but he gets rattled too\n"
2017-11-10 02:21:31 +01:00
.string "easily to survive the BATTLE DOME…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_KnowWinnerWhenISeeOne::
2017-11-10 02:21:31 +01:00
.string "Giggle!\n"
.string "I know a winner when I see one!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_Lounge3_Text_ShouldBeTakingChallenges::
2017-11-10 02:21:31 +01:00
.string "Those TRAINERS…\n"
.string "What are they doing?\l"
.string "They should be taking challenges.$"