Skip to content

Commit

Permalink
Add new effect
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Feb 20, 2024
1 parent 539be15 commit 3e00d5d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions eos/effects.py
Original file line number Diff line number Diff line change
Expand Up @@ -40425,3 +40425,20 @@ def handler(fit, booster, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(
lambda mod: mod.item.requiresSkill('Vorton Projector Operation'), 'speed',
booster.getModifiedItemAttr('turretSpeeBonus'), **kwargs)


class Effect12038(BaseEffect):
"""
shipBonusSPTFalloffMF3

Used by:
Ship: Republic Fleet Firetail
"""

type = 'passive'

@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(
lambda mod: mod.item.requiresSkill('Small Projectile Turret'), 'falloff',
ship.getModifiedItemAttr('shipBonus3MF'), skill='Minmatar Frigate', **kwargs)

0 comments on commit 3e00d5d

Please sign in to comment.