11 lines
414 B
Python
11 lines
414 B
Python
# shipCapNeedBonusAB
|
|
#
|
|
# Used by:
|
|
# Variations of ship: Armageddon (3 of 5)
|
|
# Ship: Apocalypse Imperial Issue
|
|
type = "passive"
|
|
def handler(fit, ship, context):
|
|
level = fit.character.getSkill("Amarr Battleship").level
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Large Energy Turret"),
|
|
"capacitorNeed", ship.getModifiedItemAttr("shipBonusAB") * level)
|