12 lines
565 B
Python
Executable File
12 lines
565 B
Python
Executable File
# Used by:
|
|
# Variations of module: Information Warfare Link - Electronic Superiority I (2 of 2)
|
|
gangBonus = "commandBonusRSD"
|
|
gangBoost = "ewarStrRSD"
|
|
type = "active", "gang"
|
|
def handler(fit, module, context):
|
|
if "gang" not in context: return
|
|
for bonus in ("scanResolutionBonus", "maxTargetRangeBonus"):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Remote Sensor Damper",
|
|
bonus, module.getModifiedItemAttr("commandBonusRSD"),
|
|
stackingPenalties = True)
|