blob: 8d0046857a5b09139edf8cc65177de9b1baeb830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
MossdeepCity_House4_MapScripts::
.byte 0
MossdeepCity_House4_EventScript_Woman::
lock
faceplayer
goto_if_set FLAG_SYS_GAME_CLEAR, MossdeepCity_House4_EventScript_CanBattleAtSecretBases
msgbox MossdeepCity_House4_Text_BrotherLikesToFindBases, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_CanBattleAtSecretBases::
msgbox MossdeepCity_House4_Text_BrotherLikesToVisitBasesAndBattle, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_NinjaBoy::
lock
faceplayer
special CheckPlayerHasSecretBase
goto_if_eq VAR_RESULT, FALSE, MossdeepCity_House4_EventScript_NoSecretBase
special GetSecretBaseNearbyMapName
msgbox MossdeepCity_House4_Text_YouMadeSecretBaseNearX, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_NoSecretBase::
msgbox MossdeepCity_House4_Text_MakeSecretBase, MSGBOX_DEFAULT
release
end
MossdeepCity_House4_EventScript_Skitty::
lock
faceplayer
waitse
playmoncry SPECIES_SKITTY, CRY_MODE_NORMAL
msgbox MossdeepCity_House4_Text_Skitty, MSGBOX_DEFAULT
waitmoncry
release
end
MossdeepCity_House4_Text_BrotherLikesToFindBases:
.string "My little brother says he likes to go\n"
.string "find people's SECRET BASES.$"
MossdeepCity_House4_Text_BrotherLikesToVisitBasesAndBattle:
.string "My little brother says he likes to\n"
.string "visit people's SECRET BASES and have\l"
.string "POKéMON battles.$"
MossdeepCity_House4_Text_YouMadeSecretBaseNearX:
.string "Was it you who made a SECRET BASE\n"
.string "near {STR_VAR_1}?$"
MossdeepCity_House4_Text_MakeSecretBase:
.string "You should make a SECRET BASE\n"
.string "somewhere. I'll go find it!$"
MossdeepCity_House4_Text_Skitty:
.string "SKITTY: Miyaan?$"
|