11 lines
372 B
Python
11 lines
372 B
Python
# selfT2MediumLaserPulseDamageBonus
|
|
#
|
|
# Used by:
|
|
# Skill: Medium Pulse Laser Specialization
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Pulse Laser Specialization"),
|
|
"damageMultiplier", skill.getModifiedItemAttr("damageMultiplierBonus") * skill.level)
|