10 lines
414 B
Python
10 lines
414 B
Python
# shipBonusORECapShipDroneDmgBonus
|
|
#
|
|
# Used by:
|
|
# Ships from group: Capital Industrial Ship (2 of 2)
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Capital Industrial Ships").level
|
|
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill("Drones"),
|
|
"damageMultiplier", ship.getModifiedItemAttr("shipBonusORECapital4") * level)
|