17 lines
409 B
Python
17 lines
409 B
Python
# shipBonusTitanG4FleetBonus
|
|
#
|
|
# Used by:
|
|
# Ship: Erebus
|
|
type = "gang"
|
|
gangBoost = "armorHP"
|
|
gangBonus = "shipBonusTitanG4"
|
|
gangBonusSkill = "Gallente Titan"
|
|
runTime = "late"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
if "gang" not in context:
|
|
return
|
|
fit.ship.boostItemAttr(gangBoost,
|
|
src.getModifiedItemAttr(gangBonus) * src.parent.character.getSkill(gangBonusSkill).level)
|