13 lines
477 B
Python
13 lines
477 B
Python
# speedBoostMassAddition
|
|
#
|
|
# Used by:
|
|
# Modules from group: Propulsion Module (62 of 127)
|
|
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)
|