13 lines
424 B
Python
13 lines
424 B
Python
# shipECMScanStrengthBonusRookie
|
|
#
|
|
# Used by:
|
|
# Ship: Ibis
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, ship, context):
|
|
for type in ("Gravimetric", "Ladar", "Radar", "Magnetometric"):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
|
|
"scan{0}StrengthBonus".format(type),
|
|
ship.getModifiedItemAttr("rookieECMStrengthBonus"))
|