mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
56 lines
1.5 KiB
NASM
56 lines
1.5 KiB
NASM
const_def 2 ; object constants
|
|
const OLIVINEPUNISHMENTSPEECHHOUSE_POKEFAN_M
|
|
const OLIVINEPUNISHMENTSPEECHHOUSE_LASS
|
|
|
|
OlivinePunishmentSpeechHouse_MapScripts:
|
|
db 0 ; scene scripts
|
|
|
|
db 0 ; callbacks
|
|
|
|
OlivinePunishmentSpeechHouseDad:
|
|
jumptextfaceplayer OlivinePunishmentSpeechHouseDadText
|
|
|
|
OlivinePunishmentSpeechHouseDaughter:
|
|
jumptextfaceplayer OlivinePunishmentSpeechHouseDaughterText
|
|
|
|
OlivinePunishmentSpeechHouseBookshelf2:
|
|
jumpstd picturebookshelf
|
|
|
|
OlivinePunishmentSpeechHouseBookshelf1:
|
|
jumpstd magazinebookshelf
|
|
|
|
OlivinePunishmentSpeechHouseDadText:
|
|
text "Along the way to"
|
|
line "CIANWOOD, there"
|
|
|
|
para "are four deserted"
|
|
line "islands."
|
|
|
|
para "Bad kids are taken"
|
|
line "to the islands as"
|
|
cont "punishment!"
|
|
done
|
|
|
|
OlivinePunishmentSpeechHouseDaughterText:
|
|
text "Whenever I get in"
|
|
line "trouble, Daddy"
|
|
cont "always scares me."
|
|
done
|
|
|
|
OlivinePunishmentSpeechHouse_MapEvents:
|
|
db 0, 0 ; filler
|
|
|
|
db 2 ; warp events
|
|
warp_event 2, 7, 5, OLIVINE_CITY
|
|
warp_event 3, 7, 5, OLIVINE_CITY
|
|
|
|
db 0 ; coord events
|
|
|
|
db 2 ; bg events
|
|
bg_event 0, 1, BGEVENT_READ, OlivinePunishmentSpeechHouseBookshelf1
|
|
bg_event 1, 1, BGEVENT_READ, OlivinePunishmentSpeechHouseBookshelf2
|
|
|
|
db 2 ; object events
|
|
object_event 1, 2, SPRITE_POKEFAN_M, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OlivinePunishmentSpeechHouseDad, -1
|
|
object_event 5, 5, SPRITE_LASS, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 2, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, OlivinePunishmentSpeechHouseDaughter, -1
|