pokecrystal-board/maps/KarensRoom.asm

148 lines
2.8 KiB
NASM
Raw Normal View History

2018-01-31 08:38:45 -08:00
const_def 2 ; object constants
2015-11-26 21:22:14 -08:00
const KARENSROOM_KAREN
KarensRoom_MapScripts:
db 2 ; scene scripts
scene_script .LockDoor ; SCENE_DEFAULT
scene_script .DummyScene ; SCENE_FINISHED
db 1 ; callbacks
callback MAPCALLBACK_TILES, .KarensRoomDoors
.LockDoor:
2017-09-28 09:33:26 -07:00
priorityjump .KarensDoorLocksBehindYou
end
.DummyScene:
end
2017-09-28 09:33:26 -07:00
.KarensRoomDoors:
2013-09-24 00:48:58 -07:00
checkevent EVENT_KARENS_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_KARENS_ROOM_EXIT_OPEN
2018-01-17 10:23:43 -08:00
iffalse .KeepExitClosed
changeblock 4, 2, $16 ; open door
.KeepExitClosed:
return
2017-09-28 09:33:26 -07:00
.KarensDoorLocksBehindYou:
2018-02-28 13:50:43 -08:00
applymovement PLAYER, KarensRoom_EnterMovement
refreshscreen $86
playsound SFX_STRENGTH
earthquake 80
2018-01-17 10:23:43 -08:00
changeblock 4, 14, $2a ; wall
reloadmappart
2015-11-25 07:16:29 -08:00
closetext
setscene SCENE_FINISHED
2013-09-24 00:48:58 -07:00
setevent EVENT_KARENS_ROOM_ENTRANCE_CLOSED
2015-11-25 07:16:29 -08:00
waitsfx
end
2017-09-28 09:33:26 -07:00
KarenScript_Battle:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_BEAT_ELITE_4_KAREN
2018-01-17 10:23:43 -08:00
iftrue KarenScript_AfterBattle
2017-09-28 09:33:26 -07:00
writetext KarenScript_KarenBeforeText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
2017-09-28 09:33:26 -07:00
winlosstext KarenScript_KarenBeatenText, 0
loadtrainer KAREN, KAREN1
startbattle
reloadmapafterbattle
2013-09-24 00:48:58 -07:00
setevent EVENT_BEAT_ELITE_4_KAREN
2015-12-09 15:25:44 -08:00
opentext
2017-09-28 09:33:26 -07:00
writetext KarenScript_KarenDefeatText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
playsound SFX_ENTER_DOOR
2018-01-17 10:23:43 -08:00
changeblock 4, 2, $16 ; open door
reloadmappart
2015-11-25 07:16:29 -08:00
closetext
2013-09-24 00:48:58 -07:00
setevent EVENT_KARENS_ROOM_EXIT_OPEN
2015-11-25 07:16:29 -08:00
waitsfx
end
2018-01-17 10:23:43 -08:00
KarenScript_AfterBattle:
2017-09-28 09:33:26 -07:00
writetext KarenScript_KarenDefeatText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 13:50:43 -08:00
KarensRoom_EnterMovement:
2016-05-14 10:46:14 -07:00
step UP
step UP
step UP
step UP
step_end
2017-09-28 09:33:26 -07:00
KarenScript_KarenBeforeText:
text "I am KAREN of the"
line "ELITE FOUR."
para "You're <PLAYER>?"
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
2017-09-28 09:33:26 -07:00
KarenScript_KarenBeatenText:
text "Well, aren't you"
line "good. I like that"
cont "in a trainer."
done
2017-09-28 09:33:26 -07:00
KarenScript_KarenDefeatText:
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
KarensRoom_MapEvents:
db 0, 0 ; filler
db 4 ; warp events
2018-02-01 19:22:07 -08: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
db 0 ; coord events
db 0 ; bg events
db 1 ; object events
2018-02-01 19:22:07 -08:00
object_event 5, 7, SPRITE_KAREN, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, KarenScript_Battle, -1