-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
type = "passive" | ||
def handler(fit, container, context): | ||
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), | ||
"aoeCloudSize", container.getModifiedItemAttr("aoeCloudSizeBonus")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
type = "passive" | ||
def handler(fit, container, context): | ||
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), | ||
"aoeVelocity", container.getModifiedItemAttr("aoeVelocityBonus")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
type = "passive" | ||
def handler(fit, container, context): | ||
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), | ||
"explosionDelay", container.getModifiedItemAttr("explosionDelayBonus"), | ||
stackingPenalties=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
type = "active" | ||
def handler(fit, container, context): | ||
for srcAttr, tgtAttr, penalize in ( | ||
("aoeCloudSizeBonus", "aoeCloudSize", False), | ||
("aoeVelocityBonus", "aoeVelocity", False), | ||
("missileVelocityBonus", "maxVelocity", True), | ||
("explosionDelayBonus", "explosionDelay", True), | ||
): | ||
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), | ||
tgtAttr, container.getModifiedItemAttr(srcAttr), | ||
stackingPenalties=penalize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
type = "passive" | ||
def handler(fit, container, context): | ||
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), | ||
"maxVelocity", container.getModifiedItemAttr("missileVelocityBonus"), | ||
stackingPenalties=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type = "passive" | ||
def handler(fit, module, context): | ||
fit.modules.filteredItemMultiply( | ||
lambda mod: mod.item.requiresSkill("Repair Systems"), | ||
"duration", | ||
1 / module.getModifiedItemAttr("modeArmorRepDurationPostDiv") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
type = "overheat" | ||
def handler(fit, module, context): | ||
for tgtAttr in ( | ||
"aoeCloudSizeBonus", | ||
"explosionDelayBonus", | ||
"missileVelocityBonus", | ||
"maxVelocityBonus", | ||
"aoeVelocityBonus" | ||
): | ||
module.boostItemAttr(tgtAttr, module.getModifiedItemAttr("overloadTrackingModuleStrengthBonus")) |
3 changes: 3 additions & 0 deletions
3
eos/effects/scriptmissileguidancecomputeraoecloudsizebonusbonus.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type = "passive" | ||
def handler(fit, module, context): | ||
module.boostItemAttr("aoeCloudSizeBonus", module.getModifiedChargeAttr("aoeCloudSizeBonusBonus")) |
3 changes: 3 additions & 0 deletions
3
eos/effects/scriptmissileguidancecomputeraoevelocitybonusbonus.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type = "passive" | ||
def handler(fit, module, context): | ||
module.boostItemAttr("aoeVelocityBonus", module.getModifiedChargeAttr("aoeVelocityBonusBonus")) |
3 changes: 3 additions & 0 deletions
3
eos/effects/scriptmissileguidancecomputerexplosiondelaybonusbonus.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type = "passive" | ||
def handler(fit, module, context): | ||
module.boostItemAttr("explosionDelayBonus", module.getModifiedChargeAttr("explosionDelayBonusBonus")) |
3 changes: 3 additions & 0 deletions
3
eos/effects/scriptmissileguidancecomputermissilevelocitybonusbonus.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type = "passive" | ||
def handler(fit, module, context): | ||
module.boostItemAttr("missileVelocityBonus", module.getModifiedChargeAttr("missileVelocityBonusBonus")) |
Binary file not shown.