21 lines
1.4 KiB
Python
21 lines
1.4 KiB
Python
# Not used by any item
|
|
type = "passive"
|
|
|
|
|
|
def handler(fit, src, context):
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Information Command"), "warfareBuff4Value",
|
|
src.getModifiedItemAttr("subsystemBonusGallenteDefensive"),
|
|
skill="Gallente Defensive Systems")
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Information Command"), "warfareBuff2Value",
|
|
src.getModifiedItemAttr("subsystemBonusGallenteDefensive"),
|
|
skill="Gallente Defensive Systems")
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Information Command"), "warfareBuff3Value",
|
|
src.getModifiedItemAttr("subsystemBonusGallenteDefensive"),
|
|
skill="Gallente Defensive Systems")
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Information Command"), "buffDuration",
|
|
src.getModifiedItemAttr("subsystemBonusGallenteDefensive"),
|
|
skill="Gallente Defensive Systems")
|
|
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Information Command"), "warfareBuff1Value",
|
|
src.getModifiedItemAttr("subsystemBonusGallenteDefensive"),
|
|
skill="Gallente Defensive Systems")
|