12 lines
513 B
Python
12 lines
513 B
Python
type = "active"
|
|
runTime = "late"
|
|
|
|
|
|
def handler(fit, module, context):
|
|
fit.ship.increaseItemAttr("mass", module.getModifiedItemAttr("massAddition"))
|
|
speedBoost = module.getModifiedItemAttr("speedFactor")
|
|
mass = fit.ship.getModifiedItemAttr("mass")
|
|
thrust = module.getModifiedItemAttr("speedBoostFactor")
|
|
fit.ship.boostItemAttr("maxVelocity", speedBoost * thrust / mass)
|
|
fit.ship.boostItemAttr("signatureRadius", module.getModifiedItemAttr("signatureRadiusBonus"), stackingPenalties = True)
|