12 lines
334 B
Python
12 lines
334 B
Python
# skillBonusSupportFightersShield
|
|
#
|
|
# Used by:
|
|
# Skill: Support Fighters
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
lvl = src.level
|
|
fit.fighters.filteredItemBoost(lambda mod: mod.item.requiresSkill("Support Fighters"), "shieldCapacity",
|
|
src.getModifiedItemAttr("shieldBonus") * lvl)
|