diff options
Diffstat (limited to 'engine/menu/status_screen.asm')
-rwxr-xr-x | engine/menu/status_screen.asm | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/engine/menu/status_screen.asm b/engine/menu/status_screen.asm index ef94f13c..2db9a908 100755 --- a/engine/menu/status_screen.asm +++ b/engine/menu/status_screen.asm @@ -205,13 +205,13 @@ NamePointers2: dw wDayCareMonName Type1Text: - db "TYPE1/", $4e + db "TYP1/", $4e Type2Text: - db "TYPE2/", $4e + db "TYP2/", $4e IDNoText: - db $73, "№/", $4e + db "″№/", $4e OTText: db "OT/" @@ -289,10 +289,10 @@ PrintStat: ret StatsText: - db "ATTACK" - next "DEFENSE" - next "SPEED" - next "SPECIAL@" + db "ANGR" + next "VERT" + next "INIT" + next "SPEZ@" StatusScreen2: ld a, [hTilesetType] @@ -328,8 +328,8 @@ StatusScreen2: ld b, a ; Number of moves ? coord hl, 11, 10 ld de, SCREEN_WIDTH * 2 - ld a, $72 ; special P tile id - call StatusScreen_PrintPP ; Print "PP" + ld a, $80 ; special P tile id + call StatusScreen_PrintAP ; Print "AP" ld a, b and a jr z, .InitPP @@ -463,7 +463,7 @@ CalcExpToLevelUp: ret StatusScreenExpText: - db "EXP POINTS" + db "EP-PUNKTE" next "LEVEL UP@" StatusScreen_ClearName: @@ -479,3 +479,13 @@ StatusScreen_PrintPP: dec c jr nz, StatusScreen_PrintPP ret + +StatusScreen_PrintAP: ; 12cd5 (4:6cd5) + ld a, "A" + ld [hli],a + ld a, "P" + ldd [hl], a + add hl, de + dec c + jr nz, StatusScreen_PrintAP + ret
\ No newline at end of file |