13 lines
441 B
Python
13 lines
441 B
Python
# modifyArmorResonancePostPercentPassive
|
|
#
|
|
# Used by:
|
|
# Modules named like: Anti Pump (32 of 32)
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, module, context):
|
|
for type in ("kinetic", "thermal", "explosive", "em"):
|
|
fit.ship.boostItemAttr("armor" + type.capitalize() + "DamageResonance",
|
|
module.getModifiedItemAttr(type + "DamageResistanceBonus") or 0,
|
|
stackingPenalties=True)
|