11 lines
413 B
Python
Executable File
11 lines
413 B
Python
Executable File
# Used by:
|
|
# Implant: Mining Foreman Mindlink
|
|
# Skill: Mining Foreman
|
|
type = "gang"
|
|
gangBoost = "miningAmount"
|
|
gangBonus = "miningAmountBonus"
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Mining"),
|
|
gangBoost, container.getModifiedItemAttr(gangBonus) * level)
|