Update to 829786
This commit is contained in:
5
eos/effects/elitebonusinterdictorsshtrof1.py
Normal file
5
eos/effects/elitebonusinterdictorsshtrof1.py
Normal file
@@ -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
eos/effects/shipbonussmallmissileexplosionradiuscf2.py
Normal file
5
eos/effects/shipbonussmallmissileexplosionradiuscf2.py
Normal file
@@ -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
eos/effects/shipmissilelauncherrofad1.py
Normal file
5
eos/effects/shipmissilelauncherrofad1.py
Normal file
@@ -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
eos/effects/shiprocketrofbonusaf2.py
Normal file
5
eos/effects/shiprocketrofbonusaf2.py
Normal file
@@ -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 not shown.
Reference in New Issue
Block a user