diff options
Diffstat (limited to 'engine/items/items.asm')
-rwxr-xr-x | engine/items/items.asm | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/engine/items/items.asm b/engine/items/items.asm index f46261b6..65115fed 100755 --- a/engine/items/items.asm +++ b/engine/items/items.asm @@ -825,8 +825,8 @@ ItemUseMedicine: ld [wActionResultOrTookBattleTurn],a ; item use failed jp PrintText .emptyPartyText - text "You don't have" - line "any #MON!" + text "Du besitzt noch" + line "keine #MON!" prompt .notUsingSoftboiled call DisplayPartyMenu @@ -1306,9 +1306,9 @@ ItemUseMedicine: jr nz,.statNameInnerLoop jr .statNameLoop .gotStatName - ld de,wcf4b + ld de,wcf50 ld bc,10 - call CopyData ; copy the stat's name to wcf4b + call CopyData ; copy the stat's name to wcf50 ld a,SFX_HEAL_AILMENT call PlaySound ld hl,VitaminStatRoseText @@ -1425,11 +1425,11 @@ VitaminNoEffectText: db "@" VitaminText: - db "HEALTH@" - db "ATTACK@" - db "DEFENSE@" - db "SPEED@" - db "SPECIAL@" + db "GESU@" + db "ANGR@" + db "VERT@" + db "INIT@" + db "SPEZ@" ItemUseBait: ld hl,ThrewBaitText @@ -2035,7 +2035,7 @@ ItemUsePPRestore: ld a,[hl] ld [wd11e],a call GetMoveName - call CopyStringToCF4B ; copy name to wcf4b + call CopyStringToCF50 ; copy name to wcf50 pop hl ld a,[wPPRestoreItem] cp a,ETHER @@ -2212,7 +2212,7 @@ ItemUseTMHM: ld a,[wd11e] ld [wMoveNum],a call GetMoveName - call CopyStringToCF4B ; copy name to wcf4b + call CopyStringToCF50 ; copy name to wcf50 pop af ld hl,BootedUpTMText jr nc,.printBootedUpMachineText @@ -2221,8 +2221,8 @@ ItemUseTMHM: call PrintText ld hl,TeachMachineMoveText call PrintText - coord hl, 14, 7 - lb bc, 8, 15 + coord hl, 13, 7 + lb bc, 8, 14 ld a,TWO_OPTION_MENU ld [wTextBoxID],a call DisplayTextBoxID ; yes/no menu @@ -2238,7 +2238,7 @@ ItemUseTMHM: ld a,[wcf91] push af .chooseMon - ld hl,wcf4b + ld hl,wcf50 ld de,wTempMoveNameBuffer ld bc,14 call CopyData ; save the move name because DisplayPartyMenu will overwrite it @@ -2249,7 +2249,7 @@ ItemUseTMHM: call DisplayPartyMenu push af ld hl,wTempMoveNameBuffer - ld de,wcf4b + ld de,wcf50 ld bc,14 call CopyData pop af @@ -2604,11 +2604,11 @@ TossItem_: ld a,[wcf91] ld [wd11e],a call GetItemName - call CopyStringToCF4B ; copy name to wcf4b + call CopyStringToCF50 ; copy name to wcf50 ld hl,IsItOKToTossItemText call PrintText - coord hl, 14, 7 - lb bc, 8, 15 + coord hl, 13, 7 + lb bc, 8, 14 ld a,TWO_OPTION_MENU ld [wTextBoxID],a call DisplayTextBoxID ; yes/no menu @@ -2624,7 +2624,7 @@ TossItem_: ld a,[wcf91] ld [wd11e],a call GetItemName - call CopyStringToCF4B ; copy name to wcf4b + call CopyStringToCF50 ; copy name to wcf50 ld hl,ThrewAwayItemText call PrintText pop hl |