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