12 lines
412 B
Python
12 lines
412 B
Python
# kineticArmorCompensationHardeningBonusGroupEnergized
|
|
#
|
|
# Used by:
|
|
# Skill: Kinetic Armor Compensation
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Armor Plating Energized",
|
|
"kineticDamageResistanceBonus",
|
|
skill.getModifiedItemAttr("hardeningBonus") * skill.level)
|