13 lines
430 B
Python
13 lines
430 B
Python
# shipMissileRofCC
|
|
#
|
|
# Used by:
|
|
# Ships named like: Caracal (2 of 2)
|
|
# Ship: Enforcer
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, ship, context):
|
|
groups = ("Missile Launcher Heavy", "Missile Launcher Rapid Light", "Missile Launcher Heavy Assault")
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in groups,
|
|
"speed", ship.getModifiedItemAttr("shipBonusCC"), skill="Caldari Cruiser")
|