Skip to content

Commit c6e0604

Browse files
committed
Merge branch 'regSkills' into preview_proj_skills
2 parents 4596c52 + b32f76c commit c6e0604

791 files changed

Lines changed: 866 additions & 1611 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

eos/effects/blockaderunnercloakcpupercentbonus.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
type = "passive"
66
runTime = "early"
77
def handler(fit, ship, context):
8-
level = fit.character.getSkill("Transport Ships").level
98
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Cloaking Device",
10-
"cpu", ship.getModifiedItemAttr("eliteIndustrialCovertCloakBonus") * level)
9+
"cpu", ship.getModifiedItemAttr("eliteIndustrialCovertCloakBonus"), skill="Transport Ships")

eos/effects/caldarishipecmburstoptimalrangecb3.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
# Ship: Scorpion
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Battleship").level
87
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM Burst",
9-
"ecmBurstRange", ship.getModifiedItemAttr("shipBonusCB3") * level)
8+
"ecmBurstRange", ship.getModifiedItemAttr("shipBonusCB3"), skill="Caldari Battleship")

eos/effects/caldarishipewcapacitorneedcc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
# Ship: Rook
77
type = "passive"
88
def handler(fit, ship, context):
9-
level = fit.character.getSkill("Caldari Cruiser").level
109
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
11-
"capacitorNeed", ship.getModifiedItemAttr("shipBonusCC") * level)
10+
"capacitorNeed", ship.getModifiedItemAttr("shipBonusCC"), skill="Caldari Cruiser")

eos/effects/caldarishipewcapacitorneedcf2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
# Variations of ship: Griffin (2 of 2)
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Frigate").level
87
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
9-
"capacitorNeed", ship.getModifiedItemAttr("shipBonusCF2") * level)
8+
"capacitorNeed", ship.getModifiedItemAttr("shipBonusCF2"), skill="Caldari Frigate")

eos/effects/caldarishipewfalloffrangecb3.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
# Ship: Scorpion
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Battleship").level
87
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
9-
"falloff", ship.getModifiedItemAttr("shipBonusCB3") * level)
8+
"falloff", ship.getModifiedItemAttr("shipBonusCB3"), skill="Caldari Battleship")

eos/effects/caldarishipewfalloffrangecc2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
# Ship: Blackbird
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Cruiser").level
87
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
9-
"falloff", ship.getModifiedItemAttr("shipBonusCC2") * level)
8+
"falloff", ship.getModifiedItemAttr("shipBonusCC2"), skill="Caldari Cruiser")

eos/effects/caldarishipewoptimalrangecb3.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
# Ship: Scorpion
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Battleship").level
87
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
9-
"maxRange", ship.getModifiedItemAttr("shipBonusCB3") * level)
8+
"maxRange", ship.getModifiedItemAttr("shipBonusCB3"), skill="Caldari Battleship")

eos/effects/caldarishipewoptimalrangecc2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
# Ship: Blackbird
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Cruiser").level
87
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
9-
"maxRange", ship.getModifiedItemAttr("shipBonusCC2") * level)
8+
"maxRange", ship.getModifiedItemAttr("shipBonusCC2"), skill="Caldari Cruiser")

eos/effects/caldarishipewstrengthcb.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
# Ship: Scorpion
55
type = "passive"
66
def handler(fit, ship, context):
7-
level = fit.character.getSkill("Caldari Battleship").level
87
for sensorType in ("Gravimetric", "Ladar", "Magnetometric", "Radar"):
98
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM",
109
"scan{0}StrengthBonus".format(sensorType),
11-
ship.getModifiedItemAttr("shipBonusCB") * level)
10+
ship.getModifiedItemAttr("shipBonusCB"), skill="Caldari Battleship")

eos/effects/carrieramarrarmorenergytransferrange3.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
# Ship: Archon
66
type = "passive"
77
def handler(fit, ship, context):
8-
level = fit.character.getSkill("Amarr Carrier").level
98
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Capital Remote Armor Repair Systems"),
10-
"maxRange", ship.getModifiedItemAttr("carrierAmarrBonus3") * level)
9+
"maxRange", ship.getModifiedItemAttr("carrierAmarrBonus3"), skill="Amarr Carrier")
1110
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Capital Capacitor Emission Systems"),
12-
"powerTransferRange", ship.getModifiedItemAttr("carrierAmarrBonus3") * level)
13-
11+
"powerTransferRange", ship.getModifiedItemAttr("carrierAmarrBonus3"), skill="Amarr Carrier")

0 commit comments

Comments
 (0)