mirror of
https://github.com/pret/pokegold.git
synced 2026-08-09 19:57:26 -05:00
Replace hardcoded numbers for stats (pret/pokecrystal#1073)
This commit is contained in:
parent
e86e45ee58
commit
caffcdd9f7
|
|
@ -4126,14 +4126,14 @@ RaiseStat:
|
|||
add hl, bc
|
||||
ld b, [hl]
|
||||
inc b
|
||||
ld a, $d
|
||||
ld a, MAX_STAT_LEVEL
|
||||
cp b
|
||||
jp c, .cant_raise_stat
|
||||
ld a, [wLoweredStat]
|
||||
and $f0
|
||||
jr z, .got_num_stages
|
||||
inc b
|
||||
ld a, $d
|
||||
ld a, MAX_STAT_LEVEL
|
||||
cp b
|
||||
jr nc, .got_num_stages
|
||||
ld b, a
|
||||
|
|
@ -4141,7 +4141,7 @@ RaiseStat:
|
|||
ld [hl], b
|
||||
push hl
|
||||
ld a, c
|
||||
cp $5
|
||||
cp ACCURACY
|
||||
jr nc, .done_calcing_stats
|
||||
ld hl, wBattleMonStats + 1
|
||||
ld de, wPlayerStats
|
||||
|
|
@ -4647,7 +4647,7 @@ LowerStat:
|
|||
.got_num_stages
|
||||
ld [hl], b
|
||||
ld a, c
|
||||
cp 5
|
||||
cp ACCURACY
|
||||
jr nc, .accuracy_evasion
|
||||
|
||||
push hl
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user