Files
pyfa/eos/effects/effect6689.py
2019-03-16 14:08:20 -04:00

15 lines
419 B
Python

# npcEntityRemoteHullRepairer
#
# Used by:
# Drones named like: Hull Maintenance Bot (6 of 6)
type = "projected", "active"
runTime = "late"
def handler(fit, module, context):
if "projected" not in context:
return
bonus = module.getModifiedItemAttr("structureDamageAmount")
duration = module.getModifiedItemAttr("duration") / 1000.0
fit.extraAttributes.increase("hullRepair", bonus / duration)