2015-11-26 21:22:14 -08:00
|
|
|
const_value set 2
|
|
|
|
const WILLSROOM_WILL
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
WillsRoom_MapScripts:
|
2017-12-24 10:46:34 -08:00
|
|
|
.SceneScripts:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 2
|
2017-12-24 10:46:34 -08:00
|
|
|
scene_script .LockDoor
|
|
|
|
scene_script .DummyScene
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-20 21:02:21 -07:00
|
|
|
.MapCallbacks:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 1
|
2018-01-12 21:47:38 -08:00
|
|
|
callback MAPCALLBACK_TILES, .WillsRoomDoors
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.LockDoor:
|
2017-09-28 09:33:26 -07:00
|
|
|
priorityjump .WillsDoorLocksBehindYou
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.DummyScene:
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
.WillsRoomDoors:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_WILLS_ROOM_ENTRANCE_CLOSED
|
2018-01-17 10:23:43 -08:00
|
|
|
iffalse .KeepEntranceOpen
|
|
|
|
changeblock 4, 14, $2a ; wall
|
|
|
|
.KeepEntranceOpen:
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_WILLS_ROOM_EXIT_OPEN
|
2018-01-17 10:23:43 -08:00
|
|
|
iffalse .KeepExitClosed
|
|
|
|
changeblock 4, 2, $16 ; open door
|
|
|
|
.KeepExitClosed:
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
.WillsDoorLocksBehindYou:
|
2018-01-17 10:23:43 -08:00
|
|
|
applymovement PLAYER, WillsRoom_EnterMovement
|
2013-02-16 22:54:07 -08:00
|
|
|
refreshscreen $86
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_STRENGTH
|
2013-02-16 22:54:07 -08:00
|
|
|
earthquake 80
|
2018-01-17 10:23:43 -08:00
|
|
|
changeblock 4, 14, $2a ; wall
|
2013-02-16 22:54:07 -08:00
|
|
|
reloadmappart
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2018-01-09 15:45:25 -08:00
|
|
|
setscene 1
|
2015-07-16 15:10:10 -07:00
|
|
|
setevent EVENT_WILLS_ROOM_ENTRANCE_CLOSED
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
WillScript_Battle:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-07-10 01:20:21 -07:00
|
|
|
checkevent EVENT_BEAT_ELITE_4_WILL
|
2018-01-17 10:23:43 -08:00
|
|
|
iftrue WillScript_AfterBattle
|
2017-09-28 09:33:26 -07:00
|
|
|
writetext WillScript_WillBeforeText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2017-09-28 09:33:26 -07:00
|
|
|
winlosstext WillScript_WillBeatenText, 0
|
2018-01-09 15:45:25 -08:00
|
|
|
loadtrainer WILL, WILL1
|
2013-02-16 22:54:07 -08:00
|
|
|
startbattle
|
2015-12-26 15:11:55 -08:00
|
|
|
reloadmapafterbattle
|
2015-07-10 01:20:21 -07:00
|
|
|
setevent EVENT_BEAT_ELITE_4_WILL
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-09-28 09:33:26 -07:00
|
|
|
writetext WillScript_WillDefeatText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_ENTER_DOOR
|
2018-01-17 10:23:43 -08:00
|
|
|
changeblock 4, 2, $16 ; open door
|
2013-02-16 22:54:07 -08:00
|
|
|
reloadmappart
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_WILLS_ROOM_EXIT_OPEN
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2018-01-17 10:23:43 -08:00
|
|
|
WillScript_AfterBattle:
|
2017-09-28 09:33:26 -07:00
|
|
|
writetext WillScript_WillDefeatText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-01-17 10:23:43 -08:00
|
|
|
WillsRoom_EnterMovement:
|
2016-05-14 10:46:14 -07:00
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
WillScript_WillBeforeText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Welcome to #MON"
|
2015-06-27 21:59:17 -07:00
|
|
|
line "LEAGUE, <PLAYER>."
|
2014-03-05 21:29:44 -08:00
|
|
|
|
|
|
|
para "Allow me to intro-"
|
|
|
|
line "duce myself. I am"
|
|
|
|
cont "WILL."
|
|
|
|
|
|
|
|
para "I have trained all"
|
|
|
|
line "around the world,"
|
|
|
|
|
|
|
|
para "making my psychic"
|
|
|
|
line "#MON powerful."
|
|
|
|
|
|
|
|
para "And, at last, I've"
|
|
|
|
line "been accepted into"
|
|
|
|
cont "the ELITE FOUR."
|
|
|
|
|
|
|
|
para "I can only keep"
|
|
|
|
line "getting better!"
|
|
|
|
|
|
|
|
para "Losing is not an"
|
|
|
|
line "option!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
WillScript_WillBeatenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I… I can't…"
|
|
|
|
line "believe it…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
WillScript_WillDefeatText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Even though I was"
|
|
|
|
line "defeated, I won't"
|
|
|
|
cont "change my course."
|
|
|
|
|
|
|
|
para "I will continue"
|
|
|
|
line "battling until I"
|
|
|
|
|
|
|
|
para "stand above all"
|
|
|
|
line "trainers!"
|
|
|
|
|
2015-06-27 21:59:17 -07:00
|
|
|
para "Now, <PLAYER>, move"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "on and experience"
|
|
|
|
|
|
|
|
para "the true ferocity"
|
|
|
|
line "of the ELITE FOUR."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
WillsRoom_MapEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
; filler
|
|
|
|
db 0, 0
|
|
|
|
|
2015-07-20 21:02:21 -07:00
|
|
|
.Warps:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 3
|
2017-12-28 11:31:25 -08:00
|
|
|
warp_def 5, 17, 4, INDIGO_PLATEAU_POKECENTER_1F
|
|
|
|
warp_def 4, 2, 1, KOGAS_ROOM
|
|
|
|
warp_def 5, 2, 2, KOGAS_ROOM
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.CoordEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 0
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.BGEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 0
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.ObjectEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 1
|
2017-12-28 11:31:25 -08:00
|
|
|
object_event 5, 7, SPRITE_WILL, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, WillScript_Battle, -1
|