Update static data and effects to 2228687

This commit is contained in:
Anton Vorobyov
2023-03-10 02:26:12 +06:00
parent b4e115eb7b
commit ba236bcb54
8 changed files with 14077 additions and 1718 deletions

View File

@@ -927,6 +927,8 @@ class Effect244(BaseEffect):
Used by:
Implants named like: Eifyr and Co. 'Rogue' High Speed Maneuvering HS (6 of 6)
Implants named like: Federation Mobility Booster (4 of 4)
Implants named like: Republic Mobility Booster (4 of 4)
Skill: High Speed Maneuvering
"""
@@ -1163,6 +1165,8 @@ class Effect394(BaseEffect):
Implants named like: Agency 'Overclocker' SB Dose (4 of 4)
Implants named like: Grand Prix Booster (5 of 6)
Implants named like: Halcyon R Booster (5 of 5)
Implants named like: Imperial Mobility Booster (4 of 4)
Implants named like: Republic Mobility Booster (4 of 4)
Implants named like: grade Snake (16 of 18)
Modules named like: Auxiliary Thrusters (8 of 8)
Implant: AIR Overclocker Booster II
@@ -1189,9 +1193,11 @@ class Effect395(BaseEffect):
Used by:
Modules from group: Rig Anchor (4 of 4)
Implants named like: Eifyr and Co. 'Rogue' Evasive Maneuvering EM (6 of 6)
Implants named like: Federation Mobility Booster (4 of 4)
Implants named like: Grand Prix Booster (4 of 6)
Implants named like: Halcyon G Booster (5 of 5)
Implants named like: Halcyon Y Booster (5 of 5)
Implants named like: State Mobility Booster (4 of 4)
Implants named like: grade Nomad (10 of 12)
Modules named like: Low Friction Nozzle Joints (8 of 8)
Implant: AIR Agility Booster II
@@ -2403,6 +2409,7 @@ class Effect784(BaseEffect):
Used by:
Implants named like: Halcyon B Booster (5 of 5)
Implants named like: Republic Projection Booster (4 of 4)
Implants named like: Zainou 'Deadeye' Missile Bombardment MB (6 of 6)
Modules named like: Rocket Fuel Cache Partition (8 of 8)
Implant: Antipharmakon Toxot
@@ -2497,6 +2504,7 @@ class Effect856(BaseEffect):
Implants named like: Eifyr and Co. 'Rogue' Warp Drive Speed WS (6 of 6)
Implants named like: Grand Prix Booster (5 of 6)
Implants named like: Halcyon B Booster (5 of 5)
Implants named like: Mobility Booster (16 of 16)
Implants named like: Serenity Limited 'Overclocker' Dose (3 of 3)
Implants named like: grade Ascendancy (10 of 12)
Modules named like: Hyperspatial Velocity Optimizer (8 of 8)
@@ -4191,6 +4199,7 @@ class Effect1395(BaseEffect):
shieldBoostAmplifierPassive
Used by:
Implants named like: Republic Defense Booster (4 of 4)
Implants named like: grade Crystal (15 of 18)
"""
@@ -4352,6 +4361,7 @@ class Effect1445(BaseEffect):
ewSkillRsdMaxRangeBonus
Used by:
Implants named like: Federation Electronics Booster (4 of 4)
Modules named like: Particle Dispersion Projector (8 of 8)
Skill: Long Distance Jamming
"""
@@ -4361,9 +4371,10 @@ class Effect1445(BaseEffect):
@staticmethod
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
penalize = False if 'skill' in context or 'booster' in context else True
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Sensor Linking'),
'maxRange', container.getModifiedItemAttr('rangeSkillBonus') * level,
stackingPenalties='skill' not in context, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect1446(BaseEffect):
@@ -4371,6 +4382,7 @@ class Effect1446(BaseEffect):
ewSkillTpMaxRangeBonus
Used by:
Implants named like: Republic Electronics Booster (4 of 4)
Modules named like: Particle Dispersion Projector (8 of 8)
Skill: Long Distance Jamming
"""
@@ -4391,6 +4403,7 @@ class Effect1448(BaseEffect):
ewSkillTdMaxRangeBonus
Used by:
Implants named like: Imperial Electronics Booster (4 of 4)
Modules named like: Particle Dispersion Projector (8 of 8)
Skill: Long Distance Jamming
"""
@@ -4400,9 +4413,10 @@ class Effect1448(BaseEffect):
@staticmethod
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
penalize = False if 'skill' in context or 'booster' in context else True
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Weapon Disruptor',
'maxRange', container.getModifiedItemAttr('rangeSkillBonus') * level,
stackingPenalties='skill' not in context, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect1449(BaseEffect):
@@ -4410,15 +4424,18 @@ class Effect1449(BaseEffect):
ewSkillRsdFallOffBonus
Used by:
Implants named like: Federation Electronics Booster (4 of 4)
Skill: Frequency Modulation
"""
type = 'passive'
@staticmethod
def handler(fit, skill, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Sensor Linking'),
'falloffEffectiveness', skill.getModifiedItemAttr('falloffBonus') * skill.level, **kwargs)
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
fit.modules.filteredItemBoost(
lambda mod: mod.item.requiresSkill('Sensor Linking'),
'falloffEffectiveness', container.getModifiedItemAttr('falloffBonus') * level, **kwargs)
class Effect1450(BaseEffect):
@@ -4426,15 +4443,17 @@ class Effect1450(BaseEffect):
ewSkillTpFallOffBonus
Used by:
Implants named like: Republic Electronics Booster (4 of 4)
Skill: Frequency Modulation
"""
type = 'passive'
@staticmethod
def handler(fit, skill, context, projectionRange, **kwargs):
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Target Painter',
'falloffEffectiveness', skill.getModifiedItemAttr('falloffBonus') * skill.level, **kwargs)
'falloffEffectiveness', container.getModifiedItemAttr('falloffBonus') * level, **kwargs)
class Effect1451(BaseEffect):
@@ -4442,15 +4461,17 @@ class Effect1451(BaseEffect):
ewSkillTdFallOffBonus
Used by:
Implants named like: Imperial Electronics Booster (4 of 4)
Skill: Frequency Modulation
"""
type = 'passive'
@staticmethod
def handler(fit, skill, context, projectionRange, **kwargs):
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Weapon Disruptor',
'falloffEffectiveness', skill.getModifiedItemAttr('falloffBonus') * skill.level, **kwargs)
'falloffEffectiveness', container.getModifiedItemAttr('falloffBonus') * level, **kwargs)
class Effect1452(BaseEffect):
@@ -4458,6 +4479,7 @@ class Effect1452(BaseEffect):
ewSkillEwMaxRangeBonus
Used by:
Implants named like: State Electronics Booster (4 of 4)
Implants named like: grade Centurion (10 of 12)
Modules named like: Particle Dispersion Projector (8 of 8)
Implant: Serenity YC122.9 Season Booster - EW Range
@@ -4479,15 +4501,17 @@ class Effect1453(BaseEffect):
ewSkillEwFallOffBonus
Used by:
Implants named like: State Electronics Booster (4 of 4)
Skill: Frequency Modulation
"""
type = 'passive'
@staticmethod
def handler(fit, skill, context, projectionRange, **kwargs):
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'ECM',
'falloffEffectiveness', skill.getModifiedItemAttr('falloffBonus') * skill.level, **kwargs)
'falloffEffectiveness', container.getModifiedItemAttr('falloffBonus') * level, **kwargs)
class Effect1472(BaseEffect):
@@ -4495,6 +4519,7 @@ class Effect1472(BaseEffect):
missileSkillAoeCloudSizeBonus
Used by:
Implants named like: State Application Booster (4 of 4)
Implants named like: Zainou 'Deadeye' Guided Missile Precision GP (6 of 6)
Modules named like: Warhead Rigor Catalyst (8 of 8)
Skill: Guided Missile Precision
@@ -4505,7 +4530,7 @@ class Effect1472(BaseEffect):
@staticmethod
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
penalize = False if 'skill' in context or 'implant' in context else True
penalize = False if 'skill' in context or 'implant' in context or 'booster' in context else True
fit.modules.filteredChargeBoost(lambda mod: mod.charge.requiresSkill('Missile Launcher Operation'),
'aoeCloudSize', container.getModifiedItemAttr('aoeCloudSizeBonus') * level,
stackingPenalties=penalize, **kwargs)
@@ -4688,6 +4713,7 @@ class Effect1590(BaseEffect):
Used by:
Implants named like: Halcyon G Booster (5 of 5)
Implants named like: Republic Application Booster (4 of 4)
Implants named like: Zainou 'Deadeye' Target Navigation Prediction TN (6 of 6)
Modules named like: Warhead Flare Catalyst (8 of 8)
Skill: Target Navigation Prediction
@@ -5277,6 +5303,7 @@ class Effect1764(BaseEffect):
missileSkillMissileProjectileVelocityBonus
Used by:
Implants named like: State Projection Booster (4 of 4)
Implants named like: Zainou 'Deadeye' Missile Projection MP (6 of 6)
Modules named like: Hydraulic Bay Thrusters (8 of 8)
Skill: Missile Projection
@@ -6801,6 +6828,7 @@ class Effect2296(BaseEffect):
Used by:
Implants named like: Halcyon Y Booster (5 of 5)
Implants named like: Imperial Defense Booster (4 of 4)
"""
type = 'passive'
@@ -6823,6 +6851,7 @@ class Effect2297(BaseEffect):
Used by:
Implants named like: Halcyon B Booster (5 of 5)
Implants named like: State Defense Booster (4 of 4)
"""
type = 'passive'
@@ -7569,6 +7598,7 @@ class Effect2693(BaseEffect):
falloffBonusEffectLasers
Used by:
Implants named like: Imperial Projection Booster (4 of 4)
Modules named like: Energy Ambit Extension (8 of 8)
"""
@@ -7576,9 +7606,10 @@ class Effect2693(BaseEffect):
@staticmethod
def handler(fit, module, context, projectionRange, **kwargs):
penalize = False if 'booster' in context else True
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Energy Weapon',
'falloff', module.getModifiedItemAttr('falloffBonus'),
stackingPenalties=True, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect2694(BaseEffect):
@@ -7586,6 +7617,8 @@ class Effect2694(BaseEffect):
falloffBonusEffectHybrids
Used by:
Implants named like: Federation Projection Booster (4 of 4)
Implants named like: State Projection Booster (4 of 4)
Modules named like: Hybrid Ambit Extension (8 of 8)
"""
@@ -7604,6 +7637,7 @@ class Effect2695(BaseEffect):
falloffBonusEffectProjectiles
Used by:
Implants named like: Republic Projection Booster (4 of 4)
Modules named like: Projectile Ambit Extension (8 of 8)
"""
@@ -7622,6 +7656,7 @@ class Effect2696(BaseEffect):
maxRangeBonusEffectLasers
Used by:
Implants named like: Imperial Projection Booster (4 of 4)
Modules named like: Energy Locus Coordinator (8 of 8)
"""
@@ -7640,6 +7675,8 @@ class Effect2697(BaseEffect):
maxRangeBonusEffectHybrids
Used by:
Implants named like: Federation Projection Booster (4 of 4)
Implants named like: State Projection Booster (4 of 4)
Modules named like: Hybrid Locus Coordinator (8 of 8)
"""
@@ -7658,6 +7695,7 @@ class Effect2698(BaseEffect):
maxRangeBonusEffectProjectiles
Used by:
Implants named like: Republic Projection Booster (4 of 4)
Modules named like: Projectile Locus Coordinator (8 of 8)
"""
@@ -8302,6 +8340,7 @@ class Effect2798(BaseEffect):
projectileWeaponDamageMultiplyPassive
Used by:
Implants named like: Republic Damage Booster (4 of 4)
Modules named like: Projectile Collision Accelerator (8 of 8)
"""
@@ -8354,6 +8393,8 @@ class Effect2802(BaseEffect):
hybridWeaponDamageMultiplyPassive
Used by:
Implants named like: Federation Damage Booster (4 of 4)
Implants named like: State Damage Booster (4 of 4)
Modules named like: Hybrid Collision Accelerator (8 of 8)
"""
@@ -8372,8 +8413,8 @@ class Effect2803(BaseEffect):
energyWeaponDamageMultiplyPassive
Used by:
Implants named like: Imperial Damage Booster (4 of 4)
Modules named like: Energy Collision Accelerator (8 of 8)
Items from market group: Implants & Boosters > Booster > Booster Slot 17 (96 of 96)
"""
type = 'passive'
@@ -8553,6 +8594,8 @@ class Effect2851(BaseEffect):
missileDMGBonusPassive
Used by:
Implants named like: Republic Damage Booster (4 of 4)
Implants named like: State Damage Booster (4 of 4)
Modules named like: Warhead Calefaction Catalyst (8 of 8)
"""
@@ -10203,6 +10246,8 @@ class Effect3379(BaseEffect):
Used by:
Implants named like: Eifyr and Co. 'Rogue' Fuel Conservation FC (6 of 6)
Implants named like: Imperial Mobility Booster (4 of 4)
Implants named like: State Mobility Booster (4 of 4)
"""
type = 'passive'
@@ -13495,6 +13540,7 @@ class Effect4162(BaseEffect):
Used by:
Modules from group: Scan Probe Launcher (4 of 7)
Implants named like: Electronics Booster (16 of 16)
Implants named like: Halcyon G Booster (5 of 5)
Implants named like: Poteque 'Prospector' Astrometric Rangefinding AR (3 of 3)
Implants named like: Poteque 'Prospector' Sharpeye (2 of 2)
@@ -16024,6 +16070,7 @@ class Effect4817(BaseEffect):
salvagerModuleDurationReduction
Used by:
Implants named like: Electronics Booster (16 of 16)
Implant: Poteque 'Prospector' Environmental Analysis EY-1005
"""
@@ -18000,6 +18047,8 @@ class Effect5188(BaseEffect):
trackingSpeedBonusEffectHybrids
Used by:
Implants named like: Federation Application Booster (4 of 4)
Implants named like: State Application Booster (4 of 4)
Modules named like: Hybrid Metastasis Adjuster (8 of 8)
"""
@@ -18018,6 +18067,7 @@ class Effect5189(BaseEffect):
trackingSpeedBonusEffectLasers
Used by:
Implants named like: Imperial Application Booster (4 of 4)
Modules named like: Energy Metastasis Adjuster (8 of 8)
"""
@@ -18036,6 +18086,7 @@ class Effect5190(BaseEffect):
trackingSpeedBonusEffectProjectiles
Used by:
Implants named like: Republic Application Booster (4 of 4)
Modules named like: Projectile Metastasis Adjuster (8 of 8)
"""
@@ -30097,6 +30148,8 @@ class Effect6667(BaseEffect):
Used by:
Implants named like: Black Market 'Valdimar' Drone Navigation DN (3 of 3)
Implants named like: Federation Application Booster (4 of 4)
Implants named like: Imperial Application Booster (4 of 4)
Skill: Drone Navigation
"""
@@ -30790,6 +30843,8 @@ class Effect6708(BaseEffect):
armorRepairAmountBonusSubcap
Used by:
Implants named like: Federation Defense Booster (4 of 4)
Implants named like: Republic Defense Booster (4 of 4)
Implants named like: grade Asklepian (15 of 18)
"""
@@ -35123,7 +35178,9 @@ class Effect7176(BaseEffect):
skillBonusDroneInterfacingNotFighters
Used by:
Implants named like: Federation Damage Booster (4 of 4)
Implants named like: Halcyon G Booster (5 of 5)
Implants named like: Imperial Damage Booster (4 of 4)
Implant: CreoDron 'Bumblebee' Drone Tuner T10-5D
Implant: CreoDron 'Yellowjacket' Drone Tuner D5-10T
"""
@@ -35142,6 +35199,8 @@ class Effect7177(BaseEffect):
Used by:
Implants named like: Drone Tuner (4 of 4)
Implants named like: Federation Projection Booster (4 of 4)
Implants named like: Imperial Projection Booster (4 of 4)
"""
type = 'passive'
@@ -38004,6 +38063,24 @@ class Effect8364(BaseEffect):
type = 'active'
class Effect8366(BaseEffect):
"""
modifyHullResonancePostPercentpassive
Used by:
Implants named like: Federation Defense Booster (4 of 4)
"""
type = 'passive'
@staticmethod
def handler(fit, src, context, projectionRange, **kwargs):
for dmgType in ('em', 'thermal', 'kinetic', 'explosive'):
fit.ship.boostItemAttr(
f'{dmgType}DamageResonance', src.getModifiedItemAttr('hullDamageResistanceBonus'), **kwargs)
class Effect8372(BaseEffect):
"""
fleetCompressionLogisticsRangeBonus
@@ -38125,7 +38202,9 @@ class Effect8477(BaseEffect):
droneTrackingBonusPassive
Used by:
Implants named like: Federation Application Booster (4 of 4)
Implants named like: Halcyon R Booster (5 of 5)
Implants named like: Imperial Application Booster (4 of 4)
"""
type = 'passive'
@@ -38160,7 +38239,9 @@ class Effect8479(BaseEffect):
droneOptimalFalloffBonusPassive
Used by:
Implants named like: Federation Projection Booster (4 of 4)
Implants named like: Halcyon Y Booster (5 of 5)
Implants named like: Imperial Projection Booster (4 of 4)
"""
type = 'passive'

View File

@@ -28377,6 +28377,63 @@
"published": 1,
"useBasePrice": 0
},
"4547": {
"anchorable": 0,
"anchored": 1,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4547,
"groupName_de": "Interstellar Shipcaster Beacon",
"groupName_en-us": "Interstellar Shipcaster Beacon",
"groupName_es": "Interstellar Shipcaster Beacon",
"groupName_fr": "Interstellar Shipcaster Beacon",
"groupName_it": "Interstellar Shipcaster Beacon",
"groupName_ja": "Interstellar Shipcaster Beacon",
"groupName_ko": "Interstellar Shipcaster Beacon",
"groupName_ru": "Interstellar Shipcaster Beacon",
"groupName_zh": "Interstellar Shipcaster Beacon",
"groupNameID": 647116,
"published": 0,
"useBasePrice": 0
},
"4548": {
"anchorable": 0,
"anchored": 1,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4548,
"groupName_de": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_en-us": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_es": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_fr": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_it": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_ja": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_ko": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_ru": "Interstellar Shipcaster Beacon Construction Structure",
"groupName_zh": "Interstellar Shipcaster Beacon Construction Structure",
"groupNameID": 647117,
"published": 0,
"useBasePrice": 0
},
"4549": {
"anchorable": 0,
"anchored": 1,
"categoryID": 2,
"fittableNonSingleton": 0,
"groupID": 4549,
"groupName_de": "Interstellar Shipcaster",
"groupName_en-us": "Interstellar Shipcaster",
"groupName_es": "Interstellar Shipcaster",
"groupName_fr": "Interstellar Shipcaster",
"groupName_it": "Interstellar Shipcaster",
"groupName_ja": "Interstellar Shipcaster",
"groupName_ko": "Interstellar Shipcaster",
"groupName_ru": "Interstellar Shipcaster",
"groupName_zh": "Interstellar Shipcaster",
"groupNameID": 647118,
"published": 0,
"useBasePrice": 0
},
"350858": {
"anchorable": 0,
"anchored": 0,

View File

@@ -28367,5 +28367,11 @@
},
"76320": {
"25863": 1
},
"76373": {
"3386": 1
},
"76941": {
"21718": 1
}
}

View File

@@ -757849,10 +757849,6 @@
"attributeID": 633,
"value": 5.0
},
{
"attributeID": 846,
"value": 10.0
},
{
"attributeID": 1907,
"value": 10.0

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +1,10 @@
[
{
"field_name": "client_build",
"field_value": 2218819
"field_value": 2228687
},
{
"field_name": "dump_time",
"field_value": 1677065134
"field_value": 1678389224
}
]

View File

@@ -53148,7 +53148,7 @@
"text": "reduction in citadel service module fuel consumption"
},
{
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints and an extra reinforcement cycle"
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints."
},
{
"text": "·This structure requires an Astrahus Upwell Quantum Core to be installed for anchoring to complete"
@@ -53211,7 +53211,7 @@
"text": "reduction in citadel service module fuel consumption"
},
{
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints and an extra reinforcement cycle"
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints."
},
{
"text": "·This structure requires an Astrahus Upwell Quantum Core to be installed for anchoring to complete"
@@ -53825,7 +53825,7 @@
"text": "·This structure can operate Moon Drill Service Modules and engage in moon mining when deployed at a designated Moon Mining Beacon"
},
{
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints and an extra reinforcement cycle."
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints."
},
{
"text": "·This structure requires an Athanor Upwell Quantum Core to be installed for anchoring to complete"
@@ -53918,7 +53918,7 @@
"text": "·This structure can operate Moon Drill Service Modules and engage in moon mining when deployed at a designated Moon Mining Beacon"
},
{
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints and an extra reinforcement cycle."
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints."
},
{
"text": "·This structure requires an Athanor Upwell Quantum Core to be installed for anchoring to complete"
@@ -94862,22 +94862,22 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "Bonus auf die Effektivität des Stasisnetzes von Stasisnetz-Drohnen"
},
{
"number": "250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "Bonus auf die HP von Stasisnetz-Drohnen"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "Bonus auf die Maximalgeschwindigkeit von Stasisnetz-Drohnen"
},
{
"number": "50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "Reduktion der Erhöhung des Signaturradius durch Mikrowarpantrieb"
},
{
"text": Can fit Assault Damage Controls"
"text": Kann Angriffsschadensregulierer ausrüsten"
}
],
"header": "Funktionsbonus:"
@@ -94887,11 +94887,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "Bonus auf die Feuerrate von leichten Lenkwaffen und Raketenwerfern"
},
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "Bonus auf die Explosionsgeschwindigkeit von leichten Lenkwaffen und Raketen"
}
],
"header": "Assault Frigates Boni (je Skillstufe):"
@@ -94900,11 +94900,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "Bonus auf den Schaden von leichten Lenkwaffen und Raketen"
},
{
"number": "7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "Bonus auf die Leistung von Schildboostern und die Reparaturmenge von Panzerungsreparatursystemen"
}
],
"header": "Minmatar Frigate Boni (je Skillstufe):"
@@ -94970,22 +94970,22 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "de bonificación a la efectividad de la red ralentizadora de los drones de red ralentizadora."
},
{
"number": "250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "de bonificación a los puntos de vida de los drones de red ralentizadora."
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "de bonificación a la velocidad máxima de los drones de red ralentizadora."
},
{
"number": "50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "de reducción de la penalización de radio de la señal del motor de microwarp."
},
{
"text": Can fit Assault Damage Controls"
"text": Es posible equipar controles de daños por asalto."
}
],
"header": "Bonificación por función:"
@@ -94995,11 +94995,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "de bonificación a la cadencia de tiro de los lanzamisiles ligeros y los lanzacohetes."
},
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "de bonificación a la velocidad de explosión de los misiles ligeros y los cohetes."
}
],
"header": "Bonificaciones de Fragatas de asalto (por nivel de habilidad):"
@@ -95008,11 +95008,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "de bonificación al daño de los misiles ligeros y los cohetes."
},
{
"number": "7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "de bonificación a la eficiencia de los potenciadores de escudo y los reparadores de blindaje."
}
],
"header": "Bonificaciones de Fragata minmatariana (por nivel de habilidad):"
@@ -95024,22 +95024,22 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "de bonus d'efficacité des générateurs de stase des drones de stase"
},
{
"number": "250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "de bonus de points de vie des drones de stase"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "de bonus pour la vitesse maximale des drones de stase"
},
{
"number": "50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "de réduction de la pénalité du rayon de signature du micropropulseur de warp"
},
{
"text": Can fit Assault Damage Controls"
"text": Peut être équipé des contrôles des dégâts d'assaut"
}
],
"header": "Bonus de rôle :"
@@ -95049,11 +95049,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "de bonus à la cadence de tir des lance-missiles légers et des lance-roquettes"
},
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "de bonus à la vitesse d'explosion des missiles légers et des roquettes"
}
],
"header": " Bonus (par niveau de compétence) Frégates dassaut :"
@@ -95062,11 +95062,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "de bonus aux dégâts des missiles légers et des roquettes"
},
{
"number": "7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "de bonus aux capacités du booster de bouclier et du réparateur de blindage"
}
],
"header": " Bonus (par niveau de compétence) Frégate minmatar :"
@@ -95132,22 +95132,22 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "ステイシスウェブドローンのステイシスウェビファイヤーの効果にボーナス"
},
{
"number": "250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "ステイシスウェブドローンのヒットポイントにボーナス"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "ステイシスウェブドローンの最大速度にボーナス"
},
{
"number": "50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "マイクロワープドライブのシグネチャ半径ペナルティが減少"
},
{
"text": Can fit Assault Damage Controls"
"text": アサルトダメージ制御を装備可能"
}
],
"header": "性能ボーナス:"
@@ -95157,11 +95157,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "ライトミサイルおよびロケットランチャーの発射速度が上昇"
},
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "ライトミサイルおよびロケットの爆発速度上昇"
}
],
"header": "強襲型フリゲートボーナス(スキルレベルごとに):"
@@ -95170,11 +95170,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "ライトミサイルおよびロケットのダメージにボーナス"
},
{
"number": "7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "シールドブースターおよびアーマーリペアラの回復量増加"
}
],
"header": "ミンマターフリゲートボーナス(スキルレベルごとに):"
@@ -95186,22 +95186,22 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "스테이시스 웹 드론의 스테이시스 웹 생성기 효과 증가"
},
{
"number": "250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "스테이시스 웹 드론 내구도 증가"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "스테이시스 웹 드론 최대속도 증가"
},
{
"number": "50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "마이크로 워프 드라이브 시그니처 반경 페널티 감소"
},
{
"text": Can fit Assault Damage Controls"
"text": 어썰트 데미지 컨트롤 장착가능"
}
],
"header": "역할 보너스:"
@@ -95211,11 +95211,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "라이트 미사일 및 로켓 런처 연사속도 증가"
},
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "라이트 미사일 및 로켓 폭발속도 증가"
}
],
"header": "어썰트 프리깃 보너스 (스킬 레벨당):"
@@ -95224,11 +95224,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "라이트 미사일 및 로켓 피해량 증가"
},
{
"number": "7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "실드 부스터 및 장갑수리 장치 회복량 증가"
}
],
"header": "민마타 프리깃 보너스 (스킬 레벨당):"
@@ -95240,22 +95240,22 @@
"bonuses": [
{
"number": "на 500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "бонус к эффективности стазис-индукторов дронов стазис-индукции"
},
{
"number": "на 250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "бонус к запасу прочности дронов стазис-индукции"
},
{
"number": "на 50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "бонус к максимальной скорости дронов стазис-индукции"
},
{
"number": "на 50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "уменьшение влияния микроварп-ускорителей на размер сигнатуры корабля"
},
{
"text": Can fit Assault Damage Controls"
"text": Позволяет установить ударные модули боевой живучести"
}
],
"header": "Профильные особенности проекта:"
@@ -95265,11 +95265,11 @@
"bonuses": [
{
"number": "на 7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "бонус к скорострельности лёгких ракет и ракетных установок"
},
{
"number": "на 7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "бонус к скорости распространения взрыва легкой ракеты и ракеты"
}
],
"header": "За каждую степень освоения навыка Ударные фрегаты:"
@@ -95278,11 +95278,11 @@
"bonuses": [
{
"number": "на 7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "бонус к урону лёгких ракет и ракет"
},
{
"number": "на 7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "бонус к эффективности модуля накачки щитов и установки ремонта брони"
}
],
"header": "За каждую степень освоения навыка Минматарские фрегаты:"
@@ -95294,22 +95294,22 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "停滞缠绕无人机停滞缠绕光束效果加成"
},
{
"number": "250%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "停滞缠绕无人机HP加成"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "停滞缠绕无人机最大速度加成"
},
{
"number": "50%",
"text": "reduction in Microwarpdrive signature radius penalty"
"text": "微型跃迁推进器的信号半径惩罚减少"
},
{
"text": Can fit Assault Damage Controls"
"text": 可以装配突击型损伤控制装备"
}
],
"header": "特有加成:"
@@ -95319,11 +95319,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket Launcher rate of fire"
"text": "轻型导弹和火箭发射器射速加成"
},
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket explosion velocity"
"text": "轻型导弹和火箭爆炸速度加成"
}
],
"header": "突击护卫舰操作每升一级:"
@@ -95332,11 +95332,11 @@
"bonuses": [
{
"number": "7.5%",
"text": "bonus to Light Missile and Rocket damage"
"text": "轻型导弹和火箭伤害加成"
},
{
"number": "7.5%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "护盾回充增量器回充量和装甲维修器维修量加成"
}
],
"header": "米玛塔尔护卫舰操作每升一级:"
@@ -104045,18 +104045,18 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "Bonus auf die Effektivität des Stasisnetzes von Stasisnetz-Drohnen"
},
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "Bonus auf die HP von Stasisnetz-Drohnen"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "Bonus auf die Maximalgeschwindigkeit von Stasisnetz-Drohnen"
},
{
"text": Can fit Assault Damage Controls"
"text": Kann Angriffsschadensregulierer ausrüsten"
}
],
"header": "Funktionsbonus:"
@@ -104066,11 +104066,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "Bonus auf den Schaden von leichten Lenkwaffen, schweren Lenkwaffen und schweren Angriffslenkwaffen"
},
{
"number": "10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "Bonus auf die Leistung von Schildboostern und die Reparaturmenge von Panzerungsreparatursystemen"
}
],
"header": "Minmatar Cruiser Boni (je Skillstufe):"
@@ -104079,11 +104079,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "Bonus auf die Explosionsgeschwindigkeit von schweren Lenkwaffen und schweren Angriffslenkwaffen"
},
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "Bonus auf die Feuerrate von Werfern für leichte Lenkwaffen, schwere Lenkwaffen sowie schwere Angriffslenkwaffen"
}
],
"header": "Heavy Assault Cruisers Boni (je Skillstufe):"
@@ -104145,18 +104145,18 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "de bonificación a la efectividad de la red ralentizadora de los drones de red ralentizadora."
},
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "de bonificación a los puntos de vida de los drones de red ralentizadora."
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "de bonificación a la velocidad máxima de los drones de red ralentizadora."
},
{
"text": Can fit Assault Damage Controls"
"text": Es posible equipar controles de daños por asalto."
}
],
"header": "Bonificación por función:"
@@ -104166,11 +104166,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "de bonificación al daño de los misiles ligeros, los misiles pesados y los misiles de asalto pesados."
},
{
"number": "10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "de bonificación a la eficiencia de los potenciadores de escudo y los reparadores de blindaje."
}
],
"header": "Bonificaciones de Crucero minmatariano (por nivel de habilidad):"
@@ -104179,11 +104179,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "de bonificación a la velocidad de explosión de los misiles pesados y los misiles de asalto pesados."
},
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "de bonificación a la cadencia de tiro de los lanzamisiles ligeros, los lanzamisiles pesados y los lanzamisiles de asalto pesados."
}
],
"header": "Bonificaciones de Cruceros de asalto pesados (por nivel de habilidad):"
@@ -104195,18 +104195,18 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "de bonus d'efficacité des générateurs de stase des drones de stase"
},
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "de bonus de points de vie des drones de stase"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "de bonus pour la vitesse maximale des drones de stase"
},
{
"text": Can fit Assault Damage Controls"
"text": Peut être équipé des contrôles des dégâts d'assaut"
}
],
"header": "Bonus de rôle :"
@@ -104216,11 +104216,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "de bonus aux dégâts des missiles légers, missiles lourds et missiles d'assaut lourds"
},
{
"number": "10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "de bonus aux capacités du booster de bouclier et du réparateur de blindage"
}
],
"header": " Bonus (par niveau de compétence) Croiseur minmatar :"
@@ -104229,11 +104229,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "de bonus à la vitesse d'explosion des missiles lourds et des missiles d'assaut lourds"
},
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "de bonus de cadence de tir des lance-missiles légers, des lance-missiles lourds et des lance-missiles d'assaut lourds"
}
],
"header": " Bonus (par niveau de compétence) Croiseurs d'assaut lourds :"
@@ -104295,18 +104295,18 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "ステイシスウェブドローンのステイシスウェビファイヤーの効果にボーナス"
},
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "ステイシスウェブドローンのヒットポイントにボーナス"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "ステイシスウェブドローンの最大速度にボーナス"
},
{
"text": Can fit Assault Damage Controls"
"text": アサルトダメージ制御を装備可能"
}
],
"header": "性能ボーナス:"
@@ -104316,11 +104316,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "ライトミサイル、ヘビーミサイルおよびヘビーアサルトミサイルのダメージにボーナス"
},
{
"number": "10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "シールドブースターおよびアーマーリペアラの回復量増加"
}
],
"header": "ミンマター巡洋艦ボーナス(スキルレベルごとに):"
@@ -104329,11 +104329,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "ヘビーミサイルとヘビーアサルトミサイルの爆発速度上昇"
},
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "ライトミサイル、ヘビーミサイルおよびヘビーアサルトミサイルランチャーの発射間隔にボーナス"
}
],
"header": "強襲型巡洋艦ボーナス(スキルレベルごとに):"
@@ -104345,18 +104345,18 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "스테이시스 웹 드론의 스테이시스 웹 생성기 효과 증가"
},
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "스테이시스 웹 드론 내구도 증가"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "스테이시스 웹 드론 최대속도 증가"
},
{
"text": Can fit Assault Damage Controls"
"text": 어썰트 데미지 컨트롤 장착가능"
}
],
"header": "역할 보너스:"
@@ -104366,11 +104366,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "라이트 미사일, 헤비 미사일 및 헤비 어썰트 미사일 피해량 증가"
},
{
"number": "10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "실드 부스터 및 장갑수리 장치 회복량 증가"
}
],
"header": "민마타 크루저 보너스 (스킬 레벨당):"
@@ -104379,11 +104379,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "헤비 미사일 및 헤비 어썰트 미사일 폭발속도 증가"
},
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "라이트 미사일, 헤비 미사일, 헤비 어썰트 미사일 연사속도 증가"
}
],
"header": "어썰트 크루저 보너스 (스킬 레벨당):"
@@ -104395,18 +104395,18 @@
"bonuses": [
{
"number": "на 500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "бонус к эффективности стазис-индукторов дронов стазис-индукции"
},
{
"number": "на 500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "бонус к запасу прочности дронов стазис-индукции"
},
{
"number": "на 50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "бонус к максимальной скорости дронов стазис-индукции"
},
{
"text": Can fit Assault Damage Controls"
"text": Позволяет установить ударные модули боевой живучести"
}
],
"header": "Профильные особенности проекта:"
@@ -104416,11 +104416,11 @@
"bonuses": [
{
"number": "на 10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "бонус к урону от лёгких ракет, тяжёлых ракет и тяжёлых штурмовых ракет"
},
{
"number": "на 10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "бонус к эффективности модуля накачки щитов и установки ремонта брони"
}
],
"header": "За каждую степень освоения навыка Минматарские крейсеры:"
@@ -104429,11 +104429,11 @@
"bonuses": [
{
"number": "на 10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "бонус к скорости распространения взрыва тяжёлых ракет и тяжёлых штурмовых ракет"
},
{
"number": "на 10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "бонус к скорострельности установок для лёгких ракет, тяжёлых ракет и тяжёлых штурмовых ракет"
}
],
"header": "За каждую степень освоения навыка Ударные крейсеры:"
@@ -104445,18 +104445,18 @@
"bonuses": [
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone Stasis Webifier effectiveness"
"text": "停滞缠绕无人机停滞缠绕光束效果加成"
},
{
"number": "500%",
"text": "bonus to Stasis Webifying Drone hitpoints"
"text": "停滞缠绕无人机HP加成"
},
{
"number": "50%",
"text": "bonus to Stasis Webifying Drone max velocity"
"text": "停滞缠绕无人机最大速度加成"
},
{
"text": Can fit Assault Damage Controls"
"text": 可以装配突击型损伤控制装备"
}
],
"header": "特有加成:"
@@ -104466,11 +104466,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile damage"
"text": "轻型导弹、重型导弹和重型攻击导弹伤害加成"
},
{
"number": "10%",
"text": "bonus to Shield Booster and Armor Repairer amount"
"text": "护盾回充增量器回充量和装甲维修器维修量加成"
}
],
"header": "米玛塔尔巡洋舰操作每升一级:"
@@ -104479,11 +104479,11 @@
"bonuses": [
{
"number": "10%",
"text": "bonus to Heavy Missile and Heavy Assault Missile explosion velocity"
"text": "重型导弹和重型攻击导弹爆炸速度加成"
},
{
"number": "10%",
"text": "bonus to Light Missile, Heavy Missile and Heavy Assault Missile Launcher rate of fire"
"text": "轻型导弹、重型导弹和重型攻击导弹发射器射速加成"
}
],
"header": "重型突击巡洋舰操作每升一级:"
@@ -190624,7 +190624,7 @@
"text": "reduction in Engineering Service Module fuel consumption"
},
{
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints and an extra reinforcement cycle."
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints."
},
{
"text": "·This structure requires a Raitaru Upwell Quantum Core to be installed for anchoring to complete"
@@ -190711,7 +190711,7 @@
"text": "reduction in Engineering Service Module fuel consumption"
},
{
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints and an extra reinforcement cycle."
"text": "·While this structure has at least one online service module it enters full power mode and will gain increased shield and armor hitpoints."
},
{
"text": "·This structure requires a Raitaru Upwell Quantum Core to be installed for anchoring to complete"