Skip to content

Commit

Permalink
Update to 829786
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann committed Sep 28, 2014
1 parent 3054ac9 commit 973a081
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions eos/effects/elitebonusinterdictorsshtrof1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "passive"
def handler(fit, ship, context):
level = fit.character.getSkill("Interdictors").level
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Small Hybrid Turret"),
"speed", ship.getModifiedItemAttr("eliteBonusInterdictors1") * level)
5 changes: 5 additions & 0 deletions eos/effects/shipbonussmallmissileexplosionradiuscf2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "passive"
def handler(fit, ship, context):
level = fit.character.getSkill("Caldari Frigate").level
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill("Rockets") or mod.charge.requiresSkill("Light Missiles"),
"aoeCloudSize", ship.getModifiedItemAttr("shipBonusCF2") * level)
5 changes: 5 additions & 0 deletions eos/effects/shipmissilelauncherrofad1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "passive"
def handler(fit, ship, context):
level = fit.character.getSkill("Amarr Destroyer").level
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Missile Launcher Operation"),
"speed", ship.getModifiedItemAttr("shipBonusAD1") * level)
5 changes: 5 additions & 0 deletions eos/effects/shiprocketrofbonusaf2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "passive"
def handler(fit, ship, context):
level = fit.character.getSkill("Amarr Frigate").level
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Missile Launcher Rocket",
"speed", ship.getModifiedItemAttr("shipBonus2AF") * level)
Binary file modified staticdata/eve.db
Binary file not shown.

0 comments on commit 973a081

Please sign in to comment.