Remove address comments
This commit is contained in:
@@ -2,23 +2,23 @@
|
||||
.set LOCALID_GUARD_1, 3
|
||||
.set LOCALID_GUARD_2, 4
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_MapScripts:: @ 82295D2
|
||||
EverGrandeCity_PokemonLeague_1F_MapScripts::
|
||||
map_script MAP_SCRIPT_ON_TRANSITION, EverGrandeCity_PokemonLeague_1F_OnTransition
|
||||
map_script MAP_SCRIPT_ON_RESUME, CableClub_OnResume
|
||||
.byte 0
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_OnTransition: @ 82295DD
|
||||
EverGrandeCity_PokemonLeague_1F_OnTransition:
|
||||
setrespawn HEAL_LOCATION_EVER_GRANDE_CITY_POKEMON_LEAGUE
|
||||
setflag FLAG_LANDMARK_POKEMON_LEAGUE
|
||||
call_if_unset FLAG_ENTERED_ELITE_FOUR, EverGrandeCity_PokemonLeague_1F_EventScript_GuardsBlockDoor
|
||||
end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_GuardsBlockDoor:: @ 82295ED
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_GuardsBlockDoor::
|
||||
setobjectxyperm LOCALID_GUARD_1, 9, 2
|
||||
setobjectxyperm LOCALID_GUARD_2, 10, 2
|
||||
return
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_Nurse:: @ 82295FC
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_Nurse::
|
||||
setvar VAR_0x800B, LOCALID_NURSE
|
||||
call Common_EventScript_PkmnCenterNurse
|
||||
waitmessage
|
||||
@@ -26,7 +26,7 @@ EverGrandeCity_PokemonLeague_1F_EventScript_Nurse:: @ 82295FC
|
||||
release
|
||||
end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_Clerk:: @ 822960A
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_Clerk::
|
||||
lock
|
||||
faceplayer
|
||||
message gText_HowMayIServeYou
|
||||
@@ -37,7 +37,7 @@ EverGrandeCity_PokemonLeague_1F_EventScript_Clerk:: @ 822960A
|
||||
end
|
||||
|
||||
.align 2
|
||||
EverGrandeCity_PokemonLeague_1F_Pokemart: @ 8229624
|
||||
EverGrandeCity_PokemonLeague_1F_Pokemart:
|
||||
.2byte ITEM_ULTRA_BALL
|
||||
.2byte ITEM_HYPER_POTION
|
||||
.2byte ITEM_MAX_POTION
|
||||
@@ -51,7 +51,7 @@ EverGrandeCity_PokemonLeague_1F_Pokemart: @ 8229624
|
||||
|
||||
@ The door guards only check for FLAG_BADGE06_GET because Winonas badge is the only one that can be skipped
|
||||
@ Its assumed the player has the remaining badges
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_DoorGuard:: @ 8229636
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_DoorGuard::
|
||||
lockall
|
||||
goto_if_set FLAG_ENTERED_ELITE_FOUR, EverGrandeCity_PokemonLeague_1F_EventScript_GoForth
|
||||
getplayerxy VAR_TEMP_0, VAR_TEMP_1
|
||||
@@ -79,23 +79,23 @@ EverGrandeCity_PokemonLeague_1F_EventScript_DoorGuard:: @ 8229636
|
||||
releaseall
|
||||
end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_PlayerMoveToFrontFromRight:: @ 8229698
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_PlayerMoveToFrontFromRight::
|
||||
applymovement OBJ_EVENT_ID_PLAYER, EverGrandeCity_PokemonLeague_1F_Movement_MoveToFrontFromRight
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_PlayerMoveToFrontFromLeft:: @ 82296A3
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_PlayerMoveToFrontFromLeft::
|
||||
applymovement OBJ_EVENT_ID_PLAYER, EverGrandeCity_PokemonLeague_1F_Movement_MoveToFrontFromLeft
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_NotAllBadges:: @ 82296AE
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_NotAllBadges::
|
||||
playse SE_FAILURE
|
||||
msgbox EverGrandeCity_PokemonLeague_1F_Text_HaventObtainedAllBadges, MSGBOX_DEFAULT
|
||||
releaseall
|
||||
end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_GoForth:: @ 82296BB
|
||||
EverGrandeCity_PokemonLeague_1F_EventScript_GoForth::
|
||||
applymovement VAR_LAST_TALKED, Common_Movement_FacePlayer
|
||||
waitmovement 0
|
||||
msgbox EverGrandeCity_PokemonLeague_1F_Text_GoForth, MSGBOX_DEFAULT
|
||||
@@ -105,41 +105,41 @@ EverGrandeCity_PokemonLeague_1F_EventScript_GoForth:: @ 82296BB
|
||||
releaseall
|
||||
end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_MoveToFrontFromRight: @ 82296DA
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_MoveToFrontFromRight:
|
||||
walk_down
|
||||
walk_left
|
||||
walk_in_place_fastest_up
|
||||
step_end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_MoveToFrontFromLeft: @ 82296DE
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_MoveToFrontFromLeft:
|
||||
walk_down
|
||||
walk_right
|
||||
walk_in_place_fastest_up
|
||||
step_end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_LeftGuardOutOfWay: @ 82296E2
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_LeftGuardOutOfWay:
|
||||
walk_left
|
||||
walk_in_place_fastest_down
|
||||
step_end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_RightGuardOutOfWay: @ 82296E5
|
||||
EverGrandeCity_PokemonLeague_1F_Movement_RightGuardOutOfWay:
|
||||
walk_right
|
||||
walk_in_place_fastest_down
|
||||
step_end
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Text_MustHaveAllGymBadges: @ 82296E8
|
||||
EverGrandeCity_PokemonLeague_1F_Text_MustHaveAllGymBadges:
|
||||
.string "Beyond this point, only those TRAINERS\n"
|
||||
.string "who have collected all the GYM BADGES\l"
|
||||
.string "are permitted to enter.\p"
|
||||
.string "TRAINER, let us confirm that you have\n"
|
||||
.string "all the GYM BADGES.$"
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Text_HaventObtainedAllBadges: @ 8229787
|
||||
EverGrandeCity_PokemonLeague_1F_Text_HaventObtainedAllBadges:
|
||||
.string "You haven't obtained all the BADGES.\p"
|
||||
.string "If you're bound for the POKéMON\n"
|
||||
.string "LEAGUE, you must return with them.$"
|
||||
|
||||
EverGrandeCity_PokemonLeague_1F_Text_GoForth: @ 82297EF
|
||||
EverGrandeCity_PokemonLeague_1F_Text_GoForth:
|
||||
.string "TRAINER! Believe in yourself and your\n"
|
||||
.string "POKéMON, and go forth!$"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user