pokecrystal-board/maps/PewterCity.asm

183 lines
3.6 KiB
NASM
Raw Normal View History

2015-06-25 21:01:08 -07:00
PewterCity_MapScriptHeader:
; trigger count
db 0
; callback count
db 1
; callbacks
dbw 5, UnknownScript_0x18c005
2015-06-25 21:01:08 -07:00
UnknownScript_0x18c005:
2013-09-24 00:51:42 -07:00
setflag $0037
return
2015-06-25 21:01:08 -07:00
CooltrainerFScript_0x18c009:
jumptextfaceplayer UnknownText_0x18c042
2015-06-25 21:01:08 -07:00
BugCatcherScript_0x18c00c:
jumptextfaceplayer UnknownText_0x18c080
2015-06-25 21:01:08 -07:00
GrampsScript_0x18c00f:
faceplayer
loadfont
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_SILVER_WING
iftrue UnknownScript_0x18c023
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x18c0c6
keeptextopen
verbosegiveitem SILVER_WING, 1
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_SILVER_WING
loadmovesprites
end
2015-06-25 21:01:08 -07:00
UnknownScript_0x18c023:
2015-01-20 00:01:23 -08:00
writetext UnknownText_0x18c1aa
closetext
loadmovesprites
end
2015-06-25 21:01:08 -07:00
PewterCitySign:
jumptext PewterCitySignText
2015-06-25 21:01:08 -07:00
PewterGymSign:
jumptext PewterGymSignText
2015-06-25 21:01:08 -07:00
PewterMuseumSign:
jumptext PewterMuseumSignText
2015-06-25 21:01:08 -07:00
PewterCityMtMoonGiftShopSign:
jumptext PewterCityMtMoonGiftShopSignText
2015-06-25 21:01:08 -07:00
PewterCityWelcomeSign:
jumptext PewterCityWelcomeSignText
2015-06-25 21:01:08 -07:00
PewterCityPokeCenterSign:
2015-06-23 14:02:58 -07:00
jumpstd pokecentersign
2015-06-25 21:01:08 -07:00
PewterCityMartSign:
2015-06-23 14:02:58 -07:00
jumpstd martsign
2015-06-25 21:01:08 -07:00
FruitTreeScript_0x18c03e:
fruittree $1c
2015-06-25 21:01:08 -07:00
FruitTreeScript_0x18c040:
fruittree $1d
2015-06-25 21:01:08 -07:00
UnknownText_0x18c042:
text "Have you visited"
line "PEWTER GYM?"
para "The LEADER uses"
line "rock-type #MON."
done
2015-06-25 21:01:08 -07:00
UnknownText_0x18c080:
text "At night, CLEFAIRY"
line "come out to play"
cont "at MT.MOON."
para "But not every"
line "night."
done
2015-06-25 21:01:08 -07:00
UnknownText_0x18c0c6:
text "Ah, you came all"
line "the way out here"
cont "from JOHTO?"
para "That brings back"
line "memories. When I"
para "was young, I went"
line "to JOHTO to train."
para "You remind me so"
line "much of what I was"
para "like as a young"
line "man."
para "Here. I want you"
line "to have this item"
cont "I found in JOHTO."
done
2015-06-25 21:01:08 -07:00
UnknownText_0x18c1aa:
text "Going to new, un-"
line "known places and"
cont "seeing new people…"
para "Those are the joys"
line "of travel."
done
2015-06-25 21:01:08 -07:00
PewterCitySignText:
text "PEWTER CITY"
line "A Stone Gray City"
done
2015-06-25 21:01:08 -07:00
PewterGymSignText:
text "PEWTER CITY"
line "#MON GYM"
cont "LEADER: BROCK"
para "The Rock Solid"
line "#MON Trainer"
done
2015-06-25 21:01:08 -07:00
PewterMuseumSignText:
text "There's a notice"
line "here…"
para "PEWTER MUSEUM OF"
line "SCIENCE is closed"
cont "for renovations…"
done
2015-06-25 21:01:08 -07:00
PewterCityMtMoonGiftShopSignText:
text "There's a notice"
line "here…"
para "MT.MOON GIFT SHOP"
line "NOW OPEN!"
done
2015-06-25 21:01:08 -07:00
PewterCityWelcomeSignText:
text "WELCOME TO"
line "PEWTER CITY!"
done
2015-06-25 21:01:08 -07:00
PewterCity_MapEventHeader:
; filler
db 0, 0
; warps
db 5
warp_def $d, $1d, 1, GROUP_PEWTER_NIDORAN_SPEECH_HOUSE, MAP_PEWTER_NIDORAN_SPEECH_HOUSE
warp_def $11, $10, 1, GROUP_PEWTER_GYM, MAP_PEWTER_GYM
warp_def $11, $17, 2, GROUP_PEWTER_MART, MAP_PEWTER_MART
warp_def $19, $d, 1, GROUP_PEWTER_POKECENTER_1F, MAP_PEWTER_POKECENTER_1F
warp_def $1d, $7, 1, GROUP_PEWTER_SNOOZE_SPEECH_HOUSE, MAP_PEWTER_SNOOZE_SPEECH_HOUSE
; xy triggers
db 0
; signposts
db 7
2015-06-25 21:01:08 -07:00
signpost 23, 25, $0, PewterCitySign
signpost 17, 11, $0, PewterGymSign
signpost 9, 15, $0, PewterMuseumSign
signpost 19, 33, $0, PewterCityMtMoonGiftShopSign
signpost 29, 19, $0, PewterCityWelcomeSign
signpost 25, 14, $0, PewterCityPokeCenterSign
signpost 17, 24, $0, PewterCityMartSign
; people-events
db 5
2013-07-12 14:06:11 -07:00
person_event SPRITE_COOLTRAINER_F, 15, 23, $2, $22, 255, 255, $a0, 0, CooltrainerFScript_0x18c009, $ffff
person_event SPRITE_BUG_CATCHER, 33, 18, $2, $22, 255, 255, $80, 0, BugCatcherScript_0x18c00c, $ffff
person_event SPRITE_GRAMPS, 21, 33, $5, $2, 255, 255, $90, 0, GrampsScript_0x18c00f, $ffff
person_event SPRITE_FRUIT_TREE, 7, 36, $1, $0, 255, 255, $0, 0, FruitTreeScript_0x18c03e, $ffff
person_event SPRITE_FRUIT_TREE, 7, 34, $1, $0, 255, 255, $0, 0, FruitTreeScript_0x18c040, $ffff