Files
pyfa/eos/effects/ewskillewmaxrangebonus.py
2014-05-31 23:34:12 +04:00

11 lines
552 B
Python
Executable File

# Used by:
# Implants named like: grade Centurion (10 of 12)
# Modules named like: Particle Dispersion Projector (8 of 8)
# Skill: Long Distance Jamming
type = "passive"
def handler(fit, container, context):
level = container.level if "skill" in context else 1
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
"maxRange", container.getModifiedItemAttr("rangeSkillBonus") * level,
stackingPenalties = "skill" not in context and "implant" not in context)