15 lines
595 B
Python
15 lines
595 B
Python
# repairSystemsDurationBonusPostPercentDurationLocationShipModulesRequiringRepairSystems
|
|
#
|
|
# Used by:
|
|
# Implants named like: Inherent Implants 'Noble' Repair Systems RS (6 of 6)
|
|
# Modules named like: Nanobot Accelerator (8 of 8)
|
|
# Implant: Numon Family Heirloom
|
|
# Skill: Repair Systems
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Repair Systems"),
|
|
"duration", container.getModifiedItemAttr("durationSkillBonus") * level)
|