21 lines
704 B
Python
21 lines
704 B
Python
# commandBonusTDMultiplyWithCommandBonusHidden
|
|
#
|
|
# Used by:
|
|
# Variations of module: Information Warfare Link - Electronic Superiority I (2 of 2)
|
|
gangBonus = "commandBonusTD"
|
|
gangBoost = "ewarStrTD"
|
|
type = "active", "gang"
|
|
def handler(fit, module, context):
|
|
if "gang" not in context: return
|
|
for bonus in (
|
|
"missileVelocityBonus",
|
|
"explosionDelayBonus",
|
|
"aoeVelocityBonus",
|
|
"falloffBonus",
|
|
"maxRangeBonus",
|
|
"aoeCloudSizeBonus",
|
|
"trackingSpeedBonus"
|
|
):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Weapon Disruption"),
|
|
bonus, module.getModifiedItemAttr("commandBonusTD"))
|