Files
pyfa/eos/effects/skillbonusdronenavigation.py
2016-05-07 20:02:24 -04:00

10 lines
430 B
Python

# skillBonusDroneNavigation
#
# Used by:
# Skill: Drone Navigation
type = "passive"
def handler(fit, src, context):
lvl = src.level
fit.drones.filteredItemBoost(lambda mod: mod.item.requiresSkill("Drones"), "maxVelocity", src.getModifiedItemAttr("maxVelocityBonus") * lvl)
fit.fighters.filteredItemBoost(lambda mod: mod.item.requiresSkill("Fighters"), "maxVelocity", src.getModifiedItemAttr("maxVelocityBonus") * lvl)