11 lines
409 B
Python
11 lines
409 B
Python
# shipMissileExplosiveDamageCF2
|
|
#
|
|
# Used by:
|
|
# Ship: Caldari Navy Hookbill
|
|
# Ship: Garmur
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Caldari Frigate").level
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"),
|
|
"explosiveDamage", ship.getModifiedItemAttr("shipBonusCF2") * level)
|