diff --git a/eos/effects.py b/eos/effects.py index 434c52e25..5ea8a4132 100644 --- a/eos/effects.py +++ b/eos/effects.py @@ -1301,10 +1301,10 @@ class Effect446(BaseEffect): Implants named like: Capsuleer Defense Augmentation Chip (3 of 3) Implants named like: Festival only 'Rock' SH Dose (4 of 4) Implants named like: Halcyon G Booster (5 of 5) - Implants named like: Nirvana Booster (5 of 5) Implants named like: Serenity Limited 'Hardshell' Dose (3 of 3) Implants named like: Zainou 'Gnome' Shield Management SM (6 of 6) Modules named like: Core Defense Field Extender (8 of 8) + Implant: AIR Nirvana Booster II Implant: Genolution Core Augmentation CA-3 Implant: Sansha Modified 'Gnome' Implant Skill: Shield Management @@ -1326,7 +1326,6 @@ class Effect485(BaseEffect): Implants named like: Halcyon G Booster (5 of 5) Implants named like: Halcyon R Booster (5 of 5) Implants named like: Inherent Implants 'Squire' Capacitor Systems Operation EO (6 of 6) - Implants named like: Wightstorm Rapture Booster (4 of 4) Implants named like: grade Rapture (15 of 18) Modules named like: Capacitor Control Circuit (8 of 8) Implant: AIR Overclocker Booster III @@ -6802,7 +6801,6 @@ class Effect2296(BaseEffect): Used by: Implants named like: Halcyon Y Booster (5 of 5) - Implants named like: Tetrimon Resistance Booster (4 of 4) """ type = 'passive' @@ -7001,7 +6999,6 @@ class Effect2432(BaseEffect): Implants named like: Halcyon Y Booster (5 of 5) Implants named like: Inherent Implants 'Squire' Capacitor Management EM (6 of 6) Implants named like: Mindflood Booster (4 of 4) - Implants named like: Tetrimon Capacitor Booster (4 of 4) Modules named like: Semiconductor Memory Cell (8 of 8) Implant: Antipharmakon Aeolis Implant: Basic Capsuleer Engineering Augmentation Chip @@ -7625,7 +7622,6 @@ class Effect2696(BaseEffect): maxRangeBonusEffectLasers Used by: - Implants named like: Tetrimon Precision Booster (4 of 4) Modules named like: Energy Locus Coordinator (8 of 8) """ @@ -8376,9 +8372,8 @@ class Effect2803(BaseEffect): energyWeaponDamageMultiplyPassive Used by: - Implants named like: Harvest Damage Booster (4 of 4) - Implants named like: Wightstorm Vitarka Booster (4 of 4) Modules named like: Energy Collision Accelerator (8 of 8) + Items from market group: Implants & Boosters > Booster > Booster Slot 17 (96 of 96) """ type = 'passive' @@ -9652,7 +9647,6 @@ class Effect3196(BaseEffect): thermodynamicsSkillDamageBonus Used by: - Implants named like: Wightstorm Sunyata Booster (4 of 4) Skill: Thermodynamics """ @@ -11119,54 +11113,6 @@ class Effect3617(BaseEffect): module.boostItemAttr('signatureRadiusBonus', module.getModifiedChargeAttr('signatureRadiusBonusBonus'), **kwargs) -class Effect3618(BaseEffect): - """ - scriptMassBonusPercentageBonus - - Used by: - Charges from group: Warp Disruption Script (2 of 2) - """ - - runTime = 'early' - type = 'passive' - - @staticmethod - def handler(fit, module, context, projectionRange, **kwargs): - module.boostItemAttr('massBonusPercentage', module.getModifiedChargeAttr('massBonusPercentageBonus'), **kwargs) - - -class Effect3619(BaseEffect): - """ - scriptSpeedBoostFactorBonusBonus - - Used by: - Charges from group: Warp Disruption Script (2 of 2) - """ - - runTime = 'early' - type = 'passive' - - @staticmethod - def handler(fit, module, context, projectionRange, **kwargs): - module.boostItemAttr('speedBoostFactorBonus', module.getModifiedChargeAttr('speedBoostFactorBonusBonus'), **kwargs) - - -class Effect3620(BaseEffect): - """ - scriptSpeedFactorBonusBonus - - Used by: - Charges from group: Warp Disruption Script (2 of 2) - """ - - runTime = 'early' - type = 'passive' - - @staticmethod - def handler(fit, module, context, projectionRange, **kwargs): - module.boostItemAttr('speedFactorBonus', module.getModifiedChargeAttr('speedFactorBonusBonus'), **kwargs) - - class Effect3648(BaseEffect): """ scriptWarpScrambleRangeBonus @@ -18070,8 +18016,6 @@ class Effect5189(BaseEffect): trackingSpeedBonusEffectLasers Used by: - Implants named like: Tetrimon Precision Booster (4 of 4) - Implants named like: Wightstorm Manasikara Booster (4 of 4) Modules named like: Energy Metastasis Adjuster (8 of 8) """ @@ -37654,65 +37598,12 @@ class Effect8264(BaseEffect): skill='Industrial Command Ships', **kwargs) -class Effect8267(BaseEffect): - """ - weaponDisruptorResistanceBonusPassive - - Used by: - Implants named like: Harvest Anti Disruptor Booster (4 of 4) - """ - - type = 'passive' - - @staticmethod - def handler(fit, container, context, projectionRange, **kwargs): - fit.ship.boostItemAttr( - 'weaponDisruptionResistance', - container.getModifiedItemAttr('weaponDisruptionResistanceBonus'), **kwargs) - - - -class Effect8268(BaseEffect): - """ - nosferatuDurationBonusPassive - - Used by: - Implants named like: Harvest Nosferatu Booster (4 of 4) - """ - - type = 'passive' - - @staticmethod - def handler(fit, module, context, projectionRange, **kwargs): - fit.modules.filteredItemBoost( - lambda mod: mod.item.group.name == 'Energy Nosferatu', 'duration', - module.getModifiedItemAttr('durationBonus'), **kwargs) - - -class Effect8269(BaseEffect): - """ - stasisWebifierMaxRangeAddPassive - - Used by: - Implants named like: Harvest Webifier Booster (4 of 4) - """ - - type = 'passive' - - @staticmethod - def handler(fit, module, context, projectionRange, **kwargs): - fit.modules.filteredItemIncrease( - lambda mod: mod.item.group.name == 'Stasis Web', 'maxRange', - module.getModifiedItemAttr('stasisWebRangeAdd'), **kwargs) - - class Effect8270(BaseEffect): """ capacitorWarfareResistanceBonusPassive Used by: Implants named like: Halcyon Y Booster (5 of 5) - Implants named like: Tetrimon Anti Drain Booster (4 of 4) """ type = 'passive' @@ -37775,23 +37666,6 @@ class Effect8279(BaseEffect): skill='Industrial Command Ships', **kwargs) -class Effect8291(BaseEffect): - """ - afterburnerSpeedBoostBonusPassive - - Used by: - Implants named like: Wightstorm Cetana Booster (4 of 4) - """ - - type = 'passive' - - @staticmethod - def handler(fit, booster, context, projectionRange, **kwargs): - fit.modules.filteredItemBoost( - lambda mod: mod.item.requiresSkill('Afterburner'), 'speedFactor', - booster.getModifiedItemAttr('speedFBonus'), **kwargs) - - class Effect8294(BaseEffect): """ industrialCommandBonusDroneOreMiningYield