9 lines
394 B
Python
Executable File
9 lines
394 B
Python
Executable File
# Used by:
|
|
# Variations of ship: Arbitrator (3 of 3)
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Amarr Cruiser").level
|
|
for type in ("shieldCapacity", "armorHP", "hp"):
|
|
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill("Drones"),
|
|
type, ship.getModifiedItemAttr("shipBonusAC2") * level)
|