14 lines
319 B
Python
14 lines
319 B
Python
# modeMWDCapPostDiv
|
|
#
|
|
# Used by:
|
|
# Module: Hecate Propulsion Mode
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, module, context):
|
|
fit.modules.filteredItemMultiply(
|
|
lambda mod: mod.item.requiresSkill("High Speed Maneuvering"),
|
|
"capacitorNeed",
|
|
1 / module.getModifiedItemAttr("modeMWDCapPostDiv")
|
|
)
|