mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
335c2699f0
# Conflicts: # constants/map_constants.asm # constants/wram_constants.asm # data/radio/oaks_pkmn_talk_routes.asm # data/radio/pnp_hidden_places.asm # engine/battle/core.asm # engine/breeding.asm # engine/phone/phone_scripts.asm # engine/radio.asm # maps/BattleTower1F.asm # maps/OlivineLighthouse2F.asm # maps/OlivineLighthouse6F.asm # maps/PokemonFanClub.asm # maps/RadioTower1F.asm # maps/RadioTower2F.asm # maps/Route30BerryHouse.asm # maps/Route34IlexForestGate.asm # maps/Route36NationalParkGate.asm # maps/RuinsOfAlphKabutoChamber.asm # maps/RuinsOfAlphResearchCenter.asm # maps/VermilionPort.asm # maps/VictoryRoad.asm
166 lines
3.4 KiB
NASM
166 lines
3.4 KiB
NASM
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
|
|
checkevent EVENT_WALL_OPENED_IN_HO_OH_CHAMBER
|
|
iftrue .OpenWall
|
|
end
|
|
|
|
.OpenWall:
|
|
priorityjump .WallOpenScript
|
|
end
|
|
|
|
.DummyScene:
|
|
end
|
|
|
|
.HiddenDoors:
|
|
checkevent EVENT_WALL_OPENED_IN_HO_OH_CHAMBER
|
|
iftrue .WallOpen
|
|
changeblock 4, 0, $2e ; closed wall
|
|
.WallOpen:
|
|
checkevent EVENT_SOLVED_HO_OH_PUZZLE
|
|
iffalse .FloorClosed
|
|
return
|
|
|
|
.FloorClosed:
|
|
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
|
|
changeblock 4, 0, $30 ; open wall
|
|
reloadmappart
|
|
earthquake 50
|
|
setscene SCENE_FINISHED
|
|
closetext
|
|
end
|
|
|
|
MapRuinsOfAlphHoOhChamberSignpost2Script:
|
|
refreshscreen
|
|
writebyte UNOWNPUZZLE_HO_OH
|
|
special UnownPuzzle
|
|
closetext
|
|
iftrue .PuzzleComplete
|
|
end
|
|
|
|
.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
|
|
changeblock 2, 2, $18 ; left hole
|
|
changeblock 4, 2, $19 ; right hole
|
|
reloadmappart
|
|
playsound SFX_STRENGTH
|
|
earthquake 80
|
|
applymovement PLAYER, MovementData_0x58610
|
|
playsound SFX_KINESIS
|
|
waitsfx
|
|
pause 20
|
|
warpcheck
|
|
end
|
|
|
|
MapRuinsOfAlphHoOhChamberSignpost1Script:
|
|
jumptext UnknownText_0x58685
|
|
|
|
MapRuinsOfAlphHoOhChamberSignpost3Script:
|
|
jumptext UnknownText_0x586aa
|
|
|
|
MapRuinsOfAlphHoOhChamberSignpost4Script:
|
|
opentext
|
|
writetext UnknownText_0x58612
|
|
writebyte UNOWNWORDS_HO_OH
|
|
special DisplayUnownWords
|
|
closetext
|
|
end
|
|
|
|
MapRuinsOfAlphHoOhChamberSignpost5Script:
|
|
checkevent EVENT_WALL_OPENED_IN_HO_OH_CHAMBER
|
|
iftrue .WallOpen
|
|
opentext
|
|
writetext UnknownText_0x58644
|
|
writebyte UNOWNWORDS_HO_OH
|
|
special DisplayUnownWords
|
|
closetext
|
|
end
|
|
|
|
.WallOpen:
|
|
opentext
|
|
writetext UnknownText_0x58665
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
MovementData_0x58610:
|
|
skyfall_top
|
|
step_end
|
|
|
|
UnknownText_0x58612:
|
|
text "Patterns appeared"
|
|
line "on the walls…"
|
|
done
|
|
|
|
; unused
|
|
UnusedText_0x58633:
|
|
text "It's UNOWN text!"
|
|
done
|
|
|
|
UnknownText_0x58644:
|
|
text "Patterns appeared"
|
|
line "on the walls…"
|
|
done
|
|
|
|
UnknownText_0x58665:
|
|
text "There's a big hole"
|
|
line "in the wall!"
|
|
done
|
|
|
|
UnknownText_0x58685:
|
|
text "It's a replica of"
|
|
line "an ancient #-"
|
|
cont "MON."
|
|
done
|
|
|
|
UnknownText_0x586aa:
|
|
text "A #MON that"
|
|
line "flew gracefully on"
|
|
|
|
para "rainbow-colored"
|
|
line "wings."
|
|
done
|
|
|
|
RuinsOfAlphHoOhChamber_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
db 5 ; warp events
|
|
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, MapRuinsOfAlphHoOhChamberSignpost1Script
|
|
bg_event 5, 3, BGEVENT_READ, MapRuinsOfAlphHoOhChamberSignpost1Script
|
|
bg_event 3, 2, BGEVENT_UP, MapRuinsOfAlphHoOhChamberSignpost2Script
|
|
bg_event 4, 2, BGEVENT_UP, MapRuinsOfAlphHoOhChamberSignpost3Script
|
|
bg_event 3, 0, BGEVENT_UP, MapRuinsOfAlphHoOhChamberSignpost4Script
|
|
bg_event 4, 0, BGEVENT_UP, MapRuinsOfAlphHoOhChamberSignpost5Script
|
|
|
|
db 0 ; object events
|