15 lines
567 B
Python
15 lines
567 B
Python
# baseMaxScanDeviationModifierRequiringAstrometrics
|
|
#
|
|
# Used by:
|
|
# Implants named like: Poteque 'Prospector' Astrometric Pinpointing AP (3 of 3)
|
|
# Skill: Astrometric Pinpointing
|
|
# Skill: Astrometrics
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Astrometrics"),
|
|
"baseMaxScanDeviation",
|
|
container.getModifiedItemAttr("maxScanDeviationModifier") * level)
|