11 lines
398 B
Python
11 lines
398 B
Python
# shipMissileExpDamageCC
|
|
#
|
|
# Used by:
|
|
# Ship: Orthrus
|
|
# 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("Missile Launcher Operation"),
|
|
"explosiveDamage", ship.getModifiedItemAttr("shipBonusCC") * level)
|