mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
66 lines
1.5 KiB
NASM
66 lines
1.5 KiB
NASM
const_value set 2
|
|
const CERULEANPOLICESTATION_FISHING_GURU
|
|
const CERULEANPOLICESTATION_POKEFAN_F
|
|
const CERULEANPOLICESTATION_DIGLETT
|
|
|
|
CeruleanPoliceStation_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
CeruleanPoliceStationFishingGuruScript:
|
|
jumptextfaceplayer CeruleanPoliceStationFishingGuruText
|
|
|
|
CeruleanPoliceStationPokefanFScript:
|
|
jumptextfaceplayer CeruleanPoliceStationPokefanFText
|
|
|
|
CeruleanDiglett:
|
|
opentext
|
|
writetext CeruleanDiglettText
|
|
cry DIGLETT
|
|
waitbutton
|
|
closetext
|
|
end
|
|
|
|
CeruleanPoliceStationFishingGuruText:
|
|
text "I heard that some"
|
|
line "shady character is"
|
|
cont "skulking about."
|
|
|
|
para "I won't stand for"
|
|
line "it if he turns out"
|
|
cont "to be a thief."
|
|
done
|
|
|
|
CeruleanPoliceStationPokefanFText:
|
|
text "We were held up by"
|
|
line "robbers before."
|
|
done
|
|
|
|
CeruleanDiglettText:
|
|
text "DIGLETT: Dug dug."
|
|
done
|
|
|
|
CeruleanPoliceStation_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def 2, 7, 2, CERULEAN_CITY
|
|
warp_def 3, 7, 2, CERULEAN_CITY
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 0
|
|
|
|
.ObjectEvents:
|
|
db 3
|
|
object_event 5, 1, SPRITE_FISHING_GURU, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, CeruleanPoliceStationFishingGuruScript, -1
|
|
object_event 5, 4, SPRITE_POKEFAN_F, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, CeruleanPoliceStationPokefanFScript, -1
|
|
object_event 3, 5, SPRITE_DIGLETT, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, CeruleanDiglett, -1
|