14 lines
592 B
Python
Executable File
14 lines
592 B
Python
Executable File
# Used by:
|
|
# Implants named like: Zainou RL (6 of 6)
|
|
# Implant: Advanced Cerebral Accelerator
|
|
# Implant: Prototype Cerebral Accelerator
|
|
# Implant: Standard Cerebral Accelerator
|
|
# Implant: Whelan Machorin's Ballistic Smartlink
|
|
# Skill: Missile Launcher Operation
|
|
# Skill: Rapid Launch
|
|
type = "passive"
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Missile Launcher Operation"),
|
|
"speed", container.getModifiedItemAttr("rofBonus") * level)
|