13 lines
447 B
Python
13 lines
447 B
Python
# ewSkillTpCapNeedBonusSkillLevel
|
|
#
|
|
# Used by:
|
|
# Implants named like: Zainou 'Gypsy' Target Painting TG (6 of 6)
|
|
# Skill: Target Painting
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, container, context):
|
|
level = container.level if "skill" in context else 1
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Target Painting"),
|
|
"capacitorNeed", container.getModifiedItemAttr("capNeedBonus") * level)
|