diff options
Diffstat (limited to 'engine/cable_club.asm')
-rwxr-xr-x | engine/cable_club.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engine/cable_club.asm b/engine/cable_club.asm index 474dbd11..5037a586 100755 --- a/engine/cable_club.asm +++ b/engine/cable_club.asm @@ -11,7 +11,7 @@ CableClub_DoBattleOrTrade: call LoadTrainerInfoTextBoxTiles coord hl, 3, 8 ld b, 2 - ld c, 12 + ld c, 13 call CableClub_TextBoxBorder coord hl, 4, 10 ld de, PleaseWaitString @@ -290,7 +290,7 @@ CableClub_DoBattleOrTradeAgain: jr CallCurrentTradeCenterFunction PleaseWaitString: - db "PLEASE WAIT!@" + db "BITTE WARTEN!@" CallCurrentTradeCenterFunction: ld hl, TradeCenterPointerTable @@ -533,7 +533,7 @@ TradeCenter_SelectMon: ld [wTradeCenterPointerTableIndex], a jp CallCurrentTradeCenterFunction .statsTrade - db "STATS TRADE@" + db "STATUS TAUSCH@" .selectedCancelMenuItem ld a, [wCurrentMenuItem] ld b, a @@ -596,20 +596,20 @@ ReturnToCableClubRoom: ret TradeCenter_DrawCancelBox: - coord hl, 11, 15 + coord hl, 8, 15 ld a, $7e - ld bc, 2 * SCREEN_WIDTH + 9 + ld bc, 2 * SCREEN_WIDTH + 12 call FillMemory coord hl, 0, 15 ld b, 1 - ld c, 9 + ld c, 12 call CableClub_TextBoxBorder coord hl, 2, 16 ld de, CancelTextString jp PlaceString CancelTextString: - db "CANCEL@" + db "ABBRECHEN@" TradeCenter_PlaceSelectedEnemyMonMenuCursor: ld a, [wSerialSyncAndExchangeNybbleReceiveData] @@ -876,11 +876,11 @@ WillBeTradedText: db "@" TradeCompleted: - db "Trade completed!@" + db "TAUSCH VOLLZOGEN!@" TradeCanceled: - db "Too bad! The trade" - next "was canceled!@" + db "Schade! Der tausch" + next "wurde abgebrochen!@" TradeCenterPointerTable: dw TradeCenter_SelectMon |