Compare commits

...

12 Commits

Author SHA1 Message Date
DarkPhoenix
8072f7e618 Bump version 2021-07-13 15:42:46 +03:00
DarkPhoenix
c34b12d806 Fix ewar booster effect 2021-07-13 15:42:33 +03:00
DarkPhoenix
67760fa2ab Update effects 2021-07-13 15:37:54 +03:00
DarkPhoenix
9a28dd17be Update client data to 1918815 2021-07-13 15:04:05 +03:00
DarkPhoenix
40b0b27176 Run effects used by 2021-07-02 17:46:55 +03:00
DarkPhoenix
b238422f29 Update static data to 1916151 2021-07-02 17:33:30 +03:00
DarkPhoenix
4e20583b81 Update static data to 1914752 2021-06-28 19:54:32 +03:00
DarkPhoenix
f730cdb86a Bump version 2021-06-27 02:34:11 +03:00
DarkPhoenix
e05471fa6f Update effects 2021-06-27 02:33:48 +03:00
DarkPhoenix
45b517e097 Update static data to 1914498 2021-06-27 02:07:46 +03:00
DarkPhoenix
f27274c9e5 Update staticdata to 1913437 2021-06-27 01:44:52 +03:00
DarkPhoenix
d1a2cdc586 Bump version 2021-06-20 04:05:51 +03:00
16 changed files with 23286 additions and 8549 deletions

View File

@@ -1109,6 +1109,7 @@ class Effect391(BaseEffect):
Implants named like: Inherent Implants 'Highwall' Mining MX (3 of 3)
Implants named like: Mining Blitz Yield Booster Dose (3 of 3)
Implants named like: ORE 'Harvester' Efficiency (2 of 2)
Implants named like: Serenity Poteque 'Prospector' Harvesting MC (3 of 3)
Implant: Michi's Excavation Augmentor
Implant: Serenity Anniversary Limited 'Efficiency' Dose
Skill: Astrogeology
@@ -3748,6 +3749,7 @@ class Effect1190(BaseEffect):
Used by:
Implants named like: Inherent Implants 'Yeti' Ice Harvesting IH (3 of 3)
Implants named like: ORE 'Harvester' Efficiency (2 of 2)
Implants named like: Serenity Poteque 'Prospector' Harvesting MC (3 of 3)
Implant: Serenity Anniversary Limited 'Efficiency' Dose
Module: Medium Ice Harvester Accelerator I
Skill: Ice Harvesting
@@ -4402,6 +4404,7 @@ class Effect1446(BaseEffect):
ewSkillTpMaxRangeBonus
Used by:
Implants named like: Liberation Games EWar Booster (3 of 3)
Modules named like: Particle Dispersion Projector (8 of 8)
Skill: Long Distance Jamming
"""
@@ -4411,9 +4414,10 @@ class Effect1446(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 == 'Target Painter',
'maxRange', container.getModifiedItemAttr('rangeSkillBonus') * level,
stackingPenalties='skill' not in context, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect1448(BaseEffect):
@@ -4564,6 +4568,7 @@ class Effect1550(BaseEffect):
ewSkillTargetPaintingStrengthBonus
Used by:
Implants named like: Liberation Games EWar Booster (3 of 3)
Skill: Signature Focusing
"""
@@ -4571,9 +4576,10 @@ class Effect1550(BaseEffect):
@staticmethod
def handler(fit, skill, context, projectionRange, **kwargs):
level = skill.level if 'skill' in context else 1
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Target Painter',
'signatureRadiusBonus',
skill.getModifiedItemAttr('scanSkillTargetPaintStrengthBonus') * skill.level, **kwargs)
skill.getModifiedItemAttr('scanSkillTargetPaintStrengthBonus') * level, **kwargs)
class Effect1551(BaseEffect):
@@ -4716,6 +4722,7 @@ class Effect1590(BaseEffect):
missileSkillAoeVelocityBonus
Used by:
Implants named like: Liberation Games Accuracy Booster (3 of 3)
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
@@ -4726,7 +4733,7 @@ class Effect1590(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'),
'aoeVelocity', container.getModifiedItemAttr('aoeVelocityBonus') * level,
stackingPenalties=penalize, **kwargs)
@@ -5294,6 +5301,7 @@ class Effect1764(BaseEffect):
missileSkillMissileProjectileVelocityBonus
Used by:
Implants named like: Liberation Games Range Booster (3 of 3)
Implants named like: Zainou 'Deadeye' Missile Projection MP (6 of 6)
Modules named like: Hydraulic Bay Thrusters (8 of 8)
Skill: Missile Projection
@@ -5304,7 +5312,7 @@ class Effect1764(BaseEffect):
@staticmethod
def handler(fit, container, context, projectionRange, **kwargs):
level = container.level if 'skill' in context else 1
penalized = False if 'skill' in context or 'implant' in context else True
penalized = 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'),
'maxVelocity', container.getModifiedItemAttr('speedFactor') * level,
stackingPenalties=penalized, **kwargs)
@@ -7581,6 +7589,7 @@ class Effect2695(BaseEffect):
falloffBonusEffectProjectiles
Used by:
Implants named like: Liberation Games Range Booster (3 of 3)
Modules named like: Projectile Ambit Extension (8 of 8)
"""
@@ -7588,9 +7597,10 @@ class Effect2695(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 == 'Projectile Weapon',
'falloff', module.getModifiedItemAttr('falloffBonus'),
stackingPenalties=True, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect2696(BaseEffect):
@@ -7632,6 +7642,7 @@ class Effect2698(BaseEffect):
maxRangeBonusEffectProjectiles
Used by:
Implants named like: Liberation Games Range Booster (3 of 3)
Modules named like: Projectile Locus Coordinator (8 of 8)
"""
@@ -7639,9 +7650,10 @@ class Effect2698(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 == 'Projectile Weapon',
'maxRange', module.getModifiedItemAttr('maxRangeBonus'),
stackingPenalties=True, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect2706(BaseEffect):
@@ -8275,6 +8287,7 @@ class Effect2798(BaseEffect):
projectileWeaponDamageMultiplyPassive
Used by:
Implants named like: Liberation Games Damage Booster (3 of 3)
Modules named like: Projectile Collision Accelerator (8 of 8)
"""
@@ -8282,9 +8295,10 @@ class Effect2798(BaseEffect):
@staticmethod
def handler(fit, module, context, projectionRange, **kwargs):
penalize = False if 'booster' in context else True
fit.modules.filteredItemMultiply(lambda mod: mod.item.group.name == 'Projectile Weapon',
'damageMultiplier', module.getModifiedItemAttr('damageMultiplier'),
stackingPenalties=True, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect2799(BaseEffect):
@@ -8540,6 +8554,7 @@ class Effect2851(BaseEffect):
missileDMGBonusPassive
Used by:
Implants named like: Liberation Games Damage Booster (3 of 3)
Modules named like: Warhead Calefaction Catalyst (8 of 8)
"""
@@ -8547,11 +8562,12 @@ class Effect2851(BaseEffect):
@staticmethod
def handler(fit, container, context, projectionRange, **kwargs):
penalize = False if 'booster' in context else True
for dmgType in ('em', 'kinetic', 'explosive', 'thermal'):
fit.modules.filteredChargeMultiply(lambda mod: mod.charge.requiresSkill('Missile Launcher Operation'),
'%sDamage' % dmgType,
container.getModifiedItemAttr('missileDamageMultiplierBonus'),
stackingPenalties=True, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect2853(BaseEffect):
@@ -8767,6 +8783,7 @@ class Effect2885(BaseEffect):
Used by:
Implants named like: Eifyr and Co. 'Alchemist' Gas Harvesting GH (3 of 3)
Implants named like: ORE 'Harvester' Efficiency (2 of 2)
Implants named like: Serenity Poteque 'Prospector' Harvesting MC (3 of 3)
Implant: Serenity Anniversary Limited 'Efficiency' Dose
"""
@@ -18148,6 +18165,7 @@ class Effect5190(BaseEffect):
trackingSpeedBonusEffectProjectiles
Used by:
Implants named like: Liberation Games Accuracy Booster (3 of 3)
Modules named like: Projectile Metastasis Adjuster (8 of 8)
"""
@@ -18155,9 +18173,10 @@ class Effect5190(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 == 'Projectile Weapon',
'trackingSpeed', module.getModifiedItemAttr('trackingSpeedBonus'),
stackingPenalties=True, **kwargs)
stackingPenalties=penalize, **kwargs)
class Effect5201(BaseEffect):
@@ -34046,6 +34065,7 @@ class Effect7020(BaseEffect):
Used by:
Implants named like: Inquest 'Eros' Stasis Webifier MR (3 of 3)
Implants named like: Inquest 'Hedone' Entanglement Optimizer WS (3 of 3)
Implants named like: Liberation Games EWar Booster (3 of 3)
"""
type = 'passive'
@@ -37223,6 +37243,8 @@ class Effect8120(BaseEffect):
'moduleReactivationDelay', ship.getModifiedItemAttr('shipBonusRole1'), **kwargs)
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Interdiction Nullifier',
'durationHighisGood', ship.getModifiedItemAttr('shipBonusRole2'), **kwargs)
fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Interdiction Nullifier',
'scanResolutionMultiplier', ship.getModifiedItemAttr('shipBonusRole3'), **kwargs)
class Effect8121(BaseEffect):
@@ -37514,3 +37536,20 @@ class Effect8157(BaseEffect):
fit.ship.boostItemAttr(
'shield{0}DamageResonance'.format(damageType), ship.getModifiedItemAttr('eliteBonusBlackOps2'),
skill='Black Ops', **kwargs)
class Effect8158(BaseEffect):
"""
stabilizeCloakDurationBonus
Used by:
Implant: Strong Veilguard Booster
"""
type = 'passive'
@staticmethod
def handler(fit, booster, context, projectionRange, **kwargs):
fit.modules.filteredItemBoost(
lambda mod: mod.item.requiresSkill('Cloaking'), 'stabilizeCloakDuration',
booster.getModifiedItemAttr('stabilizeCloakDurationBonus'), **kwargs)

View File

@@ -7473,9 +7473,8 @@
"categoryID": 9,
"dataType": 4,
"defaultValue": 600000.0,
"description": "The number of milliseconds before the container replenishes the loot inside itself.",
"description": "The number of milliseconds before the container replenishes the loot inside itself. There is a constant that will be automatically override this value if set to anything lower than 60 seconds.",
"highIsGood": 1,
"iconID": 0,
"name": "lootRespawnTime",
"published": 0,
"stackable": 1,
@@ -42512,9 +42511,9 @@
"categoryID": 7,
"dataType": 4,
"defaultValue": 0.0,
"description": "Grants the ability to perform group jumps",
"description": "Grants the ability to perform conduit jumps",
"highIsGood": 1,
"name": "enablePerformGroupJump",
"name": "enablePerformConduitJump",
"published": 0,
"stackable": 1
},
@@ -42524,29 +42523,29 @@
"dataType": 11,
"defaultValue": 0.0,
"description": "Type that is used for consumption from cargo hold when activating group jump drive operation.",
"displayName_de": "Group Jump Fuel Need",
"displayName_de": "Treibstoffbedarf des Gruppensprungs",
"displayName_en-us": "Group Jump Fuel Need",
"displayName_es": "Group Jump Fuel Need",
"displayName_fr": "Group Jump Fuel Need",
"displayName_fr": "Carburant requis pour le saut de groupe",
"displayName_it": "Group Jump Fuel Need",
"displayName_ja": "Group Jump Fuel Need",
"displayName_ko": "Group Jump Fuel Need",
"displayName_ru": "Group Jump Fuel Need",
"displayName_zh": "Group Jump Fuel Need",
"displayName_ja": "グループジャンプ必要燃料",
"displayName_ko": "그룹 점프 연료 사용량",
"displayName_ru": "Потребление топлива при групповом прыжке",
"displayName_zh": "团队跳跃燃料需求",
"displayNameID": 583318,
"highIsGood": 1,
"name": "groupJumpConsumptionType",
"published": 1,
"stackable": 1,
"tooltipDescription_de": "The type of fuel required to use the group jump drive",
"tooltipDescription_de": "Die Treibstoffart, die für den Gruppensprungantrieb benötigt wird",
"tooltipDescription_en-us": "The type of fuel required to use the group jump drive",
"tooltipDescription_es": "The type of fuel required to use the group jump drive",
"tooltipDescription_fr": "The type of fuel required to use the group jump drive",
"tooltipDescription_fr": "Le type de carburant requis à utiliser dans le propulseur interstellaire de groupe",
"tooltipDescription_it": "The type of fuel required to use the group jump drive",
"tooltipDescription_ja": "The type of fuel required to use the group jump drive",
"tooltipDescription_ko": "The type of fuel required to use the group jump drive",
"tooltipDescription_ru": "The type of fuel required to use the group jump drive",
"tooltipDescription_zh": "The type of fuel required to use the group jump drive",
"tooltipDescription_ja": "グループジャンプドライブを使用するのに必要な燃料タイプです",
"tooltipDescription_ko": "그룹 점프 드라이브 사용 연료",
"tooltipDescription_ru": "Тип топлива для гипердвигателя во время группового прыжка",
"tooltipDescription_zh": "使用团队跳跃引擎所需的燃料种类",
"tooltipDescriptionID": 583320,
"tooltipTitleID": 583319,
"unitID": 116
@@ -42556,32 +42555,98 @@
"categoryID": 7,
"dataType": 5,
"defaultValue": 0.0,
"description": "Number of units needed to group jump",
"displayName_de": "Group Jump Consumption Amount",
"displayName_en-us": "Group Jump Consumption Amount",
"displayName_es": "Group Jump Consumption Amount",
"displayName_fr": "Group Jump Consumption Amount",
"displayName_it": "Group Jump Consumption Amount",
"displayName_ja": "Group Jump Consumption Amount",
"displayName_ko": "Group Jump Consumption Amount",
"displayName_ru": "Group Jump Consumption Amount",
"displayName_zh": "Group Jump Consumption Amount",
"description": "Number of units needed to conduit jump",
"displayName_de": "Verbrauch des Gruppensprungs",
"displayName_en-us": "Conduit Jump Consumption Amount",
"displayName_es": "Conduit Jump Consumption Amount",
"displayName_fr": "Quantité consommée par le saut de groupe",
"displayName_it": "Conduit Jump Consumption Amount",
"displayName_ja": "コンジットジャンプ消費量",
"displayName_ko": "점프 필드 연료 소모량",
"displayName_ru": "Расход топлива при групповом прыжке",
"displayName_zh": "导管跳跃消耗量",
"displayNameID": 583321,
"highIsGood": 0,
"name": "groupJumpDriveConsumptionAmount",
"name": "conduitJumpDriveConsumptionAmount",
"published": 1,
"stackable": 0,
"tooltipDescription_de": "Number of units needed to group jump",
"tooltipDescription_en-us": "Number of units needed to group jump",
"tooltipDescription_es": "Number of units needed to group jump",
"tooltipDescription_fr": "Number of units needed to group jump",
"tooltipDescription_it": "Number of units needed to group jump",
"tooltipDescription_ja": "Number of units needed to group jump",
"tooltipDescription_ko": "Number of units needed to group jump",
"tooltipDescription_ru": "Number of units needed to group jump",
"tooltipDescription_zh": "Number of units needed to group jump",
"tooltipDescription_de": "Für den Gruppensprung benötigte Anzahl an Einheiten",
"tooltipDescription_en-us": "Number of units needed to conduit jump",
"tooltipDescription_es": "Number of units needed to conduit jump",
"tooltipDescription_fr": "Nombre dunités requises pour le saut de groupe",
"tooltipDescription_it": "Number of units needed to conduit jump",
"tooltipDescription_ja": "コンジットジャンプに必要なユニット数",
"tooltipDescription_ko": "점프 필드 활성화 시 소모 연료",
"tooltipDescription_ru": "Количество ед. для группового прыжка",
"tooltipDescription_zh": "导管跳跃需要的单位数量",
"tooltipDescriptionID": 583323,
"tooltipTitleID": 583322,
"unitID": 138
},
"3132": {
"attributeID": 3132,
"categoryID": 7,
"dataType": 5,
"defaultValue": 0.0,
"description": "This is used to connect the corporation logos to monuments",
"highIsGood": 1,
"name": "monumentCorporationID",
"published": 0,
"stackable": 1
},
"3133": {
"attributeID": 3133,
"categoryID": 7,
"dataType": 1,
"defaultValue": 0.0,
"description": "How many passengers can be carried in a Conduit Jump",
"displayName_de": "Passagieranzahl für den Gruppensprung",
"displayName_en-us": "Conduit Jump Passenger Count",
"displayName_es": "Conduit Jump Passenger Count",
"displayName_fr": "Compteur de passagers du saut de groupe",
"displayName_it": "Conduit Jump Passenger Count",
"displayName_ja": "コンジットジャンプ同乗者カウント",
"displayName_ko": "점프 필드 최대 인원",
"displayName_ru": "Количество пассажиров при групповом прыжке",
"displayName_zh": "导管跳跃乘客数量",
"displayNameID": 583421,
"highIsGood": 0,
"name": "conduitJumpPassengerCount",
"published": 1,
"stackable": 0,
"tooltipDescription_de": "Maximale Anzahl an Passagieren, die in einem Gruppensprung von einem Ankerschiff mitgenommen werden können.",
"tooltipDescription_en-us": "Maximum number of passengers carried along with the anchor ship in a Conduit Jump",
"tooltipDescription_es": "Maximum number of passengers carried along with the anchor ship in a Conduit Jump",
"tooltipDescription_fr": "Nombre maximal de passagers emmenés avec le vaisseau d'ancrage lors d'un saut de groupe",
"tooltipDescription_it": "Maximum number of passengers carried along with the anchor ship in a Conduit Jump",
"tooltipDescription_ja": "コンジットジャンプで、係留艦に同行できる艦船の最大数",
"tooltipDescription_ko": "점프 필드 전개 시 이동 가능한 최대 인원",
"tooltipDescription_ru": "Максимальное количество пассажиров при групповом прыжке",
"tooltipDescription_zh": "在导管跳跃中锚船所能承载的乘客的最大数量",
"tooltipDescriptionID": 583438,
"tooltipTitleID": 583422
},
"3134": {
"attributeID": 3134,
"categoryID": 7,
"dataType": 5,
"defaultValue": 0.0,
"description": "bonus to stabilize cloak duration",
"displayName_de": "Bonus auf die Tarnmoduldauer",
"displayName_en-us": "Stabilized Cloak Duration Bonus",
"displayName_es": "Stabilized Cloak Duration Bonus",
"displayName_fr": "Bonus de durée de stabilisation de camouflage",
"displayName_it": "Stabilized Cloak Duration Bonus",
"displayName_ja": "安定化クローク持続時間ボーナス",
"displayName_ko": "클로킹 안정화 보너스",
"displayName_ru": "Бонус к стабилизированной длительности маскировки",
"displayName_zh": "隐形稳定持续时间加成",
"displayNameID": 583816,
"highIsGood": 1,
"iconID": 1392,
"name": "stabilizeCloakDurationBonus",
"published": 1,
"stackable": 1,
"unitID": 105
}
}

View File

@@ -69186,13 +69186,6 @@
"isOffensive": 1,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 2253,
"modifyingAttributeID": 2253,
"operation": 7
},
{
"domain": "shipID",
"func": "ItemModifier",
@@ -86690,6 +86683,14 @@
"modifiedAttributeID": 3115,
"modifyingAttributeID": 2299,
"operation": 6
},
{
"domain": "shipID",
"func": "LocationGroupModifier",
"groupID": 4117,
"modifiedAttributeID": 565,
"modifyingAttributeID": 2300,
"operation": 6
}
],
"propulsionChance": 0,
@@ -87153,5 +87154,28 @@
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"8158": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 8158,
"effectName": "stabilizeCloakDurationBonus",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 3118,
"modifyingAttributeID": 3134,
"operation": 6,
"skillTypeID": 11579
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
}
}

View File

@@ -43668,5 +43668,50 @@
"name_zh": "拦截失效装置",
"nameID": 581438,
"parentGroupID": 132
},
"2790": {
"hasTypes": 1,
"iconID": 3215,
"name_de": "Booster Slot 15",
"name_en-us": "Booster Slot 15",
"name_es": "Booster Slot 15",
"name_fr": "Booster Slot 15",
"name_it": "Booster Slot 15",
"name_ja": "Booster Slot 15",
"name_ko": "Booster Slot 15",
"name_ru": "Booster Slot 15",
"name_zh": "Booster Slot 15",
"nameID": 584811,
"parentGroupID": 977
},
"2791": {
"hasTypes": 1,
"iconID": 3215,
"name_de": "Booster Slot 16",
"name_en-us": "Booster Slot 16",
"name_es": "Booster Slot 16",
"name_fr": "Booster Slot 16",
"name_it": "Booster Slot 16",
"name_ja": "Booster Slot 16",
"name_ko": "Booster Slot 16",
"name_ru": "Booster Slot 16",
"name_zh": "Booster Slot 16",
"nameID": 584815,
"parentGroupID": 977
},
"2792": {
"hasTypes": 1,
"iconID": 3215,
"name_de": "Booster Slot 17",
"name_en-us": "Booster Slot 17",
"name_es": "Booster Slot 17",
"name_fr": "Booster Slot 17",
"name_it": "Booster Slot 17",
"name_ja": "Booster Slot 17",
"name_ko": "Booster Slot 17",
"name_ru": "Booster Slot 17",
"name_zh": "Booster Slot 17",
"nameID": 584819,
"parentGroupID": 977
}
}

View File

@@ -26235,5 +26235,105 @@
},
"59505": {
"21718": 1
},
"59620": {
"3402": 1
},
"59630": {
"11584": 5,
"21603": 5
},
"59748": {
"21718": 1
},
"59749": {
"21718": 1
},
"59750": {
"21718": 1
},
"59756": {
"3402": 1
},
"59757": {
"3402": 1
},
"59758": {
"3402": 1
},
"59759": {
"3402": 1
},
"59760": {
"3402": 1
},
"59761": {
"3402": 1
},
"59762": {
"3402": 1
},
"59763": {
"3402": 1
},
"59764": {
"3402": 1
},
"59765": {
"3402": 1
},
"59766": {
"3402": 1
},
"59767": {
"3402": 1
},
"59768": {
"3402": 1
},
"59876": {
"3402": 1
},
"59878": {
"3402": 1
},
"59879": {
"3402": 1
},
"59880": {
"3405": 1
},
"59881": {
"3405": 1
},
"59882": {
"3405": 1
},
"59883": {
"3405": 1
},
"59884": {
"3405": 1
},
"59885": {
"3405": 1
},
"59886": {
"3405": 1
},
"59887": {
"3405": 1
},
"59888": {
"3405": 1
},
"59889": {
"3405": 1
},
"59890": {
"3405": 1
},
"59891": {
"3405": 1
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -224094,6 +224094,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -224628,6 +224632,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -311984,6 +311992,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -320241,6 +320253,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -345495,6 +345511,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -348974,6 +348994,10 @@
"attributeID": 552,
"value": 185.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -351560,6 +351584,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -351984,6 +352012,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -385028,6 +385060,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -389585,6 +389621,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -403007,6 +403047,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -403285,6 +403329,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -403563,6 +403611,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -419260,6 +419312,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -419486,6 +419542,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -419696,6 +419756,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -419906,6 +419970,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -420116,6 +420184,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -420326,6 +420398,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -454171,6 +454247,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -454393,6 +454473,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -454615,6 +454699,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -471760,7 +471848,7 @@
},
{
"attributeID": 562,
"value": 0.01
"value": 0.0
},
{
"attributeID": 563,
@@ -476438,6 +476526,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -476656,6 +476748,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -476878,6 +476974,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -477100,6 +477200,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -477322,6 +477426,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -477544,6 +477652,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -477766,6 +477878,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -477988,6 +478104,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -478210,6 +478330,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -485101,6 +485225,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -485323,6 +485451,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -485545,6 +485677,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -485783,6 +485919,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0
@@ -489285,6 +489425,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -489507,6 +489651,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -489729,6 +489877,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -489951,6 +490103,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -490173,6 +490329,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -490395,6 +490555,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -490617,6 +490781,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -490839,6 +491007,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -491061,6 +491233,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -491283,6 +491459,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -491505,6 +491685,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -491727,6 +491911,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -491949,6 +492137,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -492171,6 +492363,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -492393,6 +492589,10 @@
"attributeID": 552,
"value": 400.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 564,
"value": 220.0
@@ -518767,6 +518967,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -519037,6 +519241,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -519307,6 +519515,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -519581,6 +519793,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -519843,6 +520059,10 @@
"attributeID": 552,
"value": 10000.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 594,
"value": 0.0
@@ -643870,6 +644090,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 250.0
@@ -644052,6 +644276,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 250.0
@@ -644234,6 +644462,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 250.0
@@ -761219,19 +761451,19 @@
},
{
"attributeID": 1027,
"value": 1000.0
"value": 100.0
},
{
"attributeID": 1028,
"value": 1000.0
"value": 100.0
},
{
"attributeID": 1029,
"value": 1000.0
"value": 100.0
},
{
"attributeID": 1030,
"value": 1000.0
"value": 100.0
},
{
"attributeID": 1245,
@@ -761253,10 +761485,6 @@
"attributeID": 1934,
"value": 0.0
},
{
"attributeID": 2253,
"value": 1e-05
},
{
"attributeID": 2342,
"value": -99.9999
@@ -761267,7 +761495,7 @@
},
{
"attributeID": 2351,
"value": -95.0
"value": -50.0
},
{
"attributeID": 2352,
@@ -761275,7 +761503,7 @@
},
{
"attributeID": 2353,
"value": -99.9999
"value": -50.0
},
{
"attributeID": 2354,
@@ -761283,7 +761511,7 @@
},
{
"attributeID": 2424,
"value": -95.0
"value": -50.0
},
{
"attributeID": 3108,
@@ -826938,6 +827166,10 @@
"attributeID": 552,
"value": 100.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 798,
"value": 2.0
@@ -828497,6 +828729,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 250.0
@@ -828679,6 +828915,10 @@
"attributeID": 552,
"value": 50.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 400.0
@@ -992036,7 +992276,7 @@
},
{
"attributeID": 11,
"value": 50.0
"value": 60.0
},
{
"attributeID": 12,
@@ -992048,7 +992288,7 @@
},
{
"attributeID": 14,
"value": 4.0
"value": 5.0
},
{
"attributeID": 15,
@@ -992064,11 +992304,11 @@
},
{
"attributeID": 37,
"value": 300.0
"value": 340.0
},
{
"attributeID": 48,
"value": 200.0
"value": 240.0
},
{
"attributeID": 49,
@@ -992092,11 +992332,11 @@
},
{
"attributeID": 101,
"value": 3.0
"value": 4.0
},
{
"attributeID": 102,
"value": 3.0
"value": 4.0
},
{
"attributeID": 109,
@@ -992530,7 +992770,7 @@
},
{
"attributeID": 11,
"value": 1100.0
"value": 1150.0
},
{
"attributeID": 12,
@@ -992542,7 +992782,7 @@
},
{
"attributeID": 14,
"value": 6.0
"value": 7.0
},
{
"attributeID": 15,
@@ -992558,7 +992798,7 @@
},
{
"attributeID": 37,
"value": 170.0
"value": 190.0
},
{
"attributeID": 48,
@@ -992590,11 +992830,11 @@
},
{
"attributeID": 101,
"value": 4.0
"value": 5.0
},
{
"attributeID": 102,
"value": 4.0
"value": 5.0
},
{
"attributeID": 109,
@@ -992722,7 +992962,7 @@
},
{
"attributeID": 283,
"value": 0.0
"value": 25.0
},
{
"attributeID": 422,
@@ -992870,7 +993110,7 @@
},
{
"attributeID": 1271,
"value": 0.0
"value": 25.0
},
{
"attributeID": 1281,
@@ -993481,6 +993721,10 @@
{
"attributeID": 3131,
"value": 1000.0
},
{
"attributeID": 3133,
"value": 30.0
}
],
"dogmaEffects": [
@@ -1052023,6 +1052267,10 @@
"attributeID": 552,
"value": 200.0
},
{
"attributeID": 562,
"value": 0.0
},
{
"attributeID": 620,
"value": 100.0

File diff suppressed because it is too large Load Diff

View File

@@ -2448,5 +2448,53 @@
"locationRequiredSkillModifiers": [],
"operationName": "ModAdd",
"showOutputValueInUI": "Hide"
},
"2140": {
"aggregateMode": "Maximum",
"developerDescription": "Proving Overheat Bonus - No EWAR",
"displayName_de": "Modul-Überladungsbonus",
"displayName_en-us": "Module Overload Bonus",
"displayName_es": "Module Overload Bonus",
"displayName_fr": "Bonus de surcharge du module",
"displayName_it": "Module Overload Bonus",
"displayName_ja": "モジュールオーバーロードボーナス",
"displayName_ko": "모듈 과부하 보너스",
"displayName_ru": "Бонус к перегрузке модулей",
"displayName_zh": "装备超载加成",
"displayNameID": 583780,
"itemModifiers": [],
"locationGroupModifiers": [],
"locationModifiers": [
{
"dogmaAttributeID": 1181
},
{
"dogmaAttributeID": 1205
},
{
"dogmaAttributeID": 1206
},
{
"dogmaAttributeID": 1208
},
{
"dogmaAttributeID": 1210
},
{
"dogmaAttributeID": 1222
},
{
"dogmaAttributeID": 1223
},
{
"dogmaAttributeID": 1230
},
{
"dogmaAttributeID": 1231
}
],
"locationRequiredSkillModifiers": [],
"operationName": "PostPercent",
"showOutputValueInUI": "ShowNormal"
}
}

View File

@@ -27361,7 +27361,7 @@
},
"4079": {
"anchorable": false,
"anchored": false,
"anchored": true,
"categoryID": 2,
"fittableNonSingleton": false,
"groupID": 4079,
@@ -27613,15 +27613,15 @@
"categoryID": 2,
"fittableNonSingleton": false,
"groupID": 4100,
"groupName_de": "Monument der Tournier-Champions",
"groupName_en-us": "Tournament Champion Monument",
"groupName_es": "Tournament Champion Monument",
"groupName_fr": "Monument au champion du tournoi",
"groupName_it": "Tournament Champion Monument",
"groupName_ja": "トーナメントチャンピオン記念碑",
"groupName_ko": "토너먼트 우승 기념비",
"groupName_ru": "Монумент в честь победителя турнира",
"groupName_zh": "联盟锦标赛冠军纪念碑",
"groupName_de": "Logo Display-Monument",
"groupName_en-us": "Logo Display Monument",
"groupName_es": "Logo Display Monument",
"groupName_fr": "Monument d'affichage du logo",
"groupName_it": "Logo Display Monument",
"groupName_ja": "ロゴディスプレイ記念碑",
"groupName_ko": "로고 표시 기념비",
"groupName_ru": "Монумент для отображения логотипа",
"groupName_zh": "图标展示纪念碑",
"groupNameID": 575536,
"published": false,
"useBasePrice": false
@@ -27709,15 +27709,15 @@
"categoryID": 7,
"fittableNonSingleton": false,
"groupID": 4127,
"groupName_de": "Covert Jump Portal Generator",
"groupName_de": "Generator für getarnte Sprungtore",
"groupName_en-us": "Covert Jump Portal Generator",
"groupName_es": "Covert Jump Portal Generator",
"groupName_fr": "Covert Jump Portal Generator",
"groupName_fr": "Générateur de portail interstellaire furtif",
"groupName_it": "Covert Jump Portal Generator",
"groupName_ja": "Covert Jump Portal Generator",
"groupName_ko": "Covert Jump Portal Generator",
"groupName_ru": "Covert Jump Portal Generator",
"groupName_zh": "Covert Jump Portal Generator",
"groupName_ja": "潜伏用ジャンプポータルジェネレーター",
"groupName_ko": "코버트 점프 포탈 생성기",
"groupName_ru": "Диверсионный генератор гиперпорталов",
"groupName_zh": "隐秘跳跃通道发生器",
"groupNameID": 582723,
"iconID": 0,
"published": true,

View File

@@ -13271,14 +13271,14 @@
"raceID": 4,
"radius": 1296.0,
"typeID": 21833,
"typeName_de": "Fortified Minmatar Lookout",
"typeName_de": "Fortified Minmatar Grandstand",
"typeName_en-us": "Fortified Minmatar Grandstand",
"typeName_es": "Fortified Minmatar Grandstand",
"typeName_fr": "Poste d'observation minmatar renforcé",
"typeName_fr": "Tribune minmatar fortifiée",
"typeName_it": "Fortified Minmatar Grandstand",
"typeName_ja": "守りの堅いミンマターの監視哨",
"typeName_ko": "요새화된 민마타 정찰초소",
"typeName_ru": "Fortified Minmatar Lookout",
"typeName_ja": "厳重警備のミンマター特別観覧席",
"typeName_ko": "요새화된 민마타 관중석",
"typeName_ru": "Fortified Minmatar Grandstand",
"typeName_zh": "强化的米玛塔尔哨站",
"typeNameID": 72838,
"volume": 0.0
@@ -27353,15 +27353,15 @@
"basePrice": 688400000.0,
"capacity": 750.0,
"certificateTemplate": 68,
"description_de": "Black Ops-Schlachtschiffe wurden für die Unterwanderung und Spionage hinter den feindlichen Linien entworfen. Mit ihrem Sprungantrieb und einem Portalgenerator können sie eine besondere Art von Sprungportal erschaffen, das nur von Covert Ops-Schiffen benutzt werden kann. Auf diese Art können sie heimlich Spionage- und Aufklärungstruppen in feindliches Gebiet einschleusen. Für derartige Geheimaktionen gibt es keine besseren Schiffe.\n\nEntwickler: Kaalakiota\n\nPassend zu einem der größten Waffenhersteller im bekannten Universum, sind die Schiffe von Kaalakiota sehr kampforientiert. Sie führen die traditionelle Kampfstrategie der Caldari weiter und bauen daher auf groß angelegten Waffensystemen (allen voran auf Lenkwaffenwerfern) auf. Allerdings haben sie eine schlechte Panzerung und einen schwachen Rumpf. Sie sind zum Schutz weitgehend auf ihre Schilde angewiesen.",
"description_de": "Black Ops-Schlachtschiffe wurden für die Unterwanderung und Spionage hinter den feindlichen Linien entworfen. Mit ihrem Sprungantrieb und einem Portalgenerator können sie eine besondere Art von Sprungportal erschaffen, das nur von Covert Ops-Schiffen benutzt werden kann. Auf diese Art können sie heimlich Spionage- und Aufklärungstruppen in feindliches Gebiet einschleusen. Für derartige Geheimaktionen gibt es keine besseren Schiffe. Entwickler: Kaalakiota. Da Kaalakiota zu den größten Waffenproduzenten zählt, sind die Schiffe dieser Firma sehr kampforientiert. Sie führen die traditionelle Kampfstrategie der Caldari weiter und bauen daher auf groß angelegten Waffensystemen (allen voran auf Lenkwaffenwerfern) auf. Allerdings haben sie eine schlechte Panzerung und einen schwachen Rumpf. Sie sind zum Schutz weitgehend auf ihre Schilde angewiesen.",
"description_en-us": "Black Ops battleships are designed for infiltration and espionage behind enemy lines. With the use of a jump drive and portal generator, they are capable of making a special type of jump portal usable only by covert ops vessels. This enables them to stealthily plant reconnaissance and espionage forces in enemy territory. For the final word in clandestine maneuvers, look no further.\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.",
"description_es": "Black Ops battleships are designed for infiltration and espionage behind enemy lines. With the use of a jump drive and portal generator, they are capable of making a special type of jump portal usable only by covert ops vessels. This enables them to stealthily plant reconnaissance and espionage forces in enemy territory. For the final word in clandestine maneuvers, look no further.\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.",
"description_fr": "Les cuirassés des forces clandestines sont conçus pour les missions d'infiltration et d'espionnage derrière les lignes ennemies. Équipés d'un propulseur interstellaire et d'un générateur de portail, ils sont capables de créer un portail hyperspatial furtif, réservé aux vaisseaux des opérations secrètes. Cette technologie permet d'envoyer furtivement des unités en mission de reconnaissance et d'espionnage derrière les lignes ennemies. Les cuirassés des forces clandestines embarquent la technologie la plus évoluée des manœuvres clandestines.\n\nConstructeur : Kaalakiota\n\nDignes émissaires de l'un des plus grands fabricants d'armes de New Eden, les coques de Kaalakiota sont axées sur une stratégie offensive brutale. Dotées de multiples systèmes d'armement, elles privilégient les lance-missiles selon les préceptes de l'art militaire caldari traditionnel. Le blindage et la structure des vaisseaux Kaalakiota souffrent toutefois d'une faiblesse patente, contrebalancée par des systèmes défensifs de boucliers perfectionnés.",
"description_fr": "Les cuirassés des forces spéciales sont conçus pour les missions d'infiltration et d'espionnage derrière les lignes ennemies. Grâce à l'utilisation d'un propulseur interstellaire et d'un générateur de portail, ils peuvent créer un portail interstellaire particulier, utilisable uniquement par les vaisseaux des opérations secrètes. Cela leur permet par exemple d'envoyer furtivement des unités de reconnaissance et d'espionnage en territoire ennemi. Autrement dit, le plan idéal pour les manœuvres clandestines. Constructeur : Kaalakiota Comme il se doit pour l'un des plus grands fabricants d'armes du monde connu, les vaisseaux de la Kaalakiota sont très offensifs. Ils sont conçus autour d'un nombre élevé de systèmes d'armement, et plus particulièrement de lance-missiles, comme le veut la stratégie de combat caldari traditionnelle. Leur blindage et leur structure sont toutefois plutôt faibles, car leur défense repose davantage sur des boucliers.",
"description_it": "Black Ops battleships are designed for infiltration and espionage behind enemy lines. With the use of a jump drive and portal generator, they are capable of making a special type of jump portal usable only by covert ops vessels. This enables them to stealthily plant reconnaissance and espionage forces in enemy territory. For the final word in clandestine maneuvers, look no further.\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.",
"description_ja": "秘密工作戦艦は敵への潜入偵察用として設計されている。ジャンプドライブとポータルジェネレーターを使って、隠密行動艦だけが通過できる特なジャンプポータルを生成する機能を持つ。これにより、偵察隊や諜報部隊を密かに敵の領内に潜り込ませることが可能になる。潜入作戦用の船をお探しなら、これで決まりだ。\n\n開発元: カーラキオタ\n\n世に知られた最大の兵器製造者にふさわしく、カーラキオタの船は戦闘面を極めて重視する。伝統的にカルダリが好む戦法に合わせ、充実した数の兵装、特にミサイルランチャーの搭載を主眼においた設計になっている。防御をシールドに依存しているため、アーマーやストラクチャが比較的脆弱なのが難点。",
"description_ko": "블랙옵스 배틀쉽은 잠입 및 유격에 특화된 함선입니다. 함선에 장착된 점프 드라이브와 포탈 생성기를 통해 코버트 옵스 전용 점프 포탈을 생성할 수 있습니다. 이를 이용하여 정찰부대 또는 간첩부대를 은밀하게 적지에 보낼 수 있습니다. 비밀 임무에 한해 이보다 더 좋은 함선은 없을 것입니다. <br><br>개발사: 칼라키오타<br><br>뉴에덴 최대의 무기 제조사 중 하나로 함선 설계에 있어 전투 기능에 편중된 성향이 강합니다. 칼라키오타 사는 칼다리 고유의 전략적 사상을 추구하며 각종 무기 체계, 그중에서도 다량의 미사일 런처를 탑재하는 것으로 유명합니다. 하지만 강력한 화력과는 달리 선체 및 장갑 성능이 상대적으로 빈약해 방어 수단은 전적으로 실드에 의존하고 있습니다.",
"description_ru": "Разработка тяжёлых диверсионных кораблей велась из расчёта на их проникновение в тыл противника с последующим шпионажем. Используя гипердвигатель малой дальности и генератор гиперпорталов, они создают особый тип гиперпортала с нулевой эмиссией, пользоваться которым могут исключительно диверсионные корабли. Это позволяет незаметно и эффективно перемещать разведывательные силы по владениям противника. При исполнении диверсионных операций они незаменимы.\n\nРазработчик: корпорация «Каалакиота»\n\nКорабли производства «Каалакиоты» построены из расчёта на прямое боевое столкновение, что совершенно естественно для одной из крупнейших оружейных корпораций галактики. Следуя традиционному калдарскому подходу к тактике ведения боя, конструкторы корпорации делают ставку на оснащение создаваемых кораблей большим количеством вооружения (в первую очередь пусковыми установками ракет). При этом корабли «Каалакиоты» отличаются от конкурирующих проектов слабым бронированием и не слишком прочными корпусами — за их боевую живучесть в первую очередь отвечают силовые поля.",
"description_zh": "黑隐特勤战列舰的作用是渗透进敌人后方实施侦查活动。通过使用跳跃引擎以及跳跃通道发生器,它们能够生成一条只让隐形特勤舰只通过的跳跃通道。这使得它们能够隐秘地在敌后进行侦查和间谍任务。你要是想找执行秘密任务的行家,那就非它莫属了。\n\n开发商卡拉吉塔\n\n卡拉吉塔集团是已知世界中最大的军火生产商之一它生产的战舰非常注重战斗力。这些战舰偏向于传统的加达里战术其设计是围绕着数量众多的武器系统——尤其是导弹发射器进行的。不过它们的装甲和结构相当薄弱主要依赖护盾进行防护。",
"description_ja": "光学迷彩型戦艦は敵への潜入と諜報活動のために設計されている。ジャンプドライブとポータルジェネレーターを使って、光学迷彩艦だけが通過できる特なジャンプポータルを生成する機能を持つ。これにより、偵察隊や諜報部隊を密かに敵の領内に潜り込ませることが可能になる。潜入作戦なら、この船一択であろう。\n\n\n\n開発元カーラキオタ\n\n\n\n既知の宇宙で最大の兵器メーカーだけあって、カーラキオタ艦は極めて戦闘向きだ。伝統的にカルダリが好む戦法に合わせ、充実した数の兵装、特にミサイルランチャーの搭載を主眼においた設計になっている。しかし、装甲や艦内構造は脆弱で、防御をシールドに頼る傾向が強い。",
"description_ko": "블랙옵스 배틀쉽은 잠입 및 유격에 특화된 함선입니다. 함선에 장착된 점프 드라이브와 포탈 생성기를 통해 코버트 옵스 전용 점프 포탈을 생성할 수 있습니다. 이를 이용하여 정찰 또는 잠임 부대를 적지로 침투시킬 수 있습니다. 비밀 임무에 한해 이보다 더 좋은 함선은 아마 없을 것입니다. <br><br>개발사: 칼라키오타<br><br>뉴에덴 최대의 무기 제조사 중 하나로 함선 설계에 있어 전투 기능에 편중된 성향이 강합니다. 칼라키오타 사는 칼다리 고유의 전략적 사상을 추구하며 각종 무기 체계, 그중에서도 다량의 미사일 런처를 탑재하는 것으로 유명합니다. 하지만 강력한 화력과는 달리 선체 및 장갑 성능이 상대적으로 빈약해 방어 수단은 전적으로 실드에 의존하고 있습니다.",
"description_ru": "Тяжёлые диверсионные линкоры предназначены для проникновения в тыл врага и шпионажа. Используя гипердвигатель и генератор порталов, они способны создавать особые гиперпорталы, проходить через которые могут только диверсионные суда. Это позволяет им незаметно внедрять разведывательные и шпионские корабли в пространство противника. Идеальное решение в сфере секретных операций. Производитель: «Каалакиота». Как и полагается одному из крупнейших производителей оружия в освоенном пространстве, при создании кораблей «Каалакиота» уделяет внимание в первую очередь их боевым характеристикам. По традиционной для Калдари боевой стратегии в основе конструкции лежит возможность использования самых разных орудий, в первую очередь ракетных установок. При этом они не могут похвастаться надёжной бронёй или крепким корпусом, из-за чего вся их обороноспособность завязана главным образом на щитах.",
"description_zh": "黑隐特勤战列舰的作用是渗透进敌人后方实施侦查活动。通过使用跳跃引擎以及跳跃通道发生器,它们能够生成一条只让隐形特勤舰只通过的跳跃通道。这使得它们能够隐秘地在敌后进行侦查和间谍任务。你要是想找执行秘密任务的行家,那就非它莫属了。\n\n\n\n开发商:卡拉吉塔\n\n\n\n卡拉吉塔集团是已知世界中最大的军火生产商之一,它生产的战舰非常注重战斗力。这些战舰偏向于传统的加达里战术,其设计是围绕着数量众多的武器系统——尤其是导弹发射器进行的。不过,它们的装甲和结构相当薄弱,主要依赖护盾进行防护。",
"descriptionID": 94899,
"factionID": 500001,
"graphicID": 3349,

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +1,10 @@
[
{
"field_name": "client_build",
"field_value": 1910975
"field_value": 1918815
},
{
"field_name": "dump_time",
"field_value": 1623762475
"field_value": 1626176495
}
]

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1 @@
version: v2.36.0dev2
version: v2.37.0