13 lines
557 B
Python
13 lines
557 B
Python
# highSpeedManuveringCapacitorNeedMultiplierPostPercentCapacitorNeedLocationShipModulesRequiringHighSpeedManuvering
|
|
#
|
|
# Used by:
|
|
# Implants named like: Eifyr and Co. 'Rogue' High Speed Maneuvering HS (6 of 6)
|
|
# Skill: High Speed Maneuvering
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("High Speed Maneuvering"),
|
|
"capacitorNeed", container.getModifiedItemAttr("capNeedBonus") * level)
|