12 lines
354 B
Python
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
|
|
)
|