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
62
63
64
65
66
67
68
69
|
const_value set 2
const SILVERCAVEROOM3_RED
SilverCaveRoom3_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
Red:
special Special_FadeOutMusic
faceplayer
opentext
writetext .Text1
waitbutton
closetext
winlosstext .Text2, .Text2
loadtrainer RED, RED1
startbattle
dontrestartmapmusic
reloadmapafterbattle
special Special_FadeOutMusic
opentext
writetext .Text3
waitbutton
closetext
special Special_FadeBlackQuickly
special Special_ReloadSpritesNoPalettes
disappear SILVERCAVEROOM3_RED
pause 15
special Special_FadeInQuickly
pause 30
special HealParty
refreshscreen $0
credits
end
.Text1:
text "<......>"
line "<......>"
done
.Text2:
text "…"
done
.Text3:
text "<......>"
line "<......>"
done
SilverCaveRoom3_MapEventHeader:
; filler
db 0, 0
.Warps:
db 1
warp_def 9, 33, 2, SILVER_CAVE_ROOM_2
.CoordEvents:
db 0
.BGEvents:
db 0
.ObjectEvents:
db 1
object_event 9, 10, SPRITE_RED, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, Red, EVENT_RED_IN_MT_SILVER
|