pokeemerald/data/maps/BattleFrontier_BattlePalaceBattleRoom/scripts.inc

582 lines
24 KiB
PHP
Raw Normal View History

.set LOCALID_PLAYER, 1
.set LOCALID_OPPONENT, 2
.set LOCALID_ATTENDANT, 3
.set LOCALID_DUSCLOPS, 4
.set LOCALID_AZURILL, 5
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_MapScripts::
2019-12-07 03:25:46 +01:00
map_script MAP_SCRIPT_ON_TRANSITION, BattleFrontier_BattlePalaceBattleRoom_OnTransition
map_script MAP_SCRIPT_ON_FRAME_TABLE, BattleFrontier_BattlePalaceBattleRoom_OnFrame
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, BattleFrontier_BattlePalaceBattleRoom_OnWarp
2017-11-10 02:21:31 +01:00
.byte 0
2019-12-07 03:25:46 +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_0
@ The opponent is represented by LOCALID_OPPONENT, which has the gfx id VAR_OBJ_GFX_ID_1
2019-12-07 03:25:46 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_OnTransition:
2019-11-24 22:58:40 +01:00
frontier_settrainers
2019-12-07 03:25:46 +01:00
call BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfx
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfx::
2017-11-10 02:21:31 +01:00
checkplayergender
goto_if_eq VAR_RESULT, MALE, BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfxMale
goto_if_eq VAR_RESULT, FEMALE, BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfxFemale
2017-11-10 02:21:31 +01:00
return
2019-12-07 03:25:46 +01:00
@ The opponent's gfx are set to the players by default
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfxMale::
setvar VAR_OBJ_GFX_ID_1, OBJ_EVENT_GFX_RIVAL_BRENDAN_NORMAL
setvar VAR_OBJ_GFX_ID_0, OBJ_EVENT_GFX_RIVAL_BRENDAN_NORMAL
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfxFemale::
setvar VAR_OBJ_GFX_ID_1, OBJ_EVENT_GFX_RIVAL_MAY_NORMAL
setvar VAR_OBJ_GFX_ID_0, OBJ_EVENT_GFX_RIVAL_MAY_NORMAL
2017-11-10 02:21:31 +01:00
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_OnFrame:
2019-12-07 03:25:46 +01:00
map_script_2 VAR_TEMP_0, 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_EnterRoom
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_EnterRoom::
showobjectat LOCALID_PLAYER, MAP_BATTLE_FRONTIER_BATTLE_PALACE_BATTLE_ROOM
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_BATTLE_NUM
goto_if_eq VAR_RESULT, 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_BeginChallenge
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_PlayerReturnToChallenge
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceDown
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 1
frontier_set FRONTIER_DATA_RECORD_DISABLED, TRUE
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_BeginChallenge::
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_PlayerEnterRoom
2017-11-10 02:21:31 +01:00
waitmovement 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_NextOpponentEnter::
2019-11-29 04:46:39 +01:00
tower_setopponent
addobject LOCALID_OPPONENT
applymovement LOCALID_OPPONENT, BattleFrontier_BattlePalaceBattleRoom_Movement_OpponentEnter
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-12-07 03:25:46 +01:00
call BattleFrontier_BattlePalaceBattleRoom_EventScript_DoPalaceBattle
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-07 03:25:46 +01:00
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_DefeatedOpponent
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyLost::
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_LOST
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobby
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_DefeatedOpponent::
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_IncrementWinStreak
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-12-07 03:25:46 +01:00
case 7, BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyWon
applymovement LOCALID_OPPONENT, BattleFrontier_BattlePalaceBattleRoom_Movement_OpponentExit
2017-11-10 02:21:31 +01:00
waitmovement 0
removeobject LOCALID_OPPONENT
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceUp
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceDown
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_LetMeRestoreYourMons, 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_BattlePalaceBattleRoom_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_BattlePalaceBattleRoom_EventScript_MavenUpNext
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_BATTLE_NUM
call_if_eq VAR_RESULT, 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor2ndOpponent
call_if_eq VAR_RESULT, 2, BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor3rdOpponent
call_if_eq VAR_RESULT, 3, BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor4thOpponent
call_if_eq VAR_RESULT, 4, BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor5thOpponent
call_if_eq VAR_RESULT, 5, BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor6thOpponent
call_if_eq VAR_RESULT, 6, BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor7thOpponent
call BattleFrontier_EventScript_GetCantRecordBattle
goto_if_eq VAR_RESULT, TRUE, BattleFrontier_BattlePalaceBattleRoom_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-12-07 03:25:46 +01:00
case 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_ContinueChallenge
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRecordBattle
case 2, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskPauseChallenge
case 3, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_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-12-07 03:25:46 +01:00
case 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_ContinueChallenge
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskPauseChallenge
case 2, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRecordBattle::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_RecordLastMatch
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-12-07 03:25:46 +01:00
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
case 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_RecordBattle
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_RecordBattle::
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_SaveBattle
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_AskPauseChallenge::
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SaveAndQuitGame, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-07 03:25:46 +01:00
case NO, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
case YES, BattleFrontier_BattlePalaceBattleRoom_EventScript_PauseChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRetireChallenge::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_WishToQuitChallenge
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-12-07 03:25:46 +01:00
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
case 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyLost
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForOpponent
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ContinueChallenge::
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceRight
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceRight
2017-11-10 02:21:31 +01:00
closemessage
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_NextOpponentEnter
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyWon::
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_WON
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobby
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_PauseChallenge::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_SavingData
2017-11-10 02:21:31 +01:00
waitmessage
palace_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_BattlePalaceBattleRoom_EventScript_MavenUpNext::
goto_if_eq VAR_TEMP_2, 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForMaven
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_ChallengingPalaceMaven, MSGBOX_DEFAULT
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_2, 1
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForMaven::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_ReadyForPalaceMaven
2017-11-10 02:21:31 +01:00
waitmessage
call BattleFrontier_EventScript_GetCantRecordBattle
goto_if_eq VAR_RESULT, TRUE, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForMavenNoRecord
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-12-07 03:25:46 +01:00
case 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenser
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRecordBattle
case 2, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskPauseChallenge
case 3, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForMaven
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForMavenNoRecord::
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-12-07 03:25:46 +01:00
case 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenser
case 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskPauseChallenge
case 2, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskRetireChallenge
case MULTI_B_PRESSED, BattleFrontier_BattlePalaceBattleRoom_EventScript_AskReadyForMaven
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenser::
2019-11-24 22:58:40 +01:00
call BattleFrontier_EventScript_SetBrainObjectGfx
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_AnnounceArrivalOfSpenser, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceRight
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceRight
setobjectxyperm LOCALID_OPPONENT, 15, 1
addobject LOCALID_OPPONENT
hideobjectat LOCALID_OPPONENT, MAP_BATTLE_FRONTIER_BATTLE_PALACE_BATTLE_ROOM
setobjectxy LOCALID_OPPONENT, 13, 1
setobjectxyperm LOCALID_OPPONENT, 13, 1
applymovement LOCALID_DUSCLOPS, BattleFrontier_BattlePalaceBattleRoom_Movement_DusclopsEnter
applymovement LOCALID_AZURILL, BattleFrontier_BattlePalaceBattleRoom_Movement_AzurillEnter
applymovement LOCALID_OPPONENT, BattleFrontier_BattlePalaceBattleRoom_Movement_SpenserEnter
2017-11-10 02:21:31 +01:00
waitmovement 0
2018-05-19 18:02:43 +02:00
switch VAR_TEMP_F
2019-12-07 03:25:46 +01:00
case FRONTIER_BRAIN_GOLD, BattleFrontier_BattlePalaceBattleRoom_EventScript_IntroSpenserGold
case FRONTIER_BRAIN_STREAK, BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenserSilver
case FRONTIER_BRAIN_STREAK_LONG, BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenserGold
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_HEARD_BRAIN_SPEECH
goto_if_ne VAR_RESULT, FALSE, BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenserSilver
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SpenserFirstIntro, MSGBOX_DEFAULT
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_HEARD_BRAIN_SPEECH
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenserSilver::
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_ProveYourBondWithMons, MSGBOX_DEFAULT
call BattleFrontier_BattlePalaceBattleRoom_EventScript_DoPalaceBattle
goto_if_eq VAR_RESULT, 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_DefeatedSpenserSilver
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyLost
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_DefeatedSpenserSilver::
palace_incrementstreak
2019-11-24 22:58:40 +01:00
frontier_getsymbols
goto_if_ne VAR_RESULT, 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyWon
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SpenserPostSilverBattle, MSGBOX_DEFAULT
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceUp
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceDown
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_LetsSeeFrontierPass, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_SYMBOL
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_ReceivedSpiritsSymbol
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
2019-11-24 22:58:40 +01:00
frontier_givesymbol
applymovement LOCALID_OPPONENT, Common_Movement_WalkInPlaceLeft
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_PLAYER, Common_Movement_WalkInPlaceFasterRight
applymovement LOCALID_ATTENDANT, Common_Movement_WalkInPlaceFasterRight
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SpenserAwaitNextTime, MSGBOX_DEFAULT
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyWon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_IntroSpenserGold::
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_HEARD_BRAIN_SPEECH
goto_if_ne VAR_RESULT, FALSE, BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenserGold
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SpenserThisTimeWontHoldBack, MSGBOX_DEFAULT
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_HEARD_BRAIN_SPEECH
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_BattleSpenserGold::
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_Kaaah, MSGBOX_DEFAULT
call BattleFrontier_BattlePalaceBattleRoom_EventScript_DoPalaceBattle
goto_if_eq VAR_RESULT, 1, BattleFrontier_BattlePalaceBattleRoom_EventScript_DefeatedSpenserGold
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyLost
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_DefeatedSpenserGold::
palace_incrementstreak
2019-11-24 22:58:40 +01:00
frontier_getsymbols
goto_if_eq VAR_RESULT, 2, BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyWon
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SpenserYourTeamIsAdmirable, MSGBOX_DEFAULT
applymovement LOCALID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceUp
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceBattleRoom_Movement_FaceDown
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_HurryWithFrontierPass, MSGBOX_DEFAULT
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_SYMBOL
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_SpiritsSymbolTookGoldenShine
2017-11-10 02:21:31 +01:00
waitmessage
waitfanfare
2019-11-24 22:58:40 +01:00
frontier_givesymbol
applymovement LOCALID_OPPONENT, Common_Movement_WalkInPlaceLeft
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_PLAYER, Common_Movement_WalkInPlaceFasterRight
applymovement LOCALID_ATTENDANT, Common_Movement_WalkInPlaceFasterRight
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceBattleRoom_Text_SpenserComeSeeMeAgain, MSGBOX_DEFAULT
goto BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyWon
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_DoPalaceBattle::
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_PALACE
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_BattlePalaceBattleRoom_OnWarp:
2019-12-07 03:25:46 +01:00
map_script_2 VAR_TEMP_1, 0, BattleFrontier_BattlePalaceBattleRoom_EventScript_SetUpRoomObjects
2017-11-10 02:21:31 +01:00
.2byte 0
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_SetUpRoomObjects::
hideobjectat LOCALID_PLAYER, MAP_BATTLE_FRONTIER_BATTLE_PALACE_BATTLE_ROOM
2019-12-07 03:25:46 +01:00
call BattleFrontier_BattlePalaceBattleRoom_EventScript_SetPlayerGfx
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_1, 1
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePalaceBattleRoom_Movement_SetInvisible
removeobject LOCALID_OPPONENT
applymovement LOCALID_DUSCLOPS, BattleFrontier_BattlePalaceBattleRoom_Movement_SetInvisible
applymovement LOCALID_AZURILL, BattleFrontier_BattlePalaceBattleRoom_Movement_SetInvisible
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor2ndOpponent::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor2ndOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor3rdOpponent::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor3rdOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor4thOpponent::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor4thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor5thOpponent::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor5thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor6thOpponent::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor6thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_ReadyFor7thOpponent::
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor7thOpponent
2017-11-10 02:21:31 +01:00
waitmessage
return
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_SetInvisible:
set_invisible
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_PlayerEnterRoom:
set_visible
walk_up
walk_up
walk_up
walk_up
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_FaceRight:
face_right
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_FaceUp:
face_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_PlayerReturnToChallenge:
set_visible
walk_up
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_OpponentEnter:
walk_down
walk_down
walk_down
walk_down
face_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_OpponentExit:
walk_up
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_FaceDown:
face_down
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_UnusedOpponentEnter1:
set_visible
walk_slow_down
walk_slow_down
face_left
2017-11-10 00:40:08 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_UnusedOpponentEnter2:
set_visible
walk_slow_down
2017-11-10 00:40:08 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_UnusedOpponentEnter3:
walk_slow_down
walk_slow_down
walk_slow_down
face_left
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_BattlePalaceBattleRoom_EventScript_WarpToLobby::
2018-08-25 19:59:47 +02:00
copyvar VAR_RESULT, VAR_FRONTIER_BATTLE_MODE
goto_if_eq VAR_RESULT, FRONTIER_MODE_DOUBLES, BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyDoubles
warp MAP_BATTLE_FRONTIER_BATTLE_PALACE_LOBBY, 5, 7
2017-11-10 02:21:31 +01:00
waitstate
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_EventScript_WarpToLobbyDoubles::
warp MAP_BATTLE_FRONTIER_BATTLE_PALACE_LOBBY, 19, 7
2017-11-10 02:21:31 +01:00
waitstate
end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_DusclopsEnter:
delay_16
delay_16
set_visible
walk_down
walk_right
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_BattlePalaceBattleRoom_Movement_AzurillEnter:
set_visible
walk_fast_down
walk_fast_right
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_in_place_faster_left
delay_16
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Movement_SpenserEnter:
delay_16
delay_16
delay_16
delay_16
delay_16
delay_16
delay_16
set_visible
walk_slow_down
walk_slow_down
walk_slow_down
walk_slow_down
face_left
2017-11-10 02:21:31 +01:00
step_end
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_LetMeRestoreYourMons:
.string "Excellent…\n"
.string "Let me restore your POKéMON.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor2ndOpponent:
.string "The 2nd opponent is next.\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor3rdOpponent:
.string "The 3rd opponent is next.\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor4thOpponent:
.string "The 4th opponent is next.\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor5thOpponent:
.string "The 5th opponent is next.\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor6thOpponent:
.string "The 6th opponent is next.\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_PreparedFor7thOpponent:
.string "The 7th opponent is next.\n"
.string "Are you prepared?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SaveAndQuitGame:
.string "Would you like to save and quit\n"
.string "the game?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_WishToQuitChallenge:
.string "Do you wish to quit your challenge?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SavingData:
.string "Saving the data.\n"
.string "Have patience…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_RecordLastMatch:
.string "Do you wish to record your latest\n"
.string "match on your FRONTIER PASS?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_ChallengingPalaceMaven:
.string "And now…\p"
.string "By winning consistently, you have\n"
.string "earned the privilege of challenging\l"
.string "our master, the PALACE MAVEN…$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_ReadyForPalaceMaven:
.string "I shall send for the PALACE MAVEN.\n"
.string "Are you ready?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_AnnounceArrivalOfSpenser:
.string "Let great fanfare announce the arrival\n"
.string "of the PALACE MAVEN, SPENSER!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpenserFirstIntro:
.string "SPENSER: My physical being is with\n"
.string "POKéMON always!\p"
.string "My heart beats as one with\n"
.string "POKéMON always!\p"
.string "Young one of a TRAINER!\n"
.string "Do you believe in your POKéMON?\p"
.string "Can you believe them through\n"
.string "and through?\p"
.string "If your bonds of trust are frail,\n"
.string "you will never beat my brethren!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_ProveYourBondWithMons:
.string "The bond you share with your POKéMON!\n"
.string "Prove it to me here!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpenserPostSilverBattle:
.string "SPENSER: Gwahahah!\p"
.string "Hah, you never fell for my bluster!\n"
.string "Sorry for trying that stunt!\p"
.string "Here!\n"
.string "Bring me the thing!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_LetsSeeFrontierPass:
.string "My, my, if only you could maintain that\n"
.string "facade of distinguished authority…\p"
.string "Here!\n"
2018-12-07 16:41:08 +01:00
.string "Let's see your FRONTIER PASS!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_ReceivedSpiritsSymbol:
.string "The Spirits Symbol was embossed on\n"
.string "the FRONTIER PASS!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpenserAwaitNextTime:
2018-12-07 16:41:08 +01:00
.string "SPENSER: Your POKéMON's eyes are \n"
.string "truly clear and unclouded.\p"
.string "I will eagerly await the next\n"
.string "opportunity to see you.$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpenserThisTimeWontHoldBack:
.string "SPENSER: Gwahahah!\n"
2018-12-07 16:41:08 +01:00
.string "You've battled your way up again?\p"
.string "You must have developed a truly\n"
.string "formidable bond with your POKéMON.\p"
.string "So be it!\p"
2018-12-07 16:41:08 +01:00
.string "This time, I won't bluster or hold back.\n"
.string "This time, there's no fooling around.\p"
.string "Ready now?\n"
.string "Prepare to lose!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_Kaaah:
.string "… … …Kaaah!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpenserYourTeamIsAdmirable:
.string "SPENSER: Well, that was some display!\n"
.string "Even fully unleashed, my brethren\l"
.string "could not overpower you.\p"
.string "Your team spirit is truly admirable!\p"
.string "Here!\n"
.string "Bring me that thing, will you?$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_HurryWithFrontierPass:
.string "My, my, if only you could maintain\n"
.string "a certain level of decorum…\p"
.string "Gaaah, here!\n"
.string "Hurry with that FRONTIER PASS, you!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpiritsSymbolTookGoldenShine:
.string "The Spirits Symbol took on\n"
.string "a golden shine!$"
2021-07-20 21:18:31 +02:00
BattleFrontier_BattlePalaceBattleRoom_Text_SpenserComeSeeMeAgain:
.string "SPENSER: Gwahahah!\p"
.string "Come see me time and again!\n"
.string "My brethren and I will be waiting!$"