10 lines
451 B
Python
10 lines
451 B
Python
# subsystemBonusGallentePropulsionABMWDCapNeed
|
|
#
|
|
# Used by:
|
|
# Subsystem: Proteus Propulsion - Localized Injectors
|
|
type = "passive"
|
|
def handler(fit, module, context):
|
|
level = fit.character.getSkill("Gallente Propulsion Systems").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Propulsion Module",
|
|
"capacitorNeed", module.getModifiedItemAttr("subsystemBonusGallentePropulsion") * level)
|