13 lines
627 B
Python
Executable File
13 lines
627 B
Python
Executable File
# Used by:
|
|
# Drones from group: Cap Drain Drone (3 of 3)
|
|
# Modules from group: Energy Destabilizer (41 of 41)
|
|
from eos.types import State
|
|
type = "active", "projected"
|
|
def handler(fit, container, context):
|
|
if "projected" in context and ((hasattr(container, "state") \
|
|
and container.state >= State.ACTIVE) or hasattr(container, "amountActive")):
|
|
multiplier = container.amountActive if hasattr(container, "amountActive") else 1
|
|
amount = container.getModifiedItemAttr("energyDestabilizationAmount")
|
|
time = container.getModifiedItemAttr("duration")
|
|
fit.addDrain(time, amount * multiplier, 0)
|