10 lines
366 B
Python
10 lines
366 B
Python
# shipBonusShieldTransferCapneed1
|
|
#
|
|
# Used by:
|
|
# Ship: Osprey
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Caldari Cruiser").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Remote Shield Booster",
|
|
"capacitorNeed", ship.getModifiedItemAttr("shipBonusCC") * level)
|