2015-11-26 21:22:14 -08:00
|
|
|
const_value set 2
|
|
|
|
const ROUTE36NATIONALPARKGATE_OFFICER1
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER1
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER2
|
|
|
|
const ROUTE36NATIONALPARKGATE_ROCKER
|
|
|
|
const ROUTE36NATIONALPARKGATE_POKEFAN_M
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER3
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER4
|
|
|
|
const ROUTE36NATIONALPARKGATE_LASS
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER5
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER6
|
|
|
|
const ROUTE36NATIONALPARKGATE_YOUNGSTER7
|
|
|
|
const ROUTE36NATIONALPARKGATE_OFFICER2
|
|
|
|
|
2017-12-10 10:37:15 -08:00
|
|
|
Route36NationalParkGate_MapScriptHeader:
|
2017-12-24 10:46:34 -08:00
|
|
|
.SceneScripts:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 3
|
2017-12-24 10:46:34 -08:00
|
|
|
scene_script .DummyScene0
|
|
|
|
scene_script .DummyScene1
|
|
|
|
scene_script .LeaveContestEarly
|
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 2
|
2016-01-06 04:44:50 -08:00
|
|
|
dbw MAPCALLBACK_NEWMAP, .CheckIfContestRunning
|
|
|
|
dbw MAPCALLBACK_OBJECTS, .CheckIfContestAvailable
|
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
|
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.LeaveContestEarly:
|
|
|
|
priorityjump .LeavingContestEarly
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.CheckIfContestRunning:
|
2015-07-10 05:08:03 -07:00
|
|
|
checkflag ENGINE_BUG_CONTEST_TIMER
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .BugContestIsRunning
|
2017-12-24 10:46:34 -08:00
|
|
|
setscene $0
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.BugContestIsRunning:
|
2017-12-24 10:46:34 -08:00
|
|
|
setscene $2
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.CheckIfContestAvailable:
|
2015-07-20 00:51:52 -07:00
|
|
|
checkevent EVENT_WARPED_FROM_ROUTE_35_NATIONAL_PARK_GATE
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Return
|
2015-07-09 19:08:03 -07:00
|
|
|
checkcode VAR_WEEKDAY
|
2015-07-22 12:57:02 -07:00
|
|
|
if_equal TUESDAY, .SetContestOfficer
|
|
|
|
if_equal THURSDAY, .SetContestOfficer
|
|
|
|
if_equal SATURDAY, .SetContestOfficer
|
2015-07-10 05:08:03 -07:00
|
|
|
checkflag ENGINE_BUG_CONTEST_TIMER
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .SetContestOfficer
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear ROUTE36NATIONALPARKGATE_OFFICER1
|
|
|
|
appear ROUTE36NATIONALPARKGATE_OFFICER2
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.SetContestOfficer:
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_OFFICER1
|
|
|
|
disappear ROUTE36NATIONALPARKGATE_OFFICER2
|
2015-07-22 12:57:02 -07:00
|
|
|
.Return:
|
2013-02-16 22:54:07 -08:00
|
|
|
return
|
|
|
|
|
2017-12-10 14:53:21 -08:00
|
|
|
.LeavingContestEarly:
|
2015-07-21 23:49:18 -07:00
|
|
|
spriteface PLAYER, UP
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-07-10 02:04:41 -07:00
|
|
|
checkcode VAR_CONTESTMINUTES
|
2013-02-16 22:54:07 -08:00
|
|
|
addvar $1
|
|
|
|
RAM2MEM $0
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b284
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .GoBackToContest
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b2c5
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-07-20 15:59:26 -07:00
|
|
|
special Special_FadeBlackQuickly
|
|
|
|
special Special_ReloadSpritesNoPalettes
|
2015-07-22 12:57:02 -07:00
|
|
|
scall .CopyContestants
|
2015-11-26 21:22:14 -08:00
|
|
|
disappear ROUTE36NATIONALPARKGATE_OFFICER1
|
|
|
|
appear ROUTE36NATIONALPARKGATE_OFFICER2
|
2015-07-21 23:49:18 -07:00
|
|
|
applymovement PLAYER, MovementData_0x6add1
|
2013-02-16 22:54:07 -08:00
|
|
|
pause 15
|
2015-11-26 18:05:32 -08:00
|
|
|
special Special_FadeInQuickly
|
2015-06-24 18:26:24 -07:00
|
|
|
jumpstd bugcontestresults
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.GoBackToContest:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b300
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-07-21 23:49:18 -07:00
|
|
|
spriteface PLAYER, LEFT
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_EXIT_BUILDING
|
2015-11-26 18:05:32 -08:00
|
|
|
special FadeOutPalettes
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-11-03 12:05:19 -08:00
|
|
|
warpfacing LEFT, NATIONAL_PARK_BUG_CONTEST, $21, $12
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.CopyContestants:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_1A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not1
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER1
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not1:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_2A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not2
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER2
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not2:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_3A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not3
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_ROCKER
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not3:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_4A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not4
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_POKEFAN_M
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not4:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_5A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not5
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER3
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not5:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_6A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not6
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER4
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not6:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_7A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not7
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_LASS
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not7:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_8A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not8
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER5
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not8:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_9A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not9
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER6
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not9:
|
2015-07-16 15:10:10 -07:00
|
|
|
checkevent EVENT_BUG_CATCHING_CONTESTANT_10A
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Not10
|
2015-11-26 21:22:14 -08:00
|
|
|
appear ROUTE36NATIONALPARKGATE_YOUNGSTER7
|
2015-07-22 12:57:02 -07:00
|
|
|
.Not10:
|
|
|
|
special UpdateSprites
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
Route36OfficerScriptContest:
|
2015-07-09 19:08:03 -07:00
|
|
|
checkcode VAR_WEEKDAY
|
2015-07-22 12:57:02 -07:00
|
|
|
if_equal SUNDAY, _ContestNotOn
|
|
|
|
if_equal MONDAY, _ContestNotOn
|
|
|
|
if_equal WEDNESDAY, _ContestNotOn
|
|
|
|
if_equal FRIDAY, _ContestNotOn
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-07-15 12:48:44 -07:00
|
|
|
checkflag ENGINE_DAILY_BUG_CONTEST
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue Route36Officer_ContestHasConcluded
|
2017-12-10 10:37:15 -08:00
|
|
|
scall Route36ParkGate_DayToText
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6add5
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .DecidedNotToJoinContest
|
2015-07-09 19:08:03 -07:00
|
|
|
checkcode VAR_PARTYCOUNT
|
2015-07-22 12:57:02 -07:00
|
|
|
if_greater_than $1, .LeaveMonsWithOfficer
|
2015-11-11 13:11:08 -08:00
|
|
|
special ContestDropOffMons
|
2015-07-15 12:48:44 -07:00
|
|
|
clearevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
|
2015-07-22 12:57:02 -07:00
|
|
|
.ResumeStartingContest:
|
2015-07-10 05:08:03 -07:00
|
|
|
setflag ENGINE_BUG_CONTEST_TIMER
|
2015-02-11 15:03:42 -08:00
|
|
|
special PlayMapMusic
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6ae87
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6aeb1
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_ITEM
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6aecc
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
2015-07-10 05:08:03 -07:00
|
|
|
setflag ENGINE_BUG_CONTEST_TIMER
|
2015-07-16 15:10:10 -07:00
|
|
|
special Special_GiveParkBalls
|
2015-07-21 23:49:18 -07:00
|
|
|
spriteface PLAYER, LEFT
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_EXIT_BUILDING
|
2015-11-26 18:05:32 -08:00
|
|
|
special FadeOutPalettes
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-07-16 15:10:10 -07:00
|
|
|
special Special_SelectRandomBugContestContestants
|
2015-11-03 12:05:19 -08:00
|
|
|
warpfacing LEFT, NATIONAL_PARK_BUG_CONTEST, $21, $12
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.LeaveMonsWithOfficer:
|
2015-07-09 19:08:03 -07:00
|
|
|
checkcode VAR_PARTYCOUNT
|
2015-07-22 12:57:02 -07:00
|
|
|
if_less_than $6, .ContinueLeavingMons
|
2015-07-09 19:08:03 -07:00
|
|
|
checkcode VAR_BOXSPACE
|
2015-07-22 12:57:02 -07:00
|
|
|
if_equal $0, .BoxFull
|
|
|
|
.ContinueLeavingMons:
|
|
|
|
special CheckFirstMonIsEgg
|
|
|
|
if_equal $1, .FirstMonIsEgg
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6afb0
|
2013-02-16 22:54:07 -08:00
|
|
|
yesorno
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .RefusedToLeaveMons
|
2015-11-11 13:11:08 -08:00
|
|
|
special ContestDropOffMons
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .FirstMonIsFainted
|
2015-07-15 12:48:44 -07:00
|
|
|
setevent EVENT_LEFT_MONS_WITH_CONTEST_OFFICER
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b021
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b055
|
2014-04-30 03:04:35 -07:00
|
|
|
playsound SFX_GOT_SAFARI_BALLS
|
2015-11-25 07:16:29 -08:00
|
|
|
waitsfx
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-07-22 12:57:02 -07:00
|
|
|
jump .ResumeStartingContest
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.DecidedNotToJoinContest:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b0c6
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.RefusedToLeaveMons:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b081
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.FirstMonIsFainted:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b0f2
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.BoxFull:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b166
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.FirstMonIsEgg:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b209
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
Route36Officer_ContestHasConcluded:
|
2015-07-15 12:48:44 -07:00
|
|
|
checkevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Sunstone
|
2015-07-15 12:48:44 -07:00
|
|
|
checkevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Everstone
|
2015-07-15 12:48:44 -07:00
|
|
|
checkevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .GoldBerry
|
2015-07-15 12:48:44 -07:00
|
|
|
checkevent EVENT_CONTEST_OFFICER_HAS_BERRY
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue .Berry
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b32b
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.Sunstone:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b97f
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-04 17:20:14 -08:00
|
|
|
verbosegiveitem SUN_STONE
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .BagFull
|
2015-07-15 12:48:44 -07:00
|
|
|
clearevent EVENT_CONTEST_OFFICER_HAS_SUN_STONE
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.Everstone:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b97f
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-04 17:20:14 -08:00
|
|
|
verbosegiveitem EVERSTONE
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .BagFull
|
2015-07-15 12:48:44 -07:00
|
|
|
clearevent EVENT_CONTEST_OFFICER_HAS_EVERSTONE
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.GoldBerry:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b97f
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-04 17:20:14 -08:00
|
|
|
verbosegiveitem GOLD_BERRY
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .BagFull
|
2015-07-15 12:48:44 -07:00
|
|
|
clearevent EVENT_CONTEST_OFFICER_HAS_GOLD_BERRY
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.Berry:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b97f
|
2015-11-29 19:29:45 -08:00
|
|
|
buttonsound
|
2015-11-04 17:20:14 -08:00
|
|
|
verbosegiveitem BERRY
|
2015-07-22 12:57:02 -07:00
|
|
|
iffalse .BagFull
|
2015-07-15 12:48:44 -07:00
|
|
|
clearevent EVENT_CONTEST_OFFICER_HAS_BERRY
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
.BagFull:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b910
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
_ContestNotOn:
|
2013-02-16 22:54:07 -08:00
|
|
|
jumptextfaceplayer UnknownText_0x6b370
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
OfficerScript_0x6acf4:
|
2013-02-16 22:54:07 -08:00
|
|
|
faceplayer
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2015-07-15 12:48:44 -07:00
|
|
|
checkflag ENGINE_DAILY_BUG_CONTEST
|
2015-07-22 12:57:02 -07:00
|
|
|
iftrue Route36Officer_ContestHasConcluded
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b370
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2017-12-10 10:37:15 -08:00
|
|
|
Route36ParkGate_DayToText:
|
2015-06-24 18:26:24 -07:00
|
|
|
jumpstd daytotext
|
2013-02-16 22:54:07 -08:00
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6ad06:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad14
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b399
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad14:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b3c4
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6ad1a:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad28
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b40f
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad28:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b440
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
RockerScript_0x6ad2e:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad3c
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b462
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad3c:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b496
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
PokefanMScript_0x6ad42:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad50
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b4da
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad50:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b50a
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6ad56:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad64
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b54e
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad64:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b57c
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6ad6a:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad78
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b5b0
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad78:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b5dd
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
LassScript_0x6ad7e:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ad8c
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b64b
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ad8c:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b698
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6ad92:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6ada0
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b6b8
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6ada0:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b6e9
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6ada6:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6adb4
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b71b
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6adb4:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b740
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
YoungsterScript_0x6adba:
|
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
|
2013-02-16 22:54:07 -08:00
|
|
|
iffalse UnknownScript_0x6adc8
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b76f
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6adc8:
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext UnknownText_0x6b7af
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-02-16 22:54:07 -08:00
|
|
|
closetext
|
|
|
|
end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownScript_0x6adce:
|
2013-02-16 22:54:07 -08:00
|
|
|
jumptext UnknownText_0x6b84c
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
MovementData_0x6add1:
|
2016-05-14 10:46:14 -07:00
|
|
|
big_step DOWN
|
|
|
|
big_step RIGHT
|
|
|
|
turn_head UP
|
2013-02-16 22:54:07 -08:00
|
|
|
step_end
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6add5:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Today's @"
|
2015-02-10 15:37:24 -08:00
|
|
|
text_from_ram StringBuffer3
|
2014-03-05 21:29:44 -08:00
|
|
|
text "."
|
|
|
|
line "That means the"
|
|
|
|
|
|
|
|
para "Bug-Catching Con-"
|
|
|
|
line "test is on today."
|
|
|
|
|
|
|
|
para "The rules are sim-"
|
|
|
|
line "ple."
|
|
|
|
|
|
|
|
para "Using one of your"
|
|
|
|
line "#MON, catch a"
|
|
|
|
|
|
|
|
para "bug #MON to be"
|
|
|
|
line "judged."
|
|
|
|
|
|
|
|
para "Would you like to"
|
|
|
|
line "give it a try?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6ae87:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Here are the PARK"
|
|
|
|
line "BALLS for the"
|
|
|
|
cont "Contest."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6aeb1:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER> received"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "20 PARK BALLS."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6aecc:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "The person who"
|
|
|
|
line "gets the strong-"
|
|
|
|
cont "est bug #MON"
|
|
|
|
cont "is the winner."
|
|
|
|
|
|
|
|
para "You have 20"
|
|
|
|
line "minutes."
|
|
|
|
|
|
|
|
para "If you run out of"
|
|
|
|
line "PARK BALLS, you're"
|
|
|
|
cont "done."
|
|
|
|
|
|
|
|
para "You can keep the"
|
|
|
|
line "last #MON you"
|
|
|
|
cont "catch as your own."
|
|
|
|
|
|
|
|
para "Go out and catch"
|
|
|
|
line "the strongest bug"
|
|
|
|
|
|
|
|
para "#MON you can"
|
|
|
|
line "find!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6afb0:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Uh-oh…"
|
|
|
|
|
|
|
|
para "You have more than"
|
|
|
|
line "one #MON."
|
|
|
|
|
|
|
|
para "You'll have to use"
|
|
|
|
line "@"
|
2015-02-10 15:37:24 -08:00
|
|
|
text_from_ram StringBuffer3
|
2014-03-05 21:29:44 -08:00
|
|
|
text ", the"
|
|
|
|
|
|
|
|
para "first #MON in"
|
|
|
|
line "your party."
|
|
|
|
|
|
|
|
para "Is that OK with"
|
|
|
|
line "you?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b021:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Fine, we'll hold"
|
|
|
|
line "your other #MON"
|
|
|
|
cont "while you compete."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b055:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER>'s #MON"
|
2014-03-05 21:29:44 -08:00
|
|
|
line "were left with the"
|
|
|
|
cont "CONTEST HELPER."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b081:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Please choose the"
|
|
|
|
line "#MON to be used"
|
|
|
|
|
|
|
|
para "in the Contest,"
|
|
|
|
line "then come see me."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b0c6:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "OK. We hope you'll"
|
|
|
|
line "take part in the"
|
|
|
|
cont "future."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b0f2:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Uh-oh…"
|
|
|
|
line "The first #MON"
|
|
|
|
|
|
|
|
para "in your party"
|
|
|
|
line "can't battle."
|
|
|
|
|
|
|
|
para "Please switch it"
|
|
|
|
line "with the #MON"
|
|
|
|
|
|
|
|
para "you want to use,"
|
|
|
|
line "then come see me."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b166:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Uh-oh…"
|
|
|
|
line "Both your party"
|
|
|
|
|
|
|
|
para "and your PC BOX"
|
|
|
|
line "are full."
|
|
|
|
|
|
|
|
para "You have no room"
|
|
|
|
line "to put the bug"
|
|
|
|
cont "#MON you catch."
|
|
|
|
|
|
|
|
para "Please make room"
|
|
|
|
line "in your party or"
|
|
|
|
|
|
|
|
para "your PC BOX, then"
|
|
|
|
line "come see me."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b209:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Uh-oh…"
|
|
|
|
line "You have an EGG as"
|
|
|
|
|
|
|
|
para "the first #MON"
|
|
|
|
line "in your party."
|
|
|
|
|
|
|
|
para "Please switch it"
|
|
|
|
line "with the #MON"
|
|
|
|
|
|
|
|
para "you want to use,"
|
|
|
|
line "then come see me."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b284:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "You still have @"
|
2015-02-10 15:37:24 -08:00
|
|
|
text_from_ram StringBuffer3
|
2015-06-27 21:59:17 -07:00
|
|
|
text ""
|
2014-03-05 21:29:44 -08:00
|
|
|
line "minute(s) left."
|
|
|
|
|
|
|
|
para "Do you want to"
|
|
|
|
line "finish now?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b2c5:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "OK. Please wait"
|
|
|
|
line "here for the"
|
|
|
|
|
|
|
|
para "announcement of"
|
|
|
|
line "the winners."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b300:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "OK. Please go back"
|
|
|
|
line "outside and finish"
|
|
|
|
cont "up."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b32b:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Today's Contest is"
|
|
|
|
line "over. We hope you"
|
|
|
|
|
|
|
|
para "will participate"
|
|
|
|
line "in the future."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b370:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Some #MON can"
|
|
|
|
line "only be seen in"
|
|
|
|
cont "the PARK."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b399:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "DON: Wow, you beat"
|
|
|
|
line "me. You're pretty"
|
|
|
|
cont "good."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b3c4:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "DON: Luck plays a"
|
|
|
|
line "big part in this."
|
|
|
|
|
|
|
|
para "You never know"
|
|
|
|
line "what #MON will"
|
|
|
|
cont "appear."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b40f:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "ED: I envy you."
|
|
|
|
line "I just couldn't"
|
|
|
|
cont "do it this time."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b440:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "ED: Maybe you win"
|
|
|
|
line "with big #MON?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b462:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "NICK: Well done!"
|
|
|
|
line "I'm going to raise"
|
|
|
|
cont "my #MON better."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b496:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "NICK: Maybe you"
|
|
|
|
line "get a higher score"
|
|
|
|
|
|
|
|
para "for a #MON of"
|
|
|
|
line "an unusual color."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b4da:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "WILLIAM: You're"
|
|
|
|
line "the winner? What"
|
|
|
|
cont "did you catch?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b50a:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "WILLIAM: Well, I'm"
|
|
|
|
line "satisfied because"
|
|
|
|
|
|
|
|
para "I caught a #MON"
|
|
|
|
line "that I wanted."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b54e:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "BENNY: Congrats!"
|
|
|
|
line "You have earned my"
|
|
|
|
cont "respect!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b57c:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "BENNY: I caught a"
|
|
|
|
line "SCYTHER before,"
|
|
|
|
cont "but I didn't win."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b5b0:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "BARRY: That #-"
|
|
|
|
line "MON you caught…"
|
|
|
|
cont "it's awesome!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b5dd:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "BARRY: It's easier"
|
|
|
|
line "to win if you get"
|
|
|
|
|
|
|
|
para "a high-level bug"
|
|
|
|
line "#MON."
|
|
|
|
|
|
|
|
para "But I think they"
|
|
|
|
line "also consider some"
|
|
|
|
cont "other points."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b64b:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "CINDY: You won?"
|
|
|
|
line "That's great!"
|
|
|
|
|
|
|
|
para "Do you feel like"
|
|
|
|
line "looking for bug"
|
|
|
|
cont "#MON with me?"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b698:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "CINDY: I really"
|
|
|
|
line "love bug #MON!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b6b8:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "JOSH: I… I can't"
|
|
|
|
line "believe I lost at"
|
|
|
|
cont "bug-catching…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b6e9:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "JOSH: I heard that"
|
|
|
|
line "somebody won with"
|
|
|
|
cont "a CATERPIE!"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b71b:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "SAMUEL: Next time,"
|
|
|
|
line "I'm going to win."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b740:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "SAMUEL: Darn."
|
|
|
|
line "I thought I would"
|
|
|
|
cont "score higher…"
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b76f:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "KIPP: Could you"
|
|
|
|
line "give me some tips?"
|
|
|
|
|
|
|
|
para "I want to study"
|
|
|
|
line "your style."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b7af:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "KIPP: I study a"
|
|
|
|
line "lot, but that's"
|
|
|
|
|
|
|
|
para "not good enough to"
|
|
|
|
line "win."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
|
|
|
; This text is unused and unreferenced in the final game.
|
|
|
|
; The tree Pokémon is Sudowoodo.
|
|
|
|
; The Silph Scope 2 was later reworked into the Squirtbottle.
|
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnusedSudowoodoText:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "I hear there's a"
|
|
|
|
line "#MON that looks"
|
|
|
|
cont "just like a tree."
|
|
|
|
|
|
|
|
para "You can reveal its"
|
|
|
|
line "identity using a"
|
|
|
|
cont "SILPHSCOPE 2."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b84c:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "The Bug-Catching"
|
|
|
|
line "Contest is held on"
|
|
|
|
|
|
|
|
para "Tuesday, Thursday"
|
|
|
|
line "and Saturday."
|
|
|
|
|
|
|
|
para "Not only do you"
|
|
|
|
line "earn a prize just"
|
|
|
|
|
|
|
|
para "for participating,"
|
|
|
|
line "you also get to"
|
|
|
|
|
|
|
|
para "keep the bug"
|
|
|
|
line "#MON you may"
|
|
|
|
|
|
|
|
para "have at the end of"
|
|
|
|
line "the contest."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b910:
|
2014-03-05 21:29:44 -08:00
|
|
|
text "Uh-oh… Your PACK"
|
|
|
|
line "is full."
|
|
|
|
|
|
|
|
para "We'll hold on to"
|
|
|
|
line "your prize, but"
|
|
|
|
cont "only for today."
|
|
|
|
|
|
|
|
para "Please make room,"
|
|
|
|
line "then come see me."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2015-07-10 01:45:35 -07:00
|
|
|
UnknownText_0x6b97f:
|
2015-06-27 21:59:17 -07:00
|
|
|
text "<PLAYER>?"
|
2014-03-05 21:29:44 -08:00
|
|
|
|
|
|
|
para "Here's the prize"
|
|
|
|
line "we were holding"
|
|
|
|
cont "for you."
|
|
|
|
done
|
2013-02-16 22:54:07 -08:00
|
|
|
|
2017-12-10 10:37:15 -08:00
|
|
|
Route36NationalParkGate_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 4
|
2017-12-28 11:31:25 -08:00
|
|
|
warp_def 0, 4, 1, NATIONAL_PARK
|
|
|
|
warp_def 0, 5, 2, NATIONAL_PARK
|
|
|
|
warp_def 9, 4, 1, ROUTE_36
|
|
|
|
warp_def 9, 5, 2, ROUTE_36
|
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 0
|
|
|
|
|
2017-12-24 10:46:34 -08:00
|
|
|
.BGEvents:
|
2013-02-16 22:54:07 -08:00
|
|
|
db 1
|
2017-12-28 11:31:25 -08:00
|
|
|
bg_event 6, 0, BGEVENT_READ, MapRoute36NationalParkGateSignpost0Script
|
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 12
|
2017-12-28 11:31:25 -08:00
|
|
|
object_event 0, 3, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, Route36OfficerScriptContest, EVENT_ROUTE_36_NATIONAL_PARK_GATE_OFFICER_CONTEST_DAY
|
|
|
|
object_event 2, 5, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6ad06, EVENT_BUG_CATCHING_CONTESTANT_1B
|
|
|
|
object_event 4, 5, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6ad1a, EVENT_BUG_CATCHING_CONTESTANT_2B
|
|
|
|
object_event 2, 6, SPRITE_ROCKER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, RockerScript_0x6ad2e, EVENT_BUG_CATCHING_CONTESTANT_3B
|
|
|
|
object_event 6, 5, SPRITE_POKEFAN_M, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, PokefanMScript_0x6ad42, EVENT_BUG_CATCHING_CONTESTANT_4B
|
|
|
|
object_event 2, 7, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6ad56, EVENT_BUG_CATCHING_CONTESTANT_5B
|
|
|
|
object_event 5, 6, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6ad6a, EVENT_BUG_CATCHING_CONTESTANT_6B
|
|
|
|
object_event 3, 6, SPRITE_LASS, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, LassScript_0x6ad7e, EVENT_BUG_CATCHING_CONTESTANT_7B
|
|
|
|
object_event 4, 7, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6ad92, EVENT_BUG_CATCHING_CONTESTANT_8B
|
|
|
|
object_event 6, 7, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6ada6, EVENT_BUG_CATCHING_CONTESTANT_9B
|
|
|
|
object_event 6, 6, SPRITE_YOUNGSTER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, YoungsterScript_0x6adba, EVENT_BUG_CATCHING_CONTESTANT_10B
|
|
|
|
object_event 3, 2, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, OfficerScript_0x6acf4, EVENT_ROUTE_36_NATIONAL_PARK_GATE_OFFICER_NOT_CONTEST_DAY
|