pokecrystal-board/maps/FuchsiaCity.asm

161 lines
3.4 KiB
NASM
Raw Normal View History

2015-06-25 21:01:08 -07:00
FuchsiaCity_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 1
; callbacks
2015-06-25 22:30:16 -07:00
dbw 5, .FlyPoint
2015-06-25 22:30:16 -07:00
.FlyPoint
setflag ENGINE_FLYPOINT_FUCHSIA
return
2015-06-25 21:01:08 -07:00
YoungsterScript_0x194b22:
jumptextfaceplayer UnknownText_0x194b45
2015-06-25 21:01:08 -07:00
PokefanMScript_0x194b25:
jumptextfaceplayer UnknownText_0x194b83
2015-06-25 21:01:08 -07:00
TeacherScript_0x194b28:
jumptextfaceplayer UnknownText_0x194bd3
2015-06-25 21:01:08 -07:00
FuchsiaCitySign:
jumptext FuchsiaCitySignText
2015-06-25 21:01:08 -07:00
FuchsiaGymSign:
jumptext FuchsiaGymSignText
2015-06-25 21:01:08 -07:00
SafariZoneOfficeSign:
jumptext SafariZoneOfficeSignText
2015-06-25 21:01:08 -07:00
WardensHomeSign:
jumptext WardensHomeSignText
2015-06-25 21:01:08 -07:00
SafariZoneClosedSign:
jumptext SafariZoneClosedSignText
2015-06-25 21:01:08 -07:00
NoLitteringSign:
jumptext NoLitteringSignText
2015-06-25 21:01:08 -07:00
FuchsiaCityPokeCenterSign:
2015-06-23 14:02:58 -07:00
jumpstd pokecentersign
2015-06-25 21:01:08 -07:00
FuchsiaCityMartSign:
2015-06-23 14:02:58 -07:00
jumpstd martsign
2015-06-25 21:01:08 -07:00
FruitTreeScript_0x194b43:
fruittree $1e
2015-06-25 21:01:08 -07:00
UnknownText_0x194b45:
text "One of the ELITE"
line "FOUR used to be"
para "the LEADER of"
line "FUCHSIA's GYM."
done
2015-06-25 21:01:08 -07:00
UnknownText_0x194b83:
text "KOGA's daughter"
line "succeeded him as"
para "the GYM LEADER"
line "after he joined"
cont "the ELITE FOUR."
done
2015-06-25 21:01:08 -07:00
UnknownText_0x194bd3:
text "The SAFARI ZONE is"
line "closed… It's sad,"
para "considering it's"
line "FUCHSIA's main"
cont "attraction."
done
2015-06-25 21:01:08 -07:00
FuchsiaCitySignText:
text "FUCHSIA CITY"
para "Behold! It's"
line "Passion Pink!"
done
2015-06-25 21:01:08 -07:00
FuchsiaGymSignText:
text "FUCHSIA CITY"
line "#MON GYM"
cont "LEADER: JANINE"
para "The Poisonous"
line "Ninja Master"
done
2015-06-25 21:01:08 -07:00
SafariZoneOfficeSignText:
text "There's a notice"
line "here…"
para "SAFARI ZONE OFFICE"
line "is closed until"
cont "further notice."
done
2015-06-25 21:01:08 -07:00
WardensHomeSignText:
text "SAFARI ZONE"
line "WARDEN'S HOME"
done
2015-06-25 21:01:08 -07:00
SafariZoneClosedSignText:
text "The WARDEN is"
line "traveling abroad."
para "Therefore, the"
line "SAFARI ZONE is"
cont "closed."
done
2015-06-25 21:01:08 -07:00
NoLitteringSignText:
text "No littering."
para "Please take your"
line "waste with you."
done
2015-06-25 21:01:08 -07:00
FuchsiaCity_MapEventHeader:
; filler
db 0, 0
.Warps:
db 11
warp_def $d, $5, 2, FUCHSIA_MART
warp_def $d, $16, 1, SAFARI_ZONE_MAIN_OFFICE
warp_def $1b, $8, 1, FUCHSIA_GYM
warp_def $1b, $b, 1, FUCHSIA_BILL_SPEECH_HOUSE
warp_def $1b, $13, 1, FUCHSIA_POKECENTER_1F
warp_def $1b, $1b, 1, SAFARI_ZONE_WARDENS_HOME
warp_def $3, $12, 3, SAFARI_ZONE_FUCHSIA_GATE_BETA
warp_def $16, $25, 1, ROUTE_15_FUCHSIA_GATE
warp_def $17, $25, 2, ROUTE_15_FUCHSIA_GATE
warp_def $23, $7, 1, ROUTE_19___FUCHSIA_GATE
warp_def $23, $8, 2, ROUTE_19___FUCHSIA_GATE
.XYTriggers:
db 0
.Signposts:
db 8
signpost 15, 21, SIGNPOST_READ, FuchsiaCitySign
signpost 29, 5, SIGNPOST_READ, FuchsiaGymSign
signpost 15, 25, SIGNPOST_READ, SafariZoneOfficeSign
signpost 29, 27, SIGNPOST_READ, WardensHomeSign
signpost 5, 17, SIGNPOST_READ, SafariZoneClosedSign
signpost 15, 13, SIGNPOST_READ, NoLitteringSign
signpost 27, 20, SIGNPOST_READ, FuchsiaCityPokeCenterSign
signpost 13, 6, SIGNPOST_READ, FuchsiaCityMartSign
.PersonEvents:
db 4
2015-11-06 13:42:38 -08:00
person_event SPRITE_YOUNGSTER, 18, 23, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, (1 << 3) | PAL_OW_GREEN, 0, 0, YoungsterScript_0x194b22, -1
person_event SPRITE_POKEFAN_M, 8, 13, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, (1 << 3) | PAL_OW_BROWN, 0, 0, PokefanMScript_0x194b25, -1
person_event SPRITE_TEACHER, 14, 16, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, (1 << 3) | PAL_OW_RED, 0, 0, TeacherScript_0x194b28, -1
person_event SPRITE_FRUIT_TREE, 1, 8, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, 0, 0, FruitTreeScript_0x194b43, -1