-
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
26 changed files
with
100 additions
and
39 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,9 @@ | ||
# battlecruiserDroneSpeed | ||
# | ||
# Used by: | ||
# Ship: Myrmidon | ||
# Ship: Prophecy | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill("Drones"), | ||
"maxVelocity", ship.getModifiedItemAttr("roleBonusCBC")) |
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 @@ | ||
# battlecruiserMETRange | ||
# | ||
# Used by: | ||
# Ships named like: Harbinger (2 of 2) | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Energy Turret"), | ||
"maxRange", ship.getModifiedItemAttr("roleBonusCBC")) | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Energy Turret"), | ||
"falloff", ship.getModifiedItemAttr("roleBonusCBC")) |
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 @@ | ||
# battlecruiserMHTRange | ||
# | ||
# Used by: | ||
# Ships named like: Brutix (2 of 2) | ||
# Ship: Ferox | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Hybrid Turret"), | ||
"maxRange", ship.getModifiedItemAttr("roleBonusCBC")) | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Hybrid Turret"), | ||
"falloff", ship.getModifiedItemAttr("roleBonusCBC")) |
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,9 @@ | ||
# battlecruiserMissileRange | ||
# | ||
# Used by: | ||
# Ships named like: Drake (2 of 2) | ||
# Ship: Cyclone | ||
type = "passive" | ||
def handler(fit, skill, context): | ||
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Missile Launcher Operation"), | ||
"maxVelocity", skill.getModifiedItemAttr("roleBonusCBC")) |
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 @@ | ||
# battlecruiserMPTRange | ||
# | ||
# Used by: | ||
# Ships named like: Hurricane (2 of 2) | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Projectile Turret"), | ||
"maxRange", ship.getModifiedItemAttr("roleBonusCBC")) | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Projectile Turret"), | ||
"falloff", ship.getModifiedItemAttr("roleBonusCBC")) |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# boosterArmorHpPenalty | ||
# | ||
# Used by: | ||
# Implants from group: Booster (12 of 37) | ||
# Implants from group: Booster (12 of 39) | ||
type = "boosterSideEffect" | ||
def handler(fit, booster, context): | ||
fit.ship.boostItemAttr("armorHP", booster.getModifiedItemAttr("boosterArmorHPPenalty")) |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# boosterMaxVelocityPenalty | ||
# | ||
# Used by: | ||
# Implants from group: Booster (12 of 37) | ||
# Implants from group: Booster (12 of 39) | ||
type = "boosterSideEffect" | ||
def handler(fit, booster, context): | ||
fit.ship.boostItemAttr("maxVelocity", booster.getModifiedItemAttr("boosterMaxVelocityPenalty")) |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# boosterShieldCapacityPenalty | ||
# | ||
# Used by: | ||
# Implants from group: Booster (12 of 37) | ||
# Implants from group: Booster (12 of 39) | ||
type = "boosterSideEffect" | ||
def handler(fit, booster, context): | ||
fit.ship.boostItemAttr("shieldCapacity", booster.getModifiedItemAttr("boosterShieldCapacityPenalty")) |
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,8 @@ | ||
# entosisCPUAddition | ||
# | ||
# Used by: | ||
# Modules from group: Entosis Link (2 of 2) | ||
type = "passive" | ||
def handler(fit, module, context): | ||
module.increaseItemAttr("cpu", module.getModifiedItemAttr("entosisCPUAdd")) | ||
|
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,8 @@ | ||
# entosisCPUPenalty | ||
# | ||
# Used by: | ||
# Ships from group: Interceptor (10 of 10) | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.modules.filteredItemIncrease(lambda mod: mod.item.requiresSkill("Infomorph Psychology"), | ||
"entosisCPUAdd", ship.getModifiedItemAttr("entosisCPUPenalty")) |
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,8 @@ | ||
# shipBonusProjectileTrackingMBC2 | ||
# | ||
# Used by: | ||
# Ship: Hurricane Fleet Issue | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Projectile Turret"), | ||
"trackingSpeed", ship.getModifiedItemAttr("shipBonusMBC2"), skill="Minmatar Battlecruiser") |
2 changes: 1 addition & 1 deletion
2
eos/effects/shipbonuswdfgnullspeedeffects.py → eos/effects/shipbonuswdfgnullpenalties.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# shipBonusWDFGnullSpeedEffects | ||
# shipBonusWDFGnullPenalties | ||
# | ||
# Used by: | ||
# Ship: Fiend | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
# shipHybridDmg1CBC2 | ||
# | ||
# Used by: | ||
# Ship: Ferox | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Medium Hybrid Turret"), | ||
"damageMultiplier", ship.getModifiedItemAttr("shipBonusCBC2"), skill="Caldari Battlecruiser") |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# shipShieldEmResistance1CBC2 | ||
# | ||
# Used by: | ||
# Variations of ship: Ferox (2 of 2) | ||
# Ship: Drake | ||
# Ship: Nighthawk | ||
# Variations of ship: Drake (3 of 3) | ||
# Ship: Vulture | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.ship.boostItemAttr("shieldEmDamageResonance", ship.getModifiedItemAttr("shipBonusCBC2"), skill="Caldari Battlecruiser") |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# shipShieldExplosiveResistance1CBC2 | ||
# | ||
# Used by: | ||
# Variations of ship: Ferox (2 of 2) | ||
# Ship: Drake | ||
# Ship: Nighthawk | ||
# Variations of ship: Drake (3 of 3) | ||
# Ship: Vulture | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.ship.boostItemAttr("shieldExplosiveDamageResonance", ship.getModifiedItemAttr("shipBonusCBC2"), skill="Caldari Battlecruiser") |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# shipShieldKineticResistance1CBC2 | ||
# | ||
# Used by: | ||
# Variations of ship: Ferox (2 of 2) | ||
# Ship: Drake | ||
# Ship: Nighthawk | ||
# Variations of ship: Drake (3 of 3) | ||
# Ship: Vulture | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.ship.boostItemAttr("shieldKineticDamageResonance", ship.getModifiedItemAttr("shipBonusCBC2"), skill="Caldari Battlecruiser") |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# shipShieldThermalResistance1CBC2 | ||
# | ||
# Used by: | ||
# Variations of ship: Ferox (2 of 2) | ||
# Ship: Drake | ||
# Ship: Nighthawk | ||
# Variations of ship: Drake (3 of 3) | ||
# Ship: Vulture | ||
type = "passive" | ||
def handler(fit, ship, context): | ||
fit.ship.boostItemAttr("shieldThermalDamageResonance", ship.getModifiedItemAttr("shipBonusCBC2"), skill="Caldari Battlecruiser") |
2 changes: 1 addition & 1 deletion
2
...ikedamagemultiplierbonuspostpercentdamagemultiplierlocationshipmodulesrequiringgunnery.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
Binary file not shown.