mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-10 22:18:41 -05:00
180 lines
6.8 KiB
C++
180 lines
6.8 KiB
C++
.equ LOCALID_GRUNT1, 5
|
|
.equ LOCALID_GRUNT2, 1
|
|
.equ LOCALID_GRUNT3, 2
|
|
.equ LOCALID_ADMIN1, 3
|
|
.equ LOCALID_ADMIN2, 4
|
|
|
|
.equ PLAYER_X_POS, VAR_0x8004
|
|
.equ PLAYER_Y_POS, VAR_0x8005
|
|
|
|
FiveIsland_RocketWarehouse_MapScripts::
|
|
map_script MAP_SCRIPT_ON_LOAD, FiveIsland_RocketWarehouse_OnLoad
|
|
map_script MAP_SCRIPT_ON_TRANSITION, FiveIsland_RocketWarehouse_OnTransition
|
|
.byte 0
|
|
|
|
FiveIsland_RocketWarehouse_OnTransition::
|
|
setworldmapflag FLAG_WORLD_MAP_FIVE_ISLAND_ROCKET_WAREHOUSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_OnLoad::
|
|
call_if_defeated TRAINER_TEAM_ROCKET_ADMIN, FiveIsland_RocketWarehouse_EventScript_SetArrowsForReEntry
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_SetArrowsForReEntry::
|
|
setmetatile 26, 20, METATILE_SilphCo_Arrow_Up, 0
|
|
setmetatile 27, 20, METATILE_SilphCo_Arrow_Up, 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Cage::
|
|
lockall
|
|
goto_if_set FLAG_DEFEATED_ROCKETS_IN_WAREHOUSE, FiveIsland_RocketWarehouse_EventScript_CageUnlocked
|
|
msgbox FiveIsland_RocketWarehouse_Text_ManyMonsLockedInPen
|
|
releaseall
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_CageUnlocked::
|
|
msgbox FiveIsland_RocketWarehouse_Text_PenUnlockedMonsFled
|
|
releaseall
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Computer::
|
|
msgbox FiveIsland_RocketWarehouse_Text_ReportWithGraphsAndText, MSGBOX_SIGN
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Admin2Trigger::
|
|
lockall
|
|
applymovement LOCALID_ADMIN2, Common_Movement_WalkInPlaceFasterLeft
|
|
waitmovement 0
|
|
setvar VAR_MAP_SCENE_ROCKET_WAREHOUSE, 1
|
|
releaseall
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Gideon::
|
|
trainerbattle_single TRAINER_SCIENTIST_GIDEON, FiveIsland_RocketWarehouse_Text_GideonIntro, FiveIsland_RocketWarehouse_Text_GideonDefeat, FiveIsland_RocketWarehouse_EventScript_DefeatedGideon
|
|
goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, FiveIsland_RocketWarehouse_EventScript_MentionGiovannisKid
|
|
msgbox FiveIsland_RocketWarehouse_Text_GetLostLeaveMeBe, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_MentionGiovannisKid::
|
|
famechecker FAMECHECKER_GIOVANNI, 5
|
|
msgbox FiveIsland_RocketWarehouse_Text_GiovannisKidHasRedHair, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_DefeatedGideon::
|
|
msgbox FiveIsland_RocketWarehouse_Text_GideonPostBattle
|
|
setflag FLAG_RECOVERED_SAPPHIRE
|
|
giveitem ITEM_SAPPHIRE
|
|
release
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Grunt2::
|
|
trainerbattle_single TRAINER_TEAM_ROCKET_GRUNT_47, FiveIsland_RocketWarehouse_Text_Grunt2Intro, FiveIsland_RocketWarehouse_Text_Grunt2Defeat
|
|
msgbox FiveIsland_RocketWarehouse_Text_Grunt2PostBattle, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Grunt3::
|
|
trainerbattle_single TRAINER_TEAM_ROCKET_GRUNT_48, FiveIsland_RocketWarehouse_Text_Grunt3Intro, FiveIsland_RocketWarehouse_Text_Grunt3Defeat
|
|
msgbox FiveIsland_RocketWarehouse_Text_Grunt3PostBattle, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Admin2::
|
|
trainerbattle_single TRAINER_TEAM_ROCKET_ADMIN_2, FiveIsland_RocketWarehouse_Text_Admin2Intro, FiveIsland_RocketWarehouse_Text_Admin2Defeat, FiveIsland_RocketWarehouse_EventScript_DefeatedAdmin2
|
|
msgbox FiveIsland_RocketWarehouse_Text_Admin2PostBattle, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_DefeatedAdmin2::
|
|
getplayerxy PLAYER_X_POS, PLAYER_Y_POS
|
|
call_if_le PLAYER_X_POS, 24, FiveIsland_RocketWarehouse_EventScript_PlayerFaceAdmin2
|
|
msgbox FiveIsland_RocketWarehouse_Text_Admin2PostBattle
|
|
closemessage
|
|
fadescreen FADE_TO_BLACK
|
|
removeobject LOCALID_GRUNT2
|
|
removeobject LOCALID_GRUNT3
|
|
removeobject LOCALID_ADMIN2
|
|
removeobject LOCALID_ADMIN1
|
|
setflag FLAG_HIDE_FIVE_ISLAND_ROCKETS
|
|
fadescreen FADE_FROM_BLACK
|
|
setvar VAR_MAP_SCENE_ROCKET_WAREHOUSE, 1
|
|
setflag FLAG_DEFEATED_ROCKETS_IN_WAREHOUSE
|
|
release
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_PlayerFaceAdmin2::
|
|
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterRight
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Grunt1::
|
|
trainerbattle_single TRAINER_TEAM_ROCKET_GRUNT_42, FiveIsland_RocketWarehouse_Text_Grunt1Intro, FiveIsland_RocketWarehouse_Text_Grunt1Defeat
|
|
msgbox FiveIsland_RocketWarehouse_Text_Grunt1PostBattle, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_Admin1::
|
|
trainerbattle_single TRAINER_TEAM_ROCKET_ADMIN, FiveIsland_RocketWarehouse_Text_Admin1Intro, FiveIsland_RocketWarehouse_Text_Admin1Defeat, FiveIsland_RocketWarehouse_EventScript_DefeatedAdmin1
|
|
msgbox FiveIsland_RocketWarehouse_Text_MadeItSoYouCanComeBackThrough, MSGBOX_AUTOCLOSE
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_DefeatedAdmin1::
|
|
getplayerxy PLAYER_X_POS, PLAYER_Y_POS
|
|
specialvar VAR_RESULT, GetPlayerFacingDirection
|
|
call_if_eq VAR_RESULT, DIR_NORTH, FiveIsland_RocketWarehouse_EventScript_PlayerFaceAdmin1
|
|
msgbox FiveIsland_RocketWarehouse_Text_Admin1PostBattle
|
|
closemessage
|
|
call_if_le PLAYER_X_POS, 24, FiveIsland_RocketWarehouse_EventScript_AdminWalkToSwitchFar
|
|
call_if_eq PLAYER_X_POS, 25, FiveIsland_RocketWarehouse_EventScript_AdminWalkToSwitch
|
|
call_if_eq PLAYER_X_POS, 26, FiveIsland_RocketWarehouse_EventScript_AdminFaceSwitch
|
|
call_if_eq PLAYER_X_POS, 27, FiveIsland_RocketWarehouse_EventScript_AdminFaceSwitch
|
|
playse SE_PIN
|
|
call FiveIsland_RocketWarehouse_EventScript_SetArrowsForReEntry
|
|
special DrawWholeMapView
|
|
waitse
|
|
call_if_le PLAYER_X_POS, 24, FiveIsland_RocketWarehouse_EventScript_AdminFacePlayerLeft
|
|
call_if_eq PLAYER_X_POS, 25, FiveIsland_RocketWarehouse_EventScript_AdminFacePlayerLeft
|
|
call_if_eq PLAYER_X_POS, 26, FiveIsland_RocketWarehouse_EventScript_AdminFacePlayerLeft
|
|
call_if_eq PLAYER_X_POS, 27, FiveIsland_RocketWarehouse_EventScript_AdminFacePlayerDown
|
|
msgbox FiveIsland_RocketWarehouse_Text_MadeItSoYouCanComeBackThrough
|
|
release
|
|
end
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_PlayerFaceAdmin1::
|
|
goto_if_eq PLAYER_X_POS, 27, EventScript_Return
|
|
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterRight
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_AdminWalkToSwitchFar::
|
|
applymovement LOCALID_ADMIN1, FiveIsland_RocketWarehouse_Movement_AdminWalkToSwitchFar
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_AdminWalkToSwitch::
|
|
applymovement LOCALID_ADMIN1, FiveIsland_RocketWarehouse_Movement_AdminWalkToSwitch
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_AdminFaceSwitch::
|
|
applymovement LOCALID_ADMIN1, Common_Movement_WalkInPlaceFasterUp
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_AdminFacePlayerLeft::
|
|
applymovement LOCALID_ADMIN1, Common_Movement_WalkInPlaceFasterLeft
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_EventScript_AdminFacePlayerDown::
|
|
applymovement LOCALID_ADMIN1, Common_Movement_WalkInPlaceFasterDown
|
|
waitmovement 0
|
|
return
|
|
|
|
FiveIsland_RocketWarehouse_Movement_AdminWalkToSwitchFar::
|
|
walk_right
|
|
walk_right
|
|
walk_in_place_faster_up
|
|
step_end
|
|
|
|
FiveIsland_RocketWarehouse_Movement_AdminWalkToSwitch::
|
|
walk_right
|
|
walk_in_place_faster_up
|
|
step_end
|