10 lines
358 B
Python
10 lines
358 B
Python
# shipArmorRepairingGF2
|
|
#
|
|
# Used by:
|
|
# Ship: Incursus
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Gallente Frigate").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Repair Systems"),
|
|
"armorDamageAmount", ship.getModifiedItemAttr("shipBonusGF2") * level)
|