10 lines
374 B
Python
10 lines
374 B
Python
# shipBonusRemoteArmorRepairAmountAC2
|
|
#
|
|
# Used by:
|
|
# Ship: Augoror
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Amarr Cruiser").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Remote Armor Repairer",
|
|
"armorDamageAmount", ship.getModifiedItemAttr("shipBonusAC2") * level)
|