14 lines
600 B
Python
14 lines
600 B
Python
# systemShieldRepairAmountShieldSkills
|
|
#
|
|
# Used by:
|
|
# Celestials named like: Cataclysmic Variable Effect Beacon Class (6 of 6)
|
|
runTime = "early"
|
|
type = ("projected", "passive")
|
|
|
|
|
|
def handler(fit, module, context):
|
|
fit.modules.filteredItemMultiply(lambda mod: mod.item.requiresSkill("Shield Operation") or
|
|
mod.item.requiresSkill("Capital Shield Operation"),
|
|
"shieldBonus", module.getModifiedItemAttr("shieldBonusMultiplier"),
|
|
stackingPenalties=True, penaltyGroup="postMul")
|