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