Compare commits
11 Commits
v2.48.0dev
...
v2.49.0dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d186ba56b | ||
|
|
e2273f90b4 | ||
|
|
d6501df509 | ||
|
|
96d639996a | ||
|
|
625c52720d | ||
|
|
69221eac24 | ||
|
|
74daf99aed | ||
|
|
eaf637d1d9 | ||
|
|
c262ea6e35 | ||
|
|
1c541c82bf | ||
|
|
1824d1b866 |
134
db_update.py
@@ -641,6 +641,140 @@ def update_db():
|
||||
effect.effectName = effectName
|
||||
item.effects[effectName] = effect
|
||||
|
||||
def hardcodeGeri():
|
||||
attrMap = {
|
||||
# Fitting
|
||||
'powerOutput': 50,
|
||||
'cpuOutput': 200,
|
||||
'capacitorCapacity': 325,
|
||||
'rechargeRate': 130000,
|
||||
# Slots
|
||||
'hiSlots': 5,
|
||||
'medSlots': 4,
|
||||
'lowSlots': 4,
|
||||
'launcherSlotsLeft': 3,
|
||||
'turretSlotsLeft': 2,
|
||||
# Rigs
|
||||
'rigSlots': 2,
|
||||
'rigSize': 1,
|
||||
'upgradeCapacity': 400,
|
||||
# Shield
|
||||
'shieldCapacity': 1000,
|
||||
'shieldEmDamageResonance': 1 - 0.75,
|
||||
'shieldThermalDamageResonance': 1 - 0.6,
|
||||
'shieldKineticDamageResonance': 1 - 0.4,
|
||||
'shieldExplosiveDamageResonance': 1 - 0.5,
|
||||
# Armor
|
||||
'armorHP': 1000,
|
||||
'armorEmDamageResonance': 1 - 0.9,
|
||||
'armorThermalDamageResonance': 1 - 0.675,
|
||||
'armorKineticDamageResonance': 1 - 0.25,
|
||||
'armorExplosiveDamageResonance': 1 - 0.1,
|
||||
# Structure
|
||||
'hp': 700,
|
||||
'emDamageResonance': 1 - 0.33,
|
||||
'thermalDamageResonance': 1 - 0.33,
|
||||
'kineticDamageResonance': 1 - 0.33,
|
||||
'explosiveDamageResonance': 1 - 0.33,
|
||||
'mass': 1309000,
|
||||
'volume': 27289,
|
||||
'capacity': 260,
|
||||
# Navigation
|
||||
'maxVelocity': 440,
|
||||
'agility': 2.5,
|
||||
'warpSpeedMultiplier': 5.5,
|
||||
# Drones
|
||||
'droneCapacity': 50,
|
||||
'droneBandwidth': 10,
|
||||
# Targeting
|
||||
'maxTargetRange': 42000,
|
||||
'maxLockedTargets': 6,
|
||||
'scanRadarStrength': 0,
|
||||
'scanLadarStrength': 12,
|
||||
'scanMagnetometricStrength': 0,
|
||||
'scanGravimetricStrength': 0,
|
||||
'signatureRadius': 33,
|
||||
'scanResolution': 770}
|
||||
effectMap = {
|
||||
100100: 'pyfaCustomGeriAfExploVel',
|
||||
100101: 'pyfaCustomGeriAfRof',
|
||||
100102: 'pyfaCustomGeriMfDmg',
|
||||
100103: 'pyfaCustomGeriMfRep',
|
||||
100104: 'pyfaCustomGeriRoleWebDroneStr',
|
||||
100105: 'pyfaCustomGeriRoleWebDroneHP',
|
||||
100106: 'pyfaCustomGeriRoleWebDroneSpeed',
|
||||
100107: 'pyfaCustomGeriRoleMWDSigBloom'}
|
||||
_hardcodeAttribs(74141, attrMap)
|
||||
_hardcodeEffects(74141, effectMap)
|
||||
|
||||
def hardcodeBestla():
|
||||
attrMap = {
|
||||
# Fitting
|
||||
'powerOutput': 1300,
|
||||
'cpuOutput': 500,
|
||||
'capacitorCapacity': 1500,
|
||||
'rechargeRate': 200000,
|
||||
'hiSlots': 6,
|
||||
'medSlots': 5,
|
||||
'lowSlots': 5,
|
||||
'launcherSlotsLeft': 4,
|
||||
'turretSlotsLeft': 2,
|
||||
# Rigs
|
||||
'rigSlots': 2,
|
||||
'rigSize': 2,
|
||||
'upgradeCapacity': 400,
|
||||
# Shield
|
||||
'shieldCapacity': 3000,
|
||||
'shieldEmDamageResonance': 1 - 0.75,
|
||||
'shieldThermalDamageResonance': 1 - 0.6,
|
||||
'shieldKineticDamageResonance': 1 - 0.4,
|
||||
'shieldExplosiveDamageResonance': 1 - 0.5,
|
||||
# Armor
|
||||
'armorHP': 3000,
|
||||
'armorEmDamageResonance': 1 - 0.9,
|
||||
'armorThermalDamageResonance': 1 - 0.675,
|
||||
'armorKineticDamageResonance': 1 - 0.25,
|
||||
'armorExplosiveDamageResonance': 1 - 0.1,
|
||||
# Structure
|
||||
'hp': 1600,
|
||||
'emDamageResonance': 1 - 0.33,
|
||||
'thermalDamageResonance': 1 - 0.33,
|
||||
'kineticDamageResonance': 1 - 0.33,
|
||||
'explosiveDamageResonance': 1 - 0.33,
|
||||
'mass': 11650000,
|
||||
'volume': 96000,
|
||||
'capacity': 660,
|
||||
# Navigation
|
||||
'maxVelocity': 300,
|
||||
'agility': 0.47,
|
||||
'warpSpeedMultiplier': 4.5,
|
||||
# Drones
|
||||
'droneCapacity': 125,
|
||||
'droneBandwidth': 20,
|
||||
# Targeting
|
||||
'maxTargetRange': 80000,
|
||||
'maxLockedTargets': 7,
|
||||
'scanRadarStrength': 0,
|
||||
'scanLadarStrength': 22,
|
||||
'scanMagnetometricStrength': 0,
|
||||
'scanGravimetricStrength': 0,
|
||||
'signatureRadius': 120,
|
||||
'scanResolution': 340}
|
||||
effectMap = {
|
||||
100200: 'pyfaCustomBestlaHacExploVel',
|
||||
100201: 'pyfaCustomBestlaHacRof',
|
||||
100202: 'pyfaCustomBestlaMcDmg',
|
||||
100203: 'pyfaCustomBestlaMcRep',
|
||||
100204: 'pyfaCustomBestlaRoleWebDroneStr',
|
||||
100205: 'pyfaCustomBestlaRoleWebDroneHP',
|
||||
100206: 'pyfaCustomBestlaRoleWebDroneSpeed'}
|
||||
_hardcodeAttribs(74316, attrMap)
|
||||
_hardcodeEffects(74316, effectMap)
|
||||
|
||||
hardcodeGeri()
|
||||
hardcodeBestla()
|
||||
|
||||
|
||||
eos.db.gamedata_session.commit()
|
||||
eos.db.gamedata_engine.execute('VACUUM')
|
||||
|
||||
|
||||
370
eos/effects.py
@@ -1301,10 +1301,10 @@ class Effect446(BaseEffect):
|
||||
Implants named like: Capsuleer Defense Augmentation Chip (3 of 3)
|
||||
Implants named like: Festival only 'Rock' SH Dose (4 of 4)
|
||||
Implants named like: Halcyon G Booster (5 of 5)
|
||||
Implants named like: Nirvana Booster (5 of 5)
|
||||
Implants named like: Serenity Limited 'Hardshell' Dose (3 of 3)
|
||||
Implants named like: Zainou 'Gnome' Shield Management SM (6 of 6)
|
||||
Modules named like: Core Defense Field Extender (8 of 8)
|
||||
Implant: AIR Nirvana Booster II
|
||||
Implant: Genolution Core Augmentation CA-3
|
||||
Implant: Sansha Modified 'Gnome' Implant
|
||||
Skill: Shield Management
|
||||
@@ -1326,6 +1326,7 @@ class Effect485(BaseEffect):
|
||||
Implants named like: Halcyon G Booster (5 of 5)
|
||||
Implants named like: Halcyon R Booster (5 of 5)
|
||||
Implants named like: Inherent Implants 'Squire' Capacitor Systems Operation EO (6 of 6)
|
||||
Implants named like: Wightstorm Rapture Booster (4 of 4)
|
||||
Implants named like: grade Rapture (15 of 18)
|
||||
Modules named like: Capacitor Control Circuit (8 of 8)
|
||||
Implant: AIR Overclocker Booster III
|
||||
@@ -1850,7 +1851,7 @@ class Effect596(BaseEffect):
|
||||
ammoInfluenceRange
|
||||
|
||||
Used by:
|
||||
Items from category: Charge (608 of 1008)
|
||||
Items from category: Charge (608 of 1010)
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
@@ -1865,7 +1866,7 @@ class Effect598(BaseEffect):
|
||||
ammoSpeedMultiplier
|
||||
|
||||
Used by:
|
||||
Charges from group: Festival Charges (38 of 38)
|
||||
Charges from group: Festival Charges (40 of 40)
|
||||
Charges from group: Interdiction Probe (2 of 2)
|
||||
Charges from group: Structure Festival Charges (2 of 2)
|
||||
Special Edition Assetss from group: Festival Charges Expired (4 of 4)
|
||||
@@ -2425,7 +2426,7 @@ class Effect804(BaseEffect):
|
||||
ammoInfluenceCapNeed
|
||||
|
||||
Used by:
|
||||
Items from category: Charge (538 of 1008)
|
||||
Items from category: Charge (538 of 1010)
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
@@ -8376,6 +8377,7 @@ class Effect2803(BaseEffect):
|
||||
|
||||
Used by:
|
||||
Implants named like: Harvest Damage Booster (4 of 4)
|
||||
Implants named like: Wightstorm Vitarka Booster (4 of 4)
|
||||
Modules named like: Energy Collision Accelerator (8 of 8)
|
||||
"""
|
||||
|
||||
@@ -9650,6 +9652,7 @@ class Effect3196(BaseEffect):
|
||||
thermodynamicsSkillDamageBonus
|
||||
|
||||
Used by:
|
||||
Implants named like: Wightstorm Sunyata Booster (4 of 4)
|
||||
Skill: Thermodynamics
|
||||
"""
|
||||
|
||||
@@ -12396,6 +12399,7 @@ class Effect3993(BaseEffect):
|
||||
Used by:
|
||||
Celestials named like: Class Black Hole Effects (6 of 6)
|
||||
Celestials named like: Class Magnetar Effects (6 of 6)
|
||||
Celestial: Turnur Aftermath
|
||||
"""
|
||||
|
||||
runTime = 'early'
|
||||
@@ -16354,7 +16358,7 @@ class Effect4902(BaseEffect):
|
||||
MWDSignatureRadiusRoleBonus
|
||||
|
||||
Used by:
|
||||
Ships from group: Assault Frigate (9 of 13)
|
||||
Ships from group: Assault Frigate (9 of 14)
|
||||
Ships from group: Command Destroyer (5 of 5)
|
||||
"""
|
||||
|
||||
@@ -18067,6 +18071,7 @@ class Effect5189(BaseEffect):
|
||||
|
||||
Used by:
|
||||
Implants named like: Tetrimon Precision Booster (4 of 4)
|
||||
Implants named like: Wightstorm Manasikara Booster (4 of 4)
|
||||
Modules named like: Energy Metastasis Adjuster (8 of 8)
|
||||
"""
|
||||
|
||||
@@ -35591,6 +35596,7 @@ class Effect7237(BaseEffect):
|
||||
|
||||
Used by:
|
||||
Celestial: Dazh Liminality Locus
|
||||
Celestial: Turnur Aftermath
|
||||
"""
|
||||
|
||||
runTime = 'early'
|
||||
@@ -36377,6 +36383,23 @@ class Effect8076(BaseEffect):
|
||||
stackingPenalties=True, **kwargs)
|
||||
|
||||
|
||||
class Effect8082(BaseEffect):
|
||||
"""
|
||||
systemScanResolutionBonus
|
||||
|
||||
Used by:
|
||||
Celestial: Turnur Aftermath
|
||||
"""
|
||||
|
||||
runTime = 'early'
|
||||
type = ('projected', 'passive')
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, beacon, context, projectionRange, **kwargs):
|
||||
fit.ship.boostItemAttr('scanResolution', beacon.getModifiedItemAttr('scanResolutionBonus'),
|
||||
stackingPenalties=True, **kwargs)
|
||||
|
||||
|
||||
class Effect8091(BaseEffect):
|
||||
"""
|
||||
shipBonusForceAuxiliaryG2CapBoosterStrength
|
||||
@@ -37749,6 +37772,23 @@ class Effect8279(BaseEffect):
|
||||
skill='Industrial Command Ships', **kwargs)
|
||||
|
||||
|
||||
class Effect8291(BaseEffect):
|
||||
"""
|
||||
afterburnerSpeedBoostBonusPassive
|
||||
|
||||
Used by:
|
||||
Implants named like: Wightstorm Cetana Booster (4 of 4)
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, booster, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.requiresSkill('Afterburner'), 'speedFactor',
|
||||
booster.getModifiedItemAttr('speedFBonus'), **kwargs)
|
||||
|
||||
|
||||
class Effect8294(BaseEffect):
|
||||
"""
|
||||
industrialCommandBonusDroneOreMiningYield
|
||||
@@ -38556,7 +38596,7 @@ class Effect11373(BaseEffect):
|
||||
|
||||
class Effect11374(BaseEffect):
|
||||
"""
|
||||
shipBonusDreadnoughtA4EnergyWarfareAmountBonus
|
||||
shipBonusDreadnoughtA4EnergyWarfareRangeAmountBonus
|
||||
|
||||
Used by:
|
||||
Ship: Revelation Navy Issue
|
||||
@@ -38572,26 +38612,6 @@ class Effect11374(BaseEffect):
|
||||
ship.getModifiedItemAttr('shipBonusDreadnoughtA4'), skill='Amarr Dreadnought', **kwargs)
|
||||
|
||||
|
||||
class Effect11375(BaseEffect):
|
||||
"""
|
||||
shipBonusDreadnoughtA4EnergyWarfareRangeBonus
|
||||
|
||||
Used by:
|
||||
Ship: Revelation Navy Issue
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.group.name == 'Energy Nosferatu', 'powerTransferRange',
|
||||
ship.getModifiedItemAttr('shipBonusDreadnoughtA4'), skill='Amarr Dreadnought', **kwargs)
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.group.name == 'Energy Neutralizer', 'energyNeutralizerRangeOptimal',
|
||||
ship.getModifiedItemAttr('shipBonusDreadnoughtA4'), skill='Amarr Dreadnought', **kwargs)
|
||||
|
||||
|
||||
class Effect11376(BaseEffect):
|
||||
"""
|
||||
shipBonusDreadnoughtG1OptimalRangeBonus
|
||||
@@ -39370,6 +39390,24 @@ class Effect11432(BaseEffect):
|
||||
ship.getModifiedItemAttr('eliteBonusGunship2'), skill='Assault Frigates', **kwargs)
|
||||
|
||||
|
||||
class Effect11445(BaseEffect):
|
||||
"""
|
||||
systemSensorStrengthBonus
|
||||
|
||||
Used by:
|
||||
Celestial: Turnur Aftermath
|
||||
"""
|
||||
|
||||
runTime = 'early'
|
||||
type = ('projected', 'passive')
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, beacon, context, projectionRange, **kwargs):
|
||||
for sensor_type in ('Gravimetric', 'Ladar', 'Magnetometric', 'Radar'):
|
||||
fit.ship.boostItemAttr(f'scan{sensor_type}Strength', beacon.getModifiedItemAttr('sensorStrengthBonus'),
|
||||
stackingPenalties=True, **kwargs)
|
||||
|
||||
|
||||
class Effect11446(BaseEffect):
|
||||
"""
|
||||
shipBonusDreadnoughtG4DamageBonus
|
||||
@@ -39419,3 +39457,283 @@ class Effect11452(BaseEffect):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.group.name == 'Warp Scrambler', 'warpScrambleStrength',
|
||||
ship.getModifiedItemAttr('shipBonusDreadnoughtG5'), skill='Gallente Dreadnought', **kwargs)
|
||||
|
||||
|
||||
class Effect11454(BaseEffect):
|
||||
"""
|
||||
shipBonusGrapplerFalloffM4
|
||||
|
||||
Used by:
|
||||
Ship: Naglfar Fleet Issue
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.group.name == 'Stasis Grappler', 'falloffEffectiveness',
|
||||
ship.getModifiedItemAttr('shipBonusDreadnoughtM4'), skill='Minmatar Dreadnought', **kwargs)
|
||||
|
||||
|
||||
class Effect100100(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriAfExploVel
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredChargeBoost(
|
||||
lambda mod: mod.charge.requiresSkill('Light Missiles') or mod.charge.requiresSkill('Rockets'),
|
||||
'aoeVelocity', 7.5, skill='Assault Frigates', **kwargs)
|
||||
|
||||
|
||||
|
||||
class Effect100101(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriAfRof
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.group.name in ('Missile Launcher Rocket', 'Missile Launcher Light'),
|
||||
'speed', -7.5, skill='Assault Frigates', **kwargs)
|
||||
|
||||
|
||||
|
||||
class Effect100102(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriMfDmg
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, src, context, projectionRange, **kwargs):
|
||||
for dmgType in ('em', 'kinetic', 'explosive', 'thermal'):
|
||||
fit.modules.filteredChargeBoost(
|
||||
lambda mod: mod.charge.requiresSkill('Light Missiles') or mod.charge.requiresSkill('Rockets'),
|
||||
f'{dmgType}Damage', 7.5, skill='Minmatar Frigate', **kwargs)
|
||||
|
||||
|
||||
class Effect100103(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriMfRep
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, src, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.requiresSkill('Shield Operation'),
|
||||
'shieldBonus', 7.5, skill='Minmatar Frigate', **kwargs)
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.requiresSkill('Repair Systems'),
|
||||
'armorDamageAmount', 7.5, skill='Minmatar Frigate', **kwargs)
|
||||
|
||||
|
||||
class Effect100104(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriRoleWebDroneStr
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'), 'speedFactor', 500, **kwargs)
|
||||
|
||||
|
||||
class Effect100105(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriRoleWebDroneHP
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
for layer in ('shieldCapacity', 'armorHP', 'hp'):
|
||||
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'), layer, 250, **kwargs)
|
||||
|
||||
|
||||
class Effect100106(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriRoleWebDroneSpeed
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.drones.filteredItemBoost(
|
||||
lambda drone: drone.item.requiresSkill('Drones'), 'maxVelocity', 50, **kwargs)
|
||||
|
||||
|
||||
class Effect100107(BaseEffect):
|
||||
"""
|
||||
pyfaCustomGeriRoleMWDSigBloom
|
||||
|
||||
Used by:
|
||||
Ship: Geri
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.requiresSkill('High Speed Maneuvering'),
|
||||
'signatureRadiusBonus', -50, **kwargs)
|
||||
|
||||
|
||||
class Effect100200(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaHacExploVel
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredChargeBoost(
|
||||
lambda mod: mod.charge.requiresSkill('Heavy Assault Missiles') or mod.charge.requiresSkill('Heavy Missiles'),
|
||||
'aoeVelocity', 10, skill='Heavy Assault Cruisers', **kwargs)
|
||||
|
||||
|
||||
|
||||
class Effect100201(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaHacRof
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.group.name in (
|
||||
'Missile Launcher Heavy Assault', 'Missile Launcher Heavy', 'Missile Launcher Rapid Heavy'),
|
||||
'speed', -10, skill='Heavy Assault Cruisers', **kwargs)
|
||||
|
||||
|
||||
|
||||
class Effect100202(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaMcDmg
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, src, context, projectionRange, **kwargs):
|
||||
for dmgType in ('em', 'kinetic', 'explosive', 'thermal'):
|
||||
fit.modules.filteredChargeBoost(
|
||||
lambda mod: (
|
||||
mod.charge.requiresSkill('Light Missiles')
|
||||
or mod.charge.requiresSkill('Heavy Assault Missiles')
|
||||
or mod.charge.requiresSkill('Heavy Missiles')),
|
||||
f'{dmgType}Damage', 10, skill='Minmatar Cruiser', **kwargs)
|
||||
|
||||
|
||||
class Effect100203(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaMcRep
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, src, context, projectionRange, **kwargs):
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.requiresSkill('Shield Operation'),
|
||||
'shieldBonus', 10, skill='Minmatar Cruiser', **kwargs)
|
||||
fit.modules.filteredItemBoost(
|
||||
lambda mod: mod.item.requiresSkill('Repair Systems'),
|
||||
'armorDamageAmount', 10, skill='Minmatar Cruiser', **kwargs)
|
||||
|
||||
|
||||
class Effect100204(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaRoleWebDroneStr
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'), 'speedFactor', 500, **kwargs)
|
||||
|
||||
|
||||
class Effect100205(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaRoleWebDroneHP
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
for layer in ('shieldCapacity', 'armorHP', 'hp'):
|
||||
fit.drones.filteredItemBoost(lambda drone: drone.item.requiresSkill('Drones'), layer, 500, **kwargs)
|
||||
|
||||
|
||||
class Effect100206(BaseEffect):
|
||||
"""
|
||||
pyfaCustomBestlaRoleWebDroneSpeed
|
||||
|
||||
Used by:
|
||||
Ship: Bestla
|
||||
"""
|
||||
|
||||
type = 'passive'
|
||||
|
||||
@staticmethod
|
||||
def handler(fit, ship, context, projectionRange, **kwargs):
|
||||
fit.drones.filteredItemBoost(
|
||||
lambda drone: drone.item.requiresSkill('Drones'), 'maxVelocity', 50, **kwargs)
|
||||
|
||||
@@ -44,7 +44,6 @@ class AddCommandFit(ContextMenuUnconditional):
|
||||
def display(self, callingWindow, srcContext):
|
||||
if self.mainFrame.getActiveFit() is None or len(self.__class__.commandFits) == 0 or srcContext != "commandView":
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def getText(self, callingWindow, itmContext):
|
||||
@@ -52,6 +51,8 @@ class AddCommandFit(ContextMenuUnconditional):
|
||||
|
||||
def addFit(self, menu, fit, includeShip=False):
|
||||
label = fit.name if not includeShip else "({}) {}".format(fit.ship.item.name, fit.name)
|
||||
if not label:
|
||||
label = ' '
|
||||
id = ContextMenuUnconditional.nextID()
|
||||
self.fitMenuItemIds[id] = fit
|
||||
menuItem = wx.MenuItem(menu, id, label)
|
||||
|
||||
@@ -123,7 +123,7 @@ class AddEnvironmentEffect(ContextMenuUnconditional):
|
||||
data.groups[_t('Abyssal Weather')] = self.getAbyssalWeather()
|
||||
data.groups[_t('Sansha Incursion')] = self.getEffectBeacons(
|
||||
_t('ContextMenu|ProjectedEffectManipulation|Sansha Incursion'))
|
||||
data.groups[_t('Triglavian Invasion')] = self.getDestructibleBeacons()
|
||||
data.groups[_t('Triglavian Invasion')] = self.getInvasionBeacons()
|
||||
return data
|
||||
|
||||
def getEffectBeacons(self, *groups, extra_garbage=()):
|
||||
@@ -231,5 +231,12 @@ class AddEnvironmentEffect(ContextMenuUnconditional):
|
||||
data.sort()
|
||||
return data
|
||||
|
||||
def getInvasionBeacons(self):
|
||||
data = self.getDestructibleBeacons()
|
||||
# Turnur weather
|
||||
item = Market.getInstance().getItem(74002)
|
||||
data.items.append(Entry(item.ID, item.name, item.name))
|
||||
return data
|
||||
|
||||
|
||||
AddEnvironmentEffect.register()
|
||||
|
||||
|
Before Width: | Height: | Size: 827 B |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.6 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.7 KiB |
BIN
imgs/renders/25601@1x.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
imgs/renders/25601@2x.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
imgs/renders/25602@1x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
imgs/renders/25602@2x.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
imgs/renders/25603@1x.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
imgs/renders/25603@2x.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
imgs/renders/25604@1x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
imgs/renders/25604@2x.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
imgs/renders/25606@1x.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
imgs/renders/25606@2x.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
imgs/renders/25607@1x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
imgs/renders/25607@2x.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
imgs/renders/25608@1x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
imgs/renders/25608@2x.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
imgs/renders/25609@1x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
imgs/renders/25609@2x.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.1 KiB |
@@ -319,6 +319,8 @@ class Market:
|
||||
"Raiju" : self.les_grp, # AT17 prize
|
||||
"Laelaps" : self.les_grp, # AT17 prize
|
||||
"Boobook" : self.les_grp, # 19th EVE anniversary gift
|
||||
"Geri" : self.les_grp, # AT18 prize
|
||||
"Bestla" : self.les_grp, # AT18 prize
|
||||
}
|
||||
|
||||
self.ITEMS_FORCEGROUP_R = self.__makeRevDict(self.ITEMS_FORCEGROUP)
|
||||
|
||||
@@ -310,7 +310,7 @@
|
||||
"categoryID": 26,
|
||||
"categoryName_de": "WeltRaum",
|
||||
"categoryName_en-us": "WorldSpace",
|
||||
"categoryName_es": "Lugares del mundo",
|
||||
"categoryName_es": "WorldSpace",
|
||||
"categoryName_fr": "Espace planétaire",
|
||||
"categoryName_it": "WorldSpace",
|
||||
"categoryName_ja": "ワールドスペース",
|
||||
@@ -630,14 +630,14 @@
|
||||
},
|
||||
"2118": {
|
||||
"categoryID": 2118,
|
||||
"categoryName_de": "Personalization",
|
||||
"categoryName_de": "Anpassung",
|
||||
"categoryName_en-us": "Personalization",
|
||||
"categoryName_es": "Personalization",
|
||||
"categoryName_fr": "Personalization",
|
||||
"categoryName_es": "Personalización",
|
||||
"categoryName_fr": "Personnalisation",
|
||||
"categoryName_it": "Personalization",
|
||||
"categoryName_ja": "Personalization",
|
||||
"categoryName_ko": "Personalization",
|
||||
"categoryName_ru": "Personalization",
|
||||
"categoryName_ja": "カスタマイズ",
|
||||
"categoryName_ko": "개인화",
|
||||
"categoryName_ru": "Персонализация",
|
||||
"categoryName_zh": "Personalization",
|
||||
"categoryNameID": 631766,
|
||||
"published": 1
|
||||
|
||||
@@ -46126,9 +46126,10 @@
|
||||
},
|
||||
"3236": {
|
||||
"attributeID": 3236,
|
||||
"categoryID": 9,
|
||||
"categoryID": 51,
|
||||
"dataType": 3,
|
||||
"defaultValue": 0.0,
|
||||
"description": "If set to true, this results in no mining waste.",
|
||||
"displayWhenZero": 0,
|
||||
"highIsGood": 0,
|
||||
"name": "ignoreMiningWaste",
|
||||
@@ -46730,14 +46731,14 @@
|
||||
"dataType": 3,
|
||||
"defaultValue": 0.0,
|
||||
"description": "It is a Boolean Value that defaults to false. If true, it will only allow players to Hack if they belong to the Faction that is an enemy of the Occupier of the Star System.",
|
||||
"displayName_de": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_de": "Nur Angreifer aus dem Fraktionskrieg zulassen",
|
||||
"displayName_en-us": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_es": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_fr": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_es": "Permitir solo atacantes de la guerra de facciones",
|
||||
"displayName_fr": "N'autoriser que les assaillants de la guerre de faction",
|
||||
"displayName_it": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_ja": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_ko": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_ru": "Allow Only Factional Warfare Attackers",
|
||||
"displayName_ja": "国家間戦争の攻撃側のみが利用可能",
|
||||
"displayName_ko": "팩션 전쟁 공격 측 입장 가능",
|
||||
"displayName_ru": "Допускать только нападающую сторону МВ",
|
||||
"displayName_zh": "Allow Only Factional Warfare Attackers",
|
||||
"displayNameID": 635862,
|
||||
"displayWhenZero": 0,
|
||||
@@ -47069,5 +47070,16 @@
|
||||
"name": "shipBonusGB3",
|
||||
"published": 0,
|
||||
"stackable": 1
|
||||
},
|
||||
"5248": {
|
||||
"attributeID": 5248,
|
||||
"categoryID": 37,
|
||||
"dataType": 5,
|
||||
"defaultValue": 0.0,
|
||||
"displayWhenZero": 0,
|
||||
"highIsGood": 1,
|
||||
"name": "shipBonusDreadnoughtM4",
|
||||
"published": 0,
|
||||
"stackable": 1
|
||||
}
|
||||
}
|
||||
@@ -63142,6 +63142,13 @@
|
||||
"modifiedAttributeID": 2294,
|
||||
"modifyingAttributeID": 280,
|
||||
"operation": 0
|
||||
},
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "ItemModifier",
|
||||
"modifiedAttributeID": 5248,
|
||||
"modifyingAttributeID": 280,
|
||||
"operation": 0
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
@@ -91239,7 +91246,7 @@
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
"effectID": 11374,
|
||||
"effectName": "shipBonusDreadnoughtA4EnergyWarfareAmountBonus",
|
||||
"effectName": "shipBonusDreadnoughtA4EnergyWarfareRangeAmountBonus",
|
||||
"electronicChance": 0,
|
||||
"guid": "",
|
||||
"isAssistance": 0,
|
||||
@@ -91267,40 +91274,6 @@
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11375": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
"effectID": 11375,
|
||||
"effectName": "shipBonusDreadnoughtA4EnergyWarfareRangeBonus",
|
||||
"electronicChance": 0,
|
||||
"guid": "",
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"modifierInfo": [
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "LocationGroupModifier",
|
||||
"groupID": 71,
|
||||
"modifiedAttributeID": 98,
|
||||
"modifyingAttributeID": 5214,
|
||||
"operation": 6,
|
||||
"skillTypeID": 3423
|
||||
},
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "LocationGroupModifier",
|
||||
"groupID": 68,
|
||||
"modifiedAttributeID": 91,
|
||||
"modifyingAttributeID": 5214,
|
||||
"operation": 6,
|
||||
"skillTypeID": 3423
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11376": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
@@ -91325,81 +91298,6 @@
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11377": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
"effectID": 1587,
|
||||
"effectName": "capitalTurretSkillHybridOptimalRange",
|
||||
"electronicChance": 0,
|
||||
"guid": "",
|
||||
"iconID": 0,
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"modifierInfo": [
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "LocationRequiredSkillModifier",
|
||||
"modifiedAttributeID": 64,
|
||||
"modifyingAttributeID": 292,
|
||||
"operation": 6,
|
||||
"skillTypeID": 21666
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11378": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
"effectID": 2868,
|
||||
"effectName": "armorDamageAmountBonusCapitalArmorRepairers",
|
||||
"electronicChance": 0,
|
||||
"guid": "None",
|
||||
"iconID": 0,
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"modifierInfo": [
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "LocationRequiredSkillModifier",
|
||||
"modifiedAttributeID": 84,
|
||||
"modifyingAttributeID": 806,
|
||||
"operation": 6,
|
||||
"skillTypeID": 21803
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0,
|
||||
"sfxName": "None"
|
||||
},
|
||||
"11379": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
"effectID": 6509,
|
||||
"effectName": "shipBonusDreadnoughtM1DamageBonus",
|
||||
"electronicChance": 0,
|
||||
"guid": "",
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"modifierInfo": [
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "LocationRequiredSkillModifier",
|
||||
"modifiedAttributeID": 64,
|
||||
"modifyingAttributeID": 2292,
|
||||
"operation": 6,
|
||||
"skillTypeID": 21667
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11380": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
@@ -91448,14 +91346,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11382": {
|
||||
"description_de": "Automatically generated effect ( copy )",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect ( copy )",
|
||||
"description_es": "Automatically generated effect ( copy )",
|
||||
"description_es": "Efecto generado automáticamente (copia)",
|
||||
"description_fr": "Automatically generated effect ( copy )",
|
||||
"description_it": "Automatically generated effect ( copy )",
|
||||
"description_ja": "Automatically generated effect ( copy )",
|
||||
"description_ko": "Automatically generated effect ( copy )",
|
||||
"description_ru": "Automatically generated effect ( copy )",
|
||||
"description_ja": "自動生成効果(コピー)",
|
||||
"description_ko": "자동 생성 효과 (복제)",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect ( copy )",
|
||||
"descriptionID": 638155,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91505,14 +91403,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11388": {
|
||||
"description_de": "Automatically generated effect",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect",
|
||||
"description_es": "Automatically generated effect",
|
||||
"description_es": "Efecto generado automáticamente.",
|
||||
"description_fr": "Automatically generated effect",
|
||||
"description_it": "Automatically generated effect",
|
||||
"description_ja": "Automatically generated effect",
|
||||
"description_ko": "Automatically generated effect",
|
||||
"description_ru": "Automatically generated effect",
|
||||
"description_ja": "自動生成効果",
|
||||
"description_ko": "자동 생성 효과",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect",
|
||||
"descriptionID": 638201,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91538,14 +91436,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11390": {
|
||||
"description_de": "Automatically generated effect",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect",
|
||||
"description_es": "Automatically generated effect",
|
||||
"description_es": "Efecto generado automáticamente.",
|
||||
"description_fr": "Automatically generated effect",
|
||||
"description_it": "Automatically generated effect",
|
||||
"description_ja": "Automatically generated effect",
|
||||
"description_ko": "Automatically generated effect",
|
||||
"description_ru": "Automatically generated effect",
|
||||
"description_ja": "自動生成効果",
|
||||
"description_ko": "자동 생성 효과",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect",
|
||||
"descriptionID": 638262,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91643,14 +91541,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11394": {
|
||||
"description_de": "Automatically generated effect",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect",
|
||||
"description_es": "Automatically generated effect",
|
||||
"description_es": "Efecto generado automáticamente.",
|
||||
"description_fr": "Automatically generated effect",
|
||||
"description_it": "Automatically generated effect",
|
||||
"description_ja": "Automatically generated effect",
|
||||
"description_ko": "Automatically generated effect",
|
||||
"description_ru": "Automatically generated effect",
|
||||
"description_ja": "自動生成効果",
|
||||
"description_ko": "자동 생성 효과",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect",
|
||||
"descriptionID": 638276,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91676,14 +91574,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11395": {
|
||||
"description_de": "Automatically generated effect",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect",
|
||||
"description_es": "Automatically generated effect",
|
||||
"description_es": "Efecto generado automáticamente.",
|
||||
"description_fr": "Automatically generated effect",
|
||||
"description_it": "Automatically generated effect",
|
||||
"description_ja": "Automatically generated effect",
|
||||
"description_ko": "Automatically generated effect",
|
||||
"description_ru": "Automatically generated effect",
|
||||
"description_ja": "自動生成効果",
|
||||
"description_ko": "자동 생성 효과",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect",
|
||||
"descriptionID": 638278,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91756,14 +91654,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11398": {
|
||||
"description_de": "Automatically generated effect",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect",
|
||||
"description_es": "Automatically generated effect",
|
||||
"description_es": "Efecto generado automáticamente.",
|
||||
"description_fr": "Automatically generated effect",
|
||||
"description_it": "Automatically generated effect",
|
||||
"description_ja": "Automatically generated effect",
|
||||
"description_ko": "Automatically generated effect",
|
||||
"description_ru": "Automatically generated effect",
|
||||
"description_ja": "自動生成効果",
|
||||
"description_ko": "자동 생성 효과",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect",
|
||||
"descriptionID": 638286,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91836,14 +91734,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11401": {
|
||||
"description_de": "Automatically generated effect",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect",
|
||||
"description_es": "Automatically generated effect",
|
||||
"description_es": "Efecto generado automáticamente.",
|
||||
"description_fr": "Automatically generated effect",
|
||||
"description_it": "Automatically generated effect",
|
||||
"description_ja": "Automatically generated effect",
|
||||
"description_ko": "Automatically generated effect",
|
||||
"description_ru": "Automatically generated effect",
|
||||
"description_ja": "自動生成効果",
|
||||
"description_ko": "자동 생성 효과",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect",
|
||||
"descriptionID": 638392,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -91870,14 +91768,14 @@
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11402": {
|
||||
"description_de": "Automatically generated effect ( copy )",
|
||||
"description_de": "Automatisch erzeugter Effekt",
|
||||
"description_en-us": "Automatically generated effect ( copy )",
|
||||
"description_es": "Automatically generated effect ( copy )",
|
||||
"description_es": "Efecto generado automáticamente (copia)",
|
||||
"description_fr": "Automatically generated effect ( copy )",
|
||||
"description_it": "Automatically generated effect ( copy )",
|
||||
"description_ja": "Automatically generated effect ( copy )",
|
||||
"description_ko": "Automatically generated effect ( copy )",
|
||||
"description_ru": "Automatically generated effect ( copy )",
|
||||
"description_ja": "自動生成効果(コピー)",
|
||||
"description_ko": "자동 생성 효과 (복제)",
|
||||
"description_ru": "Автоматически созданный эффект",
|
||||
"description_zh": "Automatically generated effect ( copy )",
|
||||
"descriptionID": 638289,
|
||||
"disallowAutoRepeat": 0,
|
||||
@@ -92718,6 +92616,49 @@
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11445": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 7,
|
||||
"effectID": 11445,
|
||||
"effectName": "systemSensorStrengthBonus",
|
||||
"electronicChance": 0,
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"modifierInfo": [
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "ItemModifier",
|
||||
"modifiedAttributeID": 208,
|
||||
"modifyingAttributeID": 1851,
|
||||
"operation": 6
|
||||
},
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "ItemModifier",
|
||||
"modifiedAttributeID": 209,
|
||||
"modifyingAttributeID": 1851,
|
||||
"operation": 6
|
||||
},
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "ItemModifier",
|
||||
"modifiedAttributeID": 210,
|
||||
"modifyingAttributeID": 1851,
|
||||
"operation": 6
|
||||
},
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "ItemModifier",
|
||||
"modifiedAttributeID": 211,
|
||||
"modifyingAttributeID": 1851,
|
||||
"operation": 6
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11446": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
@@ -92944,5 +92885,46 @@
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11453": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"dischargeAttributeID": 2674,
|
||||
"distribution": 2,
|
||||
"durationAttributeID": 2490,
|
||||
"effectCategory": 2,
|
||||
"effectID": 11453,
|
||||
"effectName": "npcBehaviorFakeMiningLaser",
|
||||
"electronicChance": 0,
|
||||
"guid": "effects.Laser",
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeAttributeID": 2673,
|
||||
"rangeChance": 0
|
||||
},
|
||||
"11454": {
|
||||
"disallowAutoRepeat": 0,
|
||||
"effectCategory": 0,
|
||||
"effectID": 11454,
|
||||
"effectName": "shipBonusGrapplerFalloffM4",
|
||||
"electronicChance": 0,
|
||||
"isAssistance": 0,
|
||||
"isOffensive": 0,
|
||||
"isWarpSafe": 0,
|
||||
"modifierInfo": [
|
||||
{
|
||||
"domain": "shipID",
|
||||
"func": "LocationGroupModifier",
|
||||
"groupID": 1672,
|
||||
"modifiedAttributeID": 2044,
|
||||
"modifyingAttributeID": 5248,
|
||||
"operation": 6
|
||||
}
|
||||
],
|
||||
"propulsionChance": 0,
|
||||
"published": 0,
|
||||
"rangeChance": 0
|
||||
}
|
||||
}
|
||||
@@ -895,7 +895,7 @@
|
||||
"description_it": "Hours",
|
||||
"description_ja": "時間",
|
||||
"description_ko": "h",
|
||||
"description_ru": "часы\n",
|
||||
"description_ru": "часы",
|
||||
"description_zh": "小时",
|
||||
"descriptionID": 77995,
|
||||
"name": "Hours"
|
||||
|
||||
@@ -977,7 +977,7 @@
|
||||
"groupNameID": 63623,
|
||||
"iconID": 0,
|
||||
"published": 1,
|
||||
"useBasePrice": 0
|
||||
"useBasePrice": 1
|
||||
},
|
||||
"63": {
|
||||
"anchorable": 0,
|
||||
@@ -1367,7 +1367,7 @@
|
||||
"groupID": 92,
|
||||
"groupName_de": "Mine",
|
||||
"groupName_en-us": "Mine",
|
||||
"groupName_es": "Extraer",
|
||||
"groupName_es": "Minería",
|
||||
"groupName_fr": "Mine",
|
||||
"groupName_it": "Mine",
|
||||
"groupName_ja": "機雷",
|
||||
@@ -4157,7 +4157,7 @@
|
||||
"groupID": 314,
|
||||
"groupName_de": "Diverse",
|
||||
"groupName_en-us": "Miscellaneous",
|
||||
"groupName_es": "Otro",
|
||||
"groupName_es": "Varios",
|
||||
"groupName_fr": "Divers",
|
||||
"groupName_it": "Miscellaneous",
|
||||
"groupName_ja": "その他",
|
||||
@@ -6715,7 +6715,7 @@
|
||||
"groupID": 471,
|
||||
"groupName_de": "Corporation-Hangar-Struktur",
|
||||
"groupName_en-us": "Corporate Hangar Array",
|
||||
"groupName_es": "Dársena de hangares corporativos",
|
||||
"groupName_es": "Dársenas de hangares corporativos",
|
||||
"groupName_fr": "Module du hangar corporatif",
|
||||
"groupName_it": "Corporate Hangar Array",
|
||||
"groupName_ja": "コーポハンガー施設",
|
||||
@@ -6895,7 +6895,7 @@
|
||||
"groupID": 480,
|
||||
"groupName_de": "Tarnkappensendeanlage",
|
||||
"groupName_en-us": "Stealth Emitter Array",
|
||||
"groupName_es": "Sistema emisor de sigilo",
|
||||
"groupName_es": "Sistema emisor sigiloso",
|
||||
"groupName_fr": "Module d'émission furtif",
|
||||
"groupName_it": "Stealth Emitter Array",
|
||||
"groupName_ja": "ステルスエミッター施設",
|
||||
@@ -13113,7 +13113,7 @@
|
||||
"groupID": 832,
|
||||
"groupName_de": "Logistik",
|
||||
"groupName_en-us": "Logistics",
|
||||
"groupName_es": "Naves logísticas",
|
||||
"groupName_es": "Logística",
|
||||
"groupName_fr": "Logistique",
|
||||
"groupName_it": "Logistics",
|
||||
"groupName_ja": "支援型巡洋艦",
|
||||
@@ -13233,7 +13233,7 @@
|
||||
"groupID": 838,
|
||||
"groupName_de": "Anziehungsgeneratoranlage",
|
||||
"groupName_en-us": "Cynosural Generator Array",
|
||||
"groupName_es": "Sistema generador cinosural",
|
||||
"groupName_es": "Sistemas generadores cinosurales",
|
||||
"groupName_fr": "Module de génération cynosurale",
|
||||
"groupName_it": "Cynosural Generator Array",
|
||||
"groupName_ja": "サイノシュアル生成施設",
|
||||
@@ -13993,7 +13993,7 @@
|
||||
"groupID": 877,
|
||||
"groupName_de": "Zielmarkierungsbatterie",
|
||||
"groupName_en-us": "Target Painting Battery",
|
||||
"groupName_es": "Batería de revelación de objetivos",
|
||||
"groupName_es": "Batería de revelador de objetivo",
|
||||
"groupName_fr": "Batterie de marquage de cible",
|
||||
"groupName_it": "Target Painting Battery",
|
||||
"groupName_ja": "ターゲットペインティングバッテリー",
|
||||
@@ -14901,7 +14901,7 @@
|
||||
"groupID": 935,
|
||||
"groupName_de": "WeltRaum",
|
||||
"groupName_en-us": "WorldSpace",
|
||||
"groupName_es": "Lugares del mundo",
|
||||
"groupName_es": "WorldSpace",
|
||||
"groupName_fr": "Espace planétaire",
|
||||
"groupName_it": "WorldSpace",
|
||||
"groupName_ja": "ワールドスペース",
|
||||
@@ -19466,7 +19466,7 @@
|
||||
"groupID": 1319,
|
||||
"groupName_de": "Verschiedenes",
|
||||
"groupName_en-us": "Miscellaneous",
|
||||
"groupName_es": "Otro",
|
||||
"groupName_es": "Varios",
|
||||
"groupName_fr": "Divers",
|
||||
"groupName_it": "Miscellaneous",
|
||||
"groupName_ja": "その他",
|
||||
@@ -28189,14 +28189,14 @@
|
||||
"categoryID": 2118,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4471,
|
||||
"groupName_de": "Ship Personalization",
|
||||
"groupName_de": "Schiffsanpassung",
|
||||
"groupName_en-us": "Ship Personalization",
|
||||
"groupName_es": "Ship Personalization",
|
||||
"groupName_fr": "Ship Personalization",
|
||||
"groupName_es": "Personalización de naves",
|
||||
"groupName_fr": "Personnalisation de vaisseau",
|
||||
"groupName_it": "Ship Personalization",
|
||||
"groupName_ja": "Ship Personalization",
|
||||
"groupName_ko": "Ship Personalization",
|
||||
"groupName_ru": "Ship Personalization",
|
||||
"groupName_ja": "艦船カスタマイズ",
|
||||
"groupName_ko": "함선 개인화",
|
||||
"groupName_ru": "Персонализация корабля",
|
||||
"groupName_zh": "Ship Personalization",
|
||||
"groupNameID": 631767,
|
||||
"published": 1,
|
||||
@@ -28208,14 +28208,14 @@
|
||||
"categoryID": 22,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4477,
|
||||
"groupName_de": "Mobiles Ziel",
|
||||
"groupName_de": "FK-Propaganda-Sendeanlage",
|
||||
"groupName_en-us": "FW Propaganda Broadcast Structure",
|
||||
"groupName_es": "FW Propaganda Broadcast Structure",
|
||||
"groupName_fr": "Objectif mobile",
|
||||
"groupName_es": "Estructura de transmisión de propaganda de la GF",
|
||||
"groupName_fr": "Structure de diffusion de propagande de GF",
|
||||
"groupName_it": "FW Propaganda Broadcast Structure",
|
||||
"groupName_ja": "移動目標",
|
||||
"groupName_ko": "이동형 목표물",
|
||||
"groupName_ru": "Подвижная цель",
|
||||
"groupName_ja": "国家間戦争プロパガンダ放送ストラクチャ",
|
||||
"groupName_ko": "팩션 전쟁 선전용 방송시설",
|
||||
"groupName_ru": "Сооружение для передачи пропаганды МВ",
|
||||
"groupName_zh": "FW Propaganda Broadcast Structure",
|
||||
"groupNameID": 635229,
|
||||
"published": 1,
|
||||
@@ -28227,14 +28227,14 @@
|
||||
"categoryID": 9,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4493,
|
||||
"groupName_de": "Mobile Objective Blueprint",
|
||||
"groupName_de": "Blaupause für mobile Ziele",
|
||||
"groupName_en-us": "Mobile Objective Blueprint",
|
||||
"groupName_es": "Mobile Objective Blueprint",
|
||||
"groupName_fr": "Mobile Objective Blueprint",
|
||||
"groupName_es": "Plano de objetivo móvil",
|
||||
"groupName_fr": "Plan de construction Objectif mobile",
|
||||
"groupName_it": "Mobile Objective Blueprint",
|
||||
"groupName_ja": "Mobile Objective Blueprint",
|
||||
"groupName_ko": "Mobile Objective Blueprint",
|
||||
"groupName_ru": "Mobile Objective Blueprint",
|
||||
"groupName_ja": "移動式施設設計図",
|
||||
"groupName_ko": "이동형 목표물 블루프린트",
|
||||
"groupName_ru": "Чертёж подвижной цели",
|
||||
"groupName_zh": "Mobile Objective Blueprint",
|
||||
"groupNameID": 636346,
|
||||
"published": 1,
|
||||
@@ -28246,14 +28246,14 @@
|
||||
"categoryID": 11,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4494,
|
||||
"groupName_de": "Control Point",
|
||||
"groupName_de": "Kontrollpunkt",
|
||||
"groupName_en-us": "Control Point",
|
||||
"groupName_es": "Control Point",
|
||||
"groupName_fr": "Control Point",
|
||||
"groupName_es": "Punto de control",
|
||||
"groupName_fr": "Point de contrôle",
|
||||
"groupName_it": "Control Point",
|
||||
"groupName_ja": "Control Point",
|
||||
"groupName_ko": "Control Point",
|
||||
"groupName_ru": "Control Point",
|
||||
"groupName_ja": "コントロールポイント",
|
||||
"groupName_ko": "컨트롤 포인트",
|
||||
"groupName_ru": "Контрольная точка",
|
||||
"groupName_zh": "Control Point",
|
||||
"groupNameID": 637132,
|
||||
"published": 0,
|
||||
@@ -28265,19 +28265,118 @@
|
||||
"categoryID": 22,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4499,
|
||||
"groupName_de": "FW Listening Outpost",
|
||||
"groupName_de": "FK-Horchaußenposten",
|
||||
"groupName_en-us": "FW Listening Outpost",
|
||||
"groupName_es": "FW Listening Outpost",
|
||||
"groupName_fr": "FW Listening Outpost",
|
||||
"groupName_es": "Puesto avanzado de escucha de la GF",
|
||||
"groupName_fr": "Avant-poste d'écoute de la GF",
|
||||
"groupName_it": "FW Listening Outpost",
|
||||
"groupName_ja": "FW Listening Outpost",
|
||||
"groupName_ko": "FW Listening Outpost",
|
||||
"groupName_ru": "FW Listening Outpost",
|
||||
"groupName_ja": "国家間戦争のリスニングアウトポスト",
|
||||
"groupName_ko": "팩션 전쟁 감청기지",
|
||||
"groupName_ru": "Прослушивающий форпост МВ",
|
||||
"groupName_zh": "FW Listening Outpost",
|
||||
"groupNameID": 638199,
|
||||
"published": 1,
|
||||
"useBasePrice": 1
|
||||
},
|
||||
"4501": {
|
||||
"anchorable": 0,
|
||||
"anchored": 0,
|
||||
"categoryID": 11,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4501,
|
||||
"groupName_de": "Missionen: Standard-Kapseln",
|
||||
"groupName_en-us": "Mission Generic Capsules",
|
||||
"groupName_es": "Capsulas de misión genéricas",
|
||||
"groupName_fr": "Capsules standard de mission",
|
||||
"groupName_it": "Mission Generic Capsules",
|
||||
"groupName_ja": "ミッション一般カプセル",
|
||||
"groupName_ko": "미션 일반 캡슐",
|
||||
"groupName_ru": "Mission Generic Capsules",
|
||||
"groupName_zh": "Mission Generic Capsules",
|
||||
"groupNameID": 639247,
|
||||
"published": 0,
|
||||
"useBasePrice": 0
|
||||
},
|
||||
"4513": {
|
||||
"anchorable": 0,
|
||||
"anchored": 1,
|
||||
"categoryID": 25,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4513,
|
||||
"groupName_de": "Mordunium",
|
||||
"groupName_en-us": "Mordunium",
|
||||
"groupName_es": "Mordunium",
|
||||
"groupName_fr": "Mordunium",
|
||||
"groupName_it": "Mordunium",
|
||||
"groupName_ja": "Mordunium",
|
||||
"groupName_ko": "Mordunium",
|
||||
"groupName_ru": "Mordunium",
|
||||
"groupName_zh": "Mordunium",
|
||||
"groupNameID": 640735,
|
||||
"iconID": 15,
|
||||
"published": 1,
|
||||
"useBasePrice": 0
|
||||
},
|
||||
"4514": {
|
||||
"anchorable": 0,
|
||||
"anchored": 1,
|
||||
"categoryID": 25,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4514,
|
||||
"groupName_de": "Ytirium",
|
||||
"groupName_en-us": "Ytirium",
|
||||
"groupName_es": "Ytirium",
|
||||
"groupName_fr": "Ytirium",
|
||||
"groupName_it": "Ytirium",
|
||||
"groupName_ja": "Ytirium",
|
||||
"groupName_ko": "Ytirium",
|
||||
"groupName_ru": "Ytirium",
|
||||
"groupName_zh": "Ytirium",
|
||||
"groupNameID": 640736,
|
||||
"iconID": 15,
|
||||
"published": 1,
|
||||
"useBasePrice": 0
|
||||
},
|
||||
"4515": {
|
||||
"anchorable": 0,
|
||||
"anchored": 1,
|
||||
"categoryID": 25,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4515,
|
||||
"groupName_de": "Eifyrium",
|
||||
"groupName_en-us": "Eifyrium",
|
||||
"groupName_es": "Eifyrium",
|
||||
"groupName_fr": "Eifyrium",
|
||||
"groupName_it": "Eifyrium",
|
||||
"groupName_ja": "Eifyrium",
|
||||
"groupName_ko": "Eifyrium",
|
||||
"groupName_ru": "Eifyrium",
|
||||
"groupName_zh": "Eifyrium",
|
||||
"groupNameID": 640737,
|
||||
"iconID": 15,
|
||||
"published": 1,
|
||||
"useBasePrice": 0
|
||||
},
|
||||
"4516": {
|
||||
"anchorable": 0,
|
||||
"anchored": 1,
|
||||
"categoryID": 25,
|
||||
"fittableNonSingleton": 0,
|
||||
"groupID": 4516,
|
||||
"groupName_de": "Ducinium",
|
||||
"groupName_en-us": "Ducinium",
|
||||
"groupName_es": "Ducinium",
|
||||
"groupName_fr": "Ducinium",
|
||||
"groupName_it": "Ducinium",
|
||||
"groupName_ja": "Ducinium",
|
||||
"groupName_ko": "Ducinium",
|
||||
"groupName_ru": "Ducinium",
|
||||
"groupName_zh": "Ducinium",
|
||||
"groupNameID": 640738,
|
||||
"iconID": 15,
|
||||
"published": 1,
|
||||
"useBasePrice": 0
|
||||
},
|
||||
"350858": {
|
||||
"anchorable": 0,
|
||||
"anchored": 0,
|
||||
|
||||
@@ -6595,7 +6595,7 @@
|
||||
"description_es": "Subtipos de la mena veldspar.\n\n ",
|
||||
"description_fr": "Sous-catégories du minerai veldspar.\n\t\t\t\t",
|
||||
"description_it": "Sub-types of veldspar ore.\r\n ",
|
||||
"description_ja": "ベルドスパー鉱石の亜種。\r\n",
|
||||
"description_ja": "ベルドスパー鉱石の亜種。",
|
||||
"description_ko": "다양한 부류의 벨드스파 광석입니다.\n\n ",
|
||||
"description_ru": " Подвиды руды Veldspar.",
|
||||
"description_zh": "凡晶石的分支。",
|
||||
@@ -32217,7 +32217,7 @@
|
||||
"1922": {
|
||||
"description_de": "Für Kapselpiloten verfügbare Dienste beinhalten PLEX, Multiples Pilotentraining, Zertifikate zur Neuanpassung des Piloten und Skilltauschgegenstände",
|
||||
"description_en-us": "Services available to capsuleers include PLEX, Multiple Pilot Training, Pilot's Body Resculpt Certificates, and Skill Trading items",
|
||||
"description_es": "Entre los servicios disponibles para capsulistas, se incluyen PLEX, adiestramiento simultáneo de pilotos, certificados de remodelado corporal y artículos de mejora y modificación de habilidades.",
|
||||
"description_es": "Entre los servicios disponibles para capsulistas, se incluyen PLEX, entrenamiento simultáneo de pilotos, certificados de remodelado corporal y artículos de mejora y modificación de habilidades.",
|
||||
"description_fr": "Les services à disposition des capsuliers incluent les PLEX, les certificats d'entraînements de plusieurs personnages, les certificats de remodelage physique du pilote et les objets liés au commerce de compétences.",
|
||||
"description_it": "Services available to capsuleers include PLEX, Multiple Pilot Training, Pilot's Body Resculpt Certificates, and Skill Trading items",
|
||||
"description_ja": "カプセラが利用できるサービスには、パイロットライセンスの拡張(PLEX)、複数のパイロットトレーニング、パイロットの身体骨格再調整証明書、スキルのトレードなどが含まれます",
|
||||
@@ -37936,7 +37936,7 @@
|
||||
"description_ru": "Модификации дредноутов, используемые различными организациями галактики.",
|
||||
"description_zh": "势力无畏舰设计。",
|
||||
"descriptionID": 312558,
|
||||
"hasTypes": 1,
|
||||
"hasTypes": 0,
|
||||
"iconID": 1443,
|
||||
"name_de": "Fraktions-Dreadnoughts",
|
||||
"name_en-us": "Faction Dreadnoughts",
|
||||
@@ -42764,12 +42764,12 @@
|
||||
"iconID": 24135,
|
||||
"name_de": "Triglavia",
|
||||
"name_en-us": "Triglavian",
|
||||
"name_es": "Superacorazados precursores",
|
||||
"name_es": "Triglaviano",
|
||||
"name_fr": "Triglavian",
|
||||
"name_it": "Triglavian",
|
||||
"name_ja": "トリグラビアン",
|
||||
"name_ko": "트리글라비안",
|
||||
"name_ru": "Триглавские",
|
||||
"name_ru": "Триглав",
|
||||
"name_zh": "先驱者无畏舰",
|
||||
"nameID": 553050,
|
||||
"parentGroupID": 761
|
||||
@@ -44027,139 +44027,139 @@
|
||||
"3450": {
|
||||
"hasTypes": 1,
|
||||
"iconID": 16,
|
||||
"name_de": "Mobile Objectives",
|
||||
"name_en-us": "Mobile Objectives",
|
||||
"name_es": "Mobile Objectives",
|
||||
"name_fr": "Mobile Objectives",
|
||||
"name_it": "Mobile Objectives",
|
||||
"name_ja": "Mobile Objectives",
|
||||
"name_ko": "Mobile Objectives",
|
||||
"name_ru": "Mobile Objectives",
|
||||
"name_zh": "Mobile Objectives",
|
||||
"name_de": "Mobile strategische Ziele",
|
||||
"name_en-us": "Mobile Strategic Objectives",
|
||||
"name_es": "Objetivos estratégicos móviles",
|
||||
"name_fr": "Mobile Strategic Objectives",
|
||||
"name_it": "Mobile Strategic Objectives",
|
||||
"name_ja": "移動式戦略施設",
|
||||
"name_ko": "이동형 전략 목표물",
|
||||
"name_ru": "Подвижные стратегические цели",
|
||||
"name_zh": "Mobile Strategic Objectives",
|
||||
"nameID": 636347,
|
||||
"parentGroupID": 404
|
||||
},
|
||||
"3451": {
|
||||
"description_de": "Blueprints for Mobile Objectives",
|
||||
"description_de": "Blaupausen für mobile Ziele",
|
||||
"description_en-us": "Blueprints for Mobile Objectives",
|
||||
"description_es": "Blueprints for Mobile Objectives",
|
||||
"description_fr": "Blueprints for Mobile Objectives",
|
||||
"description_es": "Planos de objetivos móviles",
|
||||
"description_fr": "Plans de construction Objectifs mobiles",
|
||||
"description_it": "Blueprints for Mobile Objectives",
|
||||
"description_ja": "Blueprints for Mobile Objectives",
|
||||
"description_ko": "Blueprints for Mobile Objectives",
|
||||
"description_ru": "Blueprints for Mobile Objectives",
|
||||
"description_ja": "移動式施設の設計図",
|
||||
"description_ko": "이동형 목표물 블루프린트",
|
||||
"description_ru": "Чертежи для подвижных целей",
|
||||
"description_zh": "Blueprints for Mobile Objectives",
|
||||
"descriptionID": 636354,
|
||||
"hasTypes": 0,
|
||||
"iconID": 2703,
|
||||
"name_de": "Mobile Objectives",
|
||||
"name_en-us": "Mobile Objectives",
|
||||
"name_es": "Mobile Objectives",
|
||||
"name_fr": "Mobile Objectives",
|
||||
"name_it": "Mobile Objectives",
|
||||
"name_ja": "Mobile Objectives",
|
||||
"name_ko": "Mobile Objectives",
|
||||
"name_ru": "Mobile Objectives",
|
||||
"name_zh": "Mobile Objectives",
|
||||
"name_de": "Mobile strategische Ziele",
|
||||
"name_en-us": "Mobile Strategic Objectives",
|
||||
"name_es": "Objetivos estratégicos móviles",
|
||||
"name_fr": "Mobile Strategic Objectives",
|
||||
"name_it": "Mobile Strategic Objectives",
|
||||
"name_ja": "移動式戦略施設",
|
||||
"name_ko": "이동형 전략 목표물",
|
||||
"name_ru": "Подвижные стратегические цели",
|
||||
"name_zh": "Mobile Strategic Objectives",
|
||||
"nameID": 636353,
|
||||
"parentGroupID": 406
|
||||
},
|
||||
"3453": {
|
||||
"description_de": "Materials used in the construction of specific factional equipment.",
|
||||
"description_de": "Materialien zur Konstruktion bestimmter Fraktionsausrüstung.",
|
||||
"description_en-us": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materials used in the construction of specific factional equipment.",
|
||||
"description_fr": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materiales usados para la construcción de aparatos específicos para las facciones.",
|
||||
"description_fr": "Matériaux utilisés dans la fabrication d'équipements spécifiques aux factions.",
|
||||
"description_it": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ko": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ru": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "特定勢力独自の装備の製作に使用される資源。",
|
||||
"description_ko": "팩션 장비 제작에 사용되는 재료입니다.",
|
||||
"description_ru": "Материалы, используемые для создания особого оборудования держав.",
|
||||
"description_zh": "Materials used in the construction of specific factional equipment.",
|
||||
"descriptionID": 636416,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1436,
|
||||
"name_de": "Amarr Empire",
|
||||
"name_de": "Imperium der Amarr",
|
||||
"name_en-us": "Amarr Empire",
|
||||
"name_es": "Amarr Empire",
|
||||
"name_fr": "Amarr Empire",
|
||||
"name_es": "Imperio Amarr",
|
||||
"name_fr": "Empire amarr",
|
||||
"name_it": "Amarr Empire",
|
||||
"name_ja": "Amarr Empire",
|
||||
"name_ko": "Amarr Empire",
|
||||
"name_ru": "Amarr Empire",
|
||||
"name_ja": "アマー帝国",
|
||||
"name_ko": "아마르 제국",
|
||||
"name_ru": "Амаррская Империя",
|
||||
"name_zh": "Amarr Empire",
|
||||
"nameID": 636415,
|
||||
"parentGroupID": 1897
|
||||
},
|
||||
"3454": {
|
||||
"description_de": "Materials used in the construction of specific factional equipment.",
|
||||
"description_de": "Materialien zur Konstruktion bestimmter Fraktionsausrüstung.",
|
||||
"description_en-us": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materials used in the construction of specific factional equipment.",
|
||||
"description_fr": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materiales usados para la construcción de aparatos específicos para las facciones.",
|
||||
"description_fr": "Matériaux utilisés dans la fabrication d'équipements spécifiques aux factions.",
|
||||
"description_it": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ko": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ru": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "特定勢力独自の装備の製作に使用される資源。",
|
||||
"description_ko": "팩션 장비 제작에 사용되는 재료입니다.",
|
||||
"description_ru": "Материалы, используемые для создания особого оборудования держав.",
|
||||
"description_zh": "Materials used in the construction of specific factional equipment.",
|
||||
"descriptionID": 636418,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1436,
|
||||
"name_de": "Minmatar Republic",
|
||||
"name_de": "Republik Minmatar",
|
||||
"name_en-us": "Minmatar Republic",
|
||||
"name_es": "Minmatar Republic",
|
||||
"name_fr": "Minmatar Republic",
|
||||
"name_es": "República Minmatar",
|
||||
"name_fr": "République minmatar",
|
||||
"name_it": "Minmatar Republic",
|
||||
"name_ja": "Minmatar Republic",
|
||||
"name_ko": "Minmatar Republic",
|
||||
"name_ru": "Minmatar Republic",
|
||||
"name_ja": "ミンマター共和国",
|
||||
"name_ko": "민마타 공화국",
|
||||
"name_ru": "Республика Минматар",
|
||||
"name_zh": "Minmatar Republic",
|
||||
"nameID": 636417,
|
||||
"parentGroupID": 1897
|
||||
},
|
||||
"3455": {
|
||||
"description_de": "Materials used in the construction of specific factional equipment.",
|
||||
"description_de": "Materialien zur Konstruktion bestimmter Fraktionsausrüstung.",
|
||||
"description_en-us": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materials used in the construction of specific factional equipment.",
|
||||
"description_fr": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materiales usados para la construcción de aparatos específicos para las facciones.",
|
||||
"description_fr": "Matériaux utilisés dans la fabrication d'équipements spécifiques aux factions.",
|
||||
"description_it": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ko": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ru": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "特定勢力独自の装備の製作に使用される資源。",
|
||||
"description_ko": "팩션 장비 제작에 사용되는 재료입니다.",
|
||||
"description_ru": "Материалы, используемые для создания особого оборудования держав.",
|
||||
"description_zh": "Materials used in the construction of specific factional equipment.",
|
||||
"descriptionID": 636420,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1436,
|
||||
"name_de": "Caldari State",
|
||||
"name_de": "Staat der Caldari",
|
||||
"name_en-us": "Caldari State",
|
||||
"name_es": "Caldari State",
|
||||
"name_fr": "Caldari State",
|
||||
"name_es": "Estado Caldari",
|
||||
"name_fr": "État caldari",
|
||||
"name_it": "Caldari State",
|
||||
"name_ja": "Caldari State",
|
||||
"name_ko": "Caldari State",
|
||||
"name_ru": "Caldari State",
|
||||
"name_ja": "カルダリ連合",
|
||||
"name_ko": "칼다리 연합",
|
||||
"name_ru": "Государство Калдари",
|
||||
"name_zh": "Caldari State",
|
||||
"nameID": 636419,
|
||||
"parentGroupID": 1897
|
||||
},
|
||||
"3456": {
|
||||
"description_de": "Materials used in the construction of specific factional equipment.",
|
||||
"description_de": "Materialien zur Konstruktion bestimmter Fraktionsausrüstung.",
|
||||
"description_en-us": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materials used in the construction of specific factional equipment.",
|
||||
"description_fr": "Materials used in the construction of specific factional equipment.",
|
||||
"description_es": "Materiales usados para la construcción de aparatos específicos para las facciones.",
|
||||
"description_fr": "Matériaux utilisés dans la fabrication d'équipements spécifiques aux factions.",
|
||||
"description_it": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ko": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ru": "Materials used in the construction of specific factional equipment.",
|
||||
"description_ja": "特定勢力独自の装備の製作に使用される資源。",
|
||||
"description_ko": "팩션 장비 제작에 사용되는 재료입니다.",
|
||||
"description_ru": "Материалы, используемые для создания особого оборудования держав.",
|
||||
"description_zh": "Materials used in the construction of specific factional equipment.",
|
||||
"descriptionID": 636422,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1436,
|
||||
"name_de": "Gallente Federation",
|
||||
"name_de": "Föderation der Gallente",
|
||||
"name_en-us": "Gallente Federation",
|
||||
"name_es": "Gallente Federation",
|
||||
"name_fr": "Gallente Federation",
|
||||
"name_es": "Federación Gallente",
|
||||
"name_fr": "Fédération gallente",
|
||||
"name_it": "Gallente Federation",
|
||||
"name_ja": "Gallente Federation",
|
||||
"name_ko": "Gallente Federation",
|
||||
"name_ru": "Gallente Federation",
|
||||
"name_ja": "ガレンテ連邦",
|
||||
"name_ko": "갈란테 연방",
|
||||
"name_ru": "Галлентская Федерация",
|
||||
"name_zh": "Gallente Federation",
|
||||
"nameID": 636421,
|
||||
"parentGroupID": 1897
|
||||
@@ -44167,16 +44167,176 @@
|
||||
"3478": {
|
||||
"hasTypes": 1,
|
||||
"iconID": 24411,
|
||||
"name_de": "Masks",
|
||||
"name_de": "Masken",
|
||||
"name_en-us": "Masks",
|
||||
"name_es": "Masks",
|
||||
"name_fr": "Masks",
|
||||
"name_es": "Máscaras",
|
||||
"name_fr": "Masques",
|
||||
"name_it": "Masks",
|
||||
"name_ja": "Masks",
|
||||
"name_ko": "Masks",
|
||||
"name_ru": "Masks",
|
||||
"name_ja": "マスク",
|
||||
"name_ko": "마스크",
|
||||
"name_ru": "Маски",
|
||||
"name_zh": "Masks",
|
||||
"nameID": 638794,
|
||||
"parentGroupID": 1407
|
||||
},
|
||||
"3480": {
|
||||
"description_de": "Von bestimmten Fraktionen entworfene Zerstörer.",
|
||||
"description_en-us": "Destroyers designed by specific factions.",
|
||||
"description_es": "Destructores diseñados por facciones específicas.",
|
||||
"description_fr": "Destroyers designed by specific factions.",
|
||||
"description_it": "Destroyers designed by specific factions.",
|
||||
"description_ja": "特定勢力が設計した駆逐艦。",
|
||||
"description_ko": "특정 팩션 전용 디스트로이어입니다.",
|
||||
"description_ru": "Эсминцы производства той или иной державы.",
|
||||
"description_zh": "Destroyers designed by specific factions.",
|
||||
"descriptionID": 639179,
|
||||
"hasTypes": 0,
|
||||
"iconID": 1443,
|
||||
"name_de": "Fraktionszerstörer",
|
||||
"name_en-us": "Faction Destroyers",
|
||||
"name_es": "Destructores de facción",
|
||||
"name_fr": "Faction Destroyers",
|
||||
"name_it": "Faction Destroyers",
|
||||
"name_ja": "勢力別駆逐艦",
|
||||
"name_ko": "팩션 디스트로이어",
|
||||
"name_ru": "Эсминцы держав",
|
||||
"name_zh": "Faction Destroyers",
|
||||
"nameID": 639178,
|
||||
"parentGroupID": 1372
|
||||
},
|
||||
"3481": {
|
||||
"description_de": "Navyfraktion-Zerstörer-Designs.",
|
||||
"description_en-us": "Navy faction destroyer designs.",
|
||||
"description_es": "Diseños de destructor faccionarios de la Armada.",
|
||||
"description_fr": "Navy faction destroyer designs.",
|
||||
"description_it": "Navy faction destroyer designs.",
|
||||
"description_ja": "海軍勢力の駆逐艦。",
|
||||
"description_ko": "해군 팩션의 디스트로이어입니다.",
|
||||
"description_ru": "Эсминцы флотов ведущих держав.",
|
||||
"description_zh": "Navy faction destroyer designs.",
|
||||
"descriptionID": 639181,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1443,
|
||||
"name_de": "Navyfraktion",
|
||||
"name_en-us": "Navy Faction",
|
||||
"name_es": "Facción de la Armada",
|
||||
"name_fr": "Navy Faction",
|
||||
"name_it": "Navy Faction",
|
||||
"name_ja": "海軍勢力",
|
||||
"name_ko": "해군 팩션",
|
||||
"name_ru": "Государственный флот",
|
||||
"name_zh": "Navy Faction",
|
||||
"nameID": 639180,
|
||||
"parentGroupID": 3480
|
||||
},
|
||||
"3483": {
|
||||
"description_de": "Dreadnought-Designs anderer Fraktionen.",
|
||||
"description_en-us": "Non-Empire faction dreadnought designs.",
|
||||
"description_es": "Diseños de superacorazado de facciones que no pertenecen a ningún imperio.",
|
||||
"description_fr": "Non-Empire faction dreadnought designs.",
|
||||
"description_it": "Non-Empire faction dreadnought designs.",
|
||||
"description_ja": "非国家勢力の攻城艦。",
|
||||
"description_ko": "비국가 소속 팩션의 드레드노트입니다.",
|
||||
"description_ru": "Дредноуты производства иных сообществ и организаций.",
|
||||
"description_zh": "Non-Empire faction dreadnought designs.",
|
||||
"descriptionID": 639186,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1443,
|
||||
"name_de": "Piratenfraktion",
|
||||
"name_en-us": "Pirate Faction",
|
||||
"name_es": "Facción pirata",
|
||||
"name_fr": "Pirate Faction",
|
||||
"name_it": "Pirate Faction",
|
||||
"name_ja": "海賊勢力",
|
||||
"name_ko": "해적 팩션",
|
||||
"name_ru": "Пиратская организация",
|
||||
"name_zh": "Pirate Faction",
|
||||
"nameID": 639185,
|
||||
"parentGroupID": 2288
|
||||
},
|
||||
"3484": {
|
||||
"description_de": "Navyfraktion-Dreadnought-Designs.",
|
||||
"description_en-us": "Navy faction dreadnought designs.",
|
||||
"description_es": "Diseños de superacorazado faccionario de la Armada.",
|
||||
"description_fr": "Navy faction dreadnought designs.",
|
||||
"description_it": "Navy faction dreadnought designs.",
|
||||
"description_ja": "海軍勢力の攻城艦。",
|
||||
"description_ko": "해군 팩션 드레드노트입니다.",
|
||||
"description_ru": "Дредноуты флотов ведущих держав.",
|
||||
"description_zh": "Navy faction dreadnought designs.",
|
||||
"descriptionID": 639192,
|
||||
"hasTypes": 1,
|
||||
"iconID": 1443,
|
||||
"name_de": "Navyfraktion",
|
||||
"name_en-us": "Navy Faction",
|
||||
"name_es": "Facción de la Armada",
|
||||
"name_fr": "Navy Faction",
|
||||
"name_it": "Navy Faction",
|
||||
"name_ja": "海軍勢力",
|
||||
"name_ko": "해군 팩션",
|
||||
"name_ru": "Государственный флот",
|
||||
"name_zh": "Navy Faction",
|
||||
"nameID": 639191,
|
||||
"parentGroupID": 2288
|
||||
},
|
||||
"3487": {
|
||||
"hasTypes": 1,
|
||||
"iconID": 15,
|
||||
"name_de": "Mordunium",
|
||||
"name_en-us": "Mordunium",
|
||||
"name_es": "Mordunium",
|
||||
"name_fr": "Mordunium",
|
||||
"name_it": "Mordunium",
|
||||
"name_ja": "Mordunium",
|
||||
"name_ko": "Mordunium",
|
||||
"name_ru": "Mordunium",
|
||||
"name_zh": "Mordunium",
|
||||
"nameID": 640808,
|
||||
"parentGroupID": 54
|
||||
},
|
||||
"3488": {
|
||||
"hasTypes": 1,
|
||||
"iconID": 15,
|
||||
"name_de": "Ytirium",
|
||||
"name_en-us": "Ytirium",
|
||||
"name_es": "Ytirium",
|
||||
"name_fr": "Ytirium",
|
||||
"name_it": "Ytirium",
|
||||
"name_ja": "Ytirium",
|
||||
"name_ko": "Ytirium",
|
||||
"name_ru": "Ytirium",
|
||||
"name_zh": "Ytirium",
|
||||
"nameID": 640809,
|
||||
"parentGroupID": 54
|
||||
},
|
||||
"3489": {
|
||||
"hasTypes": 1,
|
||||
"iconID": 15,
|
||||
"name_de": "Eifyrium",
|
||||
"name_en-us": "Eifyrium",
|
||||
"name_es": "Eifyrium",
|
||||
"name_fr": "Eifyrium",
|
||||
"name_it": "Eifyrium",
|
||||
"name_ja": "Eifyrium",
|
||||
"name_ko": "Eifyrium",
|
||||
"name_ru": "Eifyrium",
|
||||
"name_zh": "Eifyrium",
|
||||
"nameID": 640810,
|
||||
"parentGroupID": 54
|
||||
},
|
||||
"3490": {
|
||||
"hasTypes": 1,
|
||||
"iconID": 15,
|
||||
"name_de": "Ducinium",
|
||||
"name_en-us": "Ducinium",
|
||||
"name_es": "Ducinium",
|
||||
"name_fr": "Ducinium",
|
||||
"name_it": "Ducinium",
|
||||
"name_ja": "Ducinium",
|
||||
"name_ko": "Ducinium",
|
||||
"name_ru": "Ducinium",
|
||||
"name_zh": "Ducinium",
|
||||
"nameID": 640811,
|
||||
"parentGroupID": 54
|
||||
}
|
||||
}
|
||||
@@ -27588,10 +27588,10 @@
|
||||
"21718": 1
|
||||
},
|
||||
"72811": {
|
||||
"33098": 1
|
||||
"33098": 2
|
||||
},
|
||||
"72812": {
|
||||
"33096": 1
|
||||
"33096": 2
|
||||
},
|
||||
"72818": {
|
||||
"3405": 1
|
||||
@@ -27699,10 +27699,10 @@
|
||||
"3402": 1
|
||||
},
|
||||
"72869": {
|
||||
"33097": 1
|
||||
"33097": 2
|
||||
},
|
||||
"72872": {
|
||||
"33095": 1
|
||||
"33095": 2
|
||||
},
|
||||
"72879": {
|
||||
"9955": 5,
|
||||
@@ -27710,16 +27710,16 @@
|
||||
"21718": 5
|
||||
},
|
||||
"72903": {
|
||||
"3329": 1
|
||||
"3329": 2
|
||||
},
|
||||
"72904": {
|
||||
"3330": 1
|
||||
"3330": 2
|
||||
},
|
||||
"72907": {
|
||||
"3331": 1
|
||||
"3331": 2
|
||||
},
|
||||
"72913": {
|
||||
"3328": 1
|
||||
"3328": 2
|
||||
},
|
||||
"73036": {
|
||||
"21718": 2
|
||||
@@ -27774,40 +27774,233 @@
|
||||
},
|
||||
"73787": {
|
||||
"3456": 1,
|
||||
"20532": 1,
|
||||
"20532": 2,
|
||||
"20533": 1
|
||||
},
|
||||
"73789": {
|
||||
"33091": 1
|
||||
"33091": 2
|
||||
},
|
||||
"73790": {
|
||||
"3456": 1,
|
||||
"20525": 1,
|
||||
"20525": 2,
|
||||
"20533": 1
|
||||
},
|
||||
"73792": {
|
||||
"3456": 1,
|
||||
"20531": 1,
|
||||
"20531": 2,
|
||||
"20533": 1
|
||||
},
|
||||
"73793": {
|
||||
"3456": 1,
|
||||
"20530": 1,
|
||||
"20530": 2,
|
||||
"20533": 1
|
||||
},
|
||||
"73794": {
|
||||
"33094": 1
|
||||
"33094": 2
|
||||
},
|
||||
"73795": {
|
||||
"33092": 1
|
||||
"33092": 2
|
||||
},
|
||||
"73796": {
|
||||
"33093": 1
|
||||
"33093": 2
|
||||
},
|
||||
"73910": {
|
||||
"33407": 5
|
||||
},
|
||||
"73912": {
|
||||
"25235": 5
|
||||
},
|
||||
"74141": {
|
||||
"3329": 5,
|
||||
"12095": 1
|
||||
},
|
||||
"74161": {
|
||||
"3402": 1
|
||||
},
|
||||
"74162": {
|
||||
"3402": 1
|
||||
},
|
||||
"74163": {
|
||||
"3402": 1
|
||||
},
|
||||
"74199": {
|
||||
"3405": 1
|
||||
},
|
||||
"74200": {
|
||||
"3405": 1
|
||||
},
|
||||
"74201": {
|
||||
"3405": 1
|
||||
},
|
||||
"74202": {
|
||||
"3405": 1
|
||||
},
|
||||
"74203": {
|
||||
"3405": 1
|
||||
},
|
||||
"74204": {
|
||||
"3405": 1
|
||||
},
|
||||
"74205": {
|
||||
"3405": 1
|
||||
},
|
||||
"74206": {
|
||||
"3405": 1
|
||||
},
|
||||
"74207": {
|
||||
"3405": 1
|
||||
},
|
||||
"74208": {
|
||||
"3405": 1
|
||||
},
|
||||
"74209": {
|
||||
"3405": 1
|
||||
},
|
||||
"74210": {
|
||||
"3405": 1
|
||||
},
|
||||
"74211": {
|
||||
"3405": 1
|
||||
},
|
||||
"74212": {
|
||||
"3405": 1
|
||||
},
|
||||
"74213": {
|
||||
"3405": 1
|
||||
},
|
||||
"74214": {
|
||||
"3405": 1
|
||||
},
|
||||
"74215": {
|
||||
"3405": 1
|
||||
},
|
||||
"74216": {
|
||||
"3405": 1
|
||||
},
|
||||
"74255": {
|
||||
"3426": 1,
|
||||
"9955": 5
|
||||
},
|
||||
"74256": {
|
||||
"3386": 1,
|
||||
"9955": 5
|
||||
},
|
||||
"74257": {
|
||||
"3405": 1
|
||||
},
|
||||
"74258": {
|
||||
"3405": 1
|
||||
},
|
||||
"74259": {
|
||||
"3405": 1
|
||||
},
|
||||
"74260": {
|
||||
"3405": 1
|
||||
},
|
||||
"74261": {
|
||||
"3405": 1
|
||||
},
|
||||
"74262": {
|
||||
"3405": 1
|
||||
},
|
||||
"74316": {
|
||||
"3333": 5,
|
||||
"16591": 1
|
||||
},
|
||||
"74521": {
|
||||
"3386": 1
|
||||
},
|
||||
"74522": {
|
||||
"3386": 1
|
||||
},
|
||||
"74523": {
|
||||
"3386": 1
|
||||
},
|
||||
"74524": {
|
||||
"3386": 1
|
||||
},
|
||||
"74525": {
|
||||
"3386": 1
|
||||
},
|
||||
"74526": {
|
||||
"3386": 1
|
||||
},
|
||||
"74527": {
|
||||
"3386": 1
|
||||
},
|
||||
"74528": {
|
||||
"3386": 1
|
||||
},
|
||||
"74529": {
|
||||
"3386": 1
|
||||
},
|
||||
"74530": {
|
||||
"3386": 1
|
||||
},
|
||||
"74531": {
|
||||
"3386": 1
|
||||
},
|
||||
"74532": {
|
||||
"3386": 1
|
||||
},
|
||||
"74533": {
|
||||
"3386": 1
|
||||
},
|
||||
"74534": {
|
||||
"3386": 1
|
||||
},
|
||||
"74535": {
|
||||
"3386": 1
|
||||
},
|
||||
"74536": {
|
||||
"3386": 1
|
||||
},
|
||||
"75275": {
|
||||
"3386": 1
|
||||
},
|
||||
"75276": {
|
||||
"3386": 1
|
||||
},
|
||||
"75277": {
|
||||
"3386": 1
|
||||
},
|
||||
"75278": {
|
||||
"3386": 1
|
||||
},
|
||||
"75279": {
|
||||
"3386": 1
|
||||
},
|
||||
"75280": {
|
||||
"3386": 1
|
||||
},
|
||||
"75281": {
|
||||
"3386": 1
|
||||
},
|
||||
"75282": {
|
||||
"3386": 1
|
||||
},
|
||||
"75283": {
|
||||
"3386": 1
|
||||
},
|
||||
"75284": {
|
||||
"3386": 1
|
||||
},
|
||||
"75285": {
|
||||
"3386": 1
|
||||
},
|
||||
"75286": {
|
||||
"3386": 1
|
||||
},
|
||||
"75287": {
|
||||
"3386": 1
|
||||
},
|
||||
"75288": {
|
||||
"3386": 1
|
||||
},
|
||||
"75289": {
|
||||
"3386": 1
|
||||
},
|
||||
"75290": {
|
||||
"3386": 1
|
||||
}
|
||||
}
|
||||
@@ -350511,7 +350511,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 11,
|
||||
"value": 950.0
|
||||
"value": 925.0
|
||||
},
|
||||
{
|
||||
"attributeID": 12,
|
||||
@@ -350930,7 +350930,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 76,
|
||||
"value": 55000.0
|
||||
"value": 60000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 79,
|
||||
@@ -351724,7 +351724,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 37,
|
||||
"value": 190.0
|
||||
"value": 160.0
|
||||
},
|
||||
{
|
||||
"attributeID": 48,
|
||||
@@ -356320,7 +356320,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 11,
|
||||
"value": 42.0
|
||||
"value": 50.0
|
||||
},
|
||||
{
|
||||
"attributeID": 12,
|
||||
@@ -356352,7 +356352,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 48,
|
||||
"value": 161.0
|
||||
"value": 170.0
|
||||
},
|
||||
{
|
||||
"attributeID": 49,
|
||||
@@ -359181,6 +359181,10 @@
|
||||
{
|
||||
"attributeID": 280,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2450,
|
||||
"value": 1.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": [
|
||||
|
||||
@@ -419241,18 +419241,6 @@
|
||||
"attributeID": 9,
|
||||
"value": 1000000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 54,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 158,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 160,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 247,
|
||||
"value": 0.0
|
||||
@@ -419273,10 +419261,6 @@
|
||||
"attributeID": 470,
|
||||
"value": 1200000000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 482,
|
||||
"value": 2700.0
|
||||
},
|
||||
{
|
||||
"attributeID": 525,
|
||||
"value": 1.0
|
||||
@@ -419285,17 +419269,13 @@
|
||||
"attributeID": 552,
|
||||
"value": 500.0
|
||||
},
|
||||
{
|
||||
"attributeID": 665,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 854,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 901,
|
||||
"value": 20.0
|
||||
"value": 25.0
|
||||
},
|
||||
{
|
||||
"attributeID": 903,
|
||||
@@ -420900,36 +420880,12 @@
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 9,
|
||||
"value": 100.0
|
||||
"value": 150.0
|
||||
},
|
||||
{
|
||||
"attributeID": 54,
|
||||
"attributeID": 55,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 114,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 116,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 117,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 118,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 158,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 160,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 208,
|
||||
"value": 6.0
|
||||
@@ -420956,36 +420912,40 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 263,
|
||||
"value": 100.0
|
||||
"value": 63.0
|
||||
},
|
||||
{
|
||||
"attributeID": 265,
|
||||
"value": 100.0
|
||||
"value": 156.0
|
||||
},
|
||||
{
|
||||
"attributeID": 416,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 479,
|
||||
"value": 625000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 481,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 482,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 552,
|
||||
"value": 45.0
|
||||
"value": 25.0
|
||||
},
|
||||
{
|
||||
"attributeID": 562,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 563,
|
||||
"value": 5.0
|
||||
},
|
||||
{
|
||||
"attributeID": 620,
|
||||
"value": 45.0
|
||||
},
|
||||
{
|
||||
"attributeID": 645,
|
||||
"value": 1.5
|
||||
},
|
||||
{
|
||||
"attributeID": 646,
|
||||
"value": 1.5
|
||||
},
|
||||
{
|
||||
"attributeID": 665,
|
||||
"value": 0.0
|
||||
@@ -546500,7 +546460,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553299,7 +553259,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553326,6 +553286,10 @@
|
||||
"attributeID": 9,
|
||||
"value": 1000000000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 55,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 109,
|
||||
"value": 0.001
|
||||
@@ -553336,16 +553300,28 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 481,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 482,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 525,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 562,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 854,
|
||||
"value": 1.0
|
||||
@@ -553373,7 +553349,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553410,7 +553386,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553447,7 +553423,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553484,7 +553460,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553521,7 +553497,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553558,7 +553534,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -553595,7 +553571,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -556862,7 +556838,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -556899,7 +556875,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -556936,7 +556912,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -556973,7 +556949,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -557010,7 +556986,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -557047,7 +557023,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
@@ -557074,6 +557050,10 @@
|
||||
"attributeID": 9,
|
||||
"value": 1000000000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 55,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 109,
|
||||
"value": 0.001
|
||||
@@ -557084,16 +557064,28 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 481,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 482,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 525,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 562,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 854,
|
||||
"value": 1.0
|
||||
@@ -557111,6 +557103,10 @@
|
||||
"attributeID": 9,
|
||||
"value": 1000000000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 55,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 109,
|
||||
"value": 0.001
|
||||
@@ -557121,16 +557117,28 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 481,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 482,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 525,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 562,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 854,
|
||||
"value": 1.0
|
||||
@@ -557148,6 +557156,10 @@
|
||||
"attributeID": 9,
|
||||
"value": 10000000000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 55,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 109,
|
||||
"value": 0.001
|
||||
@@ -557158,16 +557170,28 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 111,
|
||||
"value": 0.0
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 113,
|
||||
"value": 0.001
|
||||
},
|
||||
{
|
||||
"attributeID": 481,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 482,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 525,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 562,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 854,
|
||||
"value": 1.0
|
||||
@@ -715919,7 +715943,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 11,
|
||||
"value": 13500.0
|
||||
"value": 14500.0
|
||||
},
|
||||
{
|
||||
"attributeID": 12,
|
||||
@@ -716115,7 +716139,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 500,
|
||||
"value": 5.0
|
||||
"value": 7.5
|
||||
},
|
||||
{
|
||||
"attributeID": 524,
|
||||
@@ -956966,11 +956990,11 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 2489,
|
||||
"value": 51.0
|
||||
"value": 16.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2490,
|
||||
"value": 60000.0
|
||||
"value": 1920000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2673,
|
||||
@@ -956987,7 +957011,7 @@
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 6901,
|
||||
"effectID": 11453,
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
@@ -957128,11 +957152,11 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 2489,
|
||||
"value": 307.0
|
||||
"value": 16.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2490,
|
||||
"value": 162000.0
|
||||
"value": 840000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2673,
|
||||
@@ -957149,7 +957173,7 @@
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 6901,
|
||||
"effectID": 11453,
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
@@ -957286,11 +957310,11 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 2489,
|
||||
"value": 307.0
|
||||
"value": 16.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2490,
|
||||
"value": 146000.0
|
||||
"value": 760000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 2673,
|
||||
@@ -957307,7 +957331,7 @@
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 6901,
|
||||
"effectID": 11453,
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
|
||||
@@ -3452,5 +3452,87 @@
|
||||
"locationRequiredSkillModifiers": [],
|
||||
"operationName": "PostAssignment",
|
||||
"showOutputValueInUI": "ShowNormal"
|
||||
},
|
||||
"2185": {
|
||||
"aggregateMode": "Maximum",
|
||||
"developerDescription": "Tethering Restricted By Security",
|
||||
"displayName_de": "Anbindung ist blockiert",
|
||||
"displayName_en-us": "Tether blocked",
|
||||
"displayName_es": "Amarre bloqueado",
|
||||
"displayName_fr": "Accostage verrouillé",
|
||||
"displayName_it": "Tether blocked",
|
||||
"displayName_ja": "テザリングブロック中",
|
||||
"displayName_ko": "테더링 차단",
|
||||
"displayName_ru": "Швартовка недоступна",
|
||||
"displayName_zh": "Tether blocked",
|
||||
"displayNameID": 639276,
|
||||
"itemModifiers": [
|
||||
{
|
||||
"dogmaAttributeID": 2343
|
||||
}
|
||||
],
|
||||
"locationGroupModifiers": [],
|
||||
"locationModifiers": [],
|
||||
"locationRequiredSkillModifiers": [],
|
||||
"operationName": "ModAdd",
|
||||
"showOutputValueInUI": "Hide"
|
||||
},
|
||||
"2186": {
|
||||
"aggregateMode": "Maximum",
|
||||
"developerDescription": "Proving AB/MWD Speed Increase",
|
||||
"displayName_de": "Bonus auf die Geschwindigkeitserhöhung von Nachbrenner-/Mikrowarpantrieb-Modulen",
|
||||
"displayName_en-us": "AB/MWD module speed increase bonus",
|
||||
"displayName_es": "Bonificación de aumento de velocidad de módulo de PQ/MMW",
|
||||
"displayName_fr": "Bonus à la vitesse des SPC/PMW",
|
||||
"displayName_it": "AB/MWD module speed increase bonus",
|
||||
"displayName_ja": "AB/MWDモジュールのスピード増加量ボーナス",
|
||||
"displayName_ko": "애프터버너/마이크로 워프 드라이브 최대 속도 증가",
|
||||
"displayName_ru": "Увеличение скорости форсажных и микроварп-ускорителей",
|
||||
"displayName_zh": "AB/MWD module speed increase bonus",
|
||||
"displayNameID": 639612,
|
||||
"itemModifiers": [],
|
||||
"locationGroupModifiers": [],
|
||||
"locationModifiers": [],
|
||||
"locationRequiredSkillModifiers": [
|
||||
{
|
||||
"dogmaAttributeID": 20,
|
||||
"skillID": 3450
|
||||
},
|
||||
{
|
||||
"dogmaAttributeID": 20,
|
||||
"skillID": 3454
|
||||
}
|
||||
],
|
||||
"operationName": "PostPercent",
|
||||
"showOutputValueInUI": "ShowNormal"
|
||||
},
|
||||
"2187": {
|
||||
"aggregateMode": "Minimum",
|
||||
"developerDescription": "Proving AB/MWD Cap Need Reduction",
|
||||
"displayName_de": "Bonus auf den Energiespeicherbedarf von Nachbrennern/Mikrowarpantrieben",
|
||||
"displayName_en-us": "AB/MWD capacitor consumption bonus",
|
||||
"displayName_es": "Bonificación de consumo del condensador de PQ/MMW",
|
||||
"displayName_fr": "Bonus à la consommation de capaciteur des SPC/PMW",
|
||||
"displayName_it": "AB/MWD capacitor consumption bonus",
|
||||
"displayName_ja": "AB/MWDのキャパシタ消費量ボーナス",
|
||||
"displayName_ko": "애프터버너/마이크로 워프 드라이브 캐패시터 사용량 감소",
|
||||
"displayName_ru": "Снижение расхода энергии форсажных и микроварп-ускорителей",
|
||||
"displayName_zh": "AB/MWD capacitor consumption bonus",
|
||||
"displayNameID": 639613,
|
||||
"itemModifiers": [],
|
||||
"locationGroupModifiers": [],
|
||||
"locationModifiers": [],
|
||||
"locationRequiredSkillModifiers": [
|
||||
{
|
||||
"dogmaAttributeID": 6,
|
||||
"skillID": 3450
|
||||
},
|
||||
{
|
||||
"dogmaAttributeID": 6,
|
||||
"skillID": 3454
|
||||
}
|
||||
],
|
||||
"operationName": "PostPercent",
|
||||
"showOutputValueInUI": "ShowNormal"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
[
|
||||
{
|
||||
"field_name": "client_build",
|
||||
"field_value": 2149503
|
||||
"field_value": 2178459
|
||||
},
|
||||
{
|
||||
"field_name": "dump_time",
|
||||
"field_value": 1667379783
|
||||
"field_value": 1670718451
|
||||
}
|
||||
]
|
||||
@@ -1 +1 @@
|
||||
version: v2.48.0dev3
|
||||
version: v2.49.0dev1
|
||||
|
||||