Added all new system-wide effects as postMul, removed penalty group for cases where in coincides with 'default' group (e.g. it's also postMul for turret damage mods)
9 lines
407 B
Python
9 lines
407 B
Python
# Used by:
|
|
# Celestials named like: Magnetar Effect Beacon Class (6 of 6)
|
|
runTime = "early"
|
|
type = ("projected", "offline")
|
|
def handler(fit, beacon, context):
|
|
fit.drones.filteredItemMultiply(lambda drone: True,
|
|
"trackingSpeed", beacon.getModifiedItemAttr("trackingSpeedMultiplier"),
|
|
stackingPenalties=True, penaltyGroup="postMul")
|