Update to sisi 1086428
This commit is contained in:
10
eos/effects/modulebonusafterburner.py
Normal file
10
eos/effects/modulebonusafterburner.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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)
|
||||
11
eos/effects/modulebonusmicrowarpdrive.py
Normal file
11
eos/effects/modulebonusmicrowarpdrive.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user