9 lines
377 B
Python
9 lines
377 B
Python
# Used by:
|
|
# Ships named like: Caracal (3 of 4)
|
|
# Ship: Osprey Navy Issue
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Caldari Cruiser").level
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Light Missiles"),
|
|
"maxVelocity", ship.getModifiedItemAttr("shipBonusCC2") * level)
|