mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
GoldenrodCity.asm: label UnknownText, MovementData
This commit is contained in:
parent
82aea0f71e
commit
f1187dc860
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user