pokeemerald/data/maps/VictoryRoad_1F/scripts.inc

224 lines
7.4 KiB
PHP
Raw Normal View History

.set LOCALID_WALLY_ENTRANCE, 4
2017-11-10 02:21:31 +01:00
VictoryRoad_1F_MapScripts:: @ 8235D7A
map_script MAP_SCRIPT_ON_TRANSITION, VictoryRoad_1F_OnTransition
2017-11-10 02:21:31 +01:00
.byte 0
VictoryRoad_1F_OnTransition: @ 8235D80
2019-02-22 10:18:43 +01:00
compare VAR_VICTORY_ROAD_1F_STATE, 1
2019-11-07 02:38:53 +01:00
call_if_eq VictoryRoad_1F_EventScript_SetEntranceWallyPos1
2019-02-22 10:18:43 +01:00
compare VAR_VICTORY_ROAD_1F_STATE, 2
2019-11-07 02:38:53 +01:00
call_if_eq VictoryRoad_1F_EventScript_SetEntranceWallyPos2
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_SetEntranceWallyPos1:: @ 8235D97
setobjectxyperm LOCALID_WALLY_ENTRANCE, 2, 24
setobjectmovementtype LOCALID_WALLY_ENTRANCE, MOVEMENT_TYPE_FACE_DOWN
2017-11-10 02:21:31 +01:00
return
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_SetEntranceWallyPos2:: @ 8235DA3
setobjectxyperm LOCALID_WALLY_ENTRANCE, 3, 24
setobjectmovementtype LOCALID_WALLY_ENTRANCE, MOVEMENT_TYPE_FACE_DOWN
2017-11-10 02:21:31 +01:00
return
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_WallyBattleTrigger1:: @ 8235DAF
2017-11-10 02:21:31 +01:00
lockall
setvar VAR_0x8008, 1
addobject LOCALID_WALLY_ENTRANCE
applymovement LOCALID_WALLY_ENTRANCE, VictoryRoad_1F_Movement_WallyApproachPlayer1
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-07 02:38:53 +01:00
goto VictoryRoad_1F_EventScript_WallyEntranceBattle
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_WallyBattleTrigger2:: @ 8235DC8
2017-11-10 02:21:31 +01:00
lockall
setvar VAR_0x8008, 2
addobject LOCALID_WALLY_ENTRANCE
applymovement LOCALID_WALLY_ENTRANCE, VictoryRoad_1F_Movement_WallyApproachPlayer2
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-07 02:38:53 +01:00
goto VictoryRoad_1F_EventScript_WallyEntranceBattle
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_WallyEntranceBattle:: @ 8235DE1
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFastestDown
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-07 02:38:53 +01:00
msgbox VictoryRoad_1F_Text_WallyNotGoingToLoseAnymore, MSGBOX_DEFAULT
2019-12-26 04:39:06 +01:00
trainerbattle_no_intro TRAINER_WALLY_VR_1, VictoryRoad_1F_Text_WallyEntranceDefeat
2019-11-07 02:38:53 +01:00
msgbox VictoryRoad_1F_Text_WallyPostEntranceBattle, MSGBOX_DEFAULT
2018-10-19 03:32:21 +02:00
clearflag FLAG_HIDE_VICTORY_ROAD_ENTRANCE_WALLY
copyobjectxytoperm LOCALID_WALLY_ENTRANCE
2019-01-02 22:12:43 +01:00
setflag FLAG_DEFEATED_WALLY_VICTORY_ROAD
2019-02-22 10:18:43 +01:00
copyvar VAR_VICTORY_ROAD_1F_STATE, VAR_0x8008
2017-11-10 02:21:31 +01:00
releaseall
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Movement_WallyApproachPlayer1: @ 8235E15
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Movement_WallyApproachPlayer2: @ 8235E21
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_left
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-07 02:38:53 +01:00
@ This Wally appears near the entrance once his battle is triggered and remains there until the Hall of Fame is entered
VictoryRoad_1F_EventScript_EntranceWally:: @ 8235E2C
msgbox VictoryRoad_1F_Text_WallyPostEntranceBattle, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
@ This Wally appears and remains at the exit after the Hall of Fame is entered
VictoryRoad_1F_EventScript_ExitWally:: @ 8235E35
2019-12-26 04:39:06 +01:00
trainerbattle_single TRAINER_WALLY_VR_2, VictoryRoad_1F_Text_WallyIntro, VictoryRoad_1F_Text_WallyDefeat
2017-12-01 21:25:13 +01:00
specialvar VAR_RESULT, ShouldTryRematchBattle
2019-11-07 02:38:53 +01:00
compare VAR_RESULT, TRUE
goto_if_eq VictoryRoad_1F_EventScript_RematchWally
msgbox VictoryRoad_1F_Text_WallyPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_RematchWally:: @ 8235E5C
2019-12-26 04:39:06 +01:00
trainerbattle_rematch TRAINER_WALLY_VR_2, VictoryRoad_1F_Text_WallyIntro, VictoryRoad_1F_Text_WallyDefeat
2019-11-07 02:38:53 +01:00
msgbox VictoryRoad_1F_Text_WallyPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_Edgar:: @ 8235E73
trainerbattle_single TRAINER_EDGAR, VictoryRoad_1F_Text_EdgarIntro, VictoryRoad_1F_Text_EdgarDefeat
msgbox VictoryRoad_1F_Text_EdgarPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_Albert:: @ 8235E8A
trainerbattle_single TRAINER_ALBERT, VictoryRoad_1F_Text_AlbertIntro, VictoryRoad_1F_Text_AlbertDefeat
msgbox VictoryRoad_1F_Text_AlbertPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_Hope:: @ 8235EA1
trainerbattle_single TRAINER_HOPE, VictoryRoad_1F_Text_HopeIntro, VictoryRoad_1F_Text_HopeDefeat
msgbox VictoryRoad_1F_Text_HopePostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_Quincy:: @ 8235EB8
trainerbattle_single TRAINER_QUINCY, VictoryRoad_1F_Text_QuincyIntro, VictoryRoad_1F_Text_QuincyDefeat
msgbox VictoryRoad_1F_Text_QuincyPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_EventScript_Katelynn:: @ 8235ECF
trainerbattle_single TRAINER_KATELYNN, VictoryRoad_1F_Text_KatelynnIntro, VictoryRoad_1F_Text_KatelynnDefeat
msgbox VictoryRoad_1F_Text_KatelynnPostBattle, MSGBOX_AUTOCLOSE
2017-11-10 02:21:31 +01:00
end
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_WallyNotGoingToLoseAnymore: @ 8235EE6
2017-11-10 02:21:31 +01:00
.string "WALLY: Hi! {PLAYER}!\p"
2018-12-07 16:41:08 +01:00
.string "I bet you're surprised to see me here!\p"
.string "I made it all the way here, and it's\n"
2017-11-10 02:21:31 +01:00
.string "all thanks to you!\p"
.string "{PLAYER}, losing to you that time\n"
.string "made me stronger!\p"
2018-12-07 16:41:08 +01:00
.string "But I'm not going to lose anymore!\p"
.string "I'm going to win! For the POKéMON who\n"
2017-11-10 02:21:31 +01:00
.string "gave me courage and strength!\p"
.string "Okay… Here I come!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_WallyEntranceDefeat: @ 8235FFC
2017-11-10 02:21:31 +01:00
.string "Wow!\n"
.string "{PLAYER}, you are strong, after all!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_WallyPostEntranceBattle: @ 8236020
2018-12-07 16:41:08 +01:00
.string "WALLY: I couldn't beat you today,\n"
.string "{PLAYER}, but one of these days, I'll\l"
2017-11-10 02:21:31 +01:00
.string "catch up to you!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_WallyIntro: @ 8236073
2017-11-10 02:21:31 +01:00
.string "WALLY: Hi! {PLAYER}!\p"
2018-12-07 16:41:08 +01:00
.string "I've gotten stronger since that last\n"
2017-11-10 02:21:31 +01:00
.string "time! I wanted to show you, {PLAYER}!\p"
.string "Okay… Here I come!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_WallyDefeat: @ 82360DA
2017-11-10 02:21:31 +01:00
.string "Wow!\n"
.string "{PLAYER}, you are strong, after all!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_WallyPostBattle: @ 82360FE
2018-12-07 16:41:08 +01:00
.string "WALLY: I couldn't beat you this time,\n"
2017-11-10 02:21:31 +01:00
.string "too… But one of these days, {PLAYER},\l"
2018-12-07 16:41:08 +01:00
.string "I'm going to catch up to you…\p"
2017-11-10 02:21:31 +01:00
.string "And challenge the POKéMON LEAGUE!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_EdgarIntro: @ 8236184
2018-12-07 16:41:08 +01:00
.string "I've made it this far a couple times,\n"
2017-11-10 02:21:31 +01:00
.string "but the last stretch is so long…$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_EdgarDefeat: @ 82361CB
2017-11-10 02:21:31 +01:00
.string "My dream ends here again…$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_EdgarPostBattle: @ 82361E5
2018-12-07 16:41:08 +01:00
.string "You've made it this far. Keep the\n"
2017-11-10 02:21:31 +01:00
.string "momentum going and become the\l"
2018-12-07 16:41:08 +01:00
.string "CHAMPION! If anyone can, it's you!$"
2017-11-10 02:21:31 +01:00
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_AlbertIntro: @ 8236248
2018-12-07 16:41:08 +01:00
.string "I didn't come all this way to lose now.\n"
.string "That possibility doesn't exist!$"
2017-11-10 02:21:31 +01:00
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_AlbertDefeat: @ 8236290
2017-11-10 02:21:31 +01:00
.string "Impossible…\n"
.string "I lost?$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_AlbertPostBattle: @ 82362A4
2017-11-10 02:21:31 +01:00
.string "I lost here…\p"
.string "That means I lack the qualifications\n"
.string "to become the CHAMPION…$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_HopeIntro: @ 82362EE
2017-11-10 02:21:31 +01:00
.string "This seemingly infinite and harsh road\n"
.string "lives up to its name of VICTORY.$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_HopeDefeat: @ 8236336
2017-11-10 02:21:31 +01:00
.string "Your battle style is fantastic…$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_HopePostBattle: @ 8236356
2017-11-10 02:21:31 +01:00
.string "You seem to have the potential for\n"
.string "becoming the CHAMPION.$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_QuincyIntro: @ 8236390
2017-11-10 02:21:31 +01:00
.string "What is the VICTORY ROAD?\n"
2018-12-07 16:41:08 +01:00
.string "I'll tell you if you win!$"
2017-11-10 02:21:31 +01:00
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_QuincyDefeat: @ 82363C4
2017-11-10 02:21:31 +01:00
.string "Okay!\n"
.string "Well done!$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_QuincyPostBattle: @ 82363D5
2018-12-07 16:41:08 +01:00
.string "Getting through here safely--that's\n"
2017-11-10 02:21:31 +01:00
.string "the final test for any TRAINER aiming\l"
.string "to become the POKéMON CHAMPION.\p"
2018-12-07 16:41:08 +01:00
.string "That's why it's called the VICTORY\n"
2017-11-10 02:21:31 +01:00
.string "ROAD.$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_KatelynnIntro: @ 8236468
2017-11-10 02:21:31 +01:00
.string "I have nothing to say to anyone\n"
2018-12-07 16:41:08 +01:00
.string "that's come this far. Come on!$"
2017-11-10 02:21:31 +01:00
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_KatelynnDefeat: @ 82364A7
2017-11-10 02:21:31 +01:00
.string "This is a disgrace…$"
2019-11-07 02:38:53 +01:00
VictoryRoad_1F_Text_KatelynnPostBattle: @ 82364BB
2017-11-10 02:21:31 +01:00
.string "Humph, go right on ahead.\n"
.string "See if I care.$"