2019-04-21 14:42:25 -07:00
|
|
|
object_const_def ; object_event constants
|
2015-11-26 21:22:14 -08:00
|
|
|
const RUINSOFALPHKABUTOCHAMBER_RECEPTIONIST
|
|
|
|
const RUINSOFALPHKABUTOCHAMBER_SCIENTIST
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
RuinsOfAlphKabutoChamber_MapScripts:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; scene scripts
|
2018-02-01 09:40:58 -08:00
|
|
|
scene_script .CheckWall ; SCENE_DEFAULT
|
2018-02-01 12:06:06 -08:00
|
|
|
scene_script .DummyScene ; SCENE_FINISHED
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 1 ; callbacks
|
2018-01-12 21:47:38 -08:00
|
|
|
callback MAPCALLBACK_TILES, .HiddenDoors
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.CheckWall:
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_WALL_OPENED_IN_KABUTO_CHAMBER
|
2017-12-10 14:53:21 -08:00
|
|
|
iftrue .OpenWall
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.OpenWall:
|
2019-03-10 13:39:31 -07:00
|
|
|
prioritysjump .WallOpenScript
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.DummyScene:
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.HiddenDoors:
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_WALL_OPENED_IN_KABUTO_CHAMBER
|
2017-12-10 14:53:21 -08:00
|
|
|
iftrue .WallOpen
|
2018-01-17 10:23:43 -08:00
|
|
|
changeblock 4, 0, $2e ; closed wall
|
2017-12-10 14:53:21 -08:00
|
|
|
.WallOpen:
|
2015-07-20 00:51:52 -07:00
|
|
|
checkevent EVENT_SOLVED_KABUTO_PUZZLE
|
2017-12-10 14:53:21 -08:00
|
|
|
iffalse .FloorClosed
|
2020-07-17 05:37:03 -07:00
|
|
|
endcallback
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.FloorClosed:
|
2018-01-17 10:23:43 -08:00
|
|
|
changeblock 2, 2, $01 ; left floor
|
|
|
|
changeblock 4, 2, $02 ; right floor
|
2020-07-17 05:37:03 -07:00
|
|
|
endcallback
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.WallOpenScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 30
|
|
|
|
earthquake 30
|
2015-07-21 23:49:18 -07:00
|
|
|
showemote EMOTE_SHOCK, PLAYER, 20
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 30
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_STRENGTH
|
2018-01-17 10:23:43 -08:00
|
|
|
changeblock 4, 0, $30 ; open wall
|
2013-02-16 22:54:07 -08:00
|
|
|
reloadmappart
|
|
|
|
earthquake 50
|
2018-02-01 12:06:06 -08:00
|
|
|
setscene SCENE_FINISHED
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
RuinsOfAlphKabutoChamberReceptionistScript:
|
|
|
|
jumptextfaceplayer RuinsOfAlphKabutoChamberReceptionistText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberPuzzle:
|
2018-01-11 22:40:20 -08:00
|
|
|
refreshscreen
|
2019-03-10 12:31:59 -07:00
|
|
|
setval UNOWNPUZZLE_KABUTO
|
2018-01-24 08:17:05 -08:00
|
|
|
special UnownPuzzle
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2018-02-02 08:31:43 -08:00
|
|
|
iftrue .PuzzleComplete
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2018-02-02 08:31:43 -08:00
|
|
|
.PuzzleComplete:
|
2015-07-18 12:46:38 -07:00
|
|
|
setevent EVENT_RUINS_OF_ALPH_INNER_CHAMBER_TOURISTS
|
2015-07-20 00:51:52 -07:00
|
|
|
setevent EVENT_SOLVED_KABUTO_PUZZLE
|
2018-01-22 10:00:35 -08:00
|
|
|
setflag ENGINE_UNLOCKED_UNOWNS_A_TO_K
|
2015-07-18 12:46:38 -07:00
|
|
|
setevent EVENT_RUINS_OF_ALPH_KABUTO_CHAMBER_RECEPTIONIST
|
2018-02-01 09:40:58 -08:00
|
|
|
setmapscene RUINS_OF_ALPH_INNER_CHAMBER, SCENE_RUINSOFALPHINNERCHAMBER_STRANGE_PRESENCE
|
2013-02-16 22:54:07 -08:00
|
|
|
earthquake 30
|
2015-07-21 23:49:18 -07:00
|
|
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
reloadmappart
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_STRENGTH
|
2013-02-16 22:54:07 -08:00
|
|
|
earthquake 80
|
2018-02-28 13:50:43 -08:00
|
|
|
applymovement PLAYER, RuinsOfAlphKabutoChamberSkyfallTopMovement
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_KINESIS
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 20
|
|
|
|
warpcheck
|
|
|
|
end
|
|
|
|
|
2018-02-28 14:47:31 -08:00
|
|
|
RuinsOfAlphKabutoChamberScientistScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2019-03-10 12:31:59 -07:00
|
|
|
readvar VAR_UNOWNCOUNT
|
2018-02-25 17:39:54 -08:00
|
|
|
ifequal NUM_UNOWN, .AllUnownCaught
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_WALL_OPENED_IN_KABUTO_CHAMBER
|
2018-02-02 08:31:43 -08:00
|
|
|
iftrue .WallOpen
|
2015-07-20 00:51:52 -07:00
|
|
|
checkevent EVENT_SOLVED_KABUTO_PUZZLE
|
2018-02-02 08:31:43 -08:00
|
|
|
iffalse .PuzzleIncomplete
|
2019-10-20 15:24:17 -07:00
|
|
|
writetext RuinsOfAlphKabutoChamberScientistTremorText
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2018-02-02 08:31:43 -08:00
|
|
|
.PuzzleIncomplete:
|
2019-10-20 15:24:17 -07:00
|
|
|
writetext RuinsOfAlphKabutoChamberScientistCrypticText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject RUINSOFALPHKABUTOCHAMBER_SCIENTIST, UP
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2018-02-02 08:31:43 -08:00
|
|
|
.WallOpen:
|
2019-10-20 15:24:17 -07:00
|
|
|
writetext RuinsOfAlphKabutoChamberScientistHoleText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-02-02 08:31:43 -08:00
|
|
|
.AllUnownCaught:
|
2018-03-01 14:33:43 -08:00
|
|
|
writetext RuinsOfAlphResearchCenterScientist1Text_GotAllUnown
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberAncientReplica:
|
|
|
|
jumptext RuinsOfAlphKabutoChamberAncientReplicaText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberDescriptionSign:
|
|
|
|
jumptext RuinsOfAlphKabutoChamberDescriptionText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberWallPatternLeft:
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2018-02-27 16:33:38 -08:00
|
|
|
writetext RuinsOfAlphKabutoChamberWallPatternLeftText
|
2019-03-10 12:31:59 -07:00
|
|
|
setval UNOWNWORDS_ESCAPE
|
2018-01-24 08:17:05 -08:00
|
|
|
special DisplayUnownWords
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberWallPatternRight:
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_WALL_OPENED_IN_KABUTO_CHAMBER
|
2018-02-02 08:31:43 -08:00
|
|
|
iftrue .WallOpen
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2018-02-27 16:33:38 -08:00
|
|
|
writetext RuinsOfAlphKabutoChamberWallPatternRightText
|
2019-03-10 12:31:59 -07:00
|
|
|
setval UNOWNWORDS_ESCAPE
|
2018-01-24 08:17:05 -08:00
|
|
|
special DisplayUnownWords
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2018-02-02 08:31:43 -08:00
|
|
|
.WallOpen:
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2018-02-27 16:33:38 -08:00
|
|
|
writetext RuinsOfAlphKabutoChamberWallHoleText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2018-02-28 13:50:43 -08:00
|
|
|
RuinsOfAlphKabutoChamberSkyfallTopMovement:
|
2018-01-09 15:45:25 -08:00
|
|
|
skyfall_top
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2017-12-17 16:48:04 -08:00
|
|
|
RuinsOfAlphKabutoChamberReceptionistText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Welcome to this"
|
|
|
|
line "chamber."
|
|
|
|
|
|
|
|
para "There are sliding"
|
|
|
|
line "panels that depict"
|
|
|
|
|
|
|
|
para "a #MON drawn by"
|
|
|
|
line "the ancients."
|
|
|
|
|
|
|
|
para "Slide the panels"
|
|
|
|
line "around to form the"
|
|
|
|
cont "picture."
|
|
|
|
|
|
|
|
para "To the right is a"
|
|
|
|
line "description of the"
|
|
|
|
cont "#MON."
|
|
|
|
|
|
|
|
para "Scientists in the"
|
|
|
|
line "back are examining"
|
|
|
|
|
|
|
|
para "some newly found"
|
|
|
|
line "patterns."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
RuinsOfAlphKabutoChamberScientistCrypticText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Recently, strange,"
|
|
|
|
line "cryptic patterns"
|
|
|
|
cont "have appeared."
|
|
|
|
|
|
|
|
para "It's odd. They"
|
|
|
|
line "weren't here a"
|
|
|
|
cont "little while ago…"
|
|
|
|
|
|
|
|
para "You should take a"
|
|
|
|
line "look at the walls."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
RuinsOfAlphKabutoChamberScientistHoleText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Ah! Here's another"
|
|
|
|
line "huge hole!"
|
|
|
|
|
|
|
|
para "It's big enough to"
|
|
|
|
line "go through!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2019-10-20 15:24:17 -07:00
|
|
|
RuinsOfAlphKabutoChamberScientistTremorText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "That tremor was"
|
|
|
|
line "pretty scary!"
|
|
|
|
|
|
|
|
para "But I'm more"
|
|
|
|
line "concerned about"
|
|
|
|
cont "this wall here…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-28 14:47:31 -08:00
|
|
|
RuinsOfAlphKabutoChamberUnusedText:
|
2018-02-27 16:33:38 -08:00
|
|
|
; unused
|
2014-03-05 21:29:44 -08:00
|
|
|
text "The patterns on"
|
|
|
|
line "the wall appear to"
|
|
|
|
cont "be words!"
|
|
|
|
|
|
|
|
para "And those sliding"
|
|
|
|
line "stone panels seem"
|
|
|
|
|
|
|
|
para "to be signals of"
|
|
|
|
line "some kind."
|
|
|
|
|
|
|
|
para "I think they make"
|
|
|
|
line "#MON appear,"
|
|
|
|
|
|
|
|
para "but it's not clear"
|
|
|
|
line "yet…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberWallPatternLeftText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Patterns appeared"
|
|
|
|
line "on the walls…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberUnownText:
|
2018-01-02 10:38:56 -08:00
|
|
|
; unused
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It's UNOWN text!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberWallPatternRightText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Patterns appeared"
|
|
|
|
line "on the walls…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberWallHoleText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "There's a big hole"
|
|
|
|
line "in the wall!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberAncientReplicaText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It's a replica of"
|
|
|
|
line "an ancient #-"
|
|
|
|
cont "MON."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-27 16:33:38 -08:00
|
|
|
RuinsOfAlphKabutoChamberDescriptionText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "A #MON that hid"
|
|
|
|
line "on the sea floor."
|
|
|
|
|
|
|
|
para "Eyes on its back"
|
|
|
|
line "scanned the area."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
RuinsOfAlphKabutoChamber_MapEvents:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0, 0 ; filler
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 5 ; warp events
|
2018-02-01 19:22:07 -08:00
|
|
|
warp_event 3, 9, RUINS_OF_ALPH_OUTSIDE, 2
|
|
|
|
warp_event 4, 9, RUINS_OF_ALPH_OUTSIDE, 2
|
|
|
|
warp_event 3, 3, RUINS_OF_ALPH_INNER_CHAMBER, 4
|
|
|
|
warp_event 4, 3, RUINS_OF_ALPH_INNER_CHAMBER, 5
|
|
|
|
warp_event 4, 0, RUINS_OF_ALPH_KABUTO_ITEM_ROOM, 1
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0 ; coord events
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 6 ; bg events
|
2018-02-27 16:33:38 -08:00
|
|
|
bg_event 2, 3, BGEVENT_READ, RuinsOfAlphKabutoChamberAncientReplica
|
|
|
|
bg_event 5, 3, BGEVENT_READ, RuinsOfAlphKabutoChamberAncientReplica
|
|
|
|
bg_event 3, 2, BGEVENT_UP, RuinsOfAlphKabutoChamberPuzzle
|
|
|
|
bg_event 4, 2, BGEVENT_UP, RuinsOfAlphKabutoChamberDescriptionSign
|
|
|
|
bg_event 3, 0, BGEVENT_UP, RuinsOfAlphKabutoChamberWallPatternLeft
|
|
|
|
bg_event 4, 0, BGEVENT_UP, RuinsOfAlphKabutoChamberWallPatternRight
|
2017-12-24 10:46:34 -08:00
|
|
|
|
2018-01-30 11:15:47 -08:00
|
|
|
db 2 ; object events
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 5, 5, SPRITE_RECEPTIONIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, RuinsOfAlphKabutoChamberReceptionistScript, EVENT_RUINS_OF_ALPH_KABUTO_CHAMBER_RECEPTIONIST
|
2018-02-28 14:47:31 -08:00
|
|
|
object_event 3, 1, SPRITE_SCIENTIST, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, RuinsOfAlphKabutoChamberScientistScript, -1
|