pokeemerald/data/maps/BattleFrontier_BattleArenaBattleRoom/scripts.inc

640 lines
26 KiB
PHP
Raw Normal View History

.set LOCALID_BLACK_BELT_1, 1
.set LOCALID_BLACK_BELT_2, 2
.set LOCALID_BLACK_BELT_3, 3
.set LOCALID_BLACK_BELT_4, 4
.set LOCALID_ATTENDANT, 5
.set LOCALID_OPPONENT, 7
.set LOCALID_PLAYER, 8
.set LOCALID_ANNOUNCER, 9
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_MapScripts::
2019-11-26 23:20:08 +01:00
map_script MAP_SCRIPT_ON_TRANSITION, BattleFrontier_BattleArenaBattleRoom_OnTransition
map_script MAP_SCRIPT_ON_FRAME_TABLE, BattleFrontier_BattleArenaBattleRoom_OnFrame
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, BattleFrontier_BattleArenaBattleRoom_OnWarp
map_script MAP_SCRIPT_ON_RESUME, BattleFrontier_BattleArenaBattleRoom_OnResume
2017-11-10 02:21:31 +01:00
.byte 0
2019-11-26 23:20:08 +01:00
@ On this map the player (OBJ_EVENT_ID_PLAYER) is hidden
@ The player is represented instead by LOCALID_PLAYER, which has the gfx id VAR_OBJ_GFX_ID_1
2019-11-26 23:20:08 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_OnResume:
2019-09-30 07:42:52 +02:00
special OffsetCameraForBattle
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_OnTransition:
2019-11-24 22:58:40 +01:00
frontier_settrainers
2019-11-26 23:20:08 +01:00
call BattleFrontier_BattleArenaBattleRoom_EventScript_SetPlayerGfx
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_SetPlayerGfx::
2017-11-10 02:21:31 +01:00
checkplayergender
goto_if_eq VAR_RESULT, MALE, BattleFrontier_BattleArenaBattleRoom_EventScript_SetPlayerGfxMale
goto_if_eq VAR_RESULT, FEMALE, BattleFrontier_BattleArenaBattleRoom_EventScript_SetPlayerGfxFemale
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_SetPlayerGfxMale::
setvar VAR_OBJ_GFX_ID_1, OBJ_EVENT_GFX_RIVAL_BRENDAN_NORMAL
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_SetPlayerGfxFemale::
setvar VAR_OBJ_GFX_ID_1, OBJ_EVENT_GFX_RIVAL_MAY_NORMAL
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_OnFrame:
2019-11-26 23:20:08 +01:00
map_script_2 VAR_TEMP_0, 0, BattleFrontier_BattleArenaBattleRoom_EventScript_EnterRoom
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_EnterRoom::
2017-11-10 02:21:31 +01:00
lockall
showobjectat LOCALID_PLAYER, MAP_BATTLE_FRONTIER_BATTLE_ARENA_BATTLE_ROOM
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_PlayerEnter
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_BATTLE_NUM
goto_if_eq VAR_RESULT, 0, BattleFrontier_BattleArenaBattleRoom_EventScript_AnnounceTrainers
applymovement LOCALID_ATTENDANT, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceDown
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceLeft
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 1
frontier_set FRONTIER_DATA_RECORD_DISABLED, TRUE
2019-11-26 23:20:08 +01:00
goto BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AnnounceTrainers::
2019-11-29 04:46:39 +01:00
tower_setopponent
addobject LOCALID_OPPONENT
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentEnter
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
2020-08-21 00:02:00 +02:00
playse SE_M_BELLY_DRUM
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_PlayerStepForward, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_PlayerStepForward
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
2020-08-21 00:02:00 +02:00
playse SE_M_BELLY_DRUM
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
arena_gettrainername
msgbox BattleFrontier_BattleArenaBattleRoom_Text_OpponentStepForward, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForward
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
2020-08-21 00:02:00 +02:00
playse SE_M_BELLY_DRUM
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_SetKOTourneyBegin, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_PlayerStepForward
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForward
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
palace_getopponentintro
msgbox gStringVar4, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-26 23:20:08 +01:00
call BattleFrontier_BattleArenaBattleRoom_EventScript_DoArenaBattle
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_DefeatedOpponent
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_DeclareOpponentWinner::
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
applymovement LOCALID_BLACK_BELT_1, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
applymovement LOCALID_BLACK_BELT_2, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
applymovement LOCALID_BLACK_BELT_3, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceUp
applymovement LOCALID_BLACK_BELT_4, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceUp
2020-08-21 00:02:00 +02:00
playse SE_M_SNORE
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
arena_gettrainername
msgbox BattleFrontier_BattleArenaBattleRoom_Text_WinnerIsOpponent, MSGBOX_DEFAULT
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_WarpToLobbyLost::
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_LOST
warp MAP_BATTLE_FRONTIER_BATTLE_ARENA_LOBBY, 7, 8
2017-11-10 02:21:31 +01:00
waitstate
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_DefeatedOpponent::
2019-11-26 23:20:08 +01:00
call BattleFrontier_BattleArenaBattleRoom_EventScript_DeclarePlayerWinner
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_BATTLE_NUM
2017-11-10 02:21:31 +01:00
addvar VAR_RESULT, 1
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_BATTLE_NUM, VAR_RESULT
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 7, BattleFrontier_BattleArenaBattleRoom_EventScript_ReturnToLobbyWon
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_PlayerWalkBackToLine
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentExit
2017-11-10 02:21:31 +01:00
waitmovement 0
removeobject LOCALID_OPPONENT
applymovement LOCALID_ATTENDANT, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceDown
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceLeft
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_MonsWillBeRestored, MSGBOX_DEFAULT
2018-04-29 14:21:59 +02:00
special LoadPlayerParty
special SavePlayerParty
2019-11-24 22:58:40 +01:00
frontier_setpartyorder FRONTIER_PARTY_SIZE
2020-08-21 00:02:00 +02:00
playfanfare MUS_HEAL
2017-11-10 02:21:31 +01:00
waitfanfare
2017-12-16 00:08:23 +01:00
special HealPlayerParty
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent::
frontier_getbrainstatus
2018-05-19 18:02:43 +02:00
copyvar VAR_TEMP_F, VAR_RESULT
goto_if_ne VAR_RESULT, FRONTIER_BRAIN_NOT_READY, BattleFrontier_BattleArenaBattleRoom_EventScript_TycoonUpNext
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_BATTLE_NUM
call_if_eq VAR_RESULT, 1, BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor2ndOpponent
call_if_eq VAR_RESULT, 2, BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor3rdOpponent
call_if_eq VAR_RESULT, 3, BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor4thOpponent
call_if_eq VAR_RESULT, 4, BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor5thOpponent
call_if_eq VAR_RESULT, 5, BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor6thOpponent
call_if_eq VAR_RESULT, 6, BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor7thOpponent
call BattleFrontier_EventScript_GetCantRecordBattle
goto_if_eq VAR_RESULT, TRUE, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponentNoRecord
2021-03-31 06:35:56 +02:00
multichoice 19, 4, MULTI_GO_ON_RECORD_REST_RETIRE, TRUE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 0, BattleFrontier_BattleArenaBattleRoom_EventScript_ContinueChallenge
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskRecordBattle
case 2, BattleFrontier_BattleArenaBattleRoom_EventScript_AskPauseChallenge
case 3, BattleFrontier_BattleArenaBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponentNoRecord::
2021-03-31 06:35:56 +02:00
multichoice 20, 6, MULTI_GO_ON_REST_RETIRE, TRUE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 0, BattleFrontier_BattleArenaBattleRoom_EventScript_ContinueChallenge
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskPauseChallenge
case 2, BattleFrontier_BattleArenaBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskRecordBattle::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_RecordLastBattle
2017-11-10 02:21:31 +01:00
waitmessage
2021-03-31 06:35:56 +02:00
multichoicedefault 20, 8, MULTI_YESNO, 1, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
case 0, BattleFrontier_BattleArenaBattleRoom_EventScript_RecordBattle
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_RecordBattle::
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_SaveBattle
2019-11-26 23:20:08 +01:00
goto BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskPauseChallenge::
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_SaveAndShutDown, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case NO, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
case YES, BattleFrontier_BattleArenaBattleRoom_EventScript_PauseChallenge
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskRetireChallenge::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_RetireFromChallenge
2017-11-10 02:21:31 +01:00
waitmessage
2021-03-31 06:35:56 +02:00
multichoicedefault 20, 8, MULTI_YESNO, 1, FALSE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
case 0, BattleFrontier_BattleArenaBattleRoom_EventScript_WarpToLobbyLost
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ContinueChallenge::
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceRight
applymovement LOCALID_ATTENDANT, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceRight
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
goto BattleFrontier_BattleArenaBattleRoom_EventScript_AnnounceTrainers
2017-11-10 02:21:31 +01:00
waitstate
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReturnToLobbyWon::
2017-11-10 02:21:31 +01:00
delay 60
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_WON
warp MAP_BATTLE_FRONTIER_BATTLE_ARENA_LOBBY, 7, 8
2017-11-10 02:21:31 +01:00
waitstate
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor2ndOpponent::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor2ndOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor3rdOpponent::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor3rdOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor4thOpponent::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor4thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor5thOpponent::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor5thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor6thOpponent::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor6thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_ReadyFor7thOpponent::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor7thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_PauseChallenge::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_SavingPleaseWait
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-26 23:20:08 +01:00
arena_save CHALLENGE_STATUS_PAUSED
2017-11-10 02:21:31 +01:00
playse SE_SAVE
waitse
2019-12-15 17:42:50 +01:00
fadescreen FADE_TO_BLACK
2019-11-24 22:58:40 +01:00
frontier_reset
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_TycoonUpNext::
goto_if_eq VAR_TEMP_2, 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForTycoon
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_NowFaceTycoon, MSGBOX_DEFAULT
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 1
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForTycoon::
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_PreparedForTycoon
2017-11-10 02:21:31 +01:00
waitmessage
call BattleFrontier_EventScript_GetCantRecordBattle
goto_if_eq VAR_RESULT, TRUE, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForTycoonNoRecord
2021-03-31 06:35:56 +02:00
multichoice 19, 4, MULTI_GO_ON_RECORD_REST_RETIRE, TRUE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 0, BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGreta
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskRecordBattle
case 2, BattleFrontier_BattleArenaBattleRoom_EventScript_AskPauseChallenge
case 3, BattleFrontier_BattleArenaBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForTycoon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForTycoonNoRecord::
2021-03-31 06:35:56 +02:00
multichoice 20, 6, MULTI_GO_ON_REST_RETIRE, TRUE
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-26 23:20:08 +01:00
case 0, BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGreta
case 1, BattleFrontier_BattleArenaBattleRoom_EventScript_AskPauseChallenge
case 2, BattleFrontier_BattleArenaBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattleArenaBattleRoom_EventScript_AskReadyForTycoon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGreta::
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_SetBrainObjectGfx
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceRight
applymovement LOCALID_ATTENDANT, BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceRight
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
2020-08-21 00:02:00 +02:00
playse SE_M_BELLY_DRUM
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_PlayerStepForward, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_PLAYER, BattleFrontier_BattleArenaBattleRoom_Movement_PlayerStepForwardLong
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
2020-08-21 00:02:00 +02:00
playse SE_M_BELLY_DRUM
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_MakeWayForGreta, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
addobject LOCALID_OPPONENT
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_GretaEnter
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForward
2017-11-10 02:21:31 +01:00
waitmovement 0
2018-05-19 18:02:43 +02:00
switch VAR_TEMP_F
2019-11-26 23:20:08 +01:00
case FRONTIER_BRAIN_GOLD, BattleFrontier_BattleArenaBattleRoom_EventScript_IntroGretaGold
case FRONTIER_BRAIN_STREAK, BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGretaSilver
case FRONTIER_BRAIN_STREAK_LONG, BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGretaGold
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_HEARD_BRAIN_SPEECH
goto_if_ne VAR_RESULT, FALSE, BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGretaSilver
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_GretaYoureChallenger, 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_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_GretaLookAroundPlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_IsThatRight, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_GretaWalkBackToCenter
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_YouLookWeakTakeThingsEasy, MSGBOX_DEFAULT
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGretaSilver::
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_IgniteMyPassionForBattle, MSGBOX_DEFAULT
call BattleFrontier_BattleArenaBattleRoom_EventScript_StartArenaBattle
goto_if_eq VAR_RESULT, 1, BattleFrontier_BattleArenaBattleRoom_EventScript_DefeatedGretaSilver
2019-11-26 23:20:08 +01:00
goto BattleFrontier_BattleArenaBattleRoom_EventScript_DeclareOpponentWinner
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_DefeatedGretaSilver::
2019-11-26 23:20:08 +01:00
call BattleFrontier_BattleArenaBattleRoom_EventScript_DeclarePlayerWinner
2019-11-24 22:58:40 +01:00
frontier_getsymbols
goto_if_ne VAR_RESULT, 0, BattleFrontier_BattleArenaBattleRoom_EventScript_ReturnToLobbyWon
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForwardLong
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_GretaYoureToughAfterAll, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_SYMBOL
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_ReceivedGutsSymbol
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
2019-11-24 22:58:40 +01:00
frontier_givesymbol
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_GoingToBeFunNextTime, MSGBOX_DEFAULT
goto BattleFrontier_BattleArenaBattleRoom_EventScript_ReturnToLobbyWon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_IntroGretaGold::
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_HEARD_BRAIN_SPEECH
goto_if_ne VAR_RESULT, FALSE, BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGretaGold
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_GretaLookingForwardToSeeingAgain, 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_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_GretaLookAroundPlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_SoAreYouReady, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_GretaWalkBackToCenter
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_WontAllowHalfheartedEffort, MSGBOX_DEFAULT
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_BattleGretaGold::
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_LetsGetThisStarted, MSGBOX_DEFAULT
call BattleFrontier_BattleArenaBattleRoom_EventScript_StartArenaBattle
goto_if_eq VAR_RESULT, 1, BattleFrontier_BattleArenaBattleRoom_EventScript_DefeatedGretaGold
2019-11-26 23:20:08 +01:00
goto BattleFrontier_BattleArenaBattleRoom_EventScript_DeclareOpponentWinner
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_DefeatedGretaGold::
2019-11-26 23:20:08 +01:00
call BattleFrontier_BattleArenaBattleRoom_EventScript_DeclarePlayerWinner
2019-11-24 22:58:40 +01:00
frontier_getsymbols
goto_if_eq VAR_RESULT, 2, BattleFrontier_BattleArenaBattleRoom_EventScript_ReturnToLobbyWon
applymovement LOCALID_OPPONENT, BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForwardLong
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_GretaBlownAway, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_SYMBOL
2019-11-26 23:20:08 +01:00
message BattleFrontier_BattleArenaBattleRoom_Text_GutsSymbolTookGoldenShine
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
2019-11-24 22:58:40 +01:00
frontier_givesymbol
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_IfWeBattleAgainWontLose, MSGBOX_DEFAULT
goto BattleFrontier_BattleArenaBattleRoom_EventScript_ReturnToLobbyWon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_StartArenaBattle::
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_SetKOTourneyBegin, MSGBOX_DEFAULT
call BattleFrontier_BattleArenaBattleRoom_EventScript_DoArenaBattle
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_DoArenaBattle::
2017-11-10 02:21:31 +01:00
closemessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 0
frontier_set FRONTIER_DATA_RECORD_DISABLED, FALSE
2017-12-16 00:08:23 +01:00
special HealPlayerParty
2018-10-21 20:13:12 +02:00
setvar VAR_0x8004, SPECIAL_BATTLE_ARENA
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
2019-11-24 22:58:40 +01:00
frontier_restorehelditems
2017-12-16 00:08:23 +01:00
special HealPlayerParty
frontier_resetsketch
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_DeclarePlayerWinner::
applymovement LOCALID_ANNOUNCER, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
applymovement LOCALID_BLACK_BELT_1, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
applymovement LOCALID_BLACK_BELT_2, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown
applymovement LOCALID_BLACK_BELT_3, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceUp
applymovement LOCALID_BLACK_BELT_4, BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceUp
2020-08-21 00:02:00 +02:00
playse SE_BANG
2017-11-10 02:21:31 +01:00
waitse
waitmovement 0
2019-11-26 23:20:08 +01:00
msgbox BattleFrontier_BattleArenaBattleRoom_Text_WinnerIsPlayer, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_IncrementWinStreak
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_PlayerEnter:
walk_right
walk_right
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_PlayerStepForwardLong:
walk_right
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_PlayerStepForward:
walk_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_PlayerWalkBackToLine:
walk_left
walk_left
walk_in_place_faster_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceLeft:
walk_in_place_faster_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceRight:
walk_in_place_faster_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_OpponentEnter:
walk_left
walk_left
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForwardLong:
walk_left
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_OpponentStepForward:
walk_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_GretaEnter:
walk_fast_left
walk_fast_left
walk_fast_left
walk_fast_left
walk_fast_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_OpponentExit:
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
walk_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceDown:
disable_jump_landing_ground_effect
jump_in_place_down
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_JumpInPlaceUp:
disable_jump_landing_ground_effect
jump_in_place_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceDown:
walk_in_place_faster_down
2017-11-10 02:21:31 +01:00
step_end
2019-11-26 23:20:08 +01:00
@ Unused, redundant
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_WalkInPlaceRight2:
walk_in_place_faster_right
2017-11-10 00:40:08 +01:00
step_end
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_OnWarp:
2019-11-26 23:20:08 +01:00
map_script_2 VAR_TEMP_1, 0, BattleFrontier_BattleArenaBattleRoom_EventScript_SetUpRoomObjects
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_EventScript_SetUpRoomObjects::
hideobjectat LOCALID_PLAYER, MAP_BATTLE_FRONTIER_BATTLE_ARENA_BATTLE_ROOM
removeobject LOCALID_OPPONENT
2019-11-26 23:20:08 +01:00
call BattleFrontier_BattleDomeBattleRoom_EventScript_SetPlayerGfx
2019-11-27 18:51:10 +01:00
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattleDomeBattleRoom_Movement_SetInvisible
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_GretaLookAroundPlayer:
walk_down
walk_in_place_faster_left
delay_16
delay_16
delay_16
delay_16
walk_up
walk_up
walk_in_place_faster_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Movement_GretaWalkBackToCenter:
walk_down
walk_in_place_faster_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_PlayerStepForward:
2017-11-10 02:21:31 +01:00
.string "REFEREE: TRAINER {PLAYER}!\n"
.string "Step forward, please!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_OpponentStepForward:
2017-11-10 02:21:31 +01:00
.string "REFEREE: TRAINER {STR_VAR_1}!\n"
.string "Step forward, please!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_SetKOTourneyBegin:
2017-11-10 00:40:08 +01:00
.string "REFEREE: Set KO Tourney!\n"
.string "Begin!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_WinnerIsPlayer:
2017-11-10 00:40:08 +01:00
.string "REFEREE: The winner is {PLAYER}!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_WinnerIsOpponent:
2017-11-10 00:40:08 +01:00
.string "REFEREE: The winner is {STR_VAR_1}!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_MonsWillBeRestored:
2017-11-10 00:40:08 +01:00
.string "Your POKéMON will be restored to\n"
.string "full health.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor2ndOpponent:
2017-11-10 00:40:08 +01:00
.string "Next up, your second opponent!\n"
.string "Are you ready to move on?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor3rdOpponent:
2017-11-10 00:40:08 +01:00
.string "Next up, your third opponent!\n"
.string "Are you ready to move on?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor4thOpponent:
2017-11-10 00:40:08 +01:00
.string "Next up, your fourth opponent!\n"
.string "Are you ready to move on?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor5thOpponent:
2017-11-10 00:40:08 +01:00
.string "Next up, your fifth opponent!\n"
.string "Are you ready to move on?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor6thOpponent:
2017-11-10 00:40:08 +01:00
.string "Next up, your sixth opponent!\n"
.string "Are you ready to move on?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReadyFor7thOpponent:
2017-11-10 00:40:08 +01:00
.string "Next up, your seventh opponent!\n"
.string "Are you ready to move on?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_SaveAndShutDown:
2017-11-10 00:40:08 +01:00
.string "Would you like to save the game and\n"
.string "shut down now?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_RetireFromChallenge:
2017-11-10 00:40:08 +01:00
.string "Would you like to retire from your\n"
.string "Set KO Tourney challenge?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_SavingPleaseWait:
2017-11-10 00:40:08 +01:00
.string "I am saving your game data.\n"
.string "Please wait.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_RecordLastBattle:
2017-11-10 00:40:08 +01:00
.string "Would you like to record your last\n"
.string "battle on your FRONTIER PASS?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_NowFaceTycoon:
2017-11-10 00:40:08 +01:00
.string "My dear challenger!\p"
.string "Your skill level is truly astounding!\p"
.string "We now would like you to face our\n"
.string "leader, the ARENA TYCOON!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_PreparedForTycoon:
2017-11-10 00:40:08 +01:00
.string "A battle with the ARENA TYCOON!\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_MakeWayForGreta:
2017-11-10 00:40:08 +01:00
.string "REFEREE: The ARENA TYCOON!\n"
.string "Make way for GRETA!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_GretaYoureChallenger:
2017-11-10 00:40:08 +01:00
.string "GRETA: Hey!\n"
.string "Howdy!\p"
.string "…Wait, are you the challenger?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_IsThatRight:
2017-11-10 00:40:08 +01:00
.string "Is that right? Hmm…\n"
.string "Hmhm…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_YouLookWeakTakeThingsEasy:
2018-12-07 16:41:08 +01:00
.string "I don't know how to say it, but…\n"
2017-11-10 00:40:08 +01:00
.string "To put it bluntly, you look pretty weak.\l"
2018-12-07 16:41:08 +01:00
.string "Are you sure you're up for me?\p"
2017-11-10 00:40:08 +01:00
.string "Hmm…\p"
.string "Well, all right!\n"
2018-12-07 16:41:08 +01:00
.string "We'll take things easy to start with!$"
2017-11-10 00:40:08 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_IgniteMyPassionForBattle:
2018-12-07 16:41:08 +01:00
.string "Okay! Let's see you ignite my passion\n"
2017-11-10 00:40:08 +01:00
.string "for battle!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_GretaYoureToughAfterAll:
2017-11-10 00:40:08 +01:00
.string "GRETA: Ow, wait a second!\n"
.string "You are tough after all!\p"
.string "I like you!\n"
2018-12-07 16:41:08 +01:00
.string "Let's see your FRONTIER PASS.$"
2017-11-10 00:40:08 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_ReceivedGutsSymbol:
2017-11-10 00:40:08 +01:00
.string "The Guts Symbol was embossed on\n"
.string "the FRONTIER PASS!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_GoingToBeFunNextTime:
2017-11-10 00:40:08 +01:00
.string "Hmm…\p"
2018-12-07 16:41:08 +01:00
.string "It's going to be fun the next time!\n"
.string "I'm looking forward to it!$"
2017-11-10 00:40:08 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_GretaLookingForwardToSeeingAgain:
2017-11-10 00:40:08 +01:00
.string "GRETA: Hey! Howdy!\n"
.string "You finally won your way up to me!\p"
.string "I was getting worried waiting for you!\n"
.string "I was really looking forward to seeing\l"
.string "you again!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_SoAreYouReady:
2017-11-10 00:40:08 +01:00
.string "… … …\n"
.string "So, are you ready?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_WontAllowHalfheartedEffort:
2018-12-07 16:41:08 +01:00
.string "I won't allow a halfhearted effort!\n"
2017-11-10 00:40:08 +01:00
.string "Be ready for a thrashing!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_LetsGetThisStarted:
2017-11-10 00:40:08 +01:00
.string "Come on, REFEREE!\n"
2018-12-07 16:41:08 +01:00
.string "Let's get this started!$"
2017-11-10 00:40:08 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_GretaBlownAway:
2017-11-10 00:40:08 +01:00
.string "GRETA: Gaaah! Blown away!\n"
2018-12-07 16:41:08 +01:00
.string "Let's see your FRONTIER PASS!$"
2017-11-10 00:40:08 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_GutsSymbolTookGoldenShine:
2017-11-10 00:40:08 +01:00
.string "The Guts Symbol took on\n"
.string "a golden shine!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattleArenaBattleRoom_Text_IfWeBattleAgainWontLose:
2017-11-10 00:40:08 +01:00
.string "Arrrgh!\n"
.string "This is so infuriating!\p"
2018-12-07 16:41:08 +01:00
.string "If we ever battle again, I won't lose!\n"
.string "Don't you forget it! Bye-bye!$"