11 lines
256 B
Python
11 lines
256 B
Python
# dronesSkillBoostMaxActiveDroneBonus
|
|
#
|
|
# Used by:
|
|
# Skill: Drones
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, skill, context):
|
|
amount = skill.getModifiedItemAttr("maxActiveDroneBonus") * skill.level
|
|
fit.extraAttributes.increase("maxActiveDrones", amount)
|