10 lines
374 B
Python
10 lines
374 B
Python
# shipBonusShieldTransferBoostAmountCC2
|
|
#
|
|
# 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.requiresSkill("Shield Emission Systems"),
|
|
"shieldBonus", ship.getModifiedItemAttr("shipBonusCC2") * level)
|