mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-17 02:30:50 +12:00
PCC enhancements (and GS Ball restoration)
This adds a bunch of PCC-related stuff to the building, most notably the GS Ball, making Celebi obtainable natively. Chances are, we would repeat this for the MysticTicket and Mew. This restores a bunch of text and adapts it to various bits and pieces. Of course, a lot still needs to be done. Very happy with how it's turning out, though!
This commit is contained in:
parent
36d0916e8e
commit
e61255bbf1
|
@ -110,6 +110,8 @@ DebugFlyScript:
|
||||||
setflag ENGINE_FLYPOINT_SILVER_CAVE
|
setflag ENGINE_FLYPOINT_SILVER_CAVE
|
||||||
setflag ENGINE_FLYPOINT_SILENT_HILLS
|
setflag ENGINE_FLYPOINT_SILENT_HILLS
|
||||||
|
|
||||||
|
setevent EVENT_BEAT_ELITE_FOUR
|
||||||
|
|
||||||
addcellnum PHONE_MOM
|
addcellnum PHONE_MOM
|
||||||
readvar VAR_BADGES
|
readvar VAR_BADGES
|
||||||
givepoke SHI_SHI, 70
|
givepoke SHI_SHI, 70
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
object_const_def
|
object_const_def
|
||||||
const GOLDENRODPOKECENTER1F_NURSE
|
|
||||||
const GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
|
||||||
const GOLDENRODPOKECENTER1F_GAMEBOY_KID
|
|
||||||
const GOLDENRODPOKECENTER1F_LASS
|
|
||||||
const GOLDENRODPOKECENTER1F_POKEFAN_F
|
|
||||||
const POKECOMCENTERADMINOFFICEMOBILE_SCIENTIST1
|
const POKECOMCENTERADMINOFFICEMOBILE_SCIENTIST1
|
||||||
const POKECOMCENTERADMINOFFICEMOBILE_SCIENTIST2
|
const POKECOMCENTERADMINOFFICEMOBILE_SCIENTIST2
|
||||||
const POKECOMCENTERADMINOFFICEMOBILE_SCIENTIST3
|
const POKECOMCENTERADMINOFFICEMOBILE_SCIENTIST3
|
||||||
|
const GOLDENRODPOKECENTER1F_NURSE
|
||||||
|
const GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
||||||
|
const GOLDENRODPOKECENTER1F_LASS1
|
||||||
|
const GOLDENRODPOKECENTER1F_POKEFAN_F
|
||||||
|
const GOLDENRODPOKECENTER1F_YOUNGSTER
|
||||||
|
const GOLDENRODPOKECENTER1F_LASS2
|
||||||
|
const GOLDENRODPOKECENTER1F_GAMEBOYKID1
|
||||||
|
const GOLDENRODPOKECENTER1F_GAMEBOYKID2
|
||||||
|
const GOLDENRODPOKECENTER1F_COOLTRAINERM
|
||||||
|
|
||||||
PokecomCenterAdminOfficeMobile_MapScripts:
|
PokecomCenterAdminOfficeMobile_MapScripts:
|
||||||
def_scene_scripts
|
def_scene_scripts
|
||||||
|
@ -18,16 +22,15 @@ GoldenrodPokecenter1FNurseScript:
|
||||||
jumpstd PokecenterNurseScript
|
jumpstd PokecenterNurseScript
|
||||||
|
|
||||||
GoldenrodPokecenter1F_GSBallSceneLeft:
|
GoldenrodPokecenter1F_GSBallSceneLeft:
|
||||||
setval BATTLETOWERACTION_CHECKMOBILEEVENT
|
checkevent EVENT_BEAT_ELITE_FOUR
|
||||||
special BattleTowerAction
|
iftrue .gsball
|
||||||
ifequal MOBILE_EVENT_OBJECT_GS_BALL, .gsball
|
|
||||||
end
|
end
|
||||||
|
|
||||||
.gsball
|
.gsball
|
||||||
checkevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
checkevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
||||||
iftrue .cancel
|
iftrue .cancel
|
||||||
playsound SFX_EXIT_BUILDING
|
playsound SFX_EXIT_BUILDING
|
||||||
moveobject GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, 0, 7
|
moveobject GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, 6, 10
|
||||||
disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
||||||
appear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
appear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
||||||
playmusic MUSIC_SHOW_ME_AROUND
|
playmusic MUSIC_SHOW_ME_AROUND
|
||||||
|
@ -50,16 +53,15 @@ GoldenrodPokecenter1F_GSBallSceneLeft:
|
||||||
end
|
end
|
||||||
|
|
||||||
GoldenrodPokecenter1F_GSBallSceneRight:
|
GoldenrodPokecenter1F_GSBallSceneRight:
|
||||||
setval BATTLETOWERACTION_CHECKMOBILEEVENT
|
checkevent EVENT_BEAT_ELITE_FOUR
|
||||||
special BattleTowerAction
|
iftrue .gsball
|
||||||
ifequal MOBILE_EVENT_OBJECT_GS_BALL, .gsball
|
|
||||||
end
|
end
|
||||||
|
|
||||||
.gsball
|
.gsball
|
||||||
checkevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
checkevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
|
||||||
iftrue .cancel
|
iftrue .cancel
|
||||||
playsound SFX_EXIT_BUILDING
|
playsound SFX_EXIT_BUILDING
|
||||||
moveobject GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, 0, 7
|
moveobject GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, 7, 10
|
||||||
disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
||||||
appear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
appear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
|
||||||
playmusic MUSIC_SHOW_ME_AROUND
|
playmusic MUSIC_SHOW_ME_AROUND
|
||||||
|
@ -81,9 +83,6 @@ GoldenrodPokecenter1F_GSBallSceneRight:
|
||||||
.cancel
|
.cancel
|
||||||
end
|
end
|
||||||
|
|
||||||
GoldenrodPokecenter1FGameboyKidScript:
|
|
||||||
jumptextfaceplayer GoldenrodPokecenter1FGameboyKidText
|
|
||||||
|
|
||||||
GoldenrodPokecenter1FLassScript:
|
GoldenrodPokecenter1FLassScript:
|
||||||
jumptextfaceplayer GoldenrodPokecenter1FLassText
|
jumptextfaceplayer GoldenrodPokecenter1FLassText
|
||||||
|
|
||||||
|
@ -122,262 +121,45 @@ GoldenrodPokecenter1FPokefanF:
|
||||||
end
|
end
|
||||||
|
|
||||||
GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtLeftDoorwayTileMovement:
|
GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtLeftDoorwayTileMovement:
|
||||||
step UP
|
step DOWN
|
||||||
step RIGHT
|
step DOWN
|
||||||
step RIGHT
|
step DOWN
|
||||||
step RIGHT
|
step DOWN
|
||||||
turn_head DOWN
|
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromLeftDoorwayTileMovement:
|
GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromLeftDoorwayTileMovement:
|
||||||
step LEFT
|
step UP
|
||||||
step LEFT
|
step UP
|
||||||
step LEFT
|
|
||||||
step DOWN
|
|
||||||
step_end
|
|
||||||
|
|
||||||
GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtRightDoorwayTileMovement:
|
|
||||||
step UP
|
step UP
|
||||||
step RIGHT
|
step RIGHT
|
||||||
step RIGHT
|
step RIGHT
|
||||||
step RIGHT
|
step RIGHT
|
||||||
step RIGHT
|
step RIGHT
|
||||||
turn_head DOWN
|
step RIGHT
|
||||||
|
step RIGHT
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromRightDoorwayTileMovement:
|
GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtRightDoorwayTileMovement:
|
||||||
step LEFT
|
step DOWN
|
||||||
step LEFT
|
step DOWN
|
||||||
step LEFT
|
step DOWN
|
||||||
step LEFT
|
|
||||||
step DOWN
|
step DOWN
|
||||||
step_end
|
step_end
|
||||||
|
|
||||||
GoldenrodPokecomCenterWelcomeToTradeCornerText: ; unreferenced
|
GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromRightDoorwayTileMovement:
|
||||||
text "Hello! Welcome to"
|
step UP
|
||||||
line "#COM CENTER"
|
step UP
|
||||||
cont "TRADE CORNER."
|
step UP
|
||||||
|
step RIGHT
|
||||||
para "You can trade"
|
step RIGHT
|
||||||
line "#MON with other"
|
step RIGHT
|
||||||
cont "people far away."
|
step RIGHT
|
||||||
done
|
step RIGHT
|
||||||
|
step RIGHT
|
||||||
GoldenrodPokecomCenterWeMustHoldYourMonText: ; unreferenced
|
step_end
|
||||||
text "To make a trade,"
|
|
||||||
line "we must hold your"
|
|
||||||
cont "#MON."
|
|
||||||
|
|
||||||
para "Would you like to"
|
|
||||||
line "trade?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterWhatMonDoYouWantText: ; unreferenced
|
|
||||||
text "What kind of"
|
|
||||||
line "#MON do you"
|
|
||||||
cont "want in return?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterWeWillTradeYourMonForMonText: ; unreferenced
|
|
||||||
text "Fine. We will try"
|
|
||||||
line "to trade your"
|
|
||||||
|
|
||||||
para "@"
|
|
||||||
text_ram wStringBuffer3
|
|
||||||
text " for"
|
|
||||||
line "@"
|
|
||||||
text_ram wStringBuffer4
|
|
||||||
text "."
|
|
||||||
|
|
||||||
para "We'll have to hold"
|
|
||||||
line "your #MON"
|
|
||||||
cont "during the trade."
|
|
||||||
|
|
||||||
para "Please wait while"
|
|
||||||
line "we prepare the"
|
|
||||||
cont "room for it."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterWeWillTradeYourMonForNewText: ; unreferenced
|
|
||||||
text "Fine. We will try"
|
|
||||||
line "to trade your"
|
|
||||||
|
|
||||||
para "@"
|
|
||||||
text_ram wStringBuffer3
|
|
||||||
text " for a"
|
|
||||||
line "#MON that you"
|
|
||||||
cont "have never seen."
|
|
||||||
|
|
||||||
para "We'll have to hold"
|
|
||||||
line "your #MON"
|
|
||||||
cont "during the trade."
|
|
||||||
|
|
||||||
para "Please wait while"
|
|
||||||
line "we prepare the"
|
|
||||||
cont "room for it."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterYourMonHasBeenReceivedText: ; unreferenced
|
|
||||||
text "Your trade #MON"
|
|
||||||
line "has been received."
|
|
||||||
|
|
||||||
para "It will take time"
|
|
||||||
line "to find a trade"
|
|
||||||
|
|
||||||
para "partner. Please"
|
|
||||||
line "come back later."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterYouHaveOnlyOneMonText: ; unreferenced
|
|
||||||
text "Oh? You have only"
|
|
||||||
line "one #MON in"
|
|
||||||
cont "your party. "
|
|
||||||
|
|
||||||
para "Please come back"
|
|
||||||
line "once you've in-"
|
|
||||||
cont "creased the size"
|
|
||||||
cont "of your party."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterWeHopeToSeeYouAgainText: ; unreferenced
|
|
||||||
text "We hope to see you"
|
|
||||||
line "again."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterCommunicationErrorText: ; unreferenced
|
|
||||||
text "Communication"
|
|
||||||
line "error…"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterCantAcceptLastMonText: ; unreferenced
|
|
||||||
text "If we accept that"
|
|
||||||
line "#MON, what will"
|
|
||||||
cont "you battle with?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterCantAcceptEggText: ; unreferenced
|
|
||||||
text "Sorry. We can't"
|
|
||||||
line "accept an EGG."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterCantAcceptAbnormalMonText: ; unreferenced
|
|
||||||
text "Sorry, but your"
|
|
||||||
line "#MON appears to"
|
|
||||||
|
|
||||||
para "be abnormal. We"
|
|
||||||
line "can't accept it."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterAlreadyHoldingMonText: ; unreferenced
|
|
||||||
text "Oh? Aren't we"
|
|
||||||
line "already holding a"
|
|
||||||
cont "#MON of yours?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterCheckingTheRoomsText: ; unreferenced
|
|
||||||
text "We'll check the"
|
|
||||||
line "rooms."
|
|
||||||
|
|
||||||
para "Please wait."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterTradePartnerHasBeenFoundText: ; unreferenced
|
|
||||||
text "Thank you for your"
|
|
||||||
line "patience."
|
|
||||||
|
|
||||||
para "A trade partner"
|
|
||||||
line "has been found."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterItsYourNewPartnerText: ; unreferenced
|
|
||||||
text "It's your new"
|
|
||||||
line "partner."
|
|
||||||
|
|
||||||
para "Please take care"
|
|
||||||
line "of it with love."
|
|
||||||
|
|
||||||
para "We hope to see you"
|
|
||||||
line "again."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterYourPartyIsFullText: ; unreferenced
|
|
||||||
text "Uh-oh. Your party"
|
|
||||||
line "is already full."
|
|
||||||
|
|
||||||
para "Please come back"
|
|
||||||
line "when you have room"
|
|
||||||
cont "in your party."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterNoTradePartnerFoundText: ; unreferenced
|
|
||||||
text "It's unfortunate,"
|
|
||||||
line "but no one has"
|
|
||||||
|
|
||||||
para "come forward as a"
|
|
||||||
line "trade partner."
|
|
||||||
|
|
||||||
para "Would you like"
|
|
||||||
line "your #MON back?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterReturnedYourMonText: ; unreferenced
|
|
||||||
text "We have returned"
|
|
||||||
line "your #MON."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterYourMonIsLonelyText: ; unreferenced
|
|
||||||
text "It's unfortunate,"
|
|
||||||
line "but no one has"
|
|
||||||
|
|
||||||
para "come forward as a"
|
|
||||||
line "trade partner."
|
|
||||||
|
|
||||||
para "We've held your"
|
|
||||||
line "#MON for a long"
|
|
||||||
|
|
||||||
para "time. As a result,"
|
|
||||||
line "it is very lonely."
|
|
||||||
|
|
||||||
para "Sorry, but we must"
|
|
||||||
line "return it to you."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecenter1FWeHopeToSeeYouAgainText_2: ; unreferenced
|
|
||||||
text "We hope to see you"
|
|
||||||
line "again."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterContinueToHoldYourMonText: ; unreferenced
|
|
||||||
text "Fine. We will"
|
|
||||||
line "continue to hold"
|
|
||||||
cont "your #MON."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterRecentlyLeftYourMonText: ; unreferenced
|
|
||||||
text "Oh? You left your"
|
|
||||||
line "#MON with us"
|
|
||||||
cont "only recently."
|
|
||||||
|
|
||||||
para "Please come back"
|
|
||||||
line "later."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterSaveBeforeTradeCornerText: ; unreferenced
|
|
||||||
text "We'll SAVE before"
|
|
||||||
line "connecting to the"
|
|
||||||
cont "CENTER."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterWhichMonToTradeText: ; unreferenced
|
|
||||||
text "Which #MON do"
|
|
||||||
line "you want to trade?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterTradeCanceledText: ; unreferenced
|
|
||||||
text "Sorry, but we must"
|
|
||||||
line "cancel the trade."
|
|
||||||
done
|
|
||||||
|
|
||||||
|
; Egg Ticket stuff.
|
||||||
|
; Martha ought to restore this..?
|
||||||
GoldenrodPokecomCenterEggTicketText: ; unreferenced
|
GoldenrodPokecomCenterEggTicketText: ; unreferenced
|
||||||
text "Oh!"
|
text "Oh!"
|
||||||
|
|
||||||
|
@ -424,11 +206,6 @@ GoldenrodPokecomCenterOddEggBriefingText: ; unreferenced
|
||||||
line "chosen room."
|
line "chosen room."
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPleaseWaitAMomentText: ; unreferenced
|
|
||||||
text "Please wait a"
|
|
||||||
line "moment."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterHereIsYourOddEggText: ; unreferenced
|
GoldenrodPokecomCenterHereIsYourOddEggText: ; unreferenced
|
||||||
text "Thank you for"
|
text "Thank you for"
|
||||||
line "waiting."
|
line "waiting."
|
||||||
|
@ -442,99 +219,44 @@ GoldenrodPokecomCenterHereIsYourOddEggText: ; unreferenced
|
||||||
line "with loving care."
|
line "with loving care."
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterNoEggTicketServiceText: ; unreferenced
|
; The News feature obviously can't work in our build, as we won't use the Mobile Adapter.
|
||||||
text "I'm awfully sorry."
|
; What we can do is give an idea of what it was like.
|
||||||
|
; So here, we're referencing the 2000 National Tournament.
|
||||||
|
; Sato Yuki won using Heracross, Zapdos, and Kangaskhan.
|
||||||
|
; A video used to be here (https://www.youtube.com/watch?v=fhG1sa6KtNw) but it's disappeared...
|
||||||
|
; But Gold recounts it here http://pokemon.s20.xrea.com/historia-single.html.
|
||||||
|
GoldenrodPokecomCenterNewsMachineScript:
|
||||||
|
opentext
|
||||||
|
writetext GoldenrodPokecomCenterNewsMachineText
|
||||||
|
waitbutton
|
||||||
|
closetext
|
||||||
|
end
|
||||||
|
|
||||||
para "The EGG TICKET"
|
GoldenrodPokecomCenterNewsMachineText:
|
||||||
line "exchange service"
|
|
||||||
cont "isn't running now."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterNewsMachineText: ; unreferenced
|
|
||||||
text "It's a #MON"
|
text "It's a #MON"
|
||||||
line "NEWS MACHINE."
|
line "NEWS MACHINE."
|
||||||
|
|
||||||
|
para "Wow! HERACROSS"
|
||||||
|
line "just keeps going!"
|
||||||
|
|
||||||
|
para "…"
|
||||||
|
|
||||||
|
para "…"
|
||||||
|
|
||||||
|
para "That's it! The"
|
||||||
|
line "crowd goes wild!"
|
||||||
|
|
||||||
|
para "Sato Yuki wins"
|
||||||
|
line "the 4th #MON"
|
||||||
|
cont "LEAGUE National"
|
||||||
|
cont "Tournament!"
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterWhatToDoText: ; unreferenced
|
GoldenrodPokecomCenterPerson1Script:
|
||||||
text "What would you"
|
jumptextfaceplayer GoldenrodPokecomCenterPerson1Text
|
||||||
line "like to do?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterNewsMachineExplanationText: ; unreferenced
|
GoldenrodPokecomCenterPerson1Text:
|
||||||
text "#MON NEWS is"
|
|
||||||
line "news compiled from"
|
|
||||||
|
|
||||||
para "the SAVE files of"
|
|
||||||
line "#MON trainers."
|
|
||||||
|
|
||||||
para "When reading the"
|
|
||||||
line "NEWS, your SAVE"
|
|
||||||
|
|
||||||
para "file may be sent"
|
|
||||||
line "out."
|
|
||||||
|
|
||||||
para "The SAVE file data"
|
|
||||||
line "will contain your"
|
|
||||||
|
|
||||||
para "adventure log and"
|
|
||||||
line "mobile profile."
|
|
||||||
|
|
||||||
para "Your phone number"
|
|
||||||
line "will not be sent."
|
|
||||||
|
|
||||||
para "The contents of"
|
|
||||||
line "the NEWS will vary"
|
|
||||||
|
|
||||||
para "depending on the"
|
|
||||||
line "SAVE files sent by"
|
|
||||||
|
|
||||||
para "you and the other"
|
|
||||||
line "#MON trainers."
|
|
||||||
|
|
||||||
para "You might even be"
|
|
||||||
line "in the NEWS!"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterWouldYouLikeTheNewsText: ; unreferenced
|
|
||||||
text "Would you like to"
|
|
||||||
line "get the NEWS?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterReadingTheLatestNewsText: ; unreferenced
|
|
||||||
text "Reading the latest"
|
|
||||||
line "NEWS… Please wait."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterNoOldNewsText: ; unreferenced
|
|
||||||
text "There is no old"
|
|
||||||
line "NEWS…"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterCorruptedNewsDataText: ; unreferenced
|
|
||||||
text "The NEWS data is"
|
|
||||||
line "corrupted."
|
|
||||||
|
|
||||||
para "Please download"
|
|
||||||
line "the NEWS again."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterMakingPreparationsText: ; unreferenced
|
|
||||||
text "We're making"
|
|
||||||
line "preparations."
|
|
||||||
|
|
||||||
para "Please come back"
|
|
||||||
line "later."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterSaveBeforeNewsMachineText: ; unreferenced
|
|
||||||
text "We will SAVE your"
|
|
||||||
line "progress before"
|
|
||||||
|
|
||||||
para "starting the NEWS"
|
|
||||||
line "MACHINE."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson1Text: ; unreferenced
|
|
||||||
text "Whoa, this #MON"
|
text "Whoa, this #MON"
|
||||||
line "CENTER is huge."
|
line "CENTER is huge."
|
||||||
|
|
||||||
|
@ -545,7 +267,10 @@ GoldenrodPokecomCenterPerson1Text: ; unreferenced
|
||||||
line "new machines too."
|
line "new machines too."
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson2Text: ; unreferenced
|
GoldenrodPokecomCenterPerson2Script:
|
||||||
|
jumptextfaceplayer GoldenrodPokecomCenterPerson2Text
|
||||||
|
|
||||||
|
GoldenrodPokecomCenterPerson2Text:
|
||||||
text "I thought up a fun"
|
text "I thought up a fun"
|
||||||
line "new thing for the"
|
line "new thing for the"
|
||||||
cont "TRADE CORNER!"
|
cont "TRADE CORNER!"
|
||||||
|
@ -573,29 +298,37 @@ GoldenrodPokecomCenterPerson2Text: ; unreferenced
|
||||||
line "friends!"
|
line "friends!"
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson3Text: ; unreferenced
|
GoldenrodPokecomCenterPerson3Script:
|
||||||
text "They said you can"
|
jumptextfaceplayer GoldenrodPokecomCenterPerson3Text
|
||||||
line "trade #MON with"
|
|
||||||
|
GoldenrodPokecomCenterPerson3Text:
|
||||||
|
text "You can trade #"
|
||||||
|
line "MON with foreigners"
|
||||||
|
cont "here."
|
||||||
|
|
||||||
para "total strangers up"
|
para "It seems they want"
|
||||||
line "here."
|
line "to connect worldwide,"
|
||||||
|
cont "though!"
|
||||||
para "But they're still"
|
|
||||||
line "adjusting things."
|
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson4Text: ; unreferenced
|
GoldenrodPokecomCenterPerson4Script:
|
||||||
|
jumptextfaceplayer GoldenrodPokecomCenterPerson4Text
|
||||||
|
|
||||||
|
GoldenrodPokecomCenterPerson4Text:
|
||||||
text "Some girl I don't"
|
text "Some girl I don't"
|
||||||
line "know sent me her"
|
line "know sent me her"
|
||||||
|
cont "WOOPER, but its"
|
||||||
para "HOPPIP."
|
cont "type is different!"
|
||||||
line "You should trade"
|
|
||||||
|
para "You should trade"
|
||||||
para "for a #MON that"
|
line "for a #MON that"
|
||||||
line "you want."
|
cont "you want."
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson5Text: ; unreferenced
|
GoldenrodPokecomCenterPerson5Script:
|
||||||
|
jumptextfaceplayer GoldenrodPokecomCenterPerson5Text
|
||||||
|
|
||||||
|
GoldenrodPokecomCenterPerson5Text:
|
||||||
text "I received a"
|
text "I received a"
|
||||||
line "female HOPPIP, but"
|
line "female HOPPIP, but"
|
||||||
cont "its named STANLEY!"
|
cont "its named STANLEY!"
|
||||||
|
@ -604,79 +337,10 @@ GoldenrodPokecomCenterPerson5Text: ; unreferenced
|
||||||
line "name!"
|
line "name!"
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson6Text: ; unreferenced
|
GoldenrodPokecomCenterPerson6Script:
|
||||||
text "What is the NEWS"
|
jumptextfaceplayer GoldenrodPokecomCenterPerson6Text
|
||||||
line "MACHINE?"
|
|
||||||
|
|
||||||
para "Does it get news"
|
GoldenrodPokecomCenterPerson6Text:
|
||||||
line "from a wider area"
|
|
||||||
cont "than the radio?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson7Text: ; unreferenced
|
|
||||||
text "The #COM CENTER"
|
|
||||||
line "will link with all"
|
|
||||||
|
|
||||||
para "#MON CENTERS in"
|
|
||||||
line "a wireless net."
|
|
||||||
|
|
||||||
para "That must mean"
|
|
||||||
line "I'll be able to"
|
|
||||||
|
|
||||||
para "link with all"
|
|
||||||
line "sorts of people."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson8Text: ; unreferenced
|
|
||||||
text "The machines here"
|
|
||||||
line "can't be used yet."
|
|
||||||
|
|
||||||
para "Still, it's nice"
|
|
||||||
line "coming to a trendy"
|
|
||||||
|
|
||||||
para "place before other"
|
|
||||||
line "people."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson9Text: ; unreferenced
|
|
||||||
text "My friend was in"
|
|
||||||
line "the NEWS a while"
|
|
||||||
|
|
||||||
para "back. I was really"
|
|
||||||
line "surprised!"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson10Text: ; unreferenced
|
|
||||||
text "I get anxious if I"
|
|
||||||
line "don't check out"
|
|
||||||
cont "the latest NEWS!"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson11Text: ; unreferenced
|
|
||||||
text "If I get in the"
|
|
||||||
line "NEWS and become"
|
|
||||||
|
|
||||||
para "famous, I bet I'll"
|
|
||||||
line "be adored."
|
|
||||||
|
|
||||||
para "I wonder how I"
|
|
||||||
line "could get in the"
|
|
||||||
cont "NEWS?"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecenter1FGameboyKidText:
|
|
||||||
text "The COLOSSEUM"
|
|
||||||
line "upstairs is for"
|
|
||||||
cont "link battles."
|
|
||||||
|
|
||||||
para "Battle records are"
|
|
||||||
line "posted on the"
|
|
||||||
|
|
||||||
para "wall, so I can't"
|
|
||||||
line "afford to lose."
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson12Text: ; unreferenced
|
|
||||||
text "I came over here"
|
text "I came over here"
|
||||||
line "when I got word"
|
line "when I got word"
|
||||||
|
|
||||||
|
@ -694,14 +358,6 @@ GoldenrodPokecomCenterPerson12Text: ; unreferenced
|
||||||
line "preparations…"
|
line "preparations…"
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterPerson13Text: ; unreferenced
|
|
||||||
text "Just seeing all"
|
|
||||||
line "these new things"
|
|
||||||
|
|
||||||
para "here makes me feel"
|
|
||||||
line "younger!"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecenter1FLassText:
|
GoldenrodPokecenter1FLassText:
|
||||||
text "A higher level"
|
text "A higher level"
|
||||||
line "#MON doesn't"
|
line "#MON doesn't"
|
||||||
|
@ -735,7 +391,14 @@ GoldenrodPokeCenter1FLinkReceptionistPleaseDoComeAgainText:
|
||||||
line "again!"
|
line "again!"
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterSignText: ; unreferenced
|
GoldenrodPokecomCenterSignScript:
|
||||||
|
opentext
|
||||||
|
writetext GoldenrodPokecomCenterSignText
|
||||||
|
waitbutton
|
||||||
|
closetext
|
||||||
|
end
|
||||||
|
|
||||||
|
GoldenrodPokecomCenterSignText:
|
||||||
text "#COM CENTER"
|
text "#COM CENTER"
|
||||||
line "1F INFORMATION"
|
line "1F INFORMATION"
|
||||||
|
|
||||||
|
@ -749,14 +412,6 @@ GoldenrodPokecomCenterSignText: ; unreferenced
|
||||||
line "#MON NEWS"
|
line "#MON NEWS"
|
||||||
done
|
done
|
||||||
|
|
||||||
GoldenrodPokecomCenterNewsMachineNotYetText: ; unreferenced
|
|
||||||
text "It's a #MON"
|
|
||||||
line "NEWS MACHINE!"
|
|
||||||
|
|
||||||
para "It's not in"
|
|
||||||
line "operation yet…"
|
|
||||||
done
|
|
||||||
|
|
||||||
GoldenrodPokecenter1FPokefanFDoYouHaveEonMailText:
|
GoldenrodPokecenter1FPokefanFDoYouHaveEonMailText:
|
||||||
text "Oh my, your pack"
|
text "Oh my, your pack"
|
||||||
line "looks so heavy!"
|
line "looks so heavy!"
|
||||||
|
@ -1076,6 +731,8 @@ PokecomCenterAdminOfficeMobile_MapEvents:
|
||||||
bg_event 6, 26, BGEVENT_UP, PokecomCenterAdminOfficeMobileComputer1
|
bg_event 6, 26, BGEVENT_UP, PokecomCenterAdminOfficeMobileComputer1
|
||||||
bg_event 6, 28, BGEVENT_UP, PokecomCenterAdminOfficeMobileComputer2
|
bg_event 6, 28, BGEVENT_UP, PokecomCenterAdminOfficeMobileComputer2
|
||||||
bg_event 3, 26, BGEVENT_UP, PokecomCenterAdminOfficeMobileComputer3
|
bg_event 3, 26, BGEVENT_UP, PokecomCenterAdminOfficeMobileComputer3
|
||||||
|
bg_event 19, 8, BGEVENT_UP, GoldenrodPokecomCenterNewsMachineScript
|
||||||
|
bg_event 2, 9, BG_EVENT_UP, GoldenrodPokecomCenterSignScript
|
||||||
|
|
||||||
def_object_events
|
def_object_events
|
||||||
object_event 4, 28, SPRITE_SCIENTIST, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, PokecomCenterAdminOfficeMobileScientist1Script, -1
|
object_event 4, 28, SPRITE_SCIENTIST, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 1, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, PokecomCenterAdminOfficeMobileScientist1Script, -1
|
||||||
|
@ -1083,6 +740,10 @@ PokecomCenterAdminOfficeMobile_MapEvents:
|
||||||
object_event 7, 29, SPRITE_SCIENTIST, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PokecomCenterAdminOfficeMobileScientist3Script, -1
|
object_event 7, 29, SPRITE_SCIENTIST, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PokecomCenterAdminOfficeMobileScientist3Script, -1
|
||||||
object_event 7, 7, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FNurseScript, -1
|
object_event 7, 7, SPRITE_NURSE, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FNurseScript, -1
|
||||||
object_event 16, 8, SPRITE_LINK_RECEPTIONIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ObjectEvent, -1
|
object_event 16, 8, SPRITE_LINK_RECEPTIONIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, ObjectEvent, -1
|
||||||
object_event 9, 11, SPRITE_GAMEBOY_KID, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FGameboyKidScript, -1
|
|
||||||
object_event 3, 12, SPRITE_LASS, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FLassScript, -1
|
object_event 3, 12, SPRITE_LASS, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FLassScript, -1
|
||||||
object_event 12, 11, SPRITE_POKEFAN_F, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FPokefanF, -1
|
object_event 11, 13, SPRITE_POKEFAN_F, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_BROWN, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecenter1FPokefanF, -1
|
||||||
|
object_event 15, 15, SPRITE_YOUNGSTER, SPRITEMOVEDATA_WANDER, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecomCenterPerson1Script, -1
|
||||||
|
object_event 13, 8, SPRITE_LASS, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecomCenterPerson2Script, -1
|
||||||
|
object_event 18, 13, SPRITE_GAMEBOY_KID, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecomCenterPerson4Script, -1
|
||||||
|
object_event 19, 13, SPRITE_GAMEBOY_KID, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecomCenterPerson5Script, -1
|
||||||
|
object_event 22, 7, SPRITE_COOLTRAINER_M, SPRITEMOVEDATA_WANDER, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, GoldenrodPokecomCenterPerson6Script, -1
|
||||||
|
|
Loading…
Reference in a new issue