12 lines
338 B
Python
12 lines
338 B
Python
# informationCommandDurationBonus
|
|
#
|
|
# Used by:
|
|
# Skill: Information Command
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
lvl = src.level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Information Command"), "buffDuration",
|
|
src.getModifiedItemAttr("durationBonus") * lvl)
|