pokecrystal-board/maps/EcruteakLugiaSpeechHouse.asm

67 lines
1.4 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const ECRUTEAKLUGIASPEECHHOUSE_GRAMPS
const ECRUTEAKLUGIASPEECHHOUSE_YOUNGSTER
EcruteakLugiaSpeechHouse_MapScripts:
.SceneScripts:
db 0
.MapCallbacks:
db 0
2017-12-17 16:48:04 -08:00
EcruteakLugiaSpeechHouseGrampsScript:
jumptextfaceplayer EcruteakLugiaSpeechHouseGrampsText
2017-12-17 16:48:04 -08:00
EcruteakLugiaSpeechHouseYoungsterScript:
jumptextfaceplayer EcruteakLugiaSpeechHouseYoungsterText
2015-06-25 21:01:08 -07:00
LugiaSpeechHouseRadio:
2015-06-23 14:02:58 -07:00
jumpstd radio2
2017-12-17 16:48:04 -08:00
EcruteakLugiaSpeechHouseGrampsText:
text "This happened when"
line "I was young."
para "The sky suddenly"
line "turned black. A"
para "giant flying #-"
line "MON was blocking"
cont "out the sun."
para "I wonder what that"
line "#MON was? "
para "It was like a bird"
line "and a dragon."
done
2017-12-17 16:48:04 -08:00
EcruteakLugiaSpeechHouseYoungsterText:
text "Is there really a"
line "#MON that big?"
para "If it exists, it"
line "must be powerful."
done
EcruteakLugiaSpeechHouse_MapEvents:
; filler
db 0, 0
.Warps:
db 2
warp_event 3, 7, 7, ECRUTEAK_CITY
warp_event 4, 7, 7, ECRUTEAK_CITY
.CoordEvents:
db 0
.BGEvents:
db 1
bg_event 2, 1, BGEVENT_READ, LugiaSpeechHouseRadio
.ObjectEvents:
db 2
object_event 2, 3, SPRITE_GRAMPS, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, EcruteakLugiaSpeechHouseGrampsScript, -1
object_event 5, 4, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, EcruteakLugiaSpeechHouseYoungsterScript, -1