2015-11-26 21:22:14 -08:00
|
|
|
const_value set 2
|
|
|
|
const DRAGONSDENB1F_POKE_BALL1
|
|
|
|
const DRAGONSDENB1F_CLAIR
|
|
|
|
const DRAGONSDENB1F_SILVER
|
|
|
|
const DRAGONSDENB1F_COOLTRAINER_M
|
|
|
|
const DRAGONSDENB1F_COOLTRAINER_F
|
|
|
|
const DRAGONSDENB1F_TWIN1
|
|
|
|
const DRAGONSDENB1F_TWIN2
|
|
|
|
const DRAGONSDENB1F_POKE_BALL2
|
|
|
|
const DRAGONSDENB1F_POKE_BALL3
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
DragonsDenB1F_MapScriptHeader:
|
2017-12-24 10:46:34 -08:00
|
|
|
.SceneScripts:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 2
|
2017-12-24 10:46:34 -08:00
|
|
|
scene_script .DummyScene0
|
|
|
|
scene_script .DummyScene1
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-20 21:02:21 -07:00
|
|
|
.MapCallbacks:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 1
|
2016-01-06 04:44:50 -08:00
|
|
|
dbw MAPCALLBACK_NEWMAP, .CheckSilver
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.DummyScene0:
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.DummyScene1:
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
.CheckSilver:
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_BEAT_RIVAL_IN_MT_MOON
|
2015-12-09 15:25:44 -08:00
|
|
|
iftrue .CheckDay
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear DRAGONSDENB1F_SILVER
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
.CheckDay:
|
2015-07-09 19:08:03 -07:00
|
|
|
checkcode VAR_WEEKDAY
|
2015-12-09 15:25:44 -08:00
|
|
|
if_equal TUESDAY, .AppearSilver
|
|
|
|
if_equal THURSDAY, .AppearSilver
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear DRAGONSDENB1F_SILVER
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
.AppearSilver:
|
2015-11-26 21:22:14 -08:00
|
|
|
appear DRAGONSDENB1F_SILVER
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
DragonsDenB1F_ClairScene:
|
2015-11-26 21:22:14 -08:00
|
|
|
appear DRAGONSDENB1F_CLAIR
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
|
|
|
writetext ClairText_Wait
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 30
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-07-21 23:49:18 -07:00
|
|
|
showemote EMOTE_SHOCK, PLAYER, 15
|
|
|
|
spriteface PLAYER, LEFT
|
2014-04-30 03:04:35 -07:00
|
|
|
playmusic MUSIC_CLAIR
|
2015-12-09 15:25:44 -08:00
|
|
|
applymovement DRAGONSDENB1F_CLAIR, MovementDragonsDen_ClairWalksToYou
|
|
|
|
opentext
|
|
|
|
writetext ClairText_GiveDragonbreathDragonDen
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem TM_DRAGONBREATH
|
2015-12-09 15:25:44 -08:00
|
|
|
iffalse .BagFull
|
2015-06-29 19:24:45 -07:00
|
|
|
itemtotext TM_DRAGONBREATH, $0
|
2015-12-09 15:25:44 -08:00
|
|
|
writetext NotifyReceiveDragonbreath
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_ITEM
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2013-02-16 22:54:07 -08:00
|
|
|
itemnotify
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_GOT_TM24_DRAGONBREATH
|
2015-12-09 15:25:44 -08:00
|
|
|
writetext ClairText_DescribeDragonbreathDragonDen
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-12-09 15:25:44 -08:00
|
|
|
writetext ClairText_WhatsTheMatterDragonDen
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-12-09 15:25:44 -08:00
|
|
|
jump .FinishClair
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
.BagFull:
|
|
|
|
writetext ClairText_NoRoom
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-12-09 15:25:44 -08:00
|
|
|
.FinishClair:
|
|
|
|
applymovement DRAGONSDENB1F_CLAIR, MovementDragonsDen_ClairWalksAway
|
2015-12-01 18:54:11 -08:00
|
|
|
special Special_FadeOutMusic
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 30
|
2015-02-11 15:03:42 -08:00
|
|
|
special RestartMapMusic
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear DRAGONSDENB1F_CLAIR
|
2017-12-24 10:46:34 -08:00
|
|
|
setscene $0
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TrainerCooltrainermDarin:
|
2017-12-17 17:45:04 -08:00
|
|
|
trainer EVENT_BEAT_COOLTRAINERM_DARIN, COOLTRAINERM, DARIN, CooltrainermDarinSeenText, CooltrainermDarinBeatenText, 0, .Script
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.Script:
|
2015-11-25 07:16:29 -08:00
|
|
|
end_if_just_battled
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-10 12:36:58 -08:00
|
|
|
writetext CooltrainermDarinAfterBattleText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TrainerCooltrainerfCara:
|
2017-12-17 17:45:04 -08:00
|
|
|
trainer EVENT_BEAT_COOLTRAINERF_CARA, COOLTRAINERF, CARA, CooltrainerfCaraSeenText, CooltrainerfCaraBeatenText, 0, .Script
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.Script:
|
2015-11-25 07:16:29 -08:00
|
|
|
end_if_just_battled
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-10 12:36:58 -08:00
|
|
|
writetext CooltrainerfCaraAfterBattleText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TrainerTwinsLeaandpia1:
|
2017-12-17 17:45:04 -08:00
|
|
|
trainer EVENT_BEAT_TWINS_LEA_AND_PIA, TWINS, LEAANDPIA1, TwinsLeaandpia1SeenText, TwinsLeaandpia1BeatenText, 0, .Script
|
2013-05-01 00:36:25 -07:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.Script:
|
2015-11-25 07:16:29 -08:00
|
|
|
end_if_just_battled
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-10 12:36:58 -08:00
|
|
|
writetext TwinsLeaandpia1AfterBattleText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-05-01 00:36:25 -07:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TrainerTwinsLeaandpia2:
|
2017-12-17 17:45:04 -08:00
|
|
|
trainer EVENT_BEAT_TWINS_LEA_AND_PIA, TWINS, LEAANDPIA1, TwinsLeaandpia2SeenText, TwinsLeaandpia2BeatenText, 0, .Script
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-17 17:45:04 -08:00
|
|
|
.Script:
|
2015-11-25 07:16:29 -08:00
|
|
|
end_if_just_battled
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2017-12-10 12:36:58 -08:00
|
|
|
writetext TwinsLeaandpia2AfterBattleText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
PokeBallScript_0x18c95a:
|
2015-12-09 15:25:44 -08:00
|
|
|
; This whole script is written out rather than as an
|
|
|
|
; item fragment because it's left over from the GS
|
|
|
|
; event.
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem DRAGON_FANG
|
2015-12-09 15:25:44 -08:00
|
|
|
iffalse .BagFull
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear DRAGONSDENB1F_POKE_BALL1
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2013-02-16 22:54:07 -08:00
|
|
|
itemtotext DRAGON_FANG, $0
|
2015-12-09 15:25:44 -08:00
|
|
|
writetext Text_FoundDragonFang
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_ITEM
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2013-02-16 22:54:07 -08:00
|
|
|
itemnotify
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
.BagFull:
|
|
|
|
opentext
|
2013-02-16 22:54:07 -08:00
|
|
|
itemtotext DRAGON_FANG, $0
|
2015-12-09 15:25:44 -08:00
|
|
|
writetext Text_FoundDragonFang
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-12-09 15:25:44 -08:00
|
|
|
writetext Text_NoRoomForDragonFang
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
SilverScript_0x18c97e:
|
2014-04-30 03:04:35 -07:00
|
|
|
playmusic MUSIC_RIVAL_ENCOUNTER
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-07-20 00:51:52 -07:00
|
|
|
checkevent EVENT_GAVE_KURT_APRICORNS
|
2015-12-09 15:25:44 -08:00
|
|
|
iftrue .SilverTalkAgain
|
|
|
|
writetext SilverText_Training1
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-07-20 00:51:52 -07:00
|
|
|
setevent EVENT_GAVE_KURT_APRICORNS
|
2015-02-11 15:03:42 -08:00
|
|
|
special RestartMapMusic
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
.SilverTalkAgain:
|
|
|
|
writetext SilverText_Training2
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-02-11 15:03:42 -08:00
|
|
|
special RestartMapMusic
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
MapDragonsDenB1FSignpost0Script:
|
2015-12-09 15:25:44 -08:00
|
|
|
jumptext DragonShrineSignpostText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-15 07:55:56 -08:00
|
|
|
DragonsDenB1FCalcium:
|
|
|
|
itemball CALCIUM
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-15 07:55:56 -08:00
|
|
|
DragonsDenB1FMaxElixer:
|
|
|
|
itemball MAX_ELIXER
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-15 08:21:58 -08:00
|
|
|
DragonsDenB1FHiddenRevive:
|
2015-07-18 12:46:38 -07:00
|
|
|
dwb EVENT_DRAGONS_DEN_B1F_HIDDEN_REVIVE, REVIVE
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-15 08:21:58 -08:00
|
|
|
DragonsDenB1FHiddenMaxPotion:
|
2015-07-18 12:46:38 -07:00
|
|
|
dwb EVENT_DRAGONS_DEN_B1F_HIDDEN_MAX_POTION, MAX_POTION
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-15 08:21:58 -08:00
|
|
|
DragonsDenB1FHiddenMaxElixer:
|
2015-07-18 12:46:38 -07:00
|
|
|
dwb EVENT_DRAGONS_DEN_B1F_HIDDEN_MAX_ELIXER, MAX_ELIXER
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
MovementDragonsDen_ClairWalksToYou:
|
2016-05-14 10:46:14 -07:00
|
|
|
slow_step RIGHT
|
|
|
|
slow_step RIGHT
|
|
|
|
slow_step RIGHT
|
|
|
|
slow_step RIGHT
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
MovementDragonsDen_ClairWalksAway:
|
2016-05-14 10:46:14 -07:00
|
|
|
slow_step LEFT
|
|
|
|
slow_step LEFT
|
|
|
|
slow_step LEFT
|
|
|
|
slow_step LEFT
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
ClairText_Wait:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Wait!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
ClairText_GiveDragonbreathDragonDen:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "CLAIR: I'm sorry"
|
|
|
|
line "about this."
|
|
|
|
|
|
|
|
para "Here, take this as"
|
|
|
|
line "my apology."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
NotifyReceiveDragonbreath:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER> received"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "TM24."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
ClairText_DescribeDragonbreathDragonDen:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "That contains"
|
|
|
|
line "DRAGONBREATH."
|
|
|
|
|
|
|
|
para "No, it doesn't"
|
|
|
|
line "have anything to"
|
|
|
|
cont "do with my breath."
|
|
|
|
|
|
|
|
para "If you don't want"
|
|
|
|
line "it, you don't have"
|
|
|
|
cont "to take it."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
ClairText_NoRoom:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Oh? You don't have"
|
|
|
|
line "any room for this."
|
|
|
|
|
|
|
|
para "I'm going back to"
|
|
|
|
line "the GYM, so make"
|
|
|
|
|
|
|
|
para "room, then come"
|
|
|
|
line "see me there."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
ClairText_WhatsTheMatterDragonDen:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "CLAIR: What's the"
|
|
|
|
line "matter? Aren't you"
|
|
|
|
|
|
|
|
para "going on to the"
|
|
|
|
line "#MON LEAGUE?"
|
|
|
|
|
|
|
|
para "Do you know how to"
|
|
|
|
line "get there?"
|
|
|
|
|
|
|
|
para "From here, go to"
|
|
|
|
line "NEW BARK TOWN."
|
|
|
|
|
|
|
|
para "Then SURF east to"
|
|
|
|
line "#MON LEAGUE."
|
|
|
|
|
|
|
|
para "The route there is"
|
|
|
|
line "very tough."
|
|
|
|
|
|
|
|
para "Don't you dare"
|
|
|
|
line "lose at the #-"
|
|
|
|
cont "MON LEAGUE!"
|
|
|
|
|
|
|
|
para "If you do, I'll"
|
|
|
|
line "feel even worse"
|
|
|
|
|
|
|
|
para "about having lost"
|
|
|
|
line "to you!"
|
|
|
|
|
|
|
|
para "Give it everything"
|
|
|
|
line "you've got."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
DragonShrineSignpostText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "DRAGON SHRINE"
|
|
|
|
|
|
|
|
para "A shrine honoring"
|
|
|
|
line "the dragon #MON"
|
|
|
|
|
|
|
|
para "said to have lived"
|
|
|
|
line "in DRAGON'S DEN."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
SilverText_Training1:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "…"
|
2015-06-27 21:59:17 -07:00
|
|
|
line "What? <PLAYER>?"
|
2014-03-05 21:29:44 -08:00
|
|
|
|
|
|
|
para "…No, I won't"
|
|
|
|
line "battle you now…"
|
|
|
|
|
|
|
|
para "My #MON aren't"
|
|
|
|
line "ready to beat you."
|
|
|
|
|
|
|
|
para "I can't push them"
|
|
|
|
line "too hard now."
|
|
|
|
|
|
|
|
para "I have to be dis-"
|
|
|
|
line "ciplined to become"
|
|
|
|
|
|
|
|
para "the greatest #-"
|
|
|
|
line "MON trainer…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
SilverText_Training2:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "…"
|
|
|
|
|
|
|
|
para "Whew…"
|
|
|
|
|
|
|
|
para "Learn to stay out"
|
|
|
|
line "of my way…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
CooltrainermDarinSeenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "You! How dare you"
|
|
|
|
line "enter uninvited!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
CooltrainermDarinBeatenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "S-strong!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 12:36:58 -08:00
|
|
|
CooltrainermDarinAfterBattleText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "The SHRINE ahead"
|
|
|
|
line "is home to the"
|
|
|
|
|
|
|
|
para "MASTER of our"
|
|
|
|
line "dragon-user clan."
|
|
|
|
|
|
|
|
para "You're not allowed"
|
|
|
|
line "to just go in!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
CooltrainerfCaraSeenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "You shouldn't be"
|
|
|
|
line "in here!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
CooltrainerfCaraBeatenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Oh yikes, I lost!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 12:36:58 -08:00
|
|
|
CooltrainerfCaraAfterBattleText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Soon I'm going to"
|
|
|
|
line "get permission"
|
|
|
|
|
|
|
|
para "from our MASTER to"
|
|
|
|
line "use dragons."
|
|
|
|
|
|
|
|
para "When I do, I'm"
|
|
|
|
line "going to become an"
|
|
|
|
|
|
|
|
para "admirable dragon"
|
|
|
|
line "trainer and gain"
|
|
|
|
|
|
|
|
para "our MASTER's"
|
|
|
|
line "approval."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TwinsLeaandpia1SeenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It's a stranger we"
|
|
|
|
line "don't know."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TwinsLeaandpia1BeatenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Ouchies."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 12:36:58 -08:00
|
|
|
TwinsLeaandpia1AfterBattleText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "It was like having"
|
|
|
|
line "to battle LANCE."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TwinsLeaandpia2SeenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Who are you?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
TwinsLeaandpia2BeatenText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Meanie."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 12:36:58 -08:00
|
|
|
TwinsLeaandpia2AfterBattleText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "We'll tell on you."
|
|
|
|
|
|
|
|
para "MASTER will be"
|
|
|
|
line "angry with you."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
Text_FoundDragonFang:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER> found"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "@"
|
2015-02-10 15:37:24 -08:00
|
|
|
text_from_ram StringBuffer3
|
2014-03-05 21:29:44 -08:00
|
|
|
text "!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-09 15:25:44 -08:00
|
|
|
Text_NoRoomForDragonFang:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "But <PLAYER> can't"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "carry any more"
|
|
|
|
cont "items."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:20:21 -07:00
|
|
|
DragonsDenB1F_MapEventHeader:
|
2013-02-16 22:54:07 -08:00
|
|
|
; filler
|
|
|
|
db 0, 0
|
|
|
|
|
2015-07-20 21:02:21 -07:00
|
|
|
.Warps:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 2
|
2015-07-23 09:59:19 -07:00
|
|
|
warp_def $3, $14, 3, DRAGONS_DEN_1F
|
|
|
|
warp_def $1d, $13, 1, DRAGON_SHRINE
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.CoordEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 1
|
2017-12-24 10:46:34 -08:00
|
|
|
coord_event 1, $1e, $13, DragonsDenB1F_ClairScene
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.BGEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 4
|
2017-12-24 10:46:34 -08:00
|
|
|
bg_event 24, 18, BGEVENT_READ, MapDragonsDenB1FSignpost0Script
|
|
|
|
bg_event 29, 33, BGEVENT_ITEM, DragonsDenB1FHiddenRevive
|
|
|
|
bg_event 17, 21, BGEVENT_ITEM, DragonsDenB1FHiddenMaxPotion
|
|
|
|
bg_event 15, 31, BGEVENT_ITEM, DragonsDenB1FHiddenMaxElixer
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.ObjectEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 9
|
2017-12-24 10:46:34 -08:00
|
|
|
object_event SPRITE_POKE_BALL, 16, 35, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokeBallScript_0x18c95a, EVENT_DRAGONS_DEN_B1F_DRAGON_FANG
|
|
|
|
object_event SPRITE_CLAIR, 30, 14, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ObjectEvent, EVENT_DRAGONS_DEN_CLAIR
|
|
|
|
object_event SPRITE_SILVER, 23, 20, SPRITEMOVEDATA_WANDER, 2, 2, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, SilverScript_0x18c97e, EVENT_RIVAL_DRAGONS_DEN
|
|
|
|
object_event SPRITE_COOLTRAINER_M, 8, 20, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 4, TrainerCooltrainermDarin, -1
|
|
|
|
object_event SPRITE_COOLTRAINER_F, 8, 8, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 3, TrainerCooltrainerfCara, -1
|
|
|
|
object_event SPRITE_TWIN, 17, 4, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 1, TrainerTwinsLeaandpia1, -1
|
|
|
|
object_event SPRITE_TWIN, 18, 4, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_TRAINER, 1, TrainerTwinsLeaandpia2, -1
|
|
|
|
object_event SPRITE_POKE_BALL, 4, 30, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, DragonsDenB1FCalcium, EVENT_DRAGONS_DEN_B1F_CALCIUM
|
|
|
|
object_event SPRITE_POKE_BALL, 20, 5, SPRITEMOVEDATA_ITEM_TREE, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, DragonsDenB1FMaxElixer, EVENT_DRAGONS_DEN_B1F_MAX_ELIXER
|