25 lines
888 B
Python
25 lines
888 B
Python
# fighterAbilityMicroWarpDrive
|
|
#
|
|
# Used by:
|
|
# Items from category: Fighter (48 of 82)
|
|
"""
|
|
Since fighter abilities do not have any sort of item entity in the EVE database, we must derive the abilities from the
|
|
effects, and thus this effect file contains some custom information useful only to fighters.
|
|
"""
|
|
# User-friendly name for the ability
|
|
displayName = "Microwarpdrive"
|
|
|
|
# Is ability applied to the fighter squad as a whole, or per fighter?
|
|
grouped = True
|
|
|
|
type = "active"
|
|
runTime = "late"
|
|
|
|
|
|
def handler(fit, module, context):
|
|
module.boostItemAttr("maxVelocity", module.getModifiedItemAttr("fighterAbilityMicroWarpDriveSpeedBonus"),
|
|
stackingPenalties=True)
|
|
module.boostItemAttr("signatureRadius",
|
|
module.getModifiedItemAttr("fighterAbilityMicroWarpDriveSignatureRadiusBonus"),
|
|
stackingPenalties=True)
|