13 lines
507 B
Python
13 lines
507 B
Python
# structureRigVelocityBonusSingleTargetMissiles
|
|
#
|
|
# 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,
|
|
"maxVelocity", src.getModifiedItemAttr("structureRigMissileVelocityBonus"),
|
|
stackingPenalties=True)
|