pokecrystal-board/maps/RuinsOfAlphHoOhChamber.asm

166 lines
3.6 KiB
NASM
Raw Normal View History

RuinsOfAlphHoOhChamber_MapScripts:
db 2 ; scene scripts
scene_script .CheckWall ; SCENE_DEFAULT
scene_script .DummyScene ; SCENE_FINISHED
db 1 ; callbacks
callback MAPCALLBACK_TILES, .HiddenDoors
.CheckWall:
special HoOhChamber
2013-09-24 00:48:58 -07:00
checkevent EVENT_WALL_OPENED_IN_HO_OH_CHAMBER
iftrue .OpenWall
end
.OpenWall:
prioritysjump .WallOpenScript
end
.DummyScene:
end
.HiddenDoors:
2013-09-24 00:48:58 -07:00
checkevent EVENT_WALL_OPENED_IN_HO_OH_CHAMBER
iftrue .WallOpen
2018-01-17 10:23:43 -08:00
changeblock 4, 0, $2e ; closed wall
.WallOpen:
checkevent EVENT_SOLVED_HO_OH_PUZZLE
iffalse .FloorClosed
return
.FloorClosed:
2018-01-17 10:23:43 -08:00
changeblock 2, 2, $01 ; left floor
changeblock 4, 2, $02 ; right floor
return
.WallOpenScript:
pause 30
earthquake 30
showemote EMOTE_SHOCK, PLAYER, 20
pause 30
playsound SFX_STRENGTH
2018-01-17 10:23:43 -08:00
changeblock 4, 0, $30 ; open wall
reloadmappart
earthquake 50
setscene SCENE_FINISHED
2015-11-25 07:16:29 -08:00
closetext
end
RuinsOfAlphHoOhChamberPuzzle:
2018-01-11 22:40:20 -08:00
refreshscreen
setval UNOWNPUZZLE_HO_OH
special UnownPuzzle
2015-11-25 07:16:29 -08:00
closetext
2018-02-02 08:31:43 -08:00
iftrue .PuzzleComplete
end
2018-02-02 08:31:43 -08:00
.PuzzleComplete:
setevent EVENT_RUINS_OF_ALPH_INNER_CHAMBER_TOURISTS
setevent EVENT_SOLVED_HO_OH_PUZZLE
setflag ENGINE_UNLOCKED_UNOWNS_X_TO_Z
setmapscene RUINS_OF_ALPH_INNER_CHAMBER, SCENE_RUINSOFALPHINNERCHAMBER_STRANGE_PRESENCE
earthquake 30
showemote EMOTE_SHOCK, PLAYER, 15
2018-01-17 10:23:43 -08:00
changeblock 2, 2, $18 ; left hole
changeblock 4, 2, $19 ; right hole
reloadmappart
playsound SFX_STRENGTH
earthquake 80
2018-02-28 13:50:43 -08:00
applymovement PLAYER, RuinsOfAlphHoOhChamberSkyfallTopMovement
playsound SFX_KINESIS
2015-11-25 07:16:29 -08:00
waitsfx
pause 20
warpcheck
end
RuinsOfAlphHoOhChamberAncientReplica:
jumptext RuinsOfAlphHoOhChamberAncientReplicaText
RuinsOfAlphHoOhChamberDescriptionSign:
jumptext RuinsOfAlphHoOhChamberDescriptionText
RuinsOfAlphHoOhChamberWallPatternLeft:
2015-12-09 15:25:44 -08:00
opentext
writetext RuinsOfAlphHoOhChamberWallPatternLeftText
setval UNOWNWORDS_HO_OH
special DisplayUnownWords
2015-11-25 07:16:29 -08:00
closetext
end
RuinsOfAlphHoOhChamberWallPatternRight:
2013-09-24 00:48:58 -07:00
checkevent EVENT_WALL_OPENED_IN_HO_OH_CHAMBER
2018-02-02 08:31:43 -08:00
iftrue .WallOpen
2015-12-09 15:25:44 -08:00
opentext
writetext RuinsOfAlphHoOhChamberWallPatternRightText
setval UNOWNWORDS_HO_OH
special DisplayUnownWords
2015-11-25 07:16:29 -08:00
closetext
end
2018-02-02 08:31:43 -08:00
.WallOpen:
2015-12-09 15:25:44 -08:00
opentext
writetext RuinsOfAlphHoOhChamberWallHoleText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 13:50:43 -08:00
RuinsOfAlphHoOhChamberSkyfallTopMovement:
skyfall_top
step_end
RuinsOfAlphHoOhChamberWallPatternLeftText:
text "Patterns appeared"
line "on the walls…"
done
RuinsOfAlphHoOhChamberUnownText:
; unused
text "It's UNOWN text!"
done
RuinsOfAlphHoOhChamberWallPatternRightText:
text "Patterns appeared"
line "on the walls…"
done
RuinsOfAlphHoOhChamberWallHoleText:
text "There's a big hole"
line "in the wall!"
done
RuinsOfAlphHoOhChamberAncientReplicaText:
text "It's a replica of"
line "an ancient #-"
cont "MON."
done
RuinsOfAlphHoOhChamberDescriptionText:
text "A #MON that"
line "flew gracefully on"
para "rainbow-colored"
line "wings."
done
RuinsOfAlphHoOhChamber_MapEvents:
db 0, 0 ; filler
db 5 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 3, 9, RUINS_OF_ALPH_OUTSIDE, 1
warp_event 4, 9, RUINS_OF_ALPH_OUTSIDE, 1
warp_event 3, 3, RUINS_OF_ALPH_INNER_CHAMBER, 2
warp_event 4, 3, RUINS_OF_ALPH_INNER_CHAMBER, 3
warp_event 4, 0, RUINS_OF_ALPH_HO_OH_ITEM_ROOM, 1
db 0 ; coord events
db 6 ; bg events
bg_event 2, 3, BGEVENT_READ, RuinsOfAlphHoOhChamberAncientReplica
bg_event 5, 3, BGEVENT_READ, RuinsOfAlphHoOhChamberAncientReplica
bg_event 3, 2, BGEVENT_UP, RuinsOfAlphHoOhChamberPuzzle
bg_event 4, 2, BGEVENT_UP, RuinsOfAlphHoOhChamberDescriptionSign
bg_event 3, 0, BGEVENT_UP, RuinsOfAlphHoOhChamberWallPatternLeft
bg_event 4, 0, BGEVENT_UP, RuinsOfAlphHoOhChamberWallPatternRight
db 0 ; object events