14 lines
433 B
Python
14 lines
433 B
Python
# scanStrengthBonusPercentActivate
|
|
#
|
|
# Used by:
|
|
# Modules from group: ECCM (44 of 44)
|
|
# Module: QA ECCM
|
|
type = "active"
|
|
def handler(fit, module, context):
|
|
for scanType in ("Gravimetric", "Magnetometric", "Radar", "Ladar"):
|
|
fit.ship.boostItemAttr(
|
|
"scan{}Strength".format(scanType),
|
|
module.getModifiedItemAttr("scan{}StrengthPercent".format(scanType)),
|
|
stackingPenalties=True
|
|
)
|