11 lines
369 B
Python
11 lines
369 B
Python
# emShieldCompensationHardeningBonusGroupShieldAmp
|
|
#
|
|
# Used by:
|
|
# Skill: EM Shield Compensation
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Shield Resistance Amplifier",
|
|
"emDamageResistanceBonus", skill.getModifiedItemAttr("hardeningBonus") * skill.level)
|