pokeemerald/data/maps/SeafloorCavern_Entrance/scripts.inc

96 lines
3.3 KiB
PHP
Raw Normal View History

.set LOCALID_GRUNT, 1
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_MapScripts::
2019-12-04 19:10:39 +01:00
map_script MAP_SCRIPT_ON_RESUME, SeafloorCavern_Entrance_OnResume
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_OnResume:
setdivewarp MAP_UNDERWATER_SEAFLOOR_CAVERN, 255, 6, 5
setescapewarp MAP_UNDERWATER_SEAFLOOR_CAVERN, 255, 6, 5
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_EventScript_Grunt::
2017-11-10 02:21:31 +01:00
lockall
2019-02-28 05:54:51 +01:00
compare VAR_HAS_TALKED_TO_SEAFLOOR_CAVERN_ENTRANCE_GRUNT, 1
2019-12-04 19:10:39 +01:00
goto_if_eq SeafloorCavern_Entrance_EventScript_GruntSpeechShort
2017-11-10 02:21:31 +01:00
waitse
playse SE_PIN
applymovement LOCALID_GRUNT, Common_Movement_ExclamationMark
2017-11-10 02:21:31 +01:00
waitmovement 0
applymovement LOCALID_GRUNT, Common_Movement_Delay48
2017-11-10 02:21:31 +01:00
waitmovement 0
delay 20
2019-10-07 06:14:10 +02:00
compare VAR_FACING, DIR_WEST
2019-12-04 19:10:39 +01:00
call_if_eq SeafloorCavern_Entrance_EventScript_GruntFacePlayerWest
2019-10-07 06:14:10 +02:00
compare VAR_FACING, DIR_EAST
2019-12-04 19:10:39 +01:00
call_if_eq SeafloorCavern_Entrance_EventScript_GruntFacePlayerEast
2019-10-07 06:14:10 +02:00
compare VAR_FACING, DIR_NORTH
2019-12-04 19:10:39 +01:00
call_if_eq SeafloorCavern_Entrance_EventScript_GruntFacePlayerNorth
2017-11-10 02:21:31 +01:00
delay 30
2019-02-28 05:54:51 +01:00
setvar VAR_HAS_TALKED_TO_SEAFLOOR_CAVERN_ENTRANCE_GRUNT, 1
copyobjectxytoperm LOCALID_GRUNT
2019-12-04 19:10:39 +01:00
msgbox SeafloorCavern_Entrance_Text_HearMagmaNearMossdeep, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_GRUNT, Common_Movement_WalkInPlaceFastestUp
2017-11-10 02:21:31 +01:00
waitmovement 0
releaseall
end
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_EventScript_GruntSpeechShort::
2019-10-07 06:14:10 +02:00
compare VAR_FACING, DIR_WEST
2019-12-04 19:10:39 +01:00
call_if_eq SeafloorCavern_Entrance_EventScript_GruntFacePlayerWest
2019-10-07 06:14:10 +02:00
compare VAR_FACING, DIR_EAST
2019-12-04 19:10:39 +01:00
call_if_eq SeafloorCavern_Entrance_EventScript_GruntFacePlayerEast
2019-10-07 06:14:10 +02:00
compare VAR_FACING, DIR_NORTH
2019-12-04 19:10:39 +01:00
call_if_eq SeafloorCavern_Entrance_EventScript_GruntFacePlayerNorth
msgbox SeafloorCavern_Entrance_Text_HearMagmaNearMossdeepShort, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement LOCALID_GRUNT, Common_Movement_WalkInPlaceFastestUp
2017-11-10 02:21:31 +01:00
waitmovement 0
releaseall
end
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_EventScript_GruntFacePlayerEast::
applymovement LOCALID_GRUNT, Common_Movement_WalkInPlaceFastestLeft
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_EventScript_GruntFacePlayerWest::
applymovement LOCALID_GRUNT, Common_Movement_WalkInPlaceFastestRight
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_EventScript_GruntFacePlayerNorth::
applymovement LOCALID_GRUNT, Common_Movement_WalkInPlaceFastestDown
2017-11-10 02:21:31 +01:00
waitmovement 0
return
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_Text_HearMagmaNearMossdeep:
2017-11-10 02:21:31 +01:00
.string "Hey!\n"
.string "I remember your face!\p"
2018-12-07 16:41:08 +01:00
.string "If you're here, it must mean that\n"
.string "you're about to mess with us again!\p"
2017-11-10 02:21:31 +01:00
.string "A punk like you, do you really think\n"
.string "you can take on TEAM AQUA?\p"
2018-12-07 16:41:08 +01:00
.string "I'd say you're too early by about\n"
2017-11-10 02:21:31 +01:00
.string "a trillion years!\p"
2018-12-07 16:41:08 +01:00
.string "You're a perfect fit for the likes of\n"
2017-11-10 02:21:31 +01:00
.string "TEAM MAGMA!\p"
.string "Speaking of TEAM MAGMA, I hear they\n"
.string "were spotted near MOSSDEEP.\p"
2018-12-07 16:41:08 +01:00
.string "That bunch of goons, they sure don't\n"
2017-11-10 02:21:31 +01:00
.string "look good near the sea!$"
2021-07-20 21:18:31 +02:00
SeafloorCavern_Entrance_Text_HearMagmaNearMossdeepShort:
2017-11-10 02:21:31 +01:00
.string "A punk like you, do you really think\n"
.string "you can take on TEAM AQUA?\p"
2018-12-07 16:41:08 +01:00
.string "I'd say you're too early by about\n"
2017-11-10 02:21:31 +01:00
.string "a trillion years!\p"
2018-12-07 16:41:08 +01:00
.string "You're a perfect fit for the likes of\n"
2017-11-10 02:21:31 +01:00
.string "TEAM MAGMA!\p"
.string "Speaking of TEAM MAGMA, I hear they\n"
.string "were spotted near MOSSDEEP.\p"
2018-12-07 16:41:08 +01:00
.string "That bunch of goons, they sure don't\n"
2017-11-10 02:21:31 +01:00
.string "look good near the sea!$"