Fix #54
This commit is contained in:
@@ -5,4 +5,4 @@ type = ("projected", "offline")
|
||||
def handler(fit, module, context):
|
||||
fit.modules.filteredItemMultiply(lambda mod: mod.item.group.name == "Armor Repair Unit",
|
||||
"armorDamageAmount", module.getModifiedItemAttr("armorDamageAmountMultiplier"),
|
||||
stackingPenalties = True)
|
||||
stackingPenalties = True, penaltyGroup="postMul")
|
||||
|
||||
8
eos/effects/systemshieldrepairamountshieldskills.py
Normal file
8
eos/effects/systemshieldrepairamountshieldskills.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# Used by:
|
||||
# Celestials named like: Cataclysmic Variable Beacon Class (6 of 6)
|
||||
runTime = "early"
|
||||
type = ("projected", "offline")
|
||||
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")
|
||||
Reference in New Issue
Block a user