11 lines
372 B
Python
11 lines
372 B
Python
# shipRocketExplosiveDmgAF
|
|
#
|
|
# Used by:
|
|
# Ship: Anathema
|
|
# Ship: Vengeance
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Amarr Frigate").level
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Rockets"),
|
|
"explosiveDamage", ship.getModifiedItemAttr("shipBonusAF") * level)
|