summaryrefslogtreecommitdiff
path: root/data/scripts/secret_base.inc
diff options
context:
space:
mode:
Diffstat (limited to 'data/scripts/secret_base.inc')
-rw-r--r--data/scripts/secret_base.inc194
1 files changed, 97 insertions, 97 deletions
diff --git a/data/scripts/secret_base.inc b/data/scripts/secret_base.inc
index 9e7a60e15..ae802cdfd 100644
--- a/data/scripts/secret_base.inc
+++ b/data/scripts/secret_base.inc
@@ -1,30 +1,30 @@
-SecretBase_Text_TreeCanBeClimbed: @ 8274746
+SecretBase_Text_TreeCanBeClimbed:
.string "If some vines drop down, this tree can\n"
.string "be climbed.$"
-SecretBase_Text_TreeUseSecretPower: @ 8274779
+SecretBase_Text_TreeUseSecretPower:
.string "If some vines drop down, this tree can\n"
.string "be climbed.\p"
.string "Use the SECRET POWER?$"
-SecretBase_Text_VineDroppedDown: @ 82747C2
+SecretBase_Text_VineDroppedDown:
.string "A thick vine dropped down!$"
-SecretBase_Text_ClumpOfGrass: @ 82747DD
+SecretBase_Text_ClumpOfGrass:
.string "If this clump of grass can be moved,\n"
.string "it might be possible to go inside.$"
-SecretBase_Text_ClumpUseSecretPower: @ 8274825
+SecretBase_Text_ClumpUseSecretPower:
.string "If this clump of grass can be moved,\n"
.string "it might be possible to go inside.\p"
.string "Use the SECRET POWER?$"
-SecretBase_Text_DiscoveredSmallEntrance: @ 8274883
+SecretBase_Text_DiscoveredSmallEntrance:
.string "Discovered a small entrance!$"
.include "data/text/secret_base_trainers.inc"
-SecretBase_EventScript_CheckEntrance:: @ 82759F1
+SecretBase_EventScript_CheckEntrance::
special GetSecretBaseTypeInFrontOfPlayer
special CheckPlayerHasSecretBase
compare VAR_RESULT, TRUE
@@ -46,7 +46,7 @@ SecretBase_EventScript_CheckEntrance:: @ 82759F1
goto_if_eq SecretBase_EventScript_Shrub
end
-SecretBase_EventScript_Cave:: @ 8275A50
+SecretBase_EventScript_Cave::
lockall
compare VAR_RESULT, PARTY_SIZE
goto_if_eq SecretBase_EventScript_CaveNoSecretPower
@@ -61,24 +61,24 @@ SecretBase_EventScript_Cave:: @ 8275A50
goto SecretBase_EventScript_CaveEnter
end
-SecretBase_EventScript_CaveUseSecretPower:: @ 8275A86
+SecretBase_EventScript_CaveUseSecretPower::
lockall
dofieldeffect FLDEFF_USE_SECRET_POWER_CAVE
waitstate
goto SecretBase_EventScript_CaveEnter
end
-SecretBase_EventScript_CaveNoSecretPower:: @ 8275A91
+SecretBase_EventScript_CaveNoSecretPower::
msgbox SecretBase_Text_SmallIndentInWall, MSGBOX_DEFAULT
releaseall
end
-SecretBase_EventScript_CaveEnter:: @ 8275A9B
+SecretBase_EventScript_CaveEnter::
msgbox SecretBase_Text_DiscoveredSmallCavern, MSGBOX_DEFAULT
goto SecretBase_EventScript_InitSecretBase
end
-SecretBase_EventScript_Tree:: @ 8275AA9
+SecretBase_EventScript_Tree::
lockall
compare VAR_RESULT, PARTY_SIZE
goto_if_eq SecretBase_EventScript_TreeNoSecretPower
@@ -93,24 +93,24 @@ SecretBase_EventScript_Tree:: @ 8275AA9
goto SecretBase_EventScript_TreeEnter
end
-SecretBase_EventScript_TreeUseSecretPower:: @ 8275ADF
+SecretBase_EventScript_TreeUseSecretPower::
lockall
dofieldeffect FLDEFF_USE_SECRET_POWER_TREE
waitstate
goto SecretBase_EventScript_TreeEnter
end
-SecretBase_EventScript_TreeNoSecretPower:: @ 8275AEA
+SecretBase_EventScript_TreeNoSecretPower::
msgbox SecretBase_Text_TreeCanBeClimbed, MSGBOX_DEFAULT
releaseall
end
-SecretBase_EventScript_TreeEnter:: @ 8275AF4
+SecretBase_EventScript_TreeEnter::
msgbox SecretBase_Text_VineDroppedDown, MSGBOX_DEFAULT
goto SecretBase_EventScript_InitSecretBase
end
-SecretBase_EventScript_Shrub:: @ 8275B02
+SecretBase_EventScript_Shrub::
lockall
compare VAR_RESULT, PARTY_SIZE
goto_if_eq SecretBase_EventScript_ShrubNoSecretPower
@@ -125,24 +125,24 @@ SecretBase_EventScript_Shrub:: @ 8275B02
goto SecretBase_EventScript_ShrubEnter
end
-SecretBase_EventScript_ShrubUseSecretPower:: @ 8275B38
+SecretBase_EventScript_ShrubUseSecretPower::
lockall
dofieldeffect FLDEFF_USE_SECRET_POWER_SHRUB
waitstate
goto SecretBase_EventScript_ShrubEnter
end
-SecretBase_EventScript_ShrubNoSecretPower:: @ 8275B43
+SecretBase_EventScript_ShrubNoSecretPower::
msgbox SecretBase_Text_ClumpOfGrass, MSGBOX_DEFAULT
releaseall
end
-SecretBase_EventScript_ShrubEnter:: @ 8275B4D
+SecretBase_EventScript_ShrubEnter::
msgbox SecretBase_Text_DiscoveredSmallEntrance, MSGBOX_DEFAULT
goto SecretBase_EventScript_InitSecretBase
end
-SecretBase_EventScript_InitSecretBase:: @ 8275B5B
+SecretBase_EventScript_InitSecretBase::
closemessage
playse SE_EXIT
setvar VAR_INIT_SECRET_BASE, 0
@@ -156,7 +156,7 @@ SecretBase_EventScript_InitSecretBase:: @ 8275B5B
waitstate
end
-SecretBase_EventScript_FirstEntrance:: @ 8275B81
+SecretBase_EventScript_FirstEntrance::
applymovement OBJ_EVENT_ID_PLAYER, SecretBase_Movement_EnterBase
waitmovement 0
setvar VAR_INIT_SECRET_BASE, 1
@@ -168,19 +168,19 @@ SecretBase_EventScript_FirstEntrance:: @ 8275B81
special ClearAndLeaveSecretBase
end
-SecretBase_EventScript_SetAsBase:: @ 8275BAB
+SecretBase_EventScript_SetAsBase::
closemessage
setflag FLAG_RECEIVED_SECRET_POWER
special EnterNewlyCreatedSecretBase
waitstate
end
-SecretBase_Movement_EnterBase: @ 8275BB4
+SecretBase_Movement_EnterBase:
walk_up
walk_up
step_end
-SecretBase_EventScript_Enter:: @ 8275BB7
+SecretBase_EventScript_Enter::
lockall
setvar VAR_INIT_SECRET_BASE, 1
playse SE_EXIT
@@ -193,14 +193,14 @@ SecretBase_EventScript_Enter:: @ 8275BB7
waitstate
end
-SecretBase_EventScript_EnterPlayersBase:: @ 8275BDB
+SecretBase_EventScript_EnterPlayersBase::
setflag FLAG_DECORATION_0
special EnterSecretBase
setvar VAR_SECRET_BASE_INITIALIZED, 0
waitstate
end
-SecretBase_EventScript_AlreadyHasSecretBase:: @ 8275BE8
+SecretBase_EventScript_AlreadyHasSecretBase::
checkpartymove MOVE_SECRET_POWER
compare VAR_RESULT, PARTY_SIZE
goto_if_eq SecretBase_EventScript_NoSecretPower
@@ -241,7 +241,7 @@ SecretBase_EventScript_AlreadyHasSecretBase:: @ 8275BE8
releaseall
end
-SecretBase_EventScript_NoSecretPower:: @ 8275C9A
+SecretBase_EventScript_NoSecretPower::
lockall
compare VAR_0x8007, SECRET_BASE_RED_CAVE
goto_if_eq SecretBase_EventScript_CaveNoSecretPower
@@ -257,12 +257,12 @@ SecretBase_EventScript_NoSecretPower:: @ 8275C9A
goto_if_eq SecretBase_EventScript_ShrubNoSecretPower
end
-SecretBase_EventScript_CancelOnEntrance:: @ 8275CDE
+SecretBase_EventScript_CancelOnEntrance::
closemessage
releaseall
end
-SecretBase_EventScript_SetDecorationFlags:: @ 8275CE1
+SecretBase_EventScript_SetDecorationFlags::
setflag FLAG_DECORATION_1
setflag FLAG_DECORATION_2
setflag FLAG_DECORATION_3
@@ -279,28 +279,28 @@ SecretBase_EventScript_SetDecorationFlags:: @ 8275CE1
setflag FLAG_DECORATION_14
return
-SecretBase_EventScript_InitDecorations:: @ 8275D0C
+SecretBase_EventScript_InitDecorations::
setvar VAR_0x8004, 0
setvar VAR_0x8005, 0
special InitSecretBaseDecorationSprites
setvar VAR_SECRET_BASE_INITIALIZED, 1
end
-SecretBase_EventScript_SetDecoration:: @ 8275D1F
+SecretBase_EventScript_SetDecoration::
setvar VAR_0x8005, 0
goto SecretBase_EventScript_SetDecoration2
end
-SecretBase_EventScript_SetDecoration2:: @ 8275D2A
+SecretBase_EventScript_SetDecoration2::
special SetDecoration
end
-SecretBase_EventScript_PutAwayDecoration:: @ 8275D2E
+SecretBase_EventScript_PutAwayDecoration::
setvar VAR_0x8004, 0
goto SecretBase_EventScript_PutAwayDecorationLoop
end
-SecretBase_EventScript_PutAwayDecorationLoop:: @ 8275D39
+SecretBase_EventScript_PutAwayDecorationLoop::
special PutAwayDecorationIteration
compare VAR_RESULT, 1
goto_if_eq SecretBase_EventScript_PutAwayDecorationEnd
@@ -312,10 +312,10 @@ SecretBase_EventScript_PutAwayDecorationLoop:: @ 8275D39
goto SecretBase_EventScript_PutAwayDecorationLoop
end
-SecretBase_EventScript_PutAwayDecorationEnd:: @ 8275D63
+SecretBase_EventScript_PutAwayDecorationEnd::
end
-SecretBase_EventScript_RecordMixTrainer:: @ 8275D64
+SecretBase_EventScript_RecordMixTrainer::
special GetSecretBaseOwnerAndState
compare VAR_0x8004, 0
goto_if_eq SecretBase_EventScript_Trainer0
@@ -340,7 +340,7 @@ SecretBase_EventScript_RecordMixTrainer:: @ 8275D64
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer0:: @ 8275DD6
+SecretBase_EventScript_Trainer0::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer0PreChampion
@@ -358,12 +358,12 @@ SecretBase_EventScript_Trainer0:: @ 8275DD6
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer0PreChampion:: @ 8275E25
+SecretBase_EventScript_Trainer0PreChampion::
msgbox SecretBase_Text_Trainer0PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer0DeclineBattle:: @ 8275E2F
+SecretBase_EventScript_Trainer0DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -371,13 +371,13 @@ SecretBase_EventScript_Trainer0DeclineBattle:: @ 8275E2F
release
end
-SecretBase_EventScript_Trainer0PostBattle:: @ 8275E44
+SecretBase_EventScript_Trainer0PostBattle::
msgbox SecretBase_Text_Trainer0PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer1:: @ 8275E4E
+SecretBase_EventScript_Trainer1::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer1PreChampion
@@ -395,12 +395,12 @@ SecretBase_EventScript_Trainer1:: @ 8275E4E
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer1PreChampion:: @ 8275E9D
+SecretBase_EventScript_Trainer1PreChampion::
msgbox SecretBase_Text_Trainer1PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer1DeclineBattle:: @ 8275EA7
+SecretBase_EventScript_Trainer1DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -408,13 +408,13 @@ SecretBase_EventScript_Trainer1DeclineBattle:: @ 8275EA7
release
end
-SecretBase_EventScript_Trainer1PostBattle:: @ 8275EBC
+SecretBase_EventScript_Trainer1PostBattle::
msgbox SecretBase_Text_Trainer1PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer2:: @ 8275EC6
+SecretBase_EventScript_Trainer2::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer2PreChampion
@@ -432,12 +432,12 @@ SecretBase_EventScript_Trainer2:: @ 8275EC6
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer2PreChampion:: @ 8275F15
+SecretBase_EventScript_Trainer2PreChampion::
msgbox SecretBase_Text_Trainer2PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer2DeclineBattle:: @ 8275F1F
+SecretBase_EventScript_Trainer2DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -445,13 +445,13 @@ SecretBase_EventScript_Trainer2DeclineBattle:: @ 8275F1F
release
end
-SecretBase_EventScript_Trainer2PostBattle:: @ 8275F34
+SecretBase_EventScript_Trainer2PostBattle::
msgbox SecretBase_Text_Trainer2PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer3:: @ 8275F3E
+SecretBase_EventScript_Trainer3::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer3PreChampion
@@ -469,12 +469,12 @@ SecretBase_EventScript_Trainer3:: @ 8275F3E
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer3PreChampion:: @ 8275F8D
+SecretBase_EventScript_Trainer3PreChampion::
msgbox SecretBase_Text_Trainer3PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer3DeclineBattle:: @ 8275F97
+SecretBase_EventScript_Trainer3DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -482,13 +482,13 @@ SecretBase_EventScript_Trainer3DeclineBattle:: @ 8275F97
release
end
-SecretBase_EventScript_Trainer3PostBattle:: @ 8275FAC
+SecretBase_EventScript_Trainer3PostBattle::
msgbox SecretBase_Text_Trainer3PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer4:: @ 8275FB6
+SecretBase_EventScript_Trainer4::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer4PreChampion
@@ -506,12 +506,12 @@ SecretBase_EventScript_Trainer4:: @ 8275FB6
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer4PreChampion:: @ 8276005
+SecretBase_EventScript_Trainer4PreChampion::
msgbox SecretBase_Text_Trainer4PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer4DeclineBattle:: @ 827600F
+SecretBase_EventScript_Trainer4DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -519,13 +519,13 @@ SecretBase_EventScript_Trainer4DeclineBattle:: @ 827600F
release
end
-SecretBase_EventScript_Trainer4PostBattle:: @ 8276024
+SecretBase_EventScript_Trainer4PostBattle::
msgbox SecretBase_Text_Trainer4PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer5:: @ 827602E
+SecretBase_EventScript_Trainer5::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer5PreChampion
@@ -543,12 +543,12 @@ SecretBase_EventScript_Trainer5:: @ 827602E
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer5PreChampion:: @ 827607D
+SecretBase_EventScript_Trainer5PreChampion::
msgbox SecretBase_Text_Trainer5PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer5DeclineBattle:: @ 8276087
+SecretBase_EventScript_Trainer5DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -556,13 +556,13 @@ SecretBase_EventScript_Trainer5DeclineBattle:: @ 8276087
release
end
-SecretBase_EventScript_Trainer5PostBattle:: @ 827609C
+SecretBase_EventScript_Trainer5PostBattle::
msgbox SecretBase_Text_Trainer5PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer6:: @ 82760A6
+SecretBase_EventScript_Trainer6::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer6PreChampion
@@ -580,12 +580,12 @@ SecretBase_EventScript_Trainer6:: @ 82760A6
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer6PreChampion:: @ 82760F5
+SecretBase_EventScript_Trainer6PreChampion::
msgbox SecretBase_Text_Trainer6PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer6DeclineBattle:: @ 82760FF
+SecretBase_EventScript_Trainer6DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -593,13 +593,13 @@ SecretBase_EventScript_Trainer6DeclineBattle:: @ 82760FF
release
end
-SecretBase_EventScript_Trainer6PostBattle:: @ 8276114
+SecretBase_EventScript_Trainer6PostBattle::
msgbox SecretBase_Text_Trainer6PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer7:: @ 827611E
+SecretBase_EventScript_Trainer7::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer7PreChampion
@@ -617,12 +617,12 @@ SecretBase_EventScript_Trainer7:: @ 827611E
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer7PreChampion:: @ 827616D
+SecretBase_EventScript_Trainer7PreChampion::
msgbox SecretBase_Text_Trainer7PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer7DeclineBattle:: @ 8276177
+SecretBase_EventScript_Trainer7DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -630,13 +630,13 @@ SecretBase_EventScript_Trainer7DeclineBattle:: @ 8276177
release
end
-SecretBase_EventScript_Trainer7PostBattle:: @ 827618C
+SecretBase_EventScript_Trainer7PostBattle::
msgbox SecretBase_Text_Trainer7PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer8:: @ 8276196
+SecretBase_EventScript_Trainer8::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer8PreChampion
@@ -654,12 +654,12 @@ SecretBase_EventScript_Trainer8:: @ 8276196
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer8PreChampion:: @ 82761E5
+SecretBase_EventScript_Trainer8PreChampion::
msgbox SecretBase_Text_Trainer8PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer8DeclineBattle:: @ 82761EF
+SecretBase_EventScript_Trainer8DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -667,13 +667,13 @@ SecretBase_EventScript_Trainer8DeclineBattle:: @ 82761EF
release
end
-SecretBase_EventScript_Trainer8PostBattle:: @ 8276204
+SecretBase_EventScript_Trainer8PostBattle::
msgbox SecretBase_Text_Trainer8PostBattle, MSGBOX_DEFAULT
release
end
@ VAR_RESULT is initially set by GetSecretBaseOwnerAndState
-SecretBase_EventScript_Trainer9:: @ 827620E
+SecretBase_EventScript_Trainer9::
lock
faceplayer
goto_if_unset FLAG_SYS_GAME_CLEAR, SecretBase_EventScript_Trainer9PreChampion
@@ -691,12 +691,12 @@ SecretBase_EventScript_Trainer9:: @ 827620E
goto SecretBase_EventScript_BattleTrainer
end
-SecretBase_EventScript_Trainer9PreChampion:: @ 827625D
+SecretBase_EventScript_Trainer9PreChampion::
msgbox SecretBase_Text_Trainer9PreChampion, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_Trainer9DeclineBattle:: @ 8276267
+SecretBase_EventScript_Trainer9DeclineBattle::
special DeclinedSecretBaseBattle
setvar VAR_RESULT, 0
special SetBattledOwnerFromResult
@@ -704,12 +704,12 @@ SecretBase_EventScript_Trainer9DeclineBattle:: @ 8276267
release
end
-SecretBase_EventScript_Trainer9PostBattle:: @ 827627C
+SecretBase_EventScript_Trainer9PostBattle::
msgbox SecretBase_Text_Trainer9PostBattle, MSGBOX_DEFAULT
release
end
-SecretBase_EventScript_BattleTrainer:: @ 8276286
+SecretBase_EventScript_BattleTrainer::
special PrepSecretBaseBattleFlags
setvar VAR_0x8004, SPECIAL_BATTLE_SECRET_BASE
setvar VAR_0x8005, 0
@@ -725,59 +725,59 @@ SecretBase_EventScript_BattleTrainer:: @ 8276286
release
end
-SecretBase_EventScript_DrewSecretBaseBattle:: @ 82762BD
+SecretBase_EventScript_DrewSecretBaseBattle::
special DrewSecretBaseBattle
return
-SecretBase_EventScript_WonSecretBaseBattle:: @ 82762C1
+SecretBase_EventScript_WonSecretBaseBattle::
special WonSecretBaseBattle
return
-SecretBase_EventScript_LostSecretBaseBattle:: @ 82762C5
+SecretBase_EventScript_LostSecretBaseBattle::
special LostSecretBaseBattle
return
.include "data/scripts/secret_power_tm.inc"
-SecretBase_EventScript_DollInteract:: @ 82766A2
+SecretBase_EventScript_DollInteract::
special CheckInteractedWithFriendsDollDecor
end
-SecretBase_EventScript_CushionInteract:: @ 82766A6
+SecretBase_EventScript_CushionInteract::
special CheckInteractedWithFriendsCushionDecor
end
-SecretBase_Text_AllDecorationsWillBeReturned: @ 82766AA
+SecretBase_Text_AllDecorationsWillBeReturned:
.string "All decorations and furniture in your\n"
.string "SECRET BASE will be returned to your PC.\p"
.string "Is that okay?$"
-SecretBase_Text_WantToRegisterSecretBase: @ 8276707
+SecretBase_Text_WantToRegisterSecretBase:
.string "Do you want to register\n"
.string "{STR_VAR_1}'s SECRET BASE?$"
-SecretBase_Text_AlreadyRegisteredDelete: @ 8276731
+SecretBase_Text_AlreadyRegisteredDelete:
.string "This data is already registered.\n"
.string "Would you like to delete it?$"
-SecretBase_Text_TooManyBasesDeleteSome: @ 827676F
+SecretBase_Text_TooManyBasesDeleteSome:
.string "Up to 10 locations can be registered.\p"
.string "Delete a location if you want to\n"
.string "register another location.$"
-SecretBase_Text_RegistrationCompleted: @ 82767D1
+SecretBase_Text_RegistrationCompleted:
.string "Registration completed.$"
-SecretBase_Text_DataUnregistered: @ 82767E9
+SecretBase_Text_DataUnregistered:
.string "Data has been unregistered.$"
-SecretBase_Text_BootUpPC: @ 8276805
+SecretBase_Text_BootUpPC:
.string "{PLAYER} booted up the PC.$"
-SecretBase_Text_WhatWouldYouLikeToDo: @ 827681A
+SecretBase_Text_WhatWouldYouLikeToDo:
.string "What would you like to do?$"
-SecretBase_Text_RegistryInfo: @ 8276835
+SecretBase_Text_RegistryInfo:
.string "Once registered, a SECRET BASE will not\n"
.string "disappear unless the other TRAINER\l"
.string "moves it to a different location.\p"
@@ -787,27 +787,27 @@ SecretBase_Text_RegistryInfo: @ 8276835
.string "Up to ten SECRET BASE locations\n"
.string "may be registered.$"
-SecretBase_Text_BattleTowerShield: @ 827692B
+SecretBase_Text_BattleTowerShield:
.string "A shield of {STR_VAR_2} that marks winning\n"
.string "{STR_VAR_1} times in a row at the BATTLE TOWER.$"
-SecretBase_Text_ToyTV: @ 8276974
+SecretBase_Text_ToyTV:
.string "A realistic toy TV. It could be easily\n"
.string "mistaken for the real thing.$"
-SecretBase_Text_SeedotTV: @ 82769B8
+SecretBase_Text_SeedotTV:
.string "A toy TV shaped like a SEEDOT.\n"
.string "It looks ready to roll away on its own…$"
-SecretBase_Text_SkittyTV: @ 82769FF
+SecretBase_Text_SkittyTV:
.string "A toy TV shaped like a SKITTY.\n"
.string "It looks ready to stroll away…$"
-SecretBase_Text_WouldYouLikeToMoveBases: @ 8276A3D
+SecretBase_Text_WouldYouLikeToMoveBases:
.string "You may only make one SECRET BASE.\p"
.string "Would you like to move from the SECRET\n"
.string "BASE near {STR_VAR_1}?$"
-SecretBase_Text_MovingCompletedUseSecretPower: @ 8276A95
+SecretBase_Text_MovingCompletedUseSecretPower:
.string "Moving completed.\p"
.string "Would you like to use the SECRET POWER?$"