pokecrystal-board/maps/VermilionPokeCenter1F.asm

101 lines
2.1 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const VERMILIONPOKECENTER1F_NURSE
const VERMILIONPOKECENTER1F_FISHING_GURU
const VERMILIONPOKECENTER1F_SAILOR
const VERMILIONPOKECENTER1F_BUG_CATCHER
2015-07-10 01:45:35 -07:00
VermilionPokeCenter1F_MapScriptHeader:
.MapTriggers:
db 0
.MapCallbacks:
db 0
2015-07-10 01:45:35 -07:00
NurseScript_0x191603:
jumpstd pokecenternurse
2015-07-10 01:45:35 -07:00
FishingGuruScript_0x191606:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_FOUGHT_SNORLAX
iftrue UnknownScript_0x191614
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x191620
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:45:35 -07:00
UnknownScript_0x191614:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x191698
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-07-10 01:45:35 -07:00
SailorScript_0x19161a:
jumptextfaceplayer UnknownText_0x1916fe
2015-07-10 01:45:35 -07:00
BugCatcherScript_0x19161d:
jumptextfaceplayer UnknownText_0x19173b
2015-07-10 01:45:35 -07:00
UnknownText_0x191620:
text "A sleeping #MON"
line "is lying in front"
cont "of DIGLETT'S CAVE."
para "It's a fantastic"
line "opportunity to get"
para "it, but how do you"
line "wake it up?"
done
2015-07-10 01:45:35 -07:00
UnknownText_0x191698:
text "There used to be a"
line "sleeping #MON"
para "lying in front of"
line "DIGLETT'S CAVE."
para "But it seems to"
line "have disappeared."
done
2015-07-10 01:45:35 -07:00
UnknownText_0x1916fe:
text "The FAST SHIP is a"
line "great place to"
para "meet and battle"
line "trainers."
done
2015-07-10 01:45:35 -07:00
UnknownText_0x19173b:
text "Oh? You have some"
line "BADGES I've never"
cont "seen before."
para "Oh, I get it. You"
line "got them in JOHTO."
done
2015-07-10 01:45:35 -07:00
VermilionPokeCenter1F_MapEventHeader:
; filler
db 0, 0
.Warps:
db 3
warp_def $7, $3, 2, VERMILION_CITY
warp_def $7, $4, 2, VERMILION_CITY
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_0x191603, -1
2017-12-10 17:50:08 -08:00
person_event SPRITE_FISHING_GURU, 2, 7, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, PERSONTYPE_SCRIPT, 0, FishingGuruScript_0x191606, -1
person_event SPRITE_SAILOR, 5, 6, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_BLUE, PERSONTYPE_SCRIPT, 0, SailorScript_0x19161a, -1
person_event SPRITE_BUG_CATCHER, 5, 1, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_GREEN, PERSONTYPE_SCRIPT, 0, BugCatcherScript_0x19161d, -1