10 lines
355 B
Python
10 lines
355 B
Python
# shipStasisWebStrengthBonusMC2
|
|
#
|
|
# Used by:
|
|
# Ship: Vigilant
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Minmatar Cruiser").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Stasis Web",
|
|
"speedFactor", ship.getModifiedItemAttr("shipBonusMC2") * level)
|