12 lines
437 B
Python
Executable File
12 lines
437 B
Python
Executable File
# Used by:
|
|
# Ship: Arazu
|
|
# Ship: Falcon
|
|
# Ship: Pilgrim
|
|
# Ship: Rapier
|
|
# Skill: Cynosural Field Theory
|
|
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 == "Cynosural Field",
|
|
"consumptionQuantity", container.getModifiedItemAttr("consumptionQuantityBonusPercentage") * level)
|