17 lines
580 B
Python
17 lines
580 B
Python
# armorRepairProjectorMaxRangeBonus
|
|
#
|
|
# Used by:
|
|
# Variations of ship: Navitas (2 of 2)
|
|
# Ship: Augoror
|
|
# Ship: Deacon
|
|
# Ship: Exequror
|
|
# Ship: Inquisitor
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Remote Armor Repairer", "maxRange",
|
|
src.getModifiedItemAttr("maxRangeBonus"))
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Ancillary Remote Armor Repairer", "maxRange",
|
|
src.getModifiedItemAttr("maxRangeBonus"))
|