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