mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
432df825d4
Updated macros that rely on the GROUP_, MAP_ constants to use the map macro Added GROUP_NONE and MAP_NONE for the sake of compatibility with this new scheme Added new macro elevfloor to simplify the definition of elevators under this new scheme
74 lines
1.2 KiB
NASM
74 lines
1.2 KiB
NASM
CeladonMansion2F_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
CeladonMansion2FComputer:
|
|
jumptext CeladonMansion2FComputerText
|
|
|
|
CeladonMansion2FSign:
|
|
jumptext CeladonMansion2FSignText
|
|
|
|
CeladonMansion2FBookshelf:
|
|
jumpstd difficultbookshelf
|
|
|
|
CeladonMansion2FComputerText:
|
|
text "<PLAYER> turned on"
|
|
line "the PC."
|
|
|
|
para "…"
|
|
|
|
para "Someone was in the"
|
|
line "middle of compos-"
|
|
cont "ing an e-mail."
|
|
|
|
para "…I hope you'll"
|
|
line "come visit KANTO."
|
|
|
|
para "I think you'll be"
|
|
line "surprised at how"
|
|
|
|
para "much things have"
|
|
line "changed here."
|
|
|
|
para "You'll also see"
|
|
line "many #MON that"
|
|
|
|
para "aren't native to"
|
|
line "JOHTO."
|
|
|
|
para "To the PRODUCER"
|
|
|
|
para "…"
|
|
done
|
|
|
|
CeladonMansion2FSignText:
|
|
text "GAME FREAK"
|
|
line "MEETING ROOM"
|
|
done
|
|
|
|
CeladonMansion2F_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 4
|
|
warp_def $0, $0, 4, CELADON_MANSION_1F
|
|
warp_def $0, $1, 2, CELADON_MANSION_3F
|
|
warp_def $0, $6, 3, CELADON_MANSION_3F
|
|
warp_def $0, $7, 5, CELADON_MANSION_1F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 3
|
|
signpost 3, 0, SIGNPOST_READ, CeladonMansion2FComputer
|
|
signpost 8, 5, SIGNPOST_UP, CeladonMansion2FSign
|
|
signpost 3, 2, SIGNPOST_READ, CeladonMansion2FBookshelf
|
|
|
|
.PersonEvents:
|
|
db 0
|