14 lines
499 B
Python
14 lines
499 B
Python
# shipBonusHeavyAssaultMissileAllDamageMC2
|
|
#
|
|
# Used by:
|
|
# Ship: Rapier
|
|
# Ship: Scythe Fleet Issue
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, ship, context):
|
|
for damageType in ("em", "explosive", "kinetic", "thermal"):
|
|
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Heavy Assault Missiles"),
|
|
"{0}Damage".format(damageType), ship.getModifiedItemAttr("shipBonusMC2"),
|
|
skill="Minmatar Cruiser")
|