15 lines
449 B
Python
15 lines
449 B
Python
# shipArmorEMAndExpAndkinAndThmResistanceAC2
|
|
#
|
|
# Used by:
|
|
# Ships named like: Stratios (2 of 2)
|
|
# Ship: Sacrilege
|
|
# Ship: Vangel
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, ship, context):
|
|
damageTypes = ("Em", "Explosive", "Kinetic", "Thermal")
|
|
for damageType in damageTypes:
|
|
fit.ship.boostItemAttr("armor{0}DamageResonance".format(damageType), ship.getModifiedItemAttr("shipBonusAC2"),
|
|
skill="Amarr Cruiser")
|