Skip to content

Commit e3d8530

Browse files
committed
New Battle HUD
1 parent 64eaa34 commit e3d8530

7 files changed

+10
-10
lines changed

engine/battle/core.asm

+3-3
Original file line numberDiff line numberDiff line change
@@ -8086,7 +8086,7 @@ PlaceExpBar:
80868086
sub $8
80878087
jr c, .next
80888088
ld b, a
8089-
ld a, $6a ; full bar
8089+
ld a, $5d ; full bar
80908090
ld [hld], a
80918091
dec c
80928092
jr z, .finish
@@ -8099,11 +8099,11 @@ PlaceExpBar:
80998099
jr .skip
81008100

81018101
.loop2
8102-
ld a, $62 ; empty bar
8102+
ld a, $55 ; empty bar
81038103

81048104
.skip
81058105
ld [hld], a
8106-
ld a, $62 ; empty bar
8106+
ld a, $55 ; empty bar
81078107
dec c
81088108
jr nz, .loop2
81098109

engine/battle/trainer_huds.asm

+7-7
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ DrawPlayerPartyIconHUDBorder:
125125
jr PlaceHUDBorderTiles
126126

127127
.tiles
128-
db $73 ; right side
129-
db $5c ; bottom right
128+
db $7c ; right side
129+
db $7c ; bottom right
130130
db $6f ; bottom left
131131
db $76 ; bottom side
132132
.tiles_end
@@ -147,14 +147,14 @@ DrawEnemyHUDBorder:
147147
call CheckCaughtMon
148148
ret z
149149
hlcoord 1, 1
150-
ld [hl], $5d
150+
ld [hl], $74
151151
ret
152152

153153
.tiles
154-
db $6d ; left side
155-
db $74 ; bottom left
156-
db $78 ; bottom right
157-
db $76 ; bottom side
154+
db $7c ; left side
155+
db $7c ; bottom left
156+
db $7c ; bottom right
157+
db $7c ; bottom side
158158
.tiles_end
159159

160160
PlaceHUDBorderTiles:

gfx/battle/balls.png

133 Bytes
Loading

gfx/battle/enemy_hp_bar_border.png

107 Bytes
Loading

gfx/battle/expbar.png

72 Bytes
Loading

gfx/battle/hp_exp_bar_border.png

109 Bytes
Loading

gfx/font/font_battle_extra.png

319 Bytes
Loading

0 commit comments

Comments
 (0)