diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-16 09:40:30 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-16 09:40:30 -0400 |
commit | 58f10893707004fe353422e19f3d1f2b89e60a6c (patch) | |
tree | 69486e888ed37f92af44738c3599943025af9bb5 /engine/battle/core.asm | |
parent | 8c83ebe9663ef317c8bd3b74339047bda29be1a4 (diff) |
Define constants for default trainer DVs
Diffstat (limited to 'engine/battle/core.asm')
-rwxr-xr-x | engine/battle/core.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index c1eecc73..b5c37f1e 100755 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -6104,8 +6104,8 @@ LoadEnemyMonData: ld a, [wIsInBattle] cp $2 ; is it a trainer battle? ; fixed DVs for trainer mon - ld a, $98 - ld b, $88 + ld a, ATKDEFDV_TRAINER + ld b, SPDSPCDV_TRAINER jr z, .storeDVs ; random DVs for wild mon call BattleRandom |