pokeemerald/data/maps/VerdanturfTown_BattleTentLobby/scripts.inc

389 lines
15 KiB
PHP
Raw Normal View History

.set LOCALID_ATTENDANT, 1
2017-11-10 02:21:31 +01:00
VerdanturfTown_BattleTentLobby_MapScripts:: @ 82016D0
2019-12-15 06:55:21 +01:00
map_script MAP_SCRIPT_ON_FRAME_TABLE, VerdanturfTown_BattleTentLobby_OnFrame
map_script MAP_SCRIPT_ON_WARP_INTO_MAP_TABLE, VerdanturfTown_BattleTentLobby_OnWarp
2017-11-10 02:21:31 +01:00
.byte 0
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_OnWarp: @ 82016DB
map_script_2 VAR_TEMP_1, 0, VerdanturfTown_BattleTentLobby_EventScript_TurnPlayerNorth
2017-11-10 02:21:31 +01:00
.2byte 0
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_TurnPlayerNorth:: @ 82016E5
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
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_OnFrame: @ 82016EF
map_script_2 VAR_TEMP_0, 0, VerdanturfTown_BattleTentLobby_EventScript_GetChallengeStatus
map_script_2 VAR_TEMP_0, CHALLENGE_STATUS_SAVING, VerdanturfTown_BattleTentLobby_EventScript_QuitWithoutSaving
map_script_2 VAR_TEMP_0, CHALLENGE_STATUS_PAUSED, VerdanturfTown_BattleTentLobby_EventScript_ResumeChallenge
map_script_2 VAR_TEMP_0, CHALLENGE_STATUS_WON, VerdanturfTown_BattleTentLobby_EventScript_WonChallenge
map_script_2 VAR_TEMP_0, CHALLENGE_STATUS_LOST, VerdanturfTown_BattleTentLobby_EventScript_LostChallenge
2017-11-10 02:21:31 +01:00
.2byte 0
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_GetChallengeStatus:: @ 8201719
2019-11-24 22:58:40 +01:00
frontier_getstatus
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_QuitWithoutSaving:: @ 8201722
2017-11-10 02:21:31 +01:00
lockall
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_FailedToSaveBeforeEndingChallenge, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, 0
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 255
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_LVL_MODE, FRONTIER_LVL_50
2017-11-10 02:21:31 +01:00
releaseall
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_WonChallenge:: @ 8201757
2017-11-10 02:21:31 +01:00
lockall
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_AchievedThreeWinStreak, MSGBOX_DEFAULT
message VerdanturfTown_BattleTentLobby_Text_FeatWillBeRecorded
2017-11-10 02:21:31 +01:00
waitmessage
2019-12-02 20:49:22 +01:00
verdanturftent_setrandomprize
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_LVL_MODE, FRONTIER_LVL_50
2019-12-02 20:49:22 +01:00
verdanturftent_save 0
2017-11-10 02:21:31 +01:00
playse SE_SAVE
waitse
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_GivePrize:: @ 8201791
msgbox VerdanturfTown_BattleTentLobby_Text_PresentYouWithPrize, MSGBOX_DEFAULT
2019-12-02 20:49:22 +01:00
verdanturftent_giveprize
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-15 06:55:21 +01:00
case FALSE, VerdanturfTown_BattleTentLobby_EventScript_NoRoomForPrize
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, 0
2019-12-15 06:55:21 +01:00
message BattleFrontier_BattleDomeLobby_Text_ReceivedPrize @ Odd that it used Dome's copy instead of Palace's
2017-11-10 02:21:31 +01:00
waitmessage
2020-08-21 00:02:00 +02:00
playfanfare MUS_OBTAIN_ITEM
2017-11-10 02:21:31 +01:00
waitfanfare
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_ReturnFortified, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 255
2017-11-10 02:21:31 +01:00
releaseall
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_NoRoomForPrize:: @ 82017DD
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_NoSpaceForPrize, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
waitmessage
closemessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 255
2017-11-10 02:21:31 +01:00
releaseall
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_PrizeWaiting:: @ 82017EE
2017-11-10 02:21:31 +01:00
lockall
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_AchievedThreeWinStreak, MSGBOX_DEFAULT
goto VerdanturfTown_BattleTentLobby_EventScript_GivePrize
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_LostChallenge:: @ 82017FD
2017-11-10 02:21:31 +01:00
lockall
2019-12-15 06:55:21 +01:00
message VerdanturfTown_BattleTentLobby_Text_ResultsWillBeRecorded
2017-11-10 02:21:31 +01:00
waitmessage
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_LVL_MODE, FRONTIER_LVL_50
2019-12-02 20:49:22 +01:00
verdanturftent_save 0
2017-11-10 02:21:31 +01:00
playse SE_SAVE
waitse
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_ReturnFortified, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 255
2017-11-10 02:21:31 +01:00
releaseall
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_ResumeChallenge:: @ 8201837
2017-11-10 02:21:31 +01:00
lockall
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_WeHaveBeenWaiting, MSGBOX_DEFAULT
message BattleFrontier_BattlePalaceLobby_Text_MustSaveBeforeChallenge
2017-11-10 02:21:31 +01:00
waitmessage
2019-12-02 20:49:22 +01:00
verdanturftent_save CHALLENGE_STATUS_SAVING
2017-11-10 02:21:31 +01:00
playse SE_SAVE
waitse
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_PAUSED, FALSE
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 255
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_EnterChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_Attendant:: @ 8201873
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-12-02 20:49:22 +01:00
verdanturftent_getprize
2019-12-15 06:55:21 +01:00
compare VAR_RESULT, ITEM_NONE
goto_if_ne VerdanturfTown_BattleTentLobby_EventScript_PrizeWaiting
2018-04-29 14:21:59 +02:00
special SavePlayerParty
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_WelcomeToBattleTent, MSGBOX_DEFAULT
VerdanturfTown_BattleTentLobby_EventScript_AskEnterChallenge:: @ 8201893
message VerdanturfTown_BattleTentLobby_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-15 06:55:21 +01:00
case 0, VerdanturfTown_BattleTentLobby_EventScript_TryEnterChallenge
case 1, VerdanturfTown_BattleTentLobby_EventScript_ExplainChallenge
case 2, VerdanturfTown_BattleTentLobby_EventScript_CancelChallenge
case MULTI_B_PRESSED, VerdanturfTown_BattleTentLobby_EventScript_CancelChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_TryEnterChallenge:: @ 82018CF
2019-11-24 22:58:40 +01:00
setvar VAR_FRONTIER_FACILITY, FRONTIER_FACILITY_PALACE
setvar VAR_FRONTIER_BATTLE_MODE, FRONTIER_MODE_SINGLES
2017-11-10 02:21:31 +01:00
setvar VAR_RESULT, 2
2019-11-24 22:58:40 +01:00
frontier_checkineligible
compare VAR_0x8004, TRUE
2019-12-15 06:55:21 +01:00
goto_if_eq VerdanturfTown_BattleTentLobby_EventScript_NotEnoughValidMons
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_LVL_MODE, FRONTIER_LVL_TENT
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_SelectThreeMons, MSGBOX_DEFAULT
2019-12-15 17:42:50 +01:00
fadescreen FADE_TO_BLACK
2017-11-10 02:21:31 +01:00
setvar VAR_0x8004, 1
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
compare VAR_RESULT, 0
2019-12-15 06:55:21 +01:00
goto_if_eq VerdanturfTown_BattleTentLobby_EventScript_LoadPartyCancelChallenge
msgbox VerdanturfTown_BattleTentLobby_Text_SaveBeforeChallenge, MSGBOX_YESNO
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-15 06:55:21 +01:00
case NO, VerdanturfTown_BattleTentLobby_EventScript_LoadPartyCancelChallenge
case YES, VerdanturfTown_BattleTentLobby_EventScript_SaveBeforeChallenge
case MULTI_B_PRESSED, VerdanturfTown_BattleTentLobby_EventScript_LoadPartyCancelChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_SaveBeforeChallenge:: @ 8201954
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 0
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_SELECTED_MON_ORDER
2019-12-02 20:49:22 +01:00
verdanturftent_init
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, CHALLENGE_STATUS_SAVING
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
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 255
compare VAR_RESULT, 0
2019-12-15 06:55:21 +01:00
goto_if_eq VerdanturfTown_BattleTentLobby_EventScript_CancelChallengeSaveFailed
VerdanturfTown_BattleTentLobby_EventScript_EnterChallenge:: @ 82019AE
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-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_NowFollowMe, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-12-15 06:55:21 +01:00
call VerdanturfTown_BattleTentLobby_EventScript_WalkToDoor
warp MAP_VERDANTURF_TOWN_BATTLE_TENT_CORRIDOR, 255, 2, 7
2018-05-19 18:02:43 +02:00
setvar VAR_TEMP_0, 0
2017-11-10 02:21:31 +01:00
waitstate
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_ExplainChallenge:: @ 82019DB
msgbox VerdanturfTown_BattleTentLobby_Text_ExplainVerdanturfTent, MSGBOX_DEFAULT
goto VerdanturfTown_BattleTentLobby_EventScript_AskEnterChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_NotEnoughValidMons:: @ 82019E8
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-12-15 06:55:21 +01:00
case FRONTIER_LVL_50, VerdanturfTown_BattleTentLobby_EventScript_NotEnoughValidMonsLv50
case FRONTIER_LVL_OPEN, VerdanturfTown_BattleTentLobby_EventScript_NotEnoughValidMonsLvOpen
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_NotEnoughValidMonsLv50:: @ 8201A03
msgbox VerdanturfTown_BattleTentLobby_Text_NotEnoughValidMonsLv50, MSGBOX_DEFAULT
goto VerdanturfTown_BattleTentLobby_EventScript_EndCancelChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_NotEnoughValidMonsLvOpen:: @ 8201A10
msgbox VerdanturfTown_BattleTentLobby_Text_NotEnoughValidMonsLvOpen, MSGBOX_DEFAULT
goto VerdanturfTown_BattleTentLobby_EventScript_EndCancelChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_CancelChallengeSaveFailed:: @ 8201A1D
2019-11-24 22:58:40 +01:00
frontier_set FRONTIER_DATA_CHALLENGE_STATUS, 0
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_CancelChallenge
2017-11-10 02:21:31 +01:00
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_LoadPartyCancelChallenge:: @ 8201A34
2018-04-29 14:21:59 +02:00
special LoadPlayerParty
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_CancelChallenge:: @ 8201A37
msgbox VerdanturfTown_BattleTentLobby_Text_ReturnFortified, MSGBOX_DEFAULT
VerdanturfTown_BattleTentLobby_EventScript_EndCancelChallenge:: @ 8201A3F
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_WalkToDoor:: @ 8201A41
applymovement LOCALID_ATTENDANT, VerdanturfTown_BattleTentLobby_Movement_WalkToDoor
applymovement OBJ_EVENT_ID_PLAYER, VerdanturfTown_BattleTentLobby_Movement_WalkToDoor
2017-11-10 02:21:31 +01:00
waitmovement 0
opendoor 6, 1
waitdooranim
applymovement LOCALID_ATTENDANT, VerdanturfTown_BattleTentLobby_Movement_AttendantEnterDoor
applymovement OBJ_EVENT_ID_PLAYER, VerdanturfTown_BattleTentLobby_Movement_PlayerEnterDoor
2017-11-10 02:21:31 +01:00
waitmovement 0
closedoor 6, 1
waitdooranim
return
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Movement_WalkToDoor: @ 8201A70
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Movement_AttendantEnterDoor: @ 8201A74
walk_up
set_invisible
2017-11-10 02:21:31 +01:00
step_end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Movement_PlayerEnterDoor: @ 8201A77
walk_up
walk_up
set_invisible
2017-11-10 02:21:31 +01:00
step_end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_AttractGiver:: @ 8201A7B
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-12-15 06:55:21 +01:00
goto_if_set FLAG_RECEIVED_TM45, VerdanturfTown_BattleTentLobby_EventScript_ReceivedAttract
msgbox VerdanturfTown_BattleTentLobby_Text_AttractionRunsDeep, MSGBOX_DEFAULT
giveitem ITEM_TM45
compare VAR_RESULT, 0
goto_if_eq Common_EventScript_ShowBagIsFull
2019-01-02 22:12:43 +01:00
setflag FLAG_RECEIVED_TM45
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_AttractionMutual, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_ReceivedAttract:: @ 8201AB2
msgbox VerdanturfTown_BattleTentLobby_Text_AttractionMutual, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_Boy1:: @ 8201ABC
msgbox VerdanturfTown_BattleTentLobby_Text_TaughtWhatKindsOfMoves, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_Boy2:: @ 8201AC5
2017-11-10 02:21:31 +01:00
lock
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_MonsReluctantToUseDislikedMoves, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_Scott:: @ 8201AD0
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-12-15 06:55:21 +01:00
goto_if_set FLAG_MET_SCOTT_IN_VERDANTURF, VerdanturfTown_BattleTentLobby_EventScript_ScottAlreadySpokenTo
msgbox VerdanturfTown_BattleTentLobby_Text_ScottCanMeetToughTrainers, MSGBOX_DEFAULT
addvar VAR_SCOTT_STATE, 1
2019-01-02 22:12:43 +01:00
setflag FLAG_MET_SCOTT_IN_VERDANTURF
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_ScottAlreadySpokenTo:: @ 8201AED
msgbox VerdanturfTown_BattleTentLobby_Text_ScottVisitRegularly, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_LittleBoy:: @ 8201AF7
2017-11-10 02:21:31 +01:00
lock
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_GentleMonsScaryIfAngry, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesBoard:: @ 8201B02
2017-11-10 02:21:31 +01:00
lockall
2019-12-15 06:55:21 +01:00
msgbox VerdanturfTown_BattleTentLobby_Text_RulesAreListed, MSGBOX_DEFAULT
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard:: @ 8201B11
2019-12-07 03:25:46 +01:00
message BattleFrontier_BattlePalaceLobby_Text_ReadWhichHeading
2017-11-10 02:21:31 +01:00
waitmessage
2019-09-13 20:24:07 +02:00
setvar VAR_0x8004, SCROLL_MULTI_BATTLE_TENT_RULES
special ShowScrollableMultichoice
2017-11-10 02:21:31 +01:00
waitstate
switch VAR_RESULT
2019-12-15 06:55:21 +01:00
case 0, VerdanturfTown_BattleTentLobby_EventScript_RulesLevel
case 1, VerdanturfTown_BattleTentLobby_EventScript_RulesBasics
case 2, VerdanturfTown_BattleTentLobby_EventScript_RulesNature
case 3, VerdanturfTown_BattleTentLobby_EventScript_RulesMoves
case 4, VerdanturfTown_BattleTentLobby_EventScript_RulesUnderpowered
case 5, VerdanturfTown_BattleTentLobby_EventScript_RulesWhenInDanger
case 6, VerdanturfTown_BattleTentLobby_EventScript_ExitRules
case MULTI_B_PRESSED, VerdanturfTown_BattleTentLobby_EventScript_ExitRules
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesLevel:: @ 8201B7E
msgbox BattleTentLobby_Text_ExplainLevelRules, MSGBOX_DEFAULT
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesBasics:: @ 8201B8C
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_ExplainRulesBasics, MSGBOX_DEFAULT
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesNature:: @ 8201B9A
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_ExplainRulesNature, MSGBOX_DEFAULT
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesMoves:: @ 8201BA8
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_ExplainRulesMoves, MSGBOX_DEFAULT
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesUnderpowered:: @ 8201BB6
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_ExplainRulesUnderpowered, MSGBOX_DEFAULT
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_RulesWhenInDanger:: @ 8201BC4
2019-12-07 03:25:46 +01:00
msgbox BattleFrontier_BattlePalaceLobby_Text_ExplainRulesWhenInDanger, MSGBOX_DEFAULT
2019-12-15 06:55:21 +01:00
goto VerdanturfTown_BattleTentLobby_EventScript_ReadRulesBoard
2017-11-10 02:21:31 +01:00
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_EventScript_ExitRules:: @ 8201BD2
2017-11-10 02:21:31 +01:00
releaseall
end
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_MonsReluctantToUseDislikedMoves: @ 8201BD4
2018-12-07 16:41:08 +01:00
.string "If it doesn't like a certain move,\n"
2017-11-10 02:21:31 +01:00
.string "a POKéMON will be reluctant to use it.\p"
2018-12-07 16:41:08 +01:00
.string "It doesn't matter how strong it is,\n"
2017-11-10 02:21:31 +01:00
.string "either.\p"
.string "For example, a POKéMON with a GENTLE\n"
2018-12-07 16:41:08 +01:00
.string "nature probably won't enjoy hurting\l"
2017-11-10 02:21:31 +01:00
.string "its opponents.\p"
2018-12-07 16:41:08 +01:00
.string "If it can't seem to live up to its\n"
.string "potential, it's probably failing at\l"
2017-11-10 02:21:31 +01:00
.string "using a disliked move against its will.$"
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_GentleMonsScaryIfAngry: @ 8201D11
2017-11-10 02:21:31 +01:00
.string "My big sister is gentle usually.\n"
.string "But when she gets angry,\l"
2018-12-07 16:41:08 +01:00
.string "she's really, really scary!\p"
2017-11-10 02:21:31 +01:00
.string "I bet a gentle POKéMON will be scary\n"
.string "if it gets angry!$"
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_AttractionRunsDeep: @ 8201D9E
2017-11-10 02:21:31 +01:00
.string "My feelings toward my POKéMON…\n"
.string "The attraction runs deep…\p"
2018-12-07 16:41:08 +01:00
.string "Oh, hi, you didn't see that, did you?\n"
.string "Well, it doesn't matter.\p"
2017-11-10 02:21:31 +01:00
.string "How would you like this TM for\n"
.string "your POKéMON?$"
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_AttractionMutual: @ 8201E43
2017-11-10 02:21:31 +01:00
.string "My feelings toward my POKéMON…\n"
2018-12-07 16:41:08 +01:00
.string "I'm sure the attraction is mutual!\p"
2017-11-10 02:21:31 +01:00
.string "They battle exactly the way I want\n"
.string "them to!$"
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_TaughtWhatKindsOfMoves: @ 8201EB1
2017-11-10 02:21:31 +01:00
.string "What kind of moves have you taught\n"
.string "your POKéMON?\p"
.string "I think you would give yourself\n"
.string "an advantage if they knew how to\l"
.string "heal or protect themselves.$"
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_ScottCanMeetToughTrainers: @ 8201F3F
2017-11-10 02:21:31 +01:00
.string "SCOTT: Hey there, {PLAYER}{KUN}!\n"
.string "I thought I might see you here.\p"
2018-12-07 16:41:08 +01:00
.string "A BATTLE TENT's a place where\n"
2017-11-10 02:21:31 +01:00
.string "you can meet tough TRAINERS.\p"
2018-12-07 16:41:08 +01:00
.string "It doesn't matter what the rules are,\n"
2017-11-10 02:21:31 +01:00
.string "or how battles are waged, either.\p"
.string "{PLAYER}{KUN}, I expect you to do\n"
.string "the best you can!$"
2019-12-15 06:55:21 +01:00
VerdanturfTown_BattleTentLobby_Text_ScottVisitRegularly: @ 8202025
2017-11-10 02:21:31 +01:00
.string "SCOTT: I visit here regularly in hopes\n"
.string "of seeing tough TRAINERS in action\l"
.string "in whatever the situation.$"