14 lines
506 B
Python
14 lines
506 B
Python
# eliteBonusBlackOpsECMBurstGravAndLadarAndMagnetoAndRadar
|
|
#
|
|
# Used by:
|
|
# Ship: Widow
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, ship, context):
|
|
sensorTypes = ("Gravimetric", "Ladar", "Magnetometric", "Radar")
|
|
for type in sensorTypes:
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Burst Jammer",
|
|
"scan{0}StrengthBonus".format(type),
|
|
ship.getModifiedItemAttr("eliteBonusBlackOps1"), skill="Black Ops")
|