Compare commits

...

25 Commits

Author SHA1 Message Date
DarkPhoenix
369f62bd68 Bump version 2023-06-11 04:34:01 +06:00
DarkPhoenix
885ad4deb3 Update effects 2023-06-11 04:28:18 +06:00
DarkPhoenix
0ce3b861a4 Update EVE images 2023-06-11 00:28:05 +06:00
DarkPhoenix
48ee543c00 Update static data to 2291839 2023-06-11 00:26:27 +06:00
Anton Vorobyov
e07e2bc4f7 Merge pull request #2507 from superusercode/patch-1
Replace dead README badges with current CI badge
2023-06-10 21:19:57 +04:00
Code
17dec4d732 Update README.md 2023-05-11 21:36:00 -04:00
Anton Vorobyov
effb7e6429 Bump version 2023-04-28 01:49:55 +06:00
Anton Vorobyov
63f7762e34 Add option to export missing skills in roman / evemon format 2023-04-28 01:49:31 +06:00
Anton Vorobyov
76ff52aea8 Show seconds, not milliseconds 2023-04-28 01:38:26 +06:00
Anton Vorobyov
cd12279404 Add ADC ability duration 2023-04-28 01:36:45 +06:00
Anton Vorobyov
263929b6e3 Update icons 2023-04-28 01:33:03 +06:00
Anton Vorobyov
759135d3fe Add auto targeting system as acronym 2023-04-28 01:31:32 +06:00
Anton Vorobyov
d240f547cc Update effects & add mobiile depot hold 2023-04-28 01:28:55 +06:00
Anton Vorobyov
0a4f3481da Update static data to 2258955 2023-04-27 23:06:33 +06:00
Anton Vorobyov
b248cdefdd Bump version 2023-03-16 17:50:33 +06:00
Anton Vorobyov
6172ceda0f Update static data to 2232464 2023-03-16 17:25:10 +06:00
Anton Vorobyov
ba236bcb54 Update static data and effects to 2228687 2023-03-10 02:26:12 +06:00
Anton Vorobyov
b4e115eb7b Update icons 2023-02-22 19:07:51 +06:00
Anton Vorobyov
52b567a06d Disable effect overrides for AT18 ships, and add effects for them 2023-02-22 19:06:59 +06:00
Anton Vorobyov
dd1f7e224c Update static data to 2218819 2023-02-22 18:12:42 +06:00
Anton Vorobyov
338b298077 Specify requests version 2023-02-18 03:57:42 +06:00
Anton Vorobyov
512b370e3e Bump version 2023-02-14 19:26:03 +06:00
Anton Vorobyov
a14210f356 Add rename mapping 2023-02-14 19:25:45 +06:00
Anton Vorobyov
f81cf4ee7b Update effects 2023-02-14 19:22:15 +06:00
Anton Vorobyov
87b072b567 Update static data to 2214901 2023-02-14 19:18:36 +06:00
111 changed files with 166028 additions and 36318 deletions

View File

@@ -1,6 +1,6 @@
# pyfa
[![Join us on Slack!](https://pyfainvite.azurewebsites.net/badge.svg)](https://pyfainvite.azurewebsites.net/) [![Build Status](https://travis-ci.org/pyfa-org/Pyfa.svg?branch=master)](https://travis-ci.org/pyfa-org/Pyfa)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/pyfa-org/pyfa?branch=master&svg=true)]([https://travis-ci.org/pyfa-org/Pyfa](https://ci.appveyor.com/project/pyfa-org/pyfa))
![pyfa](https://user-images.githubusercontent.com/275209/66119992-864be080-e5e2-11e9-994a-3a4368c9fad7.png)

View File

@@ -771,9 +771,8 @@ def update_db():
_hardcodeAttribs(74316, attrMap)
_hardcodeEffects(74316, effectMap)
hardcodeGeri()
hardcodeBestla()
# hardcodeGeri()
# hardcodeBestla()
eos.db.gamedata_session.commit()
eos.db.gamedata_engine.execute('VACUUM')

File diff suppressed because it is too large Load Diff

View File

@@ -477,7 +477,7 @@ class Module(HandledItem, HandledCharge, ItemAttrShortcut, ChargeAttrShortcut, M
# Some delay attributes have non-0 default value, so we have to pick according to effects
if {'superWeaponAmarr', 'superWeaponCaldari', 'superWeaponGallente', 'superWeaponMinmatar', 'lightningWeapon'}.intersection(self.item.effects):
dmgDelay = self.getModifiedItemAttr("damageDelayDuration", 0)
elif {'doomsdayBeamDOT', 'doomsdaySlash', 'doomsdayConeDOT'}.intersection(self.item.effects):
elif {'doomsdayBeamDOT', 'doomsdaySlash', 'doomsdayConeDOT', 'debuffLance'}.intersection(self.item.effects):
dmgDelay = self.getModifiedItemAttr("doomsdayWarningDuration", 0)
else:
dmgDelay = 0

View File

@@ -127,7 +127,9 @@ class TargetingMiscViewMinimal(StatsView):
("specialSalvageHoldCapacity", _t("Salvage hold")),
("specialCommandCenterHoldCapacity", _t("Command center hold")),
("specialPlanetaryCommoditiesHoldCapacity", _t("Planetary goods hold")),
("specialQuafeHoldCapacity", _t("Quafe hold"))))
("specialQuafeHoldCapacity", _t("Quafe hold")),
("specialMobileDepotHoldCapacity", _t("Mobile depot hold")),
))
cargoValues = {
"main": lambda: fit.ship.getModifiedItemAttr("capacity"),
@@ -148,7 +150,8 @@ class TargetingMiscViewMinimal(StatsView):
"specialSalvageHoldCapacity": lambda: fit.ship.getModifiedItemAttr("specialSalvageHoldCapacity"),
"specialCommandCenterHoldCapacity": lambda: fit.ship.getModifiedItemAttr("specialCommandCenterHoldCapacity"),
"specialPlanetaryCommoditiesHoldCapacity": lambda: fit.ship.getModifiedItemAttr("specialPlanetaryCommoditiesHoldCapacity"),
"specialQuafeHoldCapacity": lambda: fit.ship.getModifiedItemAttr("specialQuafeHoldCapacity")
"specialQuafeHoldCapacity": lambda: fit.ship.getModifiedItemAttr("specialQuafeHoldCapacity"),
"specialMobileDepotHoldCapacity": lambda: fit.ship.getModifiedItemAttr("specialMobileDepotHoldCapacity"),
}
stats = (("labelTargets", {"main": lambda: fit.maxTargets}, 3, 0, 0, ""),

View File

@@ -182,6 +182,13 @@ class Miscellanea(ViewColumn):
text = "{0} | {1}".format(formatAmount(strength, 3, 0, 3), formatAmount(coherence, 3, 0, 3))
tooltip = "Virus strength and coherence"
return text, tooltip
elif itemGroup == "Damage Control":
duration = stuff.getModifiedItemAttr("duration")
if not duration:
return "", None
text = "{0}s".format(formatAmount(duration / 1000, 3, 0, 0))
tooltip = "Assault ability duration"
return text, tooltip
elif itemGroup in ("Warp Scrambler", "Warp Core Stabilizer", "Structure Warp Scrambler"):
scramStr = stuff.getModifiedItemAttr("warpScrambleStrength")
if not scramStr:

View File

@@ -22,6 +22,7 @@ import traceback
# noinspection PyPackageRequirements
import wx
import roman
from logbook import Logger
import config
@@ -105,6 +106,9 @@ class CharacterSelection(wx.Panel):
exportItem = menu.Append(wx.ID_ANY, _t("Copy Missing Skills"))
self.Bind(wx.EVT_MENU, self.exportSkills, exportItem)
exportItem = menu.Append(wx.ID_ANY, _t("Copy Missing Skills (EVEMon)"))
self.Bind(wx.EVT_MENU, self.exportSkillsEveMon, exportItem)
self.PopupMenu(menu, pos)
event.Skip()
@@ -264,6 +268,15 @@ class CharacterSelection(wx.Panel):
toClipboard(list)
def exportSkillsEveMon(self, evt):
skillsMap = self._buildSkillsTooltipCondensed(self.reqs, skillsMap={})
list = ""
for key in sorted(skillsMap):
list += "%s %s\n" % (key, roman.toRoman(skillsMap[key][0]))
toClipboard(list)
def _buildSkillsTooltip(self, reqs, currItem="", tabulationLevel=0):
tip = ""
sCharacter = Character.getInstance()

BIN
imgs/icons/1168@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 857 B

BIN
imgs/icons/1168@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
imgs/icons/24404@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 B

BIN
imgs/icons/24404@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
imgs/icons/25235@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 B

BIN
imgs/icons/25235@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
imgs/icons/25236@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 829 B

BIN
imgs/icons/25236@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
imgs/icons/25237@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

BIN
imgs/icons/25237@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25238@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

BIN
imgs/icons/25238@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25240@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 B

BIN
imgs/icons/25240@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
imgs/icons/25241@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

BIN
imgs/icons/25241@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25242@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 829 B

BIN
imgs/icons/25242@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25243@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 B

BIN
imgs/icons/25243@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25245@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 783 B

BIN
imgs/icons/25245@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
imgs/icons/25246@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 B

BIN
imgs/icons/25246@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
imgs/icons/25247@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 B

BIN
imgs/icons/25247@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25248@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

BIN
imgs/icons/25248@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25250@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 B

BIN
imgs/icons/25250@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
imgs/icons/25251@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 B

BIN
imgs/icons/25251@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25252@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 823 B

BIN
imgs/icons/25252@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25253@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 B

BIN
imgs/icons/25253@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25621@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 B

BIN
imgs/icons/25621@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
imgs/icons/25622@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

BIN
imgs/icons/25622@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
imgs/icons/25624@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 810 B

BIN
imgs/icons/25624@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
imgs/icons/25625@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 B

BIN
imgs/icons/25625@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
imgs/icons/25629@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 952 B

BIN
imgs/icons/25629@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
imgs/icons/25631@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 771 B

BIN
imgs/icons/25631@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25632@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 783 B

BIN
imgs/icons/25632@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25633@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 B

BIN
imgs/icons/25633@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
imgs/icons/25634@1x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

BIN
imgs/icons/25634@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 5.9 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.7 KiB

After

Width:  |  Height:  |  Size: 6.0 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.4 KiB

After

Width:  |  Height:  |  Size: 6.2 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.1 KiB

After

Width:  |  Height:  |  Size: 6.1 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.7 KiB

After

Width:  |  Height:  |  Size: 6.8 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.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: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 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.5 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@@ -3,7 +3,7 @@ logbook >= 1.0.0
numpy == 1.19.2
matplotlib == 3.2.2
python-dateutil
requests >= 2.0.0
requests == 2.28.1
sqlalchemy == 1.3.23
cryptography >= 2.3
markdown2 >= 2.3.5

View File

@@ -0,0 +1,16 @@
"""
Conversion pack for February 2023 release
"""
CONVERSIONS = {
# Renamed items
"Restrained Interdiction Nullifier": "Enduring Interdiction Nullifier",
"Synthetic Hull Conversion Inertia Stabilizers": "Synthetic Hull Conversion Inertial Stabilizers",
"Tobias's Modified Torpedo Launcher": "Tobias' Modified Torpedo Launcher",
"Vepas's Modified Torpedo Launcher": "Vepas' Modified Torpedo Launcher",
"Vepas's Modified Kinetic Shield Hardener": "Vepas' Modified Kinetic Shield Hardener",
"Vepas's Modified EM Shield Hardener": "Vepas' Modified EM Shield Hardener",
"Vepas's Modified Explosive Shield Hardener": "Vepas' Modified Explosive Shield Hardener",
"Vepas's Modified Thermal Shield Hardener": "Vepas' Modified Thermal Shield Hardener",
"Vepas's Modified Multispectrum Shield Hardener": "Vepas' Modified Multispectrum Shield Hardener",
}

View File

@@ -976,6 +976,9 @@ cdfe:
cp:
- 'cp'
- 'command processor'
ats:
- 'ats'
- 'auto targeting system'
# Implants
lg:

View File

@@ -321,6 +321,7 @@ class Market:
"Boobook" : self.les_grp, # 19th EVE anniversary gift
"Geri" : self.les_grp, # AT18 prize
"Bestla" : self.les_grp, # AT18 prize
"Metamorphosis" : self.les_grp, # Seems to be anniversary gift
}
self.ITEMS_FORCEGROUP_R = self.__makeRevDict(self.ITEMS_FORCEGROUP)

View File

@@ -406,7 +406,7 @@
},
"40": {
"categoryID": 40,
"categoryName_de": "Souveränitätsstrukturen ",
"categoryName_de": "Souveränitätsstrukturen",
"categoryName_en-us": "Sovereignty Structures",
"categoryName_es": "Estructuras de soberanía",
"categoryName_fr": "Structures de souveraineté",
@@ -624,7 +624,7 @@
"categoryName_ja": "採掘",
"categoryName_ko": "채굴",
"categoryName_ru": "Бурение",
"categoryName_zh": "Mining",
"categoryName_zh": "采矿",
"categoryNameID": 587126,
"published": 0
},
@@ -638,7 +638,7 @@
"categoryName_ja": "カスタマイズ",
"categoryName_ko": "개인화",
"categoryName_ru": "Персонализация",
"categoryName_zh": "Personalization",
"categoryName_zh": "个性化定制",
"categoryNameID": 631766,
"published": 1
},

View File

@@ -685,7 +685,7 @@
"displayName_ja": "サイクルあたりチャージ",
"displayName_ko": "주기당 충전량",
"displayName_ru": "Зарядов за цикл",
"displayName_zh": "单次消耗量 ",
"displayName_zh": "单次消耗量",
"displayNameID": 233609,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -1656,7 +1656,7 @@
"dataType": 8,
"defaultValue": 0.0,
"description": "Explosive damage done.",
"displayName_de": "Explosivschaden ",
"displayName_de": "Explosivschaden",
"displayName_en-us": "Explosive damage",
"displayName_es": "Daño explosivo",
"displayName_fr": "Dégâts explosifs",
@@ -2498,13 +2498,13 @@
"defaultValue": 1.0,
"description": "distance from maximum range at which accuracy has fallen by half",
"displayName_de": "Präzisionsabfall",
"displayName_en-us": "Accuracy falloff ",
"displayName_es": "Alcance efectivo de precisión ",
"displayName_fr": "Distance de perte de précision ",
"displayName_it": "Accuracy falloff ",
"displayName_ja": " 精度低下",
"displayName_ko": "명중률 유효사거리 ",
"displayName_ru": "Добавочная дальность ",
"displayName_en-us": "Accuracy falloff",
"displayName_es": "Alcance efectivo de precisión",
"displayName_fr": "Distance de perte de précision",
"displayName_it": "Accuracy falloff",
"displayName_ja": "精度低下",
"displayName_ko": "명중률 유효사거리",
"displayName_ru": "Добавочная дальность",
"displayName_zh": "失准范围",
"displayNameID": 233554,
"displayWhenZero": 0,
@@ -3103,7 +3103,7 @@
"displayName_ja": "カーゴスキャンレジスタンス",
"displayName_ko": "화물 스캔 저항",
"displayName_ru": "Экранирование грузового отсека",
"displayName_zh": "Cargo Scan Resistance",
"displayName_zh": "货柜扫描抗性",
"displayNameID": 600128,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -4227,7 +4227,7 @@
"tooltipDescription_it": "Shield hitpoints recharge over time and can be recovered more quickly with the use of modules",
"tooltipDescription_ja": "時間経過で再充電し、モジュールを使用すればさらに素早く回復します",
"tooltipDescription_ko": "실드 내구도는 시간이 지나면 충전되며 모듈을 사용하면 더 빨리 회복됩니다.",
"tooltipDescription_ru": "Запас прочности силового поля восстанавливается со временем; с помощью модулей его можно восстановить быстрее ",
"tooltipDescription_ru": "Запас прочности силового поля восстанавливается со временем; с помощью модулей его можно восстановить быстрее",
"tooltipDescription_zh": "护盾会随时间自动恢复,使用装备还可以使恢复速度加快",
"tooltipDescriptionID": 295211,
"tooltipTitleID": 295210,
@@ -4513,13 +4513,13 @@
"defaultValue": 0.0,
"description": "This attribute is a multiplier to the number of skill points required to train. Skill points required to train a skill = 250 * skillTimeConstant * sqrt(32)^(skillLevel - 1)",
"displayName_de": "Trainingszeit-Multiplikator",
"displayName_en-us": "Training time multiplier ",
"displayName_es": "Multiplicador de tiempo de desarrollo ",
"displayName_fr": "Multiplicateur du temps de formation ",
"displayName_it": "Training time multiplier ",
"displayName_ja": " トレーニング時間乗数",
"displayName_ko": "훈련시간 배수 ",
"displayName_ru": "Множитель ",
"displayName_en-us": "Training time multiplier",
"displayName_es": "Multiplicador de tiempo de desarrollo",
"displayName_fr": "Multiplicateur du temps de formation",
"displayName_it": "Training time multiplier",
"displayName_ja": "トレーニング時間乗数",
"displayName_ko": "훈련시간 배수",
"displayName_ru": "Множитель",
"displayName_zh": "训练时间倍增系数",
"displayNameID": 233205,
"displayWhenZero": 0,
@@ -5949,13 +5949,13 @@
"defaultValue": 100.0,
"description": "Production time multiplier when manufacturing amarr tech ",
"displayName_de": "Amarr Tech",
"displayName_en-us": "Amarr Tech ",
"displayName_es": "Tecnología amarriana ",
"displayName_fr": "Technologie amarr ",
"displayName_it": "Amarr Tech ",
"displayName_ja": " アマー技術",
"displayName_ko": "아마르 기술 ",
"displayName_ru": "Амаррская технология ",
"displayName_en-us": "Amarr Tech",
"displayName_es": "Tecnología amarriana",
"displayName_fr": "Technologie amarr",
"displayName_it": "Amarr Tech",
"displayName_ja": "アマー技術",
"displayName_ko": "아마르 기술",
"displayName_ru": "Амаррская технология",
"displayName_zh": "艾玛科技",
"displayNameID": 232951,
"displayWhenZero": 0,
@@ -5972,13 +5972,13 @@
"defaultValue": 100.0,
"description": "Production time multiplier when manufacturing Minmatar tech ",
"displayName_de": "Minmatar Tech",
"displayName_en-us": "Minmatar Tech ",
"displayName_es": "Tecnología minmatariana ",
"displayName_fr": "Technologie minmatar ",
"displayName_it": "Minmatar Tech ",
"displayName_ja": " ミンマターテクノロジー",
"displayName_ko": "민마타 기술 ",
"displayName_ru": "Минматарская технология ",
"displayName_en-us": "Minmatar Tech",
"displayName_es": "Tecnología minmatariana",
"displayName_fr": "Technologie minmatar",
"displayName_it": "Minmatar Tech",
"displayName_ja": "ミンマターテクノロジー",
"displayName_ko": "민마타 기술",
"displayName_ru": "Минматарская технология",
"displayName_zh": "米玛塔尔科技",
"displayNameID": 233355,
"displayWhenZero": 0,
@@ -5994,15 +5994,15 @@
"dataType": 4,
"defaultValue": 0.0,
"description": "Production time multiplier when manufacturing Gallente tech ",
"displayName_de": "Gallente Tech ",
"displayName_en-us": "Gallente Tech ",
"displayName_es": "Tecnología gallente ",
"displayName_fr": "Technologie gallente ",
"displayName_it": "Gallente Tech ",
"displayName_ja": "ガレンテテック ",
"displayName_ko": "갈란테 기술 ",
"displayName_ru": "Галлентская технология ",
"displayName_zh": "盖伦特科技 ",
"displayName_de": "Gallente Tech",
"displayName_en-us": "Gallente Tech",
"displayName_es": "Tecnología gallente",
"displayName_fr": "Technologie gallente",
"displayName_it": "Gallente Tech",
"displayName_ja": "ガレンテテック",
"displayName_ko": "갈란테 기술",
"displayName_ru": "Галлентская технология",
"displayName_zh": "盖伦特科技",
"displayNameID": 233209,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -6018,13 +6018,13 @@
"defaultValue": 0.0,
"description": "Production time multiplier when manufacturing caldari tech ",
"displayName_de": "Caldari Tech",
"displayName_en-us": "Caldari Tech ",
"displayName_es": "Tecnología caldari ",
"displayName_fr": "Technologie caldari ",
"displayName_it": "Caldari Tech ",
"displayName_ja": " カルダリテクノロジー",
"displayName_ko": "칼다리 기술 ",
"displayName_ru": "Калдарская технология ",
"displayName_en-us": "Caldari Tech",
"displayName_es": "Tecnología caldari",
"displayName_fr": "Technologie caldari",
"displayName_it": "Caldari Tech",
"displayName_ja": "カルダリテクノロジー",
"displayName_ko": "칼다리 기술",
"displayName_ru": "Калдарская технология",
"displayName_zh": "加达里科技",
"displayNameID": 233001,
"displayWhenZero": 0,
@@ -6187,7 +6187,7 @@
"dataType": 4,
"defaultValue": 100.0,
"description": "Refining time Multiplier",
"displayName_de": "Raffinierzeit-Multiplikator ",
"displayName_de": "Raffinierzeit-Multiplikator",
"displayName_en-us": "Refining time Multiplier",
"displayName_es": "Multiplicador de tiempo de refinado",
"displayName_fr": "Multiplicateur de temps de raffinage",
@@ -8085,7 +8085,7 @@
"tooltipDescription_ja": "キャパシタに貯められる最大エネルギー量です",
"tooltipDescription_ko": "캐패시터 최대 용량입니다.",
"tooltipDescription_ru": "Предельный заряд бортового накопителя",
"tooltipDescription_zh": " 电容器的最大容量",
"tooltipDescription_zh": "电容器的最大容量",
"tooltipDescriptionID": 295334,
"tooltipTitleID": 295333,
"unitID": 114
@@ -8661,13 +8661,13 @@
"defaultValue": 0.0,
"description": "",
"displayName_de": "Forschung-Skill benötigt",
"displayName_en-us": "Research Skill Required ",
"displayName_es": "Habilidad de investigación necesaria ",
"displayName_fr": "Compétence de recherche requise ",
"displayName_it": "Research Skill Required ",
"displayName_ja": " 必須研究スキル",
"displayName_ko": "연구 스킬 필요 ",
"displayName_ru": "Требуемый навык для исследований ",
"displayName_en-us": "Research Skill Required",
"displayName_es": "Habilidad de investigación necesaria",
"displayName_fr": "Compétence de recherche requise",
"displayName_it": "Research Skill Required",
"displayName_ja": "必須研究スキル",
"displayName_ko": "연구 스킬 필요",
"displayName_ru": "Требуемый навык для исследований",
"displayName_zh": "需要研究技能",
"displayNameID": 233301,
"displayWhenZero": 0,
@@ -8684,13 +8684,13 @@
"defaultValue": 0.0,
"description": "",
"displayName_de": "Benötigter Produktion-Skill",
"displayName_en-us": "Required Manufacturing Skill ",
"displayName_es": "Habilidad de fabricación necesaria ",
"displayName_fr": "Compétence de production requise ",
"displayName_it": "Required Manufacturing Skill ",
"displayName_ja": " 必須製造スキル",
"displayName_ko": "필요 제조 스킬 ",
"displayName_ru": "Требуемый навык для производства ",
"displayName_en-us": "Required Manufacturing Skill",
"displayName_es": "Habilidad de fabricación necesaria",
"displayName_fr": "Compétence de production requise",
"displayName_it": "Required Manufacturing Skill",
"displayName_ja": "必須製造スキル",
"displayName_ko": "필요 제조 스킬",
"displayName_ru": "Требуемый навык для производства",
"displayName_zh": "所需制造技能",
"displayNameID": 233305,
"displayWhenZero": 0,
@@ -11860,7 +11860,7 @@
"dataType": 4,
"defaultValue": 0.0,
"description": "The maximum distance at which the object can be used.",
"displayName_de": "Max. Bedienungsentfernung ",
"displayName_de": "Max. Bedienungsentfernung",
"displayName_en-us": "Maximum Operational Distance",
"displayName_es": "Distancia máxima de funcionamiento",
"displayName_fr": "Distance opérationnelle maximale",
@@ -12862,7 +12862,7 @@
"displayName_it": "Asteroid Specialization Yield Modifier",
"displayName_ja": "アステロイド専門採掘量修正乗数",
"displayName_ko": "특화 광석 채굴량 배수",
"displayName_ru": "Модификатор выработки для специализованности ",
"displayName_ru": "Модификатор выработки для специализованности",
"displayName_zh": "专精矿种产量调整",
"displayNameID": 233439,
"displayWhenZero": 0,
@@ -12958,7 +12958,7 @@
"displayName_ja": "クリスタル損耗",
"displayName_ko": "크리스탈 피해량",
"displayName_ru": "Кристаллы получают повреждения",
"displayName_zh": "晶体损耗 ",
"displayName_zh": "晶体损耗",
"displayNameID": 233613,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -16407,7 +16407,7 @@
"displayName_ja": "オートリピート不可",
"displayName_ko": "자동 반복 불가",
"displayName_ru": "Автоповтор недоступен",
"displayName_zh": "无法自动重复 ",
"displayName_zh": "无法自动重复",
"displayNameID": 233618,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -17065,7 +17065,7 @@
"dataType": 5,
"defaultValue": 0.0,
"description": "Used for ships that are supposed to be able to use fuel.",
"displayName_de": "Frachtraumgröße für Treibstoff ",
"displayName_de": "Frachtraumgröße für Treibstoff",
"displayName_en-us": "Fuel Cargo Capacity",
"displayName_es": "Capacidad de carga de combustible",
"displayName_fr": "Capacité du conteneur carburant",
@@ -20354,7 +20354,7 @@
"description": "Just for the UI to display the ship warp speed.",
"displayName_de": "Warpgeschwindigkeit",
"displayName_en-us": "Ship Warp Speed",
"displayName_es": "Velocidad warp ",
"displayName_es": "Velocidad warp",
"displayName_fr": "Vitesse de warp du vaisseau",
"displayName_it": "Ship Warp Speed",
"displayName_ja": "シップワープ速度",
@@ -20644,7 +20644,7 @@
"displayName_de": "Bonus auf den Verbrauch von Nanite-Reparaturpaste",
"displayName_en-us": "Nanite Repair Paste Consumption Bonus",
"displayName_es": "Bonificación de consumo de fluido reparador de nanobots",
"displayName_fr": "Bonus d'utilisation des nanites de réparation ",
"displayName_fr": "Bonus d'utilisation des nanites de réparation",
"displayName_it": "Nanite Repair Paste Consumption Bonus",
"displayName_ja": "ナノマシンリペアペイスト使用ボーナス",
"displayName_ko": "나노기기 수리용액 소모량 보너스",
@@ -24726,7 +24726,7 @@
"displayName_ja": "採掘ホールド容量",
"displayName_ko": "채굴 저장고 적재량",
"displayName_ru": "Объём отсека для руды",
"displayName_zh": "矿舱容量",
"displayName_zh": "矿舱容量",
"displayNameID": 233539,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -24742,7 +24742,7 @@
"tooltipDescription_ja": "採掘ホールドに積載できる総量",
"tooltipDescription_ko": "채굴 저장고에 보관할 수 있는 최대 용량",
"tooltipDescription_ru": "Максимальный объём, допустимый к размещению в бортовом отсеке для руды",
"tooltipDescription_zh": "矿石舱能装载的总体积",
"tooltipDescription_zh": "矿舱的容量",
"tooltipDescriptionID": 295316,
"tooltipTitleID": 295315,
"unitID": 9
@@ -24777,7 +24777,7 @@
"tooltipDescription_ja": "ガスホールドに積載できる総量",
"tooltipDescription_ko": "가스 저장고에 보관할 수 있는 최대 용량",
"tooltipDescription_ru": "Максимальный объём, допустимый к размещению в газовом отсеке",
"tooltipDescription_zh": "The total volume that can be stored in the gas hold",
"tooltipDescription_zh": "气云舱的容量",
"tooltipDescriptionID": 592043,
"tooltipTitleID": 592042,
"unitID": 9
@@ -25299,7 +25299,7 @@
"dataType": 4,
"defaultValue": 0.0,
"description": "The required minimum military development index level",
"displayName_de": "Erforderlicher Entwicklungsindex (Militär) ",
"displayName_de": "Erforderlicher Entwicklungsindex (Militär)",
"displayName_en-us": "Required Development Index Level (Military)",
"displayName_es": "Nivel de índice de desarrollo necesario (militar)",
"displayName_fr": "Niveau d'index de développement requis (militaire)",
@@ -25321,7 +25321,7 @@
"dataType": 4,
"defaultValue": 0.0,
"description": "The minimum required industrial development index level",
"displayName_de": "Erforderlicher Entwicklungsindex (Industrie) ",
"displayName_de": "Erforderlicher Entwicklungsindex (Industrie)",
"displayName_en-us": "Required Development Index Level (Industrial)",
"displayName_es": "Nivel de índice de desarrollo necesario (industrial)",
"displayName_fr": "Niveau d'index de développement requis (industriel)",
@@ -25767,7 +25767,7 @@
"dataType": 4,
"defaultValue": 0.0,
"description": "Transport capacity (bandwidth) in m3 per hour.",
"displayName_de": "Logistische Kapazität ",
"displayName_de": "Logistische Kapazität",
"displayName_en-us": "Logistical Capacity",
"displayName_es": "Capacidad logística",
"displayName_fr": "Capacité logistique",
@@ -28116,7 +28116,7 @@
"displayName_ja": "MWDのシグネチャペナルティとキャパシタ消費軽減ボーナス",
"displayName_ko": "MWD 시그니처 페널티 및 캐패시터 사용량 보너스",
"displayName_ru": "Уменьшение потребления накопителя и влияния микроварп-ускорителя на радиус сигнатуры",
"displayName_zh": "MWD sig penalty and cap need bonus",
"displayName_zh": "微型跃迁推进器信号半径惩罚和电容消耗加成",
"displayNameID": 595366,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -28312,7 +28312,7 @@
"dataType": 5,
"defaultValue": 1.0,
"description": "",
"displayName_de": "Energy Leech Reflektionswert ",
"displayName_de": "Energy Leech Reflektionswert",
"displayName_en-us": "Energy Leech Reflect Amount",
"displayName_es": "Cantidad de reflejo de la absorción energética",
"displayName_fr": "Quantité renvoyée par la sangsue énergétique",
@@ -34871,7 +34871,7 @@
"displayName_de": "Neutralisationswert beim Aufwärmen",
"displayName_en-us": "Warm-up Neutralization Amount",
"displayName_es": "Cantidad de neutralización del calentamiento",
"displayName_fr": "Échauffement capacité de neutralisation ",
"displayName_fr": "Échauffement capacité de neutralisation",
"displayName_it": "Warm-up Neutralization Amount",
"displayName_ja": "無効化量の上昇",
"displayName_ko": "가동 전 뉴트럴라이제이션 수치",
@@ -35654,7 +35654,7 @@
"displayName_ja": "シージミサイルダメージボーナス",
"displayName_ko": "공성 미사일 피해 보너스",
"displayName_ru": "Увеличение урона от осадных ракет",
"displayName_zh": "导弹伤害加成",
"displayName_zh": "会战型导弹伤害加成",
"displayNameID": 311932,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -36281,7 +36281,7 @@
"displayName_zh": "装甲维修器/护盾回充增量器运转周期加成",
"displayNameID": 312084,
"displayWhenZero": 0,
"highIsGood": 1,
"highIsGood": 0,
"iconID": 2104,
"name": "siegeLocalLogisticsDurationBonus",
"published": 1,
@@ -44387,7 +44387,7 @@
"displayName_ja": "ワープスクランブル強度ボーナス",
"displayName_ko": "워프 스크램블 강도 보너스",
"displayName_ru": "Влияние на мощность глушения варп-двигателей",
"displayName_zh": "Warp Scramble Strength Bonus",
"displayName_zh": "跃迁干扰强度加成",
"displayNameID": 600129,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -45202,7 +45202,7 @@
"displayName_ja": "アイスホールド容量",
"displayName_ko": "아이스 저장고 적재량",
"displayName_ru": "Объём отсека для льда",
"displayName_zh": "Ice Hold Capacity",
"displayName_zh": "冰矿舱容量",
"displayNameID": 584247,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -45218,7 +45218,7 @@
"tooltipDescription_ja": "アイスホールドに積載できる総量",
"tooltipDescription_ko": "아이스 저장고에 보관할 수 있는 최대 용량",
"tooltipDescription_ru": "Максимальный объём, допустимый к размещению в бортовом отсеке для льда",
"tooltipDescription_zh": "The total volume that can be stored in the ice hold",
"tooltipDescription_zh": "冰矿舱的容量",
"tooltipDescriptionID": 584249,
"tooltipTitleID": 584248,
"unitID": 9
@@ -45237,7 +45237,7 @@
"displayName_ja": "有効なターゲットタイプ",
"displayName_ko": "유효한 타겟팅 대상",
"displayName_ru": "Доступные типы целей",
"displayName_zh": "Valid target types",
"displayName_zh": "无效的目标类型",
"displayNameID": 593750,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -45259,7 +45259,7 @@
"displayName_ja": "残留物体積乗数",
"displayName_ko": "손실 배수",
"displayName_ru": "Коэффициент объёма отходов",
"displayName_zh": "Residue Volume Multiplier",
"displayName_zh": "残渣体积系数",
"displayNameID": 589052,
"displayWhenZero": 1,
"highIsGood": 0,
@@ -45282,7 +45282,7 @@
"displayName_ja": "残留物率",
"displayName_ko": "손실 확률",
"displayName_ru": "Шанс получения отходов",
"displayName_zh": "Residue Probability",
"displayName_zh": "残渣几率",
"displayNameID": 589053,
"displayWhenZero": 1,
"highIsGood": 0,
@@ -45329,7 +45329,7 @@
"displayName_ja": "残留物体積乗数ボーナス",
"displayName_ko": "손실량 배수 보너스",
"displayName_ru": "Прибавка к коэффициенту объёма отходов",
"displayName_zh": "Residue Volume Multiplier Bonus",
"displayName_zh": "残渣体积系数加成",
"displayNameID": 591643,
"displayWhenZero": 1,
"highIsGood": 0,
@@ -45352,7 +45352,7 @@
"displayName_ja": "残留物率ボーナス",
"displayName_ko": "손실 확률 보너스",
"displayName_ru": "Прибавка к шансу получения отходов",
"displayName_zh": "Residue Probability Bonus",
"displayName_zh": "残渣几率加成",
"displayNameID": 591644,
"displayWhenZero": 1,
"highIsGood": 0,
@@ -45375,7 +45375,7 @@
"displayName_ja": "アステロイドスペシャリゼーション継続時間乗数",
"displayName_ko": "소행성 특화 지속시간 배수",
"displayName_ru": "Коэффициент длительности при специализации на астероидах",
"displayName_zh": "Asteroid Specialization Duration Multiplier",
"displayName_zh": "小行星矿专精运转周期系数",
"displayNameID": 587593,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -45398,7 +45398,7 @@
"displayName_ja": "ドロップ率の上書き",
"displayName_ko": "Drop Chance Overwrite",
"displayName_ru": "Изменение шанса выпадения добычи",
"displayName_zh": "Drop Chance Overwrite",
"displayName_zh": "掉率改写",
"displayNameID": 588129,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -45413,7 +45413,7 @@
"tooltipDescription_ja": "プレイヤー艦のドロップ率を上書き。値が0の場合、戦利品のドロップなし",
"tooltipDescription_ko": "Overwriting loot chance of drop from player ship, value 0 = no loot dropped",
"tooltipDescription_ru": "Изменяет шанс выпадения добычи из корабля игрока. 0 = добыча не выпадает",
"tooltipDescription_zh": "Overwriting loot chance of drop from player ship, value 0 = no loot dropped",
"tooltipDescription_zh": "改写玩家爆船的掉率0=无掉落",
"tooltipDescriptionID": 588131,
"tooltipTitleID": 588130
},
@@ -45430,7 +45430,7 @@
"displayName_ja": "プローブ強度ボーナス",
"displayName_ko": "프로브 강도 보너스",
"displayName_ru": "Увеличение чувствительности зондов",
"displayName_zh": "Probe Strength Bonus",
"displayName_zh": "探针强度加成",
"displayNameID": 588464,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -45541,7 +45541,7 @@
"displayName_ja": "サイレントターゲットロック",
"displayName_ko": "Target Lock Silently",
"displayName_ru": "Незаметный захват цели",
"displayName_zh": "Target Lock Silently",
"displayName_zh": "暗中锁定目标",
"displayNameID": 588475,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -45556,7 +45556,7 @@
"tooltipDescription_ja": "艦船などがプレイヤーにロックを行ったりエフェクトを適用している際に、その艦船などがプレイヤーに対して黄色点滅状態になるのを防ぐために使用されます。",
"tooltipDescription_ko": "Used to prevent the ship or entity from yellow flashing to the player when the ship or entity has the player locked and if applying an effect on the player.",
"tooltipDescription_ru": "Used to prevent the ship or entity from yellow flashing to the player when the ship or entity has the player locked and if applying an effect on the player.",
"tooltipDescription_zh": "Used to prevent the ship or entity from yellow flashing to the player when the ship or entity has the player locked and if applying an effect on the player.",
"tooltipDescription_zh": "防止舰船或其他实体因锁定玩家或对玩家施放效果而闪黄。",
"tooltipDescriptionID": 588477,
"tooltipTitleID": 588476
},
@@ -45871,7 +45871,7 @@
"displayName_ja": "ステイシスウェビファイヤーの最大範囲ボーナス",
"displayName_ko": "스테이시스 웹 생성기 사거리 보너스",
"displayName_ru": "Бонус к макс. дальности стазис-индуктора",
"displayName_zh": "Stasis Webifier Maximum Range Bonus",
"displayName_zh": "停滞缠绕光束最大范围加成",
"displayNameID": 589016,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46037,7 +46037,7 @@
"displayName_ja": "アステロイドホールド容量",
"displayName_ko": "소행성 저장고 적재량",
"displayName_ru": "Объём отсека для астероидов",
"displayName_zh": "Asteroid Hold Capacity",
"displayName_zh": "小行星矿石舱容量",
"displayNameID": 591098,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46053,7 +46053,7 @@
"tooltipDescription_ja": "アステロイドホールドに積載できる総量",
"tooltipDescription_ko": "소행성 저장고에 보관할 수 있는 최대 용량",
"tooltipDescription_ru": "Максимальный объём, допустимый к размещению в бортовом отсеке для астероидов",
"tooltipDescription_zh": "The total volume that can be stored in the Asteroid Hold",
"tooltipDescription_zh": "小行星矿石舱的容量",
"tooltipDescriptionID": 591100,
"tooltipTitleID": 591099,
"unitID": 9
@@ -46204,7 +46204,7 @@
"displayName_ja": "最適射程距離",
"displayName_ko": "최적사거리",
"displayName_ru": "Оптимальная дальность",
"displayName_zh": "Optimal Range",
"displayName_zh": "最佳射程",
"displayNameID": 593073,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46238,7 +46238,7 @@
"displayName_ja": "圧縮可能なアイテム",
"displayName_ko": "압축 가능한 아이템",
"displayName_ru": "Сжимаемые ресурсы",
"displayName_zh": "Compressible Items",
"displayName_zh": "可压缩",
"displayNameID": 594759,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -46260,7 +46260,7 @@
"displayName_ja": "ワープスクランブラーの最適射程距離ボーナス",
"displayName_ko": "워프 스크램블러 최적사거리 보너스",
"displayName_ru": "Влияние на оптимальную дальность действия варп-глушителя",
"displayName_zh": "Warp Scrambler Optimal Range Bonus",
"displayName_zh": "跃迁扰频器最佳射程加成",
"displayNameID": 595177,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46283,7 +46283,7 @@
"displayName_ja": "船体ダメージレジスタンスボーナス",
"displayName_ko": "선체 저항력 보너스",
"displayName_ru": "Увеличение сопротивляемости корпуса",
"displayName_zh": "Hull Damage Resistance Bonus",
"displayName_zh": "结构伤害抗性加成",
"displayNameID": 595367,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -46305,7 +46305,7 @@
"displayName_ja": "ガス減圧効率ボーナス",
"displayName_ko": "가스 압축해제 효율 보너스",
"displayName_ru": "Бонус к эффективности декомпрессии газа",
"displayName_zh": "Gas Decompression Efficiency Bonus",
"displayName_zh": "气云解压效率加成",
"displayNameID": 595397,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46528,7 +46528,7 @@
"displayName_ja": "ドローン追跡速度ボーナス",
"displayName_ko": "드론 트래킹 속도 보너스",
"displayName_ru": "Бонус к скорости наведения дронов",
"displayName_zh": "Drone Tracking Speed Bonus",
"displayName_zh": "无人机跟踪速度加成",
"displayNameID": 598958,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46551,7 +46551,7 @@
"displayName_ja": "シールド修復を停止させるDPSしきい値",
"displayName_ko": "실드 수리가 멈추는 기준 피해량",
"displayName_ru": "Порог урона/сек. для приостановки восстановления щитов",
"displayName_zh": "DPS threshold to pause shield repair",
"displayName_zh": "停止护盾维修的DPS阈值",
"displayNameID": 598991,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46573,7 +46573,7 @@
"displayName_ja": "アーマー修復を停止させるDPSしきい値",
"displayName_ko": "장갑 수리가 멈추는 기준 피해량",
"displayName_ru": "Порог урона/сек. для приостановки восстановления брони",
"displayName_zh": "DPS threshold to pause armor repair",
"displayName_zh": "停止装甲维修的DPS阈值",
"displayNameID": 598992,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46595,7 +46595,7 @@
"displayName_ja": "船体修復を停止させるDPSしきい値",
"displayName_ko": "선체 수리가 멈추는 기준 피해량",
"displayName_ru": "Порог урона/сек. для приостановки восстановления корпуса",
"displayName_zh": "DPS threshold to pause hull repair",
"displayName_zh": "停止结构维修的DPS阈值",
"displayNameID": 598993,
"displayWhenZero": 0,
"highIsGood": 1,
@@ -46617,7 +46617,7 @@
"displayName_ja": "ステイシスウェビファイヤーレジスタンスボーナス",
"displayName_ko": "스테이시스 웹 생성기 저항 보너스",
"displayName_ru": "Влияние на сопротивляемость стазис-индукторов",
"displayName_zh": "Stasis Webifier Resistance Bonus",
"displayName_zh": "停滞缠绕抗性加成",
"displayNameID": 600127,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -46640,7 +46640,7 @@
"displayName_ja": "アーマーダメージレジスタンスボーナス",
"displayName_ko": "장갑 피해 저항력 보너스",
"displayName_ru": "Влияние на сопротивляемость брони",
"displayName_zh": "Armor Damage Resistance Bonus",
"displayName_zh": "装甲伤害抗性加成",
"displayNameID": 600536,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -46739,7 +46739,7 @@
"displayName_ja": "国家間戦争の攻撃側のみが利用可能",
"displayName_ko": "팩션 전쟁 공격 측 입장 가능",
"displayName_ru": "Допускать только нападающую сторону МВ",
"displayName_zh": "Allow Only Factional Warfare Attackers",
"displayName_zh": "只允许势力战争攻击方",
"displayNameID": 635862,
"displayWhenZero": 0,
"highIsGood": 0,
@@ -47081,5 +47081,181 @@
"name": "shipBonusDreadnoughtM4",
"published": 0,
"stackable": 1
},
"5265": {
"attributeID": 5265,
"categoryID": 9,
"dataType": 3,
"defaultValue": 0.0,
"description": "All players will be flagged as suspect when looting a wreck with this attribute.",
"displayWhenZero": 0,
"highIsGood": 1,
"name": "flagAllAsSuspectOnLootWreck",
"published": 0,
"stackable": 1
},
"5318": {
"attributeID": 5318,
"categoryID": 9,
"dataType": 5,
"defaultValue": 0.0,
"description": "Ship Bonus used for Alliance Tournament Ships",
"displayWhenZero": 0,
"highIsGood": 1,
"name": "shipBonusAT2",
"published": 0,
"stackable": 1
},
"5319": {
"attributeID": 5319,
"categoryID": 9,
"dataType": 5,
"defaultValue": 0.0,
"description": "Ship Bonus used for Alliance Tournament Ships",
"displayWhenZero": 0,
"highIsGood": 1,
"name": "shipBonusAT3",
"published": 0,
"stackable": 1
},
"5325": {
"attributeID": 5325,
"categoryID": 40,
"dataType": 5,
"defaultValue": 0.0,
"description": "Mobile Depot Hold Capacity",
"displayName_de": "Hangarkapazität für Mobile Depots",
"displayName_en-us": "Mobile Depot Hold Capacity",
"displayName_es": "Capacidad de la bodega de almacenes móviles",
"displayName_fr": "Capacité de la soute à dépôts mobiles",
"displayName_it": "Mobile Depot Hold Capacity",
"displayName_ja": "移動式貯蔵ホールド容量",
"displayName_ko": "이동식 저장고 적재량",
"displayName_ru": "Объём отсека для автономных постов снабжения",
"displayName_zh": "移动式仓库舱容量",
"displayNameID": 651789,
"displayWhenZero": 0,
"highIsGood": 1,
"iconID": 71,
"name": "specialMobileDepotHoldCapacity",
"published": 1,
"stackable": 0,
"tooltipDescription_de": "Das Gesamtvolumen an Mobilen Depots, das im Hangar des Schiffs für Mobile Depots gelagert werden kann.",
"tooltipDescription_en-us": "The total volume of mobile depots that can be stored in the ship's mobile depot hold",
"tooltipDescription_es": "El volumen total de almacenes móviles que pueden almacenarse en la bodega de almacenes móviles de la nave.",
"tooltipDescription_fr": "Volume total de dépôts mobiles pouvant être stockés dans la soute à dépôts mobiles du vaisseau",
"tooltipDescription_it": "The total volume of mobile depots that can be stored in the ship's mobile depot hold",
"tooltipDescription_ja": "艦船の移動式貯蔵ホールドに積載できる移動式貯蔵庫の総量",
"tooltipDescription_ko": "함선에 적재할 수 있는 이동식 저장고의 총 부피입니다.",
"tooltipDescription_ru": "Общее количество автономных постов снабжения, которые можно разместить в соответствующем отсеке корабля",
"tooltipDescription_zh": "舰船的移动式仓库舱可容纳的移动式仓库总容量",
"tooltipDescriptionID": 651791,
"tooltipTitleID": 651790,
"unitID": 9
},
"5412": {
"attributeID": 5412,
"categoryID": 39,
"dataType": 5,
"defaultValue": 0.0,
"description": "Length of time for applied debuffs to persist on a target",
"displayName_de": "Dauer des angewendeten Debuffs",
"displayName_en-us": "Applied Debuff Duration",
"displayName_es": "Duración del perjuicio aplicado",
"displayName_fr": "Durée du malus appliqué",
"displayName_it": "Applied Debuff Duration",
"displayName_ja": "有効なデバフ持続時間",
"displayName_ko": "적용된 디버프 지속 시간",
"displayName_ru": "Длительность наложенного ослабления",
"displayName_zh": "施加的减益效果持续时间",
"displayNameID": 660832,
"displayWhenZero": 0,
"highIsGood": 1,
"name": "doomsdayAppliedDBuffDuration",
"published": 1,
"stackable": 1,
"unitID": 101
},
"5417": {
"attributeID": 5417,
"categoryID": 37,
"dataType": 5,
"defaultValue": 0.0,
"description": "Multiplied by Lancer Dreadnought skill level",
"displayWhenZero": 0,
"highIsGood": 1,
"name": "shipBonusAdvancedDreadnought1",
"published": 0,
"stackable": 1
},
"5418": {
"attributeID": 5418,
"categoryID": 37,
"dataType": 5,
"defaultValue": 0.0,
"description": "Multiplied by Lancer Dreadnoughts skill level",
"displayWhenZero": 0,
"highIsGood": 1,
"name": "shipBonusAdvancedDreadnought2",
"published": 0,
"stackable": 1
},
"5419": {
"attributeID": 5419,
"dataType": 5,
"defaultValue": 0.0,
"displayWhenZero": 0,
"highIsGood": 1,
"name": "disruptionLanceSkillBoostCapacitorCost",
"published": 0,
"stackable": 1,
"unitID": 105
},
"5425": {
"attributeID": 5425,
"categoryID": 39,
"dataType": 0,
"defaultValue": 0.0,
"displayName_de": "Disallow Cloaking While Fit",
"displayName_en-us": "Disallow Cloaking While Fit",
"displayName_es": "Disallow Cloaking While Fit",
"displayName_fr": "Disallow Cloaking While Fit",
"displayName_it": "Disallow Cloaking While Fit",
"displayName_ja": "Disallow Cloaking While Fit",
"displayName_ko": "Disallow Cloaking While Fit",
"displayName_ru": "Disallow Cloaking While Fit",
"displayName_zh": "Disallow Cloaking While Fit",
"displayNameID": 662925,
"displayWhenZero": 0,
"highIsGood": 1,
"iconID": 2106,
"name": "disruptionLanceDisallowCloaking",
"published": 1,
"stackable": 1,
"unitID": 137
},
"5426": {
"attributeID": 5426,
"categoryID": 7,
"dataType": 3,
"defaultValue": 0.0,
"description": "An effect can check this to indicate that module activation requires ship to have an active Industrial Core module.",
"displayName_de": "Requires Active Siege Module",
"displayName_en-us": "Requires Active Siege Module",
"displayName_es": "Requires Active Siege Module",
"displayName_fr": "Requires Active Siege Module",
"displayName_it": "Requires Active Siege Module",
"displayName_ja": "Requires Active Siege Module",
"displayName_ko": "Requires Active Siege Module",
"displayName_ru": "Requires Active Siege Module",
"displayName_zh": "Requires Active Siege Module",
"displayNameID": 662927,
"displayWhenZero": 0,
"highIsGood": 0,
"iconID": 2851,
"name": "activationRequiresActiveSiegeModule",
"published": 1,
"stackable": 0,
"unitID": 137
}
}

View File

@@ -73182,15 +73182,15 @@
"rangeChance": 0
},
"6805": {
"description_de": "Struktur-Modifikation-Materialeffekt für die Herstellung von Ausrüstung ",
"description_en-us": "Structure Rig Material effect on Manufacturing of equipment ",
"description_es": "Efecto de material de complementos para estructuras al fabricar equipo. ",
"description_fr": "Optimisation Productivité matérielle de la production d'équipement (Structure) ",
"description_it": "Structure Rig Material effect on Manufacturing of equipment ",
"description_ja": "ストラクチャリグ 装置の製造に対して材料効果 ",
"description_ko": "장비 제조의 자원효율성을 향상시키는 구조물 리그입니다. ",
"description_ru": "Эффект модификатора сооружений: экономия материалов при производстве оборудования ",
"description_zh": "建筑改装件对制造设备的材料影响效果 ",
"description_de": "Struktur-Modifikation-Materialeffekt für die Herstellung von Ausrüstung",
"description_en-us": "Structure Rig Material effect on Manufacturing of equipment",
"description_es": "Efecto de material de complementos para estructuras al fabricar equipo.",
"description_fr": "Optimisation Productivité matérielle de la production d'équipement (Structure)",
"description_it": "Structure Rig Material effect on Manufacturing of equipment",
"description_ja": "ストラクチャリグ 装置の製造に対して材料効果",
"description_ko": "장비 제조의 자원효율성을 향상시키는 구조물 리그입니다.",
"description_ru": "Эффект модификатора сооружений: экономия материалов при производстве оборудования",
"description_zh": "建筑改装件对制造设备的材料影响效果",
"descriptionID": 315454,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91354,7 +91354,7 @@
"description_ja": "自動生成効果(コピー)",
"description_ko": "자동 생성 효과 (복제)",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect ( copy )",
"description_zh": "自动生成效果",
"descriptionID": 638155,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91411,7 +91411,7 @@
"description_ja": "自動生成効果",
"description_ko": "자동 생성 효과",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect",
"description_zh": "自动生成效果",
"descriptionID": 638201,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91444,7 +91444,7 @@
"description_ja": "自動生成効果",
"description_ko": "자동 생성 효과",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect",
"description_zh": "自动生成效果",
"descriptionID": 638262,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91549,7 +91549,7 @@
"description_ja": "自動生成効果",
"description_ko": "자동 생성 효과",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect",
"description_zh": "自动生成效果",
"descriptionID": 638276,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91582,7 +91582,7 @@
"description_ja": "自動生成効果",
"description_ko": "자동 생성 효과",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect",
"description_zh": "自动生成效果",
"descriptionID": 638278,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91662,7 +91662,7 @@
"description_ja": "自動生成効果",
"description_ko": "자동 생성 효과",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect",
"description_zh": "自动生成效果",
"descriptionID": 638286,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91742,7 +91742,7 @@
"description_ja": "自動生成効果",
"description_ko": "자동 생성 효과",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect",
"description_zh": "自动生成效果",
"descriptionID": 638392,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -91776,7 +91776,7 @@
"description_ja": "自動生成効果(コピー)",
"description_ko": "자동 생성 효과 (복제)",
"description_ru": "Автоматически созданный эффект",
"description_zh": "Automatically generated effect ( copy )",
"description_zh": "自动生成效果",
"descriptionID": 638289,
"disallowAutoRepeat": 0,
"effectCategory": 0,
@@ -92926,5 +92926,889 @@
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11512": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11512,
"effectName": "eliteBonusGunshipLightMissileAndRocketROF",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationGroupModifier",
"groupID": 509,
"modifiedAttributeID": 51,
"modifyingAttributeID": 673,
"operation": 6
},
{
"domain": "shipID",
"func": "LocationGroupModifier",
"groupID": 507,
"modifiedAttributeID": 51,
"modifyingAttributeID": 673,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11513": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11513,
"effectName": "shipBonusMissileDamageMF2",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 117,
"modifyingAttributeID": 587,
"operation": 6,
"skillTypeID": 3319
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 114,
"modifyingAttributeID": 587,
"operation": 6,
"skillTypeID": 3319
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 118,
"modifyingAttributeID": 587,
"operation": 6,
"skillTypeID": 3319
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 116,
"modifyingAttributeID": 587,
"operation": 6,
"skillTypeID": 3319
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11514": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11514,
"effectName": "shipBonusArmorRepairAmountMF",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 84,
"modifyingAttributeID": 460,
"operation": 6,
"skillTypeID": 3393
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11515": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11515,
"effectName": "shipBonusArmorRepairAmountMC",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 84,
"modifyingAttributeID": 489,
"operation": 6,
"skillTypeID": 3393
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11516": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11516,
"effectName": "shipBonusShieldBoostAmountMC",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 68,
"modifyingAttributeID": 489,
"operation": 6,
"skillTypeID": 3416
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11517": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11517,
"effectName": "shipBonusStasisWebDroneHitpointsAT",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 265,
"modifyingAttributeID": 2020,
"operation": 6,
"skillTypeID": 3435
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 9,
"modifyingAttributeID": 2020,
"operation": 6,
"skillTypeID": 3435
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 263,
"modifyingAttributeID": 2020,
"operation": 6,
"skillTypeID": 3435
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11518": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11518,
"effectName": "shipBonusStasisWebDroneVelocityAT2",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 37,
"modifyingAttributeID": 5318,
"operation": 6,
"skillTypeID": 3435
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11519": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11519,
"effectName": "shipBonusStasisWebDroneWebStrengthAT3",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 20,
"modifyingAttributeID": 5319,
"operation": 6,
"skillTypeID": 3436
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11528": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11528,
"effectName": "covopsCloakCPURole1Bonus",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 50,
"modifyingAttributeID": 2298,
"operation": 6,
"skillTypeID": 11579
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11529": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11529,
"effectName": "shipRole8BonusCoreProbeStrength",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 1371,
"modifyingAttributeID": 1688,
"operation": 6,
"skillTypeID": 3402
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11530": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11530,
"effectName": "shipRole6BonusCoreProbeDeviation",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 1372,
"modifyingAttributeID": 2303,
"operation": 6,
"skillTypeID": 3402
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11531": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11531,
"effectName": "probeLauncherCPURole1Bonus",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationGroupModifier",
"groupID": 481,
"modifiedAttributeID": 50,
"modifyingAttributeID": 2298,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11532": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11532,
"effectName": "dataMinerCPURole1Bonus",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationGroupModifier",
"groupID": 538,
"modifiedAttributeID": 50,
"modifyingAttributeID": 2298,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11691": {
"disallowAutoRepeat": 0,
"dischargeAttributeID": 6,
"durationAttributeID": 73,
"effectCategory": 1,
"effectID": 11691,
"effectName": "debuffLance",
"electronicChance": 0,
"guid": "",
"isAssistance": 0,
"isOffensive": 1,
"isWarpSafe": 1,
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11695": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11695,
"effectName": "skillMultiplierShipBonusLancerDreadnought",
"electronicChance": 0,
"guid": "",
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 5417,
"modifyingAttributeID": 280,
"operation": 0
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 5418,
"modifyingAttributeID": 280,
"operation": 0
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11696": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11696,
"effectName": "shipBonusDreadnoughtC1HybridTracking",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 160,
"modifyingAttributeID": 2286,
"operation": 6,
"skillTypeID": 21666
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11697": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11697,
"effectName": "shipBonusDreadnoughtC2HybridOptimalRange",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 54,
"modifyingAttributeID": 2287,
"operation": 6,
"skillTypeID": 21666
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11698": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11698,
"effectName": "shipBonusDisruptionLanceDamage",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 114,
"modifyingAttributeID": 5417,
"operation": 6,
"skillTypeID": 77739
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 118,
"modifyingAttributeID": 5417,
"operation": 6,
"skillTypeID": 77739
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 117,
"modifyingAttributeID": 5417,
"operation": 6,
"skillTypeID": 77739
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 116,
"modifyingAttributeID": 5417,
"operation": 6,
"skillTypeID": 77739
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11699": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11699,
"effectName": "skillDisruptionLanceCapacitorUsePremultiplier",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "itemID",
"func": "ItemModifier",
"modifiedAttributeID": 5419,
"modifyingAttributeID": 280,
"operation": 0
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11700": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11700,
"effectName": "skillDisruptionLanceCapacitorUseBonus",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 6,
"modifyingAttributeID": 5419,
"operation": 6,
"skillTypeID": 77739
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11701": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11701,
"effectName": "shipBonusDisruptionLanceRange",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 54,
"modifyingAttributeID": 5418,
"operation": 6,
"skillTypeID": 77739
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11702": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11702,
"effectName": "eliteBonusMarauderArmourBonus2a",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 84,
"modifyingAttributeID": 1266,
"operation": 6,
"skillTypeID": 3393
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11704": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11704,
"effectName": "shipBonusDreadnoughtM2CapitalProjectileFalloff",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 158,
"modifyingAttributeID": 2293,
"operation": 6,
"skillTypeID": 21667
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11705": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11705,
"effectName": "shipBonusDreadnoughtA1MissileDamage",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 114,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 32435
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 118,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 32435
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 117,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 32435
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 116,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 32435
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 114,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 21668
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 118,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 21668
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 117,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 21668
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 116,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 21668
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 114,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 3325
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 118,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 3325
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 117,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 3325
},
{
"domain": "shipID",
"func": "LocationRequiredSkillModifier",
"modifiedAttributeID": 116,
"modifyingAttributeID": 2283,
"operation": 6,
"skillTypeID": 3325
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11706": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11706,
"effectName": "shipBonusDreadnoughtA2MissileExplosionRadius",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 654,
"modifyingAttributeID": 2284,
"operation": 6,
"skillTypeID": 32435
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 654,
"modifyingAttributeID": 2284,
"operation": 6,
"skillTypeID": 21668
},
{
"domain": "charID",
"func": "OwnerRequiredSkillModifier",
"modifiedAttributeID": 654,
"modifyingAttributeID": 2284,
"operation": 6,
"skillTypeID": 3325
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11707": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11707,
"effectName": "shipBonusDreadnoughtG1HullResonance",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 113,
"modifyingAttributeID": 2289,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 111,
"modifyingAttributeID": 2289,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 109,
"modifyingAttributeID": 2289,
"operation": 6
},
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 110,
"modifyingAttributeID": 2289,
"operation": 6
}
],
"propulsionChance": 0,
"published": 0,
"rangeChance": 0
},
"11714": {
"disallowAutoRepeat": 0,
"effectCategory": 0,
"effectID": 11714,
"effectName": "disruptionLanceDisallowCloaking",
"electronicChance": 0,
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"modifierInfo": [
{
"domain": "shipID",
"func": "ItemModifier",
"modifiedAttributeID": 2454,
"modifyingAttributeID": 5425,
"operation": 2
}
],
"propulsionChance": 0,
"published": 0,
"rangeAttributeID": 54,
"rangeChance": 0
},
"11716": {
"disallowAutoRepeat": 0,
"dischargeAttributeID": 6,
"durationAttributeID": 2009,
"effectCategory": 2,
"effectID": 11716,
"effectName": "entitySuperWeaponLanceAmarr",
"electronicChance": 0,
"guid": "effects.SuperWeaponLanceAmarr",
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"propulsionChance": 0,
"published": 1,
"rangeAttributeID": 54,
"rangeChance": 0
},
"11717": {
"disallowAutoRepeat": 0,
"dischargeAttributeID": 6,
"durationAttributeID": 2009,
"effectCategory": 2,
"effectID": 11717,
"effectName": "entitySuperWeaponLanceCaldari",
"electronicChance": 0,
"guid": "effects.SuperWeaponLanceCaldari",
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"propulsionChance": 0,
"published": 1,
"rangeAttributeID": 54,
"rangeChance": 0
},
"11718": {
"disallowAutoRepeat": 0,
"dischargeAttributeID": 6,
"durationAttributeID": 2009,
"effectCategory": 2,
"effectID": 11718,
"effectName": "entitySuperWeaponLanceGallente",
"electronicChance": 0,
"guid": "effects.SuperWeaponLanceGallente",
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"propulsionChance": 0,
"published": 1,
"rangeAttributeID": 54,
"rangeChance": 0
},
"11719": {
"disallowAutoRepeat": 0,
"dischargeAttributeID": 6,
"durationAttributeID": 2009,
"effectCategory": 2,
"effectID": 11719,
"effectName": "entitySuperWeaponLanceMinmatar",
"electronicChance": 0,
"guid": "effects.SuperWeaponLanceMinmatar",
"isAssistance": 0,
"isOffensive": 0,
"isWarpSafe": 0,
"propulsionChance": 0,
"published": 1,
"rangeAttributeID": 54,
"rangeChance": 0
}
}

View File

@@ -12,7 +12,7 @@
"descriptionID": 77965,
"displayName_de": "m",
"displayName_en-us": "m",
"displayName_es": " m",
"displayName_es": "m",
"displayName_fr": "m",
"displayName_it": "m",
"displayName_ja": "m",
@@ -35,7 +35,7 @@
"descriptionID": 77966,
"displayName_de": "kg",
"displayName_en-us": "kg",
"displayName_es": " kg",
"displayName_es": "kg",
"displayName_fr": "kg",
"displayName_it": "kg",
"displayName_ja": "kg",
@@ -58,7 +58,7 @@
"descriptionID": 77967,
"displayName_de": "s",
"displayName_en-us": "sec",
"displayName_es": " s",
"displayName_es": "s",
"displayName_fr": "sec",
"displayName_it": "sec",
"displayName_ja": "sec",
@@ -104,7 +104,7 @@
"descriptionID": 77969,
"displayName_de": "K",
"displayName_en-us": "K",
"displayName_es": " K",
"displayName_es": "K",
"displayName_fr": "K",
"displayName_it": "K",
"displayName_ja": "K",
@@ -127,7 +127,7 @@
"descriptionID": 77970,
"displayName_de": "mol",
"displayName_en-us": "mol",
"displayName_es": " mol",
"displayName_es": "mol",
"displayName_fr": "mol",
"displayName_it": "mol",
"displayName_ja": "mol",
@@ -150,7 +150,7 @@
"descriptionID": 77971,
"displayName_de": "cd",
"displayName_en-us": "cd",
"displayName_es": " cd",
"displayName_es": "cd",
"displayName_fr": "cd",
"displayName_it": "cd",
"displayName_ja": "cd",
@@ -173,7 +173,7 @@
"descriptionID": 77972,
"displayName_de": "m2",
"displayName_en-us": "m2",
"displayName_es": " m²",
"displayName_es": "m²",
"displayName_fr": "m2",
"displayName_it": "m2",
"displayName_ja": "m2",
@@ -196,7 +196,7 @@
"descriptionID": 77973,
"displayName_de": "m3",
"displayName_en-us": "m3",
"displayName_es": " m³",
"displayName_es": "m³",
"displayName_fr": "m³",
"displayName_it": "m3",
"displayName_ja": "m3",
@@ -214,12 +214,12 @@
"description_it": "Meter per second",
"description_ja": "メートル毎秒",
"description_ko": "m/s",
"description_ru": "метр в секунду ",
"description_ru": "метр в секунду",
"description_zh": "米/秒",
"descriptionID": 77974,
"displayName_de": "m/s",
"displayName_en-us": "m/sec",
"displayName_es": " m/s",
"displayName_es": "m/s",
"displayName_fr": "m/sec",
"displayName_it": "m/sec",
"displayName_ja": "m/sec",
@@ -242,7 +242,7 @@
"descriptionID": 77975,
"displayName_de": "m/s",
"displayName_en-us": "m/sec",
"displayName_es": " m/s",
"displayName_es": "m/s",
"displayName_fr": "m/sec",
"displayName_it": "m/sec",
"displayName_ja": "m/sec",
@@ -265,7 +265,7 @@
"descriptionID": 77976,
"displayName_de": "m-1",
"displayName_en-us": "m-1",
"displayName_es": " m-1",
"displayName_es": "m-1",
"displayName_fr": "m-1",
"displayName_it": "m-1",
"displayName_ja": "m-1",
@@ -288,7 +288,7 @@
"descriptionID": 77977,
"displayName_de": "kg/m3",
"displayName_en-us": "kg/m3",
"displayName_es": " kg/m³",
"displayName_es": "kg/m³",
"displayName_fr": "kg/m³",
"displayName_it": "kg/m3",
"displayName_ja": "kg/m3",
@@ -311,7 +311,7 @@
"descriptionID": 77978,
"displayName_de": "m3/kg",
"displayName_en-us": "m3/kg",
"displayName_es": " m³/kg",
"displayName_es": "m³/kg",
"displayName_fr": "m³/kg",
"displayName_it": "m3/kg",
"displayName_ja": "m3/kg",
@@ -334,7 +334,7 @@
"descriptionID": 77979,
"displayName_de": "A/m2",
"displayName_en-us": "A/m2",
"displayName_es": " A/m²",
"displayName_es": "A/m²",
"displayName_fr": "A/m2",
"displayName_it": "A/m2",
"displayName_ja": "A/m2",
@@ -357,7 +357,7 @@
"descriptionID": 77980,
"displayName_de": "A/m",
"displayName_en-us": "A/m",
"displayName_es": " A/m",
"displayName_es": "A/m",
"displayName_fr": "A/m",
"displayName_it": "A/m",
"displayName_ja": "A/m",
@@ -380,7 +380,7 @@
"descriptionID": 77981,
"displayName_de": "mol/m3",
"displayName_en-us": "mol/m3",
"displayName_es": " mol/m³",
"displayName_es": "mol/m³",
"displayName_fr": "mol/m³",
"displayName_it": "mol/m3",
"displayName_ja": "mol/m3",
@@ -403,7 +403,7 @@
"descriptionID": 77982,
"displayName_de": "cd/m2",
"displayName_en-us": "cd/m2",
"displayName_es": " cd/m²",
"displayName_es": "cd/m²",
"displayName_fr": "cd/m2",
"displayName_it": "cd/m2",
"displayName_ja": "cd/m2",
@@ -439,7 +439,7 @@
"101": {
"displayName_de": "s",
"displayName_en-us": "s",
"displayName_es": " s",
"displayName_es": "s",
"displayName_fr": "s",
"displayName_it": "s",
"displayName_ja": "s",
@@ -452,7 +452,7 @@
"102": {
"displayName_de": "mm",
"displayName_en-us": "mm",
"displayName_es": " mm",
"displayName_es": "mm",
"displayName_fr": "mm",
"displayName_it": "mm",
"displayName_ja": "mm",
@@ -478,7 +478,7 @@
"descriptionID": 77984,
"displayName_de": "x",
"displayName_en-us": "x",
"displayName_es": " x",
"displayName_es": "x",
"displayName_fr": "x",
"displayName_it": "x",
"displayName_ja": "x",
@@ -491,7 +491,7 @@
"105": {
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -504,7 +504,7 @@
"106": {
"displayName_de": "tf",
"displayName_en-us": "tf",
"displayName_es": " tf",
"displayName_es": "tf",
"displayName_fr": "tf",
"displayName_it": "tf",
"displayName_ja": "tf",
@@ -517,7 +517,7 @@
"107": {
"displayName_de": "MW",
"displayName_en-us": "MW",
"displayName_es": " MW",
"displayName_es": "MW",
"displayName_fr": "MW",
"displayName_it": "MW",
"displayName_ja": "MW",
@@ -529,18 +529,18 @@
},
"108": {
"description_de": "Für Resistenzen verwendet.\r\n0,0 = 100%\r\n1,0 = 0%",
"description_en-us": "Used for resistance.\r\n0.0 = 100% 1.0 = 0%\r\n",
"description_es": "Se usa en la resistencia.\n\n0,0 = 100% 1,0 = 0%\n\n",
"description_fr": "Utilisé pour la résistance. 0,0 = 100% 1,0 = 0 %\n",
"description_it": "Used for resistance.\r\n0.0 = 100% 1.0 = 0%\r\n",
"description_ja": "抵抗で使用。\n0.0 = 100% 1.0 = 0%\r\n",
"description_ko": "저항력 표기에 사용됩니다.<br>0.0 = 100% 1.0 = 0%\n",
"description_en-us": "Used for resistance.\r\n0.0 = 100% 1.0 = 0%",
"description_es": "Se usa en la resistencia.\n\n0,0 = 100% 1,0 = 0%",
"description_fr": "Utilisé pour la résistance. 0,0 = 100% 1,0 = 0 %",
"description_it": "Used for resistance.\r\n0.0 = 100% 1.0 = 0%",
"description_ja": "抵抗で使用。\n0.0 = 100% 1.0 = 0%",
"description_ko": "저항력 표기에 사용됩니다.<br>0.0 = 100% 1.0 = 0%",
"description_ru": "Используется для обозначения силы сопротивления.\n0.0 = 100%\n1.0 = 0%",
"description_zh": "用于抗性。0.0 = 100% 1.0 = 0%",
"descriptionID": 77985,
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -559,11 +559,11 @@
"description_ja": "% として表示される乗数で使用1.1+10%、0.9-10%",
"description_ko": "%로 나타낸 승수 표기에 사용됩니다. 1.1 = +10%, 0.9 = -10%",
"description_ru": "Используется для множителей в виде %. 1,1 = +10%; 0,9 = -10%",
"description_zh": "用于乘数,显示为 %\n1.1 = +10%\n0.9 = -10%",
"description_zh": "用于乘数,显示为 %1.1 = +10%0.9 = -10%",
"descriptionID": 77986,
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -586,7 +586,7 @@
"descriptionID": 77987,
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -609,7 +609,7 @@
"descriptionID": 77988,
"displayName_de": "rad/s",
"displayName_en-us": "rad/sec",
"displayName_es": " rad/s",
"displayName_es": "rad/s",
"displayName_fr": "rad/sec",
"displayName_it": "rad/sec",
"displayName_ja": "rad/sec",
@@ -622,7 +622,7 @@
"113": {
"displayName_de": "HP",
"displayName_en-us": "HP",
"displayName_es": " PV",
"displayName_es": "PV",
"displayName_fr": "PV",
"displayName_it": "HP",
"displayName_ja": "HP",
@@ -645,7 +645,7 @@
"descriptionID": 77989,
"displayName_de": "GJ",
"displayName_en-us": "GJ",
"displayName_es": " GJ",
"displayName_es": "GJ",
"displayName_fr": "GJ",
"displayName_it": "GJ",
"displayName_ja": "GJ",
@@ -756,7 +756,7 @@
"descriptionID": 77990,
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -782,7 +782,7 @@
"descriptionID": 77991,
"displayName_de": "s",
"displayName_en-us": "sec",
"displayName_es": " s",
"displayName_es": "s",
"displayName_fr": "sec",
"displayName_it": "sec",
"displayName_ja": "sec",
@@ -805,7 +805,7 @@
"descriptionID": 77992,
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -818,7 +818,7 @@
"125": {
"displayName_de": "N",
"displayName_en-us": "N",
"displayName_es": " N",
"displayName_es": "N",
"displayName_fr": "N",
"displayName_it": "N",
"displayName_ja": "N",
@@ -854,7 +854,7 @@
"descriptionID": 77993,
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
@@ -913,7 +913,7 @@
"descriptionID": 77996,
"displayName_de": "ISK",
"displayName_en-us": "ISK",
"displayName_es": " ISK",
"displayName_es": "ISK",
"displayName_fr": "ISK",
"displayName_it": "ISK",
"displayName_ja": "ISK",
@@ -936,7 +936,7 @@
"descriptionID": 77997,
"displayName_de": "m3/Stunde",
"displayName_en-us": "m3/hour",
"displayName_es": " m³/hora",
"displayName_es": "m³/hora",
"displayName_fr": "m³/heure",
"displayName_it": "m3/hour",
"displayName_ja": "m3/hour",
@@ -959,7 +959,7 @@
"descriptionID": 77998,
"displayName_de": "AE",
"displayName_en-us": "AU",
"displayName_es": " UA",
"displayName_es": "UA",
"displayName_fr": "UA",
"displayName_it": "AU",
"displayName_ja": "AU",
@@ -1146,7 +1146,7 @@
"descriptionID": 561538,
"displayName_de": "AE/s",
"displayName_en-us": "AU/s",
"displayName_es": " UA/s",
"displayName_es": "UA/s",
"displayName_fr": "UA/s",
"displayName_it": "AU/s",
"displayName_ja": "AU/秒",
@@ -1165,12 +1165,12 @@
"description_ja": "% として表示される乗数で使用10+10%、-10-10%、3.6+3.6%",
"description_ko": "%로 나타낸 승수 표기에 사용됩니다. 10 = +10%, -10 = -10%, 3.6 = +3.6%",
"description_ru": "Используется для множителей в виде %. 10 = +10%; -10 = -10%; 3,6 = +3,6%",
"description_zh": "Used for multipliers displayed as % 10 is +10% -10 is -10% 3.6 is +3.6%",
"description_zh": "用于乘数,显示为 % 10 is +10% -10 is -10% 3.6 is +3.6%",
"descriptionID": 592242,
"displayName_de": " %",
"displayName_de": "%",
"displayName_en-us": "%",
"displayName_es": " %",
"displayName_fr": " %",
"displayName_es": "%",
"displayName_fr": "%",
"displayName_it": "%",
"displayName_ja": "%",
"displayName_ko": "%",

View File

@@ -516,7 +516,7 @@
"groupName_ja": "ハウラー",
"groupName_ko": "운반선",
"groupName_ru": "Перевозчик",
"groupName_zh": "工业舰",
"groupName_zh": "运载舰",
"groupNameID": 63600,
"published": 1,
"useBasePrice": 0
@@ -1628,7 +1628,7 @@
"groupName_ja": "ハウラー設計図",
"groupName_ko": "운반선 블루프린트",
"groupName_ru": "Hauler Blueprint",
"groupName_zh": "工业舰蓝图",
"groupName_zh": "运载舰蓝图",
"groupNameID": 63656,
"published": 1,
"useBasePrice": 1
@@ -7321,7 +7321,7 @@
"groupName_ja": "エリートハウラー設計図",
"groupName_ko": "엘리트 운반선 블루프린트",
"groupName_ru": "Elite Hauler Blueprint",
"groupName_zh": "精英工业舰蓝图",
"groupName_zh": "精英运载舰蓝图",
"groupNameID": 63936,
"iconID": 0,
"published": 1,
@@ -10033,7 +10033,7 @@
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 667,
"groupName_de": "Missionen: Amarr Empire-Schlachtschiff ",
"groupName_de": "Missionen: Amarr Empire-Schlachtschiff",
"groupName_en-us": "Mission Amarr Empire Battleship",
"groupName_es": "Acorazado de misión del Imperio Amarr",
"groupName_fr": "Cuirassé Empire amarr mission",
@@ -11299,7 +11299,7 @@
"groupName_ja": "ガス雲スクープ",
"groupName_ko": "가스 수집기",
"groupName_ru": "Газочерпатели",
"groupName_zh": "气云采集器",
"groupName_zh": "气云回收装置",
"groupNameID": 64127,
"iconID": 0,
"published": 1,
@@ -14231,7 +14231,7 @@
"categoryID": 9,
"fittableNonSingleton": 0,
"groupID": 890,
"groupName_de": "Blueprints zur Eiskomprimierung ",
"groupName_de": "Blueprints zur Eiskomprimierung",
"groupName_en-us": "Ice Compression Blueprints",
"groupName_es": "Planos de compresores de hielo",
"groupName_fr": "Plans de construction Compression de glace",
@@ -14869,7 +14869,7 @@
"groupName_ja": "ミッション勢力別ハウラー",
"groupName_ko": "미션 팩션 운반선",
"groupName_ru": "Mission Faction Haulers",
"groupName_zh": "任务势力工业舰",
"groupName_zh": "任务势力运载舰",
"groupNameID": 64290,
"published": 0,
"useBasePrice": 0
@@ -15417,7 +15417,7 @@
"categoryID": 35,
"fittableNonSingleton": 0,
"groupID": 979,
"groupName_de": "Decryptors - Hybrid ",
"groupName_de": "Decryptors - Hybrid",
"groupName_en-us": "Decryptors - Hybrid",
"groupName_es": "Desencriptadores híbridos",
"groupName_fr": "Décrypteurs - Hybride",
@@ -15443,7 +15443,7 @@
"groupName_it": "Deadspace Sleeper Sleepless Defender",
"groupName_ja": "デッドスペーススリーパー眠らないディフェンダー",
"groupName_ko": "잠들지 않는 데드스페이스 슬리퍼 디펜더",
"groupName_ru": "Deadspace Sleeper Sleepless Defender ",
"groupName_ru": "Deadspace Sleeper Sleepless Defender",
"groupName_zh": "死亡空间冬眠者长明防卫者",
"groupNameID": 64316,
"iconID": 0,
@@ -15523,7 +15523,7 @@
"groupName_it": "Deadspace Sleeper Emergent Defender",
"groupName_ja": "デッドスペーススリーパー緊急ディフェンダー",
"groupName_ko": "이머전트 데드스페이스 슬리퍼 디펜더",
"groupName_ru": "Deadspace Sleeper Emergent Defender ",
"groupName_ru": "Deadspace Sleeper Emergent Defender",
"groupName_zh": "死亡空间冬眠者新生防卫者",
"groupNameID": 64322,
"iconID": 0,
@@ -15536,7 +15536,7 @@
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 987,
"groupName_de": "Raumverwerfung: Sleeper-Nachwuchspatrouille ",
"groupName_de": "Raumverwerfung: Sleeper-Nachwuchspatrouille",
"groupName_en-us": "Deadspace Sleeper Emergent Patroller",
"groupName_es": "Patrullero emergente de sleepers del espacio muerto",
"groupName_fr": "Patrouilleur sleeper émergent Deadspace",
@@ -15582,7 +15582,7 @@
"groupName_it": "Sleeper Electronics Relics",
"groupName_ja": "スリーパー遺物(エレクトロニクス)",
"groupName_ko": "슬리퍼 전자 시스템 유물",
"groupName_ru": "Древние электронные устройства Sleeper ",
"groupName_ru": "Древние электронные устройства Sleeper",
"groupName_zh": "冬眠者的古老电子装备",
"groupNameID": 64338,
"published": 1,
@@ -15620,7 +15620,7 @@
"groupName_it": "Sleeper Engineering Relics",
"groupName_ja": "スリーパー遺物(エンジニアリング)",
"groupName_ko": "슬리퍼 엔지니어링 시스템 유물",
"groupName_ru": "Древние инженерные установки Sleeper ",
"groupName_ru": "Древние инженерные установки Sleeper",
"groupName_zh": "冬眠者的古老工程设备",
"groupNameID": 64339,
"published": 1,
@@ -15639,7 +15639,7 @@
"groupName_it": "Sleeper Defensive Relics",
"groupName_ja": "スリーパー遺物(防御)",
"groupName_ko": "슬리퍼 방어용 시스템 유물",
"groupName_ru": "Древние защитные устройства Sleeper ",
"groupName_ru": "Древние защитные устройства Sleeper",
"groupName_zh": "冬眠者的古老防御装备",
"groupNameID": 64336,
"published": 1,
@@ -15696,7 +15696,7 @@
"groupName_it": "Sleeper Hull Relics",
"groupName_ja": "スリーパー遺物(船体)",
"groupName_ko": "슬리퍼 선체 시스템 유물",
"groupName_ru": "Древние корпуса Sleeper ",
"groupName_ru": "Древние корпуса Sleeper",
"groupName_zh": "冬眠者船体",
"groupNameID": 64337,
"published": 1,
@@ -16341,7 +16341,7 @@
"groupName_es": "Nave capital de incursión de la Nación Sansha",
"groupName_fr": "Vaisseau capital Sansha's Nation incursion",
"groupName_it": "Incursion Sansha's Nation Capital",
"groupName_ja": "インカージョンサンシャ国キャピタル",
"groupName_ja": "サンシャ国侵略キャピタル",
"groupName_ko": "인커젼 산샤 네이션 캐피탈",
"groupName_ru": "Корабль большого тоннажа Флота вторжения Нации Sansha",
"groupName_zh": "入侵萨沙旗舰",
@@ -16360,7 +16360,7 @@
"groupName_es": "Fragata de incursión de la Nación Sansha",
"groupName_fr": "Frégate Sansha's Nation incursion",
"groupName_it": "Incursion Sansha's Nation Frigate",
"groupName_ja": "インカージョンサンシャ国フリゲート",
"groupName_ja": "サンシャ国侵略フリゲート",
"groupName_ko": "인커젼 산샤 네이션 프리깃",
"groupName_ru": "Фрегат Флота вторжения Нации Sansha",
"groupName_zh": "入侵萨沙护卫舰",
@@ -16379,7 +16379,7 @@
"groupName_es": "Crucero de incursión de la Nación Sansha",
"groupName_fr": "Croiseur Sansha's Nation incursion",
"groupName_it": "Incursion Sansha's Nation Cruiser",
"groupName_ja": "インカージョンサンシャ国巡洋艦",
"groupName_ja": "サンシャ国侵略巡洋艦",
"groupName_ko": "인커젼 산샤 네이션 크루저",
"groupName_ru": "Крейсер Флота вторжения Нации Sansha",
"groupName_zh": "入侵萨沙巡洋舰",
@@ -16398,7 +16398,7 @@
"groupName_es": "Acorazado de incursión de la Nación Sansha",
"groupName_fr": "Cuirassé Sansha's Nation incursion",
"groupName_it": "Incursion Sansha's Nation Battleship",
"groupName_ja": "インカージョンサンシャ国戦艦",
"groupName_ja": "サンシャ国侵略戦艦",
"groupName_ko": "인커젼 산샤 네이션 배틀쉽",
"groupName_ru": "Линкор Флота вторжения Нации Sansha",
"groupName_zh": "入侵萨沙战列舰",
@@ -17250,7 +17250,7 @@
"categoryID": 9,
"fittableNonSingleton": 0,
"groupID": 1151,
"groupName_de": "Blueprint für Panzerungsverstärker mit Beständigkeitsanpassung ",
"groupName_de": "Blueprint für Panzerungsverstärker mit Beständigkeitsanpassung",
"groupName_en-us": "Armor Resistance Shift Hardener Blueprint",
"groupName_es": "Plano de endurecedor de cambio de resistencia de blindaje",
"groupName_fr": "Plan de construction Renforcement de résistance de blindage adaptatif",
@@ -17850,7 +17850,7 @@
"groupName_ja": "マイクロジャンプドライブブループリント",
"groupName_ko": "마이크로 점프 드라이브 블루프린트",
"groupName_ru": "Чертежи маневрового гипердвигателя",
"groupName_zh": "微型跳跃引擎蓝图 ",
"groupName_zh": "微型跳跃引擎蓝图",
"groupNameID": 283702,
"published": 1,
"useBasePrice": 1
@@ -18166,7 +18166,7 @@
"categoryID": 16,
"fittableNonSingleton": 0,
"groupID": 1218,
"groupName_de": "Ressourcenverarbeitung ",
"groupName_de": "Ressourcenverarbeitung",
"groupName_en-us": "Resource Processing",
"groupName_es": "Procesamiento de recursos",
"groupName_fr": "Traitement des ressources",
@@ -20564,7 +20564,7 @@
"groupName_ja": "誘導ボム",
"groupName_ko": "유도 폭탄",
"groupName_ru": "Направляемая бомба",
"groupName_zh": "建筑制导炸弹",
"groupName_zh": "制导炸弹",
"groupNameID": 510637,
"published": 1,
"useBasePrice": 0
@@ -23397,15 +23397,15 @@
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 1792,
"groupName_de": "Hidden Zenith Caldari Schlachtschiff ",
"groupName_en-us": "Hidden Zenith Caldari Battleship ",
"groupName_es": "Acorazado caldari de Zenith oculto ",
"groupName_fr": "Cuirassé caldari Hidden Zenith ",
"groupName_it": "Hidden Zenith Caldari Battleship ",
"groupName_ja": "隠されたゼニスのカルダリ戦艦 ",
"groupName_ko": "숨겨진 제니스 칼다리 배틀쉽 ",
"groupName_ru": "Калдарский линкор «Скрытого зенита» ",
"groupName_zh": "隐藏的天穹加达里战列舰 ",
"groupName_de": "Hidden Zenith Caldari Schlachtschiff",
"groupName_en-us": "Hidden Zenith Caldari Battleship",
"groupName_es": "Acorazado caldari de Zenith oculto",
"groupName_fr": "Cuirassé caldari Hidden Zenith",
"groupName_it": "Hidden Zenith Caldari Battleship",
"groupName_ja": "隠されたゼニスのカルダリ戦艦",
"groupName_ko": "숨겨진 제니스 칼다리 배틀쉽",
"groupName_ru": "Калдарский линкор «Скрытого зенита»",
"groupName_zh": "隐藏的天穹加达里战列舰",
"groupNameID": 518831,
"published": 0,
"useBasePrice": 0
@@ -25092,15 +25092,15 @@
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 1896,
"groupName_de": "♦ Industrie-Kommandoschiff ",
"groupName_en-us": "♦ Industrial Command ",
"groupName_es": "♦ Mando de nave industrial ",
"groupName_de": "♦ Industrie-Kommandoschiff",
"groupName_en-us": "♦ Industrial Command",
"groupName_es": "♦ Mando de nave industrial",
"groupName_fr": "♦ Commandement industriel",
"groupName_it": "♦ Industrial Command ",
"groupName_it": "♦ Industrial Command",
"groupName_ja": "♦ 指揮型輸送艦",
"groupName_ko": "♦ 인더스트리얼 커맨드쉽 ",
"groupName_ru": "♦ Буровой корабль ",
"groupName_zh": "♦ 工业指挥舰 ",
"groupName_ko": "♦ 인더스트리얼 커맨드쉽",
"groupName_ru": "♦ Буровой корабль",
"groupName_zh": "♦ 工业指挥舰",
"groupNameID": 528285,
"published": 0,
"useBasePrice": 0
@@ -25922,7 +25922,7 @@
"groupName_ja": "アビサルモジュール",
"groupName_ko": "어비설 모듈",
"groupName_ru": "Модули Бездны",
"groupName_zh": "Abyssal Modules",
"groupName_zh": "深渊装备",
"groupNameID": 532741,
"published": 0,
"useBasePrice": 0
@@ -26302,7 +26302,7 @@
"groupName_ja": "フィラメントの痕跡",
"groupName_ko": "필라멘트 흔적",
"groupName_ru": "След нити",
"groupName_zh": "深渊痕迹",
"groupName_zh": "纤维痕迹",
"groupNameID": 536427,
"published": 0,
"useBasePrice": 0
@@ -27659,7 +27659,7 @@
"groupName_ja": "未確認エンティティ",
"groupName_ko": "미확인 객체",
"groupName_ru": "Неопознанные объекты",
"groupName_zh": "Unidentified Entities",
"groupName_zh": "不明实体",
"groupNameID": 576839,
"published": 0,
"useBasePrice": 0
@@ -27678,7 +27678,7 @@
"groupName_ja": "AIRエンティティI",
"groupName_ko": "AIR 객체 I",
"groupName_ru": "Объекты АМИ I",
"groupName_zh": "AIR Entities I",
"groupName_zh": "星空会实体 I",
"groupNameID": 576840,
"published": 0,
"useBasePrice": 0
@@ -27794,7 +27794,7 @@
"groupName_ja": "AIRエンティティII",
"groupName_ko": "AIR 객체 II",
"groupName_ru": "Объекты АМИ II",
"groupName_zh": "AIR Entities II",
"groupName_zh": "星空会实体 II",
"groupNameID": 582726,
"published": 0,
"useBasePrice": 0
@@ -27813,7 +27813,7 @@
"groupName_ja": "未確認エンティティII",
"groupName_ko": "미확인 객체 II",
"groupName_ru": "Неопознанные объекты II",
"groupName_zh": "Unidentified Entities II",
"groupName_zh": "不明实体 II",
"groupNameID": 583913,
"published": 0,
"useBasePrice": 0
@@ -27832,7 +27832,7 @@
"groupName_ja": "移動式解析ビーコン",
"groupName_ko": "이동식 분석 비컨",
"groupName_ru": "Мобильный маяк анализа",
"groupName_zh": "Mobile Analysis Beacon",
"groupName_zh": "移动式分析信标",
"groupNameID": 586787,
"published": 1,
"useBasePrice": 1
@@ -27851,7 +27851,7 @@
"groupName_ja": "ガス雲採掘機",
"groupName_ko": "가스 하베스터",
"groupName_ru": "Сборщики газовых облаков",
"groupName_zh": "Gas Cloud Harvesters",
"groupName_zh": "气云采集器",
"groupNameID": 587196,
"published": 1,
"useBasePrice": 0
@@ -27870,7 +27870,7 @@
"groupName_ja": "ガス採掘機設計図",
"groupName_ko": "가스 하베스터 블루프린트",
"groupName_ru": "Чертёж установки для сбора газа",
"groupName_zh": "Gas Harvester Blueprint",
"groupName_zh": "气云采集器蓝图",
"groupNameID": 587314,
"published": 1,
"useBasePrice": 1
@@ -27889,7 +27889,7 @@
"groupName_ja": "移動式解析ビーコン設計図",
"groupName_ko": "이동식 분석 비컨 블루프린트",
"groupName_ru": "Чертёж мобильного маяка анализа",
"groupName_zh": "Mobile Analysis Beacon Blueprint",
"groupName_zh": "移动式分析信标蓝图",
"groupNameID": 588137,
"published": 1,
"useBasePrice": 1
@@ -27908,7 +27908,7 @@
"groupName_ja": "ローグドローン解析データ",
"groupName_ko": "로그 드론 분석 데이터",
"groupName_ru": "Данные анализа восставших дронов",
"groupName_zh": "Rogue Drone Analysis Data",
"groupName_zh": "自由无人机分析数据",
"groupNameID": 588315,
"published": 1,
"useBasePrice": 1
@@ -27927,7 +27927,7 @@
"groupName_ja": "ワープマトリクス・フィラメント",
"groupName_ko": "워프 매트릭스 필라멘트",
"groupName_ru": "Варп-матричные нити",
"groupName_zh": "Warp Matrix Filaments",
"groupName_zh": "跃迁矩阵纤维",
"groupNameID": 588713,
"published": 1,
"useBasePrice": 1
@@ -27946,7 +27946,7 @@
"groupName_ja": "AIR鉱石アステロイド資源",
"groupName_ko": "AIR 소행성 광물",
"groupName_ru": "AIR Ore Asteroid Resources",
"groupName_zh": "AIR Ore Asteroid Resources",
"groupName_zh": "星空会矿石小行星资源",
"groupNameID": 592233,
"published": 0,
"useBasePrice": 1
@@ -27965,7 +27965,7 @@
"groupName_ja": "奇妙な資源",
"groupName_ko": "기묘한 재료",
"groupName_ru": "Любопытные материалы",
"groupName_zh": "Peculiar Materials",
"groupName_zh": "奇特材料",
"groupNameID": 592992,
"published": 1,
"useBasePrice": 1
@@ -27984,7 +27984,7 @@
"groupName_ja": "圧縮ガス",
"groupName_ko": "압축된 가스",
"groupName_ru": "Сжатый газ",
"groupName_zh": "Compressed Gas",
"groupName_zh": "高密度气云",
"groupNameID": 594612,
"iconID": 25169,
"published": 1,
@@ -28004,7 +28004,7 @@
"groupName_ja": "圧縮装置",
"groupName_ko": "압축기",
"groupName_ru": "Компрессоры",
"groupName_zh": "Compressors",
"groupName_zh": "压缩装置",
"groupNameID": 595063,
"iconID": 25152,
"published": 1,
@@ -28024,7 +28024,7 @@
"groupName_ja": "圧縮装置設計図",
"groupName_ko": "압축기 블루프린트",
"groupName_ru": "Чертежи компрессоров",
"groupName_zh": "Compressors Blueprints",
"groupName_zh": "压缩装置蓝图",
"groupNameID": 595230,
"published": 1,
"useBasePrice": 1
@@ -28043,7 +28043,7 @@
"groupName_ja": "インダストリアル・ジャンプポータルジェネレーター",
"groupName_ko": "인더스트리얼 점프 포탈 생성기",
"groupName_ru": "Industrial Jump Portal Generator",
"groupName_zh": "Industrial Jump Portal Generator",
"groupName_zh": "工业舰跳跃通道发生器",
"groupNameID": 596753,
"iconID": 0,
"published": 1,
@@ -28063,7 +28063,7 @@
"groupName_ja": "ストラクチャ領域拒否弾薬",
"groupName_ko": "구조물 반접근 탄약",
"groupName_ru": "Боеприпасы для систем обороны сооружений",
"groupName_zh": "Structure Area Denial Ammunition",
"groupName_zh": "建筑区域拒止弹药",
"groupNameID": 597623,
"iconID": 1304,
"published": 1,
@@ -28083,7 +28083,7 @@
"groupName_ja": "ストラクチャ領域拒否弾薬設計図",
"groupName_ko": "구조물 반접근 탄약 블루프린트",
"groupName_ru": "Structure Area Denial Ammo Blueprint",
"groupName_zh": "Structure Area Denial Ammo Blueprint",
"groupName_zh": "建筑区域拒止弹药蓝图",
"groupNameID": 597627,
"published": 1,
"useBasePrice": 1
@@ -28096,13 +28096,13 @@
"groupID": 4430,
"groupName_de": "Asteroidengürtel",
"groupName_en-us": "Asteroid Belt",
"groupName_es": "Asteroid Belt",
"groupName_es": "Cinturón de asteroides",
"groupName_fr": "Ceinture d'astéroïdes",
"groupName_it": "Asteroid Belt",
"groupName_ja": "アステロイドベルト",
"groupName_ko": "소행성 벨트",
"groupName_ru": "Asteroid Belt",
"groupName_zh": "Asteroid Belt",
"groupName_zh": "小行星带",
"groupNameID": 623561,
"published": 0,
"useBasePrice": 0
@@ -28115,13 +28115,13 @@
"groupID": 4431,
"groupName_de": "FW Schlachtschiff des Imperiums der Amarr",
"groupName_en-us": "FW Amarr Empire Battleship",
"groupName_es": "FW Amarr Empire Battleship",
"groupName_es": "Acorazado de GF del Imperio Amarr",
"groupName_fr": "Cuirassé de l'Empire amarr GF",
"groupName_it": "FW Amarr Empire Battleship",
"groupName_ja": "FWアマー帝国戦艦",
"groupName_ko": "FW 아마르 배틀쉽",
"groupName_ru": "FW Amarr Empire Battleship",
"groupName_zh": "FW Amarr Empire Battleship",
"groupName_zh": "势力战争艾玛帝国战列舰",
"groupNameID": 623607,
"published": 1,
"useBasePrice": 0
@@ -28134,13 +28134,13 @@
"groupID": 4432,
"groupName_de": "FW Schlachtschiff des Staats der Caldari",
"groupName_en-us": "FW Caldari State Battleship",
"groupName_es": "FW Caldari State Battleship",
"groupName_es": "Acorazado de GF del Estado Caldari",
"groupName_fr": "Cuirassé de l'État caldari GF",
"groupName_it": "FW Caldari State Battleship",
"groupName_ja": "FWカルダリ連合戦艦",
"groupName_ko": "FW 칼다리 배틀쉽",
"groupName_ru": "FW Caldari State Battleship",
"groupName_zh": "FW Caldari State Battleship",
"groupName_zh": "势力战争加达里合众国战列舰",
"groupNameID": 623608,
"published": 1,
"useBasePrice": 0
@@ -28153,13 +28153,13 @@
"groupID": 4433,
"groupName_de": "FW Schlachtschiff der Föderation der Gallente",
"groupName_en-us": "FW Gallente Federation Battleship",
"groupName_es": "FW Gallente Federation Battleship",
"groupName_es": "Acorazado de GF de la Federación Gallente",
"groupName_fr": "Cuirassé de la Fédération gallente GF",
"groupName_it": "FW Gallente Federation Battleship",
"groupName_ja": "FWガレンテ連邦戦艦",
"groupName_ko": "FW 갈란테 배틀쉽",
"groupName_ru": "FW Gallente Federation Battleship",
"groupName_zh": "FW Gallente Federation Battleship",
"groupName_zh": "势力战争盖伦特联邦战列舰",
"groupNameID": 623609,
"published": 1,
"useBasePrice": 0
@@ -28172,13 +28172,13 @@
"groupID": 4434,
"groupName_de": "FW Schlachtschiff der Republik Minmatar",
"groupName_en-us": "FW Minmatar Republic Battleship",
"groupName_es": "FW Minmatar Republic Battleship",
"groupName_es": "Acorazado de GF de la República Minmatar",
"groupName_fr": "Cuirassé de la République minmatar GF",
"groupName_it": "FW Minmatar Republic Battleship",
"groupName_ja": "FWミンマター共和国戦艦",
"groupName_ko": "FW 민마타 배틀쉽",
"groupName_ru": "FW Minmatar Republic Battleship",
"groupName_zh": "FW Minmatar Republic Battleship",
"groupName_zh": "势力战争米玛塔尔共和国战列舰",
"groupNameID": 623610,
"published": 1,
"useBasePrice": 0
@@ -28197,7 +28197,7 @@
"groupName_ja": "艦船カスタマイズ",
"groupName_ko": "함선 개인화",
"groupName_ru": "Персонализация корабля",
"groupName_zh": "Ship Personalization",
"groupName_zh": "舰船个性化",
"groupNameID": 631767,
"published": 1,
"useBasePrice": 0
@@ -28216,7 +28216,7 @@
"groupName_ja": "国家間戦争プロパガンダ放送ストラクチャ",
"groupName_ko": "팩션 전쟁 선전용 방송시설",
"groupName_ru": "Сооружение для передачи пропаганды МВ",
"groupName_zh": "FW Propaganda Broadcast Structure",
"groupName_zh": "势力战争广播宣传建筑",
"groupNameID": 635229,
"published": 1,
"useBasePrice": 1
@@ -28235,7 +28235,7 @@
"groupName_ja": "移動式施設設計図",
"groupName_ko": "이동형 목표물 블루프린트",
"groupName_ru": "Чертёж подвижной цели",
"groupName_zh": "Mobile Objective Blueprint",
"groupName_zh": "移动目标蓝图",
"groupNameID": 636346,
"published": 1,
"useBasePrice": 1
@@ -28254,7 +28254,7 @@
"groupName_ja": "コントロールポイント",
"groupName_ko": "컨트롤 포인트",
"groupName_ru": "Контрольная точка",
"groupName_zh": "Control Point",
"groupName_zh": "控制点",
"groupNameID": 637132,
"published": 0,
"useBasePrice": 0
@@ -28273,7 +28273,7 @@
"groupName_ja": "国家間戦争のリスニングアウトポスト",
"groupName_ko": "팩션 전쟁 감청기지",
"groupName_ru": "Прослушивающий форпост МВ",
"groupName_zh": "FW Listening Outpost",
"groupName_zh": "势力战争监听站",
"groupNameID": 638199,
"published": 1,
"useBasePrice": 1
@@ -28292,7 +28292,7 @@
"groupName_ja": "ミッション一般カプセル",
"groupName_ko": "미션 일반 캡슐",
"groupName_ru": "Mission Generic Capsules",
"groupName_zh": "Mission Generic Capsules",
"groupName_zh": "任务通用太空舱",
"groupNameID": 639247,
"published": 0,
"useBasePrice": 0
@@ -28377,6 +28377,291 @@
"published": 1,
"useBasePrice": 0
},
"4547": {
"anchorable": 0,
"anchored": 1,
"categoryID": 2,
"fittableNonSingleton": 0,
"groupID": 4547,
"groupName_de": "Interstellar Shipcaster Beacon",
"groupName_en-us": "Interstellar Shipcaster Beacon",
"groupName_es": "Interstellar Shipcaster Beacon",
"groupName_fr": "Interstellar Shipcaster Beacon",
"groupName_it": "Interstellar Shipcaster Beacon",
"groupName_ja": "Interstellar Shipcaster Beacon",
"groupName_ko": "Interstellar Shipcaster Beacon",
"groupName_ru": "Interstellar Shipcaster Beacon",
"groupName_zh": "Interstellar Shipcaster Beacon",
"groupNameID": 647116,
"published": 0,
"useBasePrice": 0
},
"4548": {
"anchorable": 0,
"anchored": 1,
"categoryID": 2,
"fittableNonSingleton": 0,
"groupID": 4548,
"groupName_de": "Schiffswerfer-Signalfeuer-Konstrukteur",
"groupName_en-us": "Shipcaster Beacon Constructor",
"groupName_es": "Constructor de balizas de lanzadores interestelares",
"groupName_fr": "Constructeur de balise de lance-vaisseaux",
"groupName_it": "Shipcaster Beacon Constructor",
"groupName_ja": "艦艇キャスタービーコン・コンストラクター",
"groupName_ko": "함선전송기 비컨 제조기",
"groupName_ru": "Конструктор маяка кораблепускателя",
"groupName_zh": "舰船弹射台信标建造器",
"groupNameID": 647117,
"published": 0,
"useBasePrice": 0
},
"4549": {
"anchorable": 0,
"anchored": 1,
"categoryID": 2,
"fittableNonSingleton": 0,
"groupID": 4549,
"groupName_de": "Interstellar Shipcaster",
"groupName_en-us": "Interstellar Shipcaster",
"groupName_es": "Interstellar Shipcaster",
"groupName_fr": "Interstellar Shipcaster",
"groupName_it": "Interstellar Shipcaster",
"groupName_ja": "Interstellar Shipcaster",
"groupName_ko": "Interstellar Shipcaster",
"groupName_ru": "Interstellar Shipcaster",
"groupName_zh": "Interstellar Shipcaster",
"groupNameID": 647118,
"published": 0,
"useBasePrice": 0
},
"4568": {
"anchorable": 0,
"anchored": 0,
"categoryID": 25,
"fittableNonSingleton": 0,
"groupID": 4568,
"groupName_de": "Mutanite",
"groupName_en-us": "Mutanite",
"groupName_es": "Mutanite",
"groupName_fr": "Mutanite",
"groupName_it": "Mutanite",
"groupName_ja": "Mutanite",
"groupName_ko": "Mutanite",
"groupName_ru": "Mutanite",
"groupName_zh": "Mutanite",
"groupNameID": 656418,
"published": 1,
"useBasePrice": 1
},
"4569": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4569,
"groupName_de": "Heimatfront-Operationen  Feindliche Fregatte",
"groupName_en-us": "Homefront Operations Enemy Frigate",
"groupName_es": "Fragata enemiga de operaciones del frente interno",
"groupName_fr": "Frégate ennemie des opérations arrières",
"groupName_it": "Homefront Operations Enemy Frigate",
"groupName_ja": "ホームフロント・オペレーション敵フリゲート",
"groupName_ko": "전략 지원 작전 적 프리깃",
"groupName_ru": "Вражеский фрегат в тыловом районе",
"groupName_zh": "国土行动敌军护卫舰",
"groupNameID": 657368,
"published": 0,
"useBasePrice": 0
},
"4570": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4570,
"groupName_de": "Heimatfront-Operationen  Feindlicher Zerstörer",
"groupName_en-us": "Homefront Operations Enemy Destroyer",
"groupName_es": "Destructor enemigo de operaciones del frente interno",
"groupName_fr": "Destroyer ennemi des opérations arrières",
"groupName_it": "Homefront Operations Enemy Destroyer",
"groupName_ja": "ホームフロント・オペレーション敵駆逐艦",
"groupName_ko": "전략 지원 작전 적 디스트로이어",
"groupName_ru": "Вражеский эсминец в тыловом районе",
"groupName_zh": "国土行动敌军驱逐舰",
"groupNameID": 657496,
"published": 0,
"useBasePrice": 0
},
"4571": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4571,
"groupName_de": "Heimatfront-Operationen  Feindlicher Kreuzer",
"groupName_en-us": "Homefront Operations Enemy Cruiser",
"groupName_es": "Crucero enemigo de operaciones del frente interno",
"groupName_fr": "Croiseur ennemi des opérations arrières",
"groupName_it": "Homefront Operations Enemy Cruiser",
"groupName_ja": "ホームフロント・オペレーション敵巡洋艦",
"groupName_ko": "전략 지원 작전 적 크루저",
"groupName_ru": "Вражеский крейсер в тыловом районе",
"groupName_zh": "国土行动敌军巡洋舰",
"groupNameID": 657497,
"published": 0,
"useBasePrice": 0
},
"4572": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4572,
"groupName_de": "Heimatfront-Operationen  Verbündeter Dreadnought",
"groupName_en-us": "Homefront Operations Allied Dreadnought",
"groupName_es": "Superacorazado aliado de operaciones del frente interno",
"groupName_fr": "Supercuirassé allié des opérations arrières",
"groupName_it": "Homefront Operations Allied Dreadnought",
"groupName_ja": "ホームフロント・オペレーション味方攻城艦",
"groupName_ko": "전략 지원 작전 아군 드레드노트",
"groupName_ru": "Союзный дредноут в тыловом районе",
"groupName_zh": "国土行动盟军无畏舰",
"groupNameID": 657513,
"published": 0,
"useBasePrice": 0
},
"4573": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4573,
"groupName_de": "Heimatfront-Operationen  Feindlicher Schlachtkreuzer",
"groupName_en-us": "Homefront Operations Enemy Battlecruiser",
"groupName_es": "Crucero de combate enemigo de operaciones del frente interno",
"groupName_fr": "Croiseur cuirassé ennemi des opérations arrières",
"groupName_it": "Homefront Operations Enemy Battlecruiser",
"groupName_ja": "ホームフロント・オペレーション敵巡洋戦艦",
"groupName_ko": "전략 지원 작전 적 배틀크루저",
"groupName_ru": "Вражеский линейный крейсер в тыловом районе",
"groupName_zh": "国土行动敌军战列巡洋舰",
"groupNameID": 659180,
"published": 0,
"useBasePrice": 0
},
"4574": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4574,
"groupName_de": "Heimatfront-Operationen  Feindliches Schlachtschiff",
"groupName_en-us": "Homefront Operations Enemy Battleship",
"groupName_es": "Acorazado enemigo de operaciones del frente interno",
"groupName_fr": "Cuirassé ennemi des opérations arrières",
"groupName_it": "Homefront Operations Enemy Battleship",
"groupName_ja": "ホームフロント・オペレーション敵戦艦",
"groupName_ko": "전략 지원 작전 적 배틀쉽",
"groupName_ru": "Вражеский линкор в тыловом районе",
"groupName_zh": "国土行动敌军战列舰",
"groupNameID": 659181,
"published": 0,
"useBasePrice": 0
},
"4575": {
"anchorable": 0,
"anchored": 0,
"categoryID": 17,
"fittableNonSingleton": 0,
"groupID": 4575,
"groupName_de": "Heimatfront-Operationen  Ressource",
"groupName_en-us": "Homefront Operations Commodity",
"groupName_es": "Mercancía de operaciones del frente interno",
"groupName_fr": "Marchandise des opérations arrières",
"groupName_it": "Homefront Operations Commodity",
"groupName_ja": "ホームフロント・オペレーション商品",
"groupName_ko": "전략 지원 작전 물품",
"groupName_ru": "Ценный груз в тыловом районе",
"groupName_zh": "国土行动物品",
"groupNameID": 659287,
"published": 1,
"useBasePrice": 1
},
"4576": {
"anchorable": 0,
"anchored": 1,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4576,
"groupName_de": "Heimatfront-Operationen  Struktur",
"groupName_en-us": "Homefront Operations Structure",
"groupName_es": "Estructura de operaciones del frente interno",
"groupName_fr": "Structure des opérations arrières",
"groupName_it": "Homefront Operations Structure",
"groupName_ja": "ホームフロント・オペレーション・ストラクチャ",
"groupName_ko": "전략 지원 작전 구조물",
"groupName_ru": "Сооружение в тыловом районе",
"groupName_zh": "国土行动建筑",
"groupNameID": 660753,
"published": 0,
"useBasePrice": 0
},
"4577": {
"anchorable": 0,
"anchored": 0,
"categoryID": 11,
"fittableNonSingleton": 0,
"groupID": 4577,
"groupName_de": "Heimatfront-Operationen  Feindlicher Transporter",
"groupName_en-us": "Homefront Operations Enemy Hauler",
"groupName_es": "Nave de mercancías enemiga de operaciones del frente interno",
"groupName_fr": "Cargo ennemi des opérations arrières",
"groupName_it": "Homefront Operations Enemy Hauler",
"groupName_ja": "ホームフロント・オペレーション敵ハウラー",
"groupName_ko": "전략 지원 작전 적 운반선",
"groupName_ru": "Вражеский перевозчик в тыловом районе",
"groupName_zh": "国土行动敌军运载舰",
"groupNameID": 660754,
"published": 0,
"useBasePrice": 0
},
"4579": {
"anchorable": 0,
"anchored": 1,
"categoryID": 2,
"fittableNonSingleton": 0,
"groupID": 4579,
"groupName_de": "Skalierbares nicht interagierbares Objekt",
"groupName_en-us": "Scalable Non-Interactable Object",
"groupName_es": "Objeto no interactivo escalable",
"groupName_fr": "Objet non interactif ajustable",
"groupName_it": "Scalable Non-Interactable Object",
"groupName_ja": "スケーラブル非相互オブジェクト",
"groupName_ko": "확장형 상호작용 불가 오브젝트",
"groupName_ru": "Масштабируемый неинтерактивный объект",
"groupName_zh": "可扩展不可交互物体",
"groupNameID": 660808,
"published": 0,
"useBasePrice": 0
},
"4594": {
"anchorable": 0,
"anchored": 0,
"categoryID": 6,
"fittableNonSingleton": 0,
"groupID": 4594,
"groupName_de": "Lancer Dreadnought",
"groupName_en-us": "Lancer Dreadnought",
"groupName_es": "Lancer Dreadnought",
"groupName_fr": "Lancer Dreadnought",
"groupName_it": "Lancer Dreadnought",
"groupName_ja": "Lancer Dreadnought",
"groupName_ko": "Lancer Dreadnought",
"groupName_ru": "Lancer Dreadnought",
"groupName_zh": "Lancer Dreadnought",
"groupNameID": 662671,
"published": 1,
"useBasePrice": 0
},
"350858": {
"anchorable": 0,
"anchored": 0,
@@ -28504,7 +28789,7 @@
"groupName_it": "Infantry Skill Enhancers",
"groupName_ja": "歩兵スキルエンハンサー",
"groupName_ko": "보병 스킬 향상장치",
"groupName_ru": "Пехотные усилители навыков ",
"groupName_ru": "Пехотные усилители навыков",
"groupName_zh": "Infantry Skill Enhancers",
"groupNameID": 278213,
"published": 0,
@@ -28554,15 +28839,15 @@
"categoryID": 350001,
"fittableNonSingleton": 0,
"groupID": 367487,
"groupName_de": "Leistungen ",
"groupName_en-us": "Services ",
"groupName_es": "Servicios ",
"groupName_fr": "Services ",
"groupName_it": "Servizi ",
"groupName_ja": "サービス ",
"groupName_ko": "서비스 ",
"groupName_ru": "Услуги ",
"groupName_zh": "服务 ",
"groupName_de": "Leistungen",
"groupName_en-us": "Services",
"groupName_es": "Servicios",
"groupName_fr": "Services",
"groupName_it": "Servizi",
"groupName_ja": "サービス",
"groupName_ko": "서비스",
"groupName_ru": "Услуги",
"groupName_zh": "服务",
"groupNameID": 296571,
"published": 0,
"useBasePrice": 0
@@ -28700,4 +28985,4 @@
"published": 0,
"useBasePrice": 1
}
}
}

View File

@@ -9275,7 +9275,7 @@
"iconFile": "res:/UI/Texture/Icons/Inventory/AbyssalRandomFilament_L5Active.png"
},
"24328": {
"iconFile": "res:/ui/texture/classes/achievements/mouseBtnMiddle.png",
"iconFile": "res:/UI/Texture/Shared/mouse_button_middle.png",
"iconType": "png"
},
"24329": {
@@ -11974,5 +11974,35 @@
},
"25475": {
"iconFile": "res:/ui/texture/icons/evermarks.png"
},
"25547": {
"iconFile": "res:/ui/texture/WindowIcons/assets.png"
},
"25621": {
"iconFile": "res:/UI/Texture/Icons/Modules/amarrLance.png"
},
"25622": {
"iconFile": "res:/UI/Texture/Icons/Modules/caldariLance.png"
},
"25624": {
"iconFile": "res:/UI/Texture/Icons/Modules/gallenteLance.png"
},
"25625": {
"iconFile": "res:/UI/Texture/Icons/Modules/minmatarLance.png"
},
"25629": {
"iconFile": "res:/ui/texture/icons/35_64_13.png"
},
"25631": {
"iconFile": "res:/ui/texture/icons/35_64_11.png"
},
"25632": {
"iconFile": "res:/ui/texture/icons/36_64_6.png"
},
"25633": {
"iconFile": "res:/ui/texture/icons/36_64_7.png"
},
"25634": {
"iconFile": "res:/ui/texture/icons/35_64_16.png"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -18584,6 +18584,7 @@
"30653": 1
},
"30013": {
"3402": 1,
"3412": 1
},
"30028": {
@@ -18834,6 +18835,7 @@
"3412": 2
},
"30488": {
"3402": 1,
"3412": 1
},
"30516": {
@@ -19293,6 +19295,7 @@
"11584": 1
},
"32246": {
"3402": 1,
"3412": 1
},
"32248": {
@@ -27907,6 +27910,10 @@
"3333": 5,
"16591": 1
},
"74448": {
"9955": 5,
"25863": 1
},
"74521": {
"3386": 1
},
@@ -28002,5 +28009,499 @@
},
"75290": {
"3386": 1
},
"75326": {
"3402": 1
},
"75327": {
"3402": 1
},
"75328": {
"3402": 1
},
"75677": {
"9955": 5,
"11584": 3
},
"76050": {
"3405": 1
},
"76051": {
"3405": 1
},
"76052": {
"3405": 1
},
"76053": {
"3405": 1
},
"76054": {
"3405": 1
},
"76055": {
"3405": 1
},
"76056": {
"3405": 1
},
"76057": {
"3405": 1
},
"76058": {
"3405": 1
},
"76059": {
"3405": 1
},
"76060": {
"3405": 1
},
"76061": {
"3405": 1
},
"76062": {
"3405": 1
},
"76063": {
"3405": 1
},
"76064": {
"3405": 1
},
"76065": {
"3405": 1
},
"76066": {
"3405": 1
},
"76067": {
"3405": 1
},
"76068": {
"3405": 1
},
"76069": {
"3405": 1
},
"76070": {
"3405": 1
},
"76071": {
"3405": 1
},
"76072": {
"3405": 1
},
"76073": {
"3405": 1
},
"76074": {
"3405": 1
},
"76075": {
"3405": 1
},
"76076": {
"3405": 1
},
"76077": {
"3405": 1
},
"76078": {
"3405": 1
},
"76079": {
"3405": 1
},
"76080": {
"3405": 1
},
"76081": {
"3405": 1
},
"76082": {
"3405": 1
},
"76083": {
"3405": 1
},
"76084": {
"3405": 1
},
"76085": {
"3405": 1
},
"76086": {
"3405": 1
},
"76087": {
"3405": 1
},
"76088": {
"3405": 1
},
"76089": {
"3405": 1
},
"76090": {
"3405": 1
},
"76091": {
"3405": 1
},
"76092": {
"3405": 1
},
"76093": {
"3405": 1
},
"76094": {
"3405": 1
},
"76095": {
"3405": 1
},
"76096": {
"3405": 1
},
"76097": {
"3405": 1
},
"76098": {
"3405": 1
},
"76099": {
"3405": 1
},
"76100": {
"3405": 1
},
"76101": {
"3405": 1
},
"76102": {
"3405": 1
},
"76103": {
"3405": 1
},
"76104": {
"3405": 1
},
"76105": {
"3405": 1
},
"76106": {
"3405": 1
},
"76107": {
"3405": 1
},
"76108": {
"3405": 1
},
"76109": {
"3405": 1
},
"76110": {
"3405": 1
},
"76111": {
"3405": 1
},
"76112": {
"3405": 1
},
"76113": {
"3405": 1
},
"76114": {
"3405": 1
},
"76115": {
"3405": 1
},
"76116": {
"3405": 1
},
"76117": {
"3405": 1
},
"76118": {
"3405": 1
},
"76119": {
"3405": 1
},
"76120": {
"3405": 1
},
"76121": {
"3405": 1
},
"76122": {
"3405": 1
},
"76123": {
"3405": 1
},
"76124": {
"3405": 1
},
"76125": {
"3405": 1
},
"76126": {
"3405": 1
},
"76127": {
"3405": 1
},
"76128": {
"3405": 1
},
"76129": {
"3405": 1
},
"76130": {
"3405": 1
},
"76131": {
"3405": 1
},
"76132": {
"3405": 1
},
"76133": {
"3405": 1
},
"76134": {
"3405": 1
},
"76135": {
"3405": 1
},
"76136": {
"3405": 1
},
"76137": {
"3405": 1
},
"76138": {
"3405": 1
},
"76139": {
"3405": 1
},
"76140": {
"3405": 1
},
"76141": {
"3405": 1
},
"76142": {
"3405": 1
},
"76143": {
"3405": 1
},
"76144": {
"3405": 1
},
"76145": {
"3405": 1
},
"76179": {
"21718": 1
},
"76180": {
"21718": 1
},
"76181": {
"21718": 1
},
"76182": {
"21718": 1
},
"76183": {
"21718": 1
},
"76184": {
"21718": 1
},
"76185": {
"21718": 1
},
"76186": {
"21718": 1
},
"76187": {
"21718": 1
},
"76188": {
"21718": 1
},
"76189": {
"21718": 1
},
"76190": {
"21718": 1
},
"76191": {
"25863": 1
},
"76192": {
"25863": 1
},
"76193": {
"25863": 1
},
"76194": {
"25863": 1
},
"76260": {
"25863": 1
},
"76318": {
"25863": 1
},
"76319": {
"25863": 1
},
"76320": {
"25863": 1
},
"76373": {
"3386": 1
},
"76506": {
"3402": 1
},
"76507": {
"3402": 1
},
"76508": {
"3402": 1
},
"76509": {
"3355": 1
},
"76510": {
"3355": 1
},
"76511": {
"3355": 1
},
"76532": {
"3405": 1
},
"76533": {
"3405": 1
},
"76534": {
"3405": 1
},
"76535": {
"3405": 1
},
"76941": {
"21718": 1
},
"77097": {
"21718": 1
},
"77098": {
"21718": 1
},
"77099": {
"21718": 1
},
"77100": {
"21718": 1
},
"77114": {
"3327": 1
},
"77118": {
"3386": 1
},
"77121": {
"21718": 1
},
"77196": {
"21718": 1
},
"77197": {
"21718": 1
},
"77198": {
"21718": 1
},
"77281": {
"20531": 5,
"20533": 4,
"77738": 1
},
"77283": {
"20525": 5,
"20533": 4,
"77738": 1
},
"77284": {
"20530": 5,
"20533": 4,
"77738": 1
},
"77288": {
"20532": 5,
"20533": 4,
"77738": 1
},
"77398": {
"77738": 1,
"77739": 1
},
"77399": {
"77738": 1,
"77739": 1
},
"77400": {
"77738": 1,
"77739": 1
},
"77401": {
"77738": 1,
"77739": 1
},
"77418": {
"3386": 1
},
"77419": {
"3386": 1
},
"77420": {
"3386": 1
},
"77421": {
"3386": 1
},
"77524": {
"3386": 1
},
"77725": {
"3392": 5,
"3398": 4,
"22242": 4
},
"77738": {
"11433": 4,
"20533": 4,
"21611": 1,
"22043": 4
},
"77739": {
"3421": 4,
"11207": 5,
"11433": 4
}
}

View File

@@ -16462,7 +16462,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -16498,7 +16498,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -16746,7 +16746,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -16782,7 +16782,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -108856,7 +108856,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -108892,7 +108892,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -109897,7 +109897,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -109933,7 +109933,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -160761,6 +160761,10 @@
"attributeID": 1298,
"value": 485.0
},
{
"attributeID": 1299,
"value": 4594.0
},
{
"attributeID": 1471,
"value": 10.0
@@ -198651,7 +198655,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -198687,7 +198691,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -198793,7 +198797,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -198829,7 +198833,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -198935,7 +198939,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -198971,7 +198975,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -199077,7 +199081,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -199113,7 +199117,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -199219,7 +199223,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -199255,7 +199259,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -199361,7 +199365,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -199397,7 +199401,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -199503,7 +199507,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -199539,7 +199543,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -199645,7 +199649,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -199681,7 +199685,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -279172,7 +279176,7 @@
},
{
"attributeID": 1556,
"value": 10000.0
"value": 10000000.0
},
{
"attributeID": 1557,
@@ -313741,6 +313745,10 @@
"attributeID": 2463,
"value": 42245.0
},
{
"attributeID": 2486,
"value": 77114.0
},
{
"attributeID": 3118,
"value": 900.0
@@ -367861,7 +367869,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -367897,7 +367905,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -368012,7 +368020,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -368048,7 +368056,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -465814,7 +465822,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -465850,7 +465858,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -465964,7 +465972,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -466000,7 +466008,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -466114,7 +466122,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -466150,7 +466158,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -466264,7 +466272,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -466300,7 +466308,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -466714,7 +466722,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -466750,7 +466758,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -466864,7 +466872,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -466900,7 +466908,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -493062,7 +493070,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -493098,7 +493106,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -493204,7 +493212,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -493240,7 +493248,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -493346,7 +493354,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -493382,7 +493390,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -493488,7 +493496,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -493524,7 +493532,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -500829,7 +500837,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -500865,7 +500873,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -500979,7 +500987,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -501015,7 +501023,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -501129,7 +501137,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -501165,7 +501173,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -501279,7 +501287,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -501315,7 +501323,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -501429,7 +501437,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -501465,7 +501473,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -501579,7 +501587,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -501615,7 +501623,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -501729,7 +501737,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -501765,7 +501773,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -501879,7 +501887,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -501915,7 +501923,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -502029,7 +502037,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -502065,7 +502073,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -502179,7 +502187,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -502215,7 +502223,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -502329,7 +502337,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -502365,7 +502373,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -502479,7 +502487,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -502515,7 +502523,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -502629,7 +502637,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -502665,7 +502673,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -502779,7 +502787,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -502815,7 +502823,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -502929,7 +502937,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -502965,7 +502973,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -570884,7 +570892,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -570920,7 +570928,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -571334,7 +571342,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -571370,7 +571378,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -571484,7 +571492,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -571520,7 +571528,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -573606,7 +573614,7 @@
},
{
"attributeID": 51,
"value": 5850.0
"value": 4973.0
},
{
"attributeID": 54,
@@ -573642,7 +573650,7 @@
},
{
"attributeID": 160,
"value": 1.8375
"value": 2.1131
},
{
"attributeID": 182,
@@ -574056,7 +574064,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -574092,7 +574100,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -574206,7 +574214,7 @@
},
{
"attributeID": 51,
"value": 7313.0
"value": 6216.0
},
{
"attributeID": 54,
@@ -574242,7 +574250,7 @@
},
{
"attributeID": 160,
"value": 1.22535
"value": 1.4092
},
{
"attributeID": 182,
@@ -918439,6 +918447,10 @@
"attributeID": 1298,
"value": 485.0
},
{
"attributeID": 1299,
"value": 4594.0
},
{
"attributeID": 1471,
"value": 10.0
@@ -940829,6 +940841,10 @@
"attributeID": 2463,
"value": 42245.0
},
{
"attributeID": 2486,
"value": 77114.0
},
{
"attributeID": 3118,
"value": 900.0
@@ -942016,7 +942032,7 @@
},
{
"attributeID": 51,
"value": 9563.0
"value": 8129.0
},
{
"attributeID": 54,
@@ -942052,7 +942068,7 @@
},
{
"attributeID": 160,
"value": 1.010625
"value": 1.1622
},
{
"attributeID": 182,
@@ -961763,10 +961779,6 @@
"attributeID": 1299,
"value": 898.0
},
{
"attributeID": 1302,
"value": 11019.0
},
{
"attributeID": 1333,
"value": 1.0

Some files were not shown because too many files have changed in this diff Show More