Expresses how difficult a target is to probe down with scan probes
(self)
| 1348 | |
| 1349 | @property |
| 1350 | def probeSize(self): |
| 1351 | """ |
| 1352 | Expresses how difficult a target is to probe down with scan probes |
| 1353 | """ |
| 1354 | |
| 1355 | sigRad = self.ship.getModifiedItemAttr("signatureRadius") |
| 1356 | sensorStr = float(self.scanStrength) |
| 1357 | probeSize = sigRad / sensorStr if sensorStr != 0 else None |
| 1358 | # http://www.eveonline.com/ingameboard.asp?a=topic&threadID=1532170&page=2#42 |
| 1359 | if probeSize is not None: |
| 1360 | # Probe size is capped at 1.08 |
| 1361 | probeSize = max(probeSize, 1.08) |
| 1362 | return probeSize |
| 1363 | |
| 1364 | @property |
| 1365 | def warpSpeed(self): |
nothing calls this directly
no test coverage detected