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