11 lines
394 B
Python
11 lines
394 B
Python
# shipBonusThermalMissileDamageGF
|
|
#
|
|
# Used by:
|
|
# Ship: Whiptail
|
|
# Ship: Worm
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Gallente Frigate").level
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"),
|
|
"thermalDamage", ship.getModifiedItemAttr("shipBonusGF") * level)
|