11 lines
353 B
Python
11 lines
353 B
Python
# missileSkillWarheadUpgradesEmDamageBonus
|
|
#
|
|
# Used by:
|
|
# Skill: Warhead Upgrades
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"),
|
|
"emDamage", skill.getModifiedItemAttr("damageMultiplierBonus") * skill.level)
|