Browse Source

Merge pull request #564 from shangfengh/new

docs: 📝 edit constants.h
tags/v0.1.0
shangfengh GitHub 2 years ago
parent
commit
9142df61f9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      CAPI/cpp/API/include/constants.h
  2. +1
    -1
      CAPI/python/PyAPI/constants.py

+ 1
- 1
CAPI/cpp/API/include/constants.h View File

@@ -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;


+ 1
- 1
CAPI/python/PyAPI/constants.py View File

@@ -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


Loading…
Cancel
Save