(self, extraMultipliers=None, ignoreAfflictors=())
| 72 | return maxVelocity |
| 73 | |
| 74 | def getSigRadius(self, extraMultipliers=None, ignoreAfflictors=()): |
| 75 | if self.isFit: |
| 76 | if extraMultipliers or ignoreAfflictors: |
| 77 | sigRadius = self.item.ship.getModifiedItemAttrExtended( |
| 78 | 'signatureRadius', |
| 79 | extraMultipliers=extraMultipliers, |
| 80 | ignoreAfflictors=ignoreAfflictors) |
| 81 | else: |
| 82 | sigRadius = self.item.ship.getModifiedItemAttr('signatureRadius') |
| 83 | elif self.isProfile: |
| 84 | sigRadius = self.item.signatureRadius |
| 85 | if extraMultipliers: |
| 86 | sigRadius *= calculateMultiplier(extraMultipliers) |
| 87 | else: |
| 88 | sigRadius = None |
| 89 | return sigRadius |
| 90 | |
| 91 | def getRadius(self): |
| 92 | if self.isFit: |
no test coverage detected