15 lines
374 B
Python
15 lines
374 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)
|
|
|