2020-07-24 13:49:26 +00:00
|
|
|
object_const_def
|
2015-11-27 05:22:14 +00:00
|
|
|
const KARENSROOM_KAREN
|
|
|
|
|
2018-01-17 03:57:19 +00:00
|
|
|
KarensRoom_MapScripts:
|
2020-07-24 13:49:26 +00:00
|
|
|
def_scene_scripts
|
2022-08-09 22:04:18 +00:00
|
|
|
scene_script KarensRoomLockDoorScene, SCENE_KARENSROOM_LOCK_DOOR
|
|
|
|
scene_script KarensRoomNoopScene, SCENE_KARENSROOM_NOOP
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2020-07-24 13:49:26 +00:00
|
|
|
def_callbacks
|
2022-08-09 22:04:18 +00:00
|
|
|
callback MAPCALLBACK_TILES, KarensRoomDoorsCallback
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2022-08-09 22:04:18 +00:00
|
|
|
KarensRoomLockDoorScene:
|
|
|
|
sdefer KarensRoomDoorLocksBehindYouScript
|
2013-02-17 06:54:07 +00:00
|
|
|
end
|
|
|
|
|
2022-08-09 22:04:18 +00:00
|
|
|
KarensRoomNoopScene:
|
2013-02-17 06:54:07 +00:00
|
|
|
end
|
|
|
|
|
2022-08-09 22:04:18 +00:00
|
|
|
KarensRoomDoorsCallback:
|
2013-09-24 07:48:58 +00:00
|
|
|
checkevent EVENT_KARENS_ROOM_ENTRANCE_CLOSED
|
2018-01-17 18:23:43 +00:00
|
|
|
iffalse .KeepEntranceOpen
|
|
|
|
changeblock 4, 14, $2a ; wall
|
|
|
|
.KeepEntranceOpen:
|
2013-09-24 07:48:58 +00:00
|
|
|
checkevent EVENT_KARENS_ROOM_EXIT_OPEN
|
2018-01-17 18:23:43 +00:00
|
|
|
iffalse .KeepExitClosed
|
|
|
|
changeblock 4, 2, $16 ; open door
|
|
|
|
.KeepExitClosed:
|
2020-07-17 12:37:03 +00:00
|
|
|
endcallback
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2022-08-09 22:04:18 +00:00
|
|
|
KarensRoomDoorLocksBehindYouScript:
|
2018-02-28 21:50:43 +00:00
|
|
|
applymovement PLAYER, KarensRoom_EnterMovement
|
2013-02-17 06:54:07 +00:00
|
|
|
refreshscreen $86
|
2014-04-30 10:04:35 +00:00
|
|
|
playsound SFX_STRENGTH
|
2013-02-17 06:54:07 +00:00
|
|
|
earthquake 80
|
2018-01-17 18:23:43 +00:00
|
|
|
changeblock 4, 14, $2a ; wall
|
2013-02-17 06:54:07 +00:00
|
|
|
reloadmappart
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2022-07-29 21:43:10 +00:00
|
|
|
setscene SCENE_KARENSROOM_NOOP
|
2013-09-24 07:48:58 +00:00
|
|
|
setevent EVENT_KARENS_ROOM_ENTRANCE_CLOSED
|
2015-11-25 15:16:29 +00:00
|
|
|
waitsfx
|
2013-02-17 06:54:07 +00:00
|
|
|
end
|
|
|
|
|
2017-09-28 16:33:26 +00:00
|
|
|
KarenScript_Battle:
|
2013-02-17 06:54:07 +00:00
|
|
|
faceplayer
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2013-09-24 07:48:58 +00:00
|
|
|
checkevent EVENT_BEAT_ELITE_4_KAREN
|
2018-01-17 18:23:43 +00:00
|
|
|
iftrue KarenScript_AfterBattle
|
2017-09-28 16:33:26 +00:00
|
|
|
writetext KarenScript_KarenBeforeText
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
2017-09-28 16:33:26 +00:00
|
|
|
winlosstext KarenScript_KarenBeatenText, 0
|
2018-01-09 23:45:25 +00:00
|
|
|
loadtrainer KAREN, KAREN1
|
2013-02-17 06:54:07 +00:00
|
|
|
startbattle
|
2015-12-26 23:11:55 +00:00
|
|
|
reloadmapafterbattle
|
2013-09-24 07:48:58 +00:00
|
|
|
setevent EVENT_BEAT_ELITE_4_KAREN
|
2015-12-09 23:25:44 +00:00
|
|
|
opentext
|
2017-09-28 16:33:26 +00:00
|
|
|
writetext KarenScript_KarenDefeatText
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
2014-04-30 10:04:35 +00:00
|
|
|
playsound SFX_ENTER_DOOR
|
2018-01-17 18:23:43 +00:00
|
|
|
changeblock 4, 2, $16 ; open door
|
2013-02-17 06:54:07 +00:00
|
|
|
reloadmappart
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2013-09-24 07:48:58 +00:00
|
|
|
setevent EVENT_KARENS_ROOM_EXIT_OPEN
|
2015-11-25 15:16:29 +00:00
|
|
|
waitsfx
|
2013-02-17 06:54:07 +00:00
|
|
|
end
|
|
|
|
|
2018-01-17 18:23:43 +00:00
|
|
|
KarenScript_AfterBattle:
|
2017-09-28 16:33:26 +00:00
|
|
|
writetext KarenScript_KarenDefeatText
|
2015-11-25 15:16:29 +00:00
|
|
|
waitbutton
|
2013-02-17 06:54:07 +00:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-02-28 21:50:43 +00:00
|
|
|
KarensRoom_EnterMovement:
|
2016-05-14 17:46:14 +00:00
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
2013-02-17 06:54:07 +00:00
|
|
|
step_end
|
|
|
|
|
2017-09-28 16:33:26 +00:00
|
|
|
KarenScript_KarenBeforeText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "I am KAREN of the"
|
|
|
|
line "ELITE FOUR."
|
|
|
|
|
2015-06-28 04:59:17 +00:00
|
|
|
para "You're <PLAYER>?"
|
2014-03-06 05:29:44 +00:00
|
|
|
line "How amusing."
|
|
|
|
|
|
|
|
para "I love dark-type"
|
|
|
|
line "#MON."
|
|
|
|
|
|
|
|
para "I find their wild,"
|
|
|
|
line "tough image to be"
|
|
|
|
|
|
|
|
para "so appealing. And"
|
|
|
|
line "they're so strong."
|
|
|
|
|
|
|
|
para "Think you can take"
|
|
|
|
line "them? Just try to"
|
|
|
|
cont "entertain me."
|
|
|
|
|
|
|
|
para "Let's go."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-09-28 16:33:26 +00:00
|
|
|
KarenScript_KarenBeatenText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Well, aren't you"
|
|
|
|
line "good. I like that"
|
|
|
|
cont "in a trainer."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2017-09-28 16:33:26 +00:00
|
|
|
KarenScript_KarenDefeatText:
|
2014-03-06 05:29:44 +00:00
|
|
|
text "Strong #MON."
|
|
|
|
|
|
|
|
para "Weak #MON."
|
|
|
|
|
|
|
|
para "That is only the"
|
|
|
|
line "selfish perception"
|
|
|
|
cont "of people."
|
|
|
|
|
|
|
|
para "Truly skilled"
|
|
|
|
line "trainers should"
|
|
|
|
|
|
|
|
para "try to win with"
|
|
|
|
line "their favorites."
|
|
|
|
|
|
|
|
para "I like your style."
|
|
|
|
line "You understand"
|
|
|
|
cont "what's important."
|
|
|
|
|
|
|
|
para "Go on--the CHAM-"
|
|
|
|
line "PION is waiting."
|
|
|
|
done
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2018-01-17 03:57:19 +00:00
|
|
|
KarensRoom_MapEvents:
|
2018-01-30 19:15:47 +00:00
|
|
|
db 0, 0 ; filler
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2020-07-24 13:49:26 +00:00
|
|
|
def_warp_events
|
2018-02-02 03:22:07 +00:00
|
|
|
warp_event 4, 17, BRUNOS_ROOM, 3
|
|
|
|
warp_event 5, 17, BRUNOS_ROOM, 4
|
|
|
|
warp_event 4, 2, LANCES_ROOM, 1
|
|
|
|
warp_event 5, 2, LANCES_ROOM, 2
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2020-07-24 13:49:26 +00:00
|
|
|
def_coord_events
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2020-07-24 13:49:26 +00:00
|
|
|
def_bg_events
|
2013-02-17 06:54:07 +00:00
|
|
|
|
2020-07-24 13:49:26 +00:00
|
|
|
def_object_events
|
2018-02-02 03:22:07 +00:00
|
|
|
object_event 5, 7, SPRITE_KAREN, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, KarenScript_Battle, -1
|