pokecrystal-board/maps/BrunosRoom.asm

140 lines
2.6 KiB
NASM
Raw Normal View History

object_const_def
2015-11-26 21:22:14 -08:00
const BRUNOSROOM_BRUNO
BrunosRoom_MapScripts:
def_scene_scripts
scene_script .LockDoor ; SCENE_DEFAULT
scene_script .DummyScene ; SCENE_FINISHED
def_callbacks
callback MAPCALLBACK_TILES, .BrunosRoomDoors
.LockDoor:
2021-06-08 17:35:04 -07:00
sdefer .BrunosDoorLocksBehindYou
end
.DummyScene:
end
2016-01-06 13:59:56 -08:00
.BrunosRoomDoors:
checkevent EVENT_BRUNOS_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_BRUNOS_ROOM_EXIT_OPEN
2018-01-17 10:23:43 -08:00
iffalse .KeepExitClosed
changeblock 4, 2, $16 ; open door
.KeepExitClosed:
endcallback
2017-09-28 09:33:26 -07:00
.BrunosDoorLocksBehindYou:
2018-01-17 10:23:43 -08:00
applymovement PLAYER, BrunosRoom_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
setevent EVENT_BRUNOS_ROOM_ENTRANCE_CLOSED
2015-11-25 07:16:29 -08:00
waitsfx
end
2017-09-28 09:33:26 -07:00
BrunoScript_Battle:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-07-10 01:20:21 -07:00
checkevent EVENT_BEAT_ELITE_4_BRUNO
2018-01-17 10:23:43 -08:00
iftrue BrunoScript_AfterBattle
2017-09-28 09:33:26 -07:00
writetext BrunoScript_BrunoBeforeText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
2017-09-28 09:33:26 -07:00
winlosstext BrunoScript_BrunoBeatenText, 0
loadtrainer BRUNO, BRUNO1
startbattle
reloadmapafterbattle
2015-07-10 01:20:21 -07:00
setevent EVENT_BEAT_ELITE_4_BRUNO
2015-12-09 15:25:44 -08:00
opentext
2017-09-28 09:33:26 -07:00
writetext BrunoScript_BrunoDefeatText
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_BRUNOS_ROOM_EXIT_OPEN
2015-11-25 07:16:29 -08:00
waitsfx
end
2018-01-17 10:23:43 -08:00
BrunoScript_AfterBattle:
2017-09-28 09:33:26 -07:00
writetext BrunoScript_BrunoDefeatText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-01-17 10:23:43 -08:00
BrunosRoom_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
BrunoScript_BrunoBeforeText:
text "I am BRUNO of the"
line "ELITE FOUR."
para "I always train to"
line "the extreme be-"
cont "cause I believe in"
cont "our potential."
para "That is how we"
line "became strong."
para "Can you withstand"
line "our power?"
para "Hm? I see no fear"
line "in you. You look"
para "determined. Per-"
line "fect for battle!"
para "Ready, <PLAYER>?"
line "You will bow down"
para "to our overwhelm-"
line "ing power!"
para "Hoo hah!"
done
2017-09-28 09:33:26 -07:00
BrunoScript_BrunoBeatenText:
text "Why? How could we"
line "lose?"
done
2017-09-28 09:33:26 -07:00
BrunoScript_BrunoDefeatText:
text "Having lost, I"
line "have no right to"
cont "say anything…"
para "Go face your next"
line "challenge!"
done
BrunosRoom_MapEvents:
db 0, 0 ; filler
def_warp_events
2018-02-01 19:22:07 -08:00
warp_event 4, 17, KOGAS_ROOM, 3
warp_event 5, 17, KOGAS_ROOM, 4
warp_event 4, 2, KARENS_ROOM, 1
warp_event 5, 2, KARENS_ROOM, 2
def_coord_events
def_bg_events
def_object_events
2018-02-01 19:22:07 -08:00
object_event 5, 7, SPRITE_BRUNO, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, BrunoScript_Battle, -1