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
61 lines
1.3 KiB
NASM
61 lines
1.3 KiB
NASM
const_value set 2
|
|
const OLIVINELIGHTHOUSE1F_SAILOR
|
|
const OLIVINELIGHTHOUSE1F_POKEFAN_F
|
|
|
|
OlivineLighthouse1F_MapScriptHeader:
|
|
.SceneScripts:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
OlivineLighthouse1FSailorScript:
|
|
jumptextfaceplayer OlivineLighthouse1FSailorText
|
|
|
|
OlivineLighthouse1FPokefanFScript:
|
|
jumptextfaceplayer OlivineLighthouse1FPokefanFText
|
|
|
|
OlivineLighthouse1FSailorText:
|
|
text "People train at"
|
|
line "this LIGHTHOUSE."
|
|
|
|
para "It's not easy to"
|
|
line "climb because of"
|
|
cont "all the trainers."
|
|
done
|
|
|
|
OlivineLighthouse1FPokefanFText:
|
|
text "In the past, #-"
|
|
line "MON used to light"
|
|
|
|
para "the sea around"
|
|
line "OLIVINE at night."
|
|
|
|
para "The LIGHTHOUSE was"
|
|
line "made in honor of"
|
|
cont "those #MON."
|
|
done
|
|
|
|
OlivineLighthouse1F_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 5
|
|
warp_def $11, $a, 9, OLIVINE_CITY
|
|
warp_def $11, $b, 9, OLIVINE_CITY
|
|
warp_def $b, $3, 1, OLIVINE_LIGHTHOUSE_2F
|
|
warp_def $d, $10, 3, OLIVINE_LIGHTHOUSE_2F
|
|
warp_def $d, $11, 4, OLIVINE_LIGHTHOUSE_2F
|
|
|
|
.CoordEvents:
|
|
db 0
|
|
|
|
.BGEvents:
|
|
db 0
|
|
|
|
.ObjectEvents:
|
|
db 2
|
|
object_event SPRITE_SAILOR, 2, 8, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OlivineLighthouse1FSailorScript, -1
|
|
object_event SPRITE_POKEFAN_F, 9, 16, SPRITEMOVEDATA_WALK_UP_DOWN, 2, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OlivineLighthouse1FPokefanFScript, -1
|