pokecrystal-board/maps/ElmsHouse.asm

108 lines
1.8 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
2016-04-07 03:13:59 -07:00
const ELMSHOUSE_ELMS_WIFE
const ELMSHOUSE_ELMS_SON
2015-11-26 21:22:14 -08:00
2015-06-25 21:01:08 -07:00
ElmsHouse_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
2015-06-25 21:01:08 -07:00
ElmsWife:
jumptextfaceplayer ElmsWifeText
2015-06-25 21:01:08 -07:00
ElmsSon:
jumptextfaceplayer ElmsSonText
2015-06-25 21:01:08 -07:00
ElmsHousePC:
jumptext ElmsHousePCText
2015-06-25 21:01:08 -07:00
ElmsHouseBookshelf:
jumpstd difficultbookshelf
2015-06-25 21:01:08 -07:00
ElmsWifeText:
text "Hi, <PLAY_G>! My"
line "husband's always"
para "so busy--I hope"
line "he's OK."
para "When he's caught"
line "up in his #MON"
para "research, he even"
line "forgets to eat."
done
2015-06-25 21:01:08 -07:00
ElmsSonText:
text "When I grow up,"
line "I'm going to help"
cont "my dad!"
para "I'm going to be a"
line "great #MON"
cont "professor!"
done
2015-06-25 21:01:08 -07:00
ElmsHouseLabFoodText:
; unused
text "There's some food"
line "here. It must be"
cont "for the LAB."
done
2015-06-25 21:01:08 -07:00
ElmsHousePokemonFoodText:
; unused
text "There's some food"
line "here. This must be"
cont "for #MON."
done
2015-06-25 21:01:08 -07:00
ElmsHousePCText:
text "#MON. Where do"
line "they come from? "
para "Where are they"
line "going?"
para "Why has no one"
line "ever witnessed a"
cont "#MON's birth?"
para "I want to know! I"
line "will dedicate my"
para "life to the study"
line "of #MON!"
para "…"
para "It's a part of"
line "PROF.ELM's re-"
cont "search papers."
done
2015-06-25 21:01:08 -07:00
ElmsHouse_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $7, $2, 4, NEW_BARK_TOWN
warp_def $7, $3, 4, NEW_BARK_TOWN
.CoordEvents:
db 0
.BGEvents:
db 3
bg_event 1, 0, BGEVENT_READ, ElmsHousePC
bg_event 1, 6, BGEVENT_READ, ElmsHouseBookshelf
bg_event 1, 7, BGEVENT_READ, ElmsHouseBookshelf
.ObjectEvents:
db 2
object_event SPRITE_TEACHER, 5, 1, SPRITEMOVEDATA_WALK_UP_DOWN, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, ElmsWife, -1
object_event SPRITE_BUG_CATCHER, 4, 5, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, ElmsSon, -1