Merge branch 'master' into master

This commit is contained in:
Anton Vorobyov
2020-07-30 08:04:09 +03:00
committed by GitHub
12 changed files with 1820 additions and 275 deletions

View File

@@ -6540,23 +6540,6 @@ class Effect2160(BaseEffect):
skill='Command Ships', **kwargs)
class Effect2161(BaseEffect):
"""
eliteBonusCommandShipHybridOptimalCS1
Used by:
Ship: Vulture
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Medium Hybrid Turret'),
'maxRange', ship.getModifiedItemAttr('eliteBonusCommandShips1'),
skill='Command Ships', **kwargs)
class Effect2179(BaseEffect):
"""
shipBonusDroneHitpointsGC2
@@ -11795,23 +11778,6 @@ class Effect3766(BaseEffect):
skill='Interceptors', **kwargs)
class Effect3767(BaseEffect):
"""
eliteBonusCommandShipsHeavyMissileExplosionVelocityCS2
Used by:
Ship: Claymore
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Heavy Missiles'),
'aoeVelocity', ship.getModifiedItemAttr('eliteBonusCommandShips2'),
skill='Command Ships', **kwargs)
class Effect3771(BaseEffect):
"""
armorHPBonusAddPassive
@@ -19585,9 +19551,9 @@ class Effect5342(BaseEffect):
shipArmorRepairing1GBC2
Used by:
Variations of ship: Myrmidon (2 of 2)
Ship: Astarte
Ship: Brutix
Ship: Myrmidon
"""
type = 'passive'
@@ -19670,7 +19636,7 @@ class Effect5351(BaseEffect):
shipShieldBoost1MBC1
Used by:
Variations of ship: Cyclone (2 of 2)
Ship: Cyclone
Ship: Sleipnir
"""
@@ -20823,23 +20789,6 @@ class Effect5497(BaseEffect):
'speed', ship.getModifiedItemAttr('eliteBonusCommandShips1'), skill='Command Ships', **kwargs)
class Effect5498(BaseEffect):
"""
eliteBonusCommandShipsHeavyAssaultMissileExplosionVelocityCS2
Used by:
Ship: Claymore
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Heavy Assault Missiles'),
'aoeVelocity', ship.getModifiedItemAttr('eliteBonusCommandShips2'),
skill='Command Ships', **kwargs)
class Effect5499(BaseEffect):
"""
eliteBonusCommandShipsHeavyAssaultMissileExplosionRadiusCS2
@@ -20891,26 +20840,9 @@ class Effect5501(BaseEffect):
skill='Command Ships', **kwargs)
class Effect5502(BaseEffect):
"""
eliteBonusCommandShipMediumHybridTrackingCS1
Used by:
Ship: Eos
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Medium Hybrid Turret'),
'trackingSpeed', ship.getModifiedItemAttr('eliteBonusCommandShips1'),
skill='Command Ships', **kwargs)
class Effect5503(BaseEffect):
"""
eliteBonusCommandShipHeavyDroneTrackingCS2
eliteBonusCommandShipDroneTrackingCS2
Used by:
Ship: Eos
@@ -20920,28 +20852,11 @@ class Effect5503(BaseEffect):
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Heavy Drone Operation'),
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'),
'trackingSpeed', ship.getModifiedItemAttr('eliteBonusCommandShips2'),
skill='Command Ships', **kwargs)
class Effect5504(BaseEffect):
"""
eliteBonusCommandShipHeavyDroneVelocityCS2
Used by:
Ship: Eos
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Heavy Drone Operation'),
'maxVelocity', ship.getModifiedItemAttr('eliteBonusCommandShips2'),
skill='Command Ships', **kwargs)
class Effect5505(BaseEffect):
"""
eliteBonusCommandShipMediumHybridRoFCS1
@@ -32068,7 +31983,7 @@ class Effect6783(BaseEffect):
Used by:
Ships from group: Carrier (4 of 4)
Ships from group: Combat Battlecruiser (14 of 14)
Ships from group: Command Ship (8 of 8)
Ships from group: Command Ship (4 of 8)
Ships from group: Force Auxiliary (6 of 6)
Ships from group: Supercarrier (6 of 6)
Ships from group: Titan (7 of 7)
@@ -36848,3 +36763,90 @@ class Effect8066(BaseEffect):
def handler(fit, implant, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Vorton Projector Operation'),
'damageMultiplier', implant.getModifiedItemAttr('damageMultiplierBonus'), **kwargs)
class Effect8068(BaseEffect):
"""
shipShieldResistanceBonusMBC1
Used by:
Ship: Claymore
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
damageTypes = ('Em', 'Explosive', 'Kinetic', 'Thermal')
for damageType in damageTypes:
fit.ship.boostItemAttr(f'shield{damageType}DamageResonance', ship.getModifiedItemAttr('shipBonusMBC1'),
skill='Minmatar Battlecruiser', **kwargs)
class Effect8070(BaseEffect):
"""
eliteBonusCommandShipsHeavyHAMvelocityCS2
Used by:
Ship: Claymore
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Heavy Missiles') or
mod.charge.requiresSkill('Heavy Assault Missiles'),
'maxVelocity', ship.getModifiedItemAttr('eliteBonusCommandShips2'),
skill='Command Ships', **kwargs)
class Effect8071(BaseEffect):
"""
eliteBonusCommandShipDroneRangeCS1
Used by:
Ship: Eos
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'),
'maxRange', ship.getModifiedItemAttr('eliteBonusCommandShips1'),
skill='Command Ships', **kwargs)
class Effect8072(BaseEffect):
"""
shipArmorResistanceBonusGBC2
Used by:
Ship: Eos
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
damageTypes = ('Em', 'Explosive', 'Kinetic', 'Thermal')
for damageType in damageTypes:
fit.ship.boostItemAttr(f'armor{damageType}DamageResonance', ship.getModifiedItemAttr('shipBonusGBC2'),
skill='Gallente Battlecruiser', **kwargs)
class Effect8073(BaseEffect):
"""
eliteBonusCommandShipShieldHPCS1
Used by:
Ship: Vulture
"""
type = 'passive'
@staticmethod
def handler(fit, ship, context, projectionRange, **kwargs):
fit.ship.boostItemAttr('shieldCapacity', ship.getModifiedItemAttr('eliteBonusCommandShips1'),
skill='Command Ships', **kwargs)

View File

@@ -90,8 +90,6 @@ class ProjectedView(d.Display):
self.Bind(wx.EVT_LEFT_DCLICK, self.onLeftDoubleClick)
self.Bind(wx.EVT_KEY_UP, self.kbEvent)
self.droneView = gui.builtinAdditionPanes.droneView.DroneView
self.Bind(wx.EVT_CONTEXT_MENU, self.spawnMenu)
self.SetDropTarget(ProjectedViewDrop(self.handleListDrag))
@@ -162,7 +160,7 @@ class ProjectedView(d.Display):
if item.marketGroup is None:
item = item.metaGroup.parent
return (self.droneView.DRONE_ORDER.index(item.marketGroup.name),
return (gui.builtinAdditionPanes.droneView.DRONE_ORDER.index(item.marketGroup.name),
drone.item.name)
@staticmethod

View File

@@ -562,7 +562,10 @@ class FittingView(d.Display):
if sFit.serviceFittingOptions["rackSlots"]:
# flag to know when to add blanks, based on previous slot
slotDivider = None if sFit.serviceFittingOptions["rackLabels"] else self.mods[0].slot
if sFit.serviceFittingOptions["rackLabels"] or len(self.mods) == 0:
slotDivider = None
else:
slotDivider = self.mods[0].slot
# first loop finds where slot dividers must go before modifying self.mods
for i, mod in enumerate(self.mods):

View File

@@ -1,6 +1,6 @@
wxPython == 4.0.6
logbook >= 1.0.0
matplotlib >= 3.1.2
matplotlib == 3.2.2
python-dateutil
requests >= 2.0.0
sqlalchemy >= 1.3.0

View File

@@ -809,11 +809,11 @@ damp:
- 'sd-\d00'
sd:
- '(^| )sd' # Checking only beginning of a word to remove unwanted spam
- 'remote sensor dampener'
- 'sensor dampener'
- '(targeting range|scan resolution) dampening script'
rsd:
- 'rsd'
- 'remote sensor dampener'
- 'sensor dampener'
- 'sd-\d00'
- '(targeting range|scan resolution) dampening script'

View File

@@ -44807,7 +44807,7 @@
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 5503,
"effectName": "eliteBonusCommandShipHeavyDroneTrackingCS2",
"effectName": "eliteBonusCommandShipDroneTrackingCS2",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
@@ -44819,7 +44819,7 @@
"modifiedAttributeID": 160,
"modifyingAttributeID": 999,
"operation": 6,
"skillTypeID": 3441
"skillTypeID": 3436
}
],
"propulsionChance": 0,
@@ -79064,5 +79064,167 @@
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"8068": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 8068,
"effectName": "shipShieldResistanceBonusMBC1",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 271,
"modifyingAttributeID": 748,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 274,
"modifyingAttributeID": 748,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 272,
"modifyingAttributeID": 748,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 273,
"modifyingAttributeID": 748,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"8070": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 8070,
"effectName": "eliteBonusCommandShipsHeavyHAMvelocityCS2",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 37,
"modifyingAttributeID": 999,
"operation": 6,
"skillTypeID": 3324
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 37,
"modifyingAttributeID": 999,
"operation": 6,
"skillTypeID": 25719
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"8071": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 8071,
"effectName": " eliteBonusCommandShipDroneRangeCS1",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 54,
"modifyingAttributeID": 1000,
"operation": 6,
"skillTypeID": 3436
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"8072": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 8072,
"effectName": "shipArmorResistanceBonusGBC2",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 267,
"modifyingAttributeID": 746,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 270,
"modifyingAttributeID": 746,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 268,
"modifyingAttributeID": 746,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 269,
"modifyingAttributeID": 746,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"8073": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 8073,
"effectName": "eliteBonusCommandShipShieldHPCS1",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 263,
"modifyingAttributeID": 1000,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
}
}

View File

@@ -25594,5 +25594,35 @@
},
"55859": {
"3402": 1
},
"55927": {
"3402": 1
},
"55928": {
"3402": 1
},
"55929": {
"3402": 1
},
"55942": {
"3402": 1
},
"55943": {
"3402": 1
},
"55944": {
"3402": 1
},
"55945": {
"3402": 1
},
"55946": {
"3402": 1
},
"55947": {
"3402": 1
},
"55977": {
"3402": 1
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -141559,30 +141559,31 @@
"volume": 0.01
},
"22442": {
"basePrice": 59965600,
"capacity": 400,
"basePrice": 59965600.0,
"capacity": 400.0,
"certificateTemplate": 167,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: CreoDron\r\n\r\nAs the largest drone developer and manufacturer in space, CreoDron has a vested interest in drone carriers. While sacrificing relatively little in the way of defensive capability, the Eos can chew its way through surprisingly strong opponents - provided, of course, that the pilot uses top-of-the-line CreoDron drones.",
"descriptionID": 93919,
"factionID": 500004,
"graphicID": 2925,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 831,
"mass": 13000000,
"mass": 12500000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 8,
"radius": 196,
"radius": 196.0,
"soundID": 20074,
"techLevel": 2,
"typeID": 22442,
"typeName": "Eos",
"typeNameID": 105398,
"variationParentTypeID": 24700,
"volume": 270000,
"volume": 270000.0,
"wreckTypeID": 26520
},
"22443": {
@@ -141602,30 +141603,31 @@
"volume": 0.01
},
"22444": {
"basePrice": 53673600,
"capacity": 475,
"basePrice": 53673600.0,
"capacity": 475.0,
"certificateTemplate": 123,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Boundless Creation\r\n\r\nBoundless Creation's ships are based on the Brutor tribe's philosophy of warfare: simply fit as much firepower onto your ship as possible. Defense systems and electronics arrays therefore tend to take a back seat to sheer annihilative potential.",
"descriptionID": 93921,
"factionID": 500002,
"graphicID": 2912,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 834,
"mass": 12800000,
"mass": 12800000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 2,
"radius": 258,
"radius": 258.0,
"soundID": 20076,
"techLevel": 2,
"typeID": 22444,
"typeName": "Sleipnir",
"typeNameID": 105400,
"variationParentTypeID": 24702,
"volume": 216000,
"volume": 216000.0,
"wreckTypeID": 26542
},
"22445": {
@@ -141645,30 +141647,31 @@
"volume": 0.01
},
"22446": {
"basePrice": 57182600,
"capacity": 400,
"basePrice": 57182600.0,
"capacity": 400.0,
"certificateTemplate": 178,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Ishukone\r\n\r\nMost of the recent designs off their assembly line have provided for a combination that the Ishukone name is becoming known for: great long-range capabilities and shield systems unmatched anywhere else.",
"descriptionID": 93922,
"factionID": 500001,
"graphicID": 2807,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 828,
"mass": 14000000,
"mass": 14000000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 1,
"radius": 215,
"radius": 215.0,
"soundID": 20068,
"techLevel": 2,
"typeID": 22446,
"typeName": "Vulture",
"typeNameID": 105401,
"variationParentTypeID": 16227,
"volume": 252000,
"volume": 252000.0,
"wreckTypeID": 26498
},
"22447": {
@@ -141688,30 +141691,31 @@
"volume": 0.01
},
"22448": {
"basePrice": 56953600,
"capacity": 375,
"basePrice": 56953600.0,
"capacity": 375.0,
"certificateTemplate": 177,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Carthum Conglomerate\r\n\r\nCarthum ships are the very embodiment of the Amarrian warfare philosophy. Possessing sturdy armor and advanced weapons systems, they provide a nice mix of offense and defense. On the other hand, their electronics and shield systems tend to be rather limited.",
"descriptionID": 93916,
"factionID": 500003,
"graphicID": 2926,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 825,
"mass": 13300000,
"mass": 12300000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 4,
"radius": 173,
"radius": 173.0,
"soundID": 20061,
"techLevel": 2,
"typeID": 22448,
"typeName": "Absolution",
"typeNameID": 105395,
"variationParentTypeID": 24696,
"volume": 234000,
"volume": 234000.0,
"wreckTypeID": 26476
},
"22449": {
@@ -141903,30 +141907,31 @@
"volume": 0.01
},
"22466": {
"basePrice": 59062600,
"capacity": 400,
"basePrice": 59062600.0,
"capacity": 400.0,
"certificateTemplate": 180,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Duvolle Labs\r\n\r\nDuvolle Labs manufactures sturdy ships with a good mix of offensive and defensive capabilities. Since the company is one of New Eden's foremost manufacturers of particle blasters, its ships tend to favor turrets and thus have somewhat higher power output than normal.",
"descriptionID": 93917,
"factionID": 500004,
"graphicID": 2798,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 831,
"mass": 12300000,
"mass": 12300000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 8,
"radius": 196,
"radius": 196.0,
"soundID": 20072,
"techLevel": 2,
"typeID": 22466,
"typeName": "Astarte",
"typeNameID": 105396,
"variationParentTypeID": 16229,
"volume": 270000,
"volume": 270000.0,
"wreckTypeID": 26520
},
"22467": {
@@ -141946,30 +141951,31 @@
"volume": 0.01
},
"22468": {
"basePrice": 51354600,
"capacity": 575,
"basePrice": 51354600.0,
"capacity": 575.0,
"certificateTemplate": 162,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Core Complexion Inc.\r\n\r\nCore Complexion's ships are unusual in that they favor electronics and defense over the \"lots of guns\" approach traditionally favored by the Minmatar.",
"descriptionID": 95051,
"factionID": 500002,
"graphicID": 2794,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 834,
"mass": 12500000,
"mass": 12500000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 2,
"radius": 258,
"radius": 258.0,
"soundID": 20076,
"techLevel": 2,
"typeID": 22468,
"typeName": "Claymore",
"typeNameID": 106631,
"variationParentTypeID": 16231,
"volume": 216000,
"volume": 216000.0,
"wreckTypeID": 26542
},
"22469": {
@@ -141989,30 +141995,31 @@
"volume": 0.01
},
"22470": {
"basePrice": 58533600,
"capacity": 700,
"basePrice": 58533600.0,
"capacity": 700.0,
"certificateTemplate": 179,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Kaalakiota\r\n\r\nAs befits one of the largest weapons manufacturers in the known world, Kaalakiota's ships are very combat focused. Favoring the traditional Caldari combat strategy, they are designed around a substantial number of weapons systems, especially missile launchers. However, they have rather weak armor and structure, relying more on shields for protection.",
"descriptionID": 93920,
"factionID": 500001,
"graphicID": 2801,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 828,
"mass": 14810000,
"mass": 13200000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 1,
"radius": 215,
"radius": 215.0,
"soundID": 20068,
"techLevel": 2,
"typeID": 22470,
"typeName": "Nighthawk",
"typeNameID": 105399,
"variationParentTypeID": 24698,
"volume": 252000,
"volume": 252000.0,
"wreckTypeID": 26498
},
"22471": {
@@ -142032,30 +142039,31 @@
"volume": 0.01
},
"22474": {
"basePrice": 58986600,
"capacity": 645,
"basePrice": 58986600.0,
"capacity": 645.0,
"certificateTemplate": 38,
"description": "Command ships are engineered specifically to wreak havoc on a battlefield of many. Sporting advanced command module interfaces, these vessels are more than capable of turning the tide in large engagements. Command ships represent the ultimate in Command Burst efficiency; the boosts they give their comrades in combat make them indispensable assets to any well-rounded fleet.\r\n\r\nDeveloper: Khanid Innovation\r\n\r\nIn addition to robust electronics systems, the Khanid Kingdom's ships possess advanced armor alloys capable of withstanding a great deal of punishment. Generally eschewing the use of turrets, they tend to gear their vessels more towards close-range missile combat.",
"descriptionID": 93918,
"factionID": 500003,
"graphicID": 2804,
"groupID": 540,
"isDynamicType": false,
"isisGroupID": 24,
"marketGroupID": 825,
"mass": 13500000,
"mass": 13500000.0,
"metaGroupID": 2,
"metaLevel": 5,
"portionSize": 1,
"published": true,
"raceID": 4,
"radius": 173,
"radius": 173.0,
"soundID": 20064,
"techLevel": 2,
"typeID": 22474,
"typeName": "Damnation",
"typeNameID": 105397,
"variationParentTypeID": 16233,
"volume": 234000,
"volume": 234000.0,
"wreckTypeID": 26476
},
"22475": {
@@ -538605,6 +538613,7 @@
"mass": 0.5,
"portionSize": 1,
"published": true,
"raceID": 4,
"radius": 1.0,
"typeID": 47182,
"typeName": "Men's Amarr 'Loyalist' T-Shirt",
@@ -538673,6 +538682,7 @@
"mass": 0.5,
"portionSize": 1,
"published": true,
"raceID": 4,
"radius": 1.0,
"typeID": 47186,
"typeName": "Women's Amarr 'Loyalist' T-Shirt",
@@ -585094,8 +585104,8 @@
"radius": 42.0,
"soundID": 20063,
"typeID": 52655,
"typeName": "Tangling Strike Kikimora",
"typeNameID": 551340,
"typeName": "Raznaborg Tangling Kikimora",
"typeNameID": 568843,
"volume": 43000.0,
"wreckTypeID": 52660
},
@@ -621536,14 +621546,18 @@
"55751": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Wearing this beret displays your loyalty to the Amarr Empire, with a simple design and powerful symbolism rising above more than just a fashion statement.",
"descriptionID": 568712,
"groupID": 1092,
"iconID": 24489,
"marketGroupID": 1943,
"mass": 0.5,
"portionSize": 1,
"published": false,
"published": true,
"raceID": 4,
"radius": 1.0,
"typeID": 55751,
"typeName": "55751_Female_hair_HeadWear_Beret_F01_Types_HeadWear_Beret_AmarrFoundationF01.png",
"typeName": "Women's Amarr 'Loyalist' Beret",
"typeNameID": 567325,
"volume": 0.1
},
@@ -621598,14 +621612,18 @@
"55755": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Wearing this beret displays your loyalty to the Amarr Empire, with a simple design and powerful symbolism rising above more than just a fashion statement.",
"descriptionID": 568713,
"groupID": 1092,
"iconID": 24493,
"marketGroupID": 1943,
"mass": 0.5,
"portionSize": 1,
"published": false,
"published": true,
"raceID": 4,
"radius": 1.0,
"typeID": 55755,
"typeName": "55755_Male_hair_HeadWear_Beret_M01_Types_HeadWear_Beret_AmarrFoundationM01.png",
"typeName": "Men's Amarr 'Loyalist' Beret",
"typeNameID": 567333,
"volume": 0.1
},
@@ -622497,7 +622515,7 @@
"55822": {
"basePrice": 10000.0,
"capacity": 0.0,
"description": "This filament allows a fleet containing a single capsuleer to enter an Abyssal Proving Ground for a fight to the death against five other capsuleers.\r\nThe ships allowed to enter this proving ground event are the Coercer, Dragoon, Cormorant, Corax, Catalyst, Algos, Thrasher, Talwar, and Sunesis\r\n\r\nThe proving ground event accessed through this filament will be accessible from July 31st to August 4th, YC122",
"description": "This filament allows a fleet containing a single capsuleer to enter an Abyssal Proving Ground for a fight to the death against four other capsuleers.\r\nThe ships allowed to enter this proving ground event are the Coercer, Dragoon, Cormorant, Corax, Catalyst, Algos, Thrasher, Talwar, and Sunesis\r\n\r\nThe proving ground event accessed through this filament will be accessible from July 31st to August 4th, YC122",
"descriptionID": 567626,
"groupID": 4050,
"iconID": 24497,
@@ -622550,16 +622568,19 @@
"55825": {
"basePrice": 10000.0,
"capacity": 0.0,
"description": "The format for this event will be announced soon.\r\n\r\nThe proving ground event accessed through this filament will be accessible from August 21st to 25th, YC122",
"descriptionID": 568728,
"groupID": 4050,
"iconID": 21928,
"iconID": 24497,
"marketGroupID": 2747,
"mass": 0.0,
"metaLevel": 0,
"portionSize": 1,
"published": false,
"published": true,
"radius": 1.0,
"techLevel": 1,
"typeID": 55825,
"typeName": "Proving Filament 9",
"typeName": "Event 4 Proving Filament",
"typeNameID": 567584,
"volume": 0.1
},
@@ -623932,6 +623953,190 @@
"typeNameID": 567889,
"volume": 1.0
},
"55919": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Empress Jamyl I has been venerated as a saint of the Amarr faith since her death at as the result of a Drifter attack in YC117. It is normal for occupants of the throne of Amarr to be considered major saints once they pass on, particularly as emperors are considered living prophets of the faith. Not all are venerated with the degree of fervor attached to the memory of Empress Jamyl I. Popularly known as \"St. Jamyl the Liberator\" for her \"divine return\" in order to repel a Minmatar invasion of core Amarr worlds in YC110, some Jamylite cults carry their worship of her so far that it treads into heretical territory.",
"descriptionID": 567954,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55919,
"typeName": "TES Jamyl the Liberator",
"typeNameID": 567953,
"volume": 0.0
},
"55920": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Royal Heirs that commit ritual suicide in accordance with the Rite of Shathol'Syn are considered to have sacrificed their lives for the Amarr faith in order to usher in the reign of a new emperor. Such lords and ladies of the Great Houses of the Amarr Empire attain a saintly status by their sacrifice. Royal Heir Yonis Ardishapur was noted throughout his life for considerable piety, tastes approaching the ascetic, and a great concern to spread the Amarr faith and improve the lives of the faithful. Yonis Ardishapur's development of the Ammatar Mandate is considered his greatest achievement by House Ardishapur and is being continued by Lord Arim Ardishapur.",
"descriptionID": 567956,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55920,
"typeName": "TES Yonis the Pious",
"typeNameID": 567955,
"volume": 0.0
},
"55921": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Royal Heirs that commit ritual suicide in accordance with the Rite of Shathol'Syn are considered to have sacrificed their lives for the Amarr faith in order to usher in the reign of a new emperor. Such lords and ladies of the Great Houses of the Amarr Empire attain a saintly status by their sacrifice. Royal Heir Uriam Kador was well-known as a man of deep passions that made him a rather impulsive leader of House Kador. Uriam's most notorious act was to order an incursion into the Gallente Federation by the Kador Fleet in late YC110. The ensuing military disaster and its aftermath greatly diminished the prestige of House Kador, though it has been restored in large part by the efforts of his successor, Lady Hamideh Kador. ",
"descriptionID": 567958,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55921,
"typeName": "TES Uriam of Fiery Heart",
"typeNameID": 567957,
"volume": 0.0
},
"55922": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Royal Heirs that commit ritual suicide in accordance with the Rite of Shathol'Syn are considered to have sacrificed their lives for the Amarr faith in order to usher in the reign of a new emperor. Such lords and ladies of the Great Houses of the Amarr Empire attain a saintly status by their sacrifice. King Garkeh Khanid II's decision to bring the Khanid Kingdom once more under the greater Amarr Empire's dominion led to his being considered a Royal Heir upon the death of Empress Jamyl I. His death was followed a declaration by King Farokh Khanid III that his predecessor be known as \"St. Garkeh of the True Vigil on the Khanid Marches\". A gigantic Grand Basilica is being constructed on Khanid Prime V in the memory of \"Garkeh of the Marches\".",
"descriptionID": 567960,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55922,
"typeName": "TES Garkeh of the Marches",
"typeNameID": 567959,
"volume": 0.0
},
"55923": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Royal Heirs that commit ritual suicide in accordance with the Rite of Shathol'Syn are considered to have sacrificed their lives for the Amarr faith in order to usher in the reign of a new emperor. Such lords and ladies of the Great Houses of the Amarr Empire attain a saintly status by their sacrifice. Royal Heir Aritcio Kor-Azor effectively had two lives in his time as head of House Kor-Azor. The first consisted of his capricious and brutal reign of terror over the Kor-Azor demesne, only curtailed when his depredations on commoners and vassal nobles alike led to severe action by the Order of the Speakers of Truth. His \"second life\" was marked by many acts of generosity and tolerance as head of House Kor-Azor. His personal selection of Lady Ersilia Kor-Azor as successor was in recognition of her great skill as a diplomat and administrator.",
"descriptionID": 567962,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55923,
"typeName": "TES Aritcio the Redeemed",
"typeNameID": 567961,
"volume": 0.0
},
"55924": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Royal Heirs that commit ritual suicide in accordance with the Rite of Shathol'Syn are considered to have sacrificed their lives for the Amarr faith in order to usher in the reign of a new emperor. Such lords and ladies of the Great Houses of the Amarr Empire attain a saintly status by their sacrifice. Royal Heir Merimeth Sarum was forced to wait a long time for confirmation of his status as head of House Sarum due to the circumstances of Jamyl Sarum's \"first death\" and the corrupted court politics of the Karsoth Interregnum. His short reign as official Royal Heir of House Sarum is perhaps most significant for his support for Lord Arrach Sarum as his designated successor.",
"descriptionID": 567964,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55924,
"typeName": "TES Merimeth the Serene",
"typeNameID": 567963,
"volume": 0.0
},
"55925": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Her Most Sublime and Imperial Majesty Catiz I, First Apostle of the True Faith and Sovereign Defender of the Imperial Rite is now considered the head of the Emperor Family, and strictly no longer a member of House Tash-Murkon. Nevertheless, it is a point of pride for the Tash-Murkon that within a relatively short time of their elevation to Royal Family status they have provided an Empress of Holy Amarr. It is particularly notable that House Tash-Murkon has a strong Udorian lineage which they do not seek to conceal. As a result, Empress Catiz I is the first occupant of the Throne of Amarr known to have uncontested Udorian ancestry.",
"descriptionID": 567966,
"graphicID": 2910,
"groupID": 226,
"isDynamicType": false,
"isisGroupID": 4,
"mass": 0.0,
"portionSize": 1,
"published": false,
"raceID": 4,
"radius": 6800.0,
"typeID": 55925,
"typeName": "TES Catiz of Tash-Murkon",
"typeNameID": 567965,
"volume": 0.0
},
"55927": {
"basePrice": 32768.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.\r\n\r\nCerebral accelerators are military grade boosters that significantly increase a pilots skill development for a given window of time. This is achieved by priming the users brain and neural pathways for increased data bandwidth during knowledge transfer.\r\n\r\nCapsuleers using this accelerator can expect a massive increase in neural bandwidth, aiding much more rapid transfer of neural data from skill packs.\r\n\r\nThe only drawback to this accelerator is that capsuleer training renders it ineffective after one use. Depending on the Capsuleer's knowledge of the <a href=showinfo:3405>Biology</a> skill it will cease to function after at least 12 hours once activated, due to natural degradation of the biochemical compounds used to stimulate the users neural activity. The compounds are only guaranteed to function until YC122/08/31.",
"descriptionID": 568275,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 1.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55927,
"typeName": "Serenity Monthly Cerebral Accelerator - 2020.8",
"typeNameID": 568274,
"volume": 1.0
},
"55928": {
"basePrice": 32768.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.\r\n\r\nCerebral accelerators are military grade boosters that significantly increase a pilots skill development for a given window of time. This is achieved by priming the users brain and neural pathways for increased data bandwidth during knowledge transfer.\r\n\r\nCapsuleers using this accelerator can expect a massive increase in neural bandwidth, aiding much more rapid transfer of neural data from skill packs.\r\n\r\nThe only drawback to this accelerator is that capsuleer training renders it ineffective after one use. Depending on the Capsuleer's knowledge of the <a href=showinfo:3405>Biology</a> skill it will cease to function after at least 12 hours once activated, due to natural degradation of the biochemical compounds used to stimulate the users neural activity. The compounds are only guaranteed to function until YC122/09/17.",
"descriptionID": 568432,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 1.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55928,
"typeName": "Serenity August Season Standard Cerebral Accelerator",
"typeNameID": 568431,
"volume": 1.0
},
"55929": {
"basePrice": 32768.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.\r\n\r\nCerebral accelerators are military grade boosters that significantly increase a pilots skill development for a given window of time. This is achieved by priming the users brain and neural pathways for increased data bandwidth during knowledge transfer.\r\n\r\nCapsuleers using this accelerator can expect a massive increase in neural bandwidth, aiding much more rapid transfer of neural data from skill packs.\r\n\r\nThe only drawback to this accelerator is that capsuleer training renders it ineffective after one use. Depending on the Capsuleer's knowledge of the <a href=showinfo:3405>Biology</a> skill it will cease to function after at least 24 hours once activated, due to natural degradation of the biochemical compounds used to stimulate the users neural activity. The compounds are only guaranteed to function until YC122/09/17.",
"descriptionID": 568434,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 1.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55929,
"typeName": "Serenity August Season Advanced Cerebral Accelerator",
"typeNameID": 568433,
"volume": 1.0
},
"5593": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -623951,6 +624156,252 @@
"typeNameID": 101802,
"volume": 5.0
},
"55935": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568445,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55935,
"typeName": "TES Jamyl the Liberator Parade",
"typeNameID": 568444,
"volume": 1.0
},
"55936": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568447,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55936,
"typeName": "TES Yonis the Pious Parade",
"typeNameID": 568446,
"volume": 1.0
},
"55937": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568449,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55937,
"typeName": "TES Uriam of Fiery Heart Parade",
"typeNameID": 568448,
"volume": 1.0
},
"55938": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568451,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55938,
"typeName": "TES Garkeh of the Marches Parade",
"typeNameID": 568450,
"volume": 1.0
},
"55939": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568453,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55939,
"typeName": "TES Aritcio the Redeemed Parade",
"typeNameID": 568452,
"volume": 1.0
},
"55940": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568455,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55940,
"typeName": "TES Merimeth the Serene Parade",
"typeNameID": 568454,
"volume": 1.0
},
"55941": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Fitted with a power flash-battery, this beacon sends out signals throughout the entire solar system.",
"descriptionID": 568457,
"graphicID": 1211,
"groupID": 310,
"mass": 1.0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"typeID": 55941,
"typeName": "TES Catiz of Tash-Murkon Parade",
"typeNameID": 568456,
"volume": 1.0
},
"55942": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568464,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55942,
"typeName": "Standard Armor Skill Accelerator",
"typeNameID": 568463,
"volume": 1.0
},
"55943": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568466,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55943,
"typeName": "Elite Armor Skill Accelerator",
"typeNameID": 568465,
"volume": 1.0
},
"55944": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568469,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55944,
"typeName": "Standard Shield Skill Accelerator",
"typeNameID": 568468,
"volume": 1.0
},
"55945": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568471,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55945,
"typeName": "Elite Shield Skill Accelerator",
"typeNameID": 568470,
"volume": 1.0
},
"55946": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568473,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55946,
"typeName": "Standard Engineering Skill Accelerator",
"typeNameID": 568472,
"volume": 1.0
},
"55947": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568475,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55947,
"typeName": "Elite Engineering Skill Accelerator",
"typeNameID": 568474,
"volume": 1.0
},
"55948": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This SKIN will be applied directly to your character's SKIN collection when redeemed, instead of being placed in your inventory.",
"descriptionID": 568486,
"groupID": 1950,
"mass": 0.0,
"portionSize": 1,
"published": true,
"raceID": 4,
"radius": 1.0,
"typeID": 55948,
"typeName": "Amarr Shuttle Khanid SKIN",
"typeNameID": 568485,
"volume": 0.01
},
"55949": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "This SKIN will be applied directly to your character's SKIN collection when redeemed, instead of being placed in your inventory.",
"descriptionID": 568489,
"groupID": 1950,
"mass": 0.0,
"portionSize": 1,
"published": true,
"raceID": 4,
"radius": 1.0,
"typeID": 55949,
"typeName": "Sigil Khanid SKIN",
"typeNameID": 568488,
"volume": 0.01
},
"5595": {
"basePrice": 0.0,
"capacity": 0.0,
@@ -623989,6 +624440,91 @@
"typeNameID": 101794,
"volume": 5.0
},
"55977": {
"basePrice": 32768.0,
"capacity": 0.0,
"description": "This Cerebral Accelerator is only designed for and available on Serenity.",
"descriptionID": 568692,
"groupID": 303,
"iconID": 10144,
"isDynamicType": false,
"mass": 1.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55977,
"typeName": "Serenity August Season Pass",
"typeNameID": 568691,
"volume": 1.0
},
"55980": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Contains Foundation Day clothing items to demonstrate your faith in the Amarr Empire!",
"descriptionID": 568725,
"groupID": 1194,
"iconID": 24297,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55980,
"typeName": "Amarr Foundation Day Apparel Crate",
"typeNameID": 568724,
"volume": 0.1
},
"55981": {
"basePrice": 0.0,
"capacity": 0.0,
"description": "Contains a Festival Launcher module and a set of Crown Imperial fireworks",
"descriptionID": 568727,
"groupID": 1194,
"iconID": 24297,
"mass": 0.0,
"portionSize": 1,
"published": true,
"radius": 1.0,
"typeID": 55981,
"typeName": "Amarr Foundation Day Fireworks Crate",
"typeNameID": 568726,
"volume": 0.1
},
"55982": {
"basePrice": 10000.0,
"capacity": 0.0,
"description": "The format for this event will be announced soon.\r\n\r\nThe proving ground event accessed through this filament will be accessible from August 28th to September 1st, YC122",
"descriptionID": 568730,
"groupID": 4050,
"iconID": 24501,
"mass": 0.0,
"metaLevel": 0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"techLevel": 1,
"typeID": 55982,
"typeName": "Event 5 Proving Filament",
"typeNameID": 568729,
"volume": 0.1
},
"55983": {
"basePrice": 10000.0,
"capacity": 0.0,
"description": "The format for this event will be announced soon.\r\n\r\nThe proving ground event accessed through this filament will be accessible from September 4th to 8th, YC122",
"descriptionID": 568732,
"groupID": 4050,
"iconID": 24498,
"mass": 0.0,
"metaLevel": 0,
"portionSize": 1,
"published": false,
"radius": 1.0,
"techLevel": 1,
"typeID": 55983,
"typeName": "Event 6 Proving Filament",
"typeNameID": 568731,
"volume": 0.1
},
"5599": {
"basePrice": 0.0,
"capacity": 0.0,

View File

@@ -1,10 +1,10 @@
[
{
"field_name": "client_build",
"field_value": 1769230
"field_value": 1777281
},
{
"field_name": "dump_time",
"field_value": 1594723755
"field_value": 1595924073
}
]

View File

@@ -73,8 +73,8 @@
"text": "bonus to Heavy Missile and Heavy Assault Missile Launcher rate of fire"
},
{
"number": "5%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile velocity"
},
{
"number": "3%",
@@ -90,8 +90,8 @@
"text": "bonus to Heavy Missile and Heavy Assault Missile Launcher rate of fire"
},
{
"number": "7.5%",
"text": "bonus to Shield Booster amount"
"number": "4%",
"text": "bonus to all shield resistances"
}
],
"header": "Minmatar Battlecruiser bonuses (per skill level):"
@@ -120,10 +120,6 @@
"bonuses": [
{
"text": "·Can use two Command Burst modules"
},
{
"number": "100%",
"text": "bonus to Command Burst area of effect range"
}
],
"header": "Role Bonus:"
@@ -140,7 +136,7 @@
"text": "bonus to Medium Hybrid Turret falloff"
},
{
"number": "3%",
"number": "4%",
"text": "bonus to Armored Command and Skirmish Command burst strength and duration"
}
],
@@ -5994,10 +5990,6 @@
"bonuses": [
{
"text": "·Can use two Command Burst modules"
},
{
"number": "100%",
"text": "bonus to Command Burst area of effect range"
}
],
"header": "Role Bonus:"
@@ -6006,7 +5998,7 @@
{
"bonuses": [
{
"number": "7.5%",
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile Launcher rate of fire"
},
{
@@ -6014,7 +6006,7 @@
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion radius"
},
{
"number": "3%",
"number": "4%",
"text": "bonus to Shield Command and Information Command burst strength and duration"
}
],
@@ -8945,11 +8937,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Heavy Drone max velocity and tracking speed"
"text": "bonus to Drone tracking speed"
},
{
"number": "7.5%",
"text": "bonus to Medium Hybrid Turret tracking speed"
"number": "10%",
"text": "bonus to Drone optimal range"
},
{
"number": "3%",
@@ -8965,8 +8957,8 @@
"text": "bonus to Drone hitpoints and damage"
},
{
"number": "7.5%",
"text": "bonus to Armor Repairer amount"
"number": "4%",
"text": "bonus to all armor resistances"
}
],
"header": "Gallente Battlecruiser bonuses (per skill level):"
@@ -8981,10 +8973,6 @@
"bonuses": [
{
"text": "·Can use two Command Burst modules"
},
{
"number": "100%",
"text": "bonus to Command Burst area of effect range"
}
],
"header": "Role Bonus:"
@@ -9001,7 +8989,7 @@
"text": "bonus to Medium Projectile Turret falloff"
},
{
"number": "3%",
"number": "4%",
"text": "bonus to Shield Command and Skirmish Command burst strength and duration"
}
],
@@ -9043,7 +9031,7 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Medium Hybrid Turret optimal range"
"text": "bonus to shield hitpoints"
},
{
"number": "10%",
@@ -9079,10 +9067,6 @@
"bonuses": [
{
"text": "·Can use two Command Burst modules"
},
{
"number": "100%",
"text": "bonus to Command Burst area of effect range"
}
],
"header": "Role Bonus:"
@@ -9099,7 +9083,7 @@
"text": "bonus to Medium Energy Turret rate of fire"
},
{
"number": "3%",
"number": "4%",
"text": "bonus to Armored Command and Information Command burst strength and duration"
}
],

View File

@@ -1 +1 @@
version: v2.23.0
version: v2.24.1