2020-07-24 06:49:26 -07:00
|
|
|
object_const_def
|
2015-11-26 21:22:14 -08:00
|
|
|
const KOGASROOM_KOGA
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
KogasRoom_MapScripts:
|
2020-07-24 06:49:26 -07:00
|
|
|
def_scene_scripts
|
2018-02-01 09:40:58 -08:00
|
|
|
scene_script .LockDoor ; SCENE_DEFAULT
|
2018-02-01 12:06:06 -08:00
|
|
|
scene_script .DummyScene ; SCENE_FINISHED
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_callbacks
|
2018-01-12 21:47:38 -08:00
|
|
|
callback MAPCALLBACK_TILES, .KogasRoomDoors
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.LockDoor:
|
2019-03-10 13:39:31 -07:00
|
|
|
prioritysjump .KogasDoorLocksBehindYou
|
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
|
|
|
.KogasRoomDoors:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_KOGAS_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_KOGAS_ROOM_EXIT_OPEN
|
2018-01-17 10:23:43 -08:00
|
|
|
iffalse .KeepExitClosed
|
|
|
|
changeblock 4, 2, $16 ; open door
|
|
|
|
.KeepExitClosed:
|
2020-07-17 05:37:03 -07:00
|
|
|
endcallback
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
.KogasDoorLocksBehindYou:
|
2018-02-28 13:50:43 -08:00
|
|
|
applymovement PLAYER, KogasRoom_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-02-01 12:06:06 -08:00
|
|
|
setscene SCENE_FINISHED
|
2015-07-16 15:10:10 -07:00
|
|
|
setevent EVENT_KOGAS_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
|
|
|
KogaScript_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_KOGA
|
2018-01-17 10:23:43 -08:00
|
|
|
iftrue KogaScript_AfterBattle
|
2017-09-28 09:33:26 -07:00
|
|
|
writetext KogaScript_KogaBeforeText
|
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 KogaScript_KogaBeatenText, 0
|
2018-01-09 15:45:25 -08:00
|
|
|
loadtrainer KOGA, KOGA1
|
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_KOGA
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-09-28 09:33:26 -07:00
|
|
|
writetext KogaScript_KogaDefeatText
|
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_KOGAS_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
|
|
|
KogaScript_AfterBattle:
|
2017-09-28 09:33:26 -07:00
|
|
|
writetext KogaScript_KogaDefeatText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-02-28 13:50:43 -08:00
|
|
|
KogasRoom_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
|
|
|
KogaScript_KogaBeforeText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Fwahahahaha!"
|
|
|
|
|
|
|
|
para "I am KOGA of the"
|
|
|
|
line "ELITE FOUR."
|
|
|
|
|
|
|
|
para "I live in shadows,"
|
|
|
|
line "a ninja!"
|
|
|
|
|
|
|
|
para "My intricate style"
|
|
|
|
line "will confound and"
|
|
|
|
cont "destroy you!"
|
|
|
|
|
|
|
|
para "Confusion, sleep,"
|
|
|
|
line "poison…"
|
|
|
|
|
|
|
|
para "Prepare to be the"
|
|
|
|
line "victim of my sin-"
|
|
|
|
cont "ister technique!"
|
|
|
|
|
|
|
|
para "Fwahahahaha!"
|
|
|
|
|
|
|
|
para "#MON is not"
|
|
|
|
line "merely about brute"
|
|
|
|
|
|
|
|
para "force--you shall"
|
|
|
|
line "see soon enough!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
KogaScript_KogaBeatenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Ah!"
|
|
|
|
line "You have proven"
|
|
|
|
cont "your worth!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-09-28 09:33:26 -07:00
|
|
|
KogaScript_KogaDefeatText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I subjected you to"
|
|
|
|
line "everything I could"
|
|
|
|
cont "muster."
|
|
|
|
|
|
|
|
para "But my efforts"
|
|
|
|
line "failed. I must"
|
|
|
|
cont "hone my skills."
|
|
|
|
|
|
|
|
para "Go on to the next"
|
|
|
|
line "room, and put your"
|
|
|
|
cont "abilities to test!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
KogasRoom_MapEvents:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0, 0 ; filler
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_warp_events
|
2018-02-01 19:22:07 -08:00
|
|
|
warp_event 4, 17, WILLS_ROOM, 2
|
|
|
|
warp_event 5, 17, WILLS_ROOM, 3
|
|
|
|
warp_event 4, 2, BRUNOS_ROOM, 1
|
|
|
|
warp_event 5, 2, BRUNOS_ROOM, 2
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_coord_events
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_bg_events
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_object_events
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 5, 7, SPRITE_KOGA, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, KogaScript_Battle, -1
|