12 lines
418 B
Python
12 lines
418 B
Python
# kineticShieldCompensationHardeningBonusGroupShieldAmp
|
|
#
|
|
# Used by:
|
|
# Skill: Kinetic Shield Compensation
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Shield Resistance Amplifier",
|
|
"kineticDamageResistanceBonus",
|
|
skill.getModifiedItemAttr("hardeningBonus") * skill.level)
|