pokecrystal-board/maps/MahoganyRedGyaradosSpeechHouse.asm

77 lines
1.9 KiB
NASM
Raw Normal View History

object_const_def ; object_event constants
2015-11-26 21:22:14 -08:00
const MAHOGANYREDGYARADOSSPEECHHOUSE_BLACK_BELT
const MAHOGANYREDGYARADOSSPEECHHOUSE_TEACHER
MahoganyRedGyaradosSpeechHouse_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2017-12-17 16:48:04 -08:00
MahoganyRedGyaradosSpeechHouseBlackBeltScript:
jumptextfaceplayer MahoganyRedGyaradosSpeechHouseBlackBeltText
2018-02-28 14:47:31 -08:00
MahoganyRedGyaradosSpeechHouseTeacherScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2015-07-10 05:12:28 -07:00
checkflag ENGINE_ROCKETS_IN_RADIO_TOWER
2018-02-28 14:47:31 -08:00
iftrue .RocketsInRadioTower
writetext MahoganyRedGyaradosSpeechHouseTeacherText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 14:47:31 -08:00
.RocketsInRadioTower:
writetext MahoganyRedGyaradosSpeechHouseTeacherText_RocketsInRadioTower
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2018-02-28 14:47:31 -08:00
MahoganyRedGyaradosSpeechHouseUnusedBookshelf1:
; unused
jumpstd picturebookshelf
2018-02-28 14:47:31 -08:00
MahoganyRedGyaradosSpeechHouseUnusedBookshelf2:
; unused
jumpstd magazinebookshelf
2017-12-17 16:48:04 -08:00
MahoganyRedGyaradosSpeechHouseBlackBeltText:
text "I heard that a red"
line "GYARADOS appeared"
cont "at the LAKE."
para "That's odd, since"
line "even ordinary"
para "GYARADOS are rare"
line "in that lake…"
done
2018-02-28 14:47:31 -08:00
MahoganyRedGyaradosSpeechHouseTeacherText:
text "My favorite radio"
line "program? I'd say"
cont "#MON MUSIC."
done
2018-02-28 14:47:31 -08:00
MahoganyRedGyaradosSpeechHouseTeacherText_RocketsInRadioTower:
text "I've been hearing"
line "laughter on the"
para "radio…"
line "It's creepy."
done
MahoganyRedGyaradosSpeechHouse_MapEvents:
db 0, 0 ; filler
db 2 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 2, 7, MAHOGANY_TOWN, 2
warp_event 3, 7, MAHOGANY_TOWN, 2
db 0 ; coord events
db 0 ; bg events
db 2 ; object events
2018-02-01 19:22:07 -08:00
object_event 2, 3, SPRITE_BLACK_BELT, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, MahoganyRedGyaradosSpeechHouseBlackBeltScript, -1
2018-02-28 14:47:31 -08:00
object_event 6, 5, SPRITE_TEACHER, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, MahoganyRedGyaradosSpeechHouseTeacherScript, -1