10 lines
362 B
Python
10 lines
362 B
Python
# shipBonusArmorRepairGI2
|
|
#
|
|
# Used by:
|
|
# Ship: Occator
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Gallente Industrial").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Repair Systems"),
|
|
"armorDamageAmount", ship.getModifiedItemAttr("shipBonusGI2") * level)
|