pokecrystal-board/maps/PewterPokecenter1F.asm

93 lines
2.0 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const PEWTERPOKECENTER1F_NURSE
const PEWTERPOKECENTER1F_TEACHER
const PEWTERPOKECENTER1F_JIGGLYPUFF
const PEWTERPOKECENTER1F_BUG_CATCHER
2016-04-07 03:13:59 -07:00
const PEWTERPOKECENTER1F_CHRIS
2015-11-26 21:22:14 -08:00
PewterPokecenter1F_MapScripts:
.SceneScripts:
db 0
.MapCallbacks:
db 0
2015-07-10 01:45:35 -07:00
NurseScript_0x1a2ee7:
jumpstd pokecenternurse
2017-12-17 16:48:04 -08:00
PewterPokecenter1FTeacherScript:
jumptextfaceplayer PewterPokecenter1FTeacherText
2016-04-07 03:13:59 -07:00
PewterJigglypuff:
2015-12-09 15:25:44 -08:00
opentext
2016-04-07 03:13:59 -07:00
writetext PewterJigglypuffText
cry JIGGLYPUFF
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
PewterPokecenter1FBugCatcherScript:
jumptextfaceplayer PewterPokecenter1FBugCatcherText
2016-04-07 03:13:59 -07:00
Chris:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
trade NPCTRADE_CHRIS
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
PewterPokecenter1FTeacherText:
text "…Yeah, and the"
line "GYM in CINNABAR's"
para "gone. I was really"
line "amazed."
para "…Yes? I'm on the"
line "phone. Go away!"
done
2016-04-07 03:13:59 -07:00
PewterJigglypuffText:
text "JIGGLYPUFF: Puu"
line "pupuu."
done
2017-12-17 16:48:04 -08:00
PewterPokecenter1FBugCatcherText:
text "Most #MON get"
line "drowsy if they"
para "hear a JIGGLYPUFF"
line "singing."
para "There are several"
line "moves that can be"
para "used only while a"
line "#MON is asleep."
done
PewterPokecenter1F_MapEvents:
; filler
db 0, 0
.Warps:
db 3
warp_def 3, 7, 4, PEWTER_CITY
warp_def 4, 7, 4, PEWTER_CITY
warp_def 0, 7, 1, POKECENTER_2F
.CoordEvents:
db 0
.BGEvents:
db 0
.ObjectEvents:
db 5
object_event 3, 1, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, NurseScript_0x1a2ee7, -1
object_event 8, 6, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PewterPokecenter1FTeacherScript, -1
object_event 1, 3, SPRITE_JIGGLYPUFF, SPRITEMOVEDATA_POKEMON, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PewterJigglypuff, -1
object_event 2, 3, SPRITE_BUG_CATCHER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PewterPokecenter1FBugCatcherScript, -1
object_event 7, 2, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, Chris, -1