pokeemerald/data/maps/BattleFrontier_BattlePalaceCorridor/scripts.inc

158 lines
5.5 KiB
PHP
Raw Normal View History

.set LOCALID_ATTENDANT, 1
2017-11-10 02:21:31 +01:00
BattleFrontier_BattlePalaceCorridor_MapScripts:: @ 824F4A3
2019-12-07 03:25:46 +01:00
map_script MAP_SCRIPT_ON_FRAME_TABLE, BattleFrontier_BattlePalaceCorridor_OnFrame
2017-11-10 02:21:31 +01:00
.byte 0
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_OnFrame: @ 824F4A9
map_script_2 VAR_TEMP_0, 0, BattleFrontier_BattlePalaceCorridor_EventScript_WalkThroughCorridor
2017-11-10 02:21:31 +01:00
.2byte 0
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_WalkThroughCorridor:: @ 824F4B3
2017-11-10 02:21:31 +01:00
delay 16
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceCorridor_Movement_EnterCorridor
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePalaceCorridor_Movement_EnterCorridor
2017-11-10 02:21:31 +01:00
waitmovement 0
lockall
palace_getcomment
compare VAR_RESULT, 0
2019-12-07 03:25:46 +01:00
call_if_eq BattleFrontier_BattlePalaceCorridor_EventScript_RandomComment1
compare VAR_RESULT, 1
2019-12-07 03:25:46 +01:00
call_if_eq BattleFrontier_BattlePalaceCorridor_EventScript_RandomComment2
compare VAR_RESULT, 2
2019-12-07 03:25:46 +01:00
call_if_eq BattleFrontier_BattlePalaceCorridor_EventScript_RandomComment3
compare VAR_RESULT, 3
2019-12-07 03:25:46 +01:00
call_if_eq BattleFrontier_BattlePalaceCorridor_EventScript_StreakComment
compare VAR_RESULT, 4
2019-12-07 03:25:46 +01:00
call_if_eq BattleFrontier_BattlePalaceCorridor_EventScript_LongStreakComment
2017-11-10 02:21:31 +01:00
closemessage
2019-11-24 22:58:40 +01:00
frontier_get FRONTIER_DATA_LVL_MODE
compare VAR_RESULT, FRONTIER_LVL_OPEN
2019-12-07 03:25:46 +01:00
goto_if_eq BattleFrontier_BattlePalaceCorridor_EventScript_WalkToOpenBattleRoom
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceCorridor_Movement_AttendantWalkTo50BattleRoom
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePalaceCorridor_Movement_PlayerWalkTo50BattleRoom
2017-11-10 02:21:31 +01:00
waitmovement 0
opendoor 6, 3
waitdooranim
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceCorridor_Movement_AttendantEnterBattleRoom
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePalaceCorridor_Movement_PlayerEnterBattleRoom
2017-11-10 02:21:31 +01:00
waitmovement 0
closedoor 6, 3
waitdooranim
2019-12-07 03:25:46 +01:00
goto BattleFrontier_BattlePalaceCorridor_EventScript_WarpToBattleRoom
2017-11-10 02:21:31 +01:00
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_WalkToOpenBattleRoom:: @ 824F553
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceCorridor_Movement_AttendantWalkToOpenBattleRoom
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePalaceCorridor_Movement_PlayerWalkToOpenBattleRoom
2017-11-10 02:21:31 +01:00
waitmovement 0
opendoor 10, 3
waitdooranim
applymovement LOCALID_ATTENDANT, BattleFrontier_BattlePalaceCorridor_Movement_AttendantEnterBattleRoom
applymovement OBJ_EVENT_ID_PLAYER, BattleFrontier_BattlePalaceCorridor_Movement_PlayerEnterBattleRoom
2017-11-10 02:21:31 +01:00
waitmovement 0
closedoor 10, 3
waitdooranim
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_WarpToBattleRoom:: @ 824F581
warp MAP_BATTLE_FRONTIER_BATTLE_PALACE_BATTLE_ROOM, 255, 7, 4
2017-11-10 02:21:31 +01:00
waitstate
end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_RandomComment1:: @ 824F58B
msgbox BattleFrontier_BattlePalaceCorridor_Text_PeopleAndMonAreSame, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_RandomComment2:: @ 824F594
msgbox BattleFrontier_BattlePalaceCorridor_Text_LetMonDoWhatItLikes, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_RandomComment3:: @ 824F59D
msgbox BattleFrontier_BattlePalaceCorridor_Text_MonDifferentWhenCornered, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_StreakComment:: @ 824F5A6
msgbox BattleFrontier_BattlePalaceCorridor_Text_BeginningToUnderstandNature, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_EventScript_LongStreakComment:: @ 824F5AF
msgbox BattleFrontier_BattlePalaceCorridor_Text_HeartfeltBondBetweenYouAndMons, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
return
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_EnterCorridor: @ 824F5B8
walk_up
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_AttendantWalkTo50BattleRoom: @ 824F5BD
walk_up
walk_up
walk_left
walk_left
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_PlayerWalkTo50BattleRoom: @ 824F5C4
walk_up
walk_up
walk_up
walk_left
walk_left
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_AttendantWalkToOpenBattleRoom: @ 824F5CB
walk_up
walk_right
walk_right
walk_up
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_PlayerWalkToOpenBattleRoom: @ 824F5D2
walk_up
walk_up
walk_right
walk_right
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_PlayerEnterBattleRoom: @ 824F5D9
walk_up
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Movement_AttendantEnterBattleRoom: @ 824F5DA
walk_up
set_invisible
2017-11-10 02:21:31 +01:00
step_end
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Text_PeopleAndMonAreSame: @ 824F5DD
2017-11-10 02:21:31 +01:00
.string "People and POKéMON, they are but\n"
.string "the same…\p"
.string "Their individual nature makes them\n"
.string "good at certain things, and not good\l"
.string "at others.$"
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Text_LetMonDoWhatItLikes: @ 824F65B
2017-11-10 02:21:31 +01:00
.string "Rather than trying to make a POKéMON\n"
.string "do what it dislikes, try to let it do\l"
.string "what it likes and is good at doing.\p"
2018-12-07 16:41:08 +01:00
.string "Put yourself in the POKéMON's position\n"
2017-11-10 02:21:31 +01:00
.string "and consider what moves it would like.$"
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Text_MonDifferentWhenCornered: @ 824F718
2018-12-07 16:41:08 +01:00
.string "A POKéMON's nature is a remarkable\n"
2017-11-10 02:21:31 +01:00
.string "thing…\p"
.string "Some POKéMON behave in a completely\n"
.string "different way when they are cornered.$"
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Text_BeginningToUnderstandNature: @ 824F78C
2017-11-10 02:21:31 +01:00
.string "Are you beginning to understand how\n"
2018-12-07 16:41:08 +01:00
.string "a POKéMON's nature makes it behave?$"
2017-11-10 02:21:31 +01:00
2019-12-07 03:25:46 +01:00
BattleFrontier_BattlePalaceCorridor_Text_HeartfeltBondBetweenYouAndMons: @ 824F7D4
2017-11-10 02:21:31 +01:00
.string "Ah… I see a strong, heartfelt bond\n"
.string "between you and your POKéMON…$"