mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
153 lines
2.6 KiB
NASM
153 lines
2.6 KiB
NASM
const_value set 2
|
|
const CINNABARISLAND_BLUE
|
|
|
|
CinnabarIsland_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 1
|
|
|
|
; callbacks
|
|
dbw 5, .FlyPoint
|
|
|
|
.FlyPoint
|
|
setflag ENGINE_FLYPOINT_CINNABAR
|
|
return
|
|
|
|
CinnabarIslandBlue:
|
|
faceplayer
|
|
opentext
|
|
writetext CinnabarIslandBlueText
|
|
waitbutton
|
|
closetext
|
|
playsound SFX_WARP_TO
|
|
applymovement CINNABARISLAND_BLUE, CinnabarIslandBlueTeleport
|
|
disappear CINNABARISLAND_BLUE
|
|
clearevent EVENT_VIRIDIAN_GYM_BLUE
|
|
end
|
|
|
|
CinnabarIslandGymSign:
|
|
jumptext CinnabarIslandGymSignText
|
|
|
|
CinnabarIslandSign:
|
|
jumptext CinnabarIslandSignText
|
|
|
|
CinnabarIslandPokeCenterSign:
|
|
jumpstd pokecentersign
|
|
|
|
CinnabarIslandHiddenRareCandy:
|
|
dwb EVENT_CINNABAR_ISLAND_HIDDEN_RARE_CANDY, RARE_CANDY
|
|
|
|
CinnabarIslandBlueTeleport:
|
|
teleport_from
|
|
step_end
|
|
|
|
CinnabarIslandBlueText:
|
|
text "Who are you?"
|
|
|
|
para "Well, it's plain"
|
|
line "to see that you're"
|
|
cont "a trainer…"
|
|
|
|
para "My name's BLUE."
|
|
|
|
para "I was once the"
|
|
line "CHAMPION, although"
|
|
|
|
para "it was for only a"
|
|
line "short time…"
|
|
|
|
para "That meddling RED"
|
|
line "did me in…"
|
|
|
|
para "Anyway, what do"
|
|
line "you want? You want"
|
|
|
|
para "to challenge me or"
|
|
line "something?"
|
|
|
|
para "…I hate to say"
|
|
line "it, but I'm not in"
|
|
|
|
para "the mood for a"
|
|
line "battle now."
|
|
|
|
para "Take a good look"
|
|
line "around you…"
|
|
|
|
para "A volcano erupts,"
|
|
line "and just like"
|
|
|
|
para "that, a whole town"
|
|
line "disappears."
|
|
|
|
para "We can go on win-"
|
|
line "ning and losing in"
|
|
|
|
para "#MON. But if"
|
|
line "nature so much as"
|
|
|
|
para "twitches, we can"
|
|
line "lose in a second."
|
|
|
|
para "…"
|
|
|
|
para "That's the way it"
|
|
line "is…"
|
|
|
|
para "But, anyway, I'm"
|
|
line "still a trainer."
|
|
|
|
para "If I see a strong"
|
|
line "opponent, it makes"
|
|
cont "me want to battle."
|
|
|
|
para "If you want to"
|
|
line "battle me, come to"
|
|
cont "the VIRIDIAN GYM."
|
|
|
|
para "I'll take you on"
|
|
line "then."
|
|
done
|
|
|
|
CinnabarIslandGymSignText:
|
|
text "There's a notice"
|
|
line "here…"
|
|
|
|
para "CINNABAR GYM has"
|
|
line "relocated to SEA-"
|
|
cont "FOAM ISLANDS."
|
|
|
|
para "BLAINE"
|
|
done
|
|
|
|
CinnabarIslandSignText:
|
|
text "CINNABAR ISLAND"
|
|
|
|
para "The Fiery Town of"
|
|
line "Burning Desire"
|
|
done
|
|
|
|
CinnabarIsland_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 1
|
|
warp_def $b, $b, 1, CINNABAR_POKECENTER_1F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 4
|
|
signpost 11, 12, SIGNPOST_READ, CinnabarIslandPokeCenterSign
|
|
signpost 11, 9, SIGNPOST_READ, CinnabarIslandGymSign
|
|
signpost 7, 7, SIGNPOST_READ, CinnabarIslandSign
|
|
signpost 1, 9, SIGNPOST_ITEM, CinnabarIslandHiddenRareCandy
|
|
|
|
.PersonEvents:
|
|
db 1
|
|
person_event SPRITE_BLUE, 6, 9, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, CinnabarIslandBlue, EVENT_BLUE_IN_CINNABAR
|