Skip to content

Commit 31b1c94

Browse files
committed
Add AT13 prize ships
1 parent a9fc457 commit 31b1c94

11 files changed

Lines changed: 21 additions & 14 deletions

eos/effects/elitebonusheavyinterdictorswarpdisruptfieldgeneratorwarpscramblerange2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# eliteBonusHeavyInterdictorsWarpDisruptFieldGeneratorWarpScrambleRange2
22
#
33
# Used by:
4-
# Ships from group: Heavy Interdiction Cruiser (4 of 5)
4+
# Ships from group: Heavy Interdiction Cruiser (5 of 5)
55
type = "passive"
66
def handler(fit, ship, context):
77
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Warp Disrupt Field Generator",

eos/effects/interceptor2warpscramblerange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Interceptor2WarpScrambleRange
22
#
33
# Used by:
4-
# Ships from group: Interceptor (5 of 10)
4+
# Ships from group: Interceptor (6 of 10)
55
type = "passive"
66
def handler(fit, ship, context):
77
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "Warp Scrambler",

eos/effects/interceptormwdsignatureradiusbonus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# interceptorMWDSignatureRadiusBonus
22
#
33
# Used by:
4-
# Ships from group: Interceptor (9 of 10)
4+
# Ships from group: Interceptor (10 of 10)
55
type = "passive"
66
def handler(fit, ship, context):
77
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("High Speed Maneuvering"),
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# shipBonusWDFGnullSpeedEffects
2+
#
3+
# Used by:
4+
# Ship: Fiend
5+
runTime = "early"
6+
type = "passive"
7+
def handler(fit, ship, context):
8+
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Propulsion Jamming"),
9+
"speedFactorBonus", ship.getModifiedItemAttr("shipBonusAT"))
10+
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Propulsion Jamming"),
11+
"speedBoostFactorBonus", ship.getModifiedItemAttr("shipBonusAT"))
12+
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill("Propulsion Jamming"),
13+
"massBonusPercentage", ship.getModifiedItemAttr("shipBonusAT"))

eos/effects/shipcappropulsionjamming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# shipCapPropulsionJamming
22
#
33
# Used by:
4-
# Ships from group: Interceptor (9 of 10)
4+
# Ships from group: Interceptor (10 of 10)
55
# Ship: Atron
66
# Ship: Condor
77
# Ship: Executioner

eos/effects/shipshieldemresistancerookie.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# shipShieldEMResistanceRookie
22
#
33
# Used by:
4-
# Ship: Broadsword
4+
# Ships from group: Heavy Interdiction Cruiser (3 of 5)
55
# Ship: Ibis
6-
# Ship: Onyx
76
# Ship: Taipan
87
type = "passive"
98
def handler(fit, ship, context):

eos/effects/shipshieldexplosiveresistancerookie.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# shipShieldExplosiveResistanceRookie
22
#
33
# Used by:
4-
# Ship: Broadsword
4+
# Ships from group: Heavy Interdiction Cruiser (3 of 5)
55
# Ship: Ibis
6-
# Ship: Onyx
76
# Ship: Taipan
87
type = "passive"
98
def handler(fit, ship, context):

eos/effects/shipshieldkineticresistancerookie.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# shipShieldKineticResistanceRookie
22
#
33
# Used by:
4-
# Ship: Broadsword
4+
# Ships from group: Heavy Interdiction Cruiser (3 of 5)
55
# Ship: Ibis
6-
# Ship: Onyx
76
# Ship: Taipan
87
type = "passive"
98
def handler(fit, ship, context):

eos/effects/shipshieldthermalresistancerookie.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# shipShieldThermalResistanceRookie
22
#
33
# Used by:
4-
# Ship: Broadsword
4+
# Ships from group: Heavy Interdiction Cruiser (3 of 5)
55
# Ship: Ibis
6-
# Ship: Onyx
76
# Ship: Taipan
87
type = "passive"
98
def handler(fit, ship, context):

service/market.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,6 @@ def __init__(self):
233233
"Mobile Decoy Unit": False, # Seems to be left over test mod for deployables
234234
"Tournament Micro Jump Unit": False, # Normally seen only on tournament arenas
235235
"Council Diplomatic Shuttle": False, # CSM X celebration]
236-
"Imp": False, # AT13 prize
237-
"Fiend": False, # AT13 prize
238236
}
239237

240238
# do not publish ships that we convert

0 commit comments

Comments
 (0)