(self)
| 453 | |
| 454 | @property |
| 455 | def alignTime(self): |
| 456 | agility = self.ship.getModifiedItemAttr("agility") or 0 |
| 457 | mass = self.ship.getModifiedItemAttr("mass") |
| 458 | |
| 459 | return -log(0.25) * agility * mass / 1000000 |
| 460 | |
| 461 | @property |
| 462 | def implantSource(self): |
nothing calls this directly
no test coverage detected