2020-07-24 06:49:26 -07:00
|
|
|
object_const_def
|
2015-11-26 21:22:14 -08:00
|
|
|
const ROUTE29_COOLTRAINER_M1
|
|
|
|
const ROUTE29_YOUNGSTER
|
|
|
|
const ROUTE29_TEACHER1
|
|
|
|
const ROUTE29_FRUIT_TREE
|
|
|
|
const ROUTE29_FISHER
|
|
|
|
const ROUTE29_COOLTRAINER_M2
|
2016-04-06 21:59:45 -07:00
|
|
|
const ROUTE29_TUSCANY
|
2015-11-26 21:22:14 -08:00
|
|
|
const ROUTE29_POKE_BALL
|
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
Route29_MapScripts:
|
2020-07-24 06:49:26 -07:00
|
|
|
def_scene_scripts
|
2018-02-01 09:40:58 -08:00
|
|
|
scene_script .DummyScene0 ; SCENE_ROUTE29_NOTHING
|
|
|
|
scene_script .DummyScene1 ; SCENE_ROUTE29_CATCH_TUTORIAL
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_callbacks
|
2018-01-12 21:47:38 -08:00
|
|
|
callback MAPCALLBACK_OBJECTS, .Tuscany
|
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-16 18:57:42 -08:00
|
|
|
.Tuscany:
|
2015-07-10 05:08:03 -07:00
|
|
|
checkflag ENGINE_ZEPHYRBADGE
|
2014-10-26 18:37:15 -07:00
|
|
|
iftrue .DoesTuscanyAppear
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.TuscanyDisappears:
|
2016-04-06 21:59:45 -07:00
|
|
|
disappear ROUTE29_TUSCANY
|
2020-07-17 05:37:03 -07:00
|
|
|
endcallback
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.DoesTuscanyAppear:
|
2019-03-10 12:31:59 -07:00
|
|
|
readvar VAR_WEEKDAY
|
2018-02-02 18:09:17 -08:00
|
|
|
ifnotequal TUESDAY, .TuscanyDisappears
|
2016-04-06 21:59:45 -07:00
|
|
|
appear ROUTE29_TUSCANY
|
2020-07-17 05:37:03 -07:00
|
|
|
endcallback
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29Tutorial1:
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject ROUTE29_COOLTRAINER_M1, UP
|
2015-11-26 21:22:14 -08:00
|
|
|
showemote EMOTE_SHOCK, ROUTE29_COOLTRAINER_M1, 15
|
2015-12-16 18:57:42 -08:00
|
|
|
applymovement ROUTE29_COOLTRAINER_M1, DudeMovementData1a
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject PLAYER, LEFT
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_DUDE_TALKED_TO_YOU
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-12-16 18:57:42 -08:00
|
|
|
writetext CatchingTutorialIntroText
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2015-12-16 18:57:42 -08:00
|
|
|
iffalse Script_RefusedTutorial1
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-11-26 21:22:14 -08:00
|
|
|
follow ROUTE29_COOLTRAINER_M1, PLAYER
|
2015-12-16 18:57:42 -08:00
|
|
|
applymovement ROUTE29_COOLTRAINER_M1, DudeMovementData1b
|
2013-02-16 22:54:07 -08:00
|
|
|
stopfollow
|
2015-12-01 18:54:11 -08:00
|
|
|
loadwildmon RATTATA, 5
|
2014-06-17 11:58:11 -07:00
|
|
|
catchtutorial BATTLETYPE_TUTORIAL
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject ROUTE29_COOLTRAINER_M1, UP
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-12-16 18:57:42 -08:00
|
|
|
writetext CatchingTutorialDebriefText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-01 09:40:58 -08:00
|
|
|
setscene SCENE_ROUTE29_NOTHING
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_LEARNED_TO_CATCH_POKEMON
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29Tutorial2:
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject ROUTE29_COOLTRAINER_M1, UP
|
2015-11-26 21:22:14 -08:00
|
|
|
showemote EMOTE_SHOCK, ROUTE29_COOLTRAINER_M1, 15
|
2015-12-16 18:57:42 -08:00
|
|
|
applymovement ROUTE29_COOLTRAINER_M1, DudeMovementData2a
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject PLAYER, LEFT
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_DUDE_TALKED_TO_YOU
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-12-16 18:57:42 -08:00
|
|
|
writetext CatchingTutorialIntroText
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2015-12-16 18:57:42 -08:00
|
|
|
iffalse Script_RefusedTutorial2
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-11-26 21:22:14 -08:00
|
|
|
follow ROUTE29_COOLTRAINER_M1, PLAYER
|
2015-12-16 18:57:42 -08:00
|
|
|
applymovement ROUTE29_COOLTRAINER_M1, DudeMovementData2b
|
2013-02-16 22:54:07 -08:00
|
|
|
stopfollow
|
2015-12-01 18:54:11 -08:00
|
|
|
loadwildmon RATTATA, 5
|
2014-06-17 11:58:11 -07:00
|
|
|
catchtutorial BATTLETYPE_TUTORIAL
|
2018-02-25 17:05:37 -08:00
|
|
|
turnobject ROUTE29_COOLTRAINER_M1, UP
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-12-16 18:57:42 -08:00
|
|
|
writetext CatchingTutorialDebriefText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2018-02-01 09:40:58 -08:00
|
|
|
setscene SCENE_ROUTE29_NOTHING
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_LEARNED_TO_CATCH_POKEMON
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Script_RefusedTutorial1:
|
|
|
|
writetext CatchingTutorialDeclinedText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-12-16 18:57:42 -08:00
|
|
|
applymovement ROUTE29_COOLTRAINER_M1, DudeMovementData1b
|
2018-02-01 09:40:58 -08:00
|
|
|
setscene SCENE_ROUTE29_NOTHING
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Script_RefusedTutorial2:
|
|
|
|
writetext CatchingTutorialDeclinedText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-12-16 18:57:42 -08:00
|
|
|
applymovement ROUTE29_COOLTRAINER_M1, DudeMovementData2b
|
2018-02-01 09:40:58 -08:00
|
|
|
setscene SCENE_ROUTE29_NOTHING
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
CatchingTutorialDudeScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2019-03-10 12:31:59 -07:00
|
|
|
readvar VAR_BOXSPACE
|
2018-02-02 18:09:17 -08:00
|
|
|
ifequal 0, .BoxFull
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_LEARNED_TO_CATCH_POKEMON
|
2015-12-16 18:57:42 -08:00
|
|
|
iftrue .BoxFull
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_GAVE_MYSTERY_EGG_TO_ELM
|
2015-12-16 18:57:42 -08:00
|
|
|
iffalse .BoxFull
|
|
|
|
writetext CatchingTutorialRepeatText
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2015-12-16 18:57:42 -08:00
|
|
|
iffalse .Declined
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2015-12-01 18:54:11 -08:00
|
|
|
loadwildmon RATTATA, 5
|
2014-06-17 11:58:11 -07:00
|
|
|
catchtutorial BATTLETYPE_TUTORIAL
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-12-16 18:57:42 -08:00
|
|
|
writetext CatchingTutorialDebriefText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_LEARNED_TO_CATCH_POKEMON
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
.BoxFull:
|
2018-08-19 10:56:41 -07:00
|
|
|
writetext CatchingTutorialBoxFullText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
.Declined:
|
|
|
|
writetext CatchingTutorialDeclinedText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29YoungsterScript:
|
|
|
|
jumptextfaceplayer Route29YoungsterText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29TeacherScript:
|
|
|
|
jumptextfaceplayer Route29TeacherText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29FisherScript:
|
|
|
|
jumptextfaceplayer Route29FisherText
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-28 14:47:31 -08:00
|
|
|
Route29CooltrainerMScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2018-02-02 18:20:13 -08:00
|
|
|
checktime DAY
|
2015-12-16 18:57:42 -08:00
|
|
|
iftrue .day_morn
|
2018-02-02 18:20:13 -08:00
|
|
|
checktime NITE
|
2015-12-16 18:57:42 -08:00
|
|
|
iftrue .nite
|
2016-04-10 12:01:49 -07:00
|
|
|
.day_morn
|
2018-02-28 14:47:31 -08:00
|
|
|
writetext Route29CooltrainerMText_WaitingForNight
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2016-04-10 12:01:49 -07:00
|
|
|
.nite
|
2018-02-28 14:47:31 -08:00
|
|
|
writetext Route29CooltrainerMText_WaitingForMorning
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyScript:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_GOT_PINK_BOW_FROM_TUSCANY
|
2014-10-26 18:37:15 -07:00
|
|
|
iftrue TuscanyTuesdayScript
|
2019-03-10 12:31:59 -07:00
|
|
|
readvar VAR_WEEKDAY
|
2018-02-02 18:09:17 -08:00
|
|
|
ifnotequal TUESDAY, TuscanyNotTuesdayScript
|
2013-09-24 00:48:58 -07:00
|
|
|
checkevent EVENT_MET_TUSCANY_OF_TUESDAY
|
2014-10-26 18:37:15 -07:00
|
|
|
iftrue .MetTuscany
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext MeetTuscanyText
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_MET_TUSCANY_OF_TUESDAY
|
2016-04-10 11:42:14 -07:00
|
|
|
.MetTuscany:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext TuscanyGivesGiftText
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2015-11-04 17:20:14 -08:00
|
|
|
verbosegiveitem PINK_BOW
|
2014-10-26 18:37:15 -07:00
|
|
|
iffalse TuscanyDoneScript
|
2013-09-24 00:48:58 -07:00
|
|
|
setevent EVENT_GOT_PINK_BOW_FROM_TUSCANY
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext TuscanyGaveGiftText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyTuesdayScript:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext TuscanyTuesdayText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyDoneScript:
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyNotTuesdayScript:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext TuscanyNotTuesdayText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2016-04-06 21:59:45 -07:00
|
|
|
Route29Sign1:
|
|
|
|
jumptext Route29Sign1Text
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-06 21:59:45 -07:00
|
|
|
Route29Sign2:
|
|
|
|
jumptext Route29Sign2Text
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29FruitTree:
|
2015-11-18 07:42:42 -08:00
|
|
|
fruittree FRUITTREE_ROUTE_29
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-15 07:55:56 -08:00
|
|
|
Route29Potion:
|
|
|
|
itemball POTION
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
DudeMovementData1a:
|
2016-05-14 10:46:14 -07:00
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step RIGHT
|
|
|
|
step RIGHT
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
DudeMovementData2a:
|
2016-05-14 10:46:14 -07:00
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step UP
|
|
|
|
step RIGHT
|
|
|
|
step RIGHT
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
DudeMovementData1b:
|
2016-05-14 10:46:14 -07:00
|
|
|
step LEFT
|
|
|
|
step LEFT
|
|
|
|
step DOWN
|
|
|
|
step DOWN
|
|
|
|
step DOWN
|
|
|
|
step DOWN
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
DudeMovementData2b:
|
2016-05-14 10:46:14 -07:00
|
|
|
step LEFT
|
|
|
|
step LEFT
|
|
|
|
step DOWN
|
|
|
|
step DOWN
|
|
|
|
step DOWN
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2018-08-19 10:56:41 -07:00
|
|
|
CatchingTutorialBoxFullText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "#MON hide in"
|
|
|
|
line "the grass. Who"
|
|
|
|
|
|
|
|
para "knows when they'll"
|
|
|
|
line "pop out…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
CatchingTutorialIntroText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I've seen you a"
|
|
|
|
line "couple times. How"
|
|
|
|
|
|
|
|
para "many #MON have"
|
|
|
|
line "you caught?"
|
|
|
|
|
|
|
|
para "Would you like me"
|
|
|
|
line "to show you how to"
|
|
|
|
cont "catch #MON?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
CatchingTutorialDebriefText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "That's how you do"
|
|
|
|
line "it."
|
|
|
|
|
|
|
|
para "If you weaken them"
|
|
|
|
line "first, #MON are"
|
|
|
|
cont "easier to catch."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
CatchingTutorialDeclinedText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Oh. Fine, then."
|
|
|
|
|
|
|
|
para "Anyway, if you"
|
|
|
|
line "want to catch"
|
|
|
|
|
|
|
|
para "#MON, you have"
|
|
|
|
line "to walk a lot."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
CatchingTutorialRepeatText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Huh? You want me"
|
|
|
|
line "to show you how to"
|
|
|
|
cont "catch #MON?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29YoungsterText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Yo. How are your"
|
|
|
|
line "#MON?"
|
|
|
|
|
|
|
|
para "If they're weak"
|
|
|
|
line "and not ready for"
|
|
|
|
|
|
|
|
para "battle, keep out"
|
|
|
|
line "of the grass."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29TeacherText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "See those ledges?"
|
|
|
|
line "It's scary to jump"
|
|
|
|
cont "off them."
|
|
|
|
|
|
|
|
para "But you can go to"
|
|
|
|
line "NEW BARK without"
|
|
|
|
|
|
|
|
para "walking through"
|
|
|
|
line "the grass."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-12-16 18:57:42 -08:00
|
|
|
Route29FisherText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I wanted to take a"
|
|
|
|
line "break, so I saved"
|
|
|
|
|
|
|
|
para "to record my"
|
|
|
|
line "progress."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-11-03 07:13:06 -08:00
|
|
|
Route29CooltrainerMText_WaitingForDay: ; unreferenced
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I'm waiting for"
|
|
|
|
line "#MON that"
|
|
|
|
|
|
|
|
para "appear only in the"
|
|
|
|
line "daytime."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-28 14:47:31 -08:00
|
|
|
Route29CooltrainerMText_WaitingForNight:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I'm waiting for"
|
|
|
|
line "#MON that"
|
|
|
|
|
|
|
|
para "appear only at"
|
|
|
|
line "night."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-02-28 14:47:31 -08:00
|
|
|
Route29CooltrainerMText_WaitingForMorning:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I'm waiting for"
|
|
|
|
line "#MON that"
|
|
|
|
|
|
|
|
para "appear only in the"
|
|
|
|
line "morning."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
MeetTuscanyText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "TUSCANY: I do be-"
|
|
|
|
line "lieve that this is"
|
|
|
|
|
|
|
|
para "the first time"
|
|
|
|
line "we've met?"
|
|
|
|
|
|
|
|
para "Please allow me to"
|
|
|
|
line "introduce myself."
|
|
|
|
|
|
|
|
para "I am TUSCANY of"
|
|
|
|
line "Tuesday."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyGivesGiftText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "By way of intro-"
|
|
|
|
line "duction, please"
|
|
|
|
|
|
|
|
para "accept this gift,"
|
|
|
|
line "a PINK BOW."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyGaveGiftText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "TUSCANY: Wouldn't"
|
|
|
|
line "you agree that it"
|
|
|
|
cont "is most adorable?"
|
|
|
|
|
|
|
|
para "It strengthens"
|
|
|
|
line "normal-type moves."
|
|
|
|
|
|
|
|
para "I am certain it"
|
|
|
|
line "will be of use."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyTuesdayText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "TUSCANY: Have you"
|
|
|
|
line "met MONICA, my"
|
|
|
|
cont "older sister?"
|
|
|
|
|
|
|
|
para "Or my younger"
|
|
|
|
line "brother, WESLEY?"
|
|
|
|
|
|
|
|
para "I am the second of"
|
|
|
|
line "seven children."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2014-10-26 18:37:15 -07:00
|
|
|
TuscanyNotTuesdayText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "TUSCANY: Today is"
|
|
|
|
line "not Tuesday. That"
|
|
|
|
cont "is unfortunate…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-06 21:59:45 -07:00
|
|
|
Route29Sign1Text:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "ROUTE 29"
|
|
|
|
|
|
|
|
para "CHERRYGROVE CITY -"
|
|
|
|
line "NEW BARK TOWN"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2016-04-06 21:59:45 -07:00
|
|
|
Route29Sign2Text:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "ROUTE 29"
|
|
|
|
|
|
|
|
para "CHERRYGROVE CITY -"
|
|
|
|
line "NEW BARK TOWN"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2018-01-16 19:57:19 -08:00
|
|
|
Route29_MapEvents:
|
2018-01-30 11:15:47 -08:00
|
|
|
db 0, 0 ; filler
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_warp_events
|
2018-02-01 19:22:07 -08:00
|
|
|
warp_event 27, 1, ROUTE_29_ROUTE_46_GATE, 3
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_coord_events
|
2018-02-01 19:22:07 -08:00
|
|
|
coord_event 53, 8, SCENE_ROUTE29_CATCH_TUTORIAL, Route29Tutorial1
|
|
|
|
coord_event 53, 9, SCENE_ROUTE29_CATCH_TUTORIAL, Route29Tutorial2
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_bg_events
|
2018-02-01 19:22:07 -08:00
|
|
|
bg_event 51, 7, BGEVENT_READ, Route29Sign1
|
|
|
|
bg_event 3, 5, BGEVENT_READ, Route29Sign2
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2020-07-24 06:49:26 -07:00
|
|
|
def_object_events
|
2017-12-28 11:31:25 -08:00
|
|
|
object_event 50, 12, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, CatchingTutorialDudeScript, -1
|
|
|
|
object_event 27, 16, SPRITE_YOUNGSTER, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route29YoungsterScript, -1
|
|
|
|
object_event 15, 11, SPRITE_TEACHER, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route29TeacherScript, -1
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 12, 2, SPRITE_FRUIT_TREE, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, Route29FruitTree, -1
|
|
|
|
object_event 25, 3, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, Route29FisherScript, -1
|
2018-02-28 14:47:31 -08:00
|
|
|
object_event 13, 4, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, Route29CooltrainerMScript, -1
|
2017-12-28 11:31:25 -08:00
|
|
|
object_event 29, 12, SPRITE_TEACHER, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, TuscanyScript, EVENT_ROUTE_29_TUSCANY_OF_TUESDAY
|
2018-02-01 19:22:07 -08:00
|
|
|
object_event 48, 2, SPRITE_POKE_BALL, SPRITEMOVEDATA_STILL, 0, 0, -1, -1, 0, OBJECTTYPE_ITEMBALL, 0, Route29Potion, EVENT_ROUTE_29_POTION
|