pokecrystal-board/maps/MahoganyPokecenter1F.asm
2017-12-17 20:17:30 -05:00

78 lines
1.9 KiB
NASM

const_value set 2
const MAHOGANYPOKECENTER1F_NURSE
const MAHOGANYPOKECENTER1F_POKEFAN_M
const MAHOGANYPOKECENTER1F_YOUNGSTER
const MAHOGANYPOKECENTER1F_COOLTRAINER_F
MahoganyPokecenter1F_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
NurseScript_0x19a356:
jumpstd pokecenternurse
MahoganyPokecenter1FPokefanMScript:
jumptextfaceplayer MahoganyPokecenter1FPokefanMText
MahoganyPokecenter1FYoungsterScript:
jumptextfaceplayer MahoganyPokecenter1FYoungsterText
MahoganyPokecenter1FCooltrainerFScript:
jumptextfaceplayer MahoganyPokecenter1FCooltrainerFText
MahoganyPokecenter1FPokefanMText:
text "What's this? TEAM"
line "ROCKET has come"
cont "back?"
para "I saw some men in"
line "black at LAKE OF"
cont "RAGEā€¦"
done
MahoganyPokecenter1FYoungsterText:
text "I stop my #MON"
line "from evolving too"
cont "early."
para "I make them learn"
line "certain moves be-"
cont "fore I let them"
cont "evolve."
done
MahoganyPokecenter1FCooltrainerFText:
text "#MON do become"
line "stronger when they"
para "evolve, but they"
line "also learn moves"
cont "more slowly."
done
MahoganyPokecenter1F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $7, $3, 4, MAHOGANY_TOWN
warp_def $7, $4, 4, MAHOGANY_TOWN
warp_def $7, $0, 1, POKECENTER_2F
.XYTriggers:
db 0
.Signposts:
db 0
.PersonEvents:
db 4
person_event SPRITE_NURSE, 1, 3, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, NurseScript_0x19a356, -1
person_event SPRITE_POKEFAN_M, 2, 7, SPRITEMOVEDATA_WANDER, 1, 1, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, MahoganyPokecenter1FPokefanMScript, -1
person_event SPRITE_YOUNGSTER, 3, 1, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, MahoganyPokecenter1FYoungsterScript, -1
person_event SPRITE_COOLTRAINER_F, 3, 2, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, PERSONTYPE_SCRIPT, 0, MahoganyPokecenter1FCooltrainerFScript, -1