Compare commits

..

5 Commits

Author SHA1 Message Date
Anton Vorobyov
74daf99aed Update icons/renders 2022-11-10 04:38:54 +04:00
Anton Vorobyov
eaf637d1d9 Bump version 2022-11-10 04:33:26 +04:00
Anton Vorobyov
c262ea6e35 Update static data to 2154998 2022-11-10 04:33:09 +04:00
DarkPhoenix
1c541c82bf Bump version 2022-11-04 22:29:43 +04:00
DarkPhoenix
1824d1b866 Update static data & other stuff to 2151933 2022-11-04 22:28:34 +04:00
68 changed files with 6489 additions and 5198 deletions

View File

@@ -12396,6 +12396,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'
@@ -35591,6 +35592,7 @@ class Effect7237(BaseEffect):
Used by:
Celestial: Dazh Liminality Locus
Celestial: Turnur Aftermath
"""
runTime = 'early'
@@ -36377,6 +36379,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
@@ -38556,7 +38575,7 @@ class Effect11373(BaseEffect):
class Effect11374(BaseEffect):
"""
shipBonusDreadnoughtA4EnergyWarfareAmountBonus
shipBonusDreadnoughtA4EnergyWarfareRangeAmountBonus
Used by:
Ship: Revelation Navy Issue
@@ -38572,26 +38591,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 +39369,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 +39436,20 @@ 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)

View File

@@ -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()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 827 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
imgs/renders/25601@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/renders/25601@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
imgs/renders/25602@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
imgs/renders/25602@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

BIN
imgs/renders/25603@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/renders/25603@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
imgs/renders/25604@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
imgs/renders/25604@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
imgs/renders/25606@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
imgs/renders/25606@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

BIN
imgs/renders/25607@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
imgs/renders/25607@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

BIN
imgs/renders/25608@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
imgs/renders/25608@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

BIN
imgs/renders/25609@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
imgs/renders/25609@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@@ -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

View File

@@ -46730,14 +46730,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 +47069,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
}
}

View File

@@ -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,
@@ -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
}
}

View File

@@ -895,7 +895,7 @@
"description_it": "Hours",
"description_ja": "時間",
"description_ko": "h",
"description_ru": "часы\n",
"description_ru": "часы",
"description_zh": "小时",
"descriptionID": 77995,
"name": "Hours"

View File

@@ -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,14 +28265,14 @@
"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,

View File

@@ -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 Ziele",
"name_en-us": "Mobile Strategic Objectives",
"name_es": "Objetivos móviles",
"name_fr": "Objectifs mobiles",
"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 Ziele",
"name_en-us": "Mobile Strategic Objectives",
"name_es": "Objetivos móviles",
"name_fr": "Objectifs mobiles",
"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,116 @@
"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": "Destroyers designed by specific factions.",
"description_en-us": "Destroyers designed by specific factions.",
"description_es": "Destroyers designed by specific factions.",
"description_fr": "Destroyers designed by specific factions.",
"description_it": "Destroyers designed by specific factions.",
"description_ja": "Destroyers designed by specific factions.",
"description_ko": "Destroyers designed by specific factions.",
"description_ru": "Destroyers designed by specific factions.",
"description_zh": "Destroyers designed by specific factions.",
"descriptionID": 639179,
"hasTypes": 0,
"iconID": 1443,
"name_de": "Faction Destroyers",
"name_en-us": "Faction Destroyers",
"name_es": "Faction Destroyers",
"name_fr": "Faction Destroyers",
"name_it": "Faction Destroyers",
"name_ja": "Faction Destroyers",
"name_ko": "Faction Destroyers",
"name_ru": "Faction Destroyers",
"name_zh": "Faction Destroyers",
"nameID": 639178,
"parentGroupID": 1372
},
"3481": {
"description_de": "Navy faction destroyer designs.",
"description_en-us": "Navy faction destroyer designs.",
"description_es": "Navy faction destroyer designs.",
"description_fr": "Navy faction destroyer designs.",
"description_it": "Navy faction destroyer designs.",
"description_ja": "Navy faction destroyer designs.",
"description_ko": "Navy faction destroyer designs.",
"description_ru": "Navy faction destroyer designs.",
"description_zh": "Navy faction destroyer designs.",
"descriptionID": 639181,
"hasTypes": 1,
"iconID": 1443,
"name_de": "Navy Faction",
"name_en-us": "Navy Faction",
"name_es": "Navy Faction",
"name_fr": "Navy Faction",
"name_it": "Navy Faction",
"name_ja": "Navy Faction",
"name_ko": "Navy Faction",
"name_ru": "Navy Faction",
"name_zh": "Navy Faction",
"nameID": 639180,
"parentGroupID": 3480
},
"3483": {
"description_de": "Non-Empire faction dreadnought designs.",
"description_en-us": "Non-Empire faction dreadnought designs.",
"description_es": "Non-Empire faction dreadnought designs.",
"description_fr": "Non-Empire faction dreadnought designs.",
"description_it": "Non-Empire faction dreadnought designs.",
"description_ja": "Non-Empire faction dreadnought designs.",
"description_ko": "Non-Empire faction dreadnought designs.",
"description_ru": "Non-Empire faction dreadnought designs.",
"description_zh": "Non-Empire faction dreadnought designs.",
"descriptionID": 639186,
"hasTypes": 1,
"iconID": 1443,
"name_de": "Pirate Faction",
"name_en-us": "Pirate Faction",
"name_es": "Pirate Faction",
"name_fr": "Pirate Faction",
"name_it": "Pirate Faction",
"name_ja": "Pirate Faction",
"name_ko": "Pirate Faction",
"name_ru": "Pirate Faction",
"name_zh": "Pirate Faction",
"nameID": 639185,
"parentGroupID": 2288
},
"3484": {
"description_de": "Navy faction dreadnought designs.",
"description_en-us": "Navy faction dreadnought designs.",
"description_es": "Navy faction dreadnought designs.",
"description_fr": "Navy faction dreadnought designs.",
"description_it": "Navy faction dreadnought designs.",
"description_ja": "Navy faction dreadnought designs.",
"description_ko": "Navy faction dreadnought designs.",
"description_ru": "Navy faction dreadnought designs.",
"description_zh": "Navy faction dreadnought designs.",
"descriptionID": 639192,
"hasTypes": 1,
"iconID": 1443,
"name_de": "Navy Faction",
"name_en-us": "Navy Faction",
"name_es": "Navy Faction",
"name_fr": "Navy Faction",
"name_it": "Navy Faction",
"name_ja": "Navy Faction",
"name_ko": "Navy Faction",
"name_ru": "Navy Faction",
"name_zh": "Navy Faction",
"nameID": 639191,
"parentGroupID": 2288
}
}

View File

@@ -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,35 +27774,35 @@
},
"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

View File

@@ -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,

View File

@@ -546500,7 +546500,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553299,7 +553299,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553326,6 +553326,10 @@
"attributeID": 9,
"value": 1000000000.0
},
{
"attributeID": 55,
"value": 0.0
},
{
"attributeID": 109,
"value": 0.001
@@ -553336,16 +553340,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 +553389,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553410,7 +553426,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553447,7 +553463,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553484,7 +553500,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553521,7 +553537,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553558,7 +553574,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -553595,7 +553611,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -556862,7 +556878,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -556899,7 +556915,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -556936,7 +556952,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -556973,7 +556989,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -557010,7 +557026,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -557047,7 +557063,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -557074,6 +557090,10 @@
"attributeID": 9,
"value": 1000000000.0
},
{
"attributeID": 55,
"value": 0.0
},
{
"attributeID": 109,
"value": 0.001
@@ -557084,16 +557104,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 +557143,10 @@
"attributeID": 9,
"value": 1000000000.0
},
{
"attributeID": 55,
"value": 0.0
},
{
"attributeID": 109,
"value": 0.001
@@ -557121,16 +557157,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 +557196,10 @@
"attributeID": 9,
"value": 10000000000.0
},
{
"attributeID": 55,
"value": 0.0
},
{
"attributeID": 109,
"value": 0.001
@@ -557158,16 +557210,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 +715983,7 @@
},
{
"attributeID": 11,
"value": 13500.0
"value": 14500.0
},
{
"attributeID": 12,
@@ -716115,7 +716179,7 @@
},
{
"attributeID": 500,
"value": 5.0
"value": 7.5
},
{
"attributeID": 524,
@@ -956966,11 +957030,11 @@
},
{
"attributeID": 2489,
"value": 51.0
"value": 16.0
},
{
"attributeID": 2490,
"value": 60000.0
"value": 1920000.0
},
{
"attributeID": 2673,
@@ -956987,7 +957051,7 @@
"isDefault": 0
},
{
"effectID": 6901,
"effectID": 11453,
"isDefault": 0
}
]
@@ -957128,11 +957192,11 @@
},
{
"attributeID": 2489,
"value": 307.0
"value": 16.0
},
{
"attributeID": 2490,
"value": 162000.0
"value": 840000.0
},
{
"attributeID": 2673,
@@ -957149,7 +957213,7 @@
"isDefault": 0
},
{
"effectID": 6901,
"effectID": 11453,
"isDefault": 0
}
]
@@ -957286,11 +957350,11 @@
},
{
"attributeID": 2489,
"value": 307.0
"value": 16.0
},
{
"attributeID": 2490,
"value": 146000.0
"value": 760000.0
},
{
"attributeID": 2673,
@@ -957307,7 +957371,7 @@
"isDefault": 0
},
{
"effectID": 6901,
"effectID": 11453,
"isDefault": 0
}
]

View File

@@ -372941,7 +372941,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -373315,7 +373315,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -375823,7 +375823,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -376205,7 +376205,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -376714,7 +376714,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -377084,7 +377084,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -377454,7 +377454,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -377824,7 +377824,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -383311,7 +383311,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -383360,7 +383360,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -383409,7 +383409,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -383458,7 +383458,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -388641,7 +388641,7 @@
},
{
"attributeID": 278,
"value": 1.0
"value": 2.0
},
{
"attributeID": 279,
@@ -388906,6 +388906,10 @@
{
"attributeID": 3319,
"value": 0.0
},
{
"attributeID": 5248,
"value": 20.0
}
],
"dogmaEffects": [
@@ -388932,6 +388936,10 @@
{
"effectID": 11373,
"isDefault": 0
},
{
"effectID": 11454,
"isDefault": 0
}
]
},
@@ -389119,7 +389127,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -389525,7 +389533,7 @@
},
{
"attributeID": 278,
"value": 1.0
"value": 2.0
},
{
"attributeID": 279,
@@ -389824,10 +389832,6 @@
{
"effectID": 11374,
"isDefault": 0
},
{
"effectID": 11375,
"isDefault": 0
}
]
},
@@ -390027,7 +390031,7 @@
},
{
"attributeID": 278,
"value": 1.0
"value": 2.0
},
{
"attributeID": 279,
@@ -390541,7 +390545,7 @@
},
{
"attributeID": 278,
"value": 1.0
"value": 2.0
},
{
"attributeID": 279,
@@ -391023,7 +391027,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -391179,7 +391183,7 @@
},
{
"attributeID": 5237,
"value": -10.0
"value": -15.0
},
{
"attributeID": 5238,
@@ -391397,7 +391401,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -391771,7 +391775,7 @@
},
{
"attributeID": 277,
"value": 1.0
"value": 2.0
},
{
"attributeID": 283,
@@ -392125,7 +392129,7 @@
},
{
"attributeID": 562,
"value": 0.01
"value": 0.0
},
{
"attributeID": 564,
@@ -392327,7 +392331,7 @@
},
{
"attributeID": 562,
"value": 0.01
"value": 0.0
},
{
"attributeID": 564,
@@ -392541,7 +392545,7 @@
},
{
"attributeID": 562,
"value": 0.01
"value": 0.0
},
{
"attributeID": 564,
@@ -392755,7 +392759,7 @@
},
{
"attributeID": 562,
"value": 0.01
"value": 0.0
},
{
"attributeID": 564,
@@ -392846,7 +392850,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -392895,7 +392899,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -392944,7 +392948,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -392993,7 +392997,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -393042,7 +393046,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -393091,7 +393095,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -393140,7 +393144,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -393189,7 +393193,7 @@
},
{
"attributeID": 111,
"value": 0.0
"value": 0.001
},
{
"attributeID": 113,
@@ -393373,5 +393377,74 @@
}
],
"dogmaEffects": []
},
"74002": {
"dogmaAttributes": [
{
"attributeID": 237,
"value": 0.8
},
{
"attributeID": 566,
"value": -20.0
},
{
"attributeID": 601,
"value": 20.0
},
{
"attributeID": 1851,
"value": -20.0
}
],
"dogmaEffects": [
{
"effectID": 3993,
"isDefault": 0
},
{
"effectID": 7237,
"isDefault": 0
},
{
"effectID": 8082,
"isDefault": 0
},
{
"effectID": 11445,
"isDefault": 0
}
]
},
"74065": {
"dogmaAttributes": [
{
"attributeID": 9,
"value": 100000000.0
}
],
"dogmaEffects": []
},
"74066": {
"dogmaAttributes": [
{
"attributeID": 9,
"value": 100000000.0
}
],
"dogmaEffects": []
},
"74067": {
"dogmaAttributes": [
{
"attributeID": 9,
"value": 100000000.0
}
],
"dogmaEffects": []
},
"74107": {
"dogmaAttributes": [],
"dogmaEffects": []
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +1,10 @@
[
{
"field_name": "client_build",
"field_value": 2149503
"field_value": 2154998
},
{
"field_name": "dump_time",
"field_value": 1667379783
"field_value": 1668039009
}
]

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1 @@
version: v2.48.0dev3
version: v2.48.0