14 lines
529 B
Python
14 lines
529 B
Python
# afterburnerDurationBonusPostPercentDurationLocationShipModulesRequiringAfterburner
|
|
#
|
|
# Used by:
|
|
# Implants named like: Eifyr and Co. 'Rogue' Afterburner AB (6 of 6)
|
|
# Implant: Zor's Custom Navigation Link
|
|
# Skill: Afterburner
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Afterburner"),
|
|
"duration", container.getModifiedItemAttr("durationBonus") * level)
|