12 lines
398 B
Python
12 lines
398 B
Python
# shieldBoosterDurationBonusShieldSkills
|
|
#
|
|
# Used by:
|
|
# Modules named like: Core Defense Operational Solidifier (8 of 8)
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, module, context):
|
|
fit.modules.filteredItemBoost(
|
|
lambda mod: mod.item.requiresSkill("Shield Operation") or mod.item.requiresSkill("Capital Shield Operation"),
|
|
"duration", module.getModifiedItemAttr("durationSkillBonus"))
|