Remove address comments
This commit is contained in:
@@ -8,34 +8,34 @@
|
||||
.equ LOCALID_BIKER5, 8
|
||||
.equ LOCALID_BIKER6, 14
|
||||
|
||||
ThreeIsland_MapScripts:: @ 81677AD
|
||||
ThreeIsland_MapScripts::
|
||||
map_script MAP_SCRIPT_ON_TRANSITION, ThreeIsland_OnTransition
|
||||
.byte 0
|
||||
|
||||
ThreeIsland_OnTransition:: @ 81677B3
|
||||
ThreeIsland_OnTransition::
|
||||
setworldmapflag FLAG_WORLD_MAP_THREE_ISLAND
|
||||
call_if_set FLAG_RESCUED_LOSTELLE, ThreeIsland_EventScript_HideAntiBikers
|
||||
compare VAR_MAP_SCENE_THREE_ISLAND, 4
|
||||
call_if_eq ThreeIsland_EventScript_SetAntiBikersMovementAfterBikers
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_HideAntiBikers:: @ 81677CB
|
||||
ThreeIsland_EventScript_HideAntiBikers::
|
||||
setflag FLAG_HIDE_THREE_ISLAND_ANTIBIKERS
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_SetAntiBikersMovementAfterBikers:: @ 81677CF
|
||||
ThreeIsland_EventScript_SetAntiBikersMovementAfterBikers::
|
||||
setobjectmovementtype LOCALID_ANTIBIKER1, MOVEMENT_TYPE_LOOK_AROUND
|
||||
setobjectmovementtype LOCALID_ANTIBIKER2, MOVEMENT_TYPE_LOOK_AROUND
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_Biker:: @ 81677D8
|
||||
ThreeIsland_EventScript_Biker::
|
||||
lock
|
||||
setvar VAR_TEMP_1, 2
|
||||
call ThreeIsland_EventScript_BikerArgumentScene
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_AntiBiker1:: @ 81677E5
|
||||
ThreeIsland_EventScript_AntiBiker1::
|
||||
lock
|
||||
goto_if_set FLAG_GOT_FULL_RESTORE_FROM_THREE_ISLAND_DEFENDER, ThreeIsland_EventScript_AntiBiker1GotFullRestore
|
||||
compare VAR_MAP_SCENE_THREE_ISLAND, 4
|
||||
@@ -45,14 +45,14 @@ ThreeIsland_EventScript_AntiBiker1:: @ 81677E5
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_AntiBiker1GotFullRestore:: @ 8167806
|
||||
ThreeIsland_EventScript_AntiBiker1GotFullRestore::
|
||||
applymovement LOCALID_ANTIBIKER1, Movement_FacePlayer
|
||||
waitmovement 0
|
||||
msgbox ThreeIsland_Text_YouveGotImpressiveMons
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_GiveFullRestore:: @ 816781A
|
||||
ThreeIsland_EventScript_GiveFullRestore::
|
||||
applymovement LOCALID_ANTIBIKER1, Movement_FacePlayer
|
||||
waitmovement 0
|
||||
msgbox ThreeIsland_Text_ThankYouOhYourMonGotHurt
|
||||
@@ -66,12 +66,12 @@ ThreeIsland_EventScript_GiveFullRestore:: @ 816781A
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_NoRoomForFullRestore:: @ 8167865
|
||||
ThreeIsland_EventScript_NoRoomForFullRestore::
|
||||
msgbox ThreeIsland_Text_OhYourBagIsFull
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BikerArgumentScene:: @ 816786F
|
||||
ThreeIsland_EventScript_BikerArgumentScene::
|
||||
compare VAR_TEMP_1, 1
|
||||
call_if_eq ThreeIsland_EventScript_PlayerFaceLeft
|
||||
compare VAR_TEMP_1, 2
|
||||
@@ -108,42 +108,42 @@ ThreeIsland_EventScript_BikerArgumentScene:: @ 816786F
|
||||
msgbox ThreeIsland_Text_WhosGonnaMakeMe
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PlayerFaceUp:: @ 8167931
|
||||
ThreeIsland_EventScript_PlayerFaceUp::
|
||||
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
@ Unused
|
||||
ThreeIsland_EventScript_PlayerFaceDown:: @ 816793C
|
||||
ThreeIsland_EventScript_PlayerFaceDown::
|
||||
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestDown
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PlayerFaceLeft:: @ 8167947
|
||||
ThreeIsland_EventScript_PlayerFaceLeft::
|
||||
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestLeft
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PlayerFaceRight:: @ 8167952
|
||||
ThreeIsland_EventScript_PlayerFaceRight::
|
||||
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PlayerFaceBiker:: @ 816795D
|
||||
ThreeIsland_EventScript_PlayerFaceBiker::
|
||||
getplayerxy VAR_0x8004, VAR_0x8005
|
||||
compare VAR_0x8004, 9
|
||||
goto_if_ge ThreeIsland_EventScript_PlayerFaceUp
|
||||
goto ThreeIsland_EventScript_PlayerFaceRight
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_PlayerFaceAntiBiker:: @ 8167973
|
||||
ThreeIsland_EventScript_PlayerFaceAntiBiker::
|
||||
getplayerxy VAR_0x8004, VAR_0x8005
|
||||
compare VAR_0x8004, 9
|
||||
goto_if_ge ThreeIsland_EventScript_PlayerFaceLeft
|
||||
goto ThreeIsland_EventScript_PlayerFaceUp
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_AntiBiker2:: @ 8167989
|
||||
ThreeIsland_EventScript_AntiBiker2::
|
||||
lock
|
||||
compare VAR_MAP_SCENE_THREE_ISLAND, 4
|
||||
goto_if_eq ThreeIsland_EventScript_AntiBiker2BikersGone
|
||||
@@ -152,14 +152,14 @@ ThreeIsland_EventScript_AntiBiker2:: @ 8167989
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_AntiBiker2BikersGone:: @ 81679A1
|
||||
ThreeIsland_EventScript_AntiBiker2BikersGone::
|
||||
applymovement LOCALID_ANTIBIKER2, Movement_FacePlayer
|
||||
waitmovement 0
|
||||
msgbox ThreeIsland_Text_LostelleWentOffTowardsBondBridge
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BikerBossIntroTrigger:: @ 81679B5
|
||||
ThreeIsland_EventScript_BikerBossIntroTrigger::
|
||||
lockall
|
||||
textcolor 0
|
||||
applymovement LOCALID_ANTIBIKER1, ThreeIsland_Movement_SpeakRight
|
||||
@@ -181,45 +181,45 @@ ThreeIsland_EventScript_BikerBossIntroTrigger:: @ 81679B5
|
||||
releaseall
|
||||
end
|
||||
|
||||
ThreeIsland_Movement_SpeakLeft:: @ 8167A19
|
||||
ThreeIsland_Movement_SpeakLeft::
|
||||
walk_in_place_left
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_SpeakRight:: @ 8167A1B
|
||||
ThreeIsland_Movement_SpeakRight::
|
||||
walk_in_place_right
|
||||
step_end
|
||||
|
||||
ThreeIsland_EventScript_BattleBikersTriggerLeft:: @ 8167A1D
|
||||
ThreeIsland_EventScript_BattleBikersTriggerLeft::
|
||||
lockall
|
||||
setvar VAR_TEMP_1, 0
|
||||
goto ThreeIsland_EventScript_BattleBikersScene
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BattleBikersTriggerMidLeft:: @ 8167A29
|
||||
ThreeIsland_EventScript_BattleBikersTriggerMidLeft::
|
||||
lockall
|
||||
setvar VAR_TEMP_1, 1
|
||||
goto ThreeIsland_EventScript_BattleBikersScene
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BattleBikersTriggerMid:: @ 8167A35
|
||||
ThreeIsland_EventScript_BattleBikersTriggerMid::
|
||||
lockall
|
||||
setvar VAR_TEMP_1, 2
|
||||
goto ThreeIsland_EventScript_BattleBikersScene
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BattleBikersTriggerMidRight:: @ 8167A41
|
||||
ThreeIsland_EventScript_BattleBikersTriggerMidRight::
|
||||
lockall
|
||||
setvar VAR_TEMP_1, 3
|
||||
goto ThreeIsland_EventScript_BattleBikersScene
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BattleBikersTriggerRight:: @ 8167A4D
|
||||
ThreeIsland_EventScript_BattleBikersTriggerRight::
|
||||
lockall
|
||||
setvar VAR_TEMP_1, 4
|
||||
goto ThreeIsland_EventScript_BattleBikersScene
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_BattleBikersScene:: @ 8167A59
|
||||
ThreeIsland_EventScript_BattleBikersScene::
|
||||
textcolor 0
|
||||
applymovement LOCALID_BIKER1, Movement_WalkInPlaceFastestDown
|
||||
waitmovement 0
|
||||
@@ -294,40 +294,40 @@ ThreeIsland_EventScript_BattleBikersScene:: @ 8167A59
|
||||
releaseall
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_PaxtonApproachLeft:: @ 8167BC6
|
||||
ThreeIsland_EventScript_PaxtonApproachLeft::
|
||||
applymovement LOCALID_BIKER3, Movement_WalkInPlaceFastestDown
|
||||
applymovement LOCALID_PAXTON, ThreeIsland_Movement_PaxtonApproachLeft
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PaxtonApproachMidLeft:: @ 8167BD8
|
||||
ThreeIsland_EventScript_PaxtonApproachMidLeft::
|
||||
applymovement LOCALID_BIKER3, Movement_WalkInPlaceFastestDown
|
||||
applymovement LOCALID_PAXTON, ThreeIsland_Movement_PaxtonApproachMidLeft
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PaxtonApproachMid:: @ 8167BEA
|
||||
ThreeIsland_EventScript_PaxtonApproachMid::
|
||||
applymovement LOCALID_BIKER3, Movement_WalkInPlaceFastestDown
|
||||
applymovement LOCALID_PAXTON, ThreeIsland_Movement_PaxtonApproachMid
|
||||
applymovement OBJ_EVENT_ID_PLAYER, ThreeIsland_Movement_PlayerFacePaxton
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PaxtonApproachMidRight:: @ 8167C03
|
||||
ThreeIsland_EventScript_PaxtonApproachMidRight::
|
||||
applymovement LOCALID_BIKER3, Movement_WalkInPlaceFastestDown
|
||||
applymovement OBJ_EVENT_ID_PLAYER, ThreeIsland_Movement_PlayerFacePaxton
|
||||
applymovement LOCALID_PAXTON, ThreeIsland_Movement_PaxtonApproachMidRight
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_PaxtonApproachRight:: @ 8167C1C
|
||||
ThreeIsland_EventScript_PaxtonApproachRight::
|
||||
applymovement LOCALID_BIKER3, Movement_WalkInPlaceFastestDown
|
||||
applymovement OBJ_EVENT_ID_PLAYER, ThreeIsland_Movement_PlayerFacePaxton
|
||||
applymovement LOCALID_PAXTON, ThreeIsland_Movement_PaxtonApproachRight
|
||||
waitmovement 0
|
||||
return
|
||||
|
||||
ThreeIsland_EventScript_LeaveBikersAlone:: @ 8167C35
|
||||
ThreeIsland_EventScript_LeaveBikersAlone::
|
||||
msgbox ThreeIsland_Text_ThatsSmart
|
||||
closemessage
|
||||
applymovement OBJ_EVENT_ID_PLAYER, ThreeIsland_Movement_PlayerLeaveBikers
|
||||
@@ -338,53 +338,53 @@ ThreeIsland_EventScript_LeaveBikersAlone:: @ 8167C35
|
||||
releaseall
|
||||
end
|
||||
|
||||
ThreeIsland_Movement_PlayerLeaveBikers:: @ 8167C55
|
||||
ThreeIsland_Movement_PlayerLeaveBikers::
|
||||
walk_down
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_BikerApproach:: @ 8167C57
|
||||
ThreeIsland_Movement_BikerApproach::
|
||||
walk_down
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_Biker1ReturnToPack:: @ 8167C59
|
||||
ThreeIsland_Movement_Biker1ReturnToPack::
|
||||
walk_up
|
||||
walk_in_place_fastest_left
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_BikerSpeak:: @ 8167C5C
|
||||
ThreeIsland_Movement_BikerSpeak::
|
||||
walk_in_place_down
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_PaxtonApproachLeft:: @ 8167C5E
|
||||
ThreeIsland_Movement_PaxtonApproachLeft::
|
||||
walk_down
|
||||
walk_left
|
||||
walk_in_place_fastest_down
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_PaxtonApproachMidLeft:: @ 8167C62
|
||||
ThreeIsland_Movement_PaxtonApproachMidLeft::
|
||||
walk_down
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_PaxtonApproachMid:: @ 8167C64
|
||||
ThreeIsland_Movement_PaxtonApproachMid::
|
||||
walk_down
|
||||
walk_down
|
||||
walk_in_place_fastest_right
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_PlayerFacePaxton:: @ 8167C68
|
||||
ThreeIsland_Movement_PlayerFacePaxton::
|
||||
delay_16
|
||||
delay_16
|
||||
walk_in_place_fastest_left
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_PaxtonApproachMidRight:: @ 8167C6C
|
||||
ThreeIsland_Movement_PaxtonApproachMidRight::
|
||||
walk_down
|
||||
walk_down
|
||||
walk_right
|
||||
walk_in_place_fastest_right
|
||||
step_end
|
||||
|
||||
ThreeIsland_Movement_PaxtonApproachRight:: @ 8167C71
|
||||
ThreeIsland_Movement_PaxtonApproachRight::
|
||||
walk_down
|
||||
walk_down
|
||||
walk_right
|
||||
@@ -392,15 +392,15 @@ ThreeIsland_Movement_PaxtonApproachRight:: @ 8167C71
|
||||
walk_in_place_fastest_right
|
||||
step_end
|
||||
|
||||
ThreeIsland_EventScript_Woman:: @ 8167C77
|
||||
ThreeIsland_EventScript_Woman::
|
||||
msgbox ThreeIsland_Text_WouldntWantToSeeBikersHereAgain, MSGBOX_NPC
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_LittleBoy:: @ 8167C80
|
||||
ThreeIsland_EventScript_LittleBoy::
|
||||
msgbox ThreeIsland_Text_WhenDodouEvolvesGoingToPlayGame, MSGBOX_NPC
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_Doduo:: @ 8167C89
|
||||
ThreeIsland_EventScript_Doduo::
|
||||
lock
|
||||
faceplayer
|
||||
waitse
|
||||
@@ -410,10 +410,10 @@ ThreeIsland_EventScript_Doduo:: @ 8167C89
|
||||
release
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_IslandSign:: @ 8167C9C
|
||||
ThreeIsland_EventScript_IslandSign::
|
||||
msgbox ThreeIsland_Text_IslandSign, MSGBOX_SIGN
|
||||
end
|
||||
|
||||
ThreeIsland_EventScript_Biker6:: @ 8167CA5
|
||||
ThreeIsland_EventScript_Biker6::
|
||||
msgbox ThreeIsland_Text_IslandBelongsToUs, MSGBOX_NPC
|
||||
end
|
||||
|
||||
@@ -1,50 +1,50 @@
|
||||
ThreeIsland_Text_IslandSign:: @ 8182061
|
||||
ThreeIsland_Text_IslandSign::
|
||||
.string "THREE ISLAND\n"
|
||||
.string "Kin Island of Family Bonding$"
|
||||
|
||||
ThreeIsland_Text_IslandBelongsToUs:: @ 818208B
|
||||
ThreeIsland_Text_IslandBelongsToUs::
|
||||
.string "Hyahoo!\p"
|
||||
.string "From this day on, this island\n"
|
||||
.string "belongs to us!$"
|
||||
|
||||
ThreeIsland_Text_GoBackToKanto:: @ 81820C0
|
||||
ThreeIsland_Text_GoBackToKanto::
|
||||
.string "We don't need you people bringing\n"
|
||||
.string "your noise and trouble here!\p"
|
||||
.string "We're asking you to go back to\n"
|
||||
.string "KANTO!$"
|
||||
|
||||
ThreeIsland_Text_BossIsOnHisWay:: @ 8182125
|
||||
ThreeIsland_Text_BossIsOnHisWay::
|
||||
.string "Hey, go cry somewhere else.\n"
|
||||
.string "Our boss is on his way.\p"
|
||||
.string "When he gets here, we'll give you\n"
|
||||
.string "a k-rad motorbike show you won't\l"
|
||||
.string "soon forget!$"
|
||||
|
||||
ThreeIsland_Text_GetOffIslandNow:: @ 81821A9
|
||||
ThreeIsland_Text_GetOffIslandNow::
|
||||
.string "W-what!? Not on your life!\n"
|
||||
.string "Get off the island now!$"
|
||||
|
||||
ThreeIsland_Text_WhosGonnaMakeMe:: @ 81821DC
|
||||
ThreeIsland_Text_WhosGonnaMakeMe::
|
||||
.string "Who's gonna make me?$"
|
||||
|
||||
ThreeIsland_Text_AreYouBossGoBackToKanto:: @ 81821F1
|
||||
ThreeIsland_Text_AreYouBossGoBackToKanto::
|
||||
.string "Are you the boss?\n"
|
||||
.string "Go back to KANTO right now!$"
|
||||
|
||||
ThreeIsland_Text_JustGotHerePal:: @ 818221F
|
||||
ThreeIsland_Text_JustGotHerePal::
|
||||
.string "Hah?\p"
|
||||
.string "I just got here, pal.\p"
|
||||
.string "What's with the hostile attitude?\n"
|
||||
.string "It's mighty cold of you!$"
|
||||
|
||||
ThreeIsland_Text_FollowersRaisingHavoc:: @ 8182275
|
||||
ThreeIsland_Text_FollowersRaisingHavoc::
|
||||
.string "Your gang of followers have been\n"
|
||||
.string "raising havoc on their bikes.\p"
|
||||
.string "Do you have any idea how much\n"
|
||||
.string "trouble they've caused us on the\l"
|
||||
.string "island?$"
|
||||
|
||||
ThreeIsland_Text_OughtToBeThankingUs:: @ 81822FB
|
||||
ThreeIsland_Text_OughtToBeThankingUs::
|
||||
.string "No, man, I don't get it at all.\p"
|
||||
.string "Look at this place.\n"
|
||||
.string "What do you do for entertainment?\p"
|
||||
@@ -53,57 +53,57 @@ ThreeIsland_Text_OughtToBeThankingUs:: @ 81822FB
|
||||
.string "But hey, if you insist, you can try\n"
|
||||
.string "making us leave.$"
|
||||
|
||||
ThreeIsland_Text_YouCowardsToughInPack:: @ 81823C7
|
||||
ThreeIsland_Text_YouCowardsToughInPack::
|
||||
.string "Grr… You cowards…\n"
|
||||
.string "So tough in a pack…$"
|
||||
|
||||
ThreeIsland_Text_WannaMakeSomethingOfYourStaring:: @ 81823ED
|
||||
ThreeIsland_Text_WannaMakeSomethingOfYourStaring::
|
||||
.string "You, what are you staring at?\n"
|
||||
.string "Don't you know it's not polite?\p"
|
||||
.string "You wanna make something of it\n"
|
||||
.string "or what?$"
|
||||
|
||||
ThreeIsland_Text_ThatsSmart:: @ 8182453
|
||||
ThreeIsland_Text_ThatsSmart::
|
||||
.string "That's smart.\n"
|
||||
.string "Keep your nose out of this.$"
|
||||
|
||||
ThreeIsland_Text_Biker1Intro:: @ 818247D
|
||||
ThreeIsland_Text_Biker1Intro::
|
||||
.string "Heh, I like your guts.\n"
|
||||
.string "You'll be losing money to me, but…$"
|
||||
|
||||
ThreeIsland_Text_Biker1Defeat:: @ 81824B7
|
||||
ThreeIsland_Text_Biker1Defeat::
|
||||
.string "Wha…\n"
|
||||
.string "What is this kid?!$"
|
||||
|
||||
ThreeIsland_Text_Biker1PostBattle:: @ 81824CF
|
||||
ThreeIsland_Text_Biker1PostBattle::
|
||||
.string "Aww, man…\n"
|
||||
.string "Don't you dare laugh!$"
|
||||
|
||||
ThreeIsland_Text_Biker2Intro:: @ 81824EF
|
||||
ThreeIsland_Text_Biker2Intro::
|
||||
.string "Aren't you from KANTO?\n"
|
||||
.string "You should be on our side!$"
|
||||
|
||||
ThreeIsland_Text_Biker2Defeat:: @ 8182521
|
||||
ThreeIsland_Text_Biker2Defeat::
|
||||
.string "Stop fooling around!$"
|
||||
|
||||
ThreeIsland_Text_Biker2PostBattle:: @ 8182536
|
||||
ThreeIsland_Text_Biker2PostBattle::
|
||||
.string "What's the matter with you,\n"
|
||||
.string "getting all hot like that?\p"
|
||||
.string "Totally uncool, man!$"
|
||||
|
||||
ThreeIsland_Text_Biker3Intro:: @ 8182582
|
||||
ThreeIsland_Text_Biker3Intro::
|
||||
.string "We invited the boss out here,\n"
|
||||
.string "but you had to mess it up!\p"
|
||||
.string "You embarrassed us, man!$"
|
||||
|
||||
ThreeIsland_Text_Biker3Defeat:: @ 81825D4
|
||||
ThreeIsland_Text_Biker3Defeat::
|
||||
.string "… … … … … …$"
|
||||
|
||||
ThreeIsland_Text_Biker3PostBattle:: @ 81825E2
|
||||
ThreeIsland_Text_Biker3PostBattle::
|
||||
.string "Boss, I'm telling you, you've gotta\n"
|
||||
.string "do something about this kid!$"
|
||||
|
||||
ThreeIsland_Text_PaxtonIntro:: @ 8182623
|
||||
ThreeIsland_Text_PaxtonIntro::
|
||||
.string "I've been watching you, and I'd say\n"
|
||||
.string "you've done enough.\p"
|
||||
.string "What are you, their friend or\n"
|
||||
@@ -111,35 +111,35 @@ ThreeIsland_Text_PaxtonIntro:: @ 8182623
|
||||
.string "Then I guess you'll be battling me\n"
|
||||
.string "in their place.$"
|
||||
|
||||
ThreeIsland_Text_PaxtonDefeat:: @ 81826B7
|
||||
ThreeIsland_Text_PaxtonDefeat::
|
||||
.string "All right, enough!\n"
|
||||
.string "We'll leave like you wanted!\p"
|
||||
.string "We'll be happy to see the last of\n"
|
||||
.string "this boring island!$"
|
||||
|
||||
ThreeIsland_Text_PaxtonPostBattle:: @ 818271D
|
||||
ThreeIsland_Text_PaxtonPostBattle::
|
||||
.string "Humph! Yeah, go right on hanging\n"
|
||||
.string "around with these hayseeds!$"
|
||||
|
||||
ThreeIsland_Text_ThankYouOhYourMonGotHurt:: @ 818275A
|
||||
ThreeIsland_Text_ThankYouOhYourMonGotHurt::
|
||||
.string "Thank you! Those goons were\n"
|
||||
.string "nothing but bad trouble.\p"
|
||||
.string "Oh, look, your POKéMON got hurt\n"
|
||||
.string "on my account.$"
|
||||
|
||||
ThreeIsland_Text_GivenFullRestore:: @ 81827BE
|
||||
ThreeIsland_Text_GivenFullRestore::
|
||||
.string "{PLAYER} was given\n"
|
||||
.string "a FULL RESTORE.$"
|
||||
|
||||
ThreeIsland_Text_OhYourBagIsFull:: @ 81827DB
|
||||
ThreeIsland_Text_OhYourBagIsFull::
|
||||
.string "Oh?\n"
|
||||
.string "Your BAG is full.$"
|
||||
|
||||
ThreeIsland_Text_YouveGotImpressiveMons:: @ 81827F1
|
||||
ThreeIsland_Text_YouveGotImpressiveMons::
|
||||
.string "You've got seriously impressive\n"
|
||||
.string "POKéMON with you.$"
|
||||
|
||||
ThreeIsland_Text_LostelleWentOffTowardsBondBridge:: @ 8182823
|
||||
ThreeIsland_Text_LostelleWentOffTowardsBondBridge::
|
||||
.string "It'd be fantastic if someone as\n"
|
||||
.string "strong as you lived here.\p"
|
||||
.string "I hope you'll at least stay here\n"
|
||||
@@ -149,19 +149,19 @@ ThreeIsland_Text_LostelleWentOffTowardsBondBridge:: @ 8182823
|
||||
.string "LOSTELLE went off towards BOND\n"
|
||||
.string "BRIDGE a while ago.$"
|
||||
|
||||
ThreeIsland_Text_WouldntWantToSeeBikersHereAgain:: @ 81828EB
|
||||
ThreeIsland_Text_WouldntWantToSeeBikersHereAgain::
|
||||
.string "THREE ISLAND is actually the most\n"
|
||||
.string "populous of the islands here.\p"
|
||||
.string "Still, it could be less sleepy.\p"
|
||||
.string "But I wouldn't want to see goons\n"
|
||||
.string "like those BIKERS here again.$"
|
||||
|
||||
ThreeIsland_Text_WhenDodouEvolvesGoingToPlayGame:: @ 818298A
|
||||
ThreeIsland_Text_WhenDodouEvolvesGoingToPlayGame::
|
||||
.string "I'm going to train my DODUO in the\n"
|
||||
.string "BERRY FOREST.\p"
|
||||
.string "When it evolves, I'm going to play\n"
|
||||
.string "a game on TWO ISLAND.$"
|
||||
|
||||
ThreeIsland_Text_Doduo:: @ 81829F4
|
||||
ThreeIsland_Text_Doduo::
|
||||
.string "DODUO: Gigiih!$"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user