Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42c2b3f253 | ||
|
|
71d6830ac0 | ||
|
|
ac2fb01a7c | ||
|
|
fc66c212fc | ||
|
|
9625fafda7 | ||
|
|
6b1aca4306 | ||
|
|
fd5a094304 | ||
|
|
a3142ff62f | ||
|
|
58ebfd3643 | ||
|
|
e272267842 | ||
|
|
b0256542bc | ||
|
|
9b8fd24987 | ||
|
|
9c68889a6d | ||
|
|
a4ed6e8066 | ||
|
|
9fe8163a69 | ||
|
|
9f9b496726 |
@@ -33,6 +33,8 @@ AppDir:
|
||||
- libwebkit2gtk-4.0-37 # Needed for wx's HTML lib
|
||||
# Unknown
|
||||
- libpcre2-32-0 # https://github.com/pyfa-org/Pyfa/issues/2572
|
||||
- libnotify4 # https://github.com/pyfa-org/Pyfa/issues/2598
|
||||
- libwayland-client0 # https://github.com/pyfa-org/Pyfa/issues/2600
|
||||
exclude:
|
||||
- hicolor-icon-theme
|
||||
- humanity-icon-theme
|
||||
|
||||
@@ -74,13 +74,13 @@ class DroneStackSplit(wx.Dialog):
|
||||
bSizer3.Add(self.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL), 0, wx.EXPAND)
|
||||
bSizer1.Add(bSizer3, 0, wx.ALL | wx.EXPAND, 10)
|
||||
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
self.input.Bind(wx.EVT_CHAR, self.onChar)
|
||||
self.input.Bind(wx.EVT_TEXT_ENTER, self.processEnter)
|
||||
self.SetSizer(bSizer1)
|
||||
self.CenterOnParent()
|
||||
self.Fit()
|
||||
self.CenterOnParent()
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
|
||||
def processEnter(self, evt):
|
||||
self.EndModal(wx.ID_OK)
|
||||
|
||||
@@ -68,12 +68,12 @@ class NameDialog(wx.Dialog):
|
||||
bSizer3.Add(self.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL), 0, wx.EXPAND)
|
||||
bSizer1.Add(bSizer3, 0, wx.ALL | wx.EXPAND, 10)
|
||||
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
self.input.Bind(wx.EVT_TEXT_ENTER, self.processEnter)
|
||||
self.SetSizer(bSizer1)
|
||||
self.CenterOnParent()
|
||||
self.Fit()
|
||||
self.CenterOnParent()
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
|
||||
def processEnter(self, evt):
|
||||
self.EndModal(wx.ID_OK)
|
||||
|
||||
@@ -117,13 +117,13 @@ class AmountChanger(wx.Dialog):
|
||||
bSizer3.Add(self.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL), 0, wx.EXPAND)
|
||||
bSizer1.Add(bSizer3, 0, wx.ALL | wx.EXPAND, 10)
|
||||
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
self.input.Bind(wx.EVT_CHAR, self.onChar)
|
||||
self.input.Bind(wx.EVT_TEXT_ENTER, self.processEnter)
|
||||
self.SetSizer(bSizer1)
|
||||
self.CenterOnParent()
|
||||
self.Fit()
|
||||
self.CenterOnParent()
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
|
||||
def processEnter(self, evt):
|
||||
self.EndModal(wx.ID_OK)
|
||||
|
||||
@@ -103,13 +103,13 @@ class RangeChanger(wx.Dialog):
|
||||
bSizer3.Add(self.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL), 0, wx.EXPAND)
|
||||
bSizer1.Add(bSizer3, 0, wx.ALL | wx.EXPAND, 10)
|
||||
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
self.input.Bind(wx.EVT_CHAR, self.onChar)
|
||||
self.input.Bind(wx.EVT_TEXT_ENTER, self.processEnter)
|
||||
self.SetSizer(bSizer1)
|
||||
self.CenterOnParent()
|
||||
self.Fit()
|
||||
self.CenterOnParent()
|
||||
self.input.SetFocus()
|
||||
self.input.SelectAll()
|
||||
|
||||
def processEnter(self, evt):
|
||||
self.EndModal(wx.ID_OK)
|
||||
|
||||
@@ -173,13 +173,13 @@ class exportHtmlThread(threading.Thread):
|
||||
</head>
|
||||
<body>
|
||||
<div id="canvas" data-role="page">
|
||||
<div style="text-align: center;"><strong>Last updated:</strong> %s <small>(<span class="timer"></span>)</small></div>
|
||||
<div data-role="header">
|
||||
<h1>Pyfa fits</h1>
|
||||
<h1>Pyfa fits by Group</h1>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
<div style="text-align: center;"><strong>Last updated:</strong> %s <small>(<span class="timer"></span>)</small></div>
|
||||
|
||||
""" % (time.time(), dnaUrl, localDate)
|
||||
|
||||
HTML += ' <ul data-role="listview" class="ui-listview-outer" data-inset="true" data-filter="true">\n'
|
||||
categoryList = list(sMkt.getShipRoot())
|
||||
categoryList.sort(key=lambda _ship: _ship.name)
|
||||
@@ -216,7 +216,9 @@ class exportHtmlThread(threading.Thread):
|
||||
eftFit = Port.exportEft(getFit(fit[0]), options={
|
||||
PortEftOptions.IMPLANTS: True,
|
||||
PortEftOptions.MUTATIONS: True,
|
||||
PortEftOptions.LOADED_CHARGES: True})
|
||||
PortEftOptions.LOADED_CHARGES: True,
|
||||
PortEftOptions.BOOSTERS: True,
|
||||
PortEftOptions.CARGO: True})
|
||||
|
||||
HTMLfit = (
|
||||
' <li data-role="collapsible" data-iconpos="right" data-shadow="false" '
|
||||
@@ -256,6 +258,68 @@ class exportHtmlThread(threading.Thread):
|
||||
HTML += """
|
||||
</ul>
|
||||
</div>
|
||||
<div data-role="header">
|
||||
<h1>Pyfa fits by Name</h1>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
"""
|
||||
HTML += ' <ul data-role="listview" class="ui-listview-outer" data-inset="true" data-filter="true">\n'
|
||||
categoryList = list(sMkt.getShipRoot())
|
||||
categoryList.sort(key=lambda _ship: _ship.name)
|
||||
|
||||
count = 0
|
||||
|
||||
for group in categoryList:
|
||||
# init market group string to give ships something to attach to
|
||||
HTMLgroup = ''
|
||||
|
||||
ships = list(sMkt.getShipList(group.ID))
|
||||
ships.sort(key=lambda _ship: _ship.name)
|
||||
|
||||
# Keep track of how many ships per group
|
||||
groupFits = 0
|
||||
for ship in ships:
|
||||
fits = sFit.getFitsWithShip(ship.ID)
|
||||
|
||||
if len(fits) > 0:
|
||||
groupFits += len(fits)
|
||||
|
||||
for fit in fits:
|
||||
if self.stopRunning:
|
||||
return
|
||||
try:
|
||||
eftFit = Port.exportEft(getFit(fit[0]), options={
|
||||
PortEftOptions.IMPLANTS: True,
|
||||
PortEftOptions.MUTATIONS: True,
|
||||
PortEftOptions.LOADED_CHARGES: True,
|
||||
PortEftOptions.BOOSTERS: True,
|
||||
PortEftOptions.CARGO: True})
|
||||
|
||||
HTMLfit = (
|
||||
' <li data-role="collapsible" data-iconpos="right" data-shadow="false" '
|
||||
'data-corners="false">\n'
|
||||
' <h2>' + ship.name + " - " + fit[1] + '</h2>\n'
|
||||
' <ul data-role="listview" data-shadow="false" data-inset="true" '
|
||||
'data-corners="false">\n'
|
||||
)
|
||||
|
||||
HTMLfit += ' <li><pre>' + eftFit + '\n </pre></li>\n'
|
||||
|
||||
HTMLfit += ' </ul>\n </li>\n'
|
||||
HTML += HTMLfit
|
||||
except (KeyboardInterrupt, SystemExit):
|
||||
raise
|
||||
except:
|
||||
pyfalog.warning("Failed to export line")
|
||||
continue
|
||||
finally:
|
||||
if self.progress:
|
||||
self.progress.current = count
|
||||
count += 1
|
||||
|
||||
HTML += """
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>"""
|
||||
|
||||
BIN
imgs/icons/24603@1x.png
Normal file
BIN
imgs/icons/24603@1x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 915 B |
BIN
imgs/icons/24603@2x.png
Normal file
BIN
imgs/icons/24603@2x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
BIN
imgs/icons/25994@1x.png
Normal file
BIN
imgs/icons/25994@1x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 918 B |
BIN
imgs/icons/25994@2x.png
Normal file
BIN
imgs/icons/25994@2x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
BIN
imgs/icons/26002@1x.png
Normal file
BIN
imgs/icons/26002@1x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 910 B |
BIN
imgs/icons/26002@2x.png
Normal file
BIN
imgs/icons/26002@2x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
218
locale/lang.pot
218
locale/lang.pot
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-12-05 19:16+0600\n"
|
||||
"POT-Creation-Date: 2024-02-27 16:27+0600\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -272,14 +272,10 @@ msgstr ""
|
||||
msgid "Active shield boost"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:444
|
||||
#: gui/esiFittings.py:430
|
||||
msgid "Add Character"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:239
|
||||
msgid "Add Character Error"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinShipBrowser/fitItem.py:233
|
||||
msgid "Add Command Booster"
|
||||
msgstr ""
|
||||
@@ -366,7 +362,7 @@ msgstr ""
|
||||
msgid "All EVE-Online related materials are property of CCP hf."
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:843 gui/mainFrame.py:1018
|
||||
#: gui/mainFrame.py:843 gui/mainFrame.py:972
|
||||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
@@ -552,6 +548,10 @@ msgstr ""
|
||||
msgid "Auto-detected: "
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:46
|
||||
msgid "Auto-login (starts local server)"
|
||||
msgstr ""
|
||||
|
||||
#: graphs/gui/ctrlPanel.py:64
|
||||
msgid "Axis X:"
|
||||
msgstr ""
|
||||
@@ -564,7 +564,7 @@ msgstr ""
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:878
|
||||
#: gui/mainFrame.py:875
|
||||
msgid "Backing up {} fits to: {}"
|
||||
msgstr ""
|
||||
|
||||
@@ -572,7 +572,7 @@ msgstr ""
|
||||
msgid "Backup all fittings to a XML file"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:877 gui/mainFrame.py:908
|
||||
#: gui/mainFrame.py:879 gui/mainFrame.py:910
|
||||
msgid "Backup fits"
|
||||
msgstr ""
|
||||
|
||||
@@ -596,7 +596,7 @@ msgstr ""
|
||||
msgid "Battleship"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:956
|
||||
#: gui/mainFrame.py:937
|
||||
msgid "Be aware that already processed fits were not saved"
|
||||
msgstr ""
|
||||
|
||||
@@ -810,7 +810,7 @@ msgstr ""
|
||||
msgid "Changes require restart of pyfa to take effect."
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:435 gui/characterEditor.py:91
|
||||
#: gui/esiFittings.py:420 gui/characterEditor.py:91
|
||||
#: gui/builtinStatsViews/priceViewFull.py:57
|
||||
msgid "Character"
|
||||
msgstr ""
|
||||
@@ -819,7 +819,7 @@ msgstr ""
|
||||
msgid "Character Editor"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:436
|
||||
#: gui/esiFittings.py:421
|
||||
msgid "Character ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -827,7 +827,7 @@ msgstr ""
|
||||
msgid "Character name already in use, please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:774
|
||||
#: gui/characterEditor.py:775
|
||||
msgid "Character:"
|
||||
msgstr ""
|
||||
|
||||
@@ -839,7 +839,7 @@ msgstr ""
|
||||
msgid "Charge"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinViews/fittingView.py:664
|
||||
#: gui/builtinViews/fittingView.py:665
|
||||
msgid "Citadel"
|
||||
msgstr ""
|
||||
|
||||
@@ -931,7 +931,7 @@ msgstr ""
|
||||
msgid "Confirm Delete"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:130 gui/esiFittings.py:183 gui/esiFittings.py:405
|
||||
#: gui/esiFittings.py:130 gui/esiFittings.py:183 gui/esiFittings.py:390
|
||||
msgid "Connection error, please check your internet connection"
|
||||
msgstr ""
|
||||
|
||||
@@ -1037,10 +1037,6 @@ msgstr ""
|
||||
msgid "Copy Selected {}"
|
||||
msgstr ""
|
||||
|
||||
#: gui/ssoLogin.py:20
|
||||
msgid "Copy and paste the block of text provided by pyfa.io"
|
||||
msgstr ""
|
||||
|
||||
#: gui/patternEditor.py:290 gui/setEditor.py:222 gui/targetProfileEditor.py:366
|
||||
msgid "Could not import from clipboard"
|
||||
msgstr ""
|
||||
@@ -1147,6 +1143,10 @@ msgstr ""
|
||||
msgid "Default Market Prices:"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:61
|
||||
msgid "Default SSO Server:"
|
||||
msgstr ""
|
||||
|
||||
#: gui/propertyEditor.py:271
|
||||
#, python-format
|
||||
msgid "Default Value: %0.3f"
|
||||
@@ -1262,7 +1262,7 @@ msgstr ""
|
||||
msgid "Don't remind me again for this release"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:792
|
||||
#: gui/characterEditor.py:793
|
||||
msgid "Don't see your EVE character in the list?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1397,11 +1397,11 @@ msgstr ""
|
||||
msgid "EMP"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:407 gui/esiFittings.py:411 gui/esiFittings.py:419
|
||||
#: gui/esiFittings.py:392 gui/esiFittings.py:396 gui/esiFittings.py:404
|
||||
msgid "ERROR"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:1017
|
||||
#: gui/mainFrame.py:971
|
||||
msgid "EVE API XML character files"
|
||||
msgstr ""
|
||||
|
||||
@@ -1413,7 +1413,7 @@ msgstr ""
|
||||
msgid "EVE IGB HTML fitting file"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:16
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:18
|
||||
#: gui/characterEditor.py:163
|
||||
msgid "EVE SSO"
|
||||
msgstr ""
|
||||
@@ -1422,7 +1422,7 @@ msgstr ""
|
||||
msgid "EVE Servers (API && CREST import)"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:864
|
||||
#: gui/mainFrame.py:865
|
||||
msgid "EVE XML fitting file"
|
||||
msgstr ""
|
||||
|
||||
@@ -1572,7 +1572,7 @@ msgstr ""
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:37
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:39
|
||||
msgid "Enforce Token Expiration"
|
||||
msgstr ""
|
||||
|
||||
@@ -1592,13 +1592,13 @@ msgstr ""
|
||||
msgid "Enyo"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:901 gui/patternEditor.py:58 gui/characterEditor.py:84
|
||||
#: gui/characterEditor.py:464 gui/characterEditor.py:945 gui/setEditor.py:55
|
||||
#: gui/mainFrame.py:900 gui/patternEditor.py:58 gui/characterEditor.py:84
|
||||
#: gui/characterEditor.py:465 gui/characterEditor.py:951 gui/setEditor.py:55
|
||||
#: gui/targetProfileEditor.py:78
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:944
|
||||
#: gui/characterEditor.py:950
|
||||
msgid "Error fetching skill information"
|
||||
msgstr ""
|
||||
|
||||
@@ -1658,15 +1658,15 @@ msgstr ""
|
||||
msgid "Export All Fittings to &HTML"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:313
|
||||
#: gui/esiFittings.py:298
|
||||
msgid "Export Boosters"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:951
|
||||
#: gui/mainFrame.py:883
|
||||
msgid "Export Error"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:298
|
||||
#: gui/esiFittings.py:283
|
||||
msgid "Export Fit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1676,7 +1676,7 @@ msgid ""
|
||||
"links without any visual styling"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:308
|
||||
#: gui/esiFittings.py:293
|
||||
msgid "Export Implants"
|
||||
msgstr ""
|
||||
|
||||
@@ -1684,7 +1684,7 @@ msgstr ""
|
||||
msgid "Export Item Stats"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:303
|
||||
#: gui/esiFittings.py:288
|
||||
msgid "Export Loaded Charges"
|
||||
msgstr ""
|
||||
|
||||
@@ -1712,7 +1712,7 @@ msgstr ""
|
||||
msgid "Export charges loaded into modules"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:285
|
||||
#: gui/esiFittings.py:270
|
||||
msgid "Export fit to EVE"
|
||||
msgstr ""
|
||||
|
||||
@@ -1744,14 +1744,14 @@ msgstr ""
|
||||
msgid "Export profiles to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:374
|
||||
msgid "Export skills from clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainMenuBar.py:119
|
||||
msgid "Export skills needed for this fitting"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:374
|
||||
msgid "Export skills to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:832
|
||||
msgid "Exporting skills needed..."
|
||||
msgstr ""
|
||||
@@ -1773,7 +1773,7 @@ msgid ""
|
||||
"Factor in reload time when calculating capacitor usage, damage, and tank."
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:388
|
||||
#: gui/esiFittings.py:373
|
||||
msgid "Failed to generate export data"
|
||||
msgstr ""
|
||||
|
||||
@@ -1974,7 +1974,7 @@ msgstr ""
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:909
|
||||
#: gui/mainFrame.py:906
|
||||
msgid "Generating HTML file at: {}"
|
||||
msgstr ""
|
||||
|
||||
@@ -1983,7 +1983,7 @@ msgstr ""
|
||||
msgid "Generic"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:781
|
||||
#: gui/characterEditor.py:782
|
||||
msgid "Get Skills"
|
||||
msgstr ""
|
||||
|
||||
@@ -2108,6 +2108,10 @@ msgstr ""
|
||||
msgid "Ideal Target"
|
||||
msgstr ""
|
||||
|
||||
#: gui/ssoLogin.py:28
|
||||
msgid "If auto-login fails, copy and paste the token provided by pyfa.io"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinContextMenus/graphDroneControlRange.py:23
|
||||
msgid "Ignore Drone Control Range"
|
||||
msgstr ""
|
||||
@@ -2152,7 +2156,7 @@ msgstr ""
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:951
|
||||
#: gui/mainFrame.py:856
|
||||
msgid "Import Error"
|
||||
msgstr ""
|
||||
|
||||
@@ -2200,11 +2204,11 @@ msgstr ""
|
||||
msgid "Import to pyfa"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:1024
|
||||
#: gui/mainFrame.py:978
|
||||
msgid "Importing Character..."
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:849
|
||||
#: gui/mainFrame.py:852
|
||||
msgid "Importing fits"
|
||||
msgstr ""
|
||||
|
||||
@@ -2264,11 +2268,11 @@ msgstr ""
|
||||
msgid "Interested in helping with translations?"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:897
|
||||
#: gui/mainFrame.py:896
|
||||
msgid "Invalid Path"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:257
|
||||
#: gui/esiFittings.py:242
|
||||
msgid "Invalid Token"
|
||||
msgstr ""
|
||||
|
||||
@@ -2367,8 +2371,8 @@ msgstr ""
|
||||
msgid "Level %s"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:536 gui/characterEditor.py:594
|
||||
#: gui/characterEditor.py:619 gui/characterEditor.py:652
|
||||
#: gui/characterEditor.py:537 gui/characterEditor.py:595
|
||||
#: gui/characterEditor.py:620 gui/characterEditor.py:653
|
||||
#: gui/builtinItemStatsViews/itemDependants.py:46
|
||||
msgid "Level {}"
|
||||
msgstr ""
|
||||
@@ -2389,10 +2393,6 @@ msgstr ""
|
||||
msgid "Loading previous fits..."
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:46
|
||||
msgid "Local Server"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinContextMenus/envEffectAdd.py:205
|
||||
msgid "Localized"
|
||||
msgstr ""
|
||||
@@ -2413,7 +2413,7 @@ msgstr ""
|
||||
msgid "Lock time"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:797
|
||||
#: gui/characterEditor.py:798
|
||||
msgid "Log In with EVE SSO"
|
||||
msgstr ""
|
||||
|
||||
@@ -2425,10 +2425,6 @@ msgstr ""
|
||||
msgid "Logging"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:45
|
||||
msgid "Login Authentication Method"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinContextMenus/moduleAmmoChange.py:95
|
||||
msgid "Long Range"
|
||||
msgstr ""
|
||||
@@ -2461,10 +2457,6 @@ msgstr ""
|
||||
msgid "Mantis"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:46
|
||||
msgid "Manual"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaNetworkPreferences.py:87
|
||||
msgid "Manual proxy settings"
|
||||
msgstr ""
|
||||
@@ -2807,7 +2799,7 @@ msgstr ""
|
||||
msgid "Navitas"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:394
|
||||
#: gui/esiFittings.py:379
|
||||
msgid "Need at least one ESI character to export"
|
||||
msgstr ""
|
||||
|
||||
@@ -2875,7 +2867,7 @@ msgstr ""
|
||||
#: gui/builtinPreferenceViews/pyfaStatViewPreferences.py:99
|
||||
#: gui/builtinPreferenceViews/pyfaStatViewPreferences.py:104
|
||||
#: gui/builtinPreferenceViews/pyfaGeneralPreferences.py:161
|
||||
#: gui/characterEditor.py:858
|
||||
#: gui/characterEditor.py:864
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
@@ -2923,7 +2915,7 @@ msgstr ""
|
||||
msgid "Open Fit in New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:1015
|
||||
#: gui/mainFrame.py:969
|
||||
msgid "Open One Or More Character Files"
|
||||
msgstr ""
|
||||
|
||||
@@ -3005,20 +2997,28 @@ msgstr ""
|
||||
msgid "Please Wait..."
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:32
|
||||
#: gui/ssoLogin.py:35
|
||||
msgid "Please copy and paste the token provided by pyfa.io"
|
||||
msgstr ""
|
||||
|
||||
#: gui/ssoLogin.py:31
|
||||
msgid "Please copy and paste the url when your authorization is completed"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:34
|
||||
msgid ""
|
||||
"Please see the pyfa wiki on GitHub for information regarding these options."
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:373
|
||||
#: gui/esiFittings.py:358
|
||||
msgid "Please select an active fitting in the main window"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:761
|
||||
#: gui/characterEditor.py:762
|
||||
msgid "Please select another character or make a new one."
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:900
|
||||
#: gui/mainFrame.py:899
|
||||
msgid "Please verify path location pyfa's preferences."
|
||||
msgstr ""
|
||||
|
||||
@@ -3257,7 +3257,7 @@ msgstr ""
|
||||
msgid "Remote Reps"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:447
|
||||
#: gui/esiFittings.py:433
|
||||
msgid "Remove Character"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3348,15 @@ msgstr ""
|
||||
msgid "Run Time"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:428
|
||||
#: gui/esiFittings.py:413
|
||||
msgid "SSO Character Management"
|
||||
msgstr ""
|
||||
|
||||
#: gui/ssoLogin.py:15 gui/ssoLogin.py:49
|
||||
#: service/esi.py:126
|
||||
msgid "SSO Error"
|
||||
msgstr ""
|
||||
|
||||
#: gui/ssoLogin.py:19
|
||||
msgid "SSO Login"
|
||||
msgstr ""
|
||||
|
||||
@@ -3384,7 +3388,7 @@ msgstr ""
|
||||
msgid "Sanshas Nation"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:863
|
||||
#: gui/mainFrame.py:864
|
||||
msgid "Save Backup As..."
|
||||
msgstr ""
|
||||
|
||||
@@ -3434,7 +3438,7 @@ msgstr ""
|
||||
msgid "Sec Status: {0:.2f}"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:910
|
||||
#: gui/characterEditor.py:916
|
||||
msgid "Security Status is used in some CONCORD hull calculations"
|
||||
msgstr ""
|
||||
|
||||
@@ -3452,7 +3456,7 @@ msgstr ""
|
||||
msgid "Select a format"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:376
|
||||
#: gui/esiFittings.py:361
|
||||
msgid "Sending request and awaiting response"
|
||||
msgstr ""
|
||||
|
||||
@@ -3473,11 +3477,15 @@ msgstr ""
|
||||
msgid "Serpentis"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:422
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinViewColumns/baseName.py:64
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:903
|
||||
#: gui/characterEditor.py:909
|
||||
msgid "Set Security Status"
|
||||
msgstr ""
|
||||
|
||||
@@ -3548,7 +3556,7 @@ msgstr ""
|
||||
msgid "Shield: "
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinViews/fittingView.py:664
|
||||
#: gui/builtinViews/fittingView.py:665
|
||||
#: gui/builtinStatsViews/priceViewFull.py:57
|
||||
#: gui/builtinStatsViews/priceViewMinimal.py:57
|
||||
msgid "Ship"
|
||||
@@ -3621,7 +3629,7 @@ msgid ""
|
||||
"Silk Icons Set by famfamfam.com - Creative Commons Attribution 2.5 License"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:343 gui/characterEditor.py:611
|
||||
#: gui/characterEditor.py:343 gui/characterEditor.py:612
|
||||
msgid "Skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -3740,11 +3748,11 @@ msgstr ""
|
||||
msgid "Subsystem"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:897
|
||||
#: gui/characterEditor.py:903
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:897
|
||||
#: gui/characterEditor.py:903
|
||||
msgid "Successfully fetched skills"
|
||||
msgstr ""
|
||||
|
||||
@@ -3790,7 +3798,7 @@ msgstr ""
|
||||
msgid "Tachyon"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinViewColumns/baseName.py:105 gui/builtinViews/fittingView.py:660
|
||||
#: gui/builtinViewColumns/baseName.py:105 gui/builtinViews/fittingView.py:661
|
||||
#: gui/builtinContextMenus/shipModeChange.py:37
|
||||
msgid "Tactical Mode"
|
||||
msgstr ""
|
||||
@@ -3887,15 +3895,15 @@ msgid ""
|
||||
"when typing fast in the market search box."
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:954
|
||||
#: gui/mainFrame.py:935
|
||||
msgid "The following error was generated"
|
||||
msgstr ""
|
||||
|
||||
#: gui/mainFrame.py:898
|
||||
#: gui/mainFrame.py:897
|
||||
msgid "The following path is invalid or does not exist:"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:271
|
||||
#: gui/esiFittings.py:256
|
||||
msgid "The server took too long to response. Please try again in a moment."
|
||||
msgstr ""
|
||||
|
||||
@@ -3906,6 +3914,10 @@ msgid ""
|
||||
"first, and if no data is available, global price will be used."
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:67
|
||||
msgid "The source you choose will be used on connection."
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaUpdatePreferences.py:53
|
||||
msgid ""
|
||||
"There is a release available which you have chosen to suppress. You can "
|
||||
@@ -3913,24 +3925,16 @@ msgid ""
|
||||
"new release from GitHub."
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:464
|
||||
#: gui/characterEditor.py:465
|
||||
msgid "There was an error importing skills, please see log file"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:255
|
||||
#: gui/esiFittings.py:240
|
||||
msgid ""
|
||||
"There was an error validating characters' SSO token. Please try logging into "
|
||||
"the character again to reset the token."
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:235
|
||||
msgid ""
|
||||
"There was an issue starting up the localized server, try setting Login "
|
||||
"Authentication Method to Manual by going to Preferences -> EVE SS0 -> Login "
|
||||
"Authentication Method. If this doesn't fix the problem please file an issue "
|
||||
"on Github."
|
||||
msgstr ""
|
||||
|
||||
#: eos/saveddata/damagePattern.py:40
|
||||
#: gui/builtinContextMenus/moduleAmmoChange.py:26
|
||||
msgid "Thermal"
|
||||
@@ -3941,6 +3945,12 @@ msgstr ""
|
||||
msgid "Thermal resistance"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:49
|
||||
msgid ""
|
||||
"This allows the EVE SSO to callback to your local pyfa instance and complete "
|
||||
"the authentication process without manual intervention."
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaDatabasePreferences.py:107
|
||||
msgid ""
|
||||
"This is a destructive action that will delete all cached prices out of the "
|
||||
@@ -3960,24 +3970,12 @@ msgid ""
|
||||
"Are you sure you want to do this?"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:40
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:42
|
||||
msgid ""
|
||||
"This option is a workaround in case you cannot log into EVE SSO due to "
|
||||
"'Signature has expired' error"
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:49
|
||||
msgid ""
|
||||
"This option prompts users to copy and paste information to allow for "
|
||||
"character login. Use this if having issues with the local server."
|
||||
msgstr ""
|
||||
|
||||
#: gui/builtinPreferenceViews/pyfaEsiPreferences.py:47
|
||||
msgid ""
|
||||
"This option starts a local webserver that EVE SSO Server will call back to "
|
||||
"with information about the character login."
|
||||
msgstr ""
|
||||
|
||||
#: eos/saveddata/damagePattern.py:77
|
||||
msgid "Thorium"
|
||||
msgstr ""
|
||||
@@ -3995,7 +3993,7 @@ msgstr ""
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: gui/esiFittings.py:272
|
||||
#: gui/esiFittings.py:257
|
||||
msgid "Timeout"
|
||||
msgstr ""
|
||||
|
||||
@@ -4110,7 +4108,7 @@ msgstr ""
|
||||
msgid "Uniform (90%)"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:617
|
||||
#: gui/characterEditor.py:618
|
||||
msgid "Unlearn"
|
||||
msgstr ""
|
||||
|
||||
@@ -4185,7 +4183,7 @@ msgstr ""
|
||||
msgid "W-Space"
|
||||
msgstr ""
|
||||
|
||||
#: gui/ssoLogin.py:62
|
||||
#: gui/ssoLogin.py:25
|
||||
msgid "Waiting for character login through EVE Single Sign-On."
|
||||
msgstr ""
|
||||
|
||||
@@ -4265,7 +4263,7 @@ msgstr ""
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: gui/characterEditor.py:760
|
||||
#: gui/characterEditor.py:761
|
||||
msgid "You cannot link All 0 or All 5 characters to an EVE character."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12118,5 +12118,22 @@
|
||||
},
|
||||
"25870": {
|
||||
"iconFile": "res:/UI/Texture/Icons/StatusEffects/towed_status_icon.png"
|
||||
},
|
||||
"25994": {
|
||||
"iconFile": "res:/ui/texture/icons/10_64_17.png"
|
||||
},
|
||||
"25998": {
|
||||
"iconFile": "res:/ui/texture/icons/43_64_12_n.png"
|
||||
},
|
||||
"26002": {
|
||||
"iconFile": "res:/ui/texture/icons/10_64_18.png"
|
||||
},
|
||||
"26025": {
|
||||
"iconFile": "res:/UI/Asset/mannequin/bottomouter/82040_Female_bottomOuter_PantsALF_01_Types_PantsALF_01_jeansblue.png",
|
||||
"iconType": "png"
|
||||
},
|
||||
"26026": {
|
||||
"iconFile": "res:/UI/Asset/mannequin/bottomouter/82041_Male_bottomOuter_PantsMilM01_Types_PantsMilM01_jeansblue.png",
|
||||
"iconType": "png"
|
||||
}
|
||||
}
|
||||
@@ -28736,5 +28736,11 @@
|
||||
},
|
||||
"78741": {
|
||||
"3318": 1
|
||||
},
|
||||
"81948": {
|
||||
"3402": 3
|
||||
},
|
||||
"81949": {
|
||||
"11446": 4
|
||||
}
|
||||
}
|
||||
@@ -954983,7 +954983,7 @@
|
||||
},
|
||||
{
|
||||
"attributeID": 1154,
|
||||
"value": 3.0
|
||||
"value": 2.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1178,
|
||||
|
||||
@@ -536530,5 +536530,367 @@
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"81083": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 151,
|
||||
"value": -5.0
|
||||
},
|
||||
{
|
||||
"attributeID": 315,
|
||||
"value": 5.0
|
||||
},
|
||||
{
|
||||
"attributeID": 330,
|
||||
"value": 3600000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 633,
|
||||
"value": 3.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1087,
|
||||
"value": 1.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": [
|
||||
{
|
||||
"effectID": 394,
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 395,
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"81084": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 314,
|
||||
"value": -5.0
|
||||
},
|
||||
{
|
||||
"attributeID": 330,
|
||||
"value": 3600000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 566,
|
||||
"value": 5.0
|
||||
},
|
||||
{
|
||||
"attributeID": 633,
|
||||
"value": 3.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1087,
|
||||
"value": 1.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": [
|
||||
{
|
||||
"effectID": 485,
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 699,
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"81925": {
|
||||
"dogmaAttributes": [],
|
||||
"dogmaEffects": []
|
||||
},
|
||||
"81946": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 1955,
|
||||
"value": 3.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": []
|
||||
},
|
||||
"81947": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 1955,
|
||||
"value": 120.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": []
|
||||
},
|
||||
"81948": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 6,
|
||||
"value": 5.0
|
||||
},
|
||||
{
|
||||
"attributeID": 9,
|
||||
"value": 40.0
|
||||
},
|
||||
{
|
||||
"attributeID": 30,
|
||||
"value": 7.0
|
||||
},
|
||||
{
|
||||
"attributeID": 47,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 50,
|
||||
"value": 20.0
|
||||
},
|
||||
{
|
||||
"attributeID": 54,
|
||||
"value": 28000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 61,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 63,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 73,
|
||||
"value": 5000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 124,
|
||||
"value": 8627698.0
|
||||
},
|
||||
{
|
||||
"attributeID": 182,
|
||||
"value": 3402.0
|
||||
},
|
||||
{
|
||||
"attributeID": 277,
|
||||
"value": 3.0
|
||||
},
|
||||
{
|
||||
"attributeID": 422,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 633,
|
||||
"value": 8.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1045,
|
||||
"value": 700.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1768,
|
||||
"value": 11346.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": [
|
||||
{
|
||||
"effectID": 12,
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 16,
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 2255,
|
||||
"isDefault": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"81949": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 6,
|
||||
"value": 50.0
|
||||
},
|
||||
{
|
||||
"attributeID": 9,
|
||||
"value": 40.0
|
||||
},
|
||||
{
|
||||
"attributeID": 30,
|
||||
"value": 50000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 47,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 50,
|
||||
"value": 100.0
|
||||
},
|
||||
{
|
||||
"attributeID": 54,
|
||||
"value": 280000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 61,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 63,
|
||||
"value": 0.0
|
||||
},
|
||||
{
|
||||
"attributeID": 73,
|
||||
"value": 5000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 124,
|
||||
"value": 8627698.0
|
||||
},
|
||||
{
|
||||
"attributeID": 182,
|
||||
"value": 11446.0
|
||||
},
|
||||
{
|
||||
"attributeID": 277,
|
||||
"value": 4.0
|
||||
},
|
||||
{
|
||||
"attributeID": 422,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 633,
|
||||
"value": 8.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1045,
|
||||
"value": 4200.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1298,
|
||||
"value": 883.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1768,
|
||||
"value": 11346.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": [
|
||||
{
|
||||
"effectID": 12,
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 16,
|
||||
"isDefault": 0
|
||||
},
|
||||
{
|
||||
"effectID": 2255,
|
||||
"isDefault": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"81950": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 9,
|
||||
"value": 100000000.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": []
|
||||
},
|
||||
"81951": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 9,
|
||||
"value": 90000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 54,
|
||||
"value": 200000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 73,
|
||||
"value": 30000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 76,
|
||||
"value": 200000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 192,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 208,
|
||||
"value": 50.0
|
||||
},
|
||||
{
|
||||
"attributeID": 209,
|
||||
"value": 50.0
|
||||
},
|
||||
{
|
||||
"attributeID": 210,
|
||||
"value": 50.0
|
||||
},
|
||||
{
|
||||
"attributeID": 211,
|
||||
"value": 50.0
|
||||
},
|
||||
{
|
||||
"attributeID": 263,
|
||||
"value": 30000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 265,
|
||||
"value": 30000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 422,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 479,
|
||||
"value": 3200000.0
|
||||
},
|
||||
{
|
||||
"attributeID": 484,
|
||||
"value": 0.75
|
||||
},
|
||||
{
|
||||
"attributeID": 524,
|
||||
"value": 0.75
|
||||
},
|
||||
{
|
||||
"attributeID": 525,
|
||||
"value": 1.0
|
||||
},
|
||||
{
|
||||
"attributeID": 552,
|
||||
"value": 500.0
|
||||
},
|
||||
{
|
||||
"attributeID": 633,
|
||||
"value": 8.0
|
||||
},
|
||||
{
|
||||
"attributeID": 1045,
|
||||
"value": 2000.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": [
|
||||
{
|
||||
"effectID": 2255,
|
||||
"isDefault": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"81952": {
|
||||
"dogmaAttributes": [
|
||||
{
|
||||
"attributeID": 1955,
|
||||
"value": 20.0
|
||||
}
|
||||
],
|
||||
"dogmaEffects": []
|
||||
}
|
||||
}
|
||||
@@ -34694,10 +34694,10 @@
|
||||
"basePrice": 150000.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "5% Bonus auf EM-Resistenzen von Panzerungsbeschichtungen und spannungsunterstützten Panzerungen je Skillstufe.",
|
||||
"description_en-us": "5% bonus to EM resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_en-us": "5% bonus to EM resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_es": "5 % de bonificación a la resistencia electromagnética por nivel a los recubrimientos de blindaje y revestimientos energizados.",
|
||||
"description_fr": "Augmente de 5 % par niveau la résistance EM des membranes blindées et des revêtements énergétiques.",
|
||||
"description_it": "5% bonus to EM resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_it": "5% bonus to EM resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_ja": "レベル上昇ごとにアーマーコーティングおよび電磁加工プレートのEMレジスタンスが5%上昇",
|
||||
"description_ko": "매 레벨마다 장갑 코팅 및 에너지 플레이트에 대한 EM 저항력 5% 증가",
|
||||
"description_ru": "За каждую степень освоения навыка: на 5% повышается влияние защитных покрытий и усиленных защитных покрытий на сопротивляемость брони ЭМ-воздействию.",
|
||||
@@ -34728,10 +34728,10 @@
|
||||
"basePrice": 150000.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "5% Bonus auf Explosionsresistenzen von Panzerungsbeschichtungen und spannungsunterstützten Panzerungen je Skillstufe.",
|
||||
"description_en-us": "5% bonus to explosive resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_en-us": "5% bonus to explosive resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_es": "5 % de bonificación a la resistencia explosiva por nivel de los recubrimientos de blindaje y los revestimientos energizados.",
|
||||
"description_fr": "Augmente de 5 % par niveau la résistance explosive des membranes blindées et des revêtements énergétiques.",
|
||||
"description_it": "5% bonus to explosive resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_it": "5% bonus to explosive resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_ja": "レベル上昇ごとにアーマーコーティングおよび電磁加工プレートのエクスプローシブレジスタンスが5%上昇",
|
||||
"description_ko": "매 레벨마다 장갑 코팅 및 에너지 플레이트에 대한 폭발 저항력 5% 증가",
|
||||
"description_ru": "За каждую степень освоения навыка: на 5% повышается влияние защитных покрытий и усиленных защитных покрытий на сопротивляемость брони фугасному воздействию.",
|
||||
@@ -34762,10 +34762,10 @@
|
||||
"basePrice": 150000.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "5% Bonus auf Kinetikresistenzen von Panzerungsbeschichtungen und spannungsunterstützten Panzerungen je Skillstufe.",
|
||||
"description_en-us": "5% bonus to kinetic resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_en-us": "5% bonus to kinetic resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_es": "5% de bonificación a la resistencia cinética por nivel a los recubrimientos de blindaje y los revestimientos energizados.",
|
||||
"description_fr": "Augmente de 5 % par niveau la résistance cinétique des membranes blindées et des revêtements énergétiques.",
|
||||
"description_it": "5% bonus to kinetic resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_it": "5% bonus to kinetic resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_ja": "レベル上昇ごとにアーマーコーティングおよび電磁加工プレートのキネティックレジスタンスが5%上昇",
|
||||
"description_ko": "매 레벨마다 장갑 코팅 및 에너지 플레이트에 대한 키네틱 저항력 5% 증가",
|
||||
"description_ru": "За каждую степень освоения навыка: на 5% повышается влияние защитных покрытий и усиленных защитных покрытий на сопротивляемость брони кинетическому воздействию.",
|
||||
@@ -34796,10 +34796,10 @@
|
||||
"basePrice": 150000.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "5% Bonus auf Thermalresistenzen von Panzerungsbeschichtungen und spannungsunterstützten Panzerungen je Skillstufe.",
|
||||
"description_en-us": "5% bonus to thermal resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_en-us": "5% bonus to thermal resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_es": "5 % de bonificación a la resistencia térmica por nivel a los recubrimientos de blindaje y los revestimientos energizados.",
|
||||
"description_fr": "Augmente de 5 % par niveau la résistance thermique des membranes blindées et des revêtements énergétiques.",
|
||||
"description_it": "5% bonus to thermal resistance per level for Armor Coatings and Energized Platings.",
|
||||
"description_it": "5% bonus to thermal resistance per level for Armor Coatings and Energized Membranes.",
|
||||
"description_ja": "レベル上昇ごとにアーマーコーティングおよび電磁加工プレートのサーマルレジスタンスが5%上昇",
|
||||
"description_ko": "매 레벨마다 장갑 코팅 및 에너지 플레이트에 대한 열 저항력 5% 증가",
|
||||
"description_ru": "За каждую степень освоения навыка: на 5% повышается влияние защитных покрытий и усиленных защитных покрытий на сопротивляемость брони термическому воздействию.",
|
||||
@@ -311624,32 +311624,33 @@
|
||||
"34081": {
|
||||
"basePrice": 0.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_en-us": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_es": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_fr": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_it": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_ja": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_ko": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_ru": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_zh": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"description_de": "Verstärkte Stiefel für modischen Schutz, bevorzugt von jenen getragen, die sich an den Rand der Zivilisation wagen.",
|
||||
"description_en-us": "Reinforced boots for fashionable protection, preferred by those who venture out into the edge of civilization.",
|
||||
"description_es": "Botas reforzadas para una protección a la moda. El calzado de aquellos que se aventuran hasta los confines de la civilización.",
|
||||
"description_fr": "Bottes renforcées pour une protection élégante, appréciées par ceux qui s'aventurent aux confins de la civilisation.",
|
||||
"description_it": "Reinforced boots for fashionable protection, preferred by those who venture out into the edge of civilization.",
|
||||
"description_ja": "ファッション性を備えた防具として使われる強化ブーツ。文明圏の境界に乗り出す者たちが好んで着用している。",
|
||||
"description_ko": "미지를 탐험하는 파일럿들이 신는 신발로 신발로 패션과 기능을 모두 잡았습니다.",
|
||||
"description_ru": "Модные ботинки с усиленной защитой для путешествий в самые отдалённые уголки галактики.",
|
||||
"description_zh": "经过加强后的长靴,可提供更具时尚感的防护,是勇于探索文明边缘之人的首选。",
|
||||
"descriptionID": 296102,
|
||||
"groupID": 1091,
|
||||
"iconID": 21296,
|
||||
"mass": 0.5,
|
||||
"metaGroupID": 17,
|
||||
"portionSize": 1,
|
||||
"published": 0,
|
||||
"published": 1,
|
||||
"radius": 1.0,
|
||||
"typeID": 34081,
|
||||
"typeName_de": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_en-us": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_es": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_fr": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_it": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_ja": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_ko": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_ru": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_zh": "Feet/SpaceBoots01F/Types/spaceboots01f_blue.type",
|
||||
"typeName_de": "Women's Chique Outlander Boots",
|
||||
"typeName_en-us": "Women's Chique Outlander Boots",
|
||||
"typeName_es": "Botas Forastero a la Moda para mujer",
|
||||
"typeName_fr": "Bottes Pionniers chics pour femmes",
|
||||
"typeName_it": "Women's Chique Outlander Boots",
|
||||
"typeName_ja": "レディース・シック・アウトランダーブーツ",
|
||||
"typeName_ko": "여성용 시크 아웃랜더 부츠",
|
||||
"typeName_ru": "Women's Chique Outlander Boots",
|
||||
"typeName_zh": "女式时尚异域人长靴",
|
||||
"typeNameID": 296101,
|
||||
"volume": 0.1
|
||||
},
|
||||
|
||||
@@ -114739,10 +114739,10 @@
|
||||
"basePrice": 0.0,
|
||||
"capacity": 5.0,
|
||||
"description_de": "Dieser extragroße entropische Desintegrator kommt nur auf Triglavia-Capital-Schiffen zum Einsatz, da diese gewaltigen Schiffe in der Lage sind, die beträchtliche Strahlung und die enormen Gravitationsgezeitenkräfte zu bewältigen, die die Waffe generiert. Beim Energieniveau dieses ultraschweren Waffensystems sind die Gezeitenkräfte so stark, dass sogar die speziellen Systeme, die in Schlachtschiffe eingebaut werden, nicht ausreichen. Nur Capital-Schiffe können die entstehenden Kräfte handhaben. Entropische Desintegratoren bedienen sich der gewaltigen Kraft des singularitätsbasierten Triglavia-Energiesystems, um exotische Materie in einen Partikelstrom umzuwandeln, der mit lokal generierter entropischer Kraft ausgerichtet wird. Diese Waffen sind zwar kraftvoll, ihre Reichweite ist jedoch begrenzt, denn die Abschwächung entropischer Kräfte führt dazu, dass diese sich merklich zerstreuen, sobald sie ihre optimale Reichweite überschritten haben. Daher verfügt diese Waffe über keine Präzisionsabfall-Reichweite. Der Partikelstrom generiert beim Aufprall thermische und explosive Reaktionen und die entropischen Kräfte lösen sich in eine lokale Gravitationsleitung auf, die die Beschleunigung der exotischen Partikel stetig erhöht. Letztlich erreicht das Schadenspotenzial der Waffe einen Höchstwert, solange der Partikelstrom auf dasselbe Ziel gerichtet ist. Benötigt folgende Munitionstypen für exotische Plasmaladung: Baryon, Meson und Tetryon.",
|
||||
"description_en-us": "This extra-large Entropic Disintegrator is only seen in use on Triglavian capital ship, these massive ships being capable of managing the considerable radiation and enormous gravitational tidal forces the weapon generates. At the energy levels of this ultraheavy weapon system, the tidal forces are so powerful that even the special systems built into battleships are insufficient and only capital ships can deal with the forces involved.\r\n\r\nEntropic Disintegrators draw on the tremendous power of the Triglavian singularity-based energy systems to convert exotic matter into a particle stream directed with locally generated entropic force. While powerful, the range of the weapon is limited by the attenuation of entropic forces, which dissipate critically beyond the optimal range. As a result this weapon has no falloff range.\r\n\r\nThe particle stream generates thermal and explosive reactions on impact, and the entropic forces resolve into a localized gravitational conduit that steadily increases the acceleration on the exotic particles. In effect, the weapon's damage potential increases to a maximum level as long as the particle stream is kept on the same target.\r\n\r\nRequires exotic plasma charge ammo types: Baryon, Meson, and Tetryon.",
|
||||
"description_en-us": "This extra-large Entropic Disintegrator is only seen in use on Triglavian capital ships, these massive ships being capable of managing the considerable radiation and enormous gravitational tidal forces the weapon generates. At the energy levels of this ultraheavy weapon system, the tidal forces are so powerful that even the special systems built into battleships are insufficient and only capital ships can deal with the forces involved.\r\n\r\nEntropic Disintegrators draw on the tremendous power of the Triglavian singularity-based energy systems to convert exotic matter into a particle stream directed with locally generated entropic force. While powerful, the range of the weapon is limited by the attenuation of entropic forces, which dissipate critically beyond the optimal range. As a result this weapon has no falloff range.\r\n\r\nThe particle stream generates thermal and explosive reactions on impact, and the entropic forces resolve into a localized gravitational conduit that steadily increases the acceleration on the exotic particles. In effect, the weapon's damage potential increases to a maximum level as long as the particle stream is kept on the same target.\r\n\r\nRequires exotic plasma charge ammo types: Baryon, Meson, and Tetryon.",
|
||||
"description_es": "Este desintegrador entrópico extragrande solo se puede ver en naves capitales triglavianas, las únicas capaces de gestionar la considerable radiación y las enormes fuerzas gravitacionales intermareales que genera. Debido a los niveles de energía de este sistema de armas ultrapesado, las fuerzas intermareales son tan potentes que hasta los sistemas especiales integrados en los acorazados resultan insuficientes para contrarrestrarlas.\n\n\n\nLos desintegradores entrópicos utilizan el inconmensurable poder de los sistemas de energía triglavianos, basados en la singularidad, para convertir materia exótica en un flujo de partículas dirigido por la fuerza entrópica generada localmente. Aunque potentes, su alcance se ve afectado por la atenuación de las fuerzas entrópicas, disipadas al superar críticamente el alcance óptimo. En definitiva, esta arma no tiene alcance efectivo.\n\n\n\nEl flujo de partículas genera reacciones térmicas y explosivas al impactar. Además, las fuerzas entrópicas forman un conducto gravitacional localizado que aumenta constantemente la aceleración de las partículas exóticas, lo que se traduce en un aumento del potencial de daño del arma hasta un nivel máximo, siempre y cuando se mantenga el flujo de partículas sobre el mismo objetivo.\n\n\n\nRequiere tipos de munición de carga de plasma exótico: barión, mesón y tetrión.",
|
||||
"description_fr": "Ce très grand désintégrateur entropique n'est utilisé qu'à bord de vaisseaux capitaux triglavian, ces mastodontes capables de supporter les radiations importantes et les forces des marées gravitationnelles que cette arme génère. Étant donné l'énergie dégagée par ce système d'armement massif, les forces des marées sont telles que même les systèmes spéciaux installés au sein des cuirassés pour les contrer sont insuffisants : seuls les vaisseaux capitaux peuvent gérer de telles forces. Les désintégrateurs entropiques puisent dans la puissance phénoménale des systèmes d'énergie singuliers des Triglavian pour convertir la matière exotique en un jet de particules dirigé par la force entropique générée localement. Si la portée de cette arme est puissante, elle reste limitée par l'atténuation des forces entropiques qui se dissipent fortement au-delà de la portée optimale. Par conséquent, cette arme n'a pas de portée de déperdition. Lors de l'impact, le jet de particules génère des réactions thermiques et explosives tandis que les forces entropiques se transforment en conduit gravitationnel localisé, qui augmente continuellement l'accélération des particules exotiques. De ce fait, le potentiel de dégâts que l'arme inflige augmente et maintient son niveau maximal tant que le jet de particules reste sur la même cible. Requiert les types de munitions de charge à plasma exotique suivants : baryon, méson et tétryon.",
|
||||
"description_it": "This extra-large Entropic Disintegrator is only seen in use on Triglavian capital ship, these massive ships being capable of managing the considerable radiation and enormous gravitational tidal forces the weapon generates. At the energy levels of this ultraheavy weapon system, the tidal forces are so powerful that even the special systems built into battleships are insufficient and only capital ships can deal with the forces involved.\r\n\r\nEntropic Disintegrators draw on the tremendous power of the Triglavian singularity-based energy systems to convert exotic matter into a particle stream directed with locally generated entropic force. While powerful, the range of the weapon is limited by the attenuation of entropic forces, which dissipate critically beyond the optimal range. As a result this weapon has no falloff range.\r\n\r\nThe particle stream generates thermal and explosive reactions on impact, and the entropic forces resolve into a localized gravitational conduit that steadily increases the acceleration on the exotic particles. In effect, the weapon's damage potential increases to a maximum level as long as the particle stream is kept on the same target.\r\n\r\nRequires exotic plasma charge ammo types: Baryon, Meson, and Tetryon.",
|
||||
"description_it": "This extra-large Entropic Disintegrator is only seen in use on Triglavian capital ships, these massive ships being capable of managing the considerable radiation and enormous gravitational tidal forces the weapon generates. At the energy levels of this ultraheavy weapon system, the tidal forces are so powerful that even the special systems built into battleships are insufficient and only capital ships can deal with the forces involved.\r\n\r\nEntropic Disintegrators draw on the tremendous power of the Triglavian singularity-based energy systems to convert exotic matter into a particle stream directed with locally generated entropic force. While powerful, the range of the weapon is limited by the attenuation of entropic forces, which dissipate critically beyond the optimal range. As a result this weapon has no falloff range.\r\n\r\nThe particle stream generates thermal and explosive reactions on impact, and the entropic forces resolve into a localized gravitational conduit that steadily increases the acceleration on the exotic particles. In effect, the weapon's damage potential increases to a maximum level as long as the particle stream is kept on the same target.\r\n\r\nRequires exotic plasma charge ammo types: Baryon, Meson, and Tetryon.",
|
||||
"description_ja": "この超巨大なエントロピックディスインテグレーターは、トリグラビアンの主力艦でのみ使用されており、これらの巨大な船は、この兵器が発生させるかなりの放射線と巨大な引力の潮汐力を管理することができるようになっている。この超重量級の兵器システムのエネルギーレベルでは、戦艦に内蔵された特殊なシステムですら不十分なほどの潮汐力があり、その力に対処できるのは主力艦だけである。\r\n\nエントロピックディスインテグレイターは、トリグラビアンの特異点エネルギーシステムより生成される莫大なエネルギーを使用している。エネルギーにより、エキゾチックマターを粒子の流れに変換、局所的に生成したエントロピー力でその向きを変更する。高威力な武器であるが、その射程は、最適射程距離外では決定的に分散するエントロピー力の減退に左右される。そのため本武装には精度低下範囲が存在しない。\r\n\n粒子の流れは接触すると熱と爆発を起こし、この際、エントロピー力が分解されて居地的な重力導管に姿を変え、エキゾチック粒子を徐々に加速させていく。結果として、粒子の流れを同じ標的に当て続けていけば、この兵器のダメージ量は最大レベルまで上昇する。\r\n\n特殊なプラズマチャージ弾薬であるバリオン、メソン、テトリオンが必要。",
|
||||
"description_ko": "이 초대형 엔트로픽 분열기는 트리글라비안 캐피탈 함선에만 탑재가 가능합니다. 오직 캐피탈급 함선만이 무기에서 발생되는 어마어마한 규모의 중력파와 방사능을 견뎌낼 수 있기 때문입니다. 이 정도 에너지 레벨을 가진 초중량급 무기 체계는, 사용 시 발생하는 중력파가 너무나 강력하기 때문에 배틀쉽급 함선에 장착된 특수 시스템마저 이를 감당하지 못하는 경우가 허다합니다. 유일하게 이 반동을 견뎌낼 수 있는 것은 캐피탈 함선뿐입니다.<br><br>엔트로픽 분열기는 트리글라비안 특이점 기반 에너지 시스템으로부터 방대한 양의 전력을 끌어당겨 엑조틱 물질을 엔트로픽 에너지가 이끄는 입자의 흐름으로 전환합니다. 매우 강력하나, 최적사거리를 벗어나는 순간 엔트로픽 에너지가 급격히 감소하기 때문에 사거리가 제한되어있습니다. 따라서 분열기는 유효사거리라는 개념이 따로 없습니다.<br><br>충돌 시 입자의 흐름이 열화학 및 폭발 반응을 일으켜 엔트로픽 에너지가 근방의 중력장 전송기로 옮겨지게 되고 엑조틱 입자의 가속이 증가합니다. 그 결과, 입자가 대상에 흐르는 동안 분열기의 잠재 피해량이 최대로 증가합니다.<br><br>사용 가능한 엑조틱 플라즈마 차지: 바리온, 메손, 테트리온.",
|
||||
"description_ru": "Этот сверхбольшой энтропический дезинтегратор используется только на триглавских кораблях большого тоннажа — эти огромные корабли способны контролировать мощные выбросы радиации и колоссальную гравитационную силу, производимую этим орудием. Энергетические уровни этой сверхтяжёлой оружейной системы настолько высоки, что даже особые штатные системы линкоров не смогут справиться с её мощнейшей гравитационной силой, — совладать с такой мощью могут только корабли большого тоннажа. Для питания энтропических дезинтеграторов необходима огромная мощность. При её производстве используются реакторы на базе технологии сингулярности, способные перерабатывать экзотическую материю в поток частиц, направляемый локальной энтропической силой. При всей мощности оружия его эффективная дальность ограничена из-за снижения энтропической силы за пределами оптимального радиуса. В результате это орудие не имеет остаточной дальности. При контакте с целью поток частиц создаёт тепловую и взрывную реакции, в то время как энтропические силы образуют гравитационный канал, постепенно ускоряющий экзотические частицы. На деле это означает, что при продолжительном ведении огня по одной цели боевой потенциал орудия продолжает постоянно повышаться, постепенно приближаясь к максимуму. Для стрельбы используются следующие типы зарядов экзотической плазмы: барионные, мезонные и тетрионные.",
|
||||
@@ -142558,8 +142558,9 @@
|
||||
"iconID": 24364,
|
||||
"marketGroupID": 1405,
|
||||
"mass": 0.5,
|
||||
"metaGroupID": 17,
|
||||
"portionSize": 1,
|
||||
"published": 0,
|
||||
"published": 1,
|
||||
"radius": 1.0,
|
||||
"typeID": 54360,
|
||||
"typeName_de": "Women's Azure Abundance Jacket",
|
||||
@@ -143152,8 +143153,9 @@
|
||||
"iconID": 24382,
|
||||
"marketGroupID": 1399,
|
||||
"mass": 0.5,
|
||||
"metaGroupID": 17,
|
||||
"portionSize": 1,
|
||||
"published": 0,
|
||||
"published": 1,
|
||||
"radius": 1.0,
|
||||
"typeID": 54378,
|
||||
"typeName_de": "Men's Azure Abundance Jacket",
|
||||
@@ -143303,22 +143305,33 @@
|
||||
"54383": {
|
||||
"basePrice": 0.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "Der perfekte Look für geschäftsorientierte Personen.",
|
||||
"description_en-us": "A fine look for any business-focused individual.",
|
||||
"description_es": "Un buen aspecto para cualquier individuo centrado en los negocios.",
|
||||
"description_fr": "Un look du plus bel effet pour toute personne concentrée sur les affaires.",
|
||||
"description_it": "A fine look for any business-focused individual.",
|
||||
"description_ja": "ビジネス志向の人物に合う上質な見た目となっている。",
|
||||
"description_ko": "사업가를 위한 패션 아이템입니다.",
|
||||
"description_ru": "Элегантная одежда для деловых людей.",
|
||||
"description_zh": "任何商务人士的精致之选。",
|
||||
"descriptionID": 711996,
|
||||
"groupID": 1091,
|
||||
"iconID": 24387,
|
||||
"mass": 0.5,
|
||||
"metaGroupID": 17,
|
||||
"portionSize": 1,
|
||||
"published": 0,
|
||||
"published": 1,
|
||||
"radius": 1.0,
|
||||
"typeID": 54383,
|
||||
"typeName_de": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_en-us": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_es": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_fr": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_it": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_ja": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_ko": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_ru": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_zh": "54383_Male_Feet_ShoesCorpBusinessM01_Types_ShoesCorpBusinessM01_black.png",
|
||||
"typeName_de": "Men's Boardroom Loafers",
|
||||
"typeName_en-us": "Men's Boardroom Loafers",
|
||||
"typeName_es": "Mocasines Sala de Juntas para hombre",
|
||||
"typeName_fr": "Mocassins Salle de réunion pour hommes",
|
||||
"typeName_it": "Men's Boardroom Loafers",
|
||||
"typeName_ja": "メンズ・ボードルーム・ローファー",
|
||||
"typeName_ko": "남성용 보드룸 로퍼",
|
||||
"typeName_ru": "Men's Boardroom Loafers",
|
||||
"typeName_zh": "男式董事会乐福鞋",
|
||||
"typeNameID": 562503,
|
||||
"volume": 0.1
|
||||
},
|
||||
@@ -226774,7 +226787,7 @@
|
||||
"volume": 0.0
|
||||
},
|
||||
"58919": {
|
||||
"basePrice": 0.0,
|
||||
"basePrice": 20000.0,
|
||||
"capacity": 0.0,
|
||||
"description_de": "Unterbricht bei Aktivierung vor dem Starten des Warpantriebs kurzzeitig den Effekt von Warpstörsonden und mobilen Warpstörern. Dieses Modul verliert seine Funktion, wenn ein Burst-Störsender-Modul oder ein Higgs-Anker ausgerüstet sind.",
|
||||
"description_en-us": "Temporarily nullifies the effects of warp disrupt probes and mobile warp disruptors when activated before entering warp.\r\n\r\nThis module ceases to function when a Burst Jammer module or Higgs Anchor rig are fit.",
|
||||
@@ -281408,7 +281421,7 @@
|
||||
"isDynamicType": 0,
|
||||
"marketGroupID": 2820,
|
||||
"mass": 5.0,
|
||||
"metaGroupID": 1,
|
||||
"metaGroupID": 54,
|
||||
"portionSize": 200,
|
||||
"published": 1,
|
||||
"radius": 10.0,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,10 @@
|
||||
[
|
||||
{
|
||||
"field_name": "client_build",
|
||||
"field_value": 2497879
|
||||
"field_value": 2550121
|
||||
},
|
||||
{
|
||||
"field_name": "dump_time",
|
||||
"field_value": 1708430756
|
||||
"field_value": 1713279100
|
||||
}
|
||||
]
|
||||
@@ -1 +1 @@
|
||||
version: v2.58.1
|
||||
version: v2.58.2
|
||||
|
||||
Reference in New Issue
Block a user