(self)
| 437 | |
| 438 | @property |
| 439 | def jamChance(self): |
| 440 | sensors = self.scanStrength |
| 441 | retainLockChance = 1 |
| 442 | for jamStr in self.__ecmProjectedList: |
| 443 | retainLockChance *= 1 - min(1, jamStr / sensors) |
| 444 | return (1 - retainLockChance) * 100 |
| 445 | |
| 446 | @property |
| 447 | def maxSpeed(self): |
nothing calls this directly
no outgoing calls
no test coverage detected