24 lines
671 B
Python
24 lines
671 B
Python
# fighterAbilityMissiles
|
|
#
|
|
# Used by:
|
|
# Items from category: Fighter (48 of 82)
|
|
# Fighters from group: Light Fighter (32 of 32)
|
|
"""
|
|
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 = "Missile Attack"
|
|
|
|
# Attribute prefix that this ability targets
|
|
prefix = "fighterAbilityMissiles"
|
|
|
|
type = "active"
|
|
|
|
# This flag is required for effects that use charges in order to properly calculate reload time
|
|
hasCharges = True
|
|
|
|
|
|
def handler(fit, src, context):
|
|
pass
|