diff --git a/eos/effects/covertopswarpresistance.py b/eos/effects/covertopswarpresistance.py index 884bf5a96..1ab7538c1 100644 --- a/eos/effects/covertopswarpresistance.py +++ b/eos/effects/covertopswarpresistance.py @@ -3,5 +3,7 @@ # Used by: # Ships from group: Covert Ops (5 of 8) type = "passive" + + def handler(fit, src, context): fit.ship.increaseItemAttr("warpFactor", src.getModifiedItemAttr("eliteBonusCovertOps1"), skill="Covert Ops") diff --git a/eos/effects/elitebonusmaxdmgmultibonusadd.py b/eos/effects/elitebonusmaxdmgmultibonusadd.py index adee595d4..7e9a5cc29 100644 --- a/eos/effects/elitebonusmaxdmgmultibonusadd.py +++ b/eos/effects/elitebonusmaxdmgmultibonusadd.py @@ -3,6 +3,8 @@ # Used by: # Ship: Hydra type = "passive" + + def handler(fit, src, context): fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill("Small Precursor Weapon"), "damageMultiplierBonusMax", src.getModifiedItemAttr("eliteBonusCovertOps3"), skill="Covert Ops") diff --git a/eos/effects/elitebonusreconmaxdmgmultimaxhpt.py b/eos/effects/elitebonusreconmaxdmgmultimaxhpt.py index 083e579c8..1350d5a93 100644 --- a/eos/effects/elitebonusreconmaxdmgmultimaxhpt.py +++ b/eos/effects/elitebonusreconmaxdmgmultimaxhpt.py @@ -3,6 +3,8 @@ # Used by: # Ship: Tiamat type = "passive" + + def handler(fit, src, context): fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill("Medium Precursor Weapon"), "damageMultiplierBonusMax", src.getModifiedItemAttr("eliteBonusReconShip3"), skill="Recon Ships") diff --git a/eos/effects/elitebonusreconscanprobestrength2.py b/eos/effects/elitebonusreconscanprobestrength2.py index 04675d28c..55db46631 100644 --- a/eos/effects/elitebonusreconscanprobestrength2.py +++ b/eos/effects/elitebonusreconscanprobestrength2.py @@ -3,6 +3,8 @@ # Used by: # Ship: Tiamat type = "passive" + + def handler(fit, src, context): fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Astrometrics"), "baseSensorStrength", src.getModifiedItemAttr("eliteBonusReconShip2"), skill="Recon Ships")