#641 fixes and additions. (#646)

Name a lot of text labels according to our conventions
This commit is contained in:
mid-kid
2019-10-20 22:24:17 +00:00
committed by Rangi
parent 3fc2ba41f7
commit e3e0bcd653
203 changed files with 4077 additions and 4598 deletions

View File

@@ -17,14 +17,13 @@ InitDisplayForHallOfFame:
ldh [hSCY], a
ldh [hSCX], a
call EnableLCD
ld hl, .SavingRecordDontTurnOff
ld hl, .SavingRecordText
call PrintText
call WaitBGMap2
call SetPalettes
ret
.SavingRecordDontTurnOff:
; SAVING RECORD… DON'T TURN OFF!
.SavingRecordText:
text_far _SavingRecordText
text_end

View File

@@ -1170,11 +1170,11 @@ TradeAnim_SentToOTText:
ld a, [wLinkMode]
cp LINK_TIMECAPSULE
jr z, .time_capsule
ld hl, .Text_MonName
ld hl, .MonNameSentToText
call PrintText
ld c, 189
call DelayFrames
ld hl, .Text_WasSentTo
ld hl, .MonWasSentToText
call PrintText
call TradeAnim_Wait80Frames
ld c, 128
@@ -1183,40 +1183,36 @@ TradeAnim_SentToOTText:
ret
.time_capsule
ld hl, .Text_WasSentTo
ld hl, .MonWasSentToText
call PrintText
call TradeAnim_Wait80Frames
call TradeAnim_AdvanceScriptPointer
ret
.Text_WasSentTo:
; was sent to @ .
text_far _TradingText1
.MonWasSentToText:
text_far _MonWasSentToText
text_end
.Text_MonName:
;
text_far _TradingText2
.MonNameSentToText:
text_far _MonNameSentToText
text_end
TradeAnim_OTBidsFarewell:
ld hl, .Text_BidsFarewellToMon
ld hl, .BidsFarewellToMonText
call PrintText
call TradeAnim_Wait80Frames
ld hl, .Text_MonName
ld hl, .MonNameBidsFarewellText
call PrintText
call TradeAnim_Wait80Frames
call TradeAnim_AdvanceScriptPointer
ret
.Text_BidsFarewellToMon:
; bids farewell to
text_far _TradingText3
.BidsFarewellToMonText:
text_far _BidsFarewellToMonText
text_end
.Text_MonName:
; .
text_far _TradingText4
.MonNameBidsFarewellText:
text_far _MonNameBidsFarewellText
text_end
TradeAnim_TakeCareOfText:
@@ -1226,22 +1222,21 @@ TradeAnim_TakeCareOfText:
ld a, " "
call ByteFill
call WaitBGMap
ld hl, .Text_TakeGoodCareOfMon
ld hl, .TakeGoodCareOfMonText
call PrintText
call TradeAnim_Wait80Frames
call TradeAnim_AdvanceScriptPointer
ret
.Text_TakeGoodCareOfMon:
; Take good care of @ .
text_far _TradingText5
.TakeGoodCareOfMonText:
text_far _TakeGoodCareOfMonText
text_end
TradeAnim_OTSendsText1:
ld hl, .Text_ForYourMon
ld hl, .ForYourMonSendsText
call PrintText
call TradeAnim_Wait80Frames
ld hl, .Text_OTSends
ld hl, .OTSendsText
call PrintText
call TradeAnim_Wait80Frames
ld c, 14
@@ -1249,21 +1244,19 @@ TradeAnim_OTSendsText1:
call TradeAnim_AdvanceScriptPointer
ret
.Text_ForYourMon:
; For @ 's @ ,
text_far _TradingText6
.ForYourMonSendsText:
text_far _ForYourMonSendsText
text_end
.Text_OTSends:
; sends @ .
text_far _TradingText7
.OTSendsText:
text_far _OTSendsText
text_end
TradeAnim_OTSendsText2:
ld hl, .Text_WillTrade
ld hl, .WillTradeText
call PrintText
call TradeAnim_Wait80Frames
ld hl, .Text_ForYourMon
ld hl, .ForYourMonWillTradeText
call PrintText
call TradeAnim_Wait80Frames
ld c, 14
@@ -1271,14 +1264,12 @@ TradeAnim_OTSendsText2:
call TradeAnim_AdvanceScriptPointer
ret
.Text_WillTrade:
; will trade @ @
text_far _TradingText8
.WillTradeText:
text_far _WillTradeText
text_end
.Text_ForYourMon:
; for @ 's @ .
text_far _TradingText9
.ForYourMonWillTradeText:
text_far _ForYourMonWillTradeText
text_end
TradeAnim_Wait80Frames: