pokeemerald/data/maps/BattleFrontier_ReceptionGate/scripts.inc

507 lines
19 KiB
PHP
Raw Normal View History

2017-11-10 02:21:31 +01:00
BattleFrontier_ReceptionGate_MapScripts:: @ 82661DA
map_script MAP_SCRIPT_ON_FRAME_TABLE, BattleFrontier_ReceptionGate_OnFrame
2019-04-05 01:28:37 +02:00
map_script MAP_SCRIPT_ON_TRANSITION, BattleFrontier_ReceptionGate_OnTransition
2017-11-10 02:21:31 +01:00
.byte 0
2019-04-05 01:28:37 +02:00
BattleFrontier_ReceptionGate_OnTransition: @ 82661E5
2017-12-27 04:20:29 +01:00
setflag FLAG_LANDMARK_BATTLE_FRONTIER
2017-11-10 02:21:31 +01:00
end
BattleFrontier_ReceptionGate_OnFrame: @ 82661E9
2019-11-13 02:53:59 +01:00
map_script_2 VAR_HAS_ENTERED_BATTLE_FRONTIER, 0, BattleFrontier_ReceptionGate_EventScript_FirstTimeEntering
2017-11-10 02:21:31 +01:00
.2byte 0
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_FirstTimeEntering:: @ 82661F3
2017-11-10 02:21:31 +01:00
lockall
setvar VAR_HAS_ENTERED_BATTLE_FRONTIER, 1
2017-11-10 02:21:31 +01:00
playse SE_PIN
applymovement 1, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement 1, Common_Movement_Delay48
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_FirstTimeHereThisWay, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_ReceptionGate_Movement_PlayerApproachCounter
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-13 02:53:59 +01:00
goto BattleFrontier_ReceptionGate_EventScript_ScottScene
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ScottScene:: @ 8266229
msgbox BattleFrontier_ReceptionGate_Text_WelcomeToBattleFrontier, MSGBOX_DEFAULT
msgbox BattleFrontier_ReceptionGate_Text_IssueFrontierPass, MSGBOX_DEFAULT
2017-12-22 08:46:19 +01:00
playfanfare MUS_FANFA4
2019-11-13 02:53:59 +01:00
message BattleFrontier_ReceptionGate_Text_ObtainedFrontierPass
2017-11-10 02:21:31 +01:00
waitfanfare
waitmessage
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_PlacedTrainerCardInFrontierPass, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
setflag FLAG_SYS_FRONTIER_PASS
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_EnjoyBattleFrontier, MSGBOX_DEFAULT
msgbox BattleFrontier_ReceptionGate_Text_IfItIsntPlayerYouCame, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-10-06 19:55:30 +02:00
applymovement 1, Common_Movement_WalkInPlaceFastestUp
applymovement 2, Common_Movement_WalkInPlaceFastestUp
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFastestUp
2017-11-10 02:21:31 +01:00
waitmovement 0
playse SE_PIN
applymovement 1, Common_Movement_ExclamationMark
applymovement 2, Common_Movement_ExclamationMark
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_OhMrScottGoodDay, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-13 02:53:59 +01:00
applymovement 1, BattleFrontier_ReceptionGate_Movement_GreeterFaceScott
applymovement 2, BattleFrontier_ReceptionGate_Movement_FacilityGuideFaceScott
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_ReceptionGate_Movement_PlayerFaceScott
2019-11-13 02:53:59 +01:00
applymovement 4, BattleFrontier_ReceptionGate_Movement_ScottEnter
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_ScottGreatToSeeYouHere, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
2019-11-13 02:53:59 +01:00
applymovement 4, BattleFrontier_ReceptionGate_Movement_ScottExit
2017-11-10 02:21:31 +01:00
waitmovement 0
removeobject 4
releaseall
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Movement_PlayerApproachCounter: @ 82662D2
walk_up
walk_up
walk_left
walk_left
2017-11-10 02:21:31 +01:00
step_end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Movement_PlayerFaceScott: @ 82662D7
delay_16
delay_16
delay_16
delay_8
walk_in_place_fastest_right
2017-11-10 02:21:31 +01:00
step_end
2019-11-13 02:53:59 +01:00
@ Unused
BattleFrontier_ReceptionGate_Movement_WalkDown: @ 82662DD
walk_down
walk_down
step_end
2017-11-10 02:21:31 +01:00
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Movement_ScottEnter: @ 82662E0
walk_down
walk_down
walk_down
walk_down
walk_down
walk_down
walk_left
2017-11-10 02:21:31 +01:00
step_end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Movement_ScottExit: @ 82662E8
walk_right
walk_up
walk_up
walk_up
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Movement_GreeterFaceScott: @ 82662F0
delay_16
delay_16
delay_16
delay_8
walk_in_place_fastest_right
2017-11-10 02:21:31 +01:00
step_end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Movement_FacilityGuideFaceScott: @ 82662F6
delay_16
delay_16
delay_16
delay_8
walk_in_place_fastest_left
2017-11-10 02:21:31 +01:00
step_end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_Greeter:: @ 82662FC
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_WelcomeToBattleFrontier, MSGBOX_DEFAULT
msgbox BattleFrontier_ReceptionGate_Text_EnjoyBattleFrontier, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_FacilityGuide:: @ 8266310
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_YourGuideToFacilities, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout:: @ 8266320
message BattleFrontier_ReceptionGate_Text_LearnAboutWhich2
2017-11-10 02:21:31 +01:00
waitmessage
2019-09-13 20:24:07 +02:00
setvar VAR_0x8004, SCROLL_MULTI_BF_RECEPTIONIST
special ShowScrollableMultichoice
2017-11-10 02:21:31 +01:00
waitstate
switch VAR_RESULT
2019-11-13 02:53:59 +01:00
case 0, BattleFrontier_ReceptionGate_EventScript_BattleTower
case 1, BattleFrontier_ReceptionGate_EventScript_BattleDome
case 2, BattleFrontier_ReceptionGate_EventScript_BattlePalace
case 3, BattleFrontier_ReceptionGate_EventScript_BattleArena
case 4, BattleFrontier_ReceptionGate_EventScript_BattleFactory
case 5, BattleFrontier_ReceptionGate_EventScript_BattlePike
case 6, BattleFrontier_ReceptionGate_EventScript_BattlePyramid
case 7, BattleFrontier_ReceptionGate_EventScript_RankingHall
case 8, BattleFrontier_ReceptionGate_EventScript_ExchangeCorner
case 9, BattleFrontier_ReceptionGate_EventScript_ExitFacilityGuide
case MULTI_B_PRESSED, BattleFrontier_ReceptionGate_EventScript_ExitFacilityGuide
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattleTower:: @ 82663AE
msgbox BattleFrontier_ReceptionGate_Text_BattleTowerInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattleDome:: @ 82663BC
msgbox BattleFrontier_ReceptionGate_Text_BattleDomeInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattlePalace:: @ 82663CA
msgbox BattleFrontier_ReceptionGate_Text_BattlePalaceInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattleArena:: @ 82663D8
msgbox BattleFrontier_ReceptionGate_Text_BattleArenaInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattleFactory:: @ 82663E6
msgbox BattleFrontier_ReceptionGate_Text_BattleFactoryInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattlePike:: @ 82663F4
msgbox BattleFrontier_ReceptionGate_Text_BattlePikeInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattlePyramid:: @ 8266402
msgbox BattleFrontier_ReceptionGate_Text_BattlePyramidInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_RankingHall:: @ 8266410
msgbox BattleFrontier_ReceptionGate_Text_RankingHallInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ExchangeCorner:: @ 826641E
msgbox BattleFrontier_ReceptionGate_Text_ExchangeCornerInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFacilityToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ExitFacilityGuide:: @ 826642C
msgbox BattleFrontier_ReceptionGate_Text_EnjoyBattleFrontier, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_RulesGuide:: @ 8266436
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_YourGuideToRules, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout:: @ 8266446
message BattleFrontier_ReceptionGate_Text_LearnAboutWhat
2017-11-10 02:21:31 +01:00
waitmessage
2019-09-19 06:56:51 +02:00
multichoice 15, 0, MULTI_FRONTIER_RULES, 0
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-13 02:53:59 +01:00
case 0, BattleFrontier_ReceptionGate_EventScript_LevelMode
case 1, BattleFrontier_ReceptionGate_EventScript_Level50
case 2, BattleFrontier_ReceptionGate_EventScript_OpenLevel
case 3, BattleFrontier_ReceptionGate_EventScript_MonEntry
case 4, BattleFrontier_ReceptionGate_EventScript_HoldItems
case 5, BattleFrontier_ReceptionGate_EventScript_ExitRulesGuide
case MULTI_B_PRESSED, BattleFrontier_ReceptionGate_EventScript_ExitRulesGuide
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_LevelMode:: @ 82664A4
msgbox BattleFrontier_ReceptionGate_Text_LevelModeInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_Level50:: @ 82664B2
msgbox BattleFrontier_ReceptionGate_Text_Level50Info, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_OpenLevel:: @ 82664C0
msgbox BattleFrontier_ReceptionGate_Text_OpenLevelInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_MonEntry:: @ 82664CE
msgbox BattleFrontier_ReceptionGate_Text_MonEntryInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_HoldItems:: @ 82664DC
msgbox BattleFrontier_ReceptionGate_Text_HoldItemsInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseRuleToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ExitRulesGuide:: @ 82664EA
msgbox BattleFrontier_ReceptionGate_Text_EnjoyBattleFrontier, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_FrontierPassGuide:: @ 82664F4
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-13 02:53:59 +01:00
msgbox BattleFrontier_ReceptionGate_Text_YourGuideToFrontierPass, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFrontierPassInfoToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ChooseFrontierPassInfoToLearnAbout:: @ 8266504
message BattleFrontier_ReceptionGate_Text_LearnAboutWhich1
2017-11-10 02:21:31 +01:00
waitmessage
2019-09-19 06:56:51 +02:00
multichoice 16, 4, MULTI_FRONTIER_PASS_INFO, 0
2017-11-10 02:21:31 +01:00
switch VAR_RESULT
2019-11-13 02:53:59 +01:00
case 0, BattleFrontier_ReceptionGate_EventScript_Symbols
case 1, BattleFrontier_ReceptionGate_EventScript_RecordBattle
case 2, BattleFrontier_ReceptionGate_EventScript_BattlePoints
case 3, BattleFrontier_ReceptionGate_EventScript_ExitFrontierPassGuide
case MULTI_B_PRESSED, BattleFrontier_ReceptionGate_EventScript_ExitFrontierPassGuide
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_Symbols:: @ 826654C
msgbox BattleFrontier_ReceptionGate_Text_SymbolsInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFrontierPassInfoToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_RecordBattle:: @ 826655A
msgbox BattleFrontier_ReceptionGate_Text_RecordedBattleInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFrontierPassInfoToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_BattlePoints:: @ 8266568
msgbox BattleFrontier_ReceptionGate_Text_BattlePointsInfo, MSGBOX_DEFAULT
goto BattleFrontier_ReceptionGate_EventScript_ChooseFrontierPassInfoToLearnAbout
2017-11-10 02:21:31 +01:00
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_EventScript_ExitFrontierPassGuide:: @ 8266576
msgbox BattleFrontier_ReceptionGate_Text_EnjoyBattleFrontier, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_FirstTimeHereThisWay: @ 8266580
2017-11-10 02:21:31 +01:00
.string "Is it your first time here?\n"
.string "Please step this way!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_WelcomeToBattleFrontier: @ 82665B2
2017-11-10 02:21:31 +01:00
.string "The front lines of POKéMON battling!\n"
.string "Welcome to the BATTLE FRONTIER!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_IssueFrontierPass: @ 82665F7
2017-11-10 02:21:31 +01:00
.string "For a first-time visitor, we issue\n"
.string "the FRONTIER PASS.\p"
2018-12-07 16:41:08 +01:00
.string "It's for use at all the facilities\n"
2017-11-10 02:21:31 +01:00
.string "in the BATTLE FRONTIER.\p"
.string "Here you are!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_ObtainedFrontierPass: @ 8266676
2017-11-10 02:21:31 +01:00
.string "{PLAYER} obtained\n"
.string "the FRONTIER PASS.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_PlacedTrainerCardInFrontierPass: @ 8266695
2017-11-10 02:21:31 +01:00
.string "{PLAYER} placed the TRAINER CARD\n"
.string "in the FRONTIER PASS.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_EnjoyBattleFrontier: @ 82666C6
2017-11-10 02:21:31 +01:00
.string "We hope you enjoy all that the BATTLE\n"
.string "FRONTIER has to offer!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_IfItIsntPlayerYouCame: @ 8266703
2018-12-07 16:41:08 +01:00
.string "???: Well, if it isn't {PLAYER}{KUN}!\n"
2017-11-10 02:21:31 +01:00
.string "You came out here!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_OhMrScottGoodDay: @ 8266733
2017-11-10 02:21:31 +01:00
.string "GUIDE: Oh! MR. SCOTT, sir!\n"
.string "Good day to you, sir!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_ScottGreatToSeeYouHere: @ 8266764
2018-12-07 16:41:08 +01:00
.string "SCOTT: It's great to see you here,\n"
2017-11-10 02:21:31 +01:00
.string "it really is!\p"
2018-12-07 16:41:08 +01:00
.string "I hope you'll take your time and\n"
2017-11-10 02:21:31 +01:00
.string "explore everywhere.\p"
2018-12-07 16:41:08 +01:00
.string "Naturally, I hope you'll also experience\n"
2017-11-10 02:21:31 +01:00
.string "the pure essence of battling.\p"
.string "I also have my quarters here, so feel\n"
.string "free to visit if you have time.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_YourGuideToFacilities: @ 8266857
2018-12-07 16:41:08 +01:00
.string "I'm your guide to the various facilities\n"
2017-11-10 02:21:31 +01:00
.string "here in the BATTLE FRONTIER.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_LearnAboutWhich2: @ 826689D
2017-11-10 02:21:31 +01:00
.string "Which would you like to learn about?$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattleTowerInfo: @ 82668C2
2017-11-10 02:21:31 +01:00
.string "It is the gigantic tower considered\n"
2018-12-07 16:41:08 +01:00
.string "to be the BATTLE FRONTIER's symbol.\p"
2017-11-10 02:21:31 +01:00
.string "There are four kinds of BATTLE ROOMS\n"
.string "in the tower for SINGLE, DOUBLE, MULTI,\l"
.string "and LINK MULTI BATTLES.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattleDomeInfo: @ 826696F
2017-11-10 02:21:31 +01:00
.string "The BATTLE DOME is the large building\n"
.string "shaped like a huge egg.\p"
.string "Events named Battle Tourneys are held\n"
.string "in this facility.\p"
.string "The Battle Tourneys are offered in\n"
.string "two courses--for SINGLE and DOUBLE\l"
.string "BATTLES.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattlePalaceInfo: @ 8266A34
2017-11-10 02:21:31 +01:00
.string "The BATTLE PALACE is the red building\n"
.string "on the right of the BATTLE FRONTIER.\p"
.string "There are two kinds of BATTLE HALLS\n"
.string "for SINGLE and DOUBLE BATTLES.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattleArenaInfo: @ 8266AC2
2017-11-10 02:21:31 +01:00
.string "The BATTLE ARENA is the dojo-like\n"
.string "building at the center-right of\l"
.string "the BATTLE FRONTIER.\p"
.string "An event called the Set KO Tourney\n"
.string "takes place at the BATTLE ARENA.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattleFactoryInfo: @ 8266B5D
2017-11-10 02:21:31 +01:00
.string "The BATTLE FACTORY is the large\n"
.string "building that is the closest to us.\p"
.string "An event called the Battle Swap\n"
.string "is conducted there.\p"
.string "The Battle Swap event is offered in\n"
.string "two courses for SINGLE and DOUBLE\l"
.string "BATTLES.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattlePikeInfo: @ 8266C24
2017-11-10 02:21:31 +01:00
.string "The BATTLE PIKE is the building shaped\n"
.string "like a POKéMON at the center-left of\l"
.string "the BATTLE FRONTIER.\p"
.string "An event called the Battle Choice\n"
.string "is conducted there.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattlePyramidInfo: @ 8266CBB
2017-11-10 02:21:31 +01:00
.string "The BATTLE PYRAMID is the enormous\n"
.string "pyramid.\p"
.string "An event called the Battle Quest\n"
.string "is conducted there.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_RankingHallInfo: @ 8266D1C
2017-11-10 02:21:31 +01:00
.string "The RANKING HALL is located near\n"
.string "the BATTLE TOWER.\p"
.string "There, you may see the most fantastic\n"
.string "records left by the TRAINERS that\l"
.string "took on the many challenges of\l"
.string "the BATTLE FRONTIER.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_ExchangeCornerInfo: @ 8266DCB
2017-11-10 02:21:31 +01:00
.string "The EXCHANGE SERVICE CORNER is near\n"
.string "the BATTLE TOWER.\p"
.string "The Battle Points you have earned in\n"
.string "the BATTLE FRONTIER may be exchanged\l"
.string "for fabulous prizes there.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_YourGuideToRules: @ 8266E66
2018-12-07 16:41:08 +01:00
.string "I'm your guide to the basic rules that\n"
2017-11-10 02:21:31 +01:00
.string "are common to all the challenges\l"
.string "offered by the facilities in the BATTLE\l"
.string "FRONTIER.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_LearnAboutWhat: @ 8266EE0
2017-11-10 02:21:31 +01:00
.string "What would you like to learn about?$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_LevelModeInfo: @ 8266F04
2017-11-10 02:21:31 +01:00
.string "All the challenges at the BATTLE\n"
2018-12-07 16:41:08 +01:00
.string "FRONTIER's facilities come in\l"
2017-11-10 02:21:31 +01:00
.string "two courses--Level 50 and Open Level.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_Level50Info: @ 8266F69
2017-11-10 02:21:31 +01:00
.string "The Level 50 course is open to POKéMON\n"
.string "up to and including Level 50.\p"
.string "Please keep in mind, however, that\n"
.string "no TRAINER you face will have any\l"
.string "POKéMON below Level 50.\p"
.string "This course is the entry level for\n"
.string "battles at the BATTLE FRONTIER.\p"
.string "To begin, we hope you will challenge\n"
.string "this course.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_OpenLevelInfo: @ 8267080
2017-11-10 02:21:31 +01:00
.string "The Open Level course places no limit\n"
.string "on the levels of POKéMON entering\l"
.string "challenges.\p"
.string "The levels of your opponents will\n"
.string "be adjusted to match the levels of\l"
.string "your POKéMON.\p"
.string "However, no TRAINER you face will\n"
.string "have any POKéMON below Level 60.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_MonEntryInfo: @ 826716A
2017-11-10 02:21:31 +01:00
.string "Virtually any kind of POKéMON may take\n"
.string "on the challenges at all facilities.\p"
.string "EGGS and certain kinds of POKéMON,\n"
.string "however, are not permitted.\p"
.string "The numbers of POKéMON required for\n"
.string "challenges will depend on the facility.\p"
.string "At all facilities, however, two or more\n"
.string "of the same kind of POKéMON are not\l"
.string "permitted.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_HoldItemsInfo: @ 8267298
2017-11-10 02:21:31 +01:00
.string "When entering a challenge at a BATTLE\n"
.string "FRONTIER facility, POKéMON may not\l"
.string "be holding the same kind of item.\p"
.string "Please make sure that all POKéMON\n"
.string "entering a challenge are holding\l"
.string "different items.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_YourGuideToFrontierPass: @ 8267357
2018-12-07 16:41:08 +01:00
.string "I'm your guide to the FRONTIER PASS.$"
2017-11-10 02:21:31 +01:00
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_LearnAboutWhich1: @ 826737C
2017-11-10 02:21:31 +01:00
.string "Which would you like to learn about?$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_SymbolsInfo: @ 82673A1
2017-11-10 02:21:31 +01:00
.string "There are seven facilities at\n"
.string "the BATTLE FRONTIER.\p"
.string "TRAINERS who gain recognition for\n"
.string "their abilities may be rewarded with\l"
.string "symbols from each of the facilities.\p"
.string "To earn a symbol, TRAINERS may need\n"
.string "to defeat other TRAINERS in a row,\l"
.string "and may need to win events repeatedly.\p"
2018-12-07 16:41:08 +01:00
.string "It's certainly not easy to win symbols.\n"
2017-11-10 02:21:31 +01:00
.string "I wish you the best of luck!$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_RecordedBattleInfo: @ 82674F3
2017-11-10 02:21:31 +01:00
.string "It is possible to record one battle\n"
.string "on your FRONTIER PASS.\p"
.string "You may record a battle you had with\n"
.string "a friend or friends.\p"
.string "Or you may record a battle conducted\n"
.string "at the BATTLE FRONTIER excluding\l"
.string "matches at the BATTLE PIKE or\l"
.string "the BATTLE PYRAMID.\p"
.string "You may choose to record your match\n"
.string "at the end of a battle.$"
2019-11-13 02:53:59 +01:00
BattleFrontier_ReceptionGate_Text_BattlePointsInfo: @ 826761C
2017-11-10 02:21:31 +01:00
.string "Battle Points are rewards given to\n"
.string "TRAINERS who battled outstandingly\l"
.string "at the BATTLE FRONTIER.\p"
.string "You may trade in your Battle Points\n"
.string "for prizes at the EXCHANGE SERVICE\l"
.string "CORNER.$"