diff --git a/CAPI/cpp/API/include/constants.h b/CAPI/cpp/API/include/constants.h index f67555a..f2689bf 100644 --- a/CAPI/cpp/API/include/constants.h +++ b/CAPI/cpp/API/include/constants.h @@ -368,7 +368,7 @@ namespace Constants struct JumpyDumpty { SCCI double BulletBombRange = basicBulletBombRange / 2; - SCCI double BulletAttackRange = basicRemoteAttackRange * 2; + SCCI double BulletAttackRange = basicAttackShortRange * 16 / 22; SCCI int ap = (int)(basicApOfTricker * 0.6); SCCI int Speed = basicBulletMoveSpeed * 43 / 37; SCCI bool IsRemoteAttack = false; diff --git a/CAPI/python/PyAPI/constants.py b/CAPI/python/PyAPI/constants.py index 2b33365..ddd7cb2 100644 --- a/CAPI/python/PyAPI/constants.py +++ b/CAPI/python/PyAPI/constants.py @@ -349,7 +349,7 @@ class BombBomb: class JumpyDumpty: BulletBombRange = Constants.basicBulletBombRange // 2 - BulletAttackRange = Constants.basicRemoteAttackRange * 2 + BulletAttackRange = Constants.basicAttackShortRange * 16 / 22 ap = (int)(Constants.basicApOfTricker * 0.6) Speed = Constants.basicBulletMoveSpeed * 43 // 37 IsRemoteAttack = False