10 lines
430 B
Python
10 lines
430 B
Python
# Used by:
|
|
# Ships named like: Stratios (2 of 2)
|
|
# Variations of ship: Vexor (3 of 4)
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Gallente Cruiser").level
|
|
for type in ("shieldCapacity", "armorHP", "hp"):
|
|
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill("Drones"),
|
|
type, ship.getModifiedItemAttr("shipBonusGC2") * level)
|