mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-06-01 07:45:32 -05:00
71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
SilphCo_3F_Frlg_MapScripts::
|
|
map_script MAP_SCRIPT_ON_LOAD, SilphCo_3F_OnLoad
|
|
.byte 0
|
|
|
|
SilphCo_3F_OnLoad::
|
|
call_if_unset FLAG_SILPH_3F_DOOR_1, EventScript_Close3FDoor1
|
|
call_if_unset FLAG_SILPH_3F_DOOR_2, EventScript_Close3FDoor2
|
|
end
|
|
|
|
SilphCo_3F_EventScript_WorkerM::
|
|
lock
|
|
faceplayer
|
|
goto_if_ge VAR_MAP_SCENE_SILPH_CO_11F, 1, SilphCo_3F_EventScript_WorkerMRocketsGone
|
|
msgbox SilphCo_3F_Text_WhatAmIToDo
|
|
release
|
|
end
|
|
|
|
SilphCo_3F_EventScript_WorkerMRocketsGone::
|
|
msgbox SilphCo_3F_Text_YouAndYourMonsSavedUs
|
|
release
|
|
end
|
|
|
|
SilphCo_3F_EventScript_FloorSign::
|
|
msgbox SilphCo_3F_Text_FloorSign, MSGBOX_SIGN
|
|
end
|
|
|
|
SilphCo_3F_EventScript_Jose::
|
|
trainerbattle_single TRAINER_SCIENTIST_JOSE, SilphCo_3F_Text_JoseIntro, SilphCo_3F_Text_JoseDefeat
|
|
msgbox SilphCo_3F_Text_JosePostBattle, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
SilphCo_3F_EventScript_Grunt::
|
|
trainerbattle_single TRAINER_TEAM_ROCKET_GRUNT_25, SilphCo_3F_Text_GruntIntro, SilphCo_3F_Text_GruntDefeat
|
|
msgbox SilphCo_3F_Text_GruntPostBattle, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
SilphCo_3F_Text_WhatAmIToDo::
|
|
.string "I work for SILPH CO.\n"
|
|
.string "What am I to do?$"
|
|
|
|
SilphCo_3F_Text_YouAndYourMonsSavedUs::
|
|
.string "{PLAYER}!\n"
|
|
.string "You and your POKéMON saved us!$"
|
|
|
|
SilphCo_3F_Text_GruntIntro::
|
|
.string "Quit messing with us, kid!$"
|
|
|
|
SilphCo_3F_Text_GruntDefeat::
|
|
.string "I give up!$"
|
|
|
|
SilphCo_3F_Text_GruntPostBattle::
|
|
.string "A hint? You can open doors with\n"
|
|
.string "a CARD KEY!$"
|
|
|
|
SilphCo_3F_Text_JoseIntro::
|
|
.string "I support TEAM ROCKET more than\n"
|
|
.string "I support SILPH CO.!$"
|
|
|
|
SilphCo_3F_Text_JoseDefeat::
|
|
.string "You really got me!$"
|
|
|
|
SilphCo_3F_Text_JosePostBattle::
|
|
.string "Humph…\p"
|
|
.string "TEAM ROCKET said that if I helped\n"
|
|
.string "them, they'd let me study POKéMON.$"
|
|
|
|
SilphCo_3F_Text_FloorSign::
|
|
.string "SILPH CO. HEAD OFFICE\n"
|
|
.string "3F$"
|
|
|