pokecrystal-board/maps/BluesHouse.asm

165 lines
2.6 KiB
NASM
Raw Normal View History

2015-11-26 21:22:14 -08:00
const_value set 2
const BLUESHOUSE_DAISY
2015-07-10 01:45:35 -07:00
BluesHouse_MapScriptHeader:
.SceneScripts:
db 0
.MapCallbacks:
db 0
2017-12-17 16:48:04 -08:00
DaisyScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
checkcode VAR_HOUR
2017-12-17 16:48:04 -08:00
if_equal 15, .ThreePM
writetext DaisyHelloText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
.ThreePM:
2015-07-10 05:08:03 -07:00
checkflag ENGINE_TEA_IN_BLUES_HOUSE
2017-12-17 16:48:04 -08:00
iftrue .AlreadyGroomedMon
writetext DaisyOfferGroomingText
yesorno
2017-12-17 16:48:04 -08:00
iffalse .Refused
writetext DaisyWhichMonText
2015-11-25 07:16:29 -08:00
waitbutton
2015-10-12 09:33:24 -07:00
special Special_DaisyMassage
2017-12-17 16:48:04 -08:00
if_equal 0, .Refused
if_equal 1, .CantGroomEgg
2015-07-10 05:08:03 -07:00
setflag ENGINE_TEA_IN_BLUES_HOUSE
2017-12-17 16:48:04 -08:00
writetext DaisyAlrightText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
2015-11-26 18:05:32 -08:00
special FadeOutPalettes
playmusic MUSIC_HEAL
pause 60
2015-11-26 18:05:32 -08:00
special FadeInPalettes
special RestartMapMusic
2015-12-09 15:25:44 -08:00
opentext
2017-12-17 16:48:04 -08:00
writetext GroomedMonLooksContentText
2015-11-16 19:29:54 -08:00
special PlayCurMonCry
2015-11-29 19:29:45 -08:00
buttonsound
2017-12-17 16:48:04 -08:00
writetext DaisyAllDoneText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
.AlreadyGroomedMon:
writetext DaisyAlreadyGroomedText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
.Refused:
writetext DaisyRefusedText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
.CantGroomEgg:
writetext DaisyCantGroomEggText
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2017-12-17 16:48:04 -08:00
DaisyHelloText:
text "DAISY: Hi! My kid"
line "brother is the GYM"
para "LEADER in VIRIDIAN"
line "CITY."
para "But he goes out"
line "of town so often,"
para "it causes problems"
line "for the trainers."
done
2017-12-17 16:48:04 -08:00
DaisyOfferGroomingText:
text "DAISY: Hi! Good"
line "timing. I'm about"
cont "to have some tea."
para "Would you like to"
line "join me?"
para "Oh, your #MON"
line "are a bit dirty."
para "Would you like me"
line "to groom one?"
done
2017-12-17 16:48:04 -08:00
DaisyWhichMonText:
text "DAISY: Which one"
line "should I groom?"
done
2017-12-17 16:48:04 -08:00
DaisyAlrightText:
text "DAISY: OK, I'll"
line "get it looking"
cont "nice in no time."
done
2017-12-17 16:48:04 -08:00
GroomedMonLooksContentText:
2015-02-10 15:37:24 -08:00
text_from_ram StringBuffer3
text " looks"
line "content."
done
2017-12-17 16:48:04 -08:00
DaisyAllDoneText:
text "DAISY: There you"
line "go! All done."
para "See? Doesn't it"
line "look nice?"
para "It's such a cute"
line "#MON."
done
2017-12-17 16:48:04 -08:00
DaisyAlreadyGroomedText:
text "DAISY: I always"
line "have tea around"
para "this time. Come"
line "join me."
done
2017-12-17 16:48:04 -08:00
DaisyRefusedText:
text "DAISY: You don't"
line "want to have one"
para "groomed? OK, we'll"
line "just have tea."
done
2017-12-17 16:48:04 -08:00
DaisyCantGroomEggText:
text "DAISY: Oh, sorry."
line "I honestly can't"
cont "groom an EGG."
done
2015-07-10 01:45:35 -07:00
BluesHouse_MapEventHeader:
; filler
db 0, 0
.Warps:
db 2
warp_def $7, $2, 2, PALLET_TOWN
warp_def $7, $3, 2, PALLET_TOWN
.CoordEvents:
db 0
.BGEvents:
db 0
.ObjectEvents:
db 1
object_event SPRITE_DAISY, 3, 2, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, DaisyScript, -1