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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
HallOfFame_MapScriptHeader:
.MapTriggers:
db 2
; triggers
dw .Trigger1, $0000
dw .Trigger2, $0000
.MapCallbacks:
db 0
.Trigger1:
priorityjump HallOfFameScript
end
.Trigger2:
end
HallOfFameScript:
follow $2, PLAYER
applymovement $2, HallOfFame_WalkUpWithLance
stopfollow
spriteface PLAYER, RIGHT
loadfont
writetext HallOfFame_LanceText
closetext
loadmovesprites
spriteface $2, UP
applymovement PLAYER, HallOfFame_SlowlyApproachMachine
dotrigger $1
pause 15
writebyte 2 ; Machine is in the Hall of Fame
special HealMachineAnim
setevent EVENT_BEAT_ELITE_FOUR
setevent EVENT_TELEPORT_GUY
setevent EVENT_RIVAL_SPROUT_TOWER
clearevent EVENT_RED_IN_MT_SILVER
setevent EVENT_OLIVINE_PORT_SPRITES_BEFORE_HALL_OF_FAME
clearevent EVENT_OLIVINE_PORT_SPRITES_AFTER_HALL_OF_FAME
domaptrigger SPROUT_TOWER_3F, $1
special HealParty
checkevent EVENT_GOT_SS_TICKET_FROM_ELM
iftrue .SkipPhoneCall
specialphonecall SPECIALCALL_SSTICKET
.SkipPhoneCall:
halloffame
end
HallOfFame_WalkUpWithLance:
step_up
step_up
step_up
step_up
step_up
step_up
step_up
step_up
step_right
turn_head_left
step_end
HallOfFame_SlowlyApproachMachine:
slow_step_up
step_end
HallOfFame_LanceText:
text "LANCE: It's been a"
line "long time since I"
cont "last came here."
para "This is where we"
line "honor the LEAGUE"
para "CHAMPIONS for all"
line "eternity."
para "Their courageous"
line "#MON are also"
cont "inducted."
para "Here today, we"
line "witnessed the rise"
para "of a new LEAGUE"
line "CHAMPION--a"
para "trainer who feels"
line "compassion for,"
para "and trust toward,"
line "all #MON."
para "A trainer who"
line "succeeded through"
para "perseverance and"
line "determination."
para "The new LEAGUE"
line "CHAMPION who has"
para "all the makings"
line "of greatness!"
para "<PLAY_G>, allow me"
line "to register you"
para "and your partners"
line "as CHAMPIONS!"
done
HallOfFame_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $d, $4, 3, LANCES_ROOM
warp_def $d, $5, 4, LANCES_ROOM
.XYTriggers:
db 0
.Signposts:
db 0
.PersonEvents:
db 1
person_event SPRITE_LANCE, 12, 4, $7, 0, 0, -1, -1, 0, 0, 0, ObjectEvent, -1
|