Files
pyfa/eos/effects/scanstrengthbonuspercentactivate.py
2017-02-15 21:14:40 -05:00

12 lines
354 B
Python

# Not used by any item
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
)