10 lines
406 B
Python
10 lines
406 B
Python
# Not used by any item
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
groups = ("Structure Anti-Subcapital Missile", "Structure Anti-Capital Missile")
|
|
fit.modules.filteredItemBoost(lambda mod: mod.charge.group.name in groups,
|
|
"maxVelocity", src.getModifiedItemAttr("structureRigMissileVelocityBonus"),
|
|
stackingPenalties=True)
|