11 lines
345 B
Python
11 lines
345 B
Python
# skillMultiplierDefenderMissileVelocity
|
|
#
|
|
# Used by:
|
|
# Skill: Defender Missiles
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Defender Missiles"),
|
|
"maxVelocity", skill.getModifiedItemAttr("missileVelocityBonus") * skill.level)
|