18 lines
982 B
Python
18 lines
982 B
Python
# armoredCommandStrengthBonus
|
|
#
|
|
# Used by:
|
|
# Skill: Armored Command Specialist
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
lvl = src.level
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill("Armored Command"), "warfareBuff1Multiplier",
|
|
src.getModifiedItemAttr("commandStrengthBonus") * lvl)
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill("Armored Command"), "warfareBuff2Multiplier",
|
|
src.getModifiedItemAttr("commandStrengthBonus") * lvl)
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill("Armored Command"), "warfareBuff4Multiplier",
|
|
src.getModifiedItemAttr("commandStrengthBonus") * lvl)
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.item.requiresSkill("Armored Command"), "warfareBuff3Multiplier",
|
|
src.getModifiedItemAttr("commandStrengthBonus") * lvl)
|