Skip to content

Commit

Permalink
Fix vargur damage bonus
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Feb 18, 2021
1 parent 30e73ed commit 538954f
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 @@ -37326,3 +37326,20 @@ def handler(fit, src, context, projectionRange, **kwargs):
fit.drones.filteredItemBoost(
lambda mod: mod.item.requiresSkill('Salvage Drone Specialization'),
'maxVelocity', src.getModifiedItemAttr('maxVelocityBonus') * lvl, **kwargs)


class Effect8106(BaseEffect):
"""
shipPTdamageBonusMB2

Used by:
Ship: Vargur
"""

type = 'passive'

@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Large Projectile Turret'),
'damageMultiplier', ship.getModifiedItemAttr('shipBonusMB2'),
skill='Minmatar Battleship', **kwargs)

0 comments on commit 538954f

Please sign in to comment.