pokecrystal-board/maps/KarensRoom.asm

155 lines
2.6 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const KARENSROOM_KAREN
2015-07-10 01:20:21 -07:00
KarensRoom_MapScriptHeader:
.SceneScripts:
db 2
scene_script .LockDoor
scene_script .DummyScene
.MapCallbacks:
db 1
2017-09-28 09:33:26 -07:00
dbw 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
2017-09-28 09:33:26 -07:00
iffalse .KeepDoorsClosed
changeblock $4, $e, $2a
2017-09-28 09:33:26 -07:00
.KeepDoorsClosed:
2013-09-24 00:48:58 -07:00
checkevent EVENT_KARENS_ROOM_EXIT_OPEN
2017-09-28 09:33:26 -07:00
iffalse .OpenDoors
changeblock $4, $2, $16
2017-09-28 09:33:26 -07:00
.OpenDoors:
return
2017-09-28 09:33:26 -07:00
.KarensDoorLocksBehindYou:
applymovement PLAYER, MovementData_0x180c22
refreshscreen $86
playsound SFX_STRENGTH
earthquake 80
changeblock $4, $e, $2a
reloadmappart
2015-11-25 07:16:29 -08:00
closetext
setscene $1
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
iftrue UnknownScript_0x180c1c
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, 1
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
changeblock $4, $2, $16
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
2015-07-10 01:20:21 -07:00
UnknownScript_0x180c1c:
2017-09-28 09:33:26 -07:00
writetext KarenScript_KarenDefeatText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:20:21 -07:00
MovementData_0x180c22:
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
2015-07-10 01:20:21 -07:00
KarensRoom_MapEventHeader:
; filler
db 0, 0
.Warps:
db 4
warp_def $11, $4, 3, BRUNOS_ROOM
warp_def $11, $5, 4, BRUNOS_ROOM
warp_def $2, $4, 1, LANCES_ROOM
warp_def $2, $5, 2, LANCES_ROOM
.CoordEvents:
db 0
.BGEvents:
db 0
.ObjectEvents:
db 1
object_event SPRITE_KAREN, 7, 5, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, KarenScript_Battle, -1