9 lines
322 B
Python
9 lines
322 B
Python
# droneDurabilityShieldCapBonus2
|
|
#
|
|
# Used by:
|
|
# Skill: Drone Durability
|
|
type = "passive"
|
|
def handler(fit, skill, context):
|
|
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill("Drones"),
|
|
"shieldCapacity", skill.getModifiedItemAttr("shieldCapacityBonus") * skill.level)
|