21 lines
559 B
Python
21 lines
559 B
Python
# fighterAbilityAttackM
|
|
#
|
|
# Used by:
|
|
# Items from category: Fighter (50 of 82)
|
|
# Fighters from group: Heavy Fighter (34 of 34)
|
|
"""
|
|
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 = "Turret Attack"
|
|
|
|
# Attribute prefix that this ability targets
|
|
prefix = "fighterAbilityAttackMissile"
|
|
|
|
type = "active"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
pass
|