12 lines
523 B
Python
12 lines
523 B
Python
# propulsionSkillCapNeedBonusSkillLevel
|
|
#
|
|
# Used by:
|
|
# Implants named like: Zainou 'Gypsy' Propulsion Jamming PJ (6 of 6)
|
|
# Skill: Propulsion Jamming
|
|
type = "passive"
|
|
def handler(fit, container, context):
|
|
groups = ("Stasis Web", "Warp Scrambler", "Warp Disrupt Field Generator")
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name in groups,
|
|
"capacitorNeed", container.getModifiedItemAttr("capNeedBonus") * level)
|