14 lines
512 B
Python
14 lines
512 B
Python
# structureRigAoeVelocityBonusSingleTargetMissiles
|
|
#
|
|
# Used by:
|
|
# Structure Modules named like: Standup Set Missile (6 of 8)
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
groups = ("Structure Anti-Subcapital Missile", "Structure Anti-Capital Missile")
|
|
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.group.name in groups,
|
|
"aoeVelocity", src.getModifiedItemAttr("structureRigMissileExploVeloBonus"),
|
|
stackingPenalties=True)
|