mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
c05b7f41dd
- MapTriggers / maptrigger → SceneScripts / scene_script - XYTriggers / xy_trigger → CoordEvents / coord_event - Signposts / signpost → BGEvents / bg_event - PersonEvents / person_event → ObjectEvents / object_event
140 lines
3.0 KiB
NASM
140 lines
3.0 KiB
NASM
const_value set 2
|
|
const LAVENDERTOWN_POKEFAN_M
|
|
const LAVENDERTOWN_TEACHER
|
|
const LAVENDERTOWN_GRAMPS
|
|
const LAVENDERTOWN_YOUNGSTER
|
|
|
|
LavenderTown_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 1
|
|
dbw MAPCALLBACK_NEWMAP, .FlyPoint
|
|
|
|
.FlyPoint:
|
|
setflag ENGINE_FLYPOINT_LAVENDER
|
|
return
|
|
|
|
LavenderTownPokefanMScript:
|
|
jumptextfaceplayer LavenderTownPokefanMText
|
|
|
|
LavenderTownTeacherScript:
|
|
jumptextfaceplayer LavenderTownTeacherText
|
|
|
|
LavenderTownGrampsScript:
|
|
jumptextfaceplayer LavenderTownGrampsText
|
|
|
|
LavenderTownYoungsterScript:
|
|
jumptextfaceplayer LavenderTownYoungsterText
|
|
|
|
LavenderTownSign:
|
|
jumptext LavenderTownSignText
|
|
|
|
KantoRadioStationSign:
|
|
jumptext KantoRadioStationSignText
|
|
|
|
VolunteerPokemonHouseSign:
|
|
jumptext VolunteerPokemonHouseSignText
|
|
|
|
SoulHouseSign:
|
|
jumptext SoulHouseSignText
|
|
|
|
LavenderPokecenterSignText:
|
|
jumpstd pokecentersign
|
|
|
|
LavenderMartSignText:
|
|
jumpstd martsign
|
|
|
|
LavenderTownPokefanMText:
|
|
text "That's quite some"
|
|
line "building, eh?"
|
|
|
|
para "It's KANTO's RADIO"
|
|
line "TOWER."
|
|
done
|
|
|
|
LavenderTownTeacherText:
|
|
text "KANTO has many"
|
|
line "good radio shows."
|
|
done
|
|
|
|
LavenderTownGrampsText:
|
|
text "People come from"
|
|
line "all over to pay"
|
|
|
|
para "their respects to"
|
|
line "the departed souls"
|
|
cont "of #MON."
|
|
done
|
|
|
|
LavenderTownYoungsterText:
|
|
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
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 6
|
|
bg_event 3, 11, BGEVENT_READ, LavenderTownSign
|
|
bg_event 7, 15, BGEVENT_READ, KantoRadioStationSign
|
|
bg_event 9, 3, BGEVENT_READ, VolunteerPokemonHouseSign
|
|
bg_event 13, 15, BGEVENT_READ, SoulHouseSign
|
|
bg_event 5, 6, BGEVENT_READ, LavenderPokecenterSignText
|
|
bg_event 5, 2, BGEVENT_READ, LavenderMartSignText
|
|
|
|
.ObjectEvents:
|
|
db 4
|
|
object_event SPRITE_POKEFAN_M, 7, 12, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, LavenderTownPokefanMScript, -1
|
|
object_event SPRITE_TEACHER, 15, 2, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, LavenderTownTeacherScript, -1
|
|
object_event SPRITE_GRAMPS, 12, 14, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, LavenderTownGrampsScript, -1
|
|
object_event SPRITE_YOUNGSTER, 11, 6, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 0, 1, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 1, LavenderTownYoungsterScript, -1
|