From 45480a0216702666d03e128a05ddac89da0ba367 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Sun, 27 Nov 2016 13:35:56 -0800 Subject: [PATCH] These 4 effects break processing, because the bonus gets set to 0 --- .../industrialcommandshipskilllevelmultiplierics3.py | 8 -------- .../industrialcommandshipskilllevelmultiplierics4.py | 8 -------- .../industrialcommandshipskilllevelmultiplierics5.py | 8 -------- eos/effects/orecapitalshipskillmultiplier5.py | 8 -------- 4 files changed, 32 deletions(-) delete mode 100644 eos/effects/industrialcommandshipskilllevelmultiplierics3.py delete mode 100644 eos/effects/industrialcommandshipskilllevelmultiplierics4.py delete mode 100644 eos/effects/industrialcommandshipskilllevelmultiplierics5.py delete mode 100644 eos/effects/orecapitalshipskillmultiplier5.py diff --git a/eos/effects/industrialcommandshipskilllevelmultiplierics3.py b/eos/effects/industrialcommandshipskilllevelmultiplierics3.py deleted file mode 100644 index 2a21e47c8..000000000 --- a/eos/effects/industrialcommandshipskilllevelmultiplierics3.py +++ /dev/null @@ -1,8 +0,0 @@ -# industrialCommandShipSkillLevelMultiplierICS3 -# -# Used by: -# Skill: Industrial Command Ships -type = "passive" -def handler(fit, src, context): - lvl = src.level - fit.ship.multiplyItemAttr("shipBonusICS3", src.getModifiedItemAttr("skillLevel") * lvl) diff --git a/eos/effects/industrialcommandshipskilllevelmultiplierics4.py b/eos/effects/industrialcommandshipskilllevelmultiplierics4.py deleted file mode 100644 index 368383e2d..000000000 --- a/eos/effects/industrialcommandshipskilllevelmultiplierics4.py +++ /dev/null @@ -1,8 +0,0 @@ -# industrialCommandShipSkillLevelMultiplierICS4 -# -# Used by: -# Skill: Industrial Command Ships -type = "passive" -def handler(fit, src, context): - lvl = src.level - fit.ship.multiplyItemAttr("shipBonusICS4", src.getModifiedItemAttr("skillLevel") * lvl) diff --git a/eos/effects/industrialcommandshipskilllevelmultiplierics5.py b/eos/effects/industrialcommandshipskilllevelmultiplierics5.py deleted file mode 100644 index ef74f8b9a..000000000 --- a/eos/effects/industrialcommandshipskilllevelmultiplierics5.py +++ /dev/null @@ -1,8 +0,0 @@ -# industrialCommandShipSkillLevelMultiplierICS5 -# -# Used by: -# Skill: Industrial Command Ships -type = "passive" -def handler(fit, src, context): - lvl = src.level - fit.ship.multiplyItemAttr("shipBonusICS5", src.getModifiedItemAttr("skillLevel") * lvl) diff --git a/eos/effects/orecapitalshipskillmultiplier5.py b/eos/effects/orecapitalshipskillmultiplier5.py deleted file mode 100644 index ddc733c91..000000000 --- a/eos/effects/orecapitalshipskillmultiplier5.py +++ /dev/null @@ -1,8 +0,0 @@ -# oreCapitalShipSkillMultiplier5 -# -# Used by: -# Skill: Capital Industrial Ships -type = "passive" -def handler(fit, src, context): - lvl = src.level - fit.ship.multiplyItemAttr("shipBonusORECapital5", src.getModifiedItemAttr("skillLevel") * lvl)