You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Use NUM_BATTLE_STATS instead of raw numbers
This commit is contained in:
@ -4878,7 +4878,7 @@ CalcPlayerStats:
|
|||||||
ld de, wPlayerStats
|
ld de, wPlayerStats
|
||||||
ld bc, wBattleMonAttack
|
ld bc, wBattleMonAttack
|
||||||
|
|
||||||
ld a, 5
|
ld a, NUM_BATTLE_STATS
|
||||||
call CalcBattleStats
|
call CalcBattleStats
|
||||||
|
|
||||||
ld hl, BadgeStatBoosts
|
ld hl, BadgeStatBoosts
|
||||||
@ -4899,7 +4899,7 @@ CalcEnemyStats:
|
|||||||
ld de, wEnemyStats
|
ld de, wEnemyStats
|
||||||
ld bc, wEnemyMonAttack
|
ld bc, wEnemyMonAttack
|
||||||
|
|
||||||
ld a, 5
|
ld a, NUM_BATTLE_STATS
|
||||||
call CalcBattleStats
|
call CalcBattleStats
|
||||||
|
|
||||||
call BattleCommand_SwitchTurn
|
call BattleCommand_SwitchTurn
|
||||||
|
Reference in New Issue
Block a user