11 lines
394 B
Python
11 lines
394 B
Python
# eliteBonusLogisticShieldTransferCapNeed1
|
|
#
|
|
# Used by:
|
|
# Ship: Basilisk
|
|
# Ship: Etana
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Logistics").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Remote Shield Booster",
|
|
"capacitorNeed", ship.getModifiedItemAttr("eliteBonusLogistics1") * level)
|