pokecrystal-board/maps/SlowpokeWellB2F.asm

75 lines
1.6 KiB
NASM
Raw Normal View History

object_const_def ; object_event constants
2015-11-26 21:22:14 -08:00
const SLOWPOKEWELLB2F_GYM_GUY
const SLOWPOKEWELLB2F_POKE_BALL
SlowpokeWellB2F_MapScripts:
db 0 ; scene scripts
db 0 ; callbacks
2018-02-28 14:47:31 -08:00
SlowpokeWellB2FGymGuyScript:
faceplayer
2015-12-09 15:25:44 -08:00
opentext
2013-09-24 00:48:58 -07:00
checkevent EVENT_GOT_KINGS_ROCK_IN_SLOWPOKE_WELL
2018-01-15 18:14:48 -08:00
iftrue .GotKingsRock
2018-02-28 14:47:31 -08:00
writetext SlowpokeWellB2FGymGuyText
2019-11-03 09:48:54 -08:00
promptbutton
2015-11-04 17:20:14 -08:00
verbosegiveitem KINGS_ROCK
2018-01-15 18:14:48 -08:00
iffalse .NoRoom
2013-09-24 00:48:58 -07:00
setevent EVENT_GOT_KINGS_ROCK_IN_SLOWPOKE_WELL
2018-01-15 18:14:48 -08:00
.NoRoom:
2015-11-25 07:16:29 -08:00
closetext
end
2018-01-15 18:14:48 -08:00
.GotKingsRock:
2018-02-28 14:47:31 -08:00
writetext SlowpokeWellB2FGymGuyText_GotKingsRock
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
2015-12-15 07:55:56 -08:00
SlowpokeWellB2FTMRainDance:
itemball TM_RAIN_DANCE
2018-02-28 14:47:31 -08:00
SlowpokeWellB2FGymGuyText:
text "I'm waiting to see"
line "SLOWPOKE's moment"
cont "of evolution."
para "Through observa-"
line "tion, I made a new"
cont "discovery."
para "A SLOWPOKE with a"
line "KING'S ROCK often"
para "gets bitten by a"
line "SHELLDER."
para "Here, I'll share a"
line "KING'S ROCK with"
cont "you."
done
2018-02-28 14:47:31 -08:00
SlowpokeWellB2FGymGuyText_GotKingsRock:
text "I'm going to be"
line "like SLOWPOKE."
para "I'll wait patient-"
line "ly, so I can see"
cont "one evolve."
done
SlowpokeWellB2F_MapEvents:
db 0, 0 ; filler
db 1 ; warp events
2018-02-01 19:22:07 -08:00
warp_event 9, 11, SLOWPOKE_WELL_B1F, 2
db 0 ; coord events
db 0 ; bg events
db 2 ; object events
2018-02-28 14:47:31 -08:00
object_event 5, 4, SPRITE_GYM_GUY, SPRITEMOVEDATA_WANDER, 1, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 1, SlowpokeWellB2FGymGuyScript, -1
2018-02-01 19:22:07 -08:00
object_event 15, 5, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, SlowpokeWellB2FTMRainDance, EVENT_SLOWPOKE_WELL_B2F_TM_RAIN_DANCE