mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
136 lines
2.8 KiB
NASM
136 lines
2.8 KiB
NASM
LavenderTown_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 1
|
|
|
|
; callbacks
|
|
dbw 5, .FlyPoint
|
|
|
|
.FlyPoint
|
|
setflag ENGINE_FLYPOINT_LAVENDER
|
|
return
|
|
|
|
PokefanMScript_0x1ad6e4:
|
|
jumptextfaceplayer UnknownText_0x1ad702
|
|
|
|
TeacherScript_0x1ad6e7:
|
|
jumptextfaceplayer UnknownText_0x1ad73a
|
|
|
|
GrampsScript_0x1ad6ea:
|
|
jumptextfaceplayer UnknownText_0x1ad75c
|
|
|
|
YoungsterScript_0x1ad6ed:
|
|
jumptextfaceplayer UnknownText_0x1ad7ac
|
|
|
|
LavenderTownSign:
|
|
jumptext LavenderTownSignText
|
|
|
|
KantoRadioStationSign:
|
|
jumptext KantoRadioStationSignText
|
|
|
|
VolunteerPokemonHouseSign:
|
|
jumptext VolunteerPokemonHouseSignText
|
|
|
|
SoulHouseSign:
|
|
jumptext SoulHouseSignText
|
|
|
|
LavenderPokeCenterSignText:
|
|
jumpstd pokecentersign
|
|
|
|
LavenderMartSignText:
|
|
jumpstd martsign
|
|
|
|
UnknownText_0x1ad702:
|
|
text "That's quite some"
|
|
line "building, eh?"
|
|
|
|
para "It's KANTO's RADIO"
|
|
line "TOWER."
|
|
done
|
|
|
|
UnknownText_0x1ad73a:
|
|
text "KANTO has many"
|
|
line "good radio shows."
|
|
done
|
|
|
|
UnknownText_0x1ad75c:
|
|
text "People come from"
|
|
line "all over to pay"
|
|
|
|
para "their respects to"
|
|
line "the departed souls"
|
|
cont "of #MON."
|
|
done
|
|
|
|
UnknownText_0x1ad7ac:
|
|
text "You need a #"
|
|
line "FLUTE to wake"
|
|
cont "sleeping #MON."
|
|
|
|
para "Every trainer has"
|
|
line "to know that!"
|
|
done
|
|
|
|
LavenderTownSignText:
|
|
text "LAVENDER TOWN"
|
|
|
|
para "The Noble Purple"
|
|
line "Town"
|
|
done
|
|
|
|
KantoRadioStationSignText:
|
|
text "KANTO RADIO"
|
|
line "STATION"
|
|
|
|
para "Your Favorite"
|
|
line "Programs On-Air"
|
|
cont "Around the Clock!"
|
|
done
|
|
|
|
VolunteerPokemonHouseSignText:
|
|
text "LAVENDER VOLUNTEER"
|
|
line "#MON HOUSE"
|
|
done
|
|
|
|
SoulHouseSignText:
|
|
text "SOUL HOUSE"
|
|
|
|
para "May the Souls of"
|
|
line "#MON Rest Easy"
|
|
done
|
|
|
|
LavenderTown_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 7
|
|
warp_def $5, $5, 1, LAVENDER_POKECENTER_1F
|
|
warp_def $9, $5, 1, MR_FUJIS_HOUSE
|
|
warp_def $d, $3, 1, LAVENDER_TOWN_SPEECH_HOUSE
|
|
warp_def $d, $7, 1, LAVENDER_NAME_RATER
|
|
warp_def $5, $1, 2, LAVENDER_MART
|
|
warp_def $b, $d, 1, SOUL_HOUSE
|
|
warp_def $5, $e, 1, LAV_RADIO_TOWER_1F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 6
|
|
signpost 3, 11, SIGNPOST_READ, LavenderTownSign
|
|
signpost 7, 15, SIGNPOST_READ, KantoRadioStationSign
|
|
signpost 9, 3, SIGNPOST_READ, VolunteerPokemonHouseSign
|
|
signpost 13, 15, SIGNPOST_READ, SoulHouseSign
|
|
signpost 5, 6, SIGNPOST_READ, LavenderPokeCenterSignText
|
|
signpost 5, 2, SIGNPOST_READ, LavenderMartSignText
|
|
|
|
.PersonEvents:
|
|
db 4
|
|
person_event SPRITE_POKEFAN_M, 7 + 4, 12 + 4, $5, 0, 1, -1, -1, (1 << 3) | PAL_OW_RED, 0, 0, PokefanMScript_0x1ad6e4, -1
|
|
person_event SPRITE_TEACHER, 15 + 4, 2 + 4, $5, 0, 1, -1, -1, (1 << 3) | PAL_OW_BLUE, 0, 0, TeacherScript_0x1ad6e7, -1
|
|
person_event SPRITE_GRAMPS, 12 + 4, 14 + 4, $7, 0, 0, -1, -1, 0, 0, 0, GrampsScript_0x1ad6ea, -1
|
|
person_event SPRITE_YOUNGSTER, 11 + 4, 6 + 4, $5, 0, 1, -1, -1, (1 << 3) | PAL_OW_GREEN, 0, 1, YoungsterScript_0x1ad6ed, -1
|