blob: f97149b050c864a847dbfac0ecbc06b2caa2426c (
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
|
MtPyre_1F_MapScripts::
.byte 0
MtPyre_1F_EventScript_CleanseTagWoman::
lock
faceplayer
goto_if_set FLAG_RECEIVED_CLEANSE_TAG, MtPyre_1F_EventScript_ReceivedCleanseTag
msgbox MtPyre_1F_Text_TakeThisForYourOwnGood, MSGBOX_DEFAULT
giveitem ITEM_CLEANSE_TAG
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
setflag FLAG_RECEIVED_CLEANSE_TAG
release
end
MtPyre_1F_EventScript_ReceivedCleanseTag::
msgbox MtPyre_1F_Text_ExplainCleanseTag, MSGBOX_DEFAULT
release
end
MtPyre_1F_EventScript_PokefanF::
msgbox MtPyre_1F_Text_ComeToPayRespects, MSGBOX_NPC
end
MtPyre_1F_EventScript_Man::
msgbox MtPyre_1F_Text_RestingPlaceOfZigzagoon, MSGBOX_NPC
end
MtPyre_1F_Text_TakeThisForYourOwnGood:
.string "All sorts of beings wander the slopes\n"
.string "of MT. PYRE…\p"
.string "There is no telling what may happen.\n"
.string "Take this. It's for your own good.$"
MtPyre_1F_Text_ExplainCleanseTag:
.string "Have a POKéMON hold that\n"
.string "CLEANSE TAG.\p"
.string "It will help ward off wild POKéMON.$"
MtPyre_1F_Text_ComeToPayRespects:
.string "Did you come to pay your respect\n"
.string "to the spirits of departed POKéMON?\p"
.string "You must care for your POKéMON a lot.$"
MtPyre_1F_Text_RestingPlaceOfZigzagoon:
.string "This is the final resting place of my\n"
.string "ZIGZAGOON. I cherished it…$"
|