Merge pull request #628 from DeeDeeG/renaming-placeholder-labels

Renaming placeholder labels in maps folder
This commit is contained in:
Rangi
2019-05-18 13:01:42 -04:00
committed by GitHub
10 changed files with 267 additions and 267 deletions

View File

@@ -53,16 +53,16 @@ GoldenrodCity_MapScripts:
MoveTutorScript: MoveTutorScript:
faceplayer faceplayer
opentext opentext
writetext UnknownText_0x199042 writetext GoldenrodCityMoveTutorAskTeachAMoveText
yesorno yesorno
iffalse .Refused iffalse .Refused
special DisplayCoinCaseBalance special DisplayCoinCaseBalance
writetext UnknownText_0x199090 writetext GoldenrodCityMoveTutorAsk4000CoinsOkayText
yesorno yesorno
iffalse .Refused2 iffalse .Refused2
checkcoins 4000 checkcoins 4000
ifequal HAVE_LESS, .NotEnoughMoney ifequal HAVE_LESS, .NotEnoughMoney
writetext UnknownText_0x1990ce writetext GoldenrodCityMoveTutorWhichMoveShouldITeachText
loadmenu .MoveMenuHeader loadmenu .MoveMenuHeader
verticalmenu verticalmenu
closewindow closewindow
@@ -107,34 +107,34 @@ MoveTutorScript:
db "CANCEL@" db "CANCEL@"
.Refused: .Refused:
writetext UnknownText_0x1990b4 writetext GoldenrodCityMoveTutorAwwButTheyreAmazingText
waitbutton waitbutton
closetext closetext
end end
.Refused2: .Refused2:
writetext UnknownText_0x199107 writetext GoldenrodCityMoveTutorHmTooBadText
waitbutton waitbutton
closetext closetext
end end
.TeachMove: .TeachMove:
writetext UnknownText_0x19913a writetext GoldenrodCityMoveTutorIfYouUnderstandYouveMadeItText
buttonsound buttonsound
takecoins 4000 takecoins 4000
waitsfx waitsfx
playsound SFX_TRANSACTION playsound SFX_TRANSACTION
special DisplayCoinCaseBalance special DisplayCoinCaseBalance
writetext UnknownText_0x19918b writetext GoldenrodCityMoveTutorFarewellKidText
waitbutton waitbutton
closetext closetext
readvar VAR_FACING readvar VAR_FACING
ifequal LEFT, .WalkAroundPlayer ifequal LEFT, .WalkAroundPlayer
applymovement GOLDENRODCITY_MOVETUTOR, MovementData_0x198a5f applymovement GOLDENRODCITY_MOVETUTOR, GoldenrodCityMoveTutorEnterGameCornerMovement
sjump .GoInside sjump .GoInside
.WalkAroundPlayer: .WalkAroundPlayer:
applymovement GOLDENRODCITY_MOVETUTOR, MovementData_0x198a63 applymovement GOLDENRODCITY_MOVETUTOR, GoldenrodCityMoveTutorWalkAroundPlayerThenEnterGameCornerMovement
.GoInside: .GoInside:
playsound SFX_ENTER_DOOR playsound SFX_ENTER_DOOR
disappear GOLDENRODCITY_MOVETUTOR disappear GOLDENRODCITY_MOVETUTOR
@@ -144,13 +144,13 @@ MoveTutorScript:
end end
.Incompatible: .Incompatible:
writetext UnknownText_0x1991a4 writetext GoldenrodCityMoveTutorBButText
waitbutton waitbutton
closetext closetext
end end
.NotEnoughMoney: .NotEnoughMoney:
writetext UnknownText_0x1991ac writetext GoldenrodCityMoveTutorYouDontHaveEnoughCoinsText
waitbutton waitbutton
closetext closetext
end end
@@ -267,13 +267,13 @@ GoldenrodCityPokecenterSign:
GoldenrodCityFlowerShopSign: GoldenrodCityFlowerShopSign:
jumptext GoldenrodCityFlowerShopSignText jumptext GoldenrodCityFlowerShopSignText
MovementData_0x198a5f: GoldenrodCityMoveTutorEnterGameCornerMovement:
step RIGHT step RIGHT
step RIGHT step RIGHT
step UP step UP
step_end step_end
MovementData_0x198a63: GoldenrodCityMoveTutorWalkAroundPlayerThenEnterGameCornerMovement:
step DOWN step DOWN
step RIGHT step RIGHT
step RIGHT step RIGHT
@@ -487,7 +487,7 @@ GoldenrodCityFlowerShopSignText:
line "FLOWER SHOP" line "FLOWER SHOP"
done done
UnknownText_0x199042: GoldenrodCityMoveTutorAskTeachAMoveText:
text "I can teach your" text "I can teach your"
line "#MON amazing" line "#MON amazing"
@@ -498,17 +498,17 @@ UnknownText_0x199042:
line "new move?" line "new move?"
done done
UnknownText_0x199090: GoldenrodCityMoveTutorAsk4000CoinsOkayText:
text "It will cost you" text "It will cost you"
line "4000 coins. Okay?" line "4000 coins. Okay?"
done done
UnknownText_0x1990b4: GoldenrodCityMoveTutorAwwButTheyreAmazingText:
text "Aww… But they're" text "Aww… But they're"
line "amazing…" line "amazing…"
done done
UnknownText_0x1990ce: GoldenrodCityMoveTutorWhichMoveShouldITeachText:
text "Wahahah! You won't" text "Wahahah! You won't"
line "regret it!" line "regret it!"
@@ -516,13 +516,13 @@ UnknownText_0x1990ce:
line "I teach?" line "I teach?"
done done
UnknownText_0x199107: GoldenrodCityMoveTutorHmTooBadText:
text "Hm, too bad. I'll" text "Hm, too bad. I'll"
line "have to get some" line "have to get some"
cont "cash from home…" cont "cash from home…"
done done
UnknownText_0x19913a: GoldenrodCityMoveTutorIfYouUnderstandYouveMadeItText:
text "If you understand" text "If you understand"
line "what's so amazing" line "what's so amazing"
@@ -531,16 +531,16 @@ UnknownText_0x19913a:
cont "a trainer." cont "a trainer."
done done
UnknownText_0x19918b: GoldenrodCityMoveTutorFarewellKidText:
text "Wahahah!" text "Wahahah!"
line "Farewell, kid!" line "Farewell, kid!"
done done
UnknownText_0x1991a4: GoldenrodCityMoveTutorBButText:
text "B-but…" text "B-but…"
done done
UnknownText_0x1991ac: GoldenrodCityMoveTutorYouDontHaveEnoughCoinsText:
text "…You don't have" text "…You don't have"
line "enough coins here…" line "enough coins here…"
done done

View File

@@ -64,14 +64,14 @@ GoldenrodDeptStore5FReceptionistScript:
checkflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN checkflag ENGINE_GOLDENROD_DEPT_STORE_TM27_RETURN
iftrue .EventIsOver iftrue .EventIsOver
special GetFirstPokemonHappiness special GetFirstPokemonHappiness
writetext UnknownText_0x56143 writetext GoldenrodDeptStore5FReceptionistOhYourMonDotDotDotText
buttonsound buttonsound
ifgreater 150 - 1, .VeryHappy ifgreater 150 - 1, .VeryHappy
ifgreater 50 - 1, .SomewhatHappy ifgreater 50 - 1, .SomewhatHappy
sjump .NotVeryHappy sjump .NotVeryHappy
.VeryHappy: .VeryHappy:
writetext UnknownText_0x5615a writetext GoldenrodDeptStore5FReceptionistThisMoveShouldBePerfectText
buttonsound buttonsound
verbosegiveitem TM_RETURN verbosegiveitem TM_RETURN
iffalse .Done iffalse .Done
@@ -80,13 +80,13 @@ GoldenrodDeptStore5FReceptionistScript:
end end
.SomewhatHappy: .SomewhatHappy:
writetext UnknownText_0x561a6 writetext GoldenrodDeptStore5FReceptionistItsAdorableText
waitbutton waitbutton
closetext closetext
end end
.NotVeryHappy: .NotVeryHappy:
writetext UnknownText_0x561d8 writetext GoldenrodDeptStore5FReceptionistItLooksEvilHowAboutThisTMText
buttonsound buttonsound
verbosegiveitem TM_FRUSTRATION verbosegiveitem TM_FRUSTRATION
iffalse .Done iffalse .Done
@@ -95,7 +95,7 @@ GoldenrodDeptStore5FReceptionistScript:
end end
.EventIsOver: .EventIsOver:
writetext UnknownText_0x56202 writetext GoldenrodDeptStore5FReceptionistThereAreTMsPerfectForMonText
waitbutton waitbutton
.Done: .Done:
closetext closetext
@@ -106,14 +106,14 @@ Carrie:
opentext opentext
special GameboyCheck special GameboyCheck
ifnotequal GBCHECK_CGB, .NotGBC ; This is a dummy check from Gold/Silver ifnotequal GBCHECK_CGB, .NotGBC ; This is a dummy check from Gold/Silver
writetext UnknownText_0x56241 writetext GoldenrodDeptStore5FCarrieMysteryGiftExplanationText
waitbutton waitbutton
closetext closetext
special UnlockMysteryGift special UnlockMysteryGift
end end
.NotGBC: .NotGBC:
writetext UnknownText_0x56279 writetext GoldenrodDeptStore5FCarrieMysteryGiftRequiresGBCText
waitbutton waitbutton
closetext closetext
end end
@@ -138,12 +138,12 @@ GoldenrodDeptStore5FDirectory:
GoldenrodDeptStore5FElevatorButton: GoldenrodDeptStore5FElevatorButton:
jumpstd elevatorbutton jumpstd elevatorbutton
UnknownText_0x56143: GoldenrodDeptStore5FReceptionistOhYourMonDotDotDotText:
text "Hello. Oh, your" text "Hello. Oh, your"
line "#MON…" line "#MON…"
done done
UnknownText_0x5615a: GoldenrodDeptStore5FReceptionistThisMoveShouldBePerfectText:
text "It's very attached" text "It's very attached"
line "to you." line "to you."
@@ -152,20 +152,20 @@ UnknownText_0x5615a:
cont "pair like you." cont "pair like you."
done done
UnknownText_0x561a6: GoldenrodDeptStore5FReceptionistItsAdorableText:
text "It's adorable!" text "It's adorable!"
para "You should teach" para "You should teach"
line "it good TM moves." line "it good TM moves."
done done
UnknownText_0x561d8: GoldenrodDeptStore5FReceptionistItLooksEvilHowAboutThisTMText:
text "It looks evil. How" text "It looks evil. How"
line "about this TM for" line "about this TM for"
cont "it?" cont "it?"
done done
UnknownText_0x56202: GoldenrodDeptStore5FReceptionistThereAreTMsPerfectForMonText:
text "There are sure to" text "There are sure to"
line "be TMs that are" line "be TMs that are"
@@ -173,7 +173,7 @@ UnknownText_0x56202:
line "your #MON." line "your #MON."
done done
UnknownText_0x56241: GoldenrodDeptStore5FCarrieMysteryGiftExplanationText:
text "MYSTERY GIFT." text "MYSTERY GIFT."
para "With just a" para "With just a"
@@ -181,7 +181,7 @@ UnknownText_0x56241:
cont "get a gift." cont "get a gift."
done done
UnknownText_0x56279: GoldenrodDeptStore5FCarrieMysteryGiftRequiresGBCText:
text "The MYSTERY GIFT" text "The MYSTERY GIFT"
line "option requires a" line "option requires a"
cont "Game Boy Color." cont "Game Boy Color."

View File

@@ -20,7 +20,7 @@ FlowerShopTeacherScript:
iffalse .NoPlainBadge iffalse .NoPlainBadge
faceplayer faceplayer
opentext opentext
writetext UnknownText_0x554c2 writetext GoldenrodFlowerShopTeacherHeresTheSquirtbottleText
buttonsound buttonsound
verbosegiveitem SQUIRTBOTTLE verbosegiveitem SQUIRTBOTTLE
setevent EVENT_GOT_SQUIRTBOTTLE setevent EVENT_GOT_SQUIRTBOTTLE
@@ -32,19 +32,19 @@ FlowerShopTeacherScript:
.Lalala: .Lalala:
turnobject GOLDENRODFLOWERSHOP_TEACHER, LEFT turnobject GOLDENRODFLOWERSHOP_TEACHER, LEFT
opentext opentext
writetext UnknownText_0x5552e writetext GoldenrodFlowerShopTeacherLalalaHavePlentyOfWaterText
waitbutton waitbutton
closetext closetext
end end
.GotSquirtbottle: .GotSquirtbottle:
jumptextfaceplayer UnknownText_0x5550d jumptextfaceplayer GoldenrodFlowerShopTeacherDontDoAnythingDangerousText
.NoPlainBadge: .NoPlainBadge:
jumptextfaceplayer UnknownText_0x55463 jumptextfaceplayer GoldenrodFlowerShopTeacherAskWantToBorrowWaterBottleText
.HaventMetFloria: .HaventMetFloria:
jumptextfaceplayer UnknownText_0x553d4 jumptextfaceplayer GoldenrodFlowerShopTeacherMySisterWentToSeeWigglyTreeRoute36Text
FlowerShopFloriaScript: FlowerShopFloriaScript:
faceplayer faceplayer
@@ -53,7 +53,7 @@ FlowerShopFloriaScript:
iftrue .FoughtSudowoodo iftrue .FoughtSudowoodo
checkevent EVENT_GOT_SQUIRTBOTTLE checkevent EVENT_GOT_SQUIRTBOTTLE
iftrue .GotSquirtbottle iftrue .GotSquirtbottle
writetext UnknownText_0x55561 writetext GoldenrodFlowerShopFloriaWonderIfSisWillLendWaterBottleText
waitbutton waitbutton
closetext closetext
setevent EVENT_TALKED_TO_FLORIA_AT_FLOWER_SHOP setevent EVENT_TALKED_TO_FLORIA_AT_FLOWER_SHOP
@@ -62,13 +62,13 @@ FlowerShopFloriaScript:
end end
.GotSquirtbottle: .GotSquirtbottle:
writetext UnknownText_0x555e6 writetext GoldenrodFlowerShopFloriaYouBeatWhitneyText
waitbutton waitbutton
closetext closetext
end end
.FoughtSudowoodo: .FoughtSudowoodo:
writetext UnknownText_0x55604 writetext GoldenrodFlowerShopFloriaItReallyWasAMonText
waitbutton waitbutton
closetext closetext
end end
@@ -85,7 +85,7 @@ FlowerShopRadio:
; unused ; unused
jumpstd radio2 jumpstd radio2
UnknownText_0x553d4: GoldenrodFlowerShopTeacherMySisterWentToSeeWigglyTreeRoute36Text:
text "Have you seen that" text "Have you seen that"
line "wiggly tree that's" line "wiggly tree that's"
@@ -102,7 +102,7 @@ UnknownText_0x553d4:
line "it dangerous?" line "it dangerous?"
done done
UnknownText_0x55463: GoldenrodFlowerShopTeacherAskWantToBorrowWaterBottleText:
text "Do you want to" text "Do you want to"
line "borrow the water" line "borrow the water"
@@ -113,7 +113,7 @@ UnknownText_0x55463:
line "dangerous with it." line "dangerous with it."
done done
UnknownText_0x554c2: GoldenrodFlowerShopTeacherHeresTheSquirtbottleText:
text "Oh, you're better" text "Oh, you're better"
line "than WHITNEY…" line "than WHITNEY…"
@@ -122,18 +122,18 @@ UnknownText_0x554c2:
cont "SQUIRTBOTTLE!" cont "SQUIRTBOTTLE!"
done done
UnknownText_0x5550d: GoldenrodFlowerShopTeacherDontDoAnythingDangerousText:
text "Don't do anything" text "Don't do anything"
line "too dangerous!" line "too dangerous!"
done done
UnknownText_0x5552e: GoldenrodFlowerShopTeacherLalalaHavePlentyOfWaterText:
text "Lalala lalalala." text "Lalala lalalala."
line "Have plenty of" line "Have plenty of"
cont "water, my lovely!" cont "water, my lovely!"
done done
UnknownText_0x55561: GoldenrodFlowerShopFloriaWonderIfSisWillLendWaterBottleText:
text "When I told my sis" text "When I told my sis"
line "about the jiggly" line "about the jiggly"
@@ -147,12 +147,12 @@ UnknownText_0x55561:
line "bottle…" line "bottle…"
done done
UnknownText_0x555e6: GoldenrodFlowerShopFloriaYouBeatWhitneyText:
text "Wow, you beat" text "Wow, you beat"
line "WHITNEY? Cool!" line "WHITNEY? Cool!"
done done
UnknownText_0x55604: GoldenrodFlowerShopFloriaItReallyWasAMonText:
text "So it really was a" text "So it really was a"
line "#MON!" line "#MON!"
done done

View File

@@ -16,22 +16,22 @@ GoldenrodMagnetTrainStationOfficerScript:
opentext opentext
checkevent EVENT_RESTORED_POWER_TO_KANTO checkevent EVENT_RESTORED_POWER_TO_KANTO
iftrue .MagnetTrainToSaffron iftrue .MagnetTrainToSaffron
writetext UnknownText_0x55160 writetext GoldenrodMagnetTrainStationOfficerTheTrainHasntComeInText
waitbutton waitbutton
closetext closetext
end end
.MagnetTrainToSaffron: .MagnetTrainToSaffron:
writetext UnknownText_0x551b7 writetext GoldenrodMagnetTrainStationOfficerAreYouComingAboardText
yesorno yesorno
iffalse .DecidedNotToRide iffalse .DecidedNotToRide
checkitem PASS checkitem PASS
iffalse .PassNotInBag iffalse .PassNotInBag
writetext UnknownText_0x551ed writetext GoldenrodMagnetTrainStationOfficerRightThisWayText
waitbutton waitbutton
closetext closetext
applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, MovementData_0x55146 applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, GoldenrodMagnetTrainStationOfficerApproachTrainDoorMovement
applymovement PLAYER, MovementData_0x5514f applymovement PLAYER, GoldenrodMagnetTrainStationPlayerApproachAndEnterTrainMovement
setval FALSE setval FALSE
special MagnetTrain special MagnetTrain
warpcheck warpcheck
@@ -45,23 +45,23 @@ GoldenrodMagnetTrainStationOfficerScript:
step_end step_end
.PassNotInBag: .PassNotInBag:
writetext UnknownText_0x5522c writetext GoldenrodMagnetTrainStationOfficerYouDontHaveARailPassText
waitbutton waitbutton
closetext closetext
end end
.DecidedNotToRide: .DecidedNotToRide:
writetext UnknownText_0x5524f writetext GoldenrodMagnetTrainStationOfficerHopeToSeeYouAgainText
waitbutton waitbutton
closetext closetext
end end
Script_ArriveFromSaffron: Script_ArriveFromSaffron:
applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, MovementData_0x55146 applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, GoldenrodMagnetTrainStationOfficerApproachTrainDoorMovement
applymovement PLAYER, MovementData_0x55158 applymovement PLAYER, GoldenrodMagnetTrainStationPlayerLeaveTrainAndEnterStationMovement
applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, MovementData_0x5514b applymovement GOLDENRODMAGNETTRAINSTATION_OFFICER, GoldenrodMagnetTrainStationOfficerReturnToBoardingGateMovement
opentext opentext
writetext UnknownText_0x5526a writetext GoldenrodMagnetTrainStationOfficerArrivedInGoldenrodText
waitbutton waitbutton
closetext closetext
end end
@@ -69,20 +69,20 @@ Script_ArriveFromSaffron:
GoldenrodMagnetTrainStationGentlemanScript: GoldenrodMagnetTrainStationGentlemanScript:
jumptextfaceplayer GoldenrodMagnetTrainStationGentlemanText jumptextfaceplayer GoldenrodMagnetTrainStationGentlemanText
MovementData_0x55146: GoldenrodMagnetTrainStationOfficerApproachTrainDoorMovement:
step UP step UP
step UP step UP
step RIGHT step RIGHT
turn_head LEFT turn_head LEFT
step_end step_end
MovementData_0x5514b: GoldenrodMagnetTrainStationOfficerReturnToBoardingGateMovement:
step LEFT step LEFT
step DOWN step DOWN
step DOWN step DOWN
step_end step_end
MovementData_0x5514f: GoldenrodMagnetTrainStationPlayerApproachAndEnterTrainMovement:
step UP step UP
step UP step UP
step UP step UP
@@ -93,7 +93,7 @@ MovementData_0x5514f:
step UP step UP
step_end step_end
MovementData_0x55158: GoldenrodMagnetTrainStationPlayerLeaveTrainAndEnterStationMovement:
step LEFT step LEFT
step LEFT step LEFT
step DOWN step DOWN
@@ -103,7 +103,7 @@ MovementData_0x55158:
turn_head UP turn_head UP
step_end step_end
UnknownText_0x55160: GoldenrodMagnetTrainStationOfficerTheTrainHasntComeInText:
text "The train hasn't" text "The train hasn't"
line "come in…" line "come in…"
@@ -114,7 +114,7 @@ UnknownText_0x55160:
para "That won't work." para "That won't work."
done done
UnknownText_0x551b7: GoldenrodMagnetTrainStationOfficerAreYouComingAboardText:
text "We'll soon depart" text "We'll soon depart"
line "for SAFFRON." line "for SAFFRON."
@@ -122,7 +122,7 @@ UnknownText_0x551b7:
line "aboard?" line "aboard?"
done done
UnknownText_0x551ed: GoldenrodMagnetTrainStationOfficerRightThisWayText:
text "May I see your" text "May I see your"
line "rail PASS, please?" line "rail PASS, please?"
@@ -130,17 +130,17 @@ UnknownText_0x551ed:
line "way, please." line "way, please."
done done
UnknownText_0x5522c: GoldenrodMagnetTrainStationOfficerYouDontHaveARailPassText:
text "Sorry. You don't" text "Sorry. You don't"
line "have a rail PASS." line "have a rail PASS."
done done
UnknownText_0x5524f: GoldenrodMagnetTrainStationOfficerHopeToSeeYouAgainText:
text "We hope to see you" text "We hope to see you"
line "again!" line "again!"
done done
UnknownText_0x5526a: GoldenrodMagnetTrainStationOfficerArrivedInGoldenrodText:
text "We have arrived in" text "We have arrived in"
line "GOLDENROD." line "GOLDENROD."

View File

@@ -27,18 +27,18 @@ GoldenrodPokecenter1F_GSBallSceneLeft:
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
applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, MovementData_0x6105a applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtLeftDoorwayTileMovement
turnobject PLAYER, UP turnobject PLAYER, UP
opentext opentext
writetext UnknownText_0x622f0 writetext GoldenrodPokeCenter1FLinkReceptionistPleaseAcceptGSBallText
waitbutton waitbutton
verbosegiveitem GS_BALL verbosegiveitem GS_BALL
setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT
writetext UnknownText_0x62359 writetext GoldenrodPokeCenter1FLinkReceptionistPleaseDoComeAgainText
waitbutton waitbutton
closetext closetext
applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, MovementData_0x61060 applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromLeftDoorwayTileMovement
special RestartMapMusic special RestartMapMusic
disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
playsound SFX_EXIT_BUILDING playsound SFX_EXIT_BUILDING
@@ -59,18 +59,18 @@ GoldenrodPokecenter1F_GSBallSceneRight:
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
applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, MovementData_0x61065 applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtRightDoorwayTileMovement
turnobject PLAYER, UP turnobject PLAYER, UP
opentext opentext
writetext UnknownText_0x622f0 writetext GoldenrodPokeCenter1FLinkReceptionistPleaseAcceptGSBallText
waitbutton waitbutton
verbosegiveitem GS_BALL verbosegiveitem GS_BALL
setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER setevent EVENT_GOT_GS_BALL_FROM_POKECOM_CENTER
setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT setevent EVENT_CAN_GIVE_GS_BALL_TO_KURT
writetext UnknownText_0x62359 writetext GoldenrodPokeCenter1FLinkReceptionistPleaseDoComeAgainText
waitbutton waitbutton
closetext closetext
applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, MovementData_0x6106c applymovement GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST, GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromRightDoorwayTileMovement
special RestartMapMusic special RestartMapMusic
disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST disappear GOLDENRODPOKECENTER1F_LINK_RECEPTIONIST
playsound SFX_EXIT_BUILDING playsound SFX_EXIT_BUILDING
@@ -86,38 +86,38 @@ GoldenrodPokecenter1FLassScript:
GoldenrodPokecenter1FPokefanF: GoldenrodPokecenter1FPokefanF:
faceplayer faceplayer
opentext opentext
writetext UnknownText_0x623fb writetext GoldenrodPokecenter1FPokefanFDoYouHaveEonMailText
waitbutton waitbutton
writetext UnknownText_0x6248c writetext GoldenrodPokecenter1FAskGiveAwayAnEonMailText
yesorno yesorno
iffalse .NoEonMail iffalse .NoEonMail
takeitem EON_MAIL takeitem EON_MAIL
iffalse .NoEonMail iffalse .NoEonMail
writetext UnknownText_0x62549 writetext GoldenrodPokecenter1FPlayerGaveAwayTheEonMailText
waitbutton waitbutton
writetext UnknownText_0x624a4 writetext GoldenrodPokecenter1FPokefanFThisIsForYouText
waitbutton waitbutton
verbosegiveitem REVIVE verbosegiveitem REVIVE
iffalse .NoRoom iffalse .NoRoom
writetext UnknownText_0x624e9 writetext GoldenrodPokecenter1FPokefanFDaughterWillBeDelightedText
waitbutton waitbutton
closetext closetext
end end
.NoEonMail: .NoEonMail:
writetext UnknownText_0x62509 writetext GoldenrodPokecenter1FPokefanFTooBadText
waitbutton waitbutton
closetext closetext
end end
.NoRoom: .NoRoom:
giveitem EON_MAIL giveitem EON_MAIL
writetext UnknownText_0x6252a writetext GoldenrodPokecenter1FPokefanFAnotherTimeThenText
waitbutton waitbutton
closetext closetext
end end
MovementData_0x6105a: GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtLeftDoorwayTileMovement:
step UP step UP
step RIGHT step RIGHT
step RIGHT step RIGHT
@@ -125,14 +125,14 @@ MovementData_0x6105a:
turn_head DOWN turn_head DOWN
step_end step_end
MovementData_0x61060: GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromLeftDoorwayTileMovement:
step LEFT step LEFT
step LEFT step LEFT
step LEFT step LEFT
step DOWN step DOWN
step_end step_end
MovementData_0x61065: GoldenrodPokeCenter1FLinkReceptionistApproachPlayerAtRightDoorwayTileMovement:
step UP step UP
step RIGHT step RIGHT
step RIGHT step RIGHT
@@ -141,7 +141,7 @@ MovementData_0x61065:
turn_head DOWN turn_head DOWN
step_end step_end
MovementData_0x6106c: GoldenrodPokeCenter1FLinkReceptionistWalkToStairsFromRightDoorwayTileMovement:
step LEFT step LEFT
step LEFT step LEFT
step LEFT step LEFT
@@ -715,7 +715,7 @@ GoldenrodPokecenter1FLassText:
line "the toughest." line "the toughest."
done done
UnknownText_0x622f0: GoldenrodPokeCenter1FLinkReceptionistPleaseAcceptGSBallText:
text "<PLAYER>, isn't it?" text "<PLAYER>, isn't it?"
para "Congratulations!" para "Congratulations!"
@@ -727,7 +727,7 @@ UnknownText_0x622f0:
para "Please accept it!" para "Please accept it!"
done done
UnknownText_0x62359: GoldenrodPokeCenter1FLinkReceptionistPleaseDoComeAgainText:
text "Please do come" text "Please do come"
line "again!" line "again!"
done done
@@ -754,7 +754,7 @@ UnknownText_0x623c7:
line "operation yet…" line "operation yet…"
done done
UnknownText_0x623fb: GoldenrodPokecenter1FPokefanFDoYouHaveEonMailText:
text "Oh my, your pack" text "Oh my, your pack"
line "looks so heavy!" line "looks so heavy!"
@@ -769,12 +769,12 @@ UnknownText_0x623fb:
line "one, can't you?" line "one, can't you?"
done done
UnknownText_0x6248c: GoldenrodPokecenter1FAskGiveAwayAnEonMailText:
text "Give away an EON" text "Give away an EON"
line "MAIL?" line "MAIL?"
done done
UnknownText_0x624a4: GoldenrodPokecenter1FPokefanFThisIsForYouText:
text "Oh, that's great!" text "Oh, that's great!"
line "Thank you, honey!" line "Thank you, honey!"
@@ -782,22 +782,22 @@ UnknownText_0x624a4:
line "you in return!" line "you in return!"
done done
UnknownText_0x624e9: GoldenrodPokecenter1FPokefanFDaughterWillBeDelightedText:
text "My daughter will" text "My daughter will"
line "be delighted!" line "be delighted!"
done done
UnknownText_0x62509: GoldenrodPokecenter1FPokefanFTooBadText:
text "Oh? You don't have" text "Oh? You don't have"
line "one? Too bad." line "one? Too bad."
done done
UnknownText_0x6252a: GoldenrodPokecenter1FPokefanFAnotherTimeThenText:
text "Oh… Well, another" text "Oh… Well, another"
line "time, then." line "time, then."
done done
UnknownText_0x62549: GoldenrodPokecenter1FPlayerGaveAwayTheEonMailText:
text "<PLAYER> gave away" text "<PLAYER> gave away"
line "the EON MAIL." line "the EON MAIL."
done done

View File

@@ -8,8 +8,8 @@ GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE EQU 300
const GOLDENRODUNDERGROUND_SUPER_NERD4 const GOLDENRODUNDERGROUND_SUPER_NERD4
const GOLDENRODUNDERGROUND_POKE_BALL const GOLDENRODUNDERGROUND_POKE_BALL
const GOLDENRODUNDERGROUND_GRAMPS const GOLDENRODUNDERGROUND_GRAMPS
const GOLDENRODUNDERGROUND_SUPER_NERD5 const GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
const GOLDENRODUNDERGROUND_SUPER_NERD6 const GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
const GOLDENRODUNDERGROUND_GRANNY const GOLDENRODUNDERGROUND_GRANNY
GoldenrodUnderground_MapScripts: GoldenrodUnderground_MapScripts:
@@ -60,8 +60,8 @@ GoldenrodUnderground_MapScripts:
.Sunday: .Sunday:
disappear GOLDENRODUNDERGROUND_GRAMPS disappear GOLDENRODUNDERGROUND_GRAMPS
disappear GOLDENRODUNDERGROUND_SUPER_NERD5 disappear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
appear GOLDENRODUNDERGROUND_SUPER_NERD6 appear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
appear GOLDENRODUNDERGROUND_GRANNY appear GOLDENRODUNDERGROUND_GRANNY
return return
@@ -71,43 +71,43 @@ GoldenrodUnderground_MapScripts:
iffalse .NotMondayMorning iffalse .NotMondayMorning
appear GOLDENRODUNDERGROUND_GRAMPS appear GOLDENRODUNDERGROUND_GRAMPS
.NotMondayMorning: .NotMondayMorning:
disappear GOLDENRODUNDERGROUND_SUPER_NERD5 disappear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_SUPER_NERD6 disappear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_GRANNY disappear GOLDENRODUNDERGROUND_GRANNY
return return
.Tuesday: .Tuesday:
disappear GOLDENRODUNDERGROUND_GRAMPS disappear GOLDENRODUNDERGROUND_GRAMPS
appear GOLDENRODUNDERGROUND_SUPER_NERD5 appear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_SUPER_NERD6 disappear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_GRANNY disappear GOLDENRODUNDERGROUND_GRANNY
return return
.Wednesday: .Wednesday:
disappear GOLDENRODUNDERGROUND_GRAMPS disappear GOLDENRODUNDERGROUND_GRAMPS
disappear GOLDENRODUNDERGROUND_SUPER_NERD5 disappear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
appear GOLDENRODUNDERGROUND_SUPER_NERD6 appear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_GRANNY disappear GOLDENRODUNDERGROUND_GRANNY
return return
.Thursday: .Thursday:
disappear GOLDENRODUNDERGROUND_GRAMPS disappear GOLDENRODUNDERGROUND_GRAMPS
appear GOLDENRODUNDERGROUND_SUPER_NERD5 appear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_SUPER_NERD6 disappear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_GRANNY disappear GOLDENRODUNDERGROUND_GRANNY
return return
.Friday: .Friday:
disappear GOLDENRODUNDERGROUND_GRAMPS disappear GOLDENRODUNDERGROUND_GRAMPS
disappear GOLDENRODUNDERGROUND_SUPER_NERD5 disappear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
appear GOLDENRODUNDERGROUND_SUPER_NERD6 appear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_GRANNY disappear GOLDENRODUNDERGROUND_GRANNY
return return
.Saturday: .Saturday:
disappear GOLDENRODUNDERGROUND_GRAMPS disappear GOLDENRODUNDERGROUND_GRAMPS
appear GOLDENRODUNDERGROUND_SUPER_NERD5 appear GOLDENRODUNDERGROUND_OLDER_HAIRCUT_BROTHER
disappear GOLDENRODUNDERGROUND_SUPER_NERD6 disappear GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_BROTHER
appear GOLDENRODUNDERGROUND_GRANNY appear GOLDENRODUNDERGROUND_GRANNY
return return
@@ -194,12 +194,12 @@ OlderHaircutBrotherScript:
checkflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT checkflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT
iftrue .AlreadyGotHaircut iftrue .AlreadyGotHaircut
special PlaceMoneyTopRight special PlaceMoneyTopRight
writetext UnknownText_0x7c5f9 writetext GoldenrodUndergroundOlderHaircutBrotherOfferHaircutText
yesorno yesorno
iffalse .Refused iffalse .Refused
checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_OLDER_HAIRCUT_PRICE checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_OLDER_HAIRCUT_PRICE
ifequal HAVE_LESS, .NotEnoughMoney ifequal HAVE_LESS, .NotEnoughMoney
writetext UnknownText_0x7c69a writetext GoldenrodUndergroundOlderHaircutBrotherAskWhichMonText
buttonsound buttonsound
special YoungerHaircutBrother special YoungerHaircutBrother
ifequal $0, .Refused ifequal $0, .Refused
@@ -230,7 +230,7 @@ OlderHaircutBrotherScript:
.then .then
takemoney YOUR_MONEY, GOLDENRODUNDERGROUND_OLDER_HAIRCUT_PRICE takemoney YOUR_MONEY, GOLDENRODUNDERGROUND_OLDER_HAIRCUT_PRICE
special PlaceMoneyTopRight special PlaceMoneyTopRight
writetext UnknownText_0x7c6b8 writetext GoldenrodUndergroundOlderHaircutBrotherWatchItBecomeBeautifulText
waitbutton waitbutton
closetext closetext
special FadeOutPalettes special FadeOutPalettes
@@ -239,7 +239,7 @@ OlderHaircutBrotherScript:
special FadeInPalettes special FadeInPalettes
special RestartMapMusic special RestartMapMusic
opentext opentext
writetext UnknownText_0x7c6d8 writetext GoldenrodUndergroundOlderHaircutBrotherAllDoneText
waitbutton waitbutton
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
iftrue EitherHaircutBrotherScript_SlightlyHappier iftrue EitherHaircutBrotherScript_SlightlyHappier
@@ -248,19 +248,19 @@ OlderHaircutBrotherScript:
sjump EitherHaircutBrotherScript_MuchHappier sjump EitherHaircutBrotherScript_MuchHappier
.Refused: .Refused:
writetext UnknownText_0x7c6ea writetext GoldenrodUndergroundOlderHaircutBrotherThatsAShameText
waitbutton waitbutton
closetext closetext
end end
.NotEnoughMoney: .NotEnoughMoney:
writetext UnknownText_0x7c709 writetext GoldenrodUndergroundOlderHaircutBrotherYoullNeedMoreMoneyText
waitbutton waitbutton
closetext closetext
end end
.AlreadyGotHaircut: .AlreadyGotHaircut:
writetext UnknownText_0x7c72b writetext GoldenrodUndergroundOlderHaircutBrotherOneHaircutADayText
waitbutton waitbutton
closetext closetext
end end
@@ -277,12 +277,12 @@ YoungerHaircutBrotherScript:
checkflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT checkflag ENGINE_GOLDENROD_UNDERGROUND_GOT_HAIRCUT
iftrue .AlreadyGotHaircut iftrue .AlreadyGotHaircut
special PlaceMoneyTopRight special PlaceMoneyTopRight
writetext UnknownText_0x7c75c writetext GoldenrodUndergroundYoungerHaircutBrotherOfferHaircutText
yesorno yesorno
iffalse .Refused iffalse .Refused
checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE checkmoney YOUR_MONEY, GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE
ifequal HAVE_LESS, .NotEnoughMoney ifequal HAVE_LESS, .NotEnoughMoney
writetext UnknownText_0x7c7f1 writetext GoldenrodUndergroundYoungerHaircutBrotherAskWhichMonText
buttonsound buttonsound
special OlderHaircutBrother special OlderHaircutBrother
ifequal $0, .Refused ifequal $0, .Refused
@@ -313,7 +313,7 @@ YoungerHaircutBrotherScript:
.then .then
takemoney YOUR_MONEY, GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE takemoney YOUR_MONEY, GOLDENRODUNDERGROUND_YOUNGER_HAIRCUT_PRICE
special PlaceMoneyTopRight special PlaceMoneyTopRight
writetext UnknownText_0x7c80e writetext GoldenrodUndergroundYoungerHaircutBrotherIllMakeItLookCoolText
waitbutton waitbutton
closetext closetext
special FadeOutPalettes special FadeOutPalettes
@@ -322,7 +322,7 @@ YoungerHaircutBrotherScript:
special FadeInPalettes special FadeInPalettes
special RestartMapMusic special RestartMapMusic
opentext opentext
writetext UnknownText_0x7c82a writetext GoldenrodUndergroundYoungerHaircutBrotherAllDoneText
waitbutton waitbutton
checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1 checkevent EVENT_TEMPORARY_UNTIL_MAP_RELOAD_1
iftrue EitherHaircutBrotherScript_SlightlyHappier iftrue EitherHaircutBrotherScript_SlightlyHappier
@@ -331,19 +331,19 @@ YoungerHaircutBrotherScript:
sjump EitherHaircutBrotherScript_MuchHappier sjump EitherHaircutBrotherScript_MuchHappier
.Refused: .Refused:
writetext UnknownText_0x7c842 writetext GoldenrodUndergroundYoungerHaircutBrotherHowDisappointingText
waitbutton waitbutton
closetext closetext
end end
.NotEnoughMoney: .NotEnoughMoney:
writetext UnknownText_0x7c85b writetext GoldenrodUndergroundYoungerHaircutBrotherShortOnFundsText
waitbutton waitbutton
closetext closetext
end end
.AlreadyGotHaircut: .AlreadyGotHaircut:
writetext UnknownText_0x7c87b writetext GoldenrodUndergroundYoungerHaircutBrotherOneHaircutADayText
waitbutton waitbutton
closetext closetext
end end
@@ -375,14 +375,14 @@ BasementDoorScript::
iftrue .Open iftrue .Open
checkitem BASEMENT_KEY checkitem BASEMENT_KEY
iftrue .Unlock iftrue .Unlock
writetext UnknownText_0x7c5b0 writetext GoldenrodUndergroundTheDoorsLockedText
waitbutton waitbutton
closetext closetext
end end
.Unlock: .Unlock:
playsound SFX_TRANSACTION playsound SFX_TRANSACTION
writetext UnknownText_0x7c5d6 writetext GoldenrodUndergroundBasementKeyOpenedDoorText
waitbutton waitbutton
closetext closetext
changeblock 18, 6, $2e ; unlocked door changeblock 18, 6, $2e ; unlocked door
@@ -392,13 +392,13 @@ BasementDoorScript::
end end
.Open: .Open:
writetext UnknownText_0x7c5c3 writetext GoldenrodUndergroundTheDoorIsOpenText
waitbutton waitbutton
closetext closetext
end end
GoldenrodUndergroundScript_ShopClosed: GoldenrodUndergroundScript_ShopClosed:
writetext UnknownText_0x7c904 writetext GoldenrodUndergroundWeAreNotOpenTodayText
waitbutton waitbutton
closetext closetext
end end
@@ -509,20 +509,20 @@ PokemaniacDonaldAfterBattleText:
cont "#MON." cont "#MON."
done done
UnknownText_0x7c5b0: GoldenrodUndergroundTheDoorsLockedText:
text "The door's locked…" text "The door's locked…"
done done
UnknownText_0x7c5c3: GoldenrodUndergroundTheDoorIsOpenText:
text "The door is open." text "The door is open."
done done
UnknownText_0x7c5d6: GoldenrodUndergroundBasementKeyOpenedDoorText:
text "The BASEMENT KEY" text "The BASEMENT KEY"
line "opened the door." line "opened the door."
done done
UnknownText_0x7c5f9: GoldenrodUndergroundOlderHaircutBrotherOfferHaircutText:
text "Welcome!" text "Welcome!"
para "I run the #MON" para "I run the #MON"
@@ -540,37 +540,37 @@ UnknownText_0x7c5f9:
line "to do that?" line "to do that?"
done done
UnknownText_0x7c69a: GoldenrodUndergroundOlderHaircutBrotherAskWhichMonText:
text "Which #MON" text "Which #MON"
line "should I work on?" line "should I work on?"
done done
UnknownText_0x7c6b8: GoldenrodUndergroundOlderHaircutBrotherWatchItBecomeBeautifulText:
text "OK! Watch it" text "OK! Watch it"
line "become beautiful!" line "become beautiful!"
done done
UnknownText_0x7c6d8: GoldenrodUndergroundOlderHaircutBrotherAllDoneText:
text "There! All done!" text "There! All done!"
done done
UnknownText_0x7c6ea: GoldenrodUndergroundOlderHaircutBrotherThatsAShameText:
text "Is that right?" text "Is that right?"
line "That's a shame!" line "That's a shame!"
done done
UnknownText_0x7c709: GoldenrodUndergroundOlderHaircutBrotherYoullNeedMoreMoneyText:
text "You'll need more" text "You'll need more"
line "money than that." line "money than that."
done done
UnknownText_0x7c72b: GoldenrodUndergroundOlderHaircutBrotherOneHaircutADayText:
text "I do only one" text "I do only one"
line "haircut a day. I'm" line "haircut a day. I'm"
cont "done for today." cont "done for today."
done done
UnknownText_0x7c75c: GoldenrodUndergroundYoungerHaircutBrotherOfferHaircutText:
text "Welcome to the" text "Welcome to the"
line "#MON SALON!" line "#MON SALON!"
@@ -586,32 +586,32 @@ UnknownText_0x7c75c:
para "So? How about it?" para "So? How about it?"
done done
UnknownText_0x7c7f1: GoldenrodUndergroundYoungerHaircutBrotherAskWhichMonText:
text "OK, which #MON" text "OK, which #MON"
line "should I do?" line "should I do?"
done done
UnknownText_0x7c80e: GoldenrodUndergroundYoungerHaircutBrotherIllMakeItLookCoolText:
text "OK! I'll make it" text "OK! I'll make it"
line "look cool!" line "look cool!"
done done
UnknownText_0x7c82a: GoldenrodUndergroundYoungerHaircutBrotherAllDoneText:
text "There we go!" text "There we go!"
line "All done!" line "All done!"
done done
UnknownText_0x7c842: GoldenrodUndergroundYoungerHaircutBrotherHowDisappointingText:
text "No? " text "No? "
line "How disappointing!" line "How disappointing!"
done done
UnknownText_0x7c85b: GoldenrodUndergroundYoungerHaircutBrotherShortOnFundsText:
text "You're a little" text "You're a little"
line "short on funds." line "short on funds."
done done
UnknownText_0x7c87b: GoldenrodUndergroundYoungerHaircutBrotherOneHaircutADayText:
text "I can do only one" text "I can do only one"
line "haircut a day." line "haircut a day."
@@ -637,7 +637,7 @@ HaircutBrosText_MuchHappier:
line "delighted!" line "delighted!"
done done
UnknownText_0x7c904: GoldenrodUndergroundWeAreNotOpenTodayText:
text "We're not open" text "We're not open"
line "today." line "today."
done done

View File

@@ -1,7 +1,7 @@
object_const_def ; object_event constants object_const_def ; object_event constants
const POKEMONFANCLUB_GENTLEMAN const POKEMONFANCLUB_CHAIRMAN
const POKEMONFANCLUB_RECEPTIONIST const POKEMONFANCLUB_RECEPTIONIST
const POKEMONFANCLUB_FISHER const POKEMONFANCLUB_CLEFAIRY_GUY
const POKEMONFANCLUB_TEACHER const POKEMONFANCLUB_TEACHER
const POKEMONFANCLUB_FAIRY const POKEMONFANCLUB_FAIRY
const POKEMONFANCLUB_ODDISH const POKEMONFANCLUB_ODDISH
@@ -11,37 +11,37 @@ PokemonFanClub_MapScripts:
db 0 ; callbacks db 0 ; callbacks
PokemonFanClubPresidentScript: PokemonFanClubChairmanScript:
faceplayer faceplayer
opentext opentext
checkevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT checkevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
iftrue .HeardSpeech iftrue .HeardSpeech
checkevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT_BUT_BAG_WAS_FULL checkevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT_BUT_BAG_WAS_FULL
iftrue .HeardSpeechButBagFull iftrue .HeardSpeechButBagFull
writetext UnknownText_0x191881 writetext PokemonFanClubChairmanDidYouVisitToHearAboutMyMonText
yesorno yesorno
iffalse .NotListening iffalse .NotListening
writetext UnknownText_0x191911 writetext PokemonFanClubChairmanRapidashText
buttonsound buttonsound
.HeardSpeechButBagFull: .HeardSpeechButBagFull:
writetext UnknownText_0x191a3d writetext PokemonFanClubChairmanIWantYouToHaveThisText
buttonsound buttonsound
verbosegiveitem RARE_CANDY verbosegiveitem RARE_CANDY
iffalse .BagFull iffalse .BagFull
setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT setevent EVENT_LISTENED_TO_FAN_CLUB_PRESIDENT
writetext UnknownText_0x191a72 writetext PokemonFanClubChairmanItsARareCandyText
waitbutton waitbutton
closetext closetext
end end
.HeardSpeech: .HeardSpeech:
writetext UnknownText_0x191ae0 writetext PokemonFanClubChairmanMoreTalesToTellText
waitbutton waitbutton
closetext closetext
end end
.NotListening: .NotListening:
writetext UnknownText_0x191b38 writetext PokemonFanClubChairmanHowDisappointingText
waitbutton waitbutton
.BagFull: .BagFull:
closetext closetext
@@ -57,13 +57,13 @@ PokemonFanClubClefairyGuyScript:
iftrue .GotLostItem iftrue .GotLostItem
checkevent EVENT_RETURNED_MACHINE_PART checkevent EVENT_RETURNED_MACHINE_PART
iftrue .FoundClefairyDoll iftrue .FoundClefairyDoll
writetext UnknownText_0x191ba0 writetext PokemonFanClubClefairyGuyClefairyIsSoAdorableText
waitbutton waitbutton
closetext closetext
end end
.FoundClefairyDoll: .FoundClefairyDoll:
writetext UnknownText_0x191bff writetext PokemonFanClubClefairyGuyMakingDoWithADollIFoundText
checkevent EVENT_MET_COPYCAT_FOUND_OUT_ABOUT_LOST_ITEM checkevent EVENT_MET_COPYCAT_FOUND_OUT_ABOUT_LOST_ITEM
iftrue .MetCopycat iftrue .MetCopycat
waitbutton waitbutton
@@ -72,13 +72,13 @@ PokemonFanClubClefairyGuyScript:
.MetCopycat: .MetCopycat:
buttonsound buttonsound
writetext UnknownText_0x191c5a writetext PokemonFanClubClefairyGuyTakeThisDollBackToGirlText
buttonsound buttonsound
waitsfx waitsfx
giveitem LOST_ITEM giveitem LOST_ITEM
iffalse .NoRoom iffalse .NoRoom
disappear POKEMONFANCLUB_FAIRY disappear POKEMONFANCLUB_FAIRY
writetext UnknownText_0x191d0a writetext PokemonFanClubPlayerReceivedDollText
playsound SFX_KEY_ITEM playsound SFX_KEY_ITEM
waitsfx waitsfx
itemnotify itemnotify
@@ -87,13 +87,13 @@ PokemonFanClubClefairyGuyScript:
end end
.GotLostItem: .GotLostItem:
writetext UnknownText_0x191d1e writetext PokemonFanClubClefairyGuyGoingToGetARealClefairyText
waitbutton waitbutton
closetext closetext
end end
.NoRoom: .NoRoom:
writetext UnknownText_0x191d58 writetext PokemonFanClubClefairyGuyPackIsJammedFullText
waitbutton waitbutton
closetext closetext
end end
@@ -102,11 +102,11 @@ PokemonFanClubTeacherScript:
jumptextfaceplayer PokemonFanClubTeacherText jumptextfaceplayer PokemonFanClubTeacherText
PokemonFanClubClefairyDollScript: PokemonFanClubClefairyDollScript:
jumptext ClefairyDollText jumptext PokemonFanClubClefairyDollText
PokemonFanClubBayleefScript: PokemonFanClubBayleefScript:
opentext opentext
writetext FanClubBayleefText writetext PokemonFanClubBayleefText
cry BAYLEEF cry BAYLEEF
waitbutton waitbutton
closetext closetext
@@ -118,7 +118,7 @@ PokemonFanClubListenSign:
PokemonFanClubBraggingSign: PokemonFanClubBraggingSign:
jumptext PokemonFanClubBraggingSignText jumptext PokemonFanClubBraggingSignText
UnknownText_0x191881: PokemonFanClubChairmanDidYouVisitToHearAboutMyMonText:
text "I'm the CHAIRMAN" text "I'm the CHAIRMAN"
line "of the #MON FAN" line "of the #MON FAN"
cont "CLUB." cont "CLUB."
@@ -135,7 +135,7 @@ UnknownText_0x191881:
cont "#MON?" cont "#MON?"
done done
UnknownText_0x191911: PokemonFanClubChairmanRapidashText:
text "Good!" text "Good!"
line "Then listen up!" line "Then listen up!"
@@ -161,13 +161,13 @@ UnknownText_0x191911:
cont "you too long!" cont "you too long!"
done done
UnknownText_0x191a3d: PokemonFanClubChairmanIWantYouToHaveThisText:
text "Thanks for hearing" text "Thanks for hearing"
line "me out. I want you" line "me out. I want you"
cont "to have this!" cont "to have this!"
done done
UnknownText_0x191a72: PokemonFanClubChairmanItsARareCandyText:
text "It's a RARE CANDY" text "It's a RARE CANDY"
line "that makes #MON" line "that makes #MON"
cont "stronger." cont "stronger."
@@ -179,7 +179,7 @@ UnknownText_0x191a72:
line "you can have it." line "you can have it."
done done
UnknownText_0x191ae0: PokemonFanClubChairmanMoreTalesToTellText:
text "Hello, <PLAY_G>!" text "Hello, <PLAY_G>!"
para "Did you come see" para "Did you come see"
@@ -190,7 +190,7 @@ UnknownText_0x191ae0:
line "tales to tell…" line "tales to tell…"
done done
UnknownText_0x191b38: PokemonFanClubChairmanHowDisappointingText:
text "How disappointing…" text "How disappointing…"
para "Come back if you" para "Come back if you"
@@ -203,7 +203,7 @@ PokemonFanClubReceptionistText:
cont "comes to #MON…" cont "comes to #MON…"
done done
UnknownText_0x191ba0: PokemonFanClubClefairyGuyClefairyIsSoAdorableText:
text "I love the way" text "I love the way"
line "CLEFAIRY waggles" line "CLEFAIRY waggles"
@@ -214,7 +214,7 @@ UnknownText_0x191ba0:
line "It's so adorable!" line "It's so adorable!"
done done
UnknownText_0x191bff: PokemonFanClubClefairyGuyMakingDoWithADollIFoundText:
text "I love CLEFAIRY," text "I love CLEFAIRY,"
line "but I could never" line "but I could never"
@@ -225,7 +225,7 @@ UnknownText_0x191bff:
line "found." line "found."
done done
UnknownText_0x191c5a: PokemonFanClubClefairyGuyTakeThisDollBackToGirlText:
text "Oh, I see now. The" text "Oh, I see now. The"
line "girl who lost this" line "girl who lost this"
@@ -244,12 +244,12 @@ UnknownText_0x191c5a:
line "No worries!" line "No worries!"
done done
UnknownText_0x191d0a: PokemonFanClubPlayerReceivedDollText:
text "<PLAYER> received" text "<PLAYER> received"
line "# DOLL." line "# DOLL."
done done
UnknownText_0x191d1e: PokemonFanClubClefairyGuyGoingToGetARealClefairyText:
text "You watch. I'm" text "You watch. I'm"
line "going to get a" line "going to get a"
@@ -257,7 +257,7 @@ UnknownText_0x191d1e:
line "my friend." line "my friend."
done done
UnknownText_0x191d58: PokemonFanClubClefairyGuyPackIsJammedFullText:
text "Your PACK is" text "Your PACK is"
line "jammed full." line "jammed full."
done done
@@ -270,7 +270,7 @@ PokemonFanClubTeacherText:
line "head is so cute!" line "head is so cute!"
done done
ClefairyDollText: PokemonFanClubClefairyDollText:
text "It's a CLEFAIRY!" text "It's a CLEFAIRY!"
line "Huh?" line "Huh?"
@@ -279,7 +279,7 @@ ClefairyDollText:
cont "DOLL." cont "DOLL."
done done
FanClubBayleefText: PokemonFanClubBayleefText:
text "BAYLEEF: Li liif!" text "BAYLEEF: Li liif!"
done done
@@ -308,7 +308,7 @@ PokemonFanClub_MapEvents:
bg_event 9, 0, BGEVENT_READ, PokemonFanClubBraggingSign bg_event 9, 0, BGEVENT_READ, PokemonFanClubBraggingSign
db 6 ; object events db 6 ; object events
object_event 3, 1, SPRITE_GENTLEMAN, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokemonFanClubPresidentScript, -1 object_event 3, 1, SPRITE_GENTLEMAN, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokemonFanClubChairmanScript, -1
object_event 4, 1, SPRITE_RECEPTIONIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PokemonFanClubReceptionistScript, -1 object_event 4, 1, SPRITE_RECEPTIONIST, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PokemonFanClubReceptionistScript, -1
object_event 2, 3, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokemonFanClubClefairyGuyScript, -1 object_event 2, 3, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_RIGHT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokemonFanClubClefairyGuyScript, -1
object_event 7, 2, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokemonFanClubTeacherScript, -1 object_event 7, 2, SPRITE_TEACHER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, 0, OBJECTTYPE_SCRIPT, 0, PokemonFanClubTeacherScript, -1

View File

@@ -4,7 +4,7 @@
const POWERPLANT_GYM_GUY2 const POWERPLANT_GYM_GUY2
const POWERPLANT_OFFICER2 const POWERPLANT_OFFICER2
const POWERPLANT_GYM_GUY3 const POWERPLANT_GYM_GUY3
const POWERPLANT_FISHER const POWERPLANT_MANAGER
const POWERPLANT_FOREST const POWERPLANT_FOREST
PowerPlant_MapScripts: PowerPlant_MapScripts:
@@ -25,21 +25,21 @@ PowerPlantGuardPhoneScript:
showemote EMOTE_SHOCK, POWERPLANT_OFFICER1, 15 showemote EMOTE_SHOCK, POWERPLANT_OFFICER1, 15
waitsfx waitsfx
pause 30 pause 30
applymovement POWERPLANT_OFFICER1, MovementData_0x188ed5 applymovement POWERPLANT_OFFICER1, PowerPlantOfficer1ApproachGymGuy2Movement
turnobject POWERPLANT_GYM_GUY1, DOWN turnobject POWERPLANT_GYM_GUY1, DOWN
turnobject POWERPLANT_GYM_GUY2, DOWN turnobject POWERPLANT_GYM_GUY2, DOWN
opentext opentext
writetext UnknownText_0x188f22 writetext PowerPlantOfficer1CeruleanShadyCharacterText
waitbutton waitbutton
closetext closetext
turnobject POWERPLANT_OFFICER1, LEFT turnobject POWERPLANT_OFFICER1, LEFT
turnobject PLAYER, RIGHT turnobject PLAYER, RIGHT
opentext opentext
writetext UnknownText_0x188f7f writetext PowerPlantOfficer1CouldIAskForYourCooperationText
waitbutton waitbutton
closetext closetext
turnobject PLAYER, DOWN turnobject PLAYER, DOWN
applymovement POWERPLANT_OFFICER1, MovementData_0x188eda applymovement POWERPLANT_OFFICER1, PowerPlantOfficer1ReturnToPostMovement
setscene SCENE_POWERPLANT_NOTHING setscene SCENE_POWERPLANT_NOTHING
end end
@@ -50,19 +50,19 @@ PowerPlantOfficerScript:
iftrue .ReturnedMachinePart iftrue .ReturnedMachinePart
checkevent EVENT_MET_MANAGER_AT_POWER_PLANT checkevent EVENT_MET_MANAGER_AT_POWER_PLANT
iftrue .MetManager iftrue .MetManager
writetext UnknownText_0x188ee0 writetext PowerPlantOfficer1AThiefBrokeInText
waitbutton waitbutton
closetext closetext
end end
.MetManager: .MetManager:
writetext UnknownText_0x188f7f writetext PowerPlantOfficer1CouldIAskForYourCooperationText
waitbutton waitbutton
closetext closetext
end end
.ReturnedMachinePart: .ReturnedMachinePart:
writetext UnknownText_0x188fa2 writetext PowerPlantOfficer1HaveToBeefUpSecurityText
waitbutton waitbutton
closetext closetext
end end
@@ -72,13 +72,13 @@ PowerPlantGymGuy1Script:
opentext opentext
checkevent EVENT_RETURNED_MACHINE_PART checkevent EVENT_RETURNED_MACHINE_PART
iftrue .ReturnedMachinePart iftrue .ReturnedMachinePart
writetext UnknownText_0x188fcf writetext PowerPlantGymGuy1SomeoneStoleAPartText
waitbutton waitbutton
closetext closetext
end end
.ReturnedMachinePart: .ReturnedMachinePart:
writetext UnknownText_0x189038 writetext PowerPlantGymGuy1GeneratorUpAndRunningText
waitbutton waitbutton
closetext closetext
end end
@@ -88,29 +88,29 @@ PowerPlantGymGuy2Script:
opentext opentext
checkevent EVENT_RETURNED_MACHINE_PART checkevent EVENT_RETURNED_MACHINE_PART
iftrue .ReturnedMachinePart iftrue .ReturnedMachinePart
writetext UnknownText_0x189079 writetext PowerPlantGymGuy2PowerPlantUpAndRunningText
waitbutton waitbutton
closetext closetext
end end
.ReturnedMachinePart: .ReturnedMachinePart:
writetext UnknownText_0x1890ef writetext PowerPlantGymGuy2GeneratorIsRunningAgainText
waitbutton waitbutton
closetext closetext
end end
PowerPlantGymGuy3Script: PowerPlantOfficer2Script:
faceplayer faceplayer
opentext opentext
checkevent EVENT_RETURNED_MACHINE_PART checkevent EVENT_RETURNED_MACHINE_PART
iftrue .ReturnedMachinePart iftrue .ReturnedMachinePart
writetext UnknownText_0x18910e writetext PowerPlantOfficer2ManagerHasBeenSadAndFuriousText
waitbutton waitbutton
closetext closetext
end end
.ReturnedMachinePart: .ReturnedMachinePart:
writetext UnknownText_0x18917f writetext PowerPlantOfficer2ManagerHasBeenCheerfulText
waitbutton waitbutton
closetext closetext
end end
@@ -120,13 +120,13 @@ PowerPlantGymGuy4Script:
opentext opentext
checkevent EVENT_RETURNED_MACHINE_PART checkevent EVENT_RETURNED_MACHINE_PART
iftrue .ReturnedMachinePart iftrue .ReturnedMachinePart
writetext UnknownText_0x1891c2 writetext PowerPlantGymGuy4MagnetTrainConsumesElectricityText
waitbutton waitbutton
closetext closetext
end end
.ReturnedMachinePart: .ReturnedMachinePart:
writetext UnknownText_0x189225 writetext PowerPlantGymGuy4WeCanGetMagnetTrainRunningText
waitbutton waitbutton
closetext closetext
end end
@@ -140,7 +140,7 @@ PowerPlantManager:
iftrue .FoundMachinePart iftrue .FoundMachinePart
checkevent EVENT_MET_MANAGER_AT_POWER_PLANT checkevent EVENT_MET_MANAGER_AT_POWER_PLANT
iftrue .MetManager iftrue .MetManager
writetext UnknownText_0x189264 writetext PowerPlantManagerWhoWouldRuinMyGeneratorText
waitbutton waitbutton
closetext closetext
setevent EVENT_MET_MANAGER_AT_POWER_PLANT setevent EVENT_MET_MANAGER_AT_POWER_PLANT
@@ -151,13 +151,13 @@ PowerPlantManager:
end end
.MetManager: .MetManager:
writetext UnknownText_0x189308 writetext PowerPlantManagerIWontForgiveCulpritText
waitbutton waitbutton
closetext closetext
end end
.FoundMachinePart: .FoundMachinePart:
writetext UnknownText_0x18936e writetext PowerPlantManagerThatsThePartText
buttonsound buttonsound
takeitem MACHINE_PART takeitem MACHINE_PART
setevent EVENT_RETURNED_MACHINE_PART setevent EVENT_RETURNED_MACHINE_PART
@@ -169,19 +169,19 @@ PowerPlantManager:
.ReturnedMachinePart: .ReturnedMachinePart:
checkevent EVENT_GOT_TM07_ZAP_CANNON checkevent EVENT_GOT_TM07_ZAP_CANNON
iftrue .GotZapCannon iftrue .GotZapCannon
writetext UnknownText_0x1893c4 writetext PowerPlantManagerTakeThisTMText
buttonsound buttonsound
verbosegiveitem TM_ZAP_CANNON verbosegiveitem TM_ZAP_CANNON
iffalse .NoRoom iffalse .NoRoom
setevent EVENT_GOT_TM07_ZAP_CANNON setevent EVENT_GOT_TM07_ZAP_CANNON
writetext UnknownText_0x1893f4 writetext PowerPlantManagerTM07IsZapCannonText
waitbutton waitbutton
.NoRoom: .NoRoom:
closetext closetext
end end
.GotZapCannon: .GotZapCannon:
writetext UnknownText_0x189475 writetext PowerPlantManagerMyBelovedGeneratorText
waitbutton waitbutton
closetext closetext
end end
@@ -197,14 +197,14 @@ Forest:
PowerPlantBookshelf: PowerPlantBookshelf:
jumpstd difficultbookshelf jumpstd difficultbookshelf
MovementData_0x188ed5: PowerPlantOfficer1ApproachGymGuy2Movement:
step RIGHT step RIGHT
step RIGHT step RIGHT
step UP step UP
step UP step UP
step_end step_end
MovementData_0x188eda: PowerPlantOfficer1ReturnToPostMovement:
step DOWN step DOWN
step DOWN step DOWN
step LEFT step LEFT
@@ -212,7 +212,7 @@ MovementData_0x188eda:
turn_head DOWN turn_head DOWN
step_end step_end
UnknownText_0x188ee0: PowerPlantOfficer1AThiefBrokeInText:
text "A thief broke into" text "A thief broke into"
line "the POWER PLANT…" line "the POWER PLANT…"
@@ -220,7 +220,7 @@ UnknownText_0x188ee0:
line "coming to?" line "coming to?"
done done
UnknownText_0x188f22: PowerPlantOfficer1CeruleanShadyCharacterText:
text "I just got word" text "I just got word"
line "from CERULEAN." line "from CERULEAN."
@@ -231,18 +231,18 @@ UnknownText_0x188f22:
line "around." line "around."
done done
UnknownText_0x188f7f: PowerPlantOfficer1CouldIAskForYourCooperationText:
text "Could I ask for" text "Could I ask for"
line "your cooperation?" line "your cooperation?"
done done
UnknownText_0x188fa2: PowerPlantOfficer1HaveToBeefUpSecurityText:
text "We'll have to beef" text "We'll have to beef"
line "up our security" line "up our security"
cont "presence." cont "presence."
done done
UnknownText_0x188fcf: PowerPlantGymGuy1SomeoneStoleAPartText:
text "Someone made off" text "Someone made off"
line "with a part that's" line "with a part that's"
@@ -254,7 +254,7 @@ UnknownText_0x188fcf:
cont "useless!" cont "useless!"
done done
UnknownText_0x189038: PowerPlantGymGuy1GeneratorUpAndRunningText:
text "The generator's up" text "The generator's up"
line "and running. It's" line "and running. It's"
@@ -262,7 +262,7 @@ UnknownText_0x189038:
line "to spare." line "to spare."
done done
UnknownText_0x189079: PowerPlantGymGuy2PowerPlantUpAndRunningText:
text "This POWER PLANT" text "This POWER PLANT"
line "had been abandoned" line "had been abandoned"
cont "in the past." cont "in the past."
@@ -274,12 +274,12 @@ UnknownText_0x189079:
line "the MAGNET TRAIN." line "the MAGNET TRAIN."
done done
UnknownText_0x1890ef: PowerPlantGymGuy2GeneratorIsRunningAgainText:
text "The generator's" text "The generator's"
line "running again!" line "running again!"
done done
UnknownText_0x18910e: PowerPlantOfficer2ManagerHasBeenSadAndFuriousText:
text "The POWER PLANT's" text "The POWER PLANT's"
line "MANAGER is up" line "MANAGER is up"
cont "ahead." cont "ahead."
@@ -291,7 +291,7 @@ UnknownText_0x18910e:
cont "furious…" cont "furious…"
done done
UnknownText_0x18917f: PowerPlantOfficer2ManagerHasBeenCheerfulText:
text "Since the gener-" text "Since the gener-"
line "ator's been fixed," line "ator's been fixed,"
@@ -299,7 +299,7 @@ UnknownText_0x18917f:
line "been cheerful." line "been cheerful."
done done
UnknownText_0x1891c2: PowerPlantGymGuy4MagnetTrainConsumesElectricityText:
text "The MAGNET TRAIN" text "The MAGNET TRAIN"
line "consumes a lot of" line "consumes a lot of"
cont "electricity." cont "electricity."
@@ -309,7 +309,7 @@ UnknownText_0x1891c2:
cont "isn't operating." cont "isn't operating."
done done
UnknownText_0x189225: PowerPlantGymGuy4WeCanGetMagnetTrainRunningText:
text "All right! We can" text "All right! We can"
line "finally get the" line "finally get the"
@@ -317,7 +317,7 @@ UnknownText_0x189225:
line "running again." line "running again."
done done
UnknownText_0x189264: PowerPlantManagerWhoWouldRuinMyGeneratorText:
text "MANAGER: I, I, I'm" text "MANAGER: I, I, I'm"
line "ready to blast" line "ready to blast"
cont "someone!" cont "someone!"
@@ -335,7 +335,7 @@ UnknownText_0x189264:
line "CANNON!" line "CANNON!"
done done
UnknownText_0x189308: PowerPlantManagerIWontForgiveCulpritText:
text "MANAGER: I won't" text "MANAGER: I won't"
line "forgive him!" line "forgive him!"
@@ -348,7 +348,7 @@ UnknownText_0x189308:
para "Gahahahah!" para "Gahahahah!"
done done
UnknownText_0x18936e: PowerPlantManagerThatsThePartText:
text "MANAGER: Ah! Yeah!" text "MANAGER: Ah! Yeah!"
para "That's the missing" para "That's the missing"
@@ -357,14 +357,14 @@ UnknownText_0x18936e:
cont "You found it?" cont "You found it?"
done done
UnknownText_0x1893c4: PowerPlantManagerTakeThisTMText:
text "Wahah! Thanks!" text "Wahah! Thanks!"
para "Here! Take this TM" para "Here! Take this TM"
line "as a reward!" line "as a reward!"
done done
UnknownText_0x1893f4: PowerPlantManagerTM07IsZapCannonText:
text "MANAGER: TM07 is" text "MANAGER: TM07 is"
line "my ZAP CANNON." line "my ZAP CANNON."
@@ -378,7 +378,7 @@ UnknownText_0x1893f4:
line "packs a wallop!" line "packs a wallop!"
done done
UnknownText_0x189475: PowerPlantManagerMyBelovedGeneratorText:
text "MANAGER: My be-" text "MANAGER: My be-"
line "loved generator!" line "loved generator!"
@@ -404,7 +404,7 @@ PowerPlant_MapEvents:
object_event 4, 14, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PowerPlantOfficerScript, -1 object_event 4, 14, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_DOWN, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PowerPlantOfficerScript, -1
object_event 2, 9, SPRITE_GYM_GUY, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy1Script, -1 object_event 2, 9, SPRITE_GYM_GUY, SPRITEMOVEDATA_SPINRANDOM_SLOW, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy1Script, -1
object_event 6, 11, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy2Script, -1 object_event 6, 11, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy2Script, -1
object_event 9, 3, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy3Script, -1 object_event 9, 3, SPRITE_OFFICER, SPRITEMOVEDATA_STANDING_LEFT, 0, 0, -1, -1, PAL_NPC_GREEN, OBJECTTYPE_SCRIPT, 0, PowerPlantOfficer2Script, -1
object_event 7, 2, SPRITE_GYM_GUY, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy4Script, -1 object_event 7, 2, SPRITE_GYM_GUY, SPRITEMOVEDATA_WALK_LEFT_RIGHT, 1, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, PowerPlantGymGuy4Script, -1
object_event 14, 10, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, PowerPlantManager, -1 object_event 14, 10, SPRITE_FISHER, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_RED, OBJECTTYPE_SCRIPT, 0, PowerPlantManager, -1
object_event 5, 5, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, Forest, -1 object_event 5, 5, SPRITE_GYM_GUY, SPRITEMOVEDATA_STANDING_UP, 0, 0, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, Forest, -1

View File

@@ -1,5 +1,5 @@
object_const_def ; object_event constants object_const_def ; object_event constants
const ROUTE35GOLDENRODGATE_OFFICER const ROUTE35GOLDENRODGATE_RANDY
const ROUTE35GOLDENRODGATE_POKEFAN_F const ROUTE35GOLDENRODGATE_POKEFAN_F
const ROUTE35GOLDENRODGATE_FISHER const ROUTE35GOLDENRODGATE_FISHER
@@ -17,46 +17,46 @@ RandyScript:
iftrue .questcomplete iftrue .questcomplete
checkevent EVENT_GOT_KENYA checkevent EVENT_GOT_KENYA
iftrue .alreadyhavekenya iftrue .alreadyhavekenya
writetext UnknownText_0x69ddd writetext Route35GoldenrodGateRandyAskTakeThisMonToMyFriendText
yesorno yesorno
iffalse .refused iffalse .refused
writetext UnknownText_0x69e48 writetext Route35GoldenrodGateRandyThanksKidText
buttonsound buttonsound
waitsfx waitsfx
readvar VAR_PARTYCOUNT readvar VAR_PARTYCOUNT
ifequal PARTY_LENGTH, .partyfull ifequal PARTY_LENGTH, .partyfull
writetext UnknownText_0x69eb8 writetext Route35GoldenrodGatePlayerReceivedAMonWithMailText
playsound SFX_KEY_ITEM playsound SFX_KEY_ITEM
waitsfx waitsfx
givepoke SPEAROW, 10, NO_ITEM, TRUE, GiftSpearowName, GiftSpearowOTName givepoke SPEAROW, 10, NO_ITEM, TRUE, GiftSpearowName, GiftSpearowOTName
givepokemail GiftSpearowMail givepokemail GiftSpearowMail
setevent EVENT_GOT_KENYA setevent EVENT_GOT_KENYA
.alreadyhavekenya .alreadyhavekenya
writetext UnknownText_0x69ed6 writetext Route35GoldenrodGateRandyWeirdTreeBlockingRoadText
waitbutton waitbutton
closetext closetext
end end
.partyfull .partyfull
writetext UnknownText_0x69f56 writetext Route35GoldenrodGateRandyCantCarryAnotherMonText
waitbutton waitbutton
closetext closetext
end end
.refused .refused
writetext UnknownText_0x69f74 writetext Route35GoldenrodGateRandyOhNeverMindThenText
waitbutton waitbutton
closetext closetext
end end
.questcomplete .questcomplete
writetext UnknownText_0x69f8b writetext Route35GoldenrodGateRandySomethingForYourTroubleText
buttonsound buttonsound
verbosegiveitem HP_UP verbosegiveitem HP_UP
iffalse .bagfull iffalse .bagfull
setevent EVENT_GOT_HP_UP_FROM_RANDY setevent EVENT_GOT_HP_UP_FROM_RANDY
.gothpup .gothpup
writetext UnknownText_0x69fd9 writetext Route35GoldenrodGateRandyMyPalWasSnoozingRightText
waitbutton waitbutton
.bagfull .bagfull
closetext closetext
@@ -94,7 +94,7 @@ Route35GoldenrodGatePokefanFScript:
Route35GoldenrodGateFisherScript: Route35GoldenrodGateFisherScript:
jumptextfaceplayer Route35GoldenrodGateFisherText jumptextfaceplayer Route35GoldenrodGateFisherText
UnknownText_0x69ddd: Route35GoldenrodGateRandyAskTakeThisMonToMyFriendText:
text "Excuse me, kid!" text "Excuse me, kid!"
line "Can you do a guy" line "Can you do a guy"
cont "a favor?" cont "a favor?"
@@ -106,7 +106,7 @@ UnknownText_0x69ddd:
para "He's on ROUTE 31." para "He's on ROUTE 31."
done done
UnknownText_0x69e48: Route35GoldenrodGateRandyThanksKidText:
text "You will? Perfect!" text "You will? Perfect!"
line "Thanks, kid!" line "Thanks, kid!"
@@ -118,12 +118,12 @@ UnknownText_0x69e48:
line "him right away!" line "him right away!"
done done
UnknownText_0x69eb8: Route35GoldenrodGatePlayerReceivedAMonWithMailText:
text "<PLAYER> received a" text "<PLAYER> received a"
line "#MON with MAIL." line "#MON with MAIL."
done done
UnknownText_0x69ed6: Route35GoldenrodGateRandyWeirdTreeBlockingRoadText:
text "You can read it," text "You can read it,"
line "but don't lose it!" line "but don't lose it!"
cont "ROUTE 31!" cont "ROUTE 31!"
@@ -136,17 +136,17 @@ UnknownText_0x69ed6:
line "been cleared?" line "been cleared?"
done done
UnknownText_0x69f56: Route35GoldenrodGateRandyCantCarryAnotherMonText:
text "You can't carry" text "You can't carry"
line "another #MON…" line "another #MON…"
done done
UnknownText_0x69f74: Route35GoldenrodGateRandyOhNeverMindThenText:
text "Oh… Never mind," text "Oh… Never mind,"
line "then…" line "then…"
done done
UnknownText_0x69f8b: Route35GoldenrodGateRandySomethingForYourTroubleText:
text "Thanks, kid! You" text "Thanks, kid! You"
line "made the delivery" line "made the delivery"
cont "for me!" cont "for me!"
@@ -155,7 +155,7 @@ UnknownText_0x69f8b:
line "for your trouble!" line "for your trouble!"
done done
UnknownText_0x69fd9: Route35GoldenrodGateRandyMyPalWasSnoozingRightText:
text "My pal was snooz-" text "My pal was snooz-"
line "ing, right? Heh," line "ing, right? Heh,"
cont "what'd I say?" cont "what'd I say?"

View File

@@ -18,22 +18,22 @@ SaffronMagnetTrainStationOfficerScript:
opentext opentext
checkevent EVENT_RESTORED_POWER_TO_KANTO checkevent EVENT_RESTORED_POWER_TO_KANTO
iftrue .MagnetTrainToGoldenrod iftrue .MagnetTrainToGoldenrod
writetext UnknownText_0x18a8a9 writetext SaffronMagnetTrainStationOfficerTrainIsntOperatingText
waitbutton waitbutton
closetext closetext
end end
.MagnetTrainToGoldenrod: .MagnetTrainToGoldenrod:
writetext UnknownText_0x18a8dd writetext SaffronMagnetTrainStationOfficerAreYouComingOnBoardText
yesorno yesorno
iffalse .DecidedNotToRide iffalse .DecidedNotToRide
checkitem PASS checkitem PASS
iffalse .PassNotInBag iffalse .PassNotInBag
writetext UnknownText_0x18a917 writetext SaffronMagnetTrainStationOfficerRightThisWayText
waitbutton waitbutton
closetext closetext
applymovement SAFFRONMAGNETTRAINSTATION_OFFICER, MovementData_0x18a88f applymovement SAFFRONMAGNETTRAINSTATION_OFFICER, SaffronMagnetTrainStationOfficerApproachTrainDoorMovement
applymovement PLAYER, MovementData_0x18a898 applymovement PLAYER, SaffronMagnetTrainStationPlayerApproachAndEnterTrainMovement
setval TRUE setval TRUE
special MagnetTrain special MagnetTrain
warpcheck warpcheck
@@ -47,23 +47,23 @@ SaffronMagnetTrainStationOfficerScript:
step_end step_end
.PassNotInBag: .PassNotInBag:
writetext UnknownText_0x18a956 writetext SaffronMagnetTrainStationOfficerYouDontHaveAPassText
waitbutton waitbutton
closetext closetext
end end
.DecidedNotToRide: .DecidedNotToRide:
writetext UnknownText_0x18a978 writetext SaffronMagnetTrainStationOfficerHopeToSeeYouAgainText
waitbutton waitbutton
closetext closetext
end end
Script_ArriveFromGoldenrod: Script_ArriveFromGoldenrod:
applymovement SAFFRONMAGNETTRAINSTATION_OFFICER, MovementData_0x18a88f applymovement SAFFRONMAGNETTRAINSTATION_OFFICER, SaffronMagnetTrainStationOfficerApproachTrainDoorMovement
applymovement PLAYER, MovementData_0x18a8a1 applymovement PLAYER, SaffronMagnetTrainStationPlayerLeaveTrainAndEnterStationMovement
applymovement SAFFRONMAGNETTRAINSTATION_OFFICER, MovementData_0x18a894 applymovement SAFFRONMAGNETTRAINSTATION_OFFICER, SaffronMagnetTrainStationOfficerReturnToBoardingGateMovement
opentext opentext
writetext UnknownText_0x18a993 writetext SaffronMagnetTrainStationOfficerArrivedInSaffronText
waitbutton waitbutton
closetext closetext
end end
@@ -90,20 +90,20 @@ SaffronMagnetTrainStationTeacherScript:
SaffronMagnetTrainStationLassScript: SaffronMagnetTrainStationLassScript:
jumptextfaceplayer SaffronMagnetTrainStationLassText jumptextfaceplayer SaffronMagnetTrainStationLassText
MovementData_0x18a88f: SaffronMagnetTrainStationOfficerApproachTrainDoorMovement:
step UP step UP
step UP step UP
step RIGHT step RIGHT
turn_head LEFT turn_head LEFT
step_end step_end
MovementData_0x18a894: SaffronMagnetTrainStationOfficerReturnToBoardingGateMovement:
step LEFT step LEFT
step DOWN step DOWN
step DOWN step DOWN
step_end step_end
MovementData_0x18a898: SaffronMagnetTrainStationPlayerApproachAndEnterTrainMovement:
step UP step UP
step UP step UP
step UP step UP
@@ -114,7 +114,7 @@ MovementData_0x18a898:
step UP step UP
step_end step_end
MovementData_0x18a8a1: SaffronMagnetTrainStationPlayerLeaveTrainAndEnterStationMovement:
step LEFT step LEFT
step LEFT step LEFT
step DOWN step DOWN
@@ -124,13 +124,13 @@ MovementData_0x18a8a1:
turn_head UP turn_head UP
step_end step_end
UnknownText_0x18a8a9: SaffronMagnetTrainStationOfficerTrainIsntOperatingText:
text "I'm sorry, but the" text "I'm sorry, but the"
line "MAGNET TRAIN isn't" line "MAGNET TRAIN isn't"
cont "operating now." cont "operating now."
done done
UnknownText_0x18a8dd: SaffronMagnetTrainStationOfficerAreYouComingOnBoardText:
text "We'll soon depart" text "We'll soon depart"
line "for GOLDENROD." line "for GOLDENROD."
@@ -138,7 +138,7 @@ UnknownText_0x18a8dd:
line "board?" line "board?"
done done
UnknownText_0x18a917: SaffronMagnetTrainStationOfficerRightThisWayText:
text "May I see your" text "May I see your"
line "rail PASS, please?" line "rail PASS, please?"
@@ -146,17 +146,17 @@ UnknownText_0x18a917:
line "way, please." line "way, please."
done done
UnknownText_0x18a956: SaffronMagnetTrainStationOfficerYouDontHaveAPassText:
text "Sorry, but you" text "Sorry, but you"
line "don't have a PASS." line "don't have a PASS."
done done
UnknownText_0x18a978: SaffronMagnetTrainStationOfficerHopeToSeeYouAgainText:
text "We hope to see you" text "We hope to see you"
line "again." line "again."
done done
UnknownText_0x18a993: SaffronMagnetTrainStationOfficerArrivedInSaffronText:
text "We have arrived in" text "We have arrived in"
line "SAFFRON." line "SAFFRON."